From c4d749b78a46e69887ec9662851f180e587f2d34 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 10 Jul 2014 17:46:26 +0200 Subject: add REAMDE.md --- README.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 000000000..1a7f6f224 --- /dev/null +++ b/README.md @@ -0,0 +1,37 @@ +apt - Advanced Packaging Tool +============================= + +apt is the main package management tool for Debian and its variants. +It enables to search and install deb packages. The underlying libraries +that apt is build upon are called libapt-pkg and libapt-inst. + +Coding +------ +Apt is maintained in git, considering creating a branch when you +start hacking on it. + +Apt uses its own autoconf based build system, see README.make for +more details. To get started, just run: +``` +$ make +``` +from a fresh checkout. + +When you make changes and want to run them, make sure your +$LD_LIBRARY_PATH points to the new location, e.g. via: +``` +$ export LD_LIBRARY_PATH=$(pwd)/build/bin +$ ./build/bin/apt-get moo +``` + +Testing +------- + +There is a extensive integration testsuite available via: +``` +$ ./test/integration/run-tests +``` + +as well as gtest-dev based integration tests available in +`./test/libapt` and can be run with make test. + -- cgit v1.2.3 From 08be0ca32ad69e9ebf28fe26aa85990700c81cf6 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 16 Jul 2014 13:57:50 +0200 Subject: StringToBool: only act if the entire string is consumed by strtol() StringToBool uses strtol() internally to check if the argument is a number. This function stops when it does not find any more numbers. So a string like "0ad" (which is a valid packagename) is interpreted as a "0". The code now checks that the entire string is consumed not just a part of it. Thanks to Johannes Schauer for raising this issue. --- apt-pkg/contrib/strutl.cc | 9 ++++++--- test/libapt/commandline_test.cc | 29 +++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 3 deletions(-) diff --git a/apt-pkg/contrib/strutl.cc b/apt-pkg/contrib/strutl.cc index ce69c7a02..922229e90 100644 --- a/apt-pkg/contrib/strutl.cc +++ b/apt-pkg/contrib/strutl.cc @@ -704,9 +704,12 @@ string LookupTag(const string &Message,const char *Tag,const char *Default) then returns the result. Several varients on true/false are checked. */ int StringToBool(const string &Text,int Default) { - char *End; - int Res = strtol(Text.c_str(),&End,0); - if (End != Text.c_str() && Res >= 0 && Res <= 1) + char *ParseEnd; + int Res = strtol(Text.c_str(),&ParseEnd,0); + // ensure that the entire string was converted by strtol to avoid + // failures on "apt-cache show -a 0ad" where the "0" is converted + const char *TextEnd = Text.c_str()+Text.size(); + if (ParseEnd == TextEnd && Res >= 0 && Res <= 1) return Res; // Check for positives diff --git a/test/libapt/commandline_test.cc b/test/libapt/commandline_test.cc index 26e80bfde..e403a28c8 100644 --- a/test/libapt/commandline_test.cc +++ b/test/libapt/commandline_test.cc @@ -56,3 +56,32 @@ TEST(CommandLineTest,Parsing) EXPECT_TRUE(c.FindB("Test::Worked", false)); EXPECT_FALSE(c.FindB("Test::Zero", false)); } + +TEST(CommandLineTest, BoolParsing) +{ + CommandLine::Args Args[] = { + { 't', 0, "Test::Worked", 0 }, + {0,0,0,0} + }; + ::Configuration c; + CommandLine CmdL(Args, &c); + + // the commandline parser used to use strtol() on the argument + // to check if the argument is a boolean expression - that + // stopped after the "0". this test ensures that we always check + // that the entire string was consumed by strtol + { + char const * argv[] = { "show", "-t", "0ad" }; + bool res = CmdL.Parse(sizeof(argv)/sizeof(char*), argv); + EXPECT_TRUE(res); + ASSERT_EQ(std::string(CmdL.FileList[0]), "0ad"); + } + + { + char const * argv[] = { "show", "-t", "0", "ad" }; + bool res = CmdL.Parse(sizeof(argv)/sizeof(char*), argv); + EXPECT_TRUE(res); + ASSERT_EQ(std::string(CmdL.FileList[0]), "ad"); + } + +} -- cgit v1.2.3 From ea1dfca37fe9dea5f6addbb08c9430c370b21ceb Mon Sep 17 00:00:00 2001 From: victory Date: Wed, 16 Jul 2014 14:17:09 +0200 Subject: Update Japanese documentation translation Closes: #754817 --- doc/po/ja.po | 872 ++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 502 insertions(+), 370 deletions(-) diff --git a/doc/po/ja.po b/doc/po/ja.po index 45c264bd8..582ff0377 100644 --- a/doc/po/ja.po +++ b/doc/po/ja.po @@ -6,10 +6,10 @@ # KURASAWA Nozomu, 2003-2006, 2009-2012. msgid "" msgstr "" -"Project-Id-Version: apt 0.7.25.3\n" +"Project-Id-Version: apt 1.0.6\n" "Report-Msgid-Bugs-To: APT Development Team \n" "POT-Creation-Date: 2014-07-10 10:52+0200\n" -"PO-Revision-Date: 2014-07-04 02:03+0200\n" +"PO-Revision-Date: 2014-07-10 19:52+0900\n" "Last-Translator: KURASAWA Nozomu \n" "Language-Team: Debian Japanese List \n" "Language: ja\n" @@ -675,7 +675,7 @@ msgstr "APT" #. type: Content of: #: apt.8.xml:32 msgid "command-line interface" -msgstr "" +msgstr "コマンドラインインターフェイス" #. type: Content of: #: apt.8.xml:37 apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 @@ -694,6 +694,10 @@ msgid "" "management of the system. See also &apt-get; and &apt-cache; for more low-" "level command options." msgstr "" +"<command>apt</command> (Advanced Package Tool、高度パッケージツール) はパッ" +"ケージ処理用のコマンドラインツールです。システムのパッケージ管理用コマンドラ" +"インインターフェイスを提供します。さらなる低レベルコマンドオプションについて" +"は &apt-get; 及び &apt-cache; も参照してください。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.8.xml:47 @@ -703,6 +707,10 @@ msgid "" "<option>--installed</option>, <option>--upgradable</option>, <option>--all-" "versions</option> are supported." msgstr "" +"パッケージ一覧を表示するには <literal>list</literal> を使います。パッケージ名" +"のマッチングにシェルパターン、そしてオプション <option>--installed</" +"option>、 <option>--upgradable</option>、 <option>--all-versions</option> を" +"サポートしています。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.8.xml:58 @@ -710,18 +718,17 @@ msgid "" "<literal>search</literal> searches for the given term(s) and display " "matching packages." msgstr "" +"<literal>search</literal> では指定した語を検索して該当するパッケージを表示し" +"ます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.8.xml:64 -#, fuzzy -#| msgid "" -#| "<literal>rdepends</literal> shows a listing of each reverse dependency a " -#| "package has." msgid "" "<literal>show</literal> shows the package information for the given " "package(s)." msgstr "" -"<literal>rdepends</literal> は、パッケージが持つ被依存関係を一覧表示します。" +"<literal>show</literal> では指定したパッケージについてのパッケージ情報を表示" +"します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.8.xml:71 @@ -729,6 +736,8 @@ msgid "" "<literal>install</literal> is followed by one or more package names desired " "for installation or upgrading." msgstr "" +"<literal>install</literal> に続けてインストールやアップグレードしたいパッケー" +"ジの名前を指定します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.8.xml:75 apt-get.8.xml:118 @@ -768,19 +777,17 @@ msgid "" "<literal>edit-sources</literal> lets you edit your sources.list file and " "provides basic sanity checks." msgstr "" +"<literal>edit-sources</literal> では sources.list ファイルを編集させ、基礎的" +"な健全性確認を行います。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.8.xml:99 -#, fuzzy -#| msgid "" -#| "<literal>showhold</literal> is used to print a list of packages on hold " -#| "in the same way as for the other show commands." msgid "" "<literal>update</literal> is used to resynchronize the package index files " "from their sources." msgstr "" -"<literal>showhold</literal> は、他の show コマンドと同様に、保留されている" -"パッケージを出力します。" +"<literal>update</literal> を使うとパッケージ索引ファイルをそれぞれのソースと" +"再同期します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.8.xml:105 @@ -790,6 +797,10 @@ msgid "" "<filename>/etc/apt/sources.list</filename>. New package will be installed, " "but existing package will never removed." msgstr "" +"<literal>upgrade</literal> を使うとシステムに現在インストールされている全パッ" +"ケージの最新版を <filename>/etc/apt/sources.list</filename> に記載されている" +"ソースからインストールします。新しいパッケージはインストールされますが既存の" +"パッケージが削除されることはありません。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.8.xml:114 @@ -798,6 +809,9 @@ msgid "" "also remove installed packages if that is required in order to resolve a " "package conflict." msgstr "" +"<literal>full-upgrade</literal> はアップグレードの機能を実行しますが、パッ" +"ケージの衝突を解決するために必要であればインストールされているパッケージの削" +"除も行います。" #. type: Content of: <refentry><refsect1><title> #: apt.8.xml:124 apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 @@ -809,7 +823,7 @@ msgstr "オプション" #. type: Content of: <refentry><refsect1><title> #: apt.8.xml:134 msgid "Script usage" -msgstr "" +msgstr "スクリプトでの利用" #. type: Content of: <refentry><refsect1><para> #: apt.8.xml:136 @@ -820,11 +834,16 @@ msgid "" "&apt-cache; and &apt-get; via APT options. Please prefer using these " "commands in your scripts." msgstr "" +"&apt; コマンドラインはエンドユーザ向けツールとして設計されており、出力はバー" +"ジョン間で変更される可能性があります。後方互換性を損なうことのないようには努" +"めますが、その保証はありません。&apt; の機能は全てAPTオプションを経由して " +"&apt-cache; や &apt-get; で利用可能です。スクリプトでは各コマンドの利用を選択" +"するようにしてください。" #. type: Content of: <refentry><refsect1><title> #: apt.8.xml:144 msgid "Differences to &apt-get;" -msgstr "" +msgstr "&apt-get; との違い" #. type: Content of: <refentry><refsect1><para> #: apt.8.xml:145 @@ -833,20 +852,20 @@ msgid "" "does not need to be backward compatible like &apt-get;. Therefore some " "options are different:" msgstr "" +"<command>apt</command> コマンドはエンドユーザにとって使いやすいように意図して" +"作られているため &apt-get; のように後方互換性が必ずしもあるとは限りません。し" +"たがって、一部のオプションに異なる点があります:" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: apt.8.xml:151 -#, fuzzy -#| msgid "the <literal>Package:</literal> line" msgid "The option <literal>DPkg::Progress-Fancy</literal> is enabled." -msgstr "<literal>Package:</literal> 行" +msgstr "" +"オプション <literal>DPkg::Progress-Fancy</literal> が有効になっています。" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: apt.8.xml:155 -#, fuzzy -#| msgid "the <literal>Component:</literal> line" msgid "The option <literal>APT::Color</literal> is enabled." -msgstr "<literal>Component:</literal> 行" +msgstr "オプション <literal>APT::Color</literal> が有効になっています。" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: apt.8.xml:159 @@ -854,15 +873,17 @@ msgid "" "A new <literal>list</literal> command is available similar to <literal>dpkg " "--list</literal>." msgstr "" +"新しい <literal>list</literal> コマンドは <literal>dpkg --list</literal> と同" +"じように利用できます。" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: apt.8.xml:164 -#, fuzzy -#| msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" msgid "" "The option <literal>upgrade</literal> has <literal>--with-new-pkgs</literal> " "enabled by default." -msgstr "<literal>Archive:</literal> 行や <literal>Suite:</literal> 行" +msgstr "" +"オプション <literal>upgrade</literal> では <literal>--with-new-pkgs</" +"literal> がデフォルトで有効になっています。" #. type: Content of: <refentry><refsect1><title> #: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 @@ -875,18 +896,12 @@ msgstr "関連項目" #. type: Content of: <refentry><refsect1><para> #: apt.8.xml:175 -#, fuzzy -#| msgid "" -#| "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " -#| "&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-" -#| "preferences;, the APT Howto." msgid "" "&apt-get;, &apt-cache;, &sources-list;, &apt-conf;, &apt-config;, The APT " "User's guide in &guidesdir;, &apt-preferences;, the APT Howto." msgstr "" -"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " -"&apt-config;, &apt-secure;, &guidesdir; にある APT ユーザガイド, &apt-" -"preferences;, APT Howto" +"&apt-get;、 &apt-cache;、 &sources-list;、 &apt-conf;、 &apt-config;、 " +"&guidesdir; にあるAPTユーザガイド、 &apt-preferences;、 APT Howto." #. type: Content of: <refentry><refsect1><title> #: apt.8.xml:180 apt-get.8.xml:564 apt-cache.8.xml:357 apt-mark.8.xml:137 @@ -897,16 +912,12 @@ msgstr "診断メッセージ" #. type: Content of: <refentry><refsect1><para> #: apt.8.xml:181 -#, fuzzy -#| msgid "" -#| "<command>apt-get</command> returns zero on normal operation, decimal 100 " -#| "on error." msgid "" "<command>apt</command> returns zero on normal operation, decimal 100 on " "error." msgstr "" -"<command>apt-get</command> は正常終了時に 0 を返します。エラー時には十進の " -"100 を返します。" +"<command>apt</command> は正常終了時に 0 を返します。エラー時には十進の 100 を" +"返します。" #. type: Content of: <refentry><refnamediv><refpurpose> #: apt-get.8.xml:35 @@ -915,12 +926,6 @@ msgstr "APT パッケージ操作ユーティリティ -- コマンドライン #. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:41 -#, fuzzy -#| msgid "" -#| "<command>apt-get</command> is the command-line tool for handling " -#| "packages, and may be considered the user's \"back-end\" to other tools " -#| "using the APT library. Several \"front-end\" interfaces exist, such as " -#| "&dselect;, &aptitude;, &synaptic; and &wajig;." msgid "" "<command>apt-get</command> is the command-line tool for handling packages, " "and may be considered the user's \"back-end\" to other tools using the APT " @@ -929,8 +934,8 @@ msgid "" msgstr "" "<command>apt-get</command> は、パッケージを操作するコマンドラインツールで、" "APT ライブラリを用いる他のツールのユーザ側「バックエンド」といえるものです。" -"「フロントエンド」インターフェースには、&dselect;, &aptitude;, &synaptic;, " -"&wajig; などがあります。" +"「フロントエンド」インターフェースには、&aptitude;, &synaptic;, &wajig; など" +"があります。" #. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:46 apt-cache.8.xml:46 apt-cdrom.8.xml:53 apt-config.8.xml:46 @@ -1229,15 +1234,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:217 -#, fuzzy -#| msgid "" -#| "<literal>clean</literal> clears out the local repository of retrieved " -#| "package files. It removes everything but the lock file from " -#| "<filename>&cachedir;/archives/</filename> and <filename>&cachedir;/" -#| "archives/partial/</filename>. When APT is used as a &dselect; method, " -#| "<literal>clean</literal> is run automatically. Those who do not use " -#| "dselect will likely want to run <literal>apt-get clean</literal> from " -#| "time to time to free up disk space." msgid "" "<literal>clean</literal> clears out the local repository of retrieved " "package files. It removes everything but the lock file from " @@ -1246,10 +1242,7 @@ msgid "" msgstr "" "<literal>clean</literal> は、取得したパッケージのローカルリポジトリを掃除しま" "す。<filename>&cachedir;/archives/</filename> と <filename>&cachedir;/" -"archives/partial/</filename> からロックファイル以外すべて削除します。APT が " -"&dselect; から呼ばれるときには、自動的に <literal>clean</literal> が実行され" -"ます。dselectを使用しない場合は、ディスクスペースを解放するため、時々 " -"<literal>apt-get clean</literal> を実行したくなるでしょう。" +"archives/partial/</filename> からロックファイル以外すべて削除します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:224 @@ -1331,19 +1324,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:277 -#, fuzzy -#| msgid "" -#| "Fix; attempt to correct a system with broken dependencies in place. This " -#| "option, when used with install/remove, can omit any packages to permit " -#| "APT to deduce a likely solution. If packages are specified, these have to " -#| "completely correct the problem. The option is sometimes necessary when " -#| "running APT for the first time; APT itself does not allow broken package " -#| "dependencies to exist on a system. It is possible that a system's " -#| "dependency structure can be so corrupt as to require manual intervention " -#| "(which usually means using &dselect; or <command>dpkg --remove</command> " -#| "to eliminate some of the offending packages). Use of this option together " -#| "with <option>-m</option> may produce an error in some situations. " -#| "Configuration Item: <literal>APT::Get::Fix-Broken</literal>." msgid "" "Fix; attempt to correct a system with broken dependencies in place. This " "option, when used with install/remove, can omit any packages to permit APT " @@ -1363,10 +1343,10 @@ msgstr "" "体は、システムに存在する破損したパッケージ依存関係を許すことができないので、" "初めて APT を実行する場合、このオプションが必要になることがあります。システム" "の依存関係構造にかなり問題がある場合は、手動で修正するよう要求することもあり" -"ます。(通常は、問題のあるパッケージを取り除くのに &dselect; や <command>dpkg " -"--remove</command> を使用します) このオプションを <option>-m</option> オプ" -"ションと同時に使用すると、エラーになる状況があるかもしれません。設定項目: " -"<literal>APT::Get::Fix-Broken</literal>" +"ます。(通常は、問題のあるパッケージを取り除くのに <command>dpkg --remove</" +"command> を使用します) このオプションを <option>-m</option> オプションと同時" +"に使用すると、エラーになる状況があるかもしれません。設定項目: <literal>APT::" +"Get::Fix-Broken</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:292 @@ -1502,14 +1482,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:370 -#, fuzzy -#| msgid "" -#| "This option controls the architecture packages are built for by " -#| "<command>apt-get source --compile</command> and how cross-" -#| "builddependencies are satisfied. By default is it not set which means " -#| "that the host architecture is the same as the build architecture (which " -#| "is defined by <literal>APT::Architecture</literal>). Configuration Item: " -#| "<literal>APT::Get::Host-Architecture</literal>" msgid "" "This option controls the architecture packages are built for by <command>apt-" "get source --compile</command> and how cross-builddependencies are " @@ -1522,18 +1494,10 @@ msgstr "" "ケージのアーキテクチャや、どのようにクロス依存関係を解決するかを制御します。" "デフォルトでは未定義で、これはホストアーキテクチャは、(<literal>APT::" "Architecture</literal> で定義した) ビルドアーキテクチャと同じという意味になり" -"ます。設定項目: <literal>APT::Get::Host-Architecture</literal>" +"ます。設定項目: <literal>APT::Get::Host-Architecture</literal>。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:380 -#, fuzzy -#| msgid "" -#| "This option controls the architecture packages are built for by " -#| "<command>apt-get source --compile</command> and how cross-" -#| "builddependencies are satisfied. By default is it not set which means " -#| "that the host architecture is the same as the build architecture (which " -#| "is defined by <literal>APT::Architecture</literal>). Configuration Item: " -#| "<literal>APT::Get::Host-Architecture</literal>" msgid "" "This option controls the activated build profiles for which a source package " "is built by <command>apt-get source --compile</command> and how build " @@ -1541,11 +1505,11 @@ msgid "" "than one build profile can be activated at a time by concatenating them with " "a comma. Configuration Item: <literal>APT::Build-Profiles</literal>." msgstr "" -"このオプションは、<command>apt-get source --compile</command> で構築するパッ" -"ケージのアーキテクチャや、どのようにクロス依存関係を解決するかを制御します。" -"デフォルトでは未定義で、これはホストアーキテクチャは、(<literal>APT::" -"Architecture</literal> で定義した) ビルドアーキテクチャと同じという意味になり" -"ます。設定項目: <literal>APT::Get::Host-Architecture</literal>" +"このオプションは、<command>apt-get source --compile</command> でパッケージを" +"ビルドする際に有効化するビルドプロファイルや、どのようにクロス依存関係を解決" +"するかを制御します。デフォルトでは有効化するビルドプロファイルはありません。" +"コンマで連結することで複数のビルドプロファイルを有効化できます。設定項目: " +"<literal>APT::Get::Host-Architecture</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:391 @@ -1580,6 +1544,13 @@ msgid "" "will never remove packages, only allow adding new ones. Configuration Item: " "<literal>APT::Get::Upgrade-Allow-New</literal>." msgstr "" +"<literal>upgrade</literal> と併せて使った場合に新しいパッケージのインストール" +"を許可します。これは新しい依存をインストールするために既にインストールされて" +"いるパッケージを更新する必要がある場合に有用です。パッケージを保留する代わり" +"に <literal>upgrade</literal> がパッケージをアップグレードして新しい依存をイ" +"ンストールします。このオプションと併せて使った場合、<literal>upgrade</" +"literal> がパッケージを削除することはなく、新規追加を許可するだけであることに" +"注意してください。設定項目: <literal>APT::Get::Upgrade-Allow-New</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:415 @@ -1796,6 +1767,11 @@ msgid "" "Item: <literal>Dpkg::Progress</literal> and <literal>Dpkg::Progress-Fancy</" "literal>." msgstr "" +"パッケージのインストール、アップグレード、削除時にユーザにとってわかりやすい" +"形で進捗情報をターミナルウィンドウ内に表示します。このデータの機械的に解析で" +"きるバージョンについては apt の doc ディレクトリにある README.progress-" +"reporting を見てください。設定項目: <literal>Dpkg::Progress</literal>、 " +"<literal>Dpkg::Progress-Fancy</literal>" #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 @@ -1805,19 +1781,14 @@ msgstr "ファイル" #. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:559 -#, fuzzy -#| msgid "" -#| "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " -#| "&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-" -#| "preferences;, the APT Howto." msgid "" "&apt-cache;, &apt-cdrom;, &dpkg;, &sources-list;, &apt-conf;, &apt-config;, " "&apt-secure;, The APT User's guide in &guidesdir;, &apt-preferences;, the " "APT Howto." msgstr "" -"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " -"&apt-config;, &apt-secure;, &guidesdir; にある APT ユーザガイド, &apt-" -"preferences;, APT Howto" +"&apt-cache;, &apt-cdrom;, &dpkg;, &sources-list;, &apt-conf;, &apt-config;, " +"&apt-secure;, &guidesdir; にある APT ユーザガイド, &apt-preferences;, APT " +"Howto" #. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:565 @@ -2482,7 +2453,8 @@ msgstr "" "ローカルキーリングをアーカイブキーリングで更新し、もう有効でなくなったアーカ" "イブキーをローカルキーリングから削除します。アーカイブキーリングは、使用中の" "ディストリビューションにある <literal>archive-keyring</literal> パッケージ " -"(例: &keyring-distro; では &keyring-package; パッケージ) で提供されています。" +"(例えば &keyring-distro; では &keyring-package; パッケージ) で提供されていま" +"す。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:146 @@ -2802,11 +2774,12 @@ msgid "" msgstr "" "アップロードされたパッケージが検証されてアーカイブに格納されると、メンテナの" "署名を取り外し、パッケージのチェックサムを計算して、Packages ファイルに格納し" -"ます。その後、全パッケージファイルのチェックサムを計算して、Release ファイル" +"ます。その後、全 Packages ファイルのチェックサムを計算して、Release ファイル" "に格納します。Release ファイルは、その &keyring-distro; リリースのアーカイブ" "キーで署名され、&keyring-distro; ミラーサイトでパッケージや Packages ファイル" -"とともに配布されます。このキーは、&keyring-package; パッケージに収録されてい" -"る、&keyring-distro; アーカイブキーリングに含まれます。" +"とともに配布されます。このキーは、<package>debian-archive-keyring</package> " +"パッケージに収録されている、&keyring-distro; アーカイブキーリングに含まれま" +"す。" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:115 @@ -3064,19 +3037,14 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:87 -#, fuzzy -#| msgid "" -#| "Mount point; specify the location to mount the CD-ROM. This mount point " -#| "must be listed in <filename>/etc/fstab</filename> and properly " -#| "configured. Configuration Item: <literal>Acquire::cdrom::mount</literal>." msgid "" "Do not try to auto-detect the CD-ROM path. Usually combined with the " "<option>--cdrom</option> option. Configuration Item: <literal>Acquire::" "cdrom::AutoDetect</literal>." msgstr "" -"マウントポイント - CD-ROM をマウントする場所を指定します。このマウントポイン" -"トは、<filename>/etc/fstab</filename> に正しく設定されている必要があります。" -"設定項目: <literal>Acquire::cdrom::mount</literal>" +"CD-ROM パスの自動検出を試行しません。通常、<option>--cdrom</option> オプショ" +"ンと組み合わせて使います。設定項目: <literal>Acquire::cdrom::AutoDetect</" +"literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:95 @@ -3600,6 +3568,10 @@ msgid "" "is empty. The <envar>DEB_BUILD_PROFILES</envar> as used by &dpkg-" "buildpackage; overrides the list notation." msgstr "" +"構築依存の解決にあたって有効になっているビルドプロファイルを名前空間の" +"「<literal>profile.</literal>」接頭辞を取り除いたもの全ての一覧です。デフォル" +"トではこの一覧は空です。&dpkg-buildpackage; で利用される " +"<envar>DEB_BUILD_PROFILES</envar> はこの一覧よりも優先されます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:190 @@ -3997,13 +3969,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:400 -#, fuzzy -#| msgid "" -#| "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" -#| "literal> which accepts integer values in kilobytes. The default value is " -#| "0 which deactivates the limit and tries to use all available bandwidth " -#| "(note that this option implicitly disables downloading from multiple " -#| "servers at the same time.)" msgid "" "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" "literal> which accepts integer values in kilobytes per second. The default " @@ -4011,10 +3976,10 @@ msgid "" "bandwidth. Note that this option implicitly disables downloading from " "multiple servers at the same time." msgstr "" -"使用する帯域を制限するには、<literal>Acquire::http::Dl-Limit</literal> にキロ" -"バイトで整数値を与えます。デフォルト値は 0 で、制限を解除し、使用できる帯域を" -"すべて使おうとします (このオプションは暗黙的に、同時に複数のサーバからダウン" -"ロードしなくなることに注意してください)。" +"使用する帯域を制限するには、<literal>Acquire::http::Dl-Limit</literal> に秒あ" +"たりのキロバイトで整数値を与えます。デフォルト値は 0 で、制限を解除し、使用で" +"きる帯域をすべて使おうとします。このオプションは暗黙的に、同時に複数のサーバ" +"からダウンロードしなくなることに注意してください。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:407 @@ -4040,6 +4005,14 @@ msgid "" "takes precedence over the legacy option name <literal>ProxyAutoDetect</" "literal>." msgstr "" +"<literal>Acquire::http::Proxy-Auto-Detect</literal> を使って利用する http プ" +"ロキシを検出するための外部コマンドを指定できます。APT はコマンドが標準出力に " +"<literal>http://proxy:port/</literal> 形式でプロキシを出力することを期待して" +"います。これは全体を指定する <literal>Acquire::http::Proxy</literal> よりも優" +"先されますが <literal>Acquire::http::Proxy::$HOST</literal> 経由でセットした" +"特定のホストのプロキシ設定はこれよりも優先されます。avahi を利用する実装例に" +"ついては &squid-deb-proxy-client; パッケージを見てください。このオプションは" +"古い <literal>ProxyAutoDetect</literal> よりも優先されます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:429 @@ -4404,12 +4377,12 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:585 msgid "When downloading, force to use only the IPv4 protocol." -msgstr "" +msgstr "ダウンロード時に IPv4 プロトコルだけを使うように強制します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:591 msgid "When downloading, force to use only the IPv6 protocol." -msgstr "" +msgstr "ダウンロード時に IPv6 プロトコルだけを使うように強制します。" #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:598 @@ -4437,17 +4410,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:607 -#, fuzzy -#| msgid "" -#| "<literal>Dir::Cache</literal> contains locations pertaining to local " -#| "cache information, such as the two package caches <literal>srcpkgcache</" -#| "literal> and <literal>pkgcache</literal> as well as the location to place " -#| "downloaded archives, <literal>Dir::Cache::archives</literal>. Generation " -#| "of caches can be turned off by setting their names to the empty string. " -#| "This will slow down startup but save disk space. It is probably " -#| "preferable to turn off the pkgcache rather than the srcpkgcache. Like " -#| "<literal>Dir::State</literal> the default directory is contained in " -#| "<literal>Dir::Cache</literal>" msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@ -4461,12 +4423,13 @@ msgid "" msgstr "" "<literal>Dir::Cache</literal> は、ローカルキャッシュ情報に関する場所を格納し" "ています。これは、ダウンロード済アーカイブの場所を示す <literal>Dir::Cache::" -"archives</literal> と同様に、<literal>srcpkgcache</literal> と " -"<literal>pkgcache</literal> のパッケージキャッシュの場所になります。それぞれ" -"に空文字をセットすることで、キャッシュの生成を無効にできます。これにより起動" -"時に遅くなりますが、ディスク容量を節約できます。おそらく、srcpkgcache よりも " -"pkgcache を無効にすることが多いと思います。<literal>Dir::State</literal> と同" -"様、<literal>Dir::Cache</literal> はデフォルトディレクトリを含んでいます。" +"archives</literal> と同様に、<literal>srcpkgcache</literal> と <literal>" +"pkgcache</literal> のパッケージキャッシュの場所になります。<literal>pkgcache" +"</literal> や <literal>srcpkgcache</literal> に <literal>\"\"</literal> を" +"セットすることで、キャッシュの生成を無効にできます。これにより起動時に遅くな" +"りますが、ディスク容量を節約できます。おそらく、srcpkgcache よりも pkgcache " +"を無効にすることが多いと思います。<literal>Dir::State</literal> と同様、" +"<literal>Dir::Cache</literal> はデフォルトディレクトリを含んでいます。" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:617 @@ -4648,13 +4611,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:713 -#, fuzzy -#| msgid "" -#| "This is a list of shell commands to run before invoking &dpkg;. Like " -#| "<literal>options</literal> this must be specified in list notation. The " -#| "commands are invoked in order using <filename>/bin/sh</filename>; should " -#| "any fail APT will abort. APT will pass the filenames of all .deb files it " -#| "is going to install to the commands, one per line on standard input." msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4666,18 +4622,12 @@ msgstr "" "&dpkg; を呼び出す前に実行するシェルコマンドのリストです。<literal>options</" "literal> のようにリスト記法で指定しなければなりません。コマンドは <filename>/" "bin/sh</filename> を通して呼び出され、何か問題があれば、APT は異常終了しま" -"す。APT はインストールしようとする全 .deb ファイルのファイル名を、1 行ずつコ" -"マンドの標準入力に送ります。" +"す。APT はインストールしようとする全 .deb ファイルのファイル名を、要求した" +"ファイルディスクリプタについて1 行ずつ、デフォルトではコマンドの標準入力に送" +"ります。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:720 -#, fuzzy -#| msgid "" -#| "Version 2 of this protocol dumps more information, including the protocol " -#| "version, the APT configuration space and the packages, files and versions " -#| "being changed. Version 2 is enabled by setting <literal>DPkg::Tools::" -#| "options::cmd::Version</literal> to 2. <literal>cmd</literal> is a command " -#| "given to <literal>Pre-Install-Pkgs</literal>." msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@ -4686,9 +4636,8 @@ msgid "" msgstr "" "このプロトコルのバージョン 2 では、(プロトコルのバージョンや APT 設定スペー" "ス、パッケージを含む) 詳細情報やファイル、変更されているバージョンを出力しま" -"す。<literal>DPkg::Tools::options::cmd::Version</literal> に 2 を設定すると、" -"バージョン 2 を有効にできます。<literal>cmd</literal> は <literal>Pre-" -"Install-Pkgs</literal> で与えられるコマンドです。" +"す。バージョン 3 では出力の各バージョンにアーキテクチャと " +"<literal>MultiArch</literal> フラグが追加されています。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:725 @@ -4700,6 +4649,11 @@ msgid "" "the requested version it will send the information in the highest version it " "has support for instead." msgstr "" +"コマンド <literal><replaceable>cmd</replaceable></literal> で利用するプロトコ" +"ルのバージョンは <literal>DPkg::Tools::options::<replaceable>cmd</" +"replaceable>::Version</literal> の設定により選択でき、デフォルトはバージョン " +"1 となっています。リクエストしたバージョンを APT がサポートしていない場合はサ" +"ポートしている最大のバージョンの情報を代わりに送ります。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:732 @@ -4711,6 +4665,12 @@ msgid "" "looking for the environment variable <envar>APT_HOOK_INFO_FD</envar> which " "contains the number of the used file descriptor as a confirmation." msgstr "" +"情報の送信に利用するファイルディスクリプタは <literal>DPkg::Tools::options::" +"<replaceable>cmd</replaceable>::InfoFD</literal> によりリクエストでき、デフォ" +"ルトは <literal>0</literal> で標準入力を指定します。バージョン 0.9.11 から利" +"用可能となりました。環境変数 <envar>APT_HOOK_INFO_FD</envar> を見ることでこの" +"オプションに対応していることを検出でき、それには確認として利用しているファイ" +"ルディスクリプタの番号が収録されています。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:742 @@ -5241,6 +5201,9 @@ msgid "" "g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " "<literal>APT::Update::{Pre,Post}-Invoke</literal>." msgstr "" +"aptのフックにより呼び出される外部コマンドを表示します。これには例えば、設定オ" +"プション <literal>DPkg::{Pre,Post}-Invoke</literal> や <literal>APT::Update::" +"{Pre,Post}-Invoke</literal> があります。" #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:1216 apt_preferences.5.xml:547 sources.list.5.xml:239 @@ -6688,10 +6651,9 @@ msgstr "" #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:82 -#, fuzzy, no-wrap -#| msgid "deb [ options ] uri distribution [component1] [component2] [...]" +#, no-wrap msgid "deb [ options ] uri suite [component1] [component2] [...]" -msgstr "deb [ オプション ] uri distribution [コンポーネント1] [コンポーネント2] [...]" +msgstr "deb [ オプション ] uri スイート [コンポーネント1] [コンポーネント2] [...]" #. type: Content of: <refentry><refsect1><para><literallayout> #: sources.list.5.xml:86 @@ -6715,6 +6677,23 @@ msgid "" " [option1]: [option1-value]\n" " " msgstr "" +" Types: deb deb-src\n" +" URIs: http://example.com\n" +" Suites: stable testing\n" +" Sections: component1 component2\n" +" Description: short\n" +" long long long\n" +" [option1]: [option1-value]\n" +"\n" +" Types: deb\n" +" URIs: http://another.example.com\n" +" Suites: experimental\n" +" Sections: component1 component2\n" +" Enabled: no\n" +" Description: short\n" +" long long long\n" +" [option1]: [option1-value]\n" +" " #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:84 @@ -6722,19 +6701,11 @@ msgid "" "Alternatively a rfc822 style format is also supported: <placeholder type=" "\"literallayout\" id=\"0\"/>" msgstr "" +"他に rfc822 形式の表記もサポートしています: <placeholder type=\"literallayout" +"\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:105 -#, fuzzy -#| msgid "" -#| "The URI for the <literal>deb</literal> type must specify the base of the " -#| "Debian distribution, from which APT will find the information it needs. " -#| "<literal>distribution</literal> can specify an exact path, in which case " -#| "the components must be omitted and <literal>distribution</literal> must " -#| "end with a slash (<literal>/</literal>). This is useful for the case when " -#| "only a particular sub-section of the archive denoted by the URI is of " -#| "interest. If <literal>distribution</literal> does not specify an exact " -#| "path, at least one <literal>component</literal> must be present." msgid "" "The URI for the <literal>deb</literal> type must specify the base of the " "Debian distribution, from which APT will find the information it needs. " @@ -6746,25 +6717,16 @@ msgid "" "<literal>component</literal> must be present." msgstr "" "<literal>deb</literal> タイプの URI は、APT が必要な情報を見つけられるよう" -"に、Debian ディストリビューションの基底を指定しなければなりません。" -"<literal>distribution</literal> には正確なパスを指定できます。その場合 " -"component を省略し、<literal>distribution</literal> はスラッシュ (<literal>/" -"</literal>) で終わらなくてはなりません。これは URL で指定されたアーカイブの、" -"特定のサブセクションのみに関心があるときに役に立ちます。" -"<literal>distribution</literal> に正確なパスを指定しないのなら、少なくともひ" -"とつは <literal>component</literal> を指定しなければなりません。" +"に、Debian ディストリビューションの基底を指定しなければなりません。<literal>" +"スイート</literal>には正確なパスを指定できます。その場合コンポーネントを省略" +"し、<literal>スイート</literal>はスラッシュ (<literal>/</literal>) で終わらな" +"くてはなりません。これは URL で指定されたアーカイブの、特定のサブセクションの" +"みに関心があるときに役に立ちます。<literal>スイート</literal>に正確なパスを指" +"定しないのなら、少なくともひとつは <literal>コンポーネント</literal> を指定し" +"なければなりません。" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:114 -#, fuzzy -#| msgid "" -#| "<literal>distribution</literal> may also contain a variable, <literal>" -#| "$(ARCH)</literal> which expands to the Debian architecture (such as " -#| "<literal>amd64</literal> or <literal>armel</literal>) used on the system. " -#| "This permits architecture-independent <filename>sources.list</filename> " -#| "files to be used. In general this is only of interest when specifying an " -#| "exact path, <literal>APT</literal> will automatically generate a URI with " -#| "the current architecture otherwise." msgid "" "<literal>suite</literal> may also contain a variable, <literal>$(ARCH)</" "literal> which expands to the Debian architecture (such as <literal>amd64</" @@ -6774,29 +6736,16 @@ msgid "" "<literal>APT</literal> will automatically generate a URI with the current " "architecture otherwise." msgstr "" -"<literal>distribution</literal> は、<literal>$(ARCH)</literal> 変数を含む場合" -"があります。<literal>$(ARCH)</literal> 変数は、システムで使用している Debian " -"アーキテクチャ (<literal>amd64</literal> や <literal>armel</literal> など) に" -"展開されます。これにより、アーキテクチャに依存しない <filename>sources.list</" +"<literal>スイート</literal> は、<literal>$(ARCH)</literal> 変数を含む場合があ" +"ります。<literal>$(ARCH)</literal> 変数は、システムで使用している Debian アー" +"キテクチャ (<literal>amd64</literal> や <literal>armel</literal> など) に展開" +"されます。これにより、アーキテクチャに依存しない <filename>sources.list</" "filename> ファイルを使用できます。一般的に、これは正しいパスを指定するときに" "気にするだけです。そうでない場合は、<literal>APT</literal> は現在のアーキテク" "チャで URI を自動的に生成します。" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:122 -#, fuzzy -#| msgid "" -#| "Since only one distribution can be specified per line it may be necessary " -#| "to have multiple lines for the same URI, if a subset of all available " -#| "distributions or components at that location is desired. APT will sort " -#| "the URI list after it has generated a complete set internally, and will " -#| "collapse multiple references to the same Internet host, for instance, " -#| "into a single connection, so that it does not inefficiently establish an " -#| "FTP connection, close it, do something else, and then re-establish a " -#| "connection to that same host. This feature is useful for accessing busy " -#| "FTP sites with limits on the number of simultaneous anonymous users. APT " -#| "also parallelizes connections to different hosts to more effectively deal " -#| "with sites with low bandwidth." msgid "" "In the traditional style sources.list format since only one distribution can " "be specified per line it may be necessary to have multiple lines for the " @@ -6810,14 +6759,15 @@ msgid "" "users. APT also parallelizes connections to different hosts to more " "effectively deal with sites with low bandwidth." msgstr "" -"有効な全 distribution, component の場所から、一部が必要な場合、1 行につき 1 " -"distribution しか指定できないため、同じ URI の行を複数記述することになるで" -"しょう。APT は内部で URI リストを生成してから、並べ替えます。そして、同じイン" -"ターネットホストに対しては複数の参照をまとめます。例えば FTP 接続後、切断して" -"からまた同じホストに再接続するといった、効率の悪いことをせずに、1 接続にまと" -"めます。この機能は、同時接続匿名ユーザ数を制限している、混んでいる FTP サイト" -"にアクセスするのに便利です。APT は、帯域の狭いサイトを効率よく扱うのに、異な" -"るホストへは、接続を並行して行うようにもしています。" +"古い形式の sources.list の記法では有効なディストリビューションやコンポーネン" +"トの場所全てから、一部が必要な場合、1 行につき 1 つのディストリビューションし" +"か指定できないため、同じ URI の行を複数記述することになるでしょう。APT は内部" +"で URI リストを生成してから、並べ替えます。そして、同じインターネットホストに" +"対しては複数の参照をまとめます。例えば FTP 接続後、切断してからまた同じホスト" +"に再接続するといった、効率の悪いことをせずに、1 接続にまとめます。この機能" +"は、同時接続匿名ユーザ数を制限している、混んでいる FTP サイトにアクセスするの" +"に便利です。APT は、帯域の狭いサイトを効率よく扱うのに、異なるホストへは、接" +"続を並行して行うようにもしています。" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:136 @@ -6851,23 +6801,16 @@ msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: sources.list.5.xml:146 -#, fuzzy -#| msgid "" -#| "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</" -#| "replaceable>,…</literal> can be used to specify for which architectures " -#| "information should be downloaded. If this option is not set all " -#| "architectures defined by the <literal>APT::Architectures</literal> option " -#| "will be downloaded." msgid "" "<literal>arch+=<replaceable>arch1</replaceable>,<replaceable>arch2</" "replaceable>,…</literal> and <literal>arch-=<replaceable>arch1</replaceable>," "<replaceable>arch2</replaceable>,…</literal> which can be used to add/remove " "architectures from the set which will be downloaded." msgstr "" -"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</" -"replaceable>,…</literal> により、どのアーキテクチャ情報をダウンロードするか指" -"定します。このオプションを指定していないと、<literal>APT::Architectures</" -"literal> オプションに定義してある、全アーキテクチャをダウンロードします。" +"<literal>arch+=<replaceable>arch1</replaceable>,<replaceable>arch2</" +"replaceable>,…</literal> あるいは <literal>arch-=<replaceable>arch1</" +"replaceable>,<replaceable>arch2</replaceable>,…</literal> を使って、ダウン" +"ロードするアーキテクチャを追加、削除できます。" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: sources.list.5.xml:149 @@ -8229,7 +8172,7 @@ msgstr "jgg@debian.org" #. type: Content of: <book><bookinfo><releaseinfo> #: guide.dbk:20 offline.dbk:20 msgid "Version &apt-product-version;" -msgstr "" +msgstr "バージョン &apt-product-version;" #. type: Content of: <book><bookinfo><abstract><para> #: guide.dbk:24 @@ -8247,7 +8190,7 @@ msgstr "" #. type: Content of: <book><bookinfo><legalnotice><title> #: guide.dbk:31 offline.dbk:32 msgid "License Notice" -msgstr "" +msgstr "ライセンスについて" #. type: Content of: <book><bookinfo><legalnotice><para> #: guide.dbk:33 offline.dbk:34 @@ -8284,6 +8227,10 @@ msgid "" "interface. Both provide a way to install and remove packages as well as " "download new packages from the Internet." msgstr "" +"APT パッケージは現在、APT <command>dselect</command> メソッドと <command>apt-" +"get</command> コマンドラインユーザインターフェイスの2つを収録しています。両方" +"ともインターネットから新しいパッケージをダウンロードするのと同様、パッケージ" +"をインストール、削除する方法を提供しています。" #. type: Content of: <book><chapter><section><title> #: guide.dbk:57 @@ -8297,6 +8244,9 @@ msgid "" "with each package to help assure that it integrates cleanly and easily into " "the system. The most prominent of its features is the dependency system." msgstr "" +"Debian パッケージシステムには各パッケージに関連する膨大な情報があり、システム" +"に手際良く簡単に統合することを支援します。その最も重要な機能は依存システムで" +"す。" #. type: Content of: <book><chapter><section><para> #: guide.dbk:64 @@ -8307,6 +8257,11 @@ msgid "" "things the average user is required to install. Also, it allows for choices " "in mail transport agents, X servers and so on." msgstr "" +"依存システムにより、システムにあるライブラリ等の共有要素を個々のプログラムを" +"使えるようになります。簡単に言うと、プログラムのうちまれに利用される部分を別" +"個のパッケージに配置して、平均的ユーザがインストールを必要とするものの数を減" +"らします。また、メール転送エージェントや X サーバ等の選択ができるようにもなり" +"ます。" #. type: Content of: <book><chapter><section><para> #: guide.dbk:71 @@ -8316,7 +8271,11 @@ msgid "" "package requires another package to be installed at the same time to work " "properly." msgstr "" +"依存システムの理解はまず単純な依存の概念を把握することから始まります。単純な" +"依存というのは、あるパッケージが適切に機能するためには別のパッケージが同時に" +"インストールされている必要があるということです。" +# Translator's NOTE: maybe s/GPGP/GPG/? #. type: Content of: <book><chapter><section><para> #: guide.dbk:76 msgid "" @@ -8325,6 +8284,10 @@ msgid "" "simple dependency on GPG. Also, because it is an emacs extension it has a " "simple dependency on emacs, without emacs it is completely useless." msgstr "" +"例えば mailcrypt は emacs を拡張するプログラムで、GPG によるメールの暗号化を" +"支援します。GPGP がインストールされていなければ mailcrypt は役に立たないので " +"mailcrypt には GPG に単純に依存しています。また、これは emacs の拡張なので " +"emacs に単純に依存し、emacs がないと何の役にも立ちません。" #. type: Content of: <book><chapter><section><para> #: guide.dbk:82 @@ -8338,6 +8301,14 @@ msgid "" "system so all mail transport agents have a conflicting dependency with all " "other mail transport agents." msgstr "" +"理解しておかないといけないもう一つの重要な依存に競合する依存があります。これ" +"はあるパッケージが別のパッケージと同時にインストールされていると機能せず、シ" +"ステムにとってひどく有害なこともあります。例として sendmail や exim、qmail 等" +"のメール転送エージェントで考えてみましょう。メール転送エージェントはどれも" +"メールを受け取るのにネットワークを待ち受ける必要があるため、2つインストールす" +"ることは不可能です。複数インストールするとシステムに重大な被害を与える可能性" +"があるため、メール転送エージェントはどれも他のあらゆるメール転送エージェント" +"と競合依存となっています。" #. type: Content of: <book><chapter><section><para> #: guide.dbk:92 @@ -8351,6 +8322,13 @@ msgid "" "depend on mail-transport-agent. This can add a great deal of confusion when " "trying to manually fix packages." msgstr "" +"複雑な例としては、別のパッケージのように装うパッケージがあります。exim と " +"sendmail について見てみると、その多くの目的は同一で、両方ともメールを配送し、" +"一般的インターフェイスを解釈します。そこで、パッケージシステムにはどちらも " +"mail-transport-agents だと宣言する方法があります。そうして exim と sendmail " +"は両方とも mail-transport-agent を提供すると宣言し、他のメール転送エージェン" +"トを必要とするパッケージは mail-transport-agent に依存します。手作業により" +"パッケージを修正しようとしたときに多大な混乱が生まれる可能性があります。" #. type: Content of: <book><chapter><section><para> #: guide.dbk:102 @@ -8360,6 +8338,10 @@ msgid "" "issues by providing a number of automatic algorithms that help in selecting " "packages for installation." msgstr "" +"既にインストールされている、あるいはされていないパッケージについて、1つの依存" +"が生まれる可能性は常にあります。APT はインストールするパッケージの選択を支援" +"する自動化でのアルゴリズムをいくつか提供することで依存問題の解決支援に努めま" +"す。" #. type: Content of: <book><chapter><title> #: guide.dbk:111 @@ -8374,6 +8356,10 @@ msgid "" "does not understand .deb files, it works with the package's proper name and " "can only install .deb archives from a <emphasis>Source</emphasis>." msgstr "" +"<command>apt-get</command> はコマンドラインからパッケージをインストールする簡" +"単な方法を提供します。<command>dpkg</command> とは異なり、<command>apt-get</" +"command> は .deb ファイルを解釈せず、連携するのはパッケージ特有の名前で、イン" +"ストールできるのは<emphasis>ソース</emphasis>にある .deb アーカイブだけです。" #. type: Content of: <book><chapter><para><footnote><para> #: guide.dbk:119 @@ -8381,6 +8367,8 @@ msgid "" "If you are using an http proxy server you must set the http_proxy " "environment variable first, see sources.list(5)" msgstr "" +"http プロキシサーバを使っている場合はまず http_proxy 環境変数をセットする必" +"要があります。sources.list(5) を見てください" #. type: Content of: <book><chapter><para> #: guide.dbk:119 @@ -8390,6 +8378,10 @@ msgid "" "from the <emphasis>Sources</emphasis> so that it knows what packages are " "available. This is done with <literal>apt-get update</literal>. For instance," msgstr "" +"<command>apt-get</command> を使う前にまずやるべきことは<placeholder type=\"" +"footnote\" id=\"0\"/>パッケージ一覧を<emphasis>ソース</emphasis>から取得する" +"ことで、それにより利用できるパッケージがわかるようになります。これには " +"<literal>apt-get update</literal> を実行します。例えば" #. type: Content of: <book><chapter><screen> #: guide.dbk:127 @@ -8410,7 +8402,7 @@ msgstr "" #. type: Content of: <book><chapter><para> #: guide.dbk:134 msgid "Once updated there are several commands that can be used:" -msgstr "" +msgstr "更新後は複数のコマンドを使えます:" #. type: Content of: <book><chapter><variablelist><varlistentry><term> #: guide.dbk:138 @@ -8429,6 +8421,14 @@ msgid "" "command> or <literal>apt-get install</literal> can be used to force these " "packages to install." msgstr "" +"upgrade を行うとシステム全体を穏やかにアップグレードします。アップグレードで" +"は新しいパッケージのインストールや既存のパッケージの削除、アップグレードする" +"と他のパッケージを破壊する可能性のある場合のそのパッケージのアップグレードは" +"行いません。これは毎日実行してシステムを比較的安全にアップグレードできます。" +"upgrade を行うとアップグレードできないパッケージがある場合にその一覧を表示し" +"ます。これは通常新しいパッケージに依存しているか他のパッケージと競合している" +"ということになります。<command>dselect</command> や <literal>apt-get install" +"</literal> を使うとそういったパッケージを強制的にインストールできます。" #. type: Content of: <book><chapter><variablelist><varlistentry><term> #: guide.dbk:153 @@ -8446,6 +8446,12 @@ msgid "" "listed packages and will print a summary and ask for confirmation if " "anything other than its arguments are changed." msgstr "" +"install を使ってパッケージを名前によりインストールします。パッケージは自動的" +"に取得、インストールされます。これはインストールするパッケージの名前が既にわ" +"かっていて GUI を使って選択したくない場合に有用です。インストールするパッケー" +"ジはいくらでも指定でき、全て取得されます。install では対象パッケージ一覧から" +"自動的に依存問題の解決に努めてまとめを提示し、指示以外の変更がある場合は確認" +"を促します。" #. type: Content of: <book><chapter><variablelist><varlistentry><term> #: guide.dbk:167 @@ -8464,6 +8470,13 @@ msgid "" "<command>dselect</command> can be used to install any packages that may have " "been left out." msgstr "" +"dist-upgrade は完全なアップグレードを行うように設計されていて、Debian のリ" +"リース間のアップグレードを単純化します。洗練されたアルゴリズムを使って、シス" +"テムをできるだけ最新のリリースにするためにインストール、アップグレード、削除" +"する最善のパッケージ群を決定します。状況によっては <command>dselect</command> で手" +"作業により時間を掛けて依存を解決するよりも dist-upgrade を使う方が希望には合" +"うかもしれません。dist-upgrade 完了後は <command>dselect</command> を使って、残って" +"いるパッケージがあればインストールできます。" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> #: guide.dbk:180 @@ -8471,6 +8484,8 @@ msgid "" "It is important to closely look at what dist-upgrade is going to do, its " "decisions may sometimes be quite surprising." msgstr "" +"dist-upgrade が実行する内容をよく観察するのは重要です。かなり驚くような判断が" +"なされることもあります。" #. type: Content of: <book><chapter><para> #: guide.dbk:187 @@ -8485,6 +8500,14 @@ msgid "" "the command that caused them to be downloaded again without <literal>-d</" "literal>." msgstr "" +"<command>apt-get</command> にはコマンドラインオプションが複数あり、man ページ" +"の <citerefentry><refentrytitle>apt-get</refentrytitle><manvolnum>8</" +"manvolnum></citerefentry> で詳細に説明されています。最も有用なオプションは取" +"得したファイルをインストールしない <literal>-d</literal> です。システムが大量" +"のパッケージをダウンロードする必要がある場合、何かうまくいかなかったときに" +"インストールを開始するのは望ましくはないでしょう。<literal>-d</literal> を指" +"定すると、ダウンロードしたときのコマンドを単純に再び、<literal>-d</literal> " +"を付けずに実行することでダウンロードしたアーカイブをインストールできます。" #. type: Content of: <book><chapter><title> #: guide.dbk:199 @@ -8499,6 +8522,10 @@ msgid "" "command> is used to select the packages to be installed or removed and APT " "actually installs them." msgstr "" +"APT の <command>dselect</command> メソッドは <command>dselect</command> パッ" +"ケージ選択 GUI を使った完全な APT システムを提供します。インストールや削除す" +"るパッケージの選択には <command>dselect</command> を使い、実際のインストール" +"は APT が行います。" #. type: Content of: <book><chapter><para> #: guide.dbk:207 @@ -8513,6 +8540,15 @@ msgid "" "have access to the latest bug fixes. APT will automatically use packages on " "your CD-ROM before downloading from the Internet." msgstr "" +"APT メソッドを有効にするには、<command>dselect</command> でアクセス(a) を選択" +"し、それから APT メソッドを選択する必要があります。そうするとアーカイブの取得" +"先の場所となる<emphasis>ソース</emphasis>群を聞かれます。これにはリモートの" +"インターネットサイトやローカルの Debian ミラー、CD-ROM を指定できます。各ソー" +"スで Debian アーカイブ全体のうちの一部を提供でき、APT は自動的に組み合わせて" +"パッケージ群一式を構成します。CD-ROM がある場合はまずそれを指定し、それからミ" +"ラーを指定するのが良い方法で、そうすることで最新のバグ修正にアクセスできるよ" +"うになります。APT はインターネットからダウンロードする前に CD-ROM にあるパッ" +"ケージを自動的に利用します。" #. type: Content of: <book><chapter><screen> #: guide.dbk:218 @@ -8531,6 +8567,18 @@ msgid "" "\n" " URL [http://llug.sep.bnl.gov/debian]:\n" msgstr "" +" ディストリビューションソース位置一覧の準備\n" +"\n" +" Debian ディストリビューションの基底 URL を指定してください。\n" +" 認識できるアクセス方法: http file\n" +"\n" +" 例:\n" +" file:/mnt/debian,\n" +" ftp://ftp.debian.org/debian,\n" +" http://ftp.de.debian.org/debian,\n" +"\n" +"\n" +" URL [http://llug.sep.bnl.gov/debian]:\n" #. type: Content of: <book><chapter><para> #: guide.dbk:232 @@ -8539,6 +8587,9 @@ msgid "" "Debian archive, defaulting to a HTTP mirror. Next it asks for the " "distribution to get." msgstr "" +"<emphasis>ソース</emphasis>の準備は基礎となる Debian アーカイブの質問から始まり、デフォル" +"トは HTTP ミラーとなっています。その次は取得するディストリビューションを質問" +"します。" #. type: Content of: <book><chapter><screen> #: guide.dbk:237 @@ -8550,6 +8601,11 @@ msgid "" "\n" " Distribution [stable]:\n" msgstr "" +" 取得するディストリビューションのタグやパッケージファイルへのパスを\n" +" / で終える形式で指定してください。ディストリビューションのタグには\n" +" 以下のようなものがあります: stable unstable testing non-US\n" +"\n" +" ディストリビューション [stable]:\n" #. type: Content of: <book><chapter><para> #: guide.dbk:244 @@ -8562,6 +8618,11 @@ msgid "" "exported from the United States. Importing these packages into the US is " "legal however." msgstr "" +"ディストリビューションはアーカイブ中の Debian バージョンを参照し、<emphasis>" +"stable</emphasis> は最新のリリース版を、<emphasis>unstable</emphasis> は開発" +"版を参照します。<emphasis>non-US</emphasis> は一部のミラーでのみ利用可能で、" +"合衆国からの輸出ができない暗号化技術その他のものを収録するパッケージを参照し" +"ます。ただしこういったパッケージの合衆国への輸入は合法です。" #. type: Content of: <book><chapter><screen> #: guide.dbk:253 @@ -8572,6 +8633,10 @@ msgid "" "\n" " Components [main contrib non-free]:\n" msgstr "" +" 取得するコンポーネントを指定してください\n" +" コンポーネントには以下のようなものがあります: main contrib non-free\n" +"\n" +" コンポーネント [main contrib non-free]:\n" #. type: Content of: <book><chapter><para> #: guide.dbk:259 @@ -8581,6 +8646,10 @@ msgid "" "packages while contrib and non-free contain things that have various " "restrictions placed on their use and distribution." msgstr "" +"コンポーネント一覧は取得するサブディストリビューションの一覧を参照します。こ" +"のディストリビューションはソフトウェアのライセンスを基にして分けられていま" +"す。main にあるのは DFSG フリーのパッケージですが contrib や non-free には利" +"用目的や配布形態に様々な制限を課せられているものが収録されています。" #. type: Content of: <book><chapter><para> #: guide.dbk:265 @@ -8588,6 +8657,8 @@ msgid "" "Any number of sources can be added, the setup script will continue to prompt " "until you have specified all that you want." msgstr "" +"ソースはいくらでも追加できます。準備スクリプトは必要なソースを全て指定するま" +"で聞き続けます。" #. type: Content of: <book><chapter><para> #: guide.dbk:269 @@ -8598,6 +8669,11 @@ msgid "" "available to <command>dselect</command>. [U]pdate must be performed even if " "<literal>apt-get update</literal> has been run before." msgstr "" +"<command>dselect</command> を使う前にメニューから更新(u)を選択して利用可能な" +"パッケージ一覧を更新する必要があります。これは <literal>apt-get update</" +"literal> の上位集合で、取得した情報を <command>dselect</command> から利用でき" +"るようにします。以前に <literal>apt-get update</literal> を実行していても更新" +"(u)を実行する必要があります。" #. type: Content of: <book><chapter><para> #: guide.dbk:276 @@ -8607,6 +8683,9 @@ msgid "" "[R]emove commands have no meaning, the [I]nstall command performs both of " "them together." msgstr "" +"その後は選択(s)を使って選択し、導入(i)を使ってインストールします。APT メソッ" +"ドを使っている場合は設定(c)や削除(r)コマンドに意味はなく、導入(i)コマンドがそ" +"の両方を実行します。" #. type: Content of: <book><chapter><para> #: guide.dbk:282 @@ -8615,6 +8694,9 @@ msgid "" "have been successfully installed. To change this behavior place " "<literal>Dselect::clean \"prompt\";</literal> in /etc/apt/apt.conf." msgstr "" +"デフォルトで APT はインストールに成功したパッケージ (.deb) ファイルを自動的に" +"削除します。この挙動を変更するには /etc/apt/apt.conf 中に <literal>Dselect::" +"clean \"prompt\";</literal> と記述します。" #. type: Content of: <book><chapter><title> #: guide.dbk:288 @@ -8628,6 +8710,9 @@ msgid "" "to <command>apt-get</command>. The method actually provides more " "functionality than is present in <command>apt-get</command> alone." msgstr "" +"<command>dselect</command> メソッドは実際に <command>apt-get</command> に対" +"するラッパースクリプト群です。このメソッドでは <command>apt-get</command> 単" +"体に存在している以上の機能を実際に提供しています。" #. type: Content of: <book><chapter><para> #: guide.dbk:290 @@ -8639,6 +8724,12 @@ msgid "" "then will print out some informative status messages so that you can " "estimate how far along it is and how much is left to do." msgstr "" +"APT の <command>dselect</command> メソッドと <command>apt-get</command> は共" +"に同一のインターフェイスを共有しています。通常は行う内容を告知して実行する簡" +"単なシステムです。<placeholder type=\"footnote\" id=\"0\"/> 実行内容のまとめ" +"を告知した後 APT が参考になる状態メッセージをいくらか表示するため、どれくら" +"い進んでいるのか、あるいは残り作業がどれくらいあるのか見積もることができるよ" +"うになっています。" #. type: Content of: <book><chapter><section><title> #: guide.dbk:301 @@ -8653,6 +8744,9 @@ msgid "" "At any time these operations can be performed by running <literal>apt-get " "check</literal>." msgstr "" +"update 以外のあらゆる操作で、APT はいくつか処理を行い内部状態を準備します。ま" +"た、システムの状態についてもいくらか確認します。この処理は <literal>apt-get " +"check</literal> によりいつでも実行できます。" #. type: Content of: <book><chapter><section><screen> #: guide.dbk:309 @@ -8674,6 +8768,10 @@ msgid "" "If some of the package files are not found then they will be ignored and a " "warning will be printed when apt-get exits." msgstr "" +"これが最初に行うのはパッケージファイルを全てメモリに読み込むことです。APT は" +"キャッシュを使うようになっているので、この処理は次に実行するときには早く終わ" +"ります。見つけられないパッケージファイルがある場合は無視され、apt-get 終了時" +"に注意を表示します。" #. type: Content of: <book><chapter><section><para> #: guide.dbk:320 @@ -8683,6 +8781,9 @@ msgid "" "package and considers if it is OK. Should this find a problem then a report " "will be printed out and <command>apt-get</command> will refuse to run." msgstr "" +"最後の処理はシステムの依存関係の詳細な分析です。インストール、あるいは展開さ" +"れたパッケージの依存関係を全て確認し、問題ないか判断します。問題が見つかった" +"場合は報告し、<command>apt-get</command> の実行を拒否します。" #. type: Content of: <book><chapter><section><screen> #: guide.dbk:326 @@ -8729,6 +8830,10 @@ msgid "" "that are unmet. A short explanation of why the package has a dependency " "problem is also included." msgstr "" +"この例ではシステムに libreadlineg2 に関する重大な問題を含めて多数の問題があり" +"ます。未解決の依存関係があれば各パッケージごとにそのパッケージに問題があるこ" +"とを示し、併せて未解決の依存関係を1行で出力します。そのパッケージの依存問題の" +"理由について簡潔な説明も添えられます。" #. type: Content of: <book><chapter><section><para><footnote><para> #: guide.dbk:352 @@ -8736,6 +8841,8 @@ msgid "" "APT however considers all known dependencies and attempts to prevent broken " "packages" msgstr "" +"APT はそれでも既知の依存関係を全て検討し、パッケージが壊れた状態となることを" +"回避しようとします。" #. type: Content of: <book><chapter><section><para> #: guide.dbk:350 @@ -8747,6 +8854,11 @@ msgid "" "In this situation a package may have been unpacked without its dependents " "being installed." msgstr "" +"システムがこのように壊れた状態となる原因は2つあります。1つ目はアップグレード" +"実行時にパッケージ間の難解な依存関係を <command>dpkg</command> がいくらか欠" +"いていることによります。<placeholder type=\"footnote\" id=\"0\"/>2つ目はパッ" +"ケージのインストール処理中に何か失敗した場合です。この状況では依存するパッ" +"ケージがインストールされないままパッケージが展開されている可能性があります。" #. type: Content of: <book><chapter><section><para> #: guide.dbk:359 @@ -8759,6 +8871,12 @@ msgid "" "<literal>-f</literal> option to allow for easy continuation of failed " "maintainer scripts." msgstr "" +"APT がパッケージのインストール順序に特定の制約を設けていることにより2つ目の状" +"況は1つ目の状況と比べて重大ですらなくなります。どちらの場合でも <command>apt-" +"get</command> に <literal>-f</literal> オプションを指定することで APT は解決" +"方法を推測し、処理を続けます。APT <command>dselect</command> メソッドでは常" +"に <literal>-f</literal> オプションを有効にして、メンテナスクリプトでの問題が" +"起きた場合でも簡単に処理を継続できるようにしています。" #. type: Content of: <book><chapter><section><para> #: guide.dbk:368 @@ -8769,6 +8887,11 @@ msgid "" "case it is necessary to manually use dpkg (possibly with forcing options) to " "correct the situation enough to allow APT to proceed." msgstr "" +"しかし、1つ目の状況により重大な壊れ方になっているシステムの修正に <literal>-" +"f</literal> オプションを使った場合はインストールにすぐに失敗、あるいはインス" +"トール順序がおかしくなる可能性があります。どちらの場合も、APT が処理を十分に" +"進められるところまで手作業により dpkg を使って (恐らく強制するオプションを指" +"定して) 状況を修正する必要があります。" #. type: Content of: <book><chapter><section><title> #: guide.dbk:376 @@ -8785,6 +8908,11 @@ msgid "" "literal> option and any other relevant activities to the command being " "executed." msgstr "" +"処理を続ける前に <command>apt-get</command> は実行しようとする処理について報" +"告します。通常この報告は実行される操作の種類を反映したものになりますが、一般" +"的要素がいくつかあります。どの場合でもこの処理一覧は最終的な状態を示し、" +"<literal>-f</literal> オプションその他の実行されるコマンドに関連する動作を考" +"慮したものとなります。" #. type: Content of: <book><chapter><section><section><title> #: guide.dbk:385 @@ -8817,6 +8945,10 @@ msgid "" "generated for an <literal>install</literal> command. The listed packages are " "often the result of an Auto Install." msgstr "" +"追加パッケージリストはコマンドラインで指示した以外にインストールやアップグ" +"レードされるパッケージを全て表示します。これは <literal>install</literal> コ" +"マンドの場合にのみ生成されます。一覧に挙げられるパッケージは自動インストール" +"の結果による場合が多くなります。" #. type: Content of: <book><chapter><section><section><title> #: guide.dbk:402 @@ -8850,6 +8982,12 @@ msgid "" "packages that are going to be removed because they are only partially " "installed, possibly due to an aborted installation." msgstr "" +"削除するパッケージリストはシステムから削除されるパッケージを全て表示します。" +"これはどの操作でも起きるもので、重要なものが失われることのないように注意深く" +"確認すべきです。<literal>-f</literal> オプションを使った場合はパッケージの削" +"除を伴うことが特に多く、そのためこのオプションを指定した場合は特に注意を払う" +"ようにしてください。この一覧にはインストールの中止等により一部だけがインス" +"トールされているために削除されるパッケージが含まれることがあります。" #. type: Content of: <book><chapter><section><section><title> #: guide.dbk:421 @@ -8873,6 +9011,9 @@ msgid "" "listed are not presently installed in the system but will be when APT is " "done." msgstr "" +"新規パッケージリストでは単純にこれから起きることを再通知します。このパッケー" +"ジ一覧は現在システムにインストールされておらず、APT 処理後には存在することに" +"なります。" #. type: Content of: <book><chapter><section><section><title> #: guide.dbk:432 @@ -8901,6 +9042,12 @@ msgid "" "to install is with <literal>apt-get install</literal> or by using " "<command>dselect</command> to resolve their problems." msgstr "" +"システム全体をアップグレードする場合、新しいパッケージが必要であったり既にイ" +"ンストールされているパッケージと競合するためにパッケージの新しいバージョンが" +"インストールできないということがあります。この場合、そのパッケージは一時固定" +"リストに表示されます。この一覧に挙げられたパッケージをインストールする最善の" +"方法は <literal>apt-get install</literal> または <command>dselect</command> " +"を使ってその問題を解決することです。" #. type: Content of: <book><chapter><section><section><title> #: guide.dbk:448 @@ -8924,6 +9071,9 @@ msgid "" "case it prints out a warning that the held package is going to be changed. " "This should only happen during dist-upgrade or install." msgstr "" +"保留となっているパッケージをインストールするように APT に指示することもできま" +"す。その際、保留となっているパッケージを変更することを警告します。これは " +"dist-upgrade または install を指示したときにしか起きないはずです。" #. type: Content of: <book><chapter><section><section><title> #: guide.dbk:460 @@ -8934,7 +9084,7 @@ msgstr "最後のまとめ" #: guide.dbk:462 msgid "" "Finally, APT will print out a summary of all the changes that will occur." -msgstr "" +msgstr "最後に、APT は発生する全変更のまとめを表示します。" #. type: Content of: <book><chapter><section><section><screen> #: guide.dbk:465 @@ -8965,6 +9115,16 @@ msgid "" "If a large number of packages are being removed then the value may indicate " "the amount of space that will be freed." msgstr "" +"まとめの1行目は単純に一覧を全て短くまとめたもので、アップグレードされる (既に" +"インストールされていて新しいバージョンが利用可能な) パッケージの数についても" +"示します。2行目は設定が完了していないパッケージの数を示し、インストールを中止" +"した場合にこれに集計されることがあります。最終行はそのインストールで必要とな" +"る容量の要件を示します。最初の数値の組はアーカイブファイルのサイズを示しま" +"す。この1つ目の数値はリモートから取得してくる必要のあるバイト数、2つ目は必要" +"となる全アーカイブの合計サイズを示します。次の数値は現在インストールされてい" +"るパッケージと新しくインストールしたパッケージのサイズの違いを示します。これ" +"は処理が全て終わった後に /usr で消費される容量にほぼ相当します。パッケージを" +"大量に削除する場合は解放される容量を示すこともあります。" #. type: Content of: <book><chapter><section><section><para> #: guide.dbk:484 @@ -8972,6 +9132,8 @@ msgid "" "Some other reports can be generated by using the -u option to show packages " "to upgrade, they are similar to the previous examples." msgstr "" +"他の報告として、-u オプションを使うとアップグレードされるパッケージを表示しま" +"す。これは前に示した例と似たものです。" #. type: Content of: <book><chapter><section><title> #: guide.dbk:491 @@ -8984,6 +9146,8 @@ msgid "" "During the download of archives and package files APT prints out a series of " "status messages." msgstr "" +"アーカイブやパッケージファイルのダウンロード中、APT は状態を示す一連のメッ" +"セージを表示します。" #. type: Content of: <book><chapter><section><screen> #: guide.dbk:497 @@ -9015,6 +9179,11 @@ msgid "" "is unknown <literal>apt-get update</literal> estimates the percent done " "which causes some inaccuracies." msgstr "" +"APT がファイルの取得を開始すると、最終行でダウンロードの進捗状況を示しつつ" +"<emphasis>取得</emphasis>で始まる行が表示されます。進捗の最初のパーセント値は" +"全ファイルに対する取得済みの全体での割合を示します。残念ながらパッケージファ" +"イルのサイズは不明なので <literal>apt-get update</literal> は不正確な予測を行" +"う可能性があります。" #. type: Content of: <book><chapter><section><para> #: guide.dbk:514 @@ -9028,6 +9197,12 @@ msgid "" "downloaded. For archives it will contain the name of the package that is " "being fetched." msgstr "" +"状態を示す行の次の節は各ダウンロードスレッドごとに1度ずつ繰り返され、進行中の" +"操作や処理についての有用な情報をいくらか示します。この節は単純に <emphasis>" +"Forking</emphasis> となっていることもあり、その場合は OS がダウンロード用のモ" +"ジュールを読み込んでいることを示します。[ の後の最初の語は履歴に表示されてい" +"る取得番号です。その次の語はダウンロード対象の名前の短縮形です。アーカイブの" +"場合は取得中のパッケージの名前が入ります。" #. type: Content of: <book><chapter><section><para> #: guide.dbk:524 @@ -9046,6 +9221,17 @@ msgid "" "shown the estimated transfer time. This is updated regularly and reflects " "the time to complete everything at the shown transfer rate." msgstr "" +"単一引用符内はダウンロードのやりとりの進捗を示す有益な文字列です。標準的には" +"<emphasis>...へ接続しています</emphasis>から<emphasis>ファイルを待っています" +"</emphasis>へ、それから<emphasis>...をダウンロードしています</emphasis>または" +"<emphasis>...を再開しています</emphasis>へと進みます。最後の値はリモートサイ" +"トからダウンロードしたバイト数です。ダウンロードが始まるとこれは <literal>" +"102/10.2k</literal> のように表示され、この場合10.2キロバイトのうち102バイトが" +"取得済みであることを示します。合計サイズは常に4ケタで表示され、表示空間を保つ" +"ようになっています。サイズ表示の後はそのファイル自体の進捗状況を百分率で示し" +"たものです。その2つ後は瞬間的な平均速度です。この値は5秒ごとに更新され、その" +"間のデータ転送速度を反映します。最後は推定転送時間を表示しています。これは定" +"期的に更新され、表示している転送速度で全て完了する時間を表示します。" #. type: Content of: <book><chapter><section><para> #: guide.dbk:539 @@ -9056,6 +9242,10 @@ msgid "" "for logging to a file, use the <literal>-q</literal> option to remove the " "status display." msgstr "" +"状態表示は0.5秒ごとに更新してダウンロードの進捗状況を絶えず通知し、取得行は新" +"しいファイルの処理が始まるたびに流れていきます。状態表示は絶えず更新されるた" +"めファイルへの記録には適しません。<literal>-q</literal> オプションを使うと状" +"態を表示しないようにできます。" #. type: Content of: <book><chapter><section><title> #: guide.dbk:547 @@ -9072,6 +9262,12 @@ msgid "" "Before each question there is usually a description of what it is asking and " "the questions are too varied to discuss completely here." msgstr "" +"APT はアーカイブのインストールに <command>dpkg</command> を使い、ダウンロード" +"の完了後は <command>dpkg</command> インターフェイスに切り替わります。" +"<command>dpkg</command> もパッケージの処理中にいくつか質問し、パッケージ自体" +"も複数質問するかもしれません。通常それぞれの質問の前にそれが何を聞いているの" +"か説明します。その質問の内容は多岐にわたるものであり、ここで説明できるもので" +"は全くありません。" #. type: Content of: <book><title> #: offline.dbk:10 @@ -9092,6 +9288,7 @@ msgstr "" msgid "" "<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" msgstr "" +"<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" #. type: Content of: <book><chapter><title> #: offline.dbk:47 @@ -9111,6 +9308,10 @@ msgid "" "machine is on a slow link, such as a modem and another machine has a very " "fast connection but they are physically distant." msgstr "" +"通常 APT は Debian アーカイブに、ローカルメディアから、あるいはネットワーク経" +"由で直接アクセスできる必要があります。他によくある苦情としてはある Debian マ" +"シンの接続がモデム等のために低速で、別のマシンには非常に高速な接続があるけれ" +"ども物理的に遠い、といったことがあります。" #. type: Content of: <book><chapter><section><para> #: offline.dbk:57 @@ -9125,6 +9326,15 @@ msgid "" "emphasis> mean the machine downloading the packages, and <emphasis>target " "host</emphasis> the one with bad or no connection." msgstr "" +"これに対する解法としては Zip や SuperDisk ディスクといった大容量脱着可能メ" +"ディアを使います。こういったディスクは Debian アーカイブ全体を格納するには十" +"分とは言えない容量ですがほとんどのユーザにとって必要なその一部を収めるには十" +"分余裕があります。その考え方は APT を使って必要なパッケージの一覧を生成し、接" +"続状態の良好な別のマシンを使ってそのディスク上に取得します。APT を使える別の " +"Debian マシンや、完全に異なる OS で wget のようなダウンロードツールを使うこと" +"も可能です。<emphasis>リモートホスト</emphasis>はパッケージをダウンロードする" +"マシン、<emphasis>対象ホスト</emphasis>は接続がないあるいは良くないマシンだと" +"考えてください。" #. type: Content of: <book><chapter><section><para> #: offline.dbk:68 @@ -9134,6 +9344,10 @@ msgid "" "that the disc should be formated with a filesystem that can handle long file " "names such as ext2, fat32 or vfat." msgstr "" +"これは APT 設定ファイルを独創的に操作することで実現できます。あるディスクを " +"APT が検索するようにするために必須となる前提条件はアーカイブファイルです。そ" +"のディスクは長いファイル名を扱えるファイルシステム、例えば ext2 や fat32、" +"vfat でフォーマットする必要があることに注意してください。" #. type: Content of: <book><chapter><title> #: offline.dbk:77 @@ -9148,6 +9362,10 @@ msgid "" "remote machine to fetch the latest package files and decide which packages " "to download. The disk directory structure should look like:" msgstr "" +"APT を両方のマシンで利用できるようにする最も単純な設定を考えます。基本的な考" +"え方は status ファイルのコピーをそのディスクに置いて最新のパッケージファイル" +"の取得やダウンロードするパッケージの決定にはリモートマシンを使います。その" +"ディスクのディレクトリ構造は次のようになります:" #. type: Content of: <book><chapter><section><screen> #: offline.dbk:87 @@ -9187,6 +9405,12 @@ msgid "" "using a local archive you must use copy URIs, the syntax is identical to " "file URIs." msgstr "" +"設定ファイルでは APT が管理ファイルをそのディスクに保存し、そのディスク上の設" +"定ファイルを同様に利用するように指示する必要があります。sources.list ではリ" +"モートマシンから利用する適切なサイトを指定し、status ファイルは<emphasis>対象" +"ホスト</emphasis>の <emphasis>/var/lib/dpkg/status</emphasis> をコピーしたも" +"のを利用します。ローカルアーカイブを使っている場合はその URI を利用しないとい" +"けないことに注意してください。書式はファイルの URI と同一です。" #. type: Content of: <book><chapter><section><para> #: offline.dbk:108 @@ -9194,6 +9418,8 @@ msgid "" "<emphasis>apt.conf</emphasis> must contain the necessary information to make " "APT use the disc:" msgstr "" +"<emphasis>apt.conf</emphasis> には APT がそのディスクを使うようにするのに必要" +"な情報を記述しないといけません:" #. type: Content of: <book><chapter><section><screen> #: offline.dbk:112 @@ -9254,6 +9480,8 @@ msgid "" "configuration file in <emphasis>/usr/share/doc/apt/examples/apt.conf</" "emphasis>." msgstr "" +"apt.conf の man ページや <emphasis>/usr/share/doc/apt/examples/apt.conf</" +"emphasis> にある見本の設定ファイルを調べるとさらなる詳細があります。" #. type: Content of: <book><chapter><section><para> #: offline.dbk:142 @@ -9265,6 +9493,12 @@ msgid "" "the remote machine and configure the sources.list. On the remote machine " "execute the following:" msgstr "" +"対象のマシンでまず行うことはディスクをマウントしてそのディスクに <emphasis>/" +"var/lib/dpkg/status</emphasis> をコピーすることです。概要にまとめられているよ" +"うに、ディレクトリ <emphasis>archives/partial/</emphasis> 及び <emphasis>" +"lists/partial/</emphasis> を作成する必要もあるでしょう。それからディスクをリ" +"モートマシンに移動して sources.list を設定します。リモートマシンでは以下の手" +"順を実行します:" #. type: Content of: <book><chapter><section><screen> #: offline.dbk:151 @@ -9290,6 +9524,10 @@ msgid "" "such as <emphasis>dselect</emphasis>. However this presents a problem in " "communicating your selections back to the local computer." msgstr "" +"dist-upgrade コマンドは他の任意の標準的な APT コマンド、特に dselect-upgrade " +"に置き換えることができます。<emphasis>dselect</emphasis> 等の APT フロント" +"エンドを使うこともできます。しかし、それには選択したときにローカルコンピュー" +"タとやりとりしてしまうという問題があります。" #. type: Content of: <book><chapter><section><para> #: offline.dbk:164 @@ -9297,6 +9535,8 @@ msgid "" "Now the disc contains all of the index files and archives needed to upgrade " "the target machine. Take the disc back and run:" msgstr "" +"これで、対象のマシンをアップグレードするのに必要な索引ファイルとアーカイブが" +"全てこのディスクに収録されたということになります。ディスクを戻して実行します:" #. type: Content of: <book><chapter><section><screen> #: offline.dbk:168 @@ -9320,6 +9560,8 @@ msgid "" "It is necessary for proper function to re-specify the status file to be the " "local one. This is very important!" msgstr "" +"適切に機能するためにはローカルのファイルを status ファイルに再指定する必要が" +"あります。これは非常に重要です!" #. type: Content of: <book><chapter><section><para> #: offline.dbk:179 @@ -9330,11 +9572,15 @@ msgid "" "the local machine - but this may not always be possible. DO NOT copy the " "status file if dpkg or APT have been run in the mean time!!" msgstr "" +"dselect を使っている場合、disc/status はリモートマシンで何か選択すると更新さ" +"れるため /var/lib/dpkg/status にコピーするのは非常に危険です。選択はローカル" +"マシンでのみ行うことを強く勧めます - しかしこれは常に可能だとは限りません。" +"dpkg や APT を実行している間は status ファイルをコピー *しないでください* !!" #. type: Content of: <book><chapter><title> #: offline.dbk:189 msgid "Using APT and wget" -msgstr "APT と wget の使用法" +msgstr "APT と wget の使用" #. type: Content of: <book><chapter><section><para> #: offline.dbk:193 @@ -9343,6 +9589,9 @@ msgid "" "run on nearly any machine. Unlike the method above this requires that the " "Debian machine already has a list of available packages." msgstr "" +"<emphasis>wget</emphasis> は人気のある移植性の高いダウンロードツールで、ほぼ" +"あらゆるマシンで実行できます。上記の方法とは異なり、これには利用可能なパッ" +"ケージの一覧を Debian マシンで用意しておく必要があります。" #. type: Content of: <book><chapter><section><para> #: offline.dbk:198 @@ -9352,6 +9601,10 @@ msgid "" "option to apt-get and then preparing a wget script to actually fetch the " "packages." msgstr "" +"基本的な考え方は、リモートサイトからダウンロードしたアーカイブファイルだけを" +"収録したディスクを作成するということです。これは apt-get に --print-uris オプ" +"ションを使って行い、それから wget スクリプトを準備して実際にパッケージを取得" +"します。" #. type: Content of: <book><chapter><section><title> #: offline.dbk:204 @@ -9364,6 +9617,8 @@ msgid "" "Unlike the previous technique no special configuration files are required. " "We merely use the standard APT commands to generate the file list." msgstr "" +"前の技とは異なり、特別な設定ファイルを必要としません。標準的な APT コマンドを" +"単純に使ってファイル一覧を生成します。" #. type: Content of: <book><chapter><section><screen> #: offline.dbk:210 @@ -9385,6 +9640,8 @@ msgid "" "Any command other than dist-upgrade could be used here, including dselect-" "upgrade." msgstr "" +"dselect-upgrade を含め、ここでは dist-upgrade 以外の任意のコマンドを使えま" +"す。" #. type: Content of: <book><chapter><section><para> #: offline.dbk:220 @@ -9394,6 +9651,10 @@ msgid "" "with the current directory as the disc's mount point so as to save the " "output on the disc." msgstr "" +"/disc/wget-script ファイルには、必要なアーカイブを取得するために実行する " +"wget コマンドの一覧を収録するようになっています。ディスク上の出力を減らすた" +"め、このスクリプトは現在のディレクトリをそのディスクのマウントポイントとして" +"実行するようにしてください。" #. type: Content of: <book><chapter><section><para> #: offline.dbk:226 @@ -9418,6 +9679,8 @@ msgid "" "Once the archives are downloaded and the disc returned to the Debian machine " "installation can proceed using," msgstr "" +"アーカイブのダウンロードが終わってディスクが Debian マシンに返ってくるとイン" +"ストールを続けられるようになります。" #. type: Content of: <book><chapter><section><screen> #: offline.dbk:238 @@ -9428,135 +9691,4 @@ msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" #. type: Content of: <book><chapter><section><para> #: offline.dbk:241 msgid "Which will use the already fetched archives on the disc." -msgstr "これで、disc にある取得済みのアーカイブを使用するようになります。" - -#~ msgid "apt" -#~ msgstr "apt" - -#~ msgid "16 June 1998" -#~ msgstr "16 June 1998" - -#~ msgid "Debian" -#~ msgstr "Debian" - -#~ msgid "NAME" -#~ msgstr "名前" - -#~ msgid "apt - Advanced Package Tool" -#~ msgstr "apt - 高度パッケージツール" - -#~ msgid "SYNOPSIS" -#~ msgstr "書式" - -#~ msgid "B<apt>" -#~ msgstr "B<apt>" - -#~ msgid "DESCRIPTION" -#~ msgstr "説明" - -#, fuzzy -#~| msgid "" -#~| "APT is a management system for software packages. For normal day to day " -#~| "package management there are several frontends available, such as " -#~| "B<aptitude>(8) for the command line or B<synaptic>(8) for the X Window " -#~| "System. Some options are only implemented in B<apt-get>(8) though." -#~ msgid "" -#~ "For normal day to day package management there are several frontends " -#~ "available, such as B<aptitude>(8) for the command line or " -#~ "B<synaptic>(8) for the X Window System. Some options are only " -#~ "implemented in B<apt-get>(8) though." -#~ msgstr "" -#~ "APT はソフトウェアパッケージの管理システムです。日々のパッケージ管理のため" -#~ "に、コマンドライン用の B<aptitude>(8) や、X Window System 用の " -#~ "B<synaptic>(8) といった、いくつかのフロントエンドが用意されています。いく" -#~ "つかのオプションは B<apt-get>(8) にしか実装されていません。" - -#~ msgid "SEE ALSO" -#~ msgstr "関連項目" - -#, fuzzy -#~| msgid "" -#~| "B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " -#~| "B<apt_preferences>(5), B<apt-secure>(8)" -#~ msgid "" -#~ "B<apt>(8), B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources." -#~ "list>(5), B<apt_preferences>(5), B<apt-secure>(8)" -#~ msgstr "" -#~ "B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " -#~ "B<apt_preferences>(5), B<apt-secure>(8)" - -#~ msgid "DIAGNOSTICS" -#~ msgstr "診断メッセージ" - -#~ msgid "apt returns zero on normal operation, decimal 100 on error." -#~ msgstr "" -#~ "apt は正常終了時に 0 を返します。エラー時には十進の 100 を返します。" - -#~ msgid "BUGS" -#~ msgstr "バグ" - -#~ msgid "This manpage isn't even started." -#~ msgstr "このマニュアルページは、始まってさえいません。" - -#~ msgid "" -#~ "See E<lt>http://bugs.debian.org/aptE<gt>. If you wish to report a bug in " -#~ "B<apt>, please see I</usr/share/doc/debian/bug-reporting.txt> or the " -#~ "B<reportbug>(1) command." -#~ msgstr "" -#~ "E<lt>http://bugs.debian.org/aptE<gt> をご覧ください。B<apt> のバグを報告す" -#~ "る場合は、I</usr/share/doc/debian/bug-reporting.txt> や B<reportbug>(1) コ" -#~ "マンドをご覧ください。" - -#~ msgid "AUTHOR" -#~ msgstr "著者" - -#~ msgid "apt was written by the APT team E<lt>apt@packages.debian.orgE<gt>." -#~ msgstr "" -#~ "apt は APT チーム E<lt>apt@packages.debian.orgE<gt> によって書かれました。" - -#~ msgid "Debian GNU/Linux" -#~ msgstr "Debian GNU/Linux" - -#~ msgid "&apt-commonoptions;" -#~ msgstr "&apt-commonoptions;" - -#~ msgid "&file-sourceslist; &file-statelists;" -#~ msgstr "&file-sourceslist; &file-statelists;" - -#~ msgid "" -#~ "Unless the <option>-h</option>, or <option>--help</option> option is " -#~ "given one of the commands below must be present. <placeholder type=" -#~ "\"variablelist\" id=\"0\"/>" -#~ msgstr "" -#~ "<option>-h</option> オプションや <option>--help</option> オプションを除" -#~ "き、以下に挙げるコマンドが必要です。<placeholder type=\"variablelist\" id=" -#~ "\"0\"/>" - -#~ msgid "" -#~ "Unless the <option>-h</option>, or <option>--help</option> option is " -#~ "given one of the commands below must be present." -#~ msgstr "" -#~ "<option>-h</option> オプションや <option>--help</option> オプションを除" -#~ "き、以下に挙げるコマンドが必要です。" - -#~ msgid "Dir Section" -#~ msgstr "Dir セクション" - -#~ msgid "Default Section" -#~ msgstr "Default セクション" - -#~ msgid "TreeDefault Section" -#~ msgstr "TreeDefault セクション" - -#~ msgid "Tree Section" -#~ msgstr "Tree セクション" - -#~ msgid "" -#~ "&file-sourceslist; &file-aptconf; &file-preferences; &file-cachearchives; " -#~ "&file-statelists;" -#~ msgstr "" -#~ "&file-sourceslist; &file-aptconf; &file-preferences; &file-cachearchives; " -#~ "&file-statelists;" - -#~ msgid "&file-trustedgpg;" -#~ msgstr "&file-trustedgpg;" +msgstr "これで、ディスクにある取得済みのアーカイブを使用するようになります。" -- cgit v1.2.3 From 7ff5ce11ec241311a5520499a6cc09abcbb45307 Mon Sep 17 00:00:00 2001 From: Michael Vogt <mvo@debian.org> Date: Thu, 17 Jul 2014 09:59:01 +0200 Subject: Use @builddeps@ in the debian/tests/control file --- debian/tests/control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/tests/control b/debian/tests/control index ecaa089d8..f7e47c5f3 100644 --- a/debian/tests/control +++ b/debian/tests/control @@ -1,3 +1,3 @@ Tests: run-tests Restrictions: allow-stderr -Depends: @, build-essential, fakeroot, wget, dpkg-dev, debhelper, libdb-dev, gettext, libcurl4-gnutls-dev, zlib1g-dev, libbz2-dev, xsltproc, docbook-xsl, docbook-xml, po4a, autotools-dev, autoconf, automake, doxygen, stunnel4, libdb-dev, db-util +Depends: @, @builddeps@, fakeroot, wget, stunnel4, db-util -- cgit v1.2.3 From 31b9d84143f7330f4ad60eaa2c8877d28e00cffa Mon Sep 17 00:00:00 2001 From: Michael Vogt <mvo@debian.org> Date: Thu, 17 Jul 2014 09:59:55 +0200 Subject: apt-pkg/acquire-item.cc: make pkgAcqDiffIndex more uniform --- apt-pkg/acquire-item.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index 0911d11b7..6cb9b012a 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -356,7 +356,7 @@ pkgAcqDiffIndex::pkgAcqDiffIndex(pkgAcquire *Owner, Desc.URI = URI + ".diff/Index"; DestFile = _config->FindDir("Dir::State::lists") + "partial/"; - DestFile += URItoFileName(URI) + string(".DiffIndex"); + DestFile += URItoFileName(Desc.URI); if(Debug) std::clog << "pkgAcqDiffIndex: " << Desc.URI << std::endl; @@ -392,7 +392,7 @@ pkgAcqDiffIndex::pkgAcqDiffIndex(pkgAcquire *Owner, string pkgAcqDiffIndex::Custom600Headers() { string Final = _config->FindDir("Dir::State::lists"); - Final += URItoFileName(RealURI) + string(".IndexDiff"); + Final += URItoFileName(Desc.URI); if(Debug) std::clog << "Custom600Header-IMS: " << Final << std::endl; -- cgit v1.2.3 From d0554dd323752bf04735aac189d8e9fa713e30cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tr=E1=BA=A7n=20Ng=E1=BB=8Dc=20Qu=C3=A2n?= <vnwildman@gmail.com> Date: Thu, 24 Jul 2014 15:03:45 +0700 Subject: l10n: vi.po (636t): Update one new string MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Trần Ngọc Quân <vnwildman@gmail.com> --- po/vi.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/vi.po b/po/vi.po index 0e60c7823..9b0dddb08 100644 --- a/po/vi.po +++ b/po/vi.po @@ -6,10 +6,10 @@ # msgid "" msgstr "" -"Project-Id-Version: apt 1.0.2\n" +"Project-Id-Version: apt 1.0.6\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" "POT-Creation-Date: 2014-07-10 10:53+0200\n" -"PO-Revision-Date: 2014-06-22 09:16+0700\n" +"PO-Revision-Date: 2014-07-24 14:58+0700\n" "Last-Translator: Trần Ngọc Quân <vnwildman@gmail.com>\n" "Language-Team: Vietnamese <translation-team-vi@lists.sourceforge.net>\n" "Language: vi\n" @@ -23,9 +23,9 @@ msgstr "" "X-Poedit-Basepath: ../\n" #: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format +#, c-format msgid "Clean of %s is not supported" -msgstr "Không hỗ trợ kiểu tập tin chỉ mục “%s”" +msgstr "Không hỗ trợ việc xóa %s" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -- cgit v1.2.3 From 2f58969150b0daec1de407f61385ccf5b2065aa3 Mon Sep 17 00:00:00 2001 From: Michael Vogt <mvo@ubuntu.com> Date: Tue, 29 Jul 2014 15:01:13 +0200 Subject: Fix SmartConfigure to ignore ordering of packages that are already valid With the change of SmartConfigure() in git commit 42d51f the ordering code was trying to re-order dependencies, even when at this point in time this was not needed. Now it will first check all targets of the given dependency and only if there is not a good one try to reorder and unpack/configure as needed. Closes: LP: #1347721 --- apt-pkg/packagemanager.cc | 49 +- .../Packages-bug-lp1347721-dpkg-ordering | 445 +++++ .../integration/status-bug-lp1347721-dpkg-ordering | 1942 ++++++++++++++++++++ test/integration/test-bug-lp1347721-dpkg-ordering | 11 + 4 files changed, 2446 insertions(+), 1 deletion(-) create mode 100644 test/integration/Packages-bug-lp1347721-dpkg-ordering create mode 100644 test/integration/status-bug-lp1347721-dpkg-ordering create mode 100755 test/integration/test-bug-lp1347721-dpkg-ordering diff --git a/apt-pkg/packagemanager.cc b/apt-pkg/packagemanager.cc index 393f836f7..249542c68 100644 --- a/apt-pkg/packagemanager.cc +++ b/apt-pkg/packagemanager.cc @@ -372,6 +372,8 @@ bool pkgPackageManager::SmartConfigure(PkgIterator Pkg, int const Depth) std::list<DepIterator> needConfigure; do { + // Check each dependency and see if anything needs to be done + // so that it can be configured Changed = false; for (DepIterator D = instVer.DependsList(); D.end() == false; ) { @@ -383,7 +385,8 @@ bool pkgPackageManager::SmartConfigure(PkgIterator Pkg, int const Depth) continue; Bad = true; - // Check for dependencies that have not been unpacked, probably due to loops. + // the first pass checks if we its all good, i.e. if we have + // to do anything at all for (DepIterator Cur = Start; true; ++Cur) { SPtrArray<Version *> VList = Cur.AllTargets(); @@ -402,6 +405,47 @@ bool pkgPackageManager::SmartConfigure(PkgIterator Pkg, int const Depth) break; } + // Check if the version that is going to be installed will satisfy the dependency + if (Cache[DepPkg].InstallVer != *I || List->IsNow(DepPkg) == false) + continue; + + if (PkgLoop == true) + { + if (Debug) + std::clog << OutputInDepth(Depth) << "Package " << Pkg << " loops in SmartConfigure" << std::endl; + Bad = false; + } + } + + if (Cur == End || Bad == false) + break; + } + + // this dependency is in a good state, so we can stop + if (Bad == false) + { + if (Debug) + std::clog << OutputInDepth(Depth) << "Found ok dep " << D.TargetPkg() << std::endl; + continue; + } + + // Check for dependencies that have not been unpacked, + // probably due to loops. + for (DepIterator Cur = Start; true; ++Cur) + { + SPtrArray<Version *> VList = Cur.AllTargets(); + + for (Version **I = VList; *I != 0; ++I) + { + VerIterator Ver(Cache,*I); + PkgIterator DepPkg = Ver.ParentPkg(); + + // Check if the current version of the package is available and will satisfy this dependency + if (DepPkg.CurrentVer() == Ver && List->IsNow(DepPkg) == true && + List->IsFlag(DepPkg,pkgOrderList::Removed) == false && + DepPkg.State() == PkgIterator::NeedsNothing) + continue; + // Check if the version that is going to be installed will satisfy the dependency if (Cache[DepPkg].InstallVer != *I || List->IsNow(DepPkg) == false) continue; @@ -419,6 +463,8 @@ bool pkgPackageManager::SmartConfigure(PkgIterator Pkg, int const Depth) if (NonLoopingSmart(UNPACK_IMMEDIATE, Pkg, DepPkg, Depth, PkgLoop, &Bad, &Changed) == false) return false; } + // at this point we either unpacked a Dep or we are in a loop, + // no need to unpack a second one break; } @@ -435,6 +481,7 @@ bool pkgPackageManager::SmartConfigure(PkgIterator Pkg, int const Depth) return _error->Error("Internal error: MaxLoopCount reached in SmartUnPack (1) for %s, aborting", Pkg.FullName().c_str()); } while (Changed == true); + // now go over anything that needs configuring Bad = false, Changed = false, i = 0; do { diff --git a/test/integration/Packages-bug-lp1347721-dpkg-ordering b/test/integration/Packages-bug-lp1347721-dpkg-ordering new file mode 100644 index 000000000..ea96b387c --- /dev/null +++ b/test/integration/Packages-bug-lp1347721-dpkg-ordering @@ -0,0 +1,445 @@ +Package: init +xEssential: yes +Priority: required +Section: metapackages +Installed-Size: 29 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: pkg-systemd-maintainers <pkg-systemd-maintainers@lists.alioth.debian.org> +Architecture: i386 +Source: init-system-helpers +Version: 1.20 +Pre-Depends: sysvinit-core | systemd-sysv | upstart +Filename: pool/main/i/init-system-helpers/init_1.20_i386.deb +Size: 3494 +MD5sum: a388b6f4f6ed0d01b3d459cfad6582fe +SHA1: d0eb6414a6bb48bb886fcc19962f6a7f302977f3 +SHA256: 9f299b2bf18d6e4534f3a73cca97ef93850e1b5fa38f8519da7c2b825d581f4c +Description: System-V-like init utilities - metapackage +Description-md5: e52554c23609041bfbca72fe27a132f9 +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu + +Package: libudev1 +Priority: required +Section: libs +Installed-Size: 132 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian systemd Maintainers <pkg-systemd-maintainers@lists.alioth.debian.org> +Architecture: i386 +Source: systemd +Version: 208-6ubuntu2 +Depends: libc6 (>= 2.17), libselinux1 (>= 1.32) +Pre-Depends: multiarch-support +Filename: pool/main/s/systemd/libudev1_208-6ubuntu2_i386.deb +Size: 36008 +MD5sum: b03338c052438a95919b9db4d6f9493e +SHA1: a85242bfc653255b5fa73d0fbec92815dc9c09fc +SHA256: d66d7948703b33bd617e16a1b9ac6f24ca564312890b1f9218330f638080a307 +Description: libudev shared library +Multi-Arch: same +Homepage: http://www.freedesktop.org/wiki/Software/systemd +Description-md5: ace5b83d7b48187416c90173a93255b6 +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 9m +Task: minimal + +Package: udev +Priority: required +Section: admin +Installed-Size: 5879 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian systemd Maintainers <pkg-systemd-maintainers@lists.alioth.debian.org> +Architecture: i386 +Source: systemd +Version: 208-6ubuntu2 +Depends: libacl1 (>= 2.2.51-8), libblkid1 (>= 2.19.1), libc6 (>= 2.17), libkmod2 (>= 5~), libselinux1 (>= 2.0.65), libudev1 (= 208-6ubuntu2), lsb-base (>= 4.1+Debian11ubuntu7), util-linux (>= 2.16), procps +Pre-Depends: debconf (>= 1.4.69) | debconf-2.0 +Breaks: consolekit (<< 0.4.6-1) +Filename: pool/main/s/systemd/udev_208-6ubuntu2_i386.deb +Size: 799582 +MD5sum: 814bb3babdbe76994ce536384ca31f88 +SHA1: bbb662c89f2b1ff4fd450d1523cc21b5b1c339bc +SHA256: e444350214c5c121b2ca8031f76c53809f95ebb5c4cec4cf4595c7520ac09529 +Description: /dev/ and hotplug management daemon +Multi-Arch: foreign +Homepage: http://www.freedesktop.org/wiki/Software/systemd +Description-md5: e875ddb09f46f1f7672af537f0c875ca +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 9m +Task: minimal + +Package: initscripts +Priority: required +Section: admin +Installed-Size: 246 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian sysvinit maintainers <pkg-sysvinit-devel@lists.alioth.debian.org> +Architecture: i386 +Source: sysvinit +Version: 2.88dsf-41ubuntu16 +Replaces: libc0.1, libc0.3, libc6, libc6.1 +Depends: libc6 (>= 2.4), mount (>= 2.11x-1), debianutils (>= 4), lsb-base (>= 4.1+Debian11ubuntu7), sysvinit-utils (>= 2.86.ds1-64), sysv-rc | file-rc, coreutils (>= 5.93), passwd, init, mountall (>= 2.28) +Recommends: psmisc, e2fsprogs +Conflicts: libdevmapper1.02.1 (<< 2:1.02.24-1) +Breaks: aide (<< 0.15.1-5), atm-tools (<< 1:2.5.1-1.3), bootchart (<< 0.10~svn407-3.3), console-common (<< 0.7.86), cruft (<< 0.9.16), eepc-acpi-scripts (<< 1.1.12), fcheck (<< 2.7.59-16), hostapd (<< 1:0.7.3-3), hostname (<< 2.95ubuntu1~boot2), ifupdown (<< 0.6.8ubuntu27), libpam-mount (<< 2.13-1), ltsp-client-core (<< 5.2.16-1), mdadm (<< 3.2.2-1), nbd-client (<< 1:2.9.23-1), nfs-common (<< 1:1.2.5-3), portmap (<< 6.0.0-2), readahead-fedora (<< 2:1.5.6-3), resolvconf (<< 1.49), rpcbind (<< 0.2.0-7), rsyslog (<< 5.8.2-2), selinux-policy-default (<= 2:0.2.20100524-9), splashy (<< 0.3.13-5.1+b1), sysklogd (<< 1.5-6.2), udev (<< 146-2~boot6), upstart (<< 0.6.3-2~boot4), wpasupplicant (<< 0.7.3-4), xymon (<< 4.3.0~beta2.dfsg-9) +Filename: pool/main/s/sysvinit/initscripts_2.88dsf-41ubuntu16_i386.deb +Size: 35150 +MD5sum: e78f1e7816f03ded97eacd469505ea45 +SHA1: 81f88f9258c680e9983316d75baff7572ecec75c +SHA256: 996e4d86486cbe12a7b7852ec1a9fe459dbf0afab51dc13bd701b6d970fdc14a +Description: scripts for initializing and shutting down the system +Multi-Arch: foreign +Homepage: http://savannah.nongnu.org/projects/sysvinit +Description-md5: db9003c179cd2a623493209da58ea2ea +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 9m +Task: minimal + +Package: libc6 +Priority: required +Section: libs +Installed-Size: 9284 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: GNU Libc Maintainers <debian-glibc@lists.debian.org> +Architecture: i386 +Source: glibc +Version: 2.19-4ubuntu1 +Replaces: libc6-i386, libc6-xen +Provides: glibc-2.19-1, libc6-i686, libc6-xen +Depends: libgcc1 +Suggests: glibc-doc, debconf | debconf-2.0, locales +Conflicts: libc6-xen, prelink (<= 0.0.20090311-1), tzdata (<< 2007k-1), tzdata-etch +Breaks: hurd (<< 1:0.5.git20140203-1), libtirpc1 (<< 0.2.3), nscd (<< 2.19) +Filename: pool/main/g/glibc/libc6_2.19-4ubuntu1_i386.deb +Size: 4012440 +MD5sum: 946665711bb0294bd2c7729b3174ba8b +SHA1: 063e268e0d1e368e218d450a4bd2af7608b5e38e +SHA256: 0e33f5c3b6da3a6ec52fb0274abfa0da5489808feb220b6e6640432cb84f948f +Description: GNU C Library: Shared libraries +Multi-Arch: same +Homepage: http://www.gnu.org/software/libc/libc.html +Description-md5: fc3001b0b90a1c8e6690b283a619d57f +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 9m +Task: minimal + +Package: libmount1 +Priority: required +Section: libs +Installed-Size: 253 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: LaMont Jones <lamont@debian.org> +Architecture: i386 +Source: util-linux +Version: 2.20.1-5.1ubuntu21 +Depends: libblkid1 (>= 2.17.2), libc6 (>= 2.8), libselinux1 (>= 1.32) +Pre-Depends: multiarch-support +Filename: pool/main/u/util-linux/libmount1_2.20.1-5.1ubuntu21_i386.deb +Size: 60156 +MD5sum: d17af590ad06ac914a1024d54184cee6 +SHA1: 6eb2a281c409bd5181ce6b871795f8e4609565bc +SHA256: 78ce54b9f644c365b95a7230e1e50762d628c9d0d3549211017a98d4cb5013c4 +Description: block device id library +Multi-Arch: same +Homepage: http://userweb.kernel.org/~kzak/util-linux/ +Description-md5: 8f605597a2fb2fd7bffd09db537dd040 +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 9m +Task: minimal + +Package: libplymouth4 +Priority: required +Section: libs +Installed-Size: 315 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Source: plymouth +Version: 0.9.0-0ubuntu2 +Replaces: plymouth (<< 0.7.0+git20090207-0ubuntu0.1~ppa4) +Depends: libc6 (>= 2.9), libpng12-0 (>= 1.2.13-4), libudev1 (>= 183) +Pre-Depends: multiarch-support +Breaks: casper (= 1.227), mountall (<< 2.8) +Filename: pool/main/p/plymouth/libplymouth4_0.9.0-0ubuntu2_i386.deb +Size: 85024 +MD5sum: 8d9e7001ba371bd802956de1e81d1997 +SHA1: 749bdaee4d8bd4c2383c703eb244caa473180d35 +SHA256: 59bd4492b6e71eee5c13ba9c63da12ece49c43106829556722ca503867ce7251 +Description: graphical boot animation and logger - shared libraries +Multi-Arch: same +Description-md5: 29e2ed45f3e127c38b58dae52061cc33 +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 9m +Task: minimal + +Package: libprocps3 +Priority: required +Section: libs +Installed-Size: 133 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Craig Small <csmall@debian.org> +Architecture: i386 +Source: procps +Version: 1:3.3.9-1ubuntu5 +Replaces: procps (<< 1:3.3.2-1) +Depends: libc6 (>= 2.4) +Pre-Depends: multiarch-support +Filename: pool/main/p/procps/libprocps3_3.3.9-1ubuntu5_i386.deb +Size: 30078 +MD5sum: 0df60f591dfe64ed23bb1f3a1546c0ce +SHA1: db672ec37e88574bf1a1d5484d80cfd4ff04f9f6 +SHA256: b5df28501805a6833dc78e049159a7c560af6f24f18f51459bd8890c31e0fdc6 +Description: library for accessing process information from /proc +Multi-Arch: same +Homepage: http://gitorious.org/procps +Description-md5: 195f4a1a493350f6f0732a65b3cda83f +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 9m +Task: minimal + +Package: libudev1 +Priority: required +Section: libs +Installed-Size: 131 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian systemd Maintainers <pkg-systemd-maintainers@lists.alioth.debian.org> +Architecture: i386 +Source: systemd +Version: 204-14ubuntu2 +Depends: libc6 (>= 2.17), libcgmanager0, libdbus-1-3 (>= 1.0.2), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0) +Pre-Depends: multiarch-support +Filename: pool/main/s/systemd/libudev1_204-14ubuntu2_i386.deb +Size: 35518 +MD5sum: a606f9e4aab028b9ab658b6e8a09d5fb +SHA1: ef28d377e6cc8f1e98dd9cd8c40edda90e2eed20 +SHA256: c02c85725f64b6c804235329166bf66e40da948d96123336ec55e13e1654720f +Description: libudev shared library +Multi-Arch: same +Homepage: http://www.freedesktop.org/wiki/Software/systemd +Description-md5: ace5b83d7b48187416c90173a93255b6 +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 9m +Task: minimal + +Package: lsb-base +Priority: required +Section: misc +Installed-Size: 83 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian LSB Team <debian-lsb@lists.debian.org> +Architecture: all +Source: lsb +Version: 4.1+Debian11ubuntu8 +Replaces: upstart (<< 1.12.1-0ubuntu8) +Breaks: upstart (<< 1.12.1-0ubuntu8) +Filename: pool/main/l/lsb/lsb-base_4.1+Debian11ubuntu8_all.deb +Size: 13094 +MD5sum: 9ec51f910e6d8e86bfb489b71b237e66 +SHA1: 8091ba9ffc03999a3db1e2e0ee7d32ac5139a942 +SHA256: be8d24447147aa997b79353eaf8732b3d0967118c011b47476c841667eb15f7e +Description: Linux Standard Base 4.1 init script functionality +Multi-Arch: foreign +Homepage: http://www.linuxfoundation.org/collaborate/workgroups/lsb +Description-md5: 4ebb3d88f9f483751e70c55779c52d01 +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 9m +Task: minimal + +Package: mount +Essential: yes +Priority: required +Section: admin +Installed-Size: 410 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: LaMont Jones <lamont@debian.org> +Architecture: i386 +Source: util-linux +Version: 2.20.1-5.1ubuntu21 +Pre-Depends: libblkid1 (>= 2.20.1), libc6 (>= 2.8), libmount1 (>= 2.20.1), libselinux1 (>= 2.0.15) +Suggests: nfs-common (>= 1:1.1.0-13) +Filename: pool/main/u/util-linux/mount_2.20.1-5.1ubuntu21_i386.deb +Size: 112598 +MD5sum: bdff5dbfbf17e2be281d64e2e7a4912b +SHA1: 1ed4abb0d5de8a09c704ac2d33de123015e5318a +SHA256: d2f023c763f7b6e91f3cd14073bfc5af7e7bfe3922fc5ca681d8038c80323f9e +Description: Tools for mounting and manipulating filesystems +Multi-Arch: foreign +Homepage: http://userweb.kernel.org/~kzak/util-linux/ +Description-md5: 46eb8e09a600d5eb98b6b40428349102 +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 9m +Task: minimal + +Package: mountall +Priority: required +Section: admin +Installed-Size: 248 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Steve Langasek <vorlon@debian.org> +Architecture: i386 +Version: 2.54build1 +Replaces: upstart (<< 0.6.3-2) +Depends: makedev, udev, plymouth, coreutils (>= 7.1), libc6 (>= 2.9), libdbus-1-3 (>= 1.2.16), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0), libplymouth4 (>= 0.8.1-3), libudev1 (>= 183) +Pre-Depends: dpkg (>= 1.15.7.2) +Breaks: initscripts (<< 2.88dsf-24), policycoreutils (<< 2.0.69-2ubuntu4), usplash (<< 0.5.47) +Filename: pool/main/m/mountall/mountall_2.54build1_i386.deb +Size: 54166 +MD5sum: a208d9dc5aef018087d5e00cea7f6c92 +SHA1: 13686aa81ebef6c3009ff618708d76bc68ff94e8 +SHA256: dee359411cd7cfad19581f380af6275d46a6c5ecf55f512523b75adaa4734d03 +Description: filesystem mounting tool +Multi-Arch: foreign +Description-md5: b5b5a27fc0e8063ef1226a39fb8ecf70 +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 9m +Task: minimal + +Package: procps +Priority: required +Section: admin +Installed-Size: 634 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Craig Small <csmall@debian.org> +Architecture: i386 +Version: 1:3.3.9-1ubuntu5 +Provides: watch +Depends: libc6 (>= 2.15), libncurses5 (>= 5.5-5~), libncursesw5 (>= 5.6+20070908), libprocps3, libtinfo5, lsb-base (>= 4.1+Debian11ubuntu7), initscripts +Recommends: psmisc +Conflicts: pgrep (<< 3.3-5), w-bassman (<< 1.0-3) +Breaks: guymager (<= 0.5.9-1), open-vm-tools (<= 2011.12.20-562307-1), xmem (<= 1.20-27.1) +Filename: pool/main/p/procps/procps_3.3.9-1ubuntu5_i386.deb +Size: 203368 +MD5sum: 17be371891f077e04075c6eb0af06b3c +SHA1: a5c6171b5a6430aa9436e42f0e64226dd2e7a665 +SHA256: 41e03fd2d05161c402d9a5d2b5feecb30a42f8919eb43712ebdd4340433803c1 +Description: /proc file system utilities +Multi-Arch: foreign +Homepage: http://gitorious.org/procps +Description-md5: 943f3288c1aaa379fca73a3ff1a35278 +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 9m +Task: minimal + +Package: sysv-rc +Priority: required +Section: admin +Installed-Size: 224 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian sysvinit maintainers <pkg-sysvinit-devel@lists.alioth.debian.org> +Architecture: all +Source: sysvinit +Version: 2.88dsf-41ubuntu16 +Replaces: file-rc +Depends: debconf (>= 0.5) | debconf-2.0, sysvinit-utils (>= 2.86.ds1-62), insserv (>> 1.12.0-10) +Recommends: lsb-base (>= 3.2-14) +Suggests: sysv-rc-conf, bum +Conflicts: file-rc +Breaks: initscripts (<< 2.88dsf-41ubuntu14) +Filename: pool/main/s/sysvinit/sysv-rc_2.88dsf-41ubuntu16_all.deb +Size: 37784 +MD5sum: e57bc9887432f76266d7bf741cf9d813 +SHA1: 446d24cc86bdb7a779856c00f9dea966227a00e2 +SHA256: 072d2745b9c966d63cba5abf52357374e7a043b3cc1bbde0b8ccf68f82e45f60 +Description: System-V-like runlevel change mechanism +Multi-Arch: foreign +Homepage: http://savannah.nongnu.org/projects/sysvinit +Description-md5: 195f2d617082a23f37cee0f50784eef9 +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 9m +Task: minimal + +Package: sysvinit-utils +Priority: required +Section: admin +Installed-Size: 236 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian sysvinit maintainers <pkg-sysvinit-devel@lists.alioth.debian.org> +Architecture: i386 +Source: sysvinit +Version: 2.88dsf-41ubuntu16 +Replaces: last, sysvinit (<= 2.86.ds1-65) +Depends: libc6 (>= 2.15), libselinux1 (>= 1.32), lsb-base (>= 4.1+Debian11ubuntu7) +Recommends: upstart (>= 0.6.3-4) +Suggests: bootlogd, sash +Conflicts: chkconfig (<< 11.0-79.1-2), last, sysvconfig +Breaks: upstart (<< 1.5-0ubuntu5) +Filename: pool/main/s/sysvinit/sysvinit-utils_2.88dsf-41ubuntu16_i386.deb +Size: 49652 +MD5sum: e1340ba69c7a5f0cf1a84b3f68993570 +SHA1: 7cbd535c1c010c2e84cb454562fb6632fb366ddc +SHA256: 576c2bcfbf56871acd68576f07fd18b6bfccd8a5db6dfa04bcf62183f43e77a0 +Description: System-V-like utilities +Multi-Arch: foreign +Homepage: http://savannah.nongnu.org/projects/sysvinit +Description-md5: 1d2bc4c9c32104729144c7578ecd30bd +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 9m +Task: minimal + +Package: udev +Priority: required +Section: admin +Installed-Size: 5123 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Original-Maintainer: Debian systemd Maintainers <pkg-systemd-maintainers@lists.alioth.debian.org> +Architecture: i386 +Source: systemd +Version: 204-14ubuntu2 +Depends: libacl1 (>= 2.2.51-8), libblkid1 (>= 2.19.1), libc6 (>= 2.17), libcgmanager0, libdbus-1-3 (>= 1.0.2), libkmod2 (>= 5~), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0), libselinux1 (>= 2.0.65), libudev1 (= 204-14ubuntu2), lsb-base (>= 4.1+Debian11ubuntu7), util-linux (>= 2.16), procps +Pre-Depends: debconf (>= 1.4.69) | debconf-2.0 +Breaks: consolekit (<< 0.4.6-1) +Filename: pool/main/s/systemd/udev_204-14ubuntu2_i386.deb +Size: 739026 +MD5sum: a85b035885e1b316354f6e5d0b8eeb69 +SHA1: 970405e4c8838c3cf17d1834c8917705d977879e +SHA256: 05fbd7f4b502fde9752b84b49364fe633b8377bcd996ec16462e0bc94adc9fcf +Description: /dev/ and hotplug management daemon +Multi-Arch: foreign +Homepage: http://www.freedesktop.org/wiki/Software/systemd +Description-md5: e875ddb09f46f1f7672af537f0c875ca +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 9m +Task: minimal + +Package: upstart +Priority: required +Section: admin +Installed-Size: 1721 +Maintainer: James Hunt <james.hunt@ubuntu.com> +Architecture: i386 +Version: 1.13.1-0ubuntu1 +Replaces: startup-tasks, system-services, sysvinit, upstart-compat-sysv, upstart-job +Provides: startup-tasks, system-services, upstart-compat-sysv, upstart-job +Depends: libc6 (>= 2.15), libcgmanager0, libdbus-1-3 (>= 1.2.16), libjson-c2 (>= 0.10), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0), libudev1 (>= 183), sysvinit-utils, initscripts, mountall, ifupdown (>= 0.6.10ubuntu5), libjson0 (>= 0.10-1.1ubuntu1), debianutils (>= 4) +Suggests: python3, graphviz, bash-completion, upstart-monitor +Conflicts: lxcguest, startup-tasks, system-services, sysvinit, upstart-compat-sysv, upstart-job +Breaks: friendly-recovery (<< 0.2.13), libc6 (<< 2.12.1-0ubuntu12) +Filename: pool/main/u/upstart/upstart_1.13.1-0ubuntu1_i386.deb +Size: 388978 +MD5sum: 2ebf7fb1083b581707e445fee808e120 +SHA1: 901424ec0d304ca8d10a25321a55d1d69bd8e82d +SHA256: c42fb117e90770c7163c9f4770e75e9c0d6a00d41c4b3afc2afebfa65ede80f8 +Description: event-based init daemon +Multi-Arch: foreign +Homepage: http://upstart.ubuntu.com/ +Orig-Maintainer: Steve Langasek <vorlon@debian.org> +Description-md5: b776ec43b708c13dd0c2ab824471f478 +Bugs: https://bugs.launchpad.net/ubuntu/+filebug +Origin: Ubuntu +Supported: 9m +Task: minimal + diff --git a/test/integration/status-bug-lp1347721-dpkg-ordering b/test/integration/status-bug-lp1347721-dpkg-ordering new file mode 100644 index 000000000..62e545c55 --- /dev/null +++ b/test/integration/status-bug-lp1347721-dpkg-ordering @@ -0,0 +1,1942 @@ +Package: libustr-1.0-1 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 261 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: ustr +Version: 1.0.4-3ubuntu2 +Depends: libc6 (>= 2.4) +Pre-Depends: multiarch-support +Description: Micro string library: shared library + ustr (Micro string library) is a string API for C. It has tiny overhead over + just plain strdup(), is much safer, is easier to use, is faster for many + operations, can be used with read-only or automatically allocated data. You + don't even need to link to the library to use it (so there are no + dependencies). + . + This package contains the shared library for ustr. +Homepage: http://www.and.org/ustr/ +Original-Maintainer: Vaclav Ovsik <vaclav.ovsik@i.cz> + +Package: debconf +Status: install ok installed +Priority: important +Section: admin +Installed-Size: 609 +Maintainer: Colin Watson <cjwatson@ubuntu.com> +Architecture: all +Multi-Arch: foreign +Version: 1.5.53ubuntu1 +Replaces: debconf-tiny +Provides: debconf-2.0 +Pre-Depends: perl-base (>= 5.6.1-4) +Recommends: apt-utils (>= 0.5.1), debconf-i18n +Suggests: debconf-doc, debconf-utils, whiptail | dialog | gnome-utils, libterm-readline-gnu-perl, libgtk2-perl (>= 1:1.130), libnet-ldap-perl, perl, libqtgui4-perl, libqtcore4-perl +Conflicts: apt (<< 0.3.12.1), cdebconf (<< 0.96), debconf-tiny, debconf-utils (<< 1.3.22), dialog (<< 0.9b-20020814-1), menu (<= 2.1.3-1), whiptail (<< 0.51.4-11), whiptail-utf8 (<= 0.50.17-13) +Conffiles: + /etc/debconf.conf 8c0619be413824f1fc7698cee0f23811 + /etc/apt/apt.conf.d/70debconf 7e9d09d5801a42b4926b736b8eeabb73 + /etc/bash_completion.d/debconf 8fa1862734fbe54d7178aaaa419f5a11 +Description: Debian configuration management system + Debconf is a configuration management system for debian packages. Packages + use Debconf to ask questions when they are installed. +Original-Maintainer: Debconf Developers <debconf-devel@lists.alioth.debian.org> + +Package: iproute2 +Status: install ok installed +Priority: important +Section: net +Installed-Size: 1184 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: foreign +Version: 3.14.0-1 +Replaces: iproute +Provides: arpd +Depends: libc6 (>= 2.14), libdb5.3 +Recommends: libatm1 (>= 2.4.1-17~), libxtables10 +Suggests: iproute2-doc +Conflicts: arpd, iproute (<< 20130000-1) +Conffiles: + /etc/iproute2/rt_realms 7137bdf40e8d58c87ac7e3bba503767f + /etc/iproute2/rt_protos 95ce0b4b5b79f5a8a45941fb418a904c + /etc/iproute2/rt_dsfield 4264d5c7c8298300185aa04e1a736934 + /etc/iproute2/rt_scopes 6298b8df09e9bda23ea7da49021ca457 + /etc/iproute2/ematch_map b91e7f9b26918449bade9573f8871d61 + /etc/iproute2/group 3aea2c0e0dd75e13a5f8f48f2936915f + /etc/iproute2/rt_tables a1313318d6778fe6b8c680248ef5a463 +Description: networking and traffic control tools + The iproute2 suite is a collection of utilities for networking and + traffic control. + . + These tools communicate with the Linux kernel via the (rt)netlink + interface, providing advanced features not available through the + legacy net-tools commands 'ifconfig' and 'route'. +Original-Maintainer: Debian iproute2 Maintainers <ah-iproute@debian.org> +Homepage: http://www.linux-foundation.org/en/Net:Iproute2 + +Package: coreutils +Essential: yes +Status: install ok installed +Priority: required +Section: utils +Installed-Size: 6124 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: foreign +Version: 8.21-1ubuntu5 +Replaces: mktemp, timeout +Pre-Depends: libacl1 (>= 2.2.51-8), libattr1 (>= 1:2.4.46-8), libc6 (>= 2.17), libselinux1 (>= 1.32) +Conflicts: timeout +Description: GNU core utilities + This package contains the basic file, shell and text manipulation + utilities which are expected to exist on every operating system. + . + Specifically, this package includes: + arch base64 basename cat chcon chgrp chmod chown chroot cksum comm cp + csplit cut date dd df dir dircolors dirname du echo env expand expr + factor false flock fmt fold groups head hostid id install join link ln + logname ls md5sum mkdir mkfifo mknod mktemp mv nice nl nohup nproc od + paste pathchk pinky pr printenv printf ptx pwd readlink rm rmdir runcon + sha*sum seq shred sleep sort split stat stty sum sync tac tail tee test + timeout touch tr true truncate tsort tty uname unexpand uniq unlink + users vdir wc who whoami yes +Homepage: http://gnu.org/software/coreutils +Original-Maintainer: Michael Stone <mstone@debian.org> + +Package: debianutils +Essential: yes +Status: install ok installed +Priority: required +Section: utils +Installed-Size: 273 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: foreign +Version: 4.4 +Replaces: manpages-pl (<< 1:0.5) +Depends: sensible-utils +Pre-Depends: libc6 (>= 2.15) +Description: Miscellaneous utilities specific to Debian + This package provides a number of small utilities which are used + primarily by the installation scripts of Debian packages, although + you may use them directly. + . + The specific utilities included are: + add-shell installkernel ischroot remove-shell run-parts savelog + tempfile which +Original-Maintainer: Clint Adams <clint@debian.org> + +Package: initramfs-tools +Status: install ok installed +Priority: optional +Section: utils +Installed-Size: 365 +Maintainer: Ubuntu Kernel Team <kernel-team@lists.ubuntu.com> +Architecture: all +Multi-Arch: foreign +Version: 0.103ubuntu4 +Provides: linux-initramfs-tool +Depends: initramfs-tools-bin (>= 0.103ubuntu4), initramfs-tools-bin (<< 0.103ubuntu4.1~), klibc-utils (>= 2.0-1~), busybox-initramfs (>= 1:1.13.3-1ubuntu5), cpio, module-init-tools, udev (>= 147~-5), findutils (>= 4.2.24), util-linux (>> 2.15~rc1) +Suggests: bash-completion +Breaks: cryptsetup (<< 2:1.1.0-2.1), elilo (<< 3.12-3.1~), lilo (<< 22.8-8.2~), mountall (<< 2.0~), s390-tools (<< 1.8.3-2~) +Conflicts: usplash (<< 0.5.50) +Conffiles: + /etc/bash_completion.d/initramfs-tools 7eeb7184772f3658e7cf446945c096b1 + /etc/initramfs-tools/update-initramfs.conf e2026d4603e7161efaccca519aeb1297 + /etc/initramfs-tools/initramfs.conf 8801535d9bec98754eea6a172f956d42 + /etc/kernel/postrm.d/initramfs-tools e22d1ab0d7a7a1b66ae6d71ea4f21938 + /etc/kernel/postinst.d/initramfs-tools fe7713b9a74a10ed71d1e7dd93afc209 +Description: tools for generating an initramfs + This package contains tools to create and boot an initramfs for packaged 2.6 + Linux kernel. The initramfs is a gzipped cpio archive. At boot time, the + kernel unpacks that archive into RAM, mounts and uses it as initial root file + system. The mounting of the real root file system occurs in early user space. + klibc provides utilities to setup root. Having the root on MD, LVM2, LUKS or + NFS is also supported. + Any boot loader with initrd support is able to load an initramfs archive. +Original-Maintainer: Debian kernel team <debian-kernel@lists.debian.org> + +Package: makedev +Status: install ok installed +Priority: extra +Section: admin +Installed-Size: 125 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Multi-Arch: foreign +Version: 2.3.1-93ubuntu1 +Depends: base-passwd (>= 3.0.4) +Conflicts: udev (<= 0.024-7) +Description: creates device files in /dev + The MAKEDEV executable is used to create device files, often in /dev. + . + Device files are special files through which applications can interact + with hardware. + . + This package is not necessary for most modern Linux systems, where the udev + subsystem provides a more dynamic mechanism for device file management. +Original-Maintainer: Debian QA Group <packages@qa.debian.org> + +Package: libdbus-1-3 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 398 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: dbus +Version: 1.6.18-0ubuntu4 +Depends: libc6 (>= 2.10) +Pre-Depends: multiarch-support +Recommends: dbus +Breaks: kde-window-manager (<< 4:4.4.5-9), kdebase-workspace-bin (<< 4:4.4.5-9) +Description: simple interprocess messaging system (library) + D-Bus is a message bus, used for sending messages between applications. + Conceptually, it fits somewhere in between raw sockets and CORBA in + terms of complexity. + . + D-Bus supports broadcast messages, asynchronous messages (thus + decreasing latency), authentication, and more. It is designed to be + low-overhead; messages are sent using a binary protocol, not using + XML. D-Bus also supports a method call mapping for its messages, but + it is not required; this makes using the system quite simple. + . + It comes with several bindings, including GLib, Python, Qt and Java. + . + The daemon can be found in the dbus package. +Homepage: http://dbus.freedesktop.org/ +Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@lists.alioth.debian.org> + +Package: module-init-tools +Status: install ok installed +Priority: extra +Section: admin +Installed-Size: 31 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Multi-Arch: foreign +Source: kmod +Version: 16-2ubuntu3 +Depends: libkmod2, kmod +Pre-Depends: dpkg (>= 1.15.7.2) +Description: transitional dummy package (module-init-tools to kmod) + This dummy package is provided to support the transition from + module-init-tools to kmod and should be removed afterwards. +Original-Maintainer: Marco d'Itri <md@linux.it> + +Package: libuuid1 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 107 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: util-linux +Version: 2.20.1-5.1ubuntu20 +Replaces: e2fsprogs (<< 1.34-1) +Depends: passwd, libc6 (>= 2.4) +Pre-Depends: multiarch-support +Recommends: uuid-runtime +Description: Universally Unique ID library + The libuuid library generates and parses 128-bit universally unique + ids (UUIDs). A UUID is an identifier that is unique across both + space and time, with respect to the space of all UUIDs. A UUID can + be used for multiple purposes, from tagging objects with an extremely + short lifetime, to reliably identifying very persistent objects + across a network. + . + See RFC 4122 for more information. +Homepage: http://userweb.kernel.org/~kzak/util-linux/ +Original-Maintainer: LaMont Jones <lamont@debian.org> + +Package: lsb-base +Status: install ok installed +Priority: required +Section: misc +Installed-Size: 82 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Multi-Arch: foreign +Source: lsb +Version: 4.1+Debian11ubuntu6 +Description: Linux Standard Base 4.1 init script functionality + The Linux Standard Base (http://www.linuxbase.org/) is a standard + core system that third-party applications written for Linux can + depend upon. + . + This package only includes the init-functions shell library, which + may be used by other packages' initialization scripts for console + logging and other purposes. +Homepage: http://www.linuxfoundation.org/collaborate/workgroups/lsb +Original-Maintainer: Debian LSB Team <debian-lsb@lists.debian.org> + +Package: procps +Status: install ok installed +Priority: important +Section: admin +Installed-Size: 637 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: foreign +Version: 1:3.3.9-1ubuntu2 +Provides: watch +Depends: libc6 (>= 2.15), libncurses5 (>= 5.5-5~), libncursesw5 (>= 5.6+20070908), libprocps3, libtinfo5, lsb-base (>= 3.0-10), initscripts +Recommends: psmisc +Breaks: guymager (<= 0.5.9-1), open-vm-tools (<= 2011.12.20-562307-1), xmem (<= 1.20-27.1) +Conflicts: pgrep (<< 3.3-5), w-bassman (<< 1.0-3) +Conffiles: + /etc/sysctl.d/10-console-messages.conf 154f6f5c5810d10bb303fb6a8e907c6a + /etc/sysctl.d/README c20074b9b11a5202758c69d7bcb6996f + /etc/sysctl.d/10-magic-sysrq.conf b3059f2835f17c97265433fdfdee358f + /etc/sysctl.d/10-kernel-hardening.conf 5c1388f00011a287cdeba60208c674e1 + /etc/sysctl.d/10-link-restrictions.conf 8568316f2baa8db06554dab91f93a161 + /etc/sysctl.d/10-zeropage.conf 8d7193abcc4dfedaf519dd03016a5e59 + /etc/sysctl.d/10-network-security.conf 4ac7258f5336e7eeaf448c05ab668d3c + /etc/sysctl.d/10-ptrace.conf 47f40494b2fc698e15549e0a4a79e81c + /etc/sysctl.d/10-ipv6-privacy.conf e9473d12b4a7069d6a3ca8b694511ddf + /etc/sysctl.conf 76c1d8285c578d5e827c3e07b9738112 + /etc/init.d/procps 021482ebab1024f5ed76e650e5191e8f + /etc/init/procps.conf 96170a339d08797dc90d69b01d6bf610 +Description: /proc file system utilities + This package provides command line and full screen utilities for browsing + procfs, a "pseudo" file system dynamically generated by the kernel to + provide information about the status of entries in its process table + (such as whether the process is running, stopped, or a "zombie"). + . + It contains free, kill, pkill, pgrep, pmap, ps, pwdx, skill, slabtop, + snice, sysctl, tload, top, uptime, vmstat, w, and watch. +Homepage: http://gitorious.org/procps +Original-Maintainer: Craig Small <csmall@debian.org> + +Package: libpam0g +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 219 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: pam +Version: 1.1.8-1ubuntu2 +Replaces: libpam0g-util +Depends: libaudit1 (>= 1:2.2.1), libc6 (>= 2.8), debconf (>= 0.5) | debconf-2.0 +Pre-Depends: multiarch-support +Suggests: libpam-doc +Description: Pluggable Authentication Modules library + Contains the shared library for Linux-PAM, a library that enables the + local system administrator to choose how applications authenticate users. + In other words, without rewriting or recompiling a PAM-aware application, + it is possible to switch between the authentication mechanism(s) it uses. + One may entirely upgrade the local authentication system without touching + the applications themselves. +Homepage: http://pam.sourceforge.net/ +Original-Maintainer: Steve Langasek <vorlon@debian.org> + +Package: sensible-utils +Status: install ok installed +Priority: required +Section: utils +Installed-Size: 110 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Multi-Arch: foreign +Version: 0.0.9 +Replaces: debianutils (<= 2.32.3), manpages-pl (<= 20060617-3~) +Description: Utilities for sensible alternative selection + This package provides a number of small utilities which are used + by programs to sensibly select and spawn an appropriate browser, + editor, or pager. + . + The specific utilities included are: sensible-browser sensible-editor + sensible-pager +Original-Maintainer: Anibal Monsalve Salazar <anibal@debian.org> + +Package: perl-base +Essential: yes +Status: install ok installed +Priority: required +Section: perl +Installed-Size: 4780 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Source: perl +Version: 5.18.2-2ubuntu1 +Replaces: libperl5.8 (<< 5.8.0-20), libscalar-list-utils-perl, libsocket-perl, libxsloader-perl, perl (<< 5.10.1-12), perl-modules (<< 5.10.1-1) +Provides: libscalar-list-utils-perl, libsocket-perl, libxsloader-perl, perl5-base, perlapi-5.18.1, perlapi-5.18.2 +Pre-Depends: libc6 (>= 2.11), dpkg (>= 1.14.20) +Suggests: perl +Breaks: autoconf2.13 (<< 2.13-45), libcommon-sense-perl (<< 3.72-2~), libfile-spec-perl (<< 3.4000), libmarc-charset-perl (<< 1.2), libsocket-perl (<< 2.009), libxsloader-perl (<< 0.16) +Conflicts: defoma (<< 0.11.12), doc-base (<< 0.10.3), libscalar-list-utils-perl, mono-gac (<< 2.10.8.1-3), safe-rm (<< 0.8), update-inetd (<< 4.41) +Description: minimal Perl system + Perl is a scripting language used in many system scripts and utilities. + . + This package provides a Perl interpreter and the small subset of the + standard run-time library required to perform basic tasks. For a full + Perl installation, install "perl" (and its dependencies, "perl-modules" + and "perl-doc"). +Original-Maintainer: Niko Tyni <ntyni@debian.org> +Homepage: http://dev.perl.org/perl5/ + +Package: sysv-rc +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 221 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Multi-Arch: foreign +Source: sysvinit +Version: 2.88dsf-41ubuntu6 +Replaces: file-rc +Depends: debconf (>= 0.5) | debconf-2.0, sysvinit-utils (>= 2.86.ds1-62), insserv (>> 1.12.0-10) +Recommends: lsb-base (>= 3.2-14) +Suggests: sysv-rc-conf, bum +Breaks: initscripts (<< 2.86.ds1-63) +Conflicts: file-rc +Description: System-V-like runlevel change mechanism + This package provides support for the System-V like system + for booting, changing runlevels, and shutting down, + configured through symbolic links in /etc/rc?.d/. +Homepage: http://savannah.nongnu.org/projects/sysvinit +Original-Maintainer: Debian sysvinit maintainers <pkg-sysvinit-devel@lists.alioth.debian.org> + +Package: libprocps3 +Status: install ok installed +Priority: important +Section: libs +Installed-Size: 129 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: procps +Version: 1:3.3.9-1ubuntu2 +Replaces: procps (<< 1:3.3.2-1) +Depends: libc6 (>= 2.4) +Pre-Depends: multiarch-support +Description: library for accessing process information from /proc + The libprocps library is a way of accessing information out of the /proc + filesystem. + . + This package contains the shared libraries necessary to run programs + compilied with libprocps. +Homepage: http://gitorious.org/procps +Original-Maintainer: Craig Small <csmall@debian.org> + +Package: libjson-c2 +Status: install ok installed +Priority: extra +Section: libs +Installed-Size: 82 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: json-c +Version: 0.11-4ubuntu1 +Depends: libc6 (>= 2.8) +Pre-Depends: multiarch-support +Description: JSON manipulation library - shared library + This library allows you to easily construct JSON objects in C, + output them as JSON formatted strings and parse JSON formatted + strings back into the C representation of JSON objects. +Homepage: https://github.com/json-c/json-c/wiki +Original-Maintainer: fabien boucher <fabien.dot.boucher@gmail.com> + +Package: libdrm2 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 105 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: libdrm +Version: 2.4.53-1 +Depends: libc6 (>= 2.17) +Pre-Depends: multiarch-support +Description: Userspace interface to kernel DRM services -- runtime + This library implements the userspace interface to the kernel DRM + services. DRM stands for "Direct Rendering Manager", which is the + kernelspace portion of the "Direct Rendering Infrastructure" (DRI). + The DRI is currently used on Linux to provide hardware-accelerated + OpenGL drivers. + . + This package provides the runtime environment for libdrm. +Original-Maintainer: Debian X Strike Force <debian-x@lists.debian.org> + +Package: libsepol1 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 322 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: libsepol +Version: 2.2-1 +Depends: libc6 (>= 2.4) +Pre-Depends: multiarch-support +Description: SELinux library for manipulating binary security policies + Security-enhanced Linux is a patch of the Linux kernel and a number + of utilities with enhanced security functionality designed to add + mandatory access controls to Linux. The Security-enhanced Linux + kernel contains new architectural components originally developed to + improve the security of the Flask operating system. These + architectural components provide general support for the enforcement + of many kinds of mandatory access control policies, including those + based on the concepts of Type Enforcement®, Role-based Access + Control, and Multi-level Security. + . + libsepol provides an API for the manipulation of SELinux binary policies. + It is used by checkpolicy (the policy compiler) and similar tools, as well + as by programs like load_policy that need to perform specific transformations + on binary policies such as customizing policy boolean settings. +Original-Maintainer: Debian SELinux maintainers <selinux-devel@lists.alioth.debian.org> +Homepage: http://userspace.selinuxproject.org/ + +Package: libpam-modules +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 764 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: pam +Version: 1.1.8-1ubuntu2 +Replaces: libpam-umask, libpam0g-util +Provides: libpam-mkhomedir, libpam-motd, libpam-umask +Pre-Depends: libaudit1 (>= 1:2.2.1), libc6 (>= 2.15), libdb5.3, libpam0g (>= 1.1.3-2), libselinux1 (>= 2.1.9), debconf (>= 0.5) | debconf-2.0, libpam-modules-bin (= 1.1.8-1ubuntu2) +Conflicts: libpam-mkhomedir, libpam-motd, libpam-umask +Conffiles: + /etc/security/limits.conf 11c27ba00b7bd6a255f33126f75c5005 + /etc/security/group.conf f1e26e8db6f7abd2d697d7dad3422c36 + /etc/security/access.conf 13ec4d189f0ed9acf3433977a53d446b + /etc/security/pam_env.conf ddee4a931170dc21b4e0b9bb28e02a7b + /etc/security/namespace.init b46b23d64860d1557d2a8f44b231fd54 + /etc/security/time.conf 06e05c6079e839c8833ac7c3abfde192 + /etc/security/sepermit.conf d41c74654734a5c069a37bfc02f0a6d4 + /etc/security/namespace.conf 6424c99a62ddf4b7d3ca713bb06ded89 +Description: Pluggable Authentication Modules for PAM + This package completes the set of modules for PAM. It includes the + pam_unix.so module as well as some specialty modules. +Homepage: http://pam.sourceforge.net/ +Original-Maintainer: Steve Langasek <vorlon@debian.org> + +Package: tzdata +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 1599 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Multi-Arch: foreign +Version: 2014b-1 +Replaces: libc0.1, libc0.3, libc6, libc6.1 +Provides: tzdata-jessie +Depends: debconf (>= 0.5) | debconf-2.0 +Description: time zone and daylight-saving time data + This package contains data required for the implementation of + standard local time for many representative locations around the + globe. It is updated periodically to reflect changes made by + political bodies to time zone boundaries, UTC offsets, and + daylight-saving rules. +Original-Maintainer: GNU Libc Maintainers <debian-glibc@lists.debian.org> +Homepage: http://www.iana.org/time-zones + +Package: libudev1 +Status: install ok installed +Priority: important +Section: libs +Installed-Size: 129 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: systemd +Version: 204-10ubuntu1 +Depends: libc6 (>= 2.17), libcgmanager0, libdbus-1-3 (>= 1.0.2), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0) +Pre-Depends: multiarch-support +Description: libudev shared library + This library provides access to udev device information. +Homepage: http://www.freedesktop.org/wiki/Software/systemd +Original-Maintainer: Debian systemd Maintainers <pkg-systemd-maintainers@lists.alioth.debian.org> + +Package: ifupdown +Status: install ok installed +Priority: important +Section: admin +Installed-Size: 229 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: foreign +Version: 0.7.48.1ubuntu1 +Replaces: netbase (<< 5.0) +Depends: iproute2 | iproute (>= 20071016-1), libc6 (>= 2.7), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), lsb-base (>= 4.1+Debian3), initscripts (>= 2.88dsf-25), adduser +Recommends: isc-dhcp-client | dhcp-client +Suggests: ppp, rdnssd, net-tools +Breaks: dhcp3-client (<< 4.0), netbase (<< 5.0) +Conffiles: + /etc/network/if-up.d/upstart dfbcde4fd4a3a2553930605e03e160ab + /etc/network/if-down.d/upstart 1a0205ddbc1446782a8d4d818e97d8a5 + /etc/init/network-interface-container.conf 4daa570594afc50940f140a7731d20d1 + /etc/init/networking.conf c50811e19bcd596d99b0467b40cfbb8b + /etc/init/network-interface.conf aae12345eba8e946579b06798b1752c1 + /etc/init/network-interface-security.conf feb6b4b52fe24c44ff1bc68addf245d6 + /etc/init.d/networking 2c8c3be8b90f99de7edf0f883ebe39f3 + /etc/default/networking 35cd4a2713981c9239ce4532c1bfc1c7 +Description: high level tools to configure network interfaces + This package provides the tools ifup and ifdown which may be used to + configure (or, respectively, deconfigure) network interfaces based on + interface definitions in the file /etc/network/interfaces. +Original-Maintainer: Andrew Shadura <andrewsh@debian.org> + +Package: libsemanage1 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 261 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: libsemanage +Version: 2.2-1ubuntu1 +Depends: libsemanage-common (= 2.2-1ubuntu1), libaudit1 (>= 1:2.2.1), libbz2-1.0, libc6 (>= 2.8), libselinux1 (>= 2.1.12), libsepol1 (>= 2.1.4), libustr-1.0-1 (>= 1.0.4) +Pre-Depends: multiarch-support +Description: SELinux policy management library + This package provides the shared libraries for SELinux policy management. + It uses libsepol for binary policy manipulation and libselinux for + interacting with the SELinux system. It also exec's helper programs + for loading policy and for checking whether the file_contexts + configuration is valid (load_policy and setfiles from + policycoreutils) presently, although this may change at least for the + bootstrapping case + . + Security-enhanced Linux is a patch of the Linux kernel and a + number of utilities with enhanced security functionality designed to + add mandatory access controls to Linux. The Security-enhanced Linux + kernel contains new architectural components originally developed to + improve the security of the Flask operating system. These + architectural components provide general support for the enforcement + of many kinds of mandatory access control policies, including those + based on the concepts of Type Enforcement, Role-based Access + Control, and Multi-level Security. +Original-Maintainer: Debian SELinux maintainers <selinux-devel@lists.alioth.debian.org> +Homepage: http://userspace.selinuxproject.org/ + +Package: mountall +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 248 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: foreign +Version: 2.53 +Replaces: upstart (<< 0.6.3-2) +Depends: makedev, udev, plymouth, coreutils (>= 7.1), libc6 (>= 2.9), libdbus-1-3 (>= 1.2.16), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0), libplymouth2 (>= 0.8.1-3), libudev1 (>= 183) +Pre-Depends: dpkg (>= 1.15.7.2) +Breaks: initscripts (<< 2.88dsf-24), policycoreutils (<< 2.0.69-2ubuntu4), usplash (<< 0.5.47) +Conffiles: + /etc/init/checkroot.sh.conf 3ea7f6ba450f431fd239e2b53a805216 + /etc/init/mounted-dev.conf cf7bea42235e77168c996d774f059c44 + /etc/init/mounted-tmp.conf 289fa57d726885147a41b2b1f3695a29 + /etc/init/mountdevsubfs.sh.conf dd33cb414bca17d97140d7f8671207f2 + /etc/init/mountall-net.conf feff70cd7006f6763e24263d381940f3 + /etc/init/mountall-shell.conf aa05af89db3de044d1cd7f6971b46d9f + /etc/init/mountall.sh.conf ee258840aad52477434cc22e34efcc50 + /etc/init/bootmisc.sh.conf d1a51c54dcfe6f3f5265246888ba4161 + /etc/init/mountnfs.sh.conf 760a5b57cbd0d1e2c65ba6db9297a586 + /etc/init/mounted-proc.conf 07198659bd06c1442a35882b2fae05fc + /etc/init/mountnfs-bootclean.sh.conf 0b6f3f9e9f8757efee57f6a4839d7dff + /etc/init/mountall.conf ac0fbaa98e705e52f59ca9e4d39751ad + /etc/init/mountall-bootclean.sh.conf d1899239aa60ea903f43a3ac58c5c238 + /etc/init/mtab.sh.conf 27aece82dbe70232d734d1dadfe87518 + /etc/init/mountkernfs.sh.conf 2e7449097b6cf88cba915edc1c339ec4 + /etc/init/mounted-var.conf 02f90856c91a46e9cbed1c35b92fec6c + /etc/init/mountall-reboot.conf 43e3c229085a13005b0681a49b2bef51 + /etc/init/checkroot-bootclean.sh.conf e02a473c76e4a2bfc1efb4c367495052 + /etc/init/checkfs.sh.conf 2e928476ccb2ecefe9ee87e2f83d34da + /etc/init/mounted-debugfs.conf 462c8aab0d9d4e6e496b1e2be5910edc + /etc/init/mounted-run.conf a26db58c801e0f6ec8738a5838aa53ed + /etc/dbus-1/system.d/Mountall.Server.conf 91b1414af1257d2ef089f84a3e5c1ed1 +Description: filesystem mounting tool + mountall mounts filesystems when the underlying block devices are + ready, or when network interfaces come up, checking the filesystems + first. +Original-Maintainer: Steve Langasek <vorlon@debian.org> + +Package: kmod +Status: install ok installed +Priority: important +Section: admin +Installed-Size: 285 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: foreign +Version: 16-2ubuntu3 +Replaces: module-init-tools (<< 4) +Depends: libc6 (>= 2.17), libkmod2, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), lsb-base (>= 3.0-6) +Breaks: module-init-tools (<< 4) +Conffiles: + /etc/init/kmod.conf 2686532745c8b71d6d3df91c3a53aef3 + /etc/modprobe.d/blacklist-framebuffer.conf 097e2142ae3e4dd2911eda7844ce0c18 + /etc/modprobe.d/blacklist-rare-network.conf 8fb4b96124e461f53adceba9ca91f09a + /etc/modprobe.d/blacklist.conf bc6754fa320733c6d239a4bb0148ffd7 + /etc/modprobe.d/iwlwifi.conf f27bc645e93e20c8e532325d190ac8ee + /etc/modprobe.d/blacklist-ath_pci.conf d1da9bb08c2b0f56f3be93fd0e37946b + /etc/modprobe.d/mlx4.conf b2a0bedb7461daeb0138270639581bbf + /etc/modprobe.d/blacklist-firewire.conf 9cc07a17e8e64f9cd35ff59c29debe69 + /etc/modprobe.d/blacklist-watchdog.conf 55327f9270c8a6257a833c4d127a39e1 + /etc/init.d/kmod e6d43abead3714ceb8aca68dd77e1dad + /etc/depmod.d/ubuntu.conf 7c8439ef36b12e5f226b5dbfa20b8c2d +Description: tools for managing Linux kernel modules + This package contains a set of programs for loading, inserting, and + removing kernel modules for Linux. + It replaces module-init-tools. +Original-Maintainer: Marco d'Itri <md@linux.it> + +Package: libkmod2 +Status: install ok installed +Priority: important +Section: libs +Installed-Size: 138 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: kmod +Version: 16-2ubuntu3 +Depends: libc6 (>= 2.17) +Pre-Depends: multiarch-support +Description: libkmod shared library + This library provides an API for insertion, removal, configuration and + listing of kernel modules. +Original-Maintainer: Marco d'Itri <md@linux.it> + +Package: tar +Essential: yes +Status: install ok installed +Priority: required +Section: utils +Installed-Size: 760 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: foreign +Version: 1.27.1-2 +Replaces: cpio (<< 2.4.2-39) +Pre-Depends: libacl1 (>= 2.2.51-8), libc6 (>= 2.17), libselinux1 (>= 1.32) +Suggests: bzip2, ncompress, xz-utils, tar-scripts +Breaks: dpkg-dev (<< 1.14.26) +Conflicts: cpio (<= 2.4.2-38) +Conffiles: + /etc/rmt 3c58b7cd13da1085eff0acc6a00f43c7 +Description: GNU version of the tar archiving utility + Tar is a program for packaging a set of files as a single archive in tar + format. The function it performs is conceptually similar to cpio, and to + things like PKZIP in the DOS world. It is heavily used by the Debian package + management system, and is useful for performing system backups and exchanging + sets of files with others. +Original-Maintainer: Bdale Garbee <bdale@gag.com> + +Package: libmount1 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 249 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: util-linux +Version: 2.20.1-5.1ubuntu20 +Depends: libblkid1 (>= 2.17.2), libc6 (>= 2.8), libselinux1 (>= 1.32) +Pre-Depends: multiarch-support +Description: block device id library + The device mounting library, used by mount and mount helpers. +Homepage: http://userweb.kernel.org/~kzak/util-linux/ +Original-Maintainer: LaMont Jones <lamont@debian.org> + +Package: zlib1g +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 170 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: zlib +Version: 1:1.2.8.dfsg-1ubuntu1 +Provides: libz1 +Depends: libc6 (>= 2.4) +Pre-Depends: multiarch-support +Breaks: libxml2 (<< 2.7.6.dfsg-2), texlive-binaries (<< 2009-12) +Conflicts: zlib1 (<= 1:1.0.4-7) +Description: compression library - runtime + zlib is a library implementing the deflate compression method found + in gzip and PKZIP. This package includes the shared library. +Homepage: http://zlib.net/ +Original-Maintainer: Mark Brown <broonie@debian.org> + +Package: adduser +Status: install ok installed +Priority: important +Section: admin +Installed-Size: 644 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Multi-Arch: foreign +Version: 3.113+nmu3ubuntu3 +Replaces: manpages-it (<< 0.3.4-2), manpages-pl (<= 20051117-1) +Depends: perl-base (>= 5.6.0), passwd (>= 1:4.0.12), debconf | debconf-2.0 +Suggests: liblocale-gettext-perl, perl-modules, ecryptfs-utils (>= 67-1) +Conffiles: + /etc/deluser.conf 773fb95e98a27947de4a95abb3d3f2a2 +Description: add and remove users and groups + This package includes the 'adduser' and 'deluser' commands for creating + and removing users. + . + - 'adduser' creates new users and groups and adds existing users to + existing groups; + - 'deluser' removes users and groups and removes users from a given + group. + . + Adding users with 'adduser' is much easier than adding them manually. + Adduser will choose appropriate UID and GID values, create a home + directory, copy skeletal user configuration, and automate setting + initial values for the user's password, real name and so on. + . + Deluser can back up and remove users' home directories + and mail spool or all the files they own on the system. + . + A custom script can be executed after each of the commands. + . + Development mailing list: + http://lists.alioth.debian.org/mailman/listinfo/adduser-devel/ +Homepage: http://alioth.debian.org/projects/adduser/ +Original-Maintainer: Debian Adduser Developers <adduser-devel@lists.alioth.debian.org> + +Package: libgcc1 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 154 +Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: gcc-4.9 (4.9.0-1ubuntu3) +Version: 1:4.9.0-1ubuntu3 +Depends: gcc-4.9-base (= 4.9.0-1ubuntu3), libc6 (>= 2.2.4) +Pre-Depends: multiarch-support +Breaks: gcc-4.3 (<< 4.3.6-1), gcc-4.4 (<< 4.4.6-4), gcc-4.5 (<< 4.5.3-2) +Description: GCC support library + Shared version of the support library, a library of internal subroutines + that GCC uses to overcome shortcomings of particular machines, or + special needs for some languages. +Homepage: http://gcc.gnu.org/ +Original-Maintainer: Debian GCC Maintainers <debian-gcc@lists.debian.org> + +Package: libdebconfclient0 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 85 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: cdebconf +Version: 0.190ubuntu1 +Depends: libc6 (>= 2.4) +Pre-Depends: multiarch-support +Description: Debian Configuration Management System (C-implementation library) + Debconf is a configuration management system for Debian packages. It is + used by some packages to prompt you for information before they are + installed. This is a reimplementation of the original debconf version + in C. + . + This is the libraries needed by libdebconfclient-dev and cdebconf. +Original-Maintainer: Debian Install System Team <debian-boot@lists.debian.org> + +Package: libklibc +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 133 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Source: klibc +Version: 2.0.3-0ubuntu1 +Description: minimal libc subset for use with initramfs + klibc is intended to be a minimalistic libc subset for use with + initramfs. It is deliberately written for small size, minimal + entanglement, and portability, not speed. It is definitely a work in + progress, and a lot of things are still missing. +Homepage: http://git.kernel.org/?p=libs/klibc/klibc.git;a=summary +Original-Maintainer: maximilian attems <maks@debian.org> + +Package: libcgmanager0 +Status: install ok installed +Priority: optional +Section: admin +Installed-Size: 152 +Maintainer: Serge Hallyn <serge.hallyn@ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: cgmanager +Version: 0.25-0ubuntu4 +Depends: libc6 (>= 2.1.3), libdbus-1-3 (>= 1.0.2) +Description: Central cgroup manager daemon (client library) + cgmanager provides a central cgroup manager daemon and a + per-namespace manager proxy, allowing users and programs + to administrate cgroups through D-Bus requests. + . + This package contains the shared library. +Homepage: http://cgmanager.linuxcontainers.org/ + +Package: mount +Essential: yes +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 410 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: foreign +Source: util-linux +Version: 2.20.1-5.1ubuntu20 +Pre-Depends: libblkid1 (>= 2.20.1), libc6 (>= 2.8), libmount1 (>= 2.20.1), libselinux1 (>= 2.0.15) +Suggests: nfs-common (>= 1:1.1.0-13) +Description: Tools for mounting and manipulating filesystems + This package provides the mount(8), umount(8), swapon(8), + swapoff(8), and losetup(8) commands. +Homepage: http://userweb.kernel.org/~kzak/util-linux/ +Original-Maintainer: LaMont Jones <lamont@debian.org> + +Package: libncurses5 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 292 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: ncurses +Version: 5.9+20140118-1ubuntu1 +Depends: libtinfo5 (= 5.9+20140118-1ubuntu1), libc6 (>= 2.15) +Pre-Depends: multiarch-support, libtinfo5 (>= 5.9-3) +Recommends: libgpm2 +Description: shared libraries for terminal handling + The ncurses library routines are a terminal-independent method of + updating character screens with reasonable optimization. + . + This package contains the shared libraries necessary to run programs + compiled with ncurses. +Homepage: http://invisible-island.net/ncurses/ +Original-Maintainer: Craig Small <csmall@debian.org> + +Package: libplymouth2 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 298 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: plymouth +Version: 0.8.8-0ubuntu17 +Replaces: plymouth (<< 0.7.0+git20090207-0ubuntu0.1~ppa4) +Depends: libc6 (>= 2.8), libpng12-0 (>= 1.2.13-4) +Pre-Depends: multiarch-support +Breaks: casper (= 1.227), mountall (<< 2.8) +Description: graphical boot animation and logger - shared libraries + Plymouth is an application that runs very early in the boot process + (even before the root filesystem is mounted!) that provides a graphical + boot animation while the boot process happens in the background. + . + This package contains the shared libraries. + +Package: gcc-4.9-base +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 213 +Maintainer: Ubuntu Core developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: gcc-4.9 +Version: 4.9.0-1ubuntu3 +Breaks: dehydra (<= 0.9.hg20110609-2), gcc-4.4-base (<< 4.4.7), gcj-4.4-base (<< 4.4.6-9~), gcj-4.6-base (<< 4.6.1-4~), gnat-4.4-base (<< 4.4.6-3~), gnat-4.6 (<< 4.6.1-5~) +Description: GCC, the GNU Compiler Collection (base package) + This package contains files common to all languages and libraries + contained in the GNU Compiler Collection (GCC). +Homepage: http://gcc.gnu.org/ +Original-Maintainer: Debian GCC Maintainers <debian-gcc@lists.debian.org> + +Package: initramfs-tools-bin +Status: install ok installed +Priority: optional +Section: utils +Installed-Size: 119 +Maintainer: Ubuntu Kernel Team <kernel-team@lists.ubuntu.com> +Architecture: i386 +Source: initramfs-tools +Version: 0.103ubuntu4 +Depends: libc6 (>= 2.4), libudev1 (>= 183) +Description: binaries used by initramfs-tools + This package contains binaries used inside the initramfs images generated + by initramfs-tools. +Original-Maintainer: Debian kernel team <debian-kernel@lists.debian.org> + +Package: libattr1 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 55 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: attr +Version: 1:2.4.47-1ubuntu1 +Depends: libc6 (>= 2.4) +Pre-Depends: multiarch-support +Conflicts: attr (<< 2.0.0) +Description: Extended attribute shared library + Contains the runtime environment required by programs that make use + of extended attributes. +Homepage: http://savannah.nongnu.org/projects/attr/ +Original-Maintainer: Anibal Monsalve Salazar <anibal@debian.org> + +Package: klibc-utils +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 392 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Source: klibc +Version: 2.0.3-0ubuntu1 +Depends: libklibc (= 2.0.3-0ubuntu1) +Breaks: initramfs-tools (<< 0.103) +Description: small utilities built with klibc for early boot + This package contains a collection of programs that are linked + against klibc. These duplicate some of the functionality of a + regular Linux toolset, but are typically much smaller than their + full-function counterparts. They are intended for inclusion in + initramfs images and embedded systems. +Homepage: http://git.kernel.org/?p=libs/klibc/klibc.git;a=summary +Original-Maintainer: maximilian attems <maks@debian.org> + +Package: e2fslibs +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 418 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: e2fsprogs +Version: 1.42.9-3ubuntu1 +Replaces: e2fsprogs (<< 1.34-1) +Provides: libe2p2, libext2fs2 +Depends: libc6 (>= 2.17) +Pre-Depends: multiarch-support +Description: ext2/ext3/ext4 file system libraries + The ext2, ext3 and ext4 file systems are successors of the original ext + ("extended") file system. They are the main file system types used for + hard disks on Debian and other Linux systems. + . + This package provides the ext2fs and e2p libraries, for userspace software + that directly accesses extended file systems. Programs that use libext2fs + include e2fsck, mke2fs, and tune2fs. Programs that use libe2p include + dumpe2fs, chattr, and lsattr. +Homepage: http://e2fsprogs.sourceforge.net +Original-Maintainer: Theodore Y. Ts'o <tytso@mit.edu> + +Package: base-passwd +Essential: yes +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 247 +Maintainer: Colin Watson <cjwatson@debian.org> +Architecture: i386 +Multi-Arch: foreign +Version: 3.5.33 +Replaces: base +Depends: libc6 (>= 2.8), libdebconfclient0 (>= 0.145) +Recommends: debconf (>= 0.5) | debconf-2.0 +Description: Debian base system master password and group files + These are the canonical master copies of the user database files + (/etc/passwd and /etc/group), containing the Debian-allocated user and + group IDs. The update-passwd tool is provided to keep the system databases + synchronized with these master files. + +Package: libcomerr2 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 102 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: e2fsprogs +Version: 1.42.9-3ubuntu1 +Replaces: e2fsprogs (<< 1.34-1) +Provides: libcomerr-kth-compat +Depends: libc6 (>= 2.17) +Pre-Depends: multiarch-support +Description: common error description library + libcomerr is an attempt to present a common error-handling mechanism to + manipulate the most common form of error code in a fashion that does not + have the problems identified with mechanisms commonly in use. +Homepage: http://e2fsprogs.sourceforge.net +Original-Maintainer: Theodore Y. Ts'o <tytso@mit.edu> + +Package: plymouth +Status: install ok installed +Priority: optional +Section: x11 +Installed-Size: 441 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Version: 0.8.8-0ubuntu17 +Depends: initramfs-tools, libplymouth2 (= 0.8.8-0ubuntu17), mountall (>= 2.0), upstart (>= 1.11-0ubuntu3), udev (>= 166-0ubuntu4), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), libc6 (>= 2.8), libdbus-1-3 (>= 1.1.1), libdrm2 (>= 2.4.25), libtinfo5 +Recommends: plymouth-theme-ubuntu-text | plymouth-theme +Breaks: gdm (<< 3.0.4-0ubuntu11), kdm (<< 4:4.7.1-0ubuntu3), lightdm (<< 0.9.7-0ubuntu2), lubuntu-plymouth-theme (<= 0.4), lxdm (<< 0.4.1-0ubuntu2), ubuntustudio-plymouth-theme (<= 0.38), xubuntu-plymouth-theme (<< 10.04.4) +Conflicts: usplash +Conffiles: + /etc/init/plymouth-ready.conf f8542ccc586a5b63f5b76f68ac4f2f59 + /etc/init/plymouth-shutdown.conf febc1a3763f8e15add963ede4e561a26 + /etc/init/plymouth-stop.conf 03c8ba8289470d71e22fdbfa5859e122 + /etc/init/plymouth.conf 859e01281230eb9a522c99875f4b8b69 + /etc/init/plymouth-log.conf 65d2943a69f455dec3fed43fd7996d76 + /etc/init/plymouth-splash.conf 63b63b446cc981dc4f2fa5772b4b3e93 + /etc/init/plymouth-upstart-bridge.conf dd271be2c476aadd0cd34bc77d95a379 +Description: graphical boot animation and logger - main package + Plymouth is an application that runs very early in the boot process + (even before the root filesystem is mounted!) that provides a graphical + boot animation while the boot process happens in the background. + +Package: upstart +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 1621 +Maintainer: James Hunt <james.hunt@ubuntu.com> +Architecture: i386 +Multi-Arch: foreign +Version: 1.12.1-0ubuntu4 +Replaces: startup-tasks, system-services, sysvinit, upstart-compat-sysv, upstart-job +Provides: startup-tasks, system-services, upstart-compat-sysv, upstart-job +Depends: libc6 (>= 2.15), libdbus-1-3 (>= 1.2.16), libjson-c2 (>= 0.10), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0), libselinux1 (>= 1.32), libudev1 (>= 183), sysvinit-utils, initscripts, mountall, ifupdown (>= 0.6.10ubuntu5), libjson0 (>= 0.10-1.1ubuntu1), debianutils (>= 4) +Suggests: python3, graphviz, bash-completion, upstart-monitor +Breaks: friendly-recovery (<< 0.2.13), libc6 (<< 2.12.1-0ubuntu12) +Conflicts: lxcguest, startup-tasks, system-services, sysvinit, upstart-compat-sysv, upstart-job +Conffiles: + /etc/logrotate.d/upstart 070767086a27883ec119e1dde779a856 + /etc/cron.daily/upstart 761747ebd3d1677620d5af50c9900b13 + /etc/dbus-1/system.d/Upstart.conf 64be74cddb0c74b7d98202b40389784c + /etc/bash_completion.d/upstart 080f7eee4a3f3e5f76197eaa581fb4da + /etc/X11/Xsession.d/99upstart d150fce36cf22f5504e4dbc89b4826e0 + /etc/X11/Xsession.d/00upstart 46b4576b1f2ceffb2450a88d58786b95 + /etc/init/tty5.conf 6d5794f72a1098b008e53e326a6bb5a0 + /etc/init/rc-sysinit.conf a50c045d9390a6e6c43c18b19cd72fe5 + /etc/init/rcS.conf 8533688686f75d7bcf20da5a0d36d94b + /etc/init/flush-early-job-log.conf 09e959647877c39f6490ad29b8a35a28 + /etc/init/wait-for-state.conf 20b85b55c3f1e040fdbbf669afe4d2a1 + /etc/init/shutdown.conf 559659602cefe7e8d3c1e76820f5ae5d + /etc/init/upstart-udev-bridge.conf 2c24bb70877476b5e7016ccf6de745a4 + /etc/init/tty2.conf 0d9326fdda081ac96d92bbc57ff773e4 + /etc/init/failsafe.conf 0b88eeccf6c8fd456e886aa7a76e3291 + /etc/init/rc.conf 3ebc6ddcd00482cfb24ce09a14ded29f + /etc/init/upstart-file-bridge.conf 57ea7ed6cba1f1259ac87410c59237ca + /etc/init/console.conf 8d79b0205f2daffb473604ce53e1dc83 + /etc/init/tty1.conf f42f2298f711147ecf177054294861a7 + /etc/init/control-alt-delete.conf 16e6603524084b63b0f0ca04eb56757e + /etc/init/upstart-socket-bridge.conf 5f3eaca09ee1f03d5d0686ea99f8c051 + /etc/init/tty4.conf 2c78cd865d848bb2674104905151dbe2 + /etc/init/tty3.conf 6608f08adf00a282358a1eeb9bdcf78e + /etc/init/tty6.conf e8ad2f0411614f9c8dc9c4e364763549 + /etc/init/container-detect.conf 6bae6257355ad7322e7263e567817465 + /etc/upstart-xsessions ec9aa92a5c50938479d711daa9ee774a +Description: event-based init daemon + upstart is a replacement for the /sbin/init daemon which handles + starting of tasks and services during boot, stopping them during + shutdown and supervising them while the system is running. +Homepage: http://upstart.ubuntu.com/ +Orig-Maintainer: Steve Langasek <vorlon@debian.org> + +Package: passwd +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 2250 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: foreign +Source: shadow +Version: 1:4.1.5.1-1ubuntu9 +Replaces: manpages-tr (<< 1.0.5), manpages-zh (<< 1.5.1-1) +Depends: libc6 (>= 2.8), libpam0g (>= 0.99.7.1), libselinux1 (>= 1.32), libsemanage1 (>= 2.0.3), libpam-modules, debianutils (>= 2.15.2) +Conffiles: + /etc/default/useradd cc9f9a7713ab62a32cd38363d958f396 + /etc/init/passwd.conf ea81baf06e4c358225ce22b786ad9e6a + /etc/cron.daily/passwd db990990933b6f56322725223f13c2bc + /etc/pam.d/chpasswd 9900720564cb4ee98b7da29e2d183cb2 + /etc/pam.d/newusers 1454e29bfa9f2a10836563e76936cea5 + /etc/pam.d/chfn 4d466e00a348ba426130664d795e8afa + /etc/pam.d/passwd eaf2ad85b5ccd06cceb19a3e75f40c63 + /etc/pam.d/chsh a6e9b589e90009334ffd030d819290a6 +Description: change and administer password and group data + This package includes passwd, chsh, chfn, and many other programs to + maintain password and group data. + . + Shadow passwords are supported. See /usr/share/doc/passwd/README.Debian +Homepage: http://pkg-shadow.alioth.debian.org/ +Original-Maintainer: Shadow package maintainers <pkg-shadow-devel@lists.alioth.debian.org> + +Package: libacl1 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 75 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: acl +Version: 2.2.52-1 +Depends: libattr1 (>= 1:2.4.46-8), libc6 (>= 2.4) +Pre-Depends: multiarch-support +Conflicts: acl (<< 2.0.0), libacl1-kerberos4kth +Description: Access control list shared library + This package contains the libacl.so dynamic library containing + the POSIX 1003.1e draft standard 17 functions for manipulating + access control lists. +Original-Maintainer: Anibal Monsalve Salazar <anibal@debian.org> +Homepage: http://savannah.nongnu.org/projects/acl/ + +Package: libslang2 +Status: install ok installed +Priority: important +Section: libs +Installed-Size: 1244 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: slang2 +Version: 2.2.4-16ubuntu1 +Depends: libc6 (>= 2.4) +Pre-Depends: multiarch-support +Recommends: libpng12-0 +Description: S-Lang programming library - runtime version + S-Lang is a C programmer's library that includes routines for the rapid + development of sophisticated, user friendly, multi-platform applications. + . + This package contains only the shared library libslang.so.* and copyright + information. It is only necessary for programs that use this library (such + as jed and slrn). If you plan on doing development with S-Lang, you will + need the companion -dev package as well. +Homepage: http://www.jedsoft.org/slang/ +Original-Maintainer: Alastair McKinstry <mckinstry@debian.org> + +Package: initscripts +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 219 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: foreign +Source: sysvinit +Version: 2.88dsf-41ubuntu6 +Replaces: libc0.1, libc0.3, libc6, libc6.1 +Depends: libc6 (>= 2.4), mount (>= 2.11x-1), debianutils (>= 4), lsb-base (>= 3.2-14), sysvinit-utils (>= 2.86.ds1-64), sysv-rc | file-rc, coreutils (>= 5.93), passwd, upstart, mountall (>= 2.28) +Recommends: psmisc, e2fsprogs +Breaks: aide (<< 0.15.1-5), atm-tools (<< 1:2.5.1-1.3), bootchart (<< 0.10~svn407-3.3), console-common (<< 0.7.86), cruft (<< 0.9.16), eepc-acpi-scripts (<< 1.1.12), fcheck (<< 2.7.59-16), hostapd (<< 1:0.7.3-3), hostname (<< 2.95ubuntu1~boot2), ifupdown (<< 0.6.8ubuntu27), libpam-mount (<< 2.13-1), ltsp-client-core (<< 5.2.16-1), mdadm (<< 3.2.2-1), nbd-client (<< 1:2.9.23-1), nfs-common (<< 1:1.2.5-3), portmap (<< 6.0.0-2), readahead-fedora (<< 2:1.5.6-3), resolvconf (<< 1.49), rpcbind (<< 0.2.0-7), rsyslog (<< 5.8.2-2), selinux-policy-default (<= 2:0.2.20100524-9), splashy (<< 0.3.13-5.1+b1), sysklogd (<< 1.5-6.2), udev (<< 146-2~boot6), upstart (<< 0.6.3-2~boot4), wpasupplicant (<< 0.7.3-4), xymon (<< 4.3.0~beta2.dfsg-9) +Conflicts: libdevmapper1.02.1 (<< 2:1.02.24-1) +Conffiles: + /etc/init.d/halt 6ae1b3b1b8198567a5e32116077f12a2 + /etc/init.d/killprocs 5e404d35091fab6c4889302736ed4602 + /etc/init.d/ondemand 63d57b1f5df759ddea8ef193094c118a + /etc/init.d/rc.local 18cd07959adfa8411ca17fe7c2ec3d96 + /etc/init.d/reboot 1b9db1ef7bfd79b128ef85d5065721a6 + /etc/init.d/sendsigs 8376da0c226dcc989f6829230b1d5b50 + /etc/init.d/single dc13cb373c5c098a8fb95424701373e3 + /etc/init.d/umountfs 07e4c8c8d9136f36745feb4776edc6f4 + /etc/init.d/umountnfs.sh b369d5215733f79ee2bf58cc966c5931 + /etc/init.d/umountroot 677b1eb8358469b50044663bfbee5699 + /etc/init.d/urandom e6454386bfce38efb5987dd06cb3b21d + /etc/default/devpts fc857c5ac5fb84d80720ed4d1c624f6e + /etc/default/halt 18d9844cf8ca8608e2a559a4555e593a + /etc/default/rcS db3696fc6caa33a1d72b33fa3cec7c42 +Description: scripts for initializing and shutting down the system + The scripts in this package initialize a standard Debian + system at boot time and shut it down at halt or reboot time. +Homepage: http://savannah.nongnu.org/projects/sysvinit +Original-Maintainer: Debian sysvinit maintainers <pkg-sysvinit-devel@lists.alioth.debian.org> + +Package: libblkid1 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 254 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: util-linux +Version: 2.20.1-5.1ubuntu20 +Depends: libc6 (>= 2.7), libuuid1 (>= 2.16) +Pre-Depends: multiarch-support +Conffiles: + /etc/blkid.conf 7f4c49e01e0a23d2f4b20eeb32e95abb +Description: block device id library + The blkid library which allows system programs like fsck and + mount to quickly and easily find block devices by filesystem UUID and + LABEL. This allows system administrators to avoid specifying + filesystems by hard-coded device names, but via a logical naming + system instead. +Homepage: http://userweb.kernel.org/~kzak/util-linux/ +Original-Maintainer: LaMont Jones <lamont@debian.org> + +Package: libss2 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 110 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: e2fsprogs +Version: 1.42.9-3ubuntu1 +Replaces: e2fsprogs (<< 1.34-1) +Depends: libcomerr2, libc6 (>= 2.17) +Pre-Depends: multiarch-support +Description: command-line interface parsing library + libss provides a simple command-line interface parser which will + accept input from the user, parse the command into an argv argument + vector, and then dispatch it to a handler function. + . + It was originally inspired by the Multics SubSystem library. +Homepage: http://e2fsprogs.sourceforge.net +Original-Maintainer: Theodore Y. Ts'o <tytso@mit.edu> + +Package: libsemanage-common +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 56 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Multi-Arch: foreign +Source: libsemanage +Version: 2.2-1ubuntu1 +Replaces: libsemanage1 (<= 2.0.41-1), libsemanage1-dev (<< 2.1.6-3~) +Breaks: libsemanage1 (<= 2.0.41-1), libsemanage1-dev (<< 2.1.6-3~) +Conffiles: + /etc/selinux/semanage.conf e69d42a4d98a93c3b8e201bdda367c55 +Description: Common files for SELinux policy management libraries + This package provides the common files used by the shared libraries + for SELinux policy management. + . + Security-enhanced Linux is a patch of the Linux kernel and a + number of utilities with enhanced security functionality designed to + add mandatory access controls to Linux. The Security-enhanced Linux + kernel contains new architectural components originally developed to + improve the security of the Flask operating system. These + architectural components provide general support for the enforcement + of many kinds of mandatory access control policies, including those + based on the concepts of Type Enforcement, Role-based Access + Control, and Multi-level Security. +Original-Maintainer: Debian SELinux maintainers <selinux-devel@lists.alioth.debian.org> +Homepage: http://userspace.selinuxproject.org/ + +Package: libpam-modules-bin +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 212 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: foreign +Source: pam +Version: 1.1.8-1ubuntu2 +Replaces: libpam-modules (<< 1.1.3-8) +Depends: libaudit1 (>= 1:2.2.1), libc6 (>= 2.4), libpam0g (>= 0.99.7.1), libselinux1 (>= 1.32) +Description: Pluggable Authentication Modules for PAM - helper binaries + This package contains helper binaries used by the standard set of PAM + modules in the libpam-modules package. +Homepage: http://pam.sourceforge.net/ +Original-Maintainer: Steve Langasek <vorlon@debian.org> + +Package: findutils +Essential: yes +Status: install ok installed +Priority: required +Section: utils +Installed-Size: 668 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: foreign +Version: 4.4.2-8 +Pre-Depends: libc6 (>= 2.17) +Suggests: mlocate | locate +Description: utilities for finding files--find, xargs + GNU findutils provides utilities to find files meeting specified + criteria and perform various actions on the files which are found. + This package contains 'find' and 'xargs'; however, 'locate' has + been split off into a separate package. +Original-Maintainer: Andreas Metzler <ametzler@debian.org> +Homepage: http://savannah.gnu.org/projects/findutils/ + +Package: e2fsprogs +Essential: yes +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 2424 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: foreign +Version: 1.42.9-3ubuntu1 +Replaces: hurd (<= 20040301-1), libblkid1 (<< 1.38+1.39-WIP-2005.12.10-2), libuuid1 (<< 1.38+1.39-WIP-2005.12.10-2) +Pre-Depends: e2fslibs (= 1.42.9-3ubuntu1), libblkid1 (>= 2.17.2), libc6 (>= 2.11), libcomerr2 (>= 1.42~WIP-2011-10-05-1), libss2 (>= 1.34-1), libuuid1 (>= 2.16), util-linux (>= 2.15~rc1-1) +Suggests: gpart, parted, e2fsck-static +Conflicts: dump (<< 0.4b4-4), initscripts (<< 2.85-4), quota (<< 1.55-8.1), sysvinit (<< 2.85-4) +Conffiles: + /etc/mke2fs.conf e2cdbf0620e93949af5857eb4739f949 +Description: ext2/ext3/ext4 file system utilities + The ext2, ext3 and ext4 file systems are successors of the original ext + ("extended") file system. They are the main file system types used for + hard disks on Debian and other Linux systems. + . + This package contains programs for creating, checking, and maintaining + ext2/3/4-based file systems. It also includes the "badbocks" program, + which can be used to scan for bad blocks on a disk or other storage device. +Homepage: http://e2fsprogs.sourceforge.net +Original-Maintainer: Theodore Y. Ts'o <tytso@mit.edu> + +Package: liblzma5 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 316 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: xz-utils +Version: 5.1.1alpha+20120614-2ubuntu2 +Depends: libc6 (>= 2.4) +Pre-Depends: multiarch-support +Description: XZ-format compression library + XZ is the successor to the Lempel-Ziv/Markov-chain Algorithm + compression format, which provides memory-hungry but powerful + compression (often better than bzip2) and fast, easy decompression. + . + The native format of liblzma is XZ; it also supports raw (headerless) + streams and the older LZMA format used by lzma. (For 7-Zip's related + format, use the p7zip package instead.) +Homepage: http://tukaani.org/xz/ +Original-Maintainer: Jonathan Nieder <jrnieder@gmail.com> + +Package: libnih1 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 147 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: libnih +Version: 1.0.3-4ubuntu25 +Pre-Depends: multiarch-support, libc6 (>= 2.15~) +Description: NIH Utility Library + libnih is a light-weight "standard library" of C functions to ease the + development of other libraries and applications, especially those + normally found in /lib. + . + This package contains the shared library. +Homepage: https://launchpad.net/libnih +Original-Maintainer: Scott James Remnant <scott@netsplit.com> + +Package: libaudit1 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 143 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: audit +Version: 1:2.3.2-2ubuntu1 +Depends: libaudit-common (= 1:2.3.2-2ubuntu1), libc6 (>= 2.8) +Pre-Depends: multiarch-support +Description: Dynamic library for security auditing + The audit-libs package contains the dynamic libraries needed for + applications to use the audit framework. It is used to monitor systems for + security related events. +Homepage: http://people.redhat.com/sgrubb/audit/ +Original-Maintainer: Debian QA Group <packages@qa.debian.org> + +Package: libdb5.3 +Status: install ok installed +Priority: standard +Section: libs +Installed-Size: 1788 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: db5.3 +Version: 5.3.28-3ubuntu3 +Depends: libc6 (>= 2.17) +Pre-Depends: multiarch-support +Description: Berkeley v5.3 Database Libraries [runtime] + This is the runtime package for programs that use the v5.3 Berkeley + database library. +Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html +Original-Maintainer: Debian Berkeley DB Group <pkg-db-devel@lists.alioth.debian.org> + +Package: insserv +Status: install ok installed +Priority: optional +Section: misc +Installed-Size: 182 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Version: 1.14.0-5ubuntu2 +Depends: libc6 (>= 2.7) +Suggests: bootchart2 +Breaks: sysv-rc (<< 2.87dsf-3) +Conffiles: + /etc/insserv.conf 3e9467113029a6356f57842085f3c849 + /etc/bash_completion.d/insserv 32975fe14795d6fce1408d5fd22747fd +Description: boot sequence organizer using LSB init.d script dependency information + The insserv program is used by the standard SysV-based init system. It + updates the order of symlinks in /etc/rc?.d/ based on dependencies + specified by LSB headers in the init.d scripts themselves. + . + These declared relations between scripts make it possible to optimize + the boot sequence for the currently installed set of packages, while + detecting and rejecting dependency loops. + . + Using insserv incorrectly can result in an unbootable system. +Homepage: http://savannah.nongnu.org/projects/sysvinit +Original-Maintainer: Petter Reinholdtsen <pere@debian.org> + +Package: dpkg +Essential: yes +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 6327 +Origin: debian +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Bugs: debbugs://bugs.debian.org +Architecture: i386 +Multi-Arch: foreign +Version: 1.17.9ubuntu1 +Replaces: manpages-it (<< 2.80-4) +Pre-Depends: libbz2-1.0, libc6 (>= 2.11), liblzma5 (>= 5.1.1alpha+20120614), libselinux1 (>= 2.1.0), zlib1g (>= 1:1.1.4), tar (>= 1.23) +Suggests: apt +Breaks: apt (<< 0.7.7), aptitude (<< 0.4.7-1), dpkg-dev (<< 1.15.8), libdpkg-perl (<< 1.15.8) +Conflicts: ada-reference-manual (<< 20021112web-4), asn1-mode (<< 2.7-7), bogosort (<< 0.4.2-3), cl-yacc (<< 0.3-3), cpp-4.1-doc (<< 4.1.2.nf2-4), cpp-4.2-doc (<< 4.2.4.nf1-4), gcc-4.1-doc (<< 4.1.2.nf2-4), gcc-4.2-doc (<< 4.2.4.nf1-4), gcj-4.1-doc (<< 4.1.2.nf2-4), gcj-4.2-doc (<< 4.2.4.nf1-4), gfortran-4.1-doc (<< 4.1.2.nf2-4), gfortran-4.2-doc (<< 4.2.4.nf1-4), ggz-docs (<< 0.0.14.1-2), glame (<< 2.0.1-6), gnat-4.1-doc (<< 4.1.2.nf2-4), gnat-4.2-doc (<< 4.2.4.nf1-4), gtalk (<< 0.99.10-16), libalogg-dev (<< 1.3.7-2), libgtk1.2-doc (<< 1.2.10-19), libnettle-dev (<< 2), liborbit-dev (<< 0.5.17-12), libreadline5-dev (<< 5.2-8), librep-doc (<< 0.90), mmucl (<< 1.5.2-3), nxml-mode (<< 20041004-9), r6rs-doc (<< 1.0-2), serveez-doc (<< 0.1.5-3), slat (<< 2.0-6), texlive-base-bin-doc (<< 2007.dfsg.2-9), ttcn-el (<< 0.6.9-2), ulog-acctd (<< 0.4.3-3), xconq-doc (<< 7.4.1-5), zenirc (<< 2.112.dfsg-1) +Conffiles: + /etc/alternatives/README 69c4ba7f08363e998e0f2e244a04f881 + /etc/logrotate.d/dpkg 782ea5ae536f67ff51dc8c3e2eeb4cf9 + /etc/dpkg/dpkg.cfg f4413ffb515f8f753624ae3bb365b81b + /etc/cron.daily/dpkg 2712ab0dc801324ea632a0f1f82cd38c +Description: Debian package management system + This package provides the low-level infrastructure for handling the + installation and removal of Debian software packages. + . + For Debian package development tools, install dpkg-dev. +Homepage: https://wiki.debian.org/Teams/Dpkg +Original-Maintainer: Dpkg Developers <debian-dpkg@lists.debian.org> + +Package: libpcre3 +Status: install ok installed +Priority: important +Section: libs +Installed-Size: 595 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: pcre3 +Version: 1:8.31-5ubuntu1 +Depends: libc6 (>= 2.4) +Pre-Depends: multiarch-support +Breaks: approx (<< 4.4-1~), cduce (<< 0.5.3-2~), cmigrep (<< 1.5-7~), galax (<< 1.1-7~), libpcre-ocaml (<< 6.0.1~), liquidsoap (<< 0.9.2-3~), ocsigen (<< 1.3.3-1~) +Conflicts: libpcre3-dev (<= 4.3-3) +Description: Perl 5 Compatible Regular Expression Library - runtime files + This is a library of functions to support regular expressions whose syntax + and semantics are as close as possible to those of the Perl 5 language. + . + This package contains the runtime libraries. +Original-Maintainer: Mark Baker <mark@mnb.org.uk> + +Package: libncursesw5 +Status: install ok installed +Priority: important +Section: libs +Installed-Size: 378 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: ncurses +Version: 5.9+20140118-1ubuntu1 +Depends: libtinfo5 (= 5.9+20140118-1ubuntu1), libc6 (>= 2.15) +Pre-Depends: multiarch-support +Recommends: libgpm2 +Description: shared libraries for terminal handling (wide character support) + The ncurses library routines are a terminal-independent method of + updating character screens with reasonable optimization. + . + This package contains the shared libraries necessary to run programs + compiled with ncursesw, which includes support for wide characters. +Homepage: http://invisible-island.net/ncurses/ +Original-Maintainer: Craig Small <csmall@debian.org> + +Package: busybox-initramfs +Status: install ok installed +Priority: optional +Section: shells +Installed-Size: 357 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Source: busybox +Version: 1:1.22.0-5ubuntu1 +Depends: libc6 (>= 2.11) +Description: Standalone shell setup for initramfs + BusyBox combines tiny versions of many common UNIX utilities into a single + small executable. It provides minimalist replacements for the most common + utilities you would usually find on your desktop system (i.e., ls, cp, mv, + mount, tar, etc.). The utilities in BusyBox generally have fewer options than + their full-featured GNU cousins; however, the options that are included + provide the expected functionality and behave very much like their GNU + counterparts. + . + busybox-initramfs provides a simple stand alone shell that provides + only the basic utilities needed for the initramfs. +Homepage: http://www.busybox.net +Original-Maintainer: Debian Install System Team <debian-boot@lists.debian.org> + +Package: libbz2-1.0 +Status: install ok installed +Priority: important +Section: libs +Installed-Size: 116 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: bzip2 +Version: 1.0.6-5 +Depends: libc6 (>= 2.4) +Pre-Depends: multiarch-support +Description: high-quality block-sorting file compressor library - runtime + This package contains libbzip2 which is used by the bzip2 compressor. + . + bzip2 is a freely available, patent free, high-quality data compressor. + It typically compresses files to within 10% to 15% of the best available + techniques, whilst being around twice as fast at compression and six + times faster at decompression. + . + bzip2 compresses files using the Burrows-Wheeler block-sorting text + compression algorithm, and Huffman coding. Compression is generally + considerably better than that achieved by more conventional + LZ77/LZ78-based compressors, and approaches the performance of the PPM + family of statistical compressors. + . + The archive file format of bzip2 (.bz2) is incompatible with that of its + predecessor, bzip (.bz). +Original-Maintainer: Anibal Monsalve Salazar <anibal@debian.org> +Homepage: http://www.bzip.org/ + +Package: libtinfo5 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 433 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: ncurses +Version: 5.9+20140118-1ubuntu1 +Replaces: libncurses5 (<< 5.9-3) +Depends: libc6 (>= 2.15) +Pre-Depends: multiarch-support +Breaks: dialog (<< 1.2-20130523) +Description: shared low-level terminfo library for terminal handling + The ncurses library routines are a terminal-independent method of + updating character screens with reasonable optimization. + . + This package contains the shared low-level terminfo library. +Homepage: http://invisible-island.net/ncurses/ +Original-Maintainer: Craig Small <csmall@debian.org> + +Package: sysvinit-utils +Status: install ok installed +Priority: required +Section: admin +Installed-Size: 232 +Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: foreign +Source: sysvinit +Version: 2.88dsf-41ubuntu6 +Replaces: last, sysvinit (<= 2.86.ds1-65) +Depends: libc6 (>= 2.15), libselinux1 (>= 1.32), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) +Recommends: upstart (>= 0.6.3-4) +Suggests: bootlogd, sash +Breaks: upstart (<< 1.5-0ubuntu5) +Conflicts: chkconfig (<< 11.0-79.1-2), last, sysvconfig +Conffiles: + /etc/init/startpar-bridge.conf d220afa75514468471c42469967341d2 +Description: System-V-like utilities + This package contains the important System-V-like utilities. + . + Specifically, this package includes: + killall5, last, lastb, mesg, pidof, service, sulogin +Homepage: http://savannah.nongnu.org/projects/sysvinit +Original-Maintainer: Debian sysvinit maintainers <pkg-sysvinit-devel@lists.alioth.debian.org> + +Package: multiarch-support +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 201 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: foreign +Source: eglibc +Version: 2.19-0ubuntu6 +Depends: libc6 (>= 2.13-5) +Description: Transitional package to ensure multiarch compatibility + This is a transitional package used to ensure multiarch support is present + in ld.so before unpacking libraries to the multiarch directories. It can + be removed once nothing on the system depends on it. +Homepage: http://www.eglibc.org +Original-Maintainer: GNU Libc Maintainers <debian-glibc@lists.debian.org> + +Package: libjson0 +Status: install ok installed +Priority: extra +Section: oldlibs +Installed-Size: 29 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: json-c +Version: 0.11-4ubuntu1 +Depends: libjson-c2 +Description: JSON manipulation library (transitional package) + This is a transition package that can be safely removed once no + package depend on it. +Homepage: https://github.com/json-c/json-c/wiki +Original-Maintainer: fabien boucher <fabien.dot.boucher@gmail.com> + +Package: libnih-dbus1 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 65 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: libnih +Version: 1.0.3-4ubuntu25 +Depends: libnih1 (= 1.0.3-4ubuntu25), libc6 (>= 2.3.4), libdbus-1-3 (>= 1.2.16) +Pre-Depends: multiarch-support +Description: NIH D-Bus Bindings Library + libnih-dbus is a D-Bus bindings library that integrates with the main + loop provided by libnih. + . + This package contains the shared library. +Homepage: https://launchpad.net/libnih +Original-Maintainer: Scott James Remnant <scott@netsplit.com> + +Package: libselinux1 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 192 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: libselinux +Version: 2.2.2-1ubuntu1 +Depends: libc6 (>= 2.8), libpcre3 +Pre-Depends: multiarch-support +Description: SELinux runtime shared libraries + This package provides the shared libraries for Security-enhanced + Linux that provides interfaces (e.g. library functions for the + SELinux kernel APIs like getcon(), other support functions like + getseuserbyname()) to SELinux-aware applications. Security-enhanced + Linux is a patch of the Linux kernel and a number of utilities with + enhanced security functionality designed to add mandatory access + controls to Linux. The Security-enhanced Linux kernel contains new + architectural components originally developed to improve the security + of the Flask operating system. These architectural components provide + general support for the enforcement of many kinds of mandatory access + control policies, including those based on the concepts of Type + Enforcement, Role-based Access Control, and Multi-level Security. + . + libselinux1 provides an API for SELinux applications to get and set + process and file security contexts and to obtain security policy + decisions. Required for any applications that use the SELinux + API. libselinux may use the shared libsepol to manipulate the binary + policy if necessary (e.g. to downgrade the policy format to an older + version supported by the kernel) when loading policy. +Homepage: http://userspace.selinuxproject.org/ +Original-Maintainer: Debian SELinux maintainers <selinux-devel@lists.alioth.debian.org> + +Package: libaudit-common +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 44 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: all +Multi-Arch: foreign +Source: audit +Version: 1:2.3.2-2ubuntu1 +Replaces: libaudit0, libaudit1 (<< 1:2.2.1-2) +Breaks: libaudit0, libaudit1 (<< 1:2.2.1-2) +Conffiles: + /etc/libaudit.conf cdc703f9d27f0d980271a9e95d0f18b2 +Description: Dynamic library for security auditing - common files + The audit-libs package contains the dynamic libraries needed for + applications to use the audit framework. It is used to monitor systems for + security related events. + . + This package contains the libaudit.conf configuration file and the associated + manpage. +Homepage: http://people.redhat.com/sgrubb/audit/ +Original-Maintainer: Debian QA Group <packages@qa.debian.org> + +Package: libc6 +Status: install ok installed +Priority: required +Section: libs +Installed-Size: 9254 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: eglibc +Version: 2.19-0ubuntu6 +Replaces: libc6-i386, libc6-xen +Provides: glibc-2.19-1, libc6-i686, libc6-xen +Depends: libgcc1 +Suggests: glibc-doc, debconf | debconf-2.0, locales +Breaks: hurd (<< 1:0.5.git20140203-1), nscd (<< 2.19) +Conflicts: libc6-xen, prelink (<= 0.0.20090311-1), tzdata (<< 2007k-1), tzdata-etch +Conffiles: + /etc/ld.so.conf.d/i686-linux-gnu.conf 1c63da36f33ec6647af1d8faff9b9795 +Description: Embedded GNU C Library: Shared libraries + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C library + and the standard math library, as well as many others. +Homepage: http://www.eglibc.org +Original-Maintainer: GNU Libc Maintainers <debian-glibc@lists.debian.org> + +Package: libpng12-0 +Status: install ok installed +Priority: optional +Section: libs +Installed-Size: 308 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: same +Source: libpng +Version: 1.2.50-1ubuntu2 +Replaces: libpng12-dev (<= 1.2.8rel-7) +Depends: libc6 (>= 2.11), zlib1g (>= 1:1.1.4) +Pre-Depends: multiarch-support +Conflicts: libpng12-dev (<= 1.2.8rel-7), mzscheme (<= 1:209-5), pngcrush (<= 1.5.10-2), pngmeta (<= 1.11-3), povray-3.5 (<= 3.5.0c-10), qemacs (<= 0.3.1-5) +Description: PNG library - runtime + libpng is a library implementing an interface for reading and writing + PNG (Portable Network Graphics) format files. + . + This package contains the runtime library files needed to run software + using libpng. +Homepage: http://libpng.org/pub/png/libpng.html +Original-Maintainer: Anibal Monsalve Salazar <anibal@debian.org> + +Package: udev +Status: install ok installed +Priority: important +Section: admin +Installed-Size: 5119 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: foreign +Source: systemd +Version: 204-10ubuntu1 +Depends: libacl1 (>= 2.2.51-8), libblkid1 (>= 2.19.1), libc6 (>= 2.17), libcgmanager0, libdbus-1-3 (>= 1.0.2), libkmod2 (>= 5~), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0), libselinux1 (>= 2.0.65), libudev1 (= 204-10ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), lsb-base (>= 3.0-6), util-linux (>= 2.16), procps +Pre-Depends: debconf (>= 1.4.69) | debconf-2.0 +Breaks: consolekit (<< 0.4.6-1) +Conffiles: + /etc/udev/udev.conf ae415f84e2967eff580089fb08aa0a61 + /etc/init.d/udev b1cab2570af69ccbf49a208799af6247 + /etc/init.d/udev-finish 6eac2544228b88cbe8cede182082f46a + /etc/init/udev-fallback-graphics.conf b8bfe7164e10cd0e53494b243c5728b1 + /etc/init/udevtrigger.conf 651ff2421dde80be7ce7ccbf7fa8cf18 + /etc/init/udev-finish.conf 5c953c5b98ccfbb2a02985bfa2f80aed + /etc/init/udev.conf 41c0081f3a830e0902aaff76a53edf98 + /etc/init/udevmonitor.conf b541dfb5aa4958e9a5336ecaec00ca15 + /etc/modprobe.d/fbdev-blacklist.conf 01cd03c88ce6821c03baf904f7dfcbd0 + /etc/udev/rules.d/README 3b6de9f3f911176734c66903b4f8735c obsolete +Description: /dev/ and hotplug management daemon + udev is a daemon which dynamically creates and removes device nodes from + /dev/, handles hotplug events and loads drivers at boot time. +Homepage: http://www.freedesktop.org/wiki/Software/systemd +Original-Maintainer: Debian systemd Maintainers <pkg-systemd-maintainers@lists.alioth.debian.org> + +Package: util-linux +Essential: yes +Status: install ok installed +Priority: required +Section: utils +Installed-Size: 1554 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: foreign +Version: 2.20.1-5.1ubuntu20 +Replaces: e2fsprogs, fdisk, fstrim, linux32, miscutils, schedutils, setterm, sparc-utils +Provides: linux32, schedutils +Depends: lsb-base (>= 3.0-6), tzdata (>= 2006c-2), dpkg (>= 1.15.4) | install-info, debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) +Pre-Depends: libblkid1 (>= 2.20.1), libc6 (>= 2.15), libncurses5 (>= 5.5-5~), libselinux1 (>= 1.32), libslang2 (>= 2.2.4), libtinfo5, libuuid1 (>= 2.16), zlib1g (>= 1:1.1.4) +Suggests: util-linux-locales, kbd | console-tools, dosfstools +Conflicts: console-tools (<< 1:0.2.3-21), fdisk, fstrim, kbd (<< 1.05-3), linux32, schedutils, setterm +Conffiles: + /etc/cron.weekly/fstrim 4de5cd1aac392609593296f0d81e7595 + /etc/init/hwclock.conf 132aa3db7e5a8cf55168e4866052208a + /etc/init/hwclock-save.conf 4a002046525e338fc23e4418602865c9 +Description: Miscellaneous system utilities + This package contains a number of important utilities, most of which + are oriented towards maintenance of your system. Some of the more + important utilities included in this package allow you to partition + your hard disk, view kernel messages, and create new filesystems. +Homepage: http://userweb.kernel.org/~kzak/util-linux/ +Original-Maintainer: LaMont Jones <lamont@debian.org> + +Package: cpio +Status: install ok installed +Priority: important +Section: utils +Installed-Size: 312 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> +Architecture: i386 +Multi-Arch: foreign +Version: 2.11+dfsg-2ubuntu1 +Replaces: cpio-mt +Depends: libc6 (>= 2.17) +Suggests: libarchive1 +Conflicts: cpio-mt, mt-st (<< 0.6) +Description: GNU cpio -- a program to manage archives of files + GNU cpio is a tool for creating and extracting archives, or copying + files from one place to another. It handles a number of cpio formats + as well as reading and writing tar files. +Homepage: http://www.gnu.org/software/cpio/ +Original-Maintainer: Anibal Monsalve Salazar <anibal@debian.org> + diff --git a/test/integration/test-bug-lp1347721-dpkg-ordering b/test/integration/test-bug-lp1347721-dpkg-ordering new file mode 100755 index 000000000..cfe7a4df2 --- /dev/null +++ b/test/integration/test-bug-lp1347721-dpkg-ordering @@ -0,0 +1,11 @@ +#!/bin/sh +set -e + +TESTDIR=$(readlink -f $(dirname $0)) +. $TESTDIR/framework +setupenvironment +configarchitecture "i386" +setupaptarchive + +# ensure we find a valid ordering +testsuccess aptget dist-upgrade -s -- cgit v1.2.3 From 49ed214f7880cdc88ebb4944514e03a1bd168766 Mon Sep 17 00:00:00 2001 From: Michael Vogt <mvo@debian.org> Date: Tue, 29 Jul 2014 17:54:03 +0200 Subject: doc/apt.8.xml: fix typo, thanks to Jakub Wilk Closes: #756056 --- doc/apt.8.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/apt.8.xml b/doc/apt.8.xml index bcad5ee7f..08a65ade2 100644 --- a/doc/apt.8.xml +++ b/doc/apt.8.xml @@ -105,8 +105,8 @@ <listitem><para><literal>upgrade</literal> is used to install the newest versions of all packages currently installed on the system from the sources enumerated in - <filename>/etc/apt/sources.list</filename>. New package will be - installed, but existing package will never removed. + <filename>/etc/apt/sources.list</filename>. New packages will be + installed, but existing packages will never be removed. </para></listitem> </varlistentry> -- cgit v1.2.3 From 5803c1dcf0a6e590cfd98ca8ab11d5573652cb14 Mon Sep 17 00:00:00 2001 From: Michael Vogt <mvo@debian.org> Date: Tue, 29 Jul 2014 18:07:44 +0200 Subject: =?UTF-8?q?doc/po/pt.po:=20updated,=20thanks=20to=20Am=C3=A9rico?= =?UTF-8?q?=20Monteir?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes: #756200 --- doc/po/pt.po | 577 ++++++++++++++++++++++++++++++++++++++--------------------- 1 file changed, 371 insertions(+), 206 deletions(-) diff --git a/doc/po/pt.po b/doc/po/pt.po index 483c1f903..cb082ab82 100644 --- a/doc/po/pt.po +++ b/doc/po/pt.po @@ -2,20 +2,20 @@ # Copyright (C) 2009 Free Software Foundation, Inc. # This file is distributed under the same license as the apt package. # -# Américo Monteiro <a_monteiro@netcabo.pt>, 2009, 2010, 2012. +# Américo Monteiro <a_monteiro@gmx.com>, 2009 - 2014. msgid "" msgstr "" -"Project-Id-Version: apt 0.9.7.1\n" +"Project-Id-Version: apt 1.0.6\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" "POT-Creation-Date: 2014-07-10 10:52+0200\n" -"PO-Revision-Date: 2014-07-04 01:43+0200\n" -"Last-Translator: Américo Monteiro <a_monteiro@netcabo.pt>\n" -"Language-Team: Portuguese <l10n@debianpt.org>\n" +"PO-Revision-Date: 2014-07-27 14:14+0100\n" +"Last-Translator: Américo Monteiro <a_monteiro@gmx.com>\n" +"Language-Team: Portuguese <traduz@debianpt.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 1.4\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. type: Plain text @@ -70,7 +70,8 @@ msgstr "" "<!-- Boiler plate Bug reporting section -->\n" "<!ENTITY manbugs \"\n" " <refsect1><title>Bugs\n" -" página de bugs do APT. \n" +" página de bugs do APT<" +"/ulink>. \n" " Se deseja reportar um bug no APT, por favor veja\n" " /usr/share/doc/debian/bug-reporting.txt ou o\n" " comando &reportbug;.\n" @@ -85,7 +86,8 @@ msgid "" "\n" "Author\n" -" APT was written by the APT team apt@packages.debian.org.\n" +" APT was written by the APT team apt@packages.debian.org<" +"/email>.\n" " \n" " \n" "\">\n" @@ -93,7 +95,8 @@ msgstr "" "\n" "Autor\n" -" APT foi escrito pela equipa do APT apt@packages.debian.org.\n" +" APT foi escrito pela equipa do APT apt@packages.debian.org<" +"/email>.\n" " \n" " \n" "\">\n" @@ -149,10 +152,12 @@ msgid "" " \n" " \n" " \n" -" Configuration File; Specify a configuration file to use. \n" +" Configuration File; Specify a configuration file to use. " +"\n" " The program will read the default configuration file and then this \n" " configuration file. If configuration settings need to be set before the\n" -" default configuration files are parsed specify a file with the APT_CONFIG\n" +" default configuration files are parsed specify a file with the " +"APT_CONFIG\n" " environment variable. See &apt-conf; for syntax information.\n" " \n" " \n" @@ -163,8 +168,10 @@ msgstr "" " \n" " Ficheiro de Configuração; Especifica o ficheiro de \n" " configuração a usar. \n" -" O programa irá ler o ficheiro de configuração predefinido e depois este \n" -" ficheiro de configuração. Se as definições de configuração precisarem de \n" +" O programa irá ler o ficheiro de configuração predefinido e depois este " +"\n" +" ficheiro de configuração. Se as definições de configuração precisarem de " +"\n" " ser definidas antes, os ficheiros de configuração predefinidos são \n" " analisados especificando um ficheiro com a variável de ambiente \n" " APT_CONFIG. Veja &apt-conf; para informação de sintaxe.\n" @@ -191,9 +198,12 @@ msgstr "" " \n" " \n" " \n" -" Define uma Opção de Configuração; Isto irá definir uma opção\n" -" de configuração arbitrária. A sintaxe é .\n" -" e podem ser usadas várias\n" +" Define uma Opção de Configuração; Isto irá definir uma " +"opção\n" +" de configuração arbitrária. A sintaxe é " +".\n" +" e podem ser usadas " +"várias\n" " vezes para definir opções diferentes.\n" " \n" " \n" @@ -207,7 +217,8 @@ msgid "" "\n" "All command line options may be set using the configuration file, the\n" +" All command line options may be set using the configuration file, " +"the\n" " descriptions indicate the configuration option to set. For boolean\n" " options you can override the config file by using something like \n" " ,, \n" @@ -218,9 +229,11 @@ msgstr "" "\n" "Todas as opções de linha de comandos podem ser definidas usando o ficheiro de configuração, as\n" +" Todas as opções de linha de comandos podem ser definidas usando o " +"ficheiro de configuração, as\n" " descrições indicam a opção de configuração a definir. Para opções\n" -" booleanas você pode sobre por o ficheiro de configuração usando algo como \n" +" booleanas você pode sobre por o ficheiro de configuração usando algo como " +"\n" " ,, \n" " ou várias outras variantes.\n" " \n" @@ -233,13 +246,15 @@ msgid "" "/etc/apt/apt.conf\n" " APT configuration file.\n" -" Configuration Item: Dir::Etc::Main.\n" +" Configuration Item: Dir::Etc::Main." +"\n" " \n" msgstr "" "/etc/apt/apt.conf\n" " Ficheiro de configuração do APT.\n" -" Item de Configuração: Dir::Etc::Main.\n" +" Item de Configuração: Dir::Etc::Main.<" +"/listitem>\n" " \n" #. type: Plain text @@ -248,13 +263,15 @@ msgstr "" msgid "" " /etc/apt/apt.conf.d/\n" " APT configuration file fragments.\n" -" Configuration Item: Dir::Etc::Parts.\n" +" Configuration Item: Dir::Etc::Parts." +"\n" " \n" "\">\n" msgstr "" " /etc/apt/apt.conf.d/\n" " Ficheiros de configuração fragmentados do APT.\n" -" Item de Configuração: Dir::Etc::Parts.\n" +" Item de Configuração: Dir::Etc::Parts.<" +"/listitem>\n" " \n" "\">\n" @@ -265,28 +282,36 @@ msgid "" "&cachedir;/archives/\n" " Storage area for retrieved package files.\n" -" Configuration Item: Dir::Cache::Archives.\n" +" Configuration Item: Dir::Cache::Archives.<" +"/listitem>\n" " \n" msgstr "" "&cachedir;/archives/\n" -" Área de armazenamento para ficheiros de pacotes obtidos.\n" -" Item de Configuração: Dir::Cache::Archives.\n" +" Área de armazenamento para ficheiros de pacotes " +"obtidos.\n" +" Item de Configuração: Dir::Cache::Archives.<" +"/listitem>\n" " \n" #. type: Plain text #: apt.ent:109 #, no-wrap msgid "" -" &cachedir;/archives/partial/\n" +" &cachedir;/archives/partial/<" +"/term>\n" " Storage area for package files in transit.\n" -" Configuration Item: Dir::Cache::Archives (partial will be implicitly appended)\n" +" Configuration Item: Dir::Cache::Archives (" +"partial will be implicitly appended)\n" " \n" "\">\n" msgstr "" -" &cachedir;/archives/partial/\n" -" Área de armazenamento para ficheiros de pacotes em curso.\n" -" Item de Configuração: Dir::Cache::Archives será implicitamente acrescentado (partial)\n" +" &cachedir;/archives/partial/<" +"/term>\n" +" Área de armazenamento para ficheiros de pacotes em " +"curso.\n" +" Item de Configuração: Dir::Cache::Archives será " +"implicitamente acrescentado (partial)\n" " \n" "\">\n" @@ -301,7 +326,8 @@ msgid "" " i.e. a preference to get certain packages\n" " from a separate source\n" " or from a different version of a distribution.\n" -" Configuration Item: Dir::Etc::Preferences.\n" +" Configuration Item: Dir::Etc::Preferences.<" +"/listitem>\n" " \n" msgstr "" "Dir::Etc::Preferences.\n" +" Item de Configuração: Dir::Etc::Preferences.<" +"/listitem>\n" " \n" #. type: Plain text @@ -320,13 +347,15 @@ msgstr "" msgid "" " /etc/apt/preferences.d/\n" " File fragments for the version preferences.\n" -" Configuration Item: Dir::Etc::PreferencesParts.\n" +" Configuration Item: Dir::Etc::PreferencesParts." +"\n" " \n" "\">\n" msgstr "" " /etc/apt/preferences.d/\n" " Ficheiros fragmentados para as preferências de versão.\n" -" Item de Configuração: Dir::Etc::PreferencesParts.\n" +" Item de Configuração: Dir::Etc::PreferencesParts.<" +"/para>\n" " \n" "\">\n" @@ -337,28 +366,35 @@ msgid "" "/etc/apt/sources.list\n" " Locations to fetch packages from.\n" -" Configuration Item: Dir::Etc::SourceList.\n" +" Configuration Item: Dir::Etc::SourceList.<" +"/listitem>\n" " \n" msgstr "" "/etc/apt/sources.list\n" " Localizações de onde obter pacotes.\n" -" Item de Configuração: Dir::Etc::SourceList.\n" +" Item de Configuração: Dir::Etc::SourceList.<" +"/listitem>\n" " \n" #. type: Plain text #: apt.ent:137 #, no-wrap msgid "" -" /etc/apt/sources.list.d/\n" +" /etc/apt/sources.list.d/" +"\n" " File fragments for locations to fetch packages from.\n" -" Configuration Item: Dir::Etc::SourceParts.\n" +" Configuration Item: Dir::Etc::SourceParts.<" +"/listitem>\n" " \n" "\">\n" msgstr "" -" /etc/apt/sources.list.d/\n" -" Ficheiros fragmentados para localizações de onde obter pacotes.\n" -" Item de Configuração: Dir::Etc::SourceParts.\n" +" /etc/apt/sources.list.d/" +"\n" +" Ficheiros fragmentados para localizações de onde obter " +"pacotes.\n" +" Item de Configuração: Dir::Etc::SourceParts.<" +"/listitem>\n" " \n" "\">\n" @@ -368,31 +404,40 @@ msgstr "" msgid "" "&statedir;/lists/\n" -" Storage area for state information for each package resource specified in\n" +" Storage area for state information for each package " +"resource specified in\n" " &sources-list;\n" -" Configuration Item: Dir::State::Lists.\n" +" Configuration Item: Dir::State::Lists.<" +"/listitem>\n" " \n" msgstr "" "&statedir;/lists/\n" -" Área de armazenamento para informação de estado para cada recurso de pacote especificado em\n" +" Área de armazenamento para informação de estado para " +"cada recurso de pacote especificado em\n" " &sources-list;\n" -" Tem de Configuração: Dir::State::Lists.\n" +" Tem de Configuração: Dir::State::Lists.<" +"/listitem>\n" " \n" #. type: Plain text #: apt.ent:150 #, no-wrap msgid "" -" &statedir;/lists/partial/\n" +" &statedir;/lists/partial/" +"\n" " Storage area for state information in transit.\n" -" Configuration Item: Dir::State::Lists (partial will be implicitly appended)\n" +" Configuration Item: Dir::State::Lists (" +"partial will be implicitly appended)\n" " \n" "\">\n" msgstr "" -" &statedir;/lists/partial/\n" -" Área de armazenamento para informação de estado em trânsito.\n" -" Item de Configuração: Dir::State::Lists será implicitamente acrescentado (partial)\n" +" &statedir;/lists/partial/" +"\n" +" Área de armazenamento para informação de estado em " +"trânsito.\n" +" Item de Configuração: Dir::State::Lists será " +"implicitamente acrescentado (partial)\n" " \n" "\">\n" @@ -402,14 +447,18 @@ msgstr "" msgid "" "/etc/apt/trusted.gpg\n" -" Keyring of local trusted keys, new keys will be added here.\n" -" Configuration Item: Dir::Etc::Trusted.\n" +" Keyring of local trusted keys, new keys will be added " +"here.\n" +" Configuration Item: Dir::Etc::Trusted.<" +"/listitem>\n" " \n" msgstr "" "/etc/apt/trusted.gpg\n" -" Chaveiro de chaves de confiança locais, as novas chaves serão adicionadas aqui.\n" -" Item de Configuração: Dir::Etc::Trusted.\n" +" Chaveiro de chaves de confiança locais, as novas chaves " +"serão adicionadas aqui.\n" +" Item de Configuração: Dir::Etc::Trusted.<" +"/listitem>\n" " \n" #. type: Plain text @@ -417,16 +466,20 @@ msgstr "" #, no-wrap msgid "" " /etc/apt/trusted.gpg.d/\n" -" File fragments for the trusted keys, additional keyrings can\n" +" File fragments for the trusted keys, additional keyrings " +"can\n" " be stored here (by other packages or the administrator).\n" -" Configuration Item Dir::Etc::TrustedParts.\n" +" Configuration Item Dir::Etc::TrustedParts.<" +"/listitem>\n" " \n" "\">\n" msgstr "" " /etc/apt/trusted.gpg.d/\n" -" Fragmentos de ficheiro para as chaves de confiança, chaveiros adicionais podem\n" +" Fragmentos de ficheiro para as chaves de confiança, " +"chaveiros adicionais podem\n" " ser armazenados aqui (por outros pacotes ou pelo administrador).\n" -" Item de Configuração Dir::Etc::TrustedParts.\n" +" Item de Configuração Dir::Etc::TrustedParts.<" +"/listitem>\n" " \n" "\">\n" @@ -435,7 +488,8 @@ msgstr "" #, no-wrap msgid "" "/var/lib/apt/extended_states\n" +" /var/lib/apt/extended_states<" +"/term>\n" " Status list of auto-installed packages.\n" " Configuration Item: Dir::State::extended_states.\n" " \n" @@ -443,7 +497,8 @@ msgid "" "\">\n" msgstr "" "/var/lib/apt/extended_states\n" +" /var/lib/apt/extended_states<" +"/term>\n" " Lista de estado de pacotes auto-instalados.\n" " Item de Configuração: Dir::State::extended_states.\n" " \n" @@ -454,40 +509,55 @@ msgstr "" #: apt.ent:175 #, no-wrap msgid "" -"\n" +"\n" "\n" msgstr "" -"\n" +"\n" "\n" #. type: Plain text #: apt.ent:184 #, no-wrap msgid "" -"\n" "john@doe.org in 2009,\n" -" 2010 and Daniela Acme daniela@acme.us in 2010 together with the\n" -" Debian Dummy l10n Team debian-l10n-dummy@lists.debian.org.\n" +" The english translation was done by John Doe john@doe.org " +"in 2009,\n" +" 2010 and Daniela Acme daniela@acme.us in 2010 together " +"with the\n" +" Debian Dummy l10n Team debian-l10n-dummy@lists.debian.org" +".\n" "\">\n" msgstr "" "a_monteiro@netcabo.pt de 2009 a 2012.\n" -" A tradução foi revista pela equipa de traduções portuguesas da Debian traduz@debianpt.org.\n" +" A tradução Portuguesa foi feita por Américo Monteiro " +"a_monteiro@netcabo.pt de 2009 a 2012.\n" +" A tradução foi revista pela equipa de traduções portuguesas da Debian <" +"email>traduz@debianpt.org.\n" "\">\n" #. type: Plain text #: apt.ent:195 #, no-wrap msgid "" -"\n" "\n" msgstr "" -"\n" " #: apt.8.xml:32 msgid "command-line interface" -msgstr "" +msgstr "interface de linha de comandos" #. type: Content of: #: apt.8.xml:37 apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 @@ -697,6 +770,10 @@ msgid "" "management of the system. See also &apt-get; and &apt-cache; for more low-" "level command options." msgstr "" +"<command>apt</command> (Advanced Package Tool) é uma ferramenta de linha " +"de comandos para manuseamento de pacotes. Disponibiliza uma interface de " +"linha de comandos para a gestão de pacotes do sistema. Veja também " +"&apt-get; e &apt-cache; para mais opções de baixo nível dos comandos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.8.xml:47 @@ -706,6 +783,10 @@ msgid "" "<option>--installed</option>, <option>--upgradable</option>, <option>--all-" "versions</option> are supported." msgstr "" +"<literal>list</literal> é usado para mostrar uma lista de pacotes. Suporta " +"padrões da shell para corresponder aos nomes de pacotes e são suportadas " +"as seguintes opções <option>--installed</option>, " +"<option>--upgradable</option>, <option>--all-versions</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.8.xml:58 @@ -713,10 +794,11 @@ msgid "" "<literal>search</literal> searches for the given term(s) and display " "matching packages." msgstr "" +"<literal>search</literal> procura por termo(s) determinado(s) e mostra " +"os pacotes correspondentes." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.8.xml:64 -#, fuzzy #| msgid "" #| "<literal>rdepends</literal> shows a listing of each reverse dependency a " #| "package has." @@ -724,8 +806,8 @@ msgid "" "<literal>show</literal> shows the package information for the given " "package(s)." msgstr "" -"<literal>rdepends</literal> mostra uma listagem de cada dependência reversa " -"que um pacote tem." +"<literal>show</literal> mostra a informação do pacote para o(s) pacote(s) " +"determinado(s)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.8.xml:71 @@ -733,6 +815,8 @@ msgid "" "<literal>install</literal> is followed by one or more package names desired " "for installation or upgrading." msgstr "" +"<literal>install</literal> é seguido por um ou mais nomes de pacotes que " +"se deseja instalar ou actualizar." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.8.xml:75 apt-get.8.xml:118 @@ -772,10 +856,11 @@ msgid "" "<literal>edit-sources</literal> lets you edit your sources.list file and " "provides basic sanity checks." msgstr "" +"<literal>edit-sources</literal> permite-lhe editar o seu ficheiro " +"sources.list e disponibiliza verificações de sanidade básicas." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.8.xml:99 -#, fuzzy #| msgid "" #| "<literal>showhold</literal> is used to print a list of packages on hold " #| "in the same way as for the other show commands." @@ -783,8 +868,8 @@ msgid "" "<literal>update</literal> is used to resynchronize the package index files " "from their sources." msgstr "" -"<literal>showhold</literal> é usado para escrever uma lista dos pacotes em " -"retenção do mesmo modo que os outros comandos show." +"<literal>update</literal> é usado para re-sincronizar o índice dos pacotes " +"a partir das suas fontes." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.8.xml:105 @@ -794,6 +879,10 @@ msgid "" "<filename>/etc/apt/sources.list</filename>. New package will be installed, " "but existing package will never removed." msgstr "" +"<literal>upgrade</literal> é usado para instalar as versões mais recentes " +"de todos os pacotes actualmente instalados no sistema a partir das fontes " +"enumeradas em <filename>/etc/apt/sources.list</filename>. Serão instalados " +"novos pacotes, mas pacotes existentes nunca serão removidos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.8.xml:114 @@ -802,6 +891,9 @@ msgid "" "also remove installed packages if that is required in order to resolve a " "package conflict." msgstr "" +"<literal>full-upgrade</literal> executa a função de upgrade mas pode " +"também remover pacotes instalados se tal for necessário de modo a resolver " +"um conflito de pacotes." #. type: Content of: <refentry><refsect1><title> #: apt.8.xml:124 apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 @@ -813,7 +905,7 @@ msgstr "opções" #. type: Content of: <refentry><refsect1><title> #: apt.8.xml:134 msgid "Script usage" -msgstr "" +msgstr "Utilização de script" #. type: Content of: <refentry><refsect1><para> #: apt.8.xml:136 @@ -824,11 +916,17 @@ msgid "" "&apt-cache; and &apt-get; via APT options. Please prefer using these " "commands in your scripts." msgstr "" +"A linha de comandos do &apt; foi desenhada como ferramenta de utilizador " +"final e pode variar os textos mostrados entre versões. Apesar de tentar " +"não perder a compatibilidade com versões anteriores, não há garantia disso. " +"Todas as funcionalidades do &apt; estão disponíveis em &apt-cache; e " +"&apt-get; via opções do APT. Por favor dê preferência a usar estes comandos " +"nos seus scripts." #. type: Content of: <refentry><refsect1><title> #: apt.8.xml:144 msgid "Differences to &apt-get;" -msgstr "" +msgstr "Diferenças para o &apt-get;" #. type: Content of: <refentry><refsect1><para> #: apt.8.xml:145 @@ -837,20 +935,21 @@ msgid "" "does not need to be backward compatible like &apt-get;. Therefore some " "options are different:" msgstr "" +"O comando <command>apt</command> destina-se a ser agradável para os " +"utilizadores finais e não precisa de ser compatível com as versões " +"anteriores como o &apt-get;. Por isso algumas opções são diferentes." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: apt.8.xml:151 -#, fuzzy #| msgid "the <literal>Package:</literal> line" msgid "The option <literal>DPkg::Progress-Fancy</literal> is enabled." -msgstr "a linha <literal>Package:</literal>" +msgstr "A opção <literal>DPkg::Progress-Fancy</literal> está activada." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: apt.8.xml:155 -#, fuzzy #| msgid "the <literal>Component:</literal> line" msgid "The option <literal>APT::Color</literal> is enabled." -msgstr "a linha <literal>Component:</literal>" +msgstr "A opção <literal>APT::Color</literal> está activada." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: apt.8.xml:159 @@ -858,15 +957,18 @@ msgid "" "A new <literal>list</literal> command is available similar to <literal>dpkg " "--list</literal>." msgstr "" +"Está disponível um novo comando <literal>list</literal> de modo " +"semelhante a <literal>dpkg --list</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: apt.8.xml:164 -#, fuzzy #| msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" msgid "" "The option <literal>upgrade</literal> has <literal>--with-new-pkgs</literal> " "enabled by default." -msgstr "a linha <literal>Archive:</literal> ou <literal>Suite:</literal>" +msgstr "" +"A opção <literal>upgrade</literal> tem <literal>--with-new-pkgs</literal> " +"activado por predefinição." #. type: Content of: <refentry><refsect1><title> #: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 @@ -879,7 +981,6 @@ msgstr "Veja também" #. type: Content of: <refentry><refsect1><para> #: apt.8.xml:175 -#, fuzzy #| msgid "" #| "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " #| "&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-" @@ -888,9 +989,8 @@ msgid "" "&apt-get;, &apt-cache;, &sources-list;, &apt-conf;, &apt-config;, The APT " "User's guide in &guidesdir;, &apt-preferences;, the APT Howto." msgstr "" -"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " -"&apt-config;, &apt-secure;, O guia de utilizadores do The APT em " -"&guidesdir;, &apt-preferences;, o Howto do APT." +"&apt-get;, &apt-cache;, &sources-list;, &apt-conf;, &apt-config;, O guia de " +"utilizadores do The APT em &guidesdir;, &apt-preferences;, o Howto do APT." #. type: Content of: <refentry><refsect1><title> #: apt.8.xml:180 apt-get.8.xml:564 apt-cache.8.xml:357 apt-mark.8.xml:137 @@ -901,7 +1001,6 @@ msgstr "Diagnóstico" #. type: Content of: <refentry><refsect1><para> #: apt.8.xml:181 -#, fuzzy #| msgid "" #| "<command>apt-get</command> returns zero on normal operation, decimal 100 " #| "on error." @@ -909,7 +1008,7 @@ msgid "" "<command>apt</command> returns zero on normal operation, decimal 100 on " "error." msgstr "" -"<command>apt-get</command> devolve zero na operação normal, 100 decimal em " +"<command>apt</command> devolve zero na operação normal, 100 decimal em " "erro." #. type: Content of: <refentry><refnamediv><refpurpose> @@ -921,7 +1020,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:41 -#, fuzzy #| msgid "" #| "<command>apt-get</command> is the command-line tool for handling " #| "packages, and may be considered the user's \"back-end\" to other tools " @@ -936,7 +1034,7 @@ msgstr "" "<command>apt-get</command> é a ferramenta de linha de comandos para lidar " "com pacotes, e pode ser considerada o \"back-end\" dos utilizadores para " "outras ferramentas que usam a biblioteca APT. Existem várias interfaces " -"\"front-end\" como o &dselect;, &aptitude;, &synaptic; e &wajig;." +"\"front-end\" como o &aptitude;, &synaptic; e &wajig;." #. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:46 apt-cache.8.xml:46 apt-cdrom.8.xml:53 apt-config.8.xml:46 @@ -1247,7 +1345,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:217 -#, fuzzy #| msgid "" #| "<literal>clean</literal> clears out the local repository of retrieved " #| "package files. It removes everything but the lock file from " @@ -1264,11 +1361,7 @@ msgid "" msgstr "" "<literal>clean</literal> limpa o repositório local dos ficheiros de pacotes " "obtidos. Remove tudo excepto o ficheiro lock de <filename>&cachedir;/" -"archives/</filename> e <filename>&cachedir;/archives/partial/</filename>. " -"Quando o APT é usado com um método &dselect;, <literal>clean</literal> é " -"executado automaticamente. Aqueles que não usam o dselect irão provavelmente " -"querer executar <literal>apt-get clean</literal> de tempos a tempos para " -"libertar espaço do disco." +"archives/</filename> e <filename>&cachedir;/archives/partial/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:224 @@ -1353,7 +1446,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:277 -#, fuzzy #| msgid "" #| "Fix; attempt to correct a system with broken dependencies in place. This " #| "option, when used with install/remove, can omit any packages to permit " @@ -1387,9 +1479,9 @@ msgstr "" "permite que existam num sistema dependências de pacotes quebradas. É " "possível que uma estrutura de dependências de um sistema esteja tão " "corrompida ao ponto de requerer intervenção manual (o que normalmente " -"significa usar o &dselect; ou <command>dpkg --remove</command> para eliminar " -"alguns dos pacotes ofensivos). O uso desta opção juntamente com <option>-m</" -"option> pode produzir um erro em algumas situações. Item de Configuração: " +"significa usar o <command>dpkg --remove</command> para eliminar alguns dos " +"pacotes ofensivos). O uso desta opção juntamente com <option>-m</option> " +"pode produzir um erro em algumas situações. Item de Configuração: " "<literal>APT::Get::Fix-Broken</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> @@ -1533,7 +1625,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:370 -#, fuzzy #| msgid "" #| "This option controls the architecture packages are built for by " #| "<command>apt-get source --compile</command> and how cross-" @@ -1558,7 +1649,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:380 -#, fuzzy #| msgid "" #| "This option controls the architecture packages are built for by " #| "<command>apt-get source --compile</command> and how cross-" @@ -1573,12 +1663,12 @@ msgid "" "than one build profile can be activated at a time by concatenating them with " "a comma. Configuration Item: <literal>APT::Build-Profiles</literal>." msgstr "" -"Esta opção controla a arquitectura para que os pacotes são compilados pelo " -"<command>apt-get source --compile</command> e como as dependências cruzadas " -"de compilação são satisfeitas. Por predefinição não está activa o que " -"significa que a arquitectura anfitriã é a mesma que a arquitectura de " -"compilação (a qual é definida por <literal>APT::Architecture</literal>). " -"item de Configuração: <literal>APT::Get::Host-Architecture</literal>" +"Esta opção controla perfis de compilação activados pelos quais um pacote " +"fonte é compilado por <command>apt-get source --compile</command> e como " +"as dependências de compilação são satisfeitas. Por predefinição, nenhum " +"perfil de compilação está activo. Podem ser activados ao mesmo tempo mais " +"do que um perfil de compilação ao concatená-los com uma vírgula. Item de " +"configuração: <literal>APT::Build-Profiles</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:391 @@ -1613,6 +1703,13 @@ msgid "" "will never remove packages, only allow adding new ones. Configuration Item: " "<literal>APT::Get::Upgrade-Allow-New</literal>." msgstr "" +"Permite a instalação de novos pacotes quando usado em conjunto com " +"<literal>upgrade</literal>. Isto é útil se a actualização de um pacote " +"instalado requerer que sejam instaladas novas dependências. Em vez de " +"reter o pacote, o <literal>upgrade</literal>irá actualizar o pacote e " +"instalar as novas dependências. Note que <literal>upgrade</literal> com " +"esta opção nunca irá remover pacotes, apenas permitir adicionar novos. " +"Item de configuração: <literal>APT::Get::Upgrade-Allow-New</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:415 @@ -1834,6 +1931,11 @@ msgid "" "Item: <literal>Dpkg::Progress</literal> and <literal>Dpkg::Progress-Fancy</" "literal>." msgstr "" +"Mostra informação de progresso compreensível para o utilizador na janela " +"de terminal quando os pacotes são instalados, actualizados ou removidos. " +"Para uma versão \"analisável por máquina\" destes dados veja o " +" README.progress-reporting no directório doc do apt. Item de Configuração: " +" <literal>Dpkg::Progress</literal> e <literal>Dpkg::Progress-Fancy</literal>." #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 @@ -1843,7 +1945,6 @@ msgstr "Ficheiros" #. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:559 -#, fuzzy #| msgid "" #| "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " #| "&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-" @@ -1853,9 +1954,9 @@ msgid "" "&apt-secure;, The APT User's guide in &guidesdir;, &apt-preferences;, the " "APT Howto." msgstr "" -"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " -"&apt-config;, &apt-secure;, O guia de utilizadores do The APT em " -"&guidesdir;, &apt-preferences;, o Howto do APT." +"&apt-cache;, &apt-cdrom;, &dpkg;, &sources-list;, &apt-conf;, &apt-config;, " +"&apt-secure;, O guia de utilizadores do The APT em &guidesdir;, " +"&apt-preferences;, o Howto do APT." #. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:565 @@ -3145,7 +3246,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:87 -#, fuzzy #| msgid "" #| "Mount point; specify the location to mount the CD-ROM. This mount point " #| "must be listed in <filename>/etc/fstab</filename> and properly " @@ -3155,10 +3255,9 @@ msgid "" "<option>--cdrom</option> option. Configuration Item: <literal>Acquire::" "cdrom::AutoDetect</literal>." msgstr "" -"Ponto de Montagem; especifica a localização para montar o cdrom. Este ponto " -"de montagem deve estar listado em <filename>/etc/fstab</filename> e " -"configurado apropriadamente. Item de configuração: <literal>Acquire::cdrom::" -"mount</literal>." +"Não tente a auto-detecção do caminho do CD-ROM. Normalmente combinada " +"com a opção <option>--cdrom</option>. Item de Configuração: " +"<literal>Acquire::cdrom::AutoDetect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:95 @@ -3706,6 +3805,11 @@ msgid "" "is empty. The <envar>DEB_BUILD_PROFILES</envar> as used by &dpkg-" "buildpackage; overrides the list notation." msgstr "" +"Lista todos os perfis de compilação activos para resolução de dependências " +"de compilação, sem o prefixo \"<literal>profile.</literal>\" no espaço do " +"nome. Por predefinição esta lista está vazia. " +"O <envar>DEB_BUILD_PROFILES</envar> usado pelo &dpkg-buildpackage; " +"sobrepõe a notação da lista." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:190 @@ -4127,7 +4231,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:400 -#, fuzzy #| msgid "" #| "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" #| "literal> which accepts integer values in kilobytes. The default value is " @@ -4142,10 +4245,10 @@ msgid "" "multiple servers at the same time." msgstr "" "A largura de banda usada pode ser limitada com <literal>Acquire::http::Dl-" -"Limit</literal> que aceita valores inteiros em kilobytes. O valor " -"predefinido é 0 que desactiva o limite e tenta usar toda a largura de banda " -"disponível (note que esta opção implicitamente desactiva a descarga a partir " -"de múltiplos servidores ao mesmo tempo.)" +"Limit</literal> que aceita valores inteiros em kilobytes por segundo. O " +"valor predefinido é 0 que desactiva o limite e tenta usar toda a largura de " +"banda disponível. Note que esta opção implicitamente desactiva a descarga " +"a partir de múltiplos servidores ao mesmo tempo." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:407 @@ -4172,6 +4275,15 @@ msgid "" "takes precedence over the legacy option name <literal>ProxyAutoDetect</" "literal>." msgstr "" +"<literal>Acquire::http::Proxy-Auto-Detect</literal> pode ser usado para " +"especificar um comando externo para descobrir o proxy http a usar. O apt " +"espera que o comando forneça o resultado do proxy no stdout ao estilo " +"<literal>http://proxy:port/</literal>. Isto irá sobrepor o <literal>Acquire::" +"http::Proxy</literal> genérico mas não qualquer configuração especifica " +"da máquina proxy definida via <literal>Acquire::http::Proxy::$HOST</" +"literal>. Veja o pacote &squid-deb-proxy-client; para um exemplo de " +"implementação que usa avahi. Esta opção toma precedência sobre " +"o nome de opção antigo <literal>ProxyAutoDetect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:429 @@ -4347,8 +4459,12 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> #: apt.conf.5.xml:523 #, no-wrap -msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" -msgstr "Acquire::CompressionTypes::<replaceable>Extensão de Ficheiro</replaceable> \"<replaceable>Nome de método</replaceable>\";" +msgid "" +"Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<" +"replaceable>Methodname</replaceable>\";" +msgstr "" +"Acquire::CompressionTypes::<replaceable>Extensão de Ficheiro</replaceable> " +"\"<replaceable>Nome de método</replaceable>\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:518 @@ -4493,8 +4609,10 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting> #: apt.conf.5.xml:575 #, no-wrap -msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" -msgstr "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" +msgid "" +"Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" +msgstr "" +"Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:563 @@ -4552,12 +4670,12 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:585 msgid "When downloading, force to use only the IPv4 protocol." -msgstr "" +msgstr "Ao descarregar, força o uso exclusivo do protocolo IPv4." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:591 msgid "When downloading, force to use only the IPv6 protocol." -msgstr "" +msgstr "Ao descarregar, força o uso exclusivo do protocolo IPv6." #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:598 @@ -4585,7 +4703,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:607 -#, fuzzy #| msgid "" #| "<literal>Dir::Cache</literal> contains locations pertaining to local " #| "cache information, such as the two package caches <literal>srcpkgcache</" @@ -4611,11 +4728,12 @@ msgstr "" "da cache local, como as caches de dois pacotes <literal>srcpkgcache</" "literal> e <literal>pkgcache</literal> assim como a localização onde colocar " "arquivos descarregados, <literal>Dir::Cache::archives</literal>. A geração " -"de caches pode ser desligada ao definir os seus nomes para uma string vazia. " -"Isto irá abrandar o arranque mas poupar espaço em disco. Provavelmente é " -"preferível desligar o pkgcache em vez do srcpkgcache. Tal como <literal>Dir::" -"State</literal> o directório predefinido é contido em <literal>Dir::Cache</" -"literal>" +"de caches pode ser desligada ao definir <literal>pkgcache</literal> ou " +"<literal>srcpkgcache</literal> para <literal>\"\"</literal>. Isto irá " +"abrandar " +"o arranque mas poupar espaço em disco. Provavelmente é preferível desligar " +"o pkgcache em vez do srcpkgcache. Tal como <literal>Dir::State</literal> o " +"directório predefinido é contido em <literal>Dir::Cache</literal>" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:617 @@ -4805,7 +4923,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:713 -#, fuzzy #| msgid "" #| "This is a list of shell commands to run before invoking &dpkg;. Like " #| "<literal>options</literal> this must be specified in list notation. The " @@ -4825,11 +4942,11 @@ msgstr "" "notação listada. Os comandos são invocados em ordem usando <filename>/bin/" "sh</filename>, caso algum deles falhe, o APT irá abortar. O APT irá passar " "para os comandos os nomes de ficheiros de todos os ficheiros .deb que vai " -"instalar, um por cada linha na entrada standard." +"instalar, um por cada linha no descritor de ficheiro requisitado, usando " +"por predefinição a entrada standard." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:720 -#, fuzzy #| msgid "" #| "Version 2 of this protocol dumps more information, including the protocol " #| "version, the APT configuration space and the packages, files and versions " @@ -4844,9 +4961,8 @@ msgid "" msgstr "" "A versão 2 deste protocolo despeja mais informação, incluindo a versão de " "protocolo, o espaço de configuração do APT e os pacotes, ficheiros e versões " -"que foram alteradas. A versão 2 é activada ao definir <literal>DPkg::Tools::" -"options::cmd::Version</literal> a 2. <literal>cmd</literal> é um comando " -"dado ao <literal>Pre-Install-Pkgs</literal>." +"que foram alteradas. A versão 3 adiciona a arquitectura e a bandeira " +"<literal>MultiArch</literal> a cada versão a ser despejada." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:725 @@ -4858,6 +4974,11 @@ msgid "" "the requested version it will send the information in the highest version it " "has support for instead." msgstr "" +"A versão do protocolo a ser usado para o comando <literal><replaceable>cmd</" +"replaceable></literal> pode ser escolhida ao definir <literal>DPkg::Tools::" +"options::<replaceable>cmd</replaceable>::Version</literal> correctamente, " +"sendo a predefinição a versão 1. Se o APT não suportar a versão requisitada " +"irá então enviar a informação na versão mais alta que suporta." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:732 @@ -4869,6 +4990,13 @@ msgid "" "looking for the environment variable <envar>APT_HOOK_INFO_FD</envar> which " "contains the number of the used file descriptor as a confirmation." msgstr "" +"O descritor de ficheiro a ser usado para enviar a informação pode ser " +"requisitado com <literal>DPkg::Tools::options::<replaceable>cmd</" +"replaceable>::InfoFD</literal> o qual usa <literal>0</literal> por " +"predefinição para a saída standard e está disponível desde a versão " +"0.9.11. como confirmação pode ser detectado o suporte para a opção ao " +"observar a variável de ambiente <envar>APT_HOOK_INFO_FD</envar> que " +"contém o número do descritor de ficheiro usado." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:742 @@ -5158,7 +5286,7 @@ msgstr "" #. TODO: provide a #. motivating example, except I haven't a clue why you'd want -#. to do this. +#. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: apt.conf.5.xml:878 msgid "" @@ -5428,6 +5556,9 @@ msgid "" "g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " "<literal>APT::Update::{Pre,Post}-Invoke</literal>." msgstr "" +"Mostra os comandos externos que são chamados por hooks do apt. Isto " +"inclui por exemplo as opções de configuração <literal>DPkg::{Pre,Post}" +"-Invoke</literal> ou <literal>APT::Update::{Pre,Post}-Invoke</literal>." #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:1216 apt_preferences.5.xml:547 sources.list.5.xml:239 @@ -5444,7 +5575,7 @@ msgstr "" "&configureindex; é um ficheiro de configuração que mostra valores exemplo " "para todas as opções possíveis." -#. ? reading apt.conf +#. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:1229 msgid "&apt-cache;, &apt-config;, &apt-preferences;." @@ -5559,8 +5690,12 @@ msgstr "Atribuições de Prioridade Predefinidas do APT" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:96 #, no-wrap -msgid "<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n" -msgstr "<command>apt-get install -t testing <replaceable>algum-pacote</replaceable></command>\n" +msgid "" +"<command>apt-get install -t testing <replaceable>some-package</replaceable><" +"/command>\n" +msgstr "" +"<command>apt-get install -t testing <replaceable>algum-pacote</replaceable><" +"/command>\n" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:99 @@ -6712,8 +6847,10 @@ msgstr "Acompanhando a evolução de um nome de código de lançamento" #: apt_preferences.5.xml:656 #, no-wrap msgid "" -"Explanation: Uninstall or do not install any Debian-originated package versions\n" -"Explanation: other than those in the distribution codenamed with &testing-codename; or sid\n" +"Explanation: Uninstall or do not install any Debian-originated package " +"versions\n" +"Explanation: other than those in the distribution codenamed with " +"&testing-codename; or sid\n" "Package: *\n" "Pin: release n=&testing-codename;\n" "Pin-Priority: 900\n" @@ -6727,8 +6864,10 @@ msgid "" "Pin: release o=Debian\n" "Pin-Priority: -10\n" msgstr "" -"Explicação: Desinstala ou não instala nenhumas versões de pacotes originais Debian\n" -"Explicação: para além daquelas da distribuição com nome de código &testing-codename; ou sid\n" +"Explicação: Desinstala ou não instala nenhumas versões de pacotes originais " +"Debian\n" +"Explicação: para além daquelas da distribuição com nome de código " +"&testing-codename; ou sid\n" "Package: *\n" "Pin: release n=&testing-codename;\n" "Pin-Priority: 900\n" @@ -6916,10 +7055,10 @@ msgstr "" #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:82 -#, fuzzy, no-wrap +#, no-wrap #| msgid "deb [ options ] uri distribution [component1] [component2] [...]" msgid "deb [ options ] uri suite [component1] [component2] [...]" -msgstr "deb [ opções ] uri distribuição [componente1] [componente2] [...]" +msgstr "deb [ opções ] uri suite [componente1] [componente2] [...]" #. type: Content of: <refentry><refsect1><para><literallayout> #: sources.list.5.xml:86 @@ -6943,6 +7082,23 @@ msgid "" " [option1]: [option1-value]\n" " " msgstr "" +" Tipos: deb deb-src\n" +" URIs: http://exemplo.com\n" +" Suites: stable testing\n" +" Secções: component1 component2\n" +" Descrição: curta\n" +" longa longa longa\n" +" [opção1]: [opção1-valor]\n" +"\n" +" Tipos: deb\n" +" URIs: http://outro.exemlo.com\n" +" Suites: experimental\n" +" Secções: component1 component2\n" +" Activo: não\n" +" Descrição: curta\n" +" longa longa longa\n" +" [opção1]: [opção1-valor]\n" +" " #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:84 @@ -6950,10 +7106,11 @@ msgid "" "Alternatively a rfc822 style format is also supported: <placeholder type=" "\"literallayout\" id=\"0\"/>" msgstr "" +"Em alternativa, é também suportado um formato estilo rfc822: <placeholder " +"type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:105 -#, fuzzy #| msgid "" #| "The URI for the <literal>deb</literal> type must specify the base of the " #| "Debian distribution, from which APT will find the information it needs. " @@ -6975,17 +7132,15 @@ msgid "" msgstr "" "O URI para o tipo <literal>deb</literal> tem de especificar a base da " "distribuição Debian, a partir do qual o APT irá encontrar a informação que " -"precisa. <literal>distribution</literal> pode especificar um caminho exacto, " -"que no caso os componente têm de ser omitidos e <literal>distribution</" -"literal> deve terminar com uma barra (<literal>/</literal>). Isto é útil " -"para o caso de apenas ser de interesse uma sub-secção particular do arquivo " -"denotado pelo URI. Se <literal>distribution</literal> não especificar um " -"caminho exacto, pelo menos um <literal>component</literal> tem de estar " -"presente." +"precisa. <literal>suite</literal> pode especificar um caminho exacto, " +"que no caso os componente têm de ser omitidos e <literal>suite</literal> " +"deve terminar com uma barra (<literal>/</literal>). Isto é útil para o caso " +"de apenas ser de interesse uma sub-secção particular do arquivo denotado " +"pelo URI. Se <literal>suite</literal> não especificar um caminho exacto, " +"pelo menos um <literal>component</literal> tem de estar presente." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:114 -#, fuzzy #| msgid "" #| "<literal>distribution</literal> may also contain a variable, <literal>" #| "$(ARCH)</literal> which expands to the Debian architecture (such as " @@ -7003,7 +7158,7 @@ msgid "" "<literal>APT</literal> will automatically generate a URI with the current " "architecture otherwise." msgstr "" -"<literal>distribution</literal> também pode conter uma variável. <literal>" +"<literal>suite</literal> também pode conter uma variável. <literal>" "$(ARCH)</literal> a qual se expande à arquitectura Debian (tal como " "<literal>amd64</literal> ou <literal>armel</literal>) usada no sistema. Isto " "permite que seja usados ficheiros <filename>sources.list</filename> " @@ -7013,7 +7168,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:122 -#, fuzzy #| msgid "" #| "Since only one distribution can be specified per line it may be necessary " #| "to have multiple lines for the same URI, if a subset of all available " @@ -7039,17 +7193,18 @@ msgid "" "users. APT also parallelizes connections to different hosts to more " "effectively deal with sites with low bandwidth." msgstr "" -"Como apenas pode ser especificada por linha uma distribuição, pode ser " -"necessário ter várias linhas para o mesmo URI, se só for desejado um sub-" -"conjunto de todas as distribuições e componentes dessa localização. O APT " -"irá ordenar a lista de URI após ter gerado internamente um conjunto " -"completo, e irá desabar as várias referências à mesma máquina na Internet, " -"por exemplo, numa única ligação, para que não estabeleça uma ligação FTP " -"ineficiente, a feche, faça outra coisa, e depois volte a estabelecer ligação " -"à mesma máquina. Esta funcionalidade é útil para aceder a sites FTP ocupados " -"que limitam o número de utilizadores anónimos em simultâneo. O APT também " -"paraleliza ligações a máquinas diferentes para lidar mais eficientemente com " -"sites com baixa largura de banda." +"No estilo tradicional, o formato do sources.list, como apenas pode ser " +"especificada por linha uma distribuição, pode ser necessário ter várias " +"linhas para o mesmo URI, se só for desejado um sub-conjunto de todas as " +"distribuições e componentes dessa localização. O APT irá ordenar a lista de " +"URI após ter gerado internamente um conjunto completo, e irá desabar as " +"várias referências à mesma máquina na Internet, por exemplo, numa única " +"ligação, para que não estabeleça uma ligação FTP ineficiente, a feche, faça " +"outra coisa, e depois volte a estabelecer ligação à mesma máquina. Esta " +"funcionalidade é útil para aceder a sites FTP ocupados que limitam o número " +"de utilizadores anónimos em simultâneo. O APT também paraleliza ligações " +"a máquinas diferentes para lidar mais eficientemente com sites com largura " +"de banda baixa." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:136 @@ -7085,7 +7240,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: sources.list.5.xml:146 -#, fuzzy #| msgid "" #| "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</" #| "replaceable>,…</literal> can be used to specify for which architectures " @@ -7098,11 +7252,10 @@ msgid "" "<replaceable>arch2</replaceable>,…</literal> which can be used to add/remove " "architectures from the set which will be downloaded." msgstr "" -"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</" -"replaceable>,…</literal> pode ser usado para especificar para quais " -"arquitecturas deve ser descarregada a informação. Se esta opção não estiver " -"definida, serão descarregadas todas as arquitecturas definidas pela opção " -"<literal>APT::Architectures</literal>." +"<literal>arch+=<replaceable>arch1</replaceable>,<replaceable>arch2</" +"replaceable>,…</literal> e <literal>arch-=<replaceable>arch1</replaceable>," +"<replaceable>arch2</replaceable>,…</literal> que podem ser usadas para " +"adicionar/remover arquitecturas do conjunto que será descarregado." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: sources.list.5.xml:149 @@ -7145,11 +7298,13 @@ msgstr "Alguns exemplos:" #, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n" -"deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n" +"deb http://security.debian.org/ &stable-codename;/updates main contrib " +"non-free\n" " " msgstr "" "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n" -"deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n" +"deb http://security.debian.org/ &stable-codename;/updates main contrib " +"non-free\n" " " #. type: Content of: <refentry><refsect1><title> @@ -8462,8 +8617,12 @@ msgstr "" #. type: Content of: <refentry><refsect1><para><programlisting> #: apt-ftparchive.1.xml:604 #, no-wrap -msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" -msgstr "<command>apt-ftparchive</command> pacotes <replaceable>directório</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" +msgid "" +"<command>apt-ftparchive</command> packages <replaceable>directory<" +"/replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" +msgstr "" +"<command>apt-ftparchive</command> pacotes <replaceable>directório<" +"/replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:600 @@ -8506,7 +8665,7 @@ msgstr "jgg@debian.org" #. type: Content of: <book><bookinfo><releaseinfo> #: guide.dbk:20 offline.dbk:20 msgid "Version &apt-product-version;" -msgstr "" +msgstr "Versão &apt-product-version;" #. type: Content of: <book><bookinfo><abstract><para> #: guide.dbk:24 @@ -8526,7 +8685,7 @@ msgstr "" #. type: Content of: <book><bookinfo><legalnotice><title> #: guide.dbk:31 offline.dbk:32 msgid "License Notice" -msgstr "" +msgstr "Aviso de Licença" #. type: Content of: <book><bookinfo><legalnotice><para> #: guide.dbk:33 offline.dbk:34 @@ -8536,10 +8695,10 @@ msgid "" "published by the Free Software Foundation; either version 2 of the License, " "or (at your option) any later version." msgstr "" -"\"APT\" and this document are free software; you can redistribute them and/" -"or modify them under the terms of the GNU General Public License as " -"published by the Free Software Foundation; either version 2 of the License, " -"or (at your option) any later version." +"\"APT\" e este documento são software livre; você pode distribuí-lo e/ou " +"modificá-lo sob os termos da GNU General Public License como publicada " +"pela Free Software Foundation; seja na versão 2 da Licença, ou (por sua " +"opção) qualquer versão posterior." #. type: Content of: <book><bookinfo><legalnotice><para> #: guide.dbk:42 offline.dbk:40 @@ -9451,9 +9610,11 @@ msgid "" "12 packages not fully installed or removed.\n" "Need to get 65.7M/66.7M of archives. After unpacking 26.5M will be used.\n" msgstr "" -"206 pacotes actualizados, 8 instalados de novo, 23 para remover e 51 não actualizados.\n" +"206 pacotes actualizados, 8 instalados de novo, 23 para remover e 51 não " +"actualizados.\n" "12 pacotes não totalmente instalados ou removidos.\n" -"É necessário obter 65.7M/66.7M de arquivos. Após desempacotamento será usado 26.5M.\n" +"É necessário obter 65.7M/66.7M de arquivos. Após desempacotamento será usado " +"26.5M.\n" #. type: Content of: <book><chapter><section><section><para> #: guide.dbk:470 @@ -9825,7 +9986,8 @@ msgid "" msgstr "" " APT\n" " {\n" -" /* Isto não é necessário se as duas máquinas forem da mesma arquitectura, diz\n" +" /* Isto não é necessário se as duas máquinas forem da mesma arquitectura, " +"diz\n" " ao APT remoto que arquitectura tem a máquina de destino */\n" " Architecture \"i386\";\n" "\n" @@ -9834,7 +9996,8 @@ msgstr "" "\n" " Dir\n" " {\n" -" /* Usa o disco para informação de estado e redirecciona o ficheiro de estado a partir de\n" +" /* Usa o disco para informação de estado e redirecciona o ficheiro de " +"estado a partir de\n" " the /var/lib/dpkg default */\n" " State \"/disc/\";\n" " State::status \"status\";\n" @@ -9889,7 +10052,8 @@ msgstr "" " # apt-get update\n" " [ APT obtém os ficheiros de pacotes ]\n" " # apt-get dist-upgrade\n" -" [ APT obtém todos os pacotes necessários para actualizar a máquina de destino ]\n" +" [ APT obtém todos os pacotes necessários para actualizar a máquina de " +"destino ]\n" #. type: Content of: <book><chapter><section><para> #: offline.dbk:158 @@ -10008,7 +10172,8 @@ msgid "" " # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script\n" msgstr "" " # apt-get dist-upgrade \n" -" [ Escolha não quando perguntado, certifique-se que está contente com as acções ]\n" +" [ Escolha não quando perguntado, certifique-se que está contente com as " +"acções ]\n" " # apt-get -qq --print-uris dist-upgrade > uris\n" " # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script\n" -- cgit v1.2.3 From 8f617600aeb931574baf0b53617e7759baa3f370 Mon Sep 17 00:00:00 2001 From: Julian Andres Klode <jak@debian.org> Date: Sun, 24 Aug 2014 18:43:07 +0200 Subject: Fix debListParser to accept "no" as a value for the Multi-Arch field Seems this was missed somehow. Closes: #759099 --- apt-pkg/deb/deblistparser.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apt-pkg/deb/deblistparser.cc b/apt-pkg/deb/deblistparser.cc index 02b9cb239..28c898542 100644 --- a/apt-pkg/deb/deblistparser.cc +++ b/apt-pkg/deb/deblistparser.cc @@ -108,7 +108,7 @@ unsigned char debListParser::ParseMultiArch(bool const showErrors) /*{{{*/ { unsigned char MA; string const MultiArch = Section.FindS("Multi-Arch"); - if (MultiArch.empty() == true) + if (MultiArch.empty() == true || MultiArch == "no") MA = pkgCache::Version::None; else if (MultiArch == "same") { if (ArchitectureAll() == true) -- cgit v1.2.3 From 19fb04e82cdc90d429777fcc4c7a2b33e34d20e5 Mon Sep 17 00:00:00 2001 From: Julian Andres Klode <jak@debian.org> Date: Sun, 24 Aug 2014 18:43:07 +0200 Subject: Fix debListParser to accept "no" as a value for the Multi-Arch field Seems this was missed somehow. Closes: #759099 --- apt-pkg/deb/deblistparser.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apt-pkg/deb/deblistparser.cc b/apt-pkg/deb/deblistparser.cc index 30ae91cca..4ac5aa238 100644 --- a/apt-pkg/deb/deblistparser.cc +++ b/apt-pkg/deb/deblistparser.cc @@ -108,7 +108,7 @@ unsigned char debListParser::ParseMultiArch(bool const showErrors) /*{{{*/ { unsigned char MA; string const MultiArch = Section.FindS("Multi-Arch"); - if (MultiArch.empty() == true) + if (MultiArch.empty() == true || MultiArch == "no") MA = pkgCache::Version::None; else if (MultiArch == "same") { if (ArchitectureAll() == true) -- cgit v1.2.3 From 0d33183f0f6da97984bbc81dfe6d88014f6489ac Mon Sep 17 00:00:00 2001 From: David Kalnischkies <david@kalnischkies.de> Date: Fri, 18 Jul 2014 12:28:21 +0200 Subject: parse debian/tests/control for test dependencies Our integration tests need some additional dependencies to run and function correctly, but while multiple places run them, there is no need to also specify the these dependencies in multiple places. Git-Dch: Ignore --- .travis.yml | 1 - prepare-release | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2852db483..b449aeba5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,5 +2,4 @@ language: cpp before_install: - sudo apt-get update -q - sudo ./prepare-release travis-ci - - sudo apt-get install -q --no-install-recommends stunnel4 db-util script: make && make test && test/integration/run-tests diff --git a/prepare-release b/prepare-release index 3c81a21cb..0b7acc165 100755 --- a/prepare-release +++ b/prepare-release @@ -105,6 +105,7 @@ elif [ "$1" = 'buildlog' ]; then done elif [ "$1" = 'travis-ci' ]; then apt-get install -q --no-install-recommends $(sed -n -e '/^Build-Depends: /,/^Build-Depends-Indep: / {p}' debian/control | sed -e 's#([^)]*)##g' -e 's#^Build-Depends\(-Indep\)\?: ##' | tr -d ',') + apt-get install -q --no-install-recommends $(sed -n 's#^Depends: .*@, \(.*\)$#\1#p' debian/tests/control | tr -d ',') else echo >&1 "Usage:\t$0 pre-export \t$0 post-build -- cgit v1.2.3 From 5abbf5bbb5ee8717f89cac6ef409c4cec79259f6 Mon Sep 17 00:00:00 2001 From: David Kalnischkies <david@kalnischkies.de> Date: Fri, 18 Jul 2014 16:42:40 +0200 Subject: ensure that all docs use all entities files Not all are needed for all files at the moment, but the new docbook building hadn't available some of the entities it used as the files weren't correctly copied around in all cases and having the same across the bord makes working with all of them a little easier. Git-Dch: Ignore --- buildlib/docbook.mak | 5 +++-- doc/apt-cache.8.xml | 12 +++--------- doc/apt-cdrom.8.xml | 12 +++--------- doc/apt-config.8.xml | 12 +++--------- doc/apt-extracttemplates.1.xml | 12 +++--------- doc/apt-ftparchive.1.xml | 12 +++--------- doc/apt-get.8.xml | 12 +++--------- doc/apt-key.8.xml | 12 +++--------- doc/apt-mark.8.xml | 12 +++--------- doc/apt-secure.8.xml | 12 +++--------- doc/apt-sortpkgs.1.xml | 12 +++--------- doc/apt.8.xml | 10 +++------- doc/apt.conf.5.xml | 12 +++--------- doc/apt_preferences.5.xml | 12 +++--------- doc/design.dbk | 3 ++- doc/dpkg-tech.dbk | 3 ++- doc/files.dbk | 3 ++- doc/guide.dbk | 3 ++- doc/makefile | 2 +- doc/method.dbk | 3 ++- doc/offline.dbk | 3 ++- doc/sources.list.5.xml | 12 +++--------- prepare-release | 17 +++++++++++++++++ 23 files changed, 75 insertions(+), 133 deletions(-) diff --git a/buildlib/docbook.mak b/buildlib/docbook.mak index 272475721..6aa3ca0d2 100644 --- a/buildlib/docbook.mak +++ b/buildlib/docbook.mak @@ -13,6 +13,7 @@ LOCAL := docbook-$(firstword $(SOURCE)) $(LOCAL)-HTML := $(addsuffix .html,$(addprefix $(DOC)/,$(basename $(SOURCE)))) $(LOCAL)-TEXT := $(addsuffix .text,$(addprefix $(DOC)/,$(basename $(SOURCE)))) +INCLUDES = apt.ent apt-verbatim.ent apt-vendor.ent docbook: @@ -30,7 +31,7 @@ veryclean: veryclean/html/$(LOCAL) vpath %.dbk $(SUBDIRS) vpath $(DOCBOOK_HTML_STYLESHEET) $(SUBDIRS) -$(DOC)/%.html: %.dbk $(DOCBOOK_HTML_STYLESHEET) +$(DOC)/%.html: %.dbk $(DOCBOOK_HTML_STYLESHEET) $(INCLUDES) echo Creating html for $< to $@ -rm -rf $@ mkdir -p $@ @@ -59,7 +60,7 @@ veryclean: veryclean/text/$(LOCAL) vpath %.dbk $(SUBDIRS) vpath $(DOCBOOK_TEXT_STYLESHEET) $(SUBDIRS) -$(DOC)/%.text: %.dbk $(DOCBOOK_TEXT_STYLESHEET) +$(DOC)/%.text: %.dbk $(DOCBOOK_TEXT_STYLESHEET) $(INCLUDES) echo Creating text for $< to $@ $(DOCBOOK) \ --stringparam l10n.gentext.default.language $(LC) \ diff --git a/doc/apt-cache.8.xml b/doc/apt-cache.8.xml index a53a64446..a9f6c8da2 100644 --- a/doc/apt-cache.8.xml +++ b/doc/apt-cache.8.xml @@ -1,15 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="no"?> <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ - -<!ENTITY % aptent SYSTEM "apt.ent"> -%aptent; - -<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> -%aptverbatiment; - -<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> -%aptvendor; +<!ENTITY % aptent SYSTEM "apt.ent"> %aptent; +<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> %aptverbatiment; +<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> %aptvendor; ]> <refentry> diff --git a/doc/apt-cdrom.8.xml b/doc/apt-cdrom.8.xml index 2fcd8e494..23b26adaf 100644 --- a/doc/apt-cdrom.8.xml +++ b/doc/apt-cdrom.8.xml @@ -1,15 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="no"?> <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ - -<!ENTITY % aptent SYSTEM "apt.ent"> -%aptent; - -<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> -%aptverbatiment; - -<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> -%aptvendor; +<!ENTITY % aptent SYSTEM "apt.ent"> %aptent; +<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> %aptverbatiment; +<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> %aptvendor; ]> <refentry> diff --git a/doc/apt-config.8.xml b/doc/apt-config.8.xml index b84d25f7a..f35f2488c 100644 --- a/doc/apt-config.8.xml +++ b/doc/apt-config.8.xml @@ -1,15 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="no"?> <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ - -<!ENTITY % aptent SYSTEM "apt.ent"> -%aptent; - -<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> -%aptverbatiment; - -<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> -%aptvendor; +<!ENTITY % aptent SYSTEM "apt.ent"> %aptent; +<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> %aptverbatiment; +<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> %aptvendor; ]> <refentry> diff --git a/doc/apt-extracttemplates.1.xml b/doc/apt-extracttemplates.1.xml index 9f9888069..4a1f7213a 100644 --- a/doc/apt-extracttemplates.1.xml +++ b/doc/apt-extracttemplates.1.xml @@ -1,15 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="no"?> <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ - -<!ENTITY % aptent SYSTEM "apt.ent"> -%aptent; - -<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> -%aptverbatiment; - -<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> -%aptvendor; +<!ENTITY % aptent SYSTEM "apt.ent"> %aptent; +<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> %aptverbatiment; +<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> %aptvendor; ]> <refentry> diff --git a/doc/apt-ftparchive.1.xml b/doc/apt-ftparchive.1.xml index 6482b4632..92016298d 100644 --- a/doc/apt-ftparchive.1.xml +++ b/doc/apt-ftparchive.1.xml @@ -1,15 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="no"?> <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ - -<!ENTITY % aptent SYSTEM "apt.ent"> -%aptent; - -<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> -%aptverbatiment; - -<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> -%aptvendor; +<!ENTITY % aptent SYSTEM "apt.ent"> %aptent; +<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> %aptverbatiment; +<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> %aptvendor; ]> <refentry> diff --git a/doc/apt-get.8.xml b/doc/apt-get.8.xml index a3bfc331c..80b3be639 100644 --- a/doc/apt-get.8.xml +++ b/doc/apt-get.8.xml @@ -1,15 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="no"?> <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ - -<!ENTITY % aptent SYSTEM "apt.ent"> -%aptent; - -<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> -%aptverbatiment; - -<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> -%aptvendor; +<!ENTITY % aptent SYSTEM "apt.ent"> %aptent; +<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> %aptverbatiment; +<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> %aptvendor; ]> <refentry> diff --git a/doc/apt-key.8.xml b/doc/apt-key.8.xml index 5dbbaaf26..1d91790ea 100644 --- a/doc/apt-key.8.xml +++ b/doc/apt-key.8.xml @@ -1,15 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="no"?> <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ - -<!ENTITY % aptent SYSTEM "apt.ent"> -%aptent; - -<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> -%aptverbatiment; - -<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> -%aptvendor; +<!ENTITY % aptent SYSTEM "apt.ent"> %aptent; +<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> %aptverbatiment; +<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> %aptvendor; ]> <refentry> diff --git a/doc/apt-mark.8.xml b/doc/apt-mark.8.xml index d00e5b9e2..94f24437e 100644 --- a/doc/apt-mark.8.xml +++ b/doc/apt-mark.8.xml @@ -1,15 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="no"?> <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ - -<!ENTITY % aptent SYSTEM "apt.ent"> -%aptent; - -<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> -%aptverbatiment; - -<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> -%aptvendor; +<!ENTITY % aptent SYSTEM "apt.ent"> %aptent; +<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> %aptverbatiment; +<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> %aptvendor; ]> <refentry> diff --git a/doc/apt-secure.8.xml b/doc/apt-secure.8.xml index 15a73476d..e343b86ea 100644 --- a/doc/apt-secure.8.xml +++ b/doc/apt-secure.8.xml @@ -1,15 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="no"?> <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ - -<!ENTITY % aptent SYSTEM "apt.ent"> -%aptent; - -<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> -%aptverbatiment; - -<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> -%aptvendor; +<!ENTITY % aptent SYSTEM "apt.ent"> %aptent; +<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> %aptverbatiment; +<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> %aptvendor; ]> <refentry> diff --git a/doc/apt-sortpkgs.1.xml b/doc/apt-sortpkgs.1.xml index 9bb03d624..c1f327fe8 100644 --- a/doc/apt-sortpkgs.1.xml +++ b/doc/apt-sortpkgs.1.xml @@ -1,15 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="no"?> <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ - -<!ENTITY % aptent SYSTEM "apt.ent"> -%aptent; - -<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> -%aptverbatiment; - -<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> -%aptvendor; +<!ENTITY % aptent SYSTEM "apt.ent"> %aptent; +<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> %aptverbatiment; +<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> %aptvendor; ]> <refentry> diff --git a/doc/apt.8.xml b/doc/apt.8.xml index 08a65ade2..29bf96751 100644 --- a/doc/apt.8.xml +++ b/doc/apt.8.xml @@ -1,13 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="no"?> <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ - -<!ENTITY % aptent SYSTEM "apt.ent"> -%aptent; - -<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> -%aptverbatiment; - +<!ENTITY % aptent SYSTEM "apt.ent"> %aptent; +<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> %aptverbatiment; +<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> %aptvendor; ]> <refentry> diff --git a/doc/apt.conf.5.xml b/doc/apt.conf.5.xml index ffecc6ceb..df6c77ff0 100644 --- a/doc/apt.conf.5.xml +++ b/doc/apt.conf.5.xml @@ -1,15 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="no"?> <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ - -<!ENTITY % aptent SYSTEM "apt.ent"> -%aptent; - -<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> -%aptverbatiment; - -<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> -%aptvendor; +<!ENTITY % aptent SYSTEM "apt.ent"> %aptent; +<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> %aptverbatiment; +<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> %aptvendor; ]> <refentry> diff --git a/doc/apt_preferences.5.xml b/doc/apt_preferences.5.xml index d8c3efab7..16e6a7aa0 100644 --- a/doc/apt_preferences.5.xml +++ b/doc/apt_preferences.5.xml @@ -1,15 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="no"?> <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ - -<!ENTITY % aptent SYSTEM "apt.ent"> -%aptent; - -<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> -%aptverbatiment; - -<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> -%aptvendor; +<!ENTITY % aptent SYSTEM "apt.ent"> %aptent; +<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> %aptverbatiment; +<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> %aptvendor; ]> <refentry> diff --git a/doc/design.dbk b/doc/design.dbk index 06743c8af..157e75c1a 100644 --- a/doc/design.dbk +++ b/doc/design.dbk @@ -1,8 +1,9 @@ <?xml version="1.0" encoding="UTF-8"?> -<!-- -*- DocBook -*- --> <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ +<!ENTITY % aptent SYSTEM "apt.ent"> %aptent; <!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> %aptverbatiment; +<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> %aptvendor; ]> <book lang="en"> diff --git a/doc/dpkg-tech.dbk b/doc/dpkg-tech.dbk index e7d150cee..660ccabc9 100644 --- a/doc/dpkg-tech.dbk +++ b/doc/dpkg-tech.dbk @@ -1,8 +1,9 @@ <?xml version="1.0" encoding="UTF-8"?> -<!-- -*- DocBook -*- --> <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ +<!ENTITY % aptent SYSTEM "apt.ent"> %aptent; <!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> %aptverbatiment; +<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> %aptvendor; ]> <book lang="en"> diff --git a/doc/files.dbk b/doc/files.dbk index 675c92664..f513e0008 100644 --- a/doc/files.dbk +++ b/doc/files.dbk @@ -1,8 +1,9 @@ <?xml version="1.0" encoding="UTF-8"?> -<!-- -*- DocBook -*- --> <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ +<!ENTITY % aptent SYSTEM "apt.ent"> %aptent; <!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> %aptverbatiment; +<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> %aptvendor; ]> <book lang="en"> diff --git a/doc/guide.dbk b/doc/guide.dbk index e8a8ae274..80937164e 100644 --- a/doc/guide.dbk +++ b/doc/guide.dbk @@ -1,8 +1,9 @@ <?xml version="1.0" encoding="UTF-8"?> -<!-- -*- DocBook -*- --> <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ +<!ENTITY % aptent SYSTEM "apt.ent"> %aptent; <!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> %aptverbatiment; +<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> %aptvendor; ]> <book lang="en"> diff --git a/doc/makefile b/doc/makefile index 5ab31ad3b..1c076d5be 100644 --- a/doc/makefile +++ b/doc/makefile @@ -29,7 +29,7 @@ include $(COPY_H) clean: clean/subdirs clean/examples veryclean: veryclean/subdirs clean/examples manpages: apt-vendor.ent manpages/subdirs -docbook: docbook/subdirs +docbook: apt-vendor.ent docbook/subdirs DOCUMENTATIONPO = $(patsubst %.po,%,$(notdir $(wildcard po/*.po))) DOCDIRLIST = $(addsuffix /makefile,$(DOCUMENTATIONPO)) diff --git a/doc/method.dbk b/doc/method.dbk index d2eb04df1..09ef63e8c 100644 --- a/doc/method.dbk +++ b/doc/method.dbk @@ -1,8 +1,9 @@ <?xml version="1.0" encoding="UTF-8"?> -<!-- -*- DocBook -*- --> <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ +<!ENTITY % aptent SYSTEM "apt.ent"> %aptent; <!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> %aptverbatiment; +<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> %aptvendor; ]> <book lang="en"> diff --git a/doc/offline.dbk b/doc/offline.dbk index 7163f8bd5..cbfc4f690 100644 --- a/doc/offline.dbk +++ b/doc/offline.dbk @@ -1,8 +1,9 @@ <?xml version="1.0" encoding="UTF-8"?> -<!-- -*- DocBook -*- --> <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ +<!ENTITY % aptent SYSTEM "apt.ent"> %aptent; <!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> %aptverbatiment; +<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> %aptvendor; ]> <book lang="en"> diff --git a/doc/sources.list.5.xml b/doc/sources.list.5.xml index 4d0c4d502..da4f571b5 100644 --- a/doc/sources.list.5.xml +++ b/doc/sources.list.5.xml @@ -1,15 +1,9 @@ <?xml version="1.0" encoding="utf-8" standalone="no"?> <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ - -<!ENTITY % aptent SYSTEM "apt.ent"> -%aptent; - -<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> -%aptverbatiment; - -<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> -%aptvendor; +<!ENTITY % aptent SYSTEM "apt.ent"> %aptent; +<!ENTITY % aptverbatiment SYSTEM "apt-verbatim.ent"> %aptverbatiment; +<!ENTITY % aptvendor SYSTEM "apt-vendor.ent"> %aptvendor; ]> <refentry> diff --git a/prepare-release b/prepare-release index 0b7acc165..1b8f1e49e 100755 --- a/prepare-release +++ b/prepare-release @@ -69,6 +69,23 @@ elif [ "$1" = 'post-build' ]; then dpkg-checkbuilddeps -d 'libxml2-utils' + HEADERBLUEPRINT="$(mktemp)" + sed -n '1,/^$/p' doc/apt.8.xml > "$HEADERBLUEPRINT" + find doc -mindepth 1 -maxdepth 1 -type f -name '*.xml' | while read FILE; do + if ! sed -n '1,/^$/p' "$FILE" | cmp "$HEADERBLUEPRINT" - >/dev/null 2>&1; then + echo >&2 "WARNING: Manpage $FILE has not the usual header! (see diff below)" + sed -n '1,/^$/p' "$FILE" | diff -u "$HEADERBLUEPRINT" - || true + fi + done + sed -n '1,/^$/p' doc/guide.dbk > "$HEADERBLUEPRINT" + find doc -mindepth 1 -maxdepth 1 -type f -name '*.dbk' | while read FILE; do + if ! sed -n '1,/^$/p' "$FILE" | cmp "$HEADERBLUEPRINT" - >/dev/null 2>&1; then + echo >&2 "WARNING: Documentation $FILE has not the usual header (see diff below)!" + sed -n '1,/^$/p' "$FILE" | diff -u "$HEADERBLUEPRINT" - || true + fi + done + rm "$HEADERBLUEPRINT" + # check the manpages with each vendor for vendor-specific errors… find vendor -mindepth 1 -maxdepth 1 -type d | cut -d'/' -f 2 | while read DISTRO; do ln -sf ../vendor/${DISTRO}/apt-vendor.ent doc -- cgit v1.2.3 From e7487413c15be34a094f300535ef00378dce9de0 Mon Sep 17 00:00:00 2001 From: David Kalnischkies <david@kalnischkies.de> Date: Sat, 19 Jul 2014 13:30:08 +0200 Subject: remove obsolete documentation bits Git-Dch: Ignore --- README.ddtp | 74 -------------------------- doc/Bugs | 174 ------------------------------------------------------------ 2 files changed, 248 deletions(-) delete mode 100644 README.ddtp delete mode 100644 doc/Bugs diff --git a/README.ddtp b/README.ddtp deleted file mode 100644 index 5865b4e02..000000000 --- a/README.ddtp +++ /dev/null @@ -1,74 +0,0 @@ -TODO: -- URL-Remap for the translation files (to hack around the problem that - they are not on any ftp server yet but only on http://ddtp.debian.org/) - -Here is the original announcement of the ddtp support: - -* To: debian-devel-announce@lists.debian.org -* Subject: Translate files -* From: Michael Bramer <grisu@debian.org> -* Date: Sun, 6 Oct 2002 21:56:06 +0200 -* Mail-followup-to: debian-devel@lists.debian.org -* Message-id: <20021006195605.GA30516@home.debsupport.de> -* Old-return-path: <michael@home.debsupport.de> -* User-agent: Mutt/1.3.28i - -Hello all - -After some discussion between Anthony Towns (a ftpmaster), Jason -Gunthorpe (APT Developer) and some DDTP Coordinators we find a way to -transfer the translated package descriptions from the archive to the -user. - -The translated descriptions need to be downloadable befor any -installation process, like the other package meta information. We -choose a new file per languages with all translated package -descriptions. The package system can download one or more of this -files at 'apt-get update' time and know the translations. - -The new files are names 'Translate-$lang' and the file have this -rfc822-format: - Package: <package-name> - Description-md5: <the md5 checksum of the english description> - Description-$lang.$encoding: <translated headline> - <translated section> - -The encoding of the Description is 'UTF-8' in all languages normal. -The files will be located at 'debian/dists/sid/main/i18n/' on the ftp -server (for all architecture). In addition of the plain -'Translate-$lang' file, there will be a 'gz' and a 'bz2' version and -in future also the new incremental format version. - -The <the md5 checksum of the english description> is the md5 checksum -of the full english description, without the 'Description: '-tag and -with all spaces and newlines. Look at this example: - Description: XXX - YYY - . - ZZZ -is md5("XXX\n YYY\n .\n ZZZ\n") (perl-syntax). - - -A future APT version will download one or some 'Translate-$lang' -file(s) at 'update'-time. After this download it show a translated -description instead of the english form, if it found a translated -description of the package with the right md5 chechsum. The environment -of the user will controlled this process (LANG, LANGUAGE, LC_MESSAGES, -etc). With this the package system will never show a outdated -translation. - -The translations come all from the DDTP. A daily process on -ddtp.debian.org make new 'Translated-$lang' files and a script on -ftp-master request this files and move this to the debian archive. -Now the first files are accessible at - <a href="http://ddtp.debian.org/pdesc/translatefiles/">http://ddtp.debian.org/pdesc/translatefiles/</a> - -If you found wrong translations, please read the guides on -ddtp.debian.org, make a better translation and send this per mail to -the DDTP server. Don't bug the package maintainer! - -Thanks -Grisu --- -Michael Bramer - a Debian Linux Developer <a href="http://www.debsupport.de">http://www.debsupport.de</a> -PGP: finger grisu@db.debian.org -- Linux Sysadmin -- Use Debian Linux diff --git a/doc/Bugs b/doc/Bugs deleted file mode 100644 index d584dce49..000000000 --- a/doc/Bugs +++ /dev/null @@ -1,174 +0,0 @@ --- Real Problems -#24000: Bug in apt Version: 0.0.17-1bo0 - Summary: Couldn't locate an archive source for a package - Status: Require Status file. -#24717: apt dies early if one postinst/preinst dies - Status: Requires dpkg modifications -#25104: APT should retry failed downloads - Summary: FTP method has problems with busy servers - Status: The 0.3.0 ftp method should probably use the configuration mechanism - to control this desired behavoir. -#25176: Problem with FTP/firewall -#25458: Problem with FTP/firewall - Summary: FTP method has no controls for firewalls - Status: The 0.3.0 ftp method should probably use the configuration mechanism - to control this desired behavoir. - --- Fixed but unclosed things -#25026: apt: Why do you list the packages you're _not_ doing anything to instead of the ones you are? -#22507: apt: apt-get - listing packages to be upgraded (wishlist) - Summary: Feature request - Status: Fixed in 0.3.0 via the -u option -#21113: [Apt] In dselect, update dies and exits if the packages file is not found. - Status: Fixed in 0.3.0 -#22675: APT does not honor the --admin-dir option -#22836: Disk/Zip-Method for apt? - Summary: APT does not provide a way to download packages onto a - removable media for another computer - Status: 0.3.0 has substantially better support for this to the point - that it is doable by using a separate configuration file and - the -c option -#27601: srange errors from dselect - Summary: Couldn't locate an archive source - Status: Require status file - Believed to be fixed in 0.1.9, was not reproducible w/ given - status file -#27841: apt: apt depends on a missing library - Status: New versions of APT in slink have been compiled with libstdc++2.9 -#23984: apt: support for "no_proxy" would be nice - Status: Planned to be integrated into the new methods via the configuration - file - Done - Use Acquire::http::proxy::host.com="DIRECT" -#25021: apt: Need some control over multiple connections - Status: Probable that 0.3.x will have support for configuing some - parameters - Done - Use Acquire::Queue-Mode="access" -#25019: apt: Confusing progress report - Summary: Gripes about the progress meter - Status: I do not intend to implement very many of these ideas in apt-get. - The GUI will naturally be better - I think the new progress meter address basically everyone's - concerns. -#25022: apt: Lack of feedback on date checking - Summary: Wants to know what package files were not updated - Status: There is no place for this in the current apt-get design, - probably won't make the GUI either. - Wee, the new acquire code allows this, it now prints out 'Hit' -#26019: apt may report wrong line speed -#26433: apt: claims to fetch things it doesn't actually fetch (wishlist) -#28778: apt: apt's fetched message is wrong for update of packages files - Summary: APT includes the fetch time from the local cache in its - calculations - Status: Probably will be fixed with new acquire code - And it actually was fixed with the new acquire code -#26670: apt: apt-get dumps core after checking integrity - Summary: Some terminal environments cause APT to crash - Win95 telnet and emacs term-in-a-buffer are two at least - Status: I have no idea why. - Seems to be gone in .3, whatever it was... -#25001: apt: cleaned out archive even though not all files were installed - Status: Apparently in some cases APT can return a success code even - though it failed. I'm paying very close attention to this in - 0.3.x. Not to mention that the clean behavior will be - configurable.. -#28391: apt-get install without upgrading - Summary: Make install leave the package in the keep state if it is already - installed - Status: Will be implemented in 0.3.0 - Try the --no-upgrade options -#28373: apt package is missing information on ftp.conf -#29293: apt: Docs reference apt(8) but apt(8) not provided. - Summary: The man pages have references to several non-existent items, - ftp.conf is only one of them. - Status: Fix the man pages. This certainly will be done in 0.3.0 -#24799: Some suggestions for the apt method in dselect - Summary: Wants to be able to specifiy -d from dselect - Status: Likely a APT_OPTIONS environment variable will be created, -d can - be put there. - There is already an APT_CONFIG in 0.3, APT_OPTIONS may also - appear.. - Use Dselect::Options "-d" and others -#29920: Wish for more verbosity on "has no installation candidate" - Summary: More reports - Status: Already fixed in .3 -#29382: apt: apt deletes packages after installation without any question - Summary: Obvois. - Status: Fixed in .3, use Dselect::Clean "prompt" -#30027: apt: version comparison bug - Summary: Version compare differs from dpkg - Status: Fixed in all CVS versions. -#30260: apt: wishlist: do not return to main menu without prompting for return - Summary: Wants to prompt after dselect update - Status: Fixed in v3, use dselect::promptafterupdate "true"; -#29441: documenting the codes for -s - Summary: Apparently the simulation output is not immediately obvois - Status: Someone should update the man page. -#24685: HTTP Proxy cache refresh - Summary: Some caches hold onto the package index file for too long - Status: It may be possible to insert the proper header to disable - caching but I can't think how to do this while allowing - the cache to return cached objects - in effect it would - completely disable the cache which may not be desired. - APT now sends a max age header. See the apt.conf(5) -#28172: HTTP Proxy cache refresh should be forced for corrupted packages - Summary: Some problem resulted in a corrupted package - Status: I believe this reflects a deeper problem and the suggested solution - is only a band-aide patch. I intend to close this bug when #24685 - is fixed with a configuration directive. - Use -o acquire::http::no-cache=true -#29351: poor error message after conffile update - Summary: APT errors when the package file is not found - Status: The new APT warns better and the error is not fatal -#30112: apt: internal error in apt - Summary: APT gives an unclear error when it cannot correct dependencies - Status: Error is clearer -#30324: apt-get lying about file dates in /var/state/apt/lists - Summary: Doesn't copy the file dates right with file URIs - Status: Fixed in v3 -#30383: apt: dist-upgrade msg "E: Internal error, ScoredFix generated breaks." - Summary: libc6 maddness causes bizzar problems - Status: Fixed in v3 -#29983: apt: Wrong diagnostic, could be better - Summary: It doesn't explicy say you should be root - Status: Fixed in v3 -#22892: Apt improvements - Summary: Bails if an index file can't be found - Status: Fixed in v3 -#28184: apt could be smarter regarding mirrors - Summary: Make use of redundant sources - Status: 0.3.0 will likely do this, already the information for it is stored. -#27646: Apt: dpkg --merge-avail - Summary: Suggestion to call merge avail after each update operation - Status: Unlikely. The dpkg --print-avail functions should be obsoleted - by the apt-query program which should be written. - Use the dselect script, alias or something. -#26663: rsync file access - Status: Unlikely, rsync does not provide the necessary support to be - a terribly good method. I do not intend any 'split mode' - support (ie a way to get Package files via rsync and .debs - via http) -#27100: apt: Better support for project/experimental - Status: GUI Feature - Version selection and pinning - Honors the NotAutomatic flag -#30643: base: apt-get update problems with http-/ftp-caches (i.e. squid) - Status: Fixed as best I can. Try the Acquire::http::No-Cache option. - --- Silly things -#26592: apt: Problems with ftpd in SunOS 5.6 -#29903: apt-get insists onto sending a SIZE command - Summary: SunOS ftpd does not support the SIZE command - Status: Probably not worth fixing -#20723: Apt suggestion - Summary: Package Grouping Mechanism - Status: Who knows -#22550: apt-get upgrade could configure packages earlier - Status: Who knows -#23934: apt-get source <package> -#27190: apt: installing source packages (wishlist) - Status: Impossible to do without an index file for all source archives. -#22551: apt: wish: use dist X iff pkg does not exist in dist Y - Status: GUI Feature - Version selection and pinning -#30237: apt: 0.1.9 checks dependencies against packages.gz - Summary: For packages with identical version numbers APT prefers - to use the archive index files - Status: Yes it is sorta bad, but there is no reasonable solution. -- cgit v1.2.3 From 2457d184e687ff00ff350d5a580c4e873c43bad8 Mon Sep 17 00:00:00 2001 From: David Kalnischkies <david@kalnischkies.de> Date: Sat, 19 Jul 2014 13:30:48 +0200 Subject: rewrite and extend new README file Reuse description from the package descriptions and add various subsection describing useful debug options and general information. Git-Dch: Ignore --- README.md | 206 ++++++++++++++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 175 insertions(+), 31 deletions(-) diff --git a/README.md b/README.md index 1a7f6f224..40bb6998d 100644 --- a/README.md +++ b/README.md @@ -1,37 +1,181 @@ -apt - Advanced Packaging Tool -============================= - -apt is the main package management tool for Debian and its variants. -It enables to search and install deb packages. The underlying libraries -that apt is build upon are called libapt-pkg and libapt-inst. - -Coding ------- -Apt is maintained in git, considering creating a branch when you -start hacking on it. - -Apt uses its own autoconf based build system, see README.make for -more details. To get started, just run: -``` -$ make -``` -from a fresh checkout. - -When you make changes and want to run them, make sure your -$LD_LIBRARY_PATH points to the new location, e.g. via: -``` -$ export LD_LIBRARY_PATH=$(pwd)/build/bin -$ ./build/bin/apt-get moo -``` +APT +=== + +apt is the main commandline package manager for Debian and its derivatives. +It provides commandline tools for searching and managing as well as querying +information about packages as well as low-level access to all features +provided by the libapt-pkg and libapt-inst libraries which higher-level +package managers can depend upon. + +Included tools are: + +* apt-get for retrieval of packages and information about them + from authenticated sources and for installation, upgrade and + removal of packages together with their dependencies +* apt-cache for querying available information about installed + as well as installable packages +* apt-cdrom to use removable media as a source for packages +* apt-config as an interface to the configuration settings +* apt-key as an interface to manage authentication keys +* apt-extracttemplates to be used by debconf to prompt for configuration + questions before installation. +* apt-ftparchive creates Packages and other index files + needed to publish an archive of debian packages +* apt-sortpkgs is a Packages/Sources file normalizer. + +The libraries libapt-pkg and libapt-inst are also maintained as part of this project, +alongside various additional binaries like the acquire-methods used by them. +Bindings for Python ([python-apt](https://tracker.debian.org/pkg/python-apt)) and +Perl ([libapt-pkg-perl](https://tracker.debian.org/pkg/libapt-pkg-perl)) are available as separated projects. + +Discussion happens mostly on [the mailinglist](mailto:deity@lists.debian.org) ([archive](https://lists.debian.org/deity/)) and on [IRC](irc://irc.oftc.net/debian-apt). +Our bugtracker as well as a general overview can be found at the [Debian Tracker page](https://tracker.debian.org/pkg/apt). + + +Contributing +------------ +APT is maintained in git, the official repository being located at +`git://anonscm.debian.org/apt/apt.git` ([webgit](http://anonscm.debian.org/gitweb/?p=apt/apt.git)), +but also available at other locations like [GitHub](https://github.com/Debian/apt). + +The default branch is `debian/sid`, other branches targeted at different +derivatives and releases being used as needed. Various topic branches in +different stages of completion might be branched of from those, which you +are encouraged to do as well. + +### Coding + +APT uses its own autoconf based build system, see [README.make](http://anonscm.debian.org/gitweb/?p=apt/apt.git;a=blob;f=README.make) +for the glory details, but to get started, just run: + + $ make + +from a fresh git checkout. + +The source code uses in most parts a relatively uncommon indent convention, +namely 3 spaces with 8 space tab (see [doc/style.txt](http://anonscm.debian.org/gitweb/?p=apt/apt.git;a=blob;f=doc/style.txt) for more on this). +Adhering to it avoids unnecessary code-churn destroying history (aka: `git blame`) +and you are therefore encouraged to write patches in this style. +Your editor can surely help you with this, for vim the settings would be +`setlocal shiftwidth=3 noexpandtab tabstop=8` +(the later two are the default configuration and could therefore be omitted). + +### Translations + +While we welcome contributions here, we highly encourage you to contact the [Debian Internationalization (i18n) team](https://wiki.debian.org/Teams/I18n). +Various language teams have formed which can help you creating, maintaining +and improving a translation, while we could only do a basic syntax check of the +file format… + +Further more, Translating APT is split into two independent parts: +The program translation, meaning the messages printed by the tools, +as well as the manpages and other documentation shipped with APT. + +### Bug triage + +Software tools like APT which are used by thousands of users every +day have a steady flow of incoming bugreports. Not all of them are really +bugs in APT: It can be packaging bugs like failing maintainer scripts a +user reports against apt, because apt was the command he executed leading +to this failure or various wishlist items for new features. Given enough time +also the occasional duplicate enters the system. +Our bugtracker is therefore full with open bugreports which are waiting for you! ;) Testing ------- -There is a extensive integration testsuite available via: -``` -$ ./test/integration/run-tests -``` +### Manual execution + +When you make changes and want to run them manually, make sure your +`$LD_LIBRARY_PATH` points to the libraries you have built, e.g. via: + + $ export LD_LIBRARY_PATH=$(pwd)/build/bin + $ ./build/bin/apt-get moo + + +### Integration tests + +There is a extensive integration testsuite available which can be run via: + + $ ./test/integration/run-tests + +While these tests are not executed at package build-time as they require additional +dependencies, the repository contains the configuration needed to run them on [Travis CI](https://travis-ci.org/) +as well as via autopkgtests e.g. on [Debian Continuous Integration](http://ci.debian.net/?q=apt#package/apt). + +A testcase here is a shellscript embedded in a framework creating an environment in which +apt tools can be used naturally without root-rights to test every aspect of its behavior +itself as well as in conjunction with dpkg and other tools while working with packages. + + +### Unit tests + +These tests are gtest-dev based, reside in `./test/libapt` and can be run with `make test`. +They are executed at package build-time, but not by `make`. + +Debugging +--------- + +APT does many things, so there is no central debug mode which could be +activated. It uses instead various config-options to activate debug output +in certain areas. The following describes some common scenarios and generally +useful options, but is in no way exhaustive. + +Note that you should *NEVER* use these settings as root to avoid accidents. +Similation mode (`-s`) is usually sufficient to help you run apt as a non-root user. + +### Using different state files + +If a dependency solver bug is reported, but can't be reproduced by the +triager easily, it is beneficial to ask the reporter for the +`/var/lib/dpkg/status` file, which includes the packages installed on the +system and in which version. Such a file can then be used via the option +`dir::state::status`. Beware of different architecture settings! +Bugreports usually include this information in the template. Assuming you +already have the `Packages` files for the architecture (see `sources.list` +manpage for the `arch=` option) you can change to a different architecture +with a config file like: + + APT::Architecture "arch1"; + #clear APT::Architectures; + APT:: Architectures { "arch1"; "arch2"; } + +If a certain mirror state is needed, see if you can reproduce it with [snapshot.debian.org](http://snapshot.debian.org/). +Your sources.list file (`dir::etc::sourcelist`) has to be correctly mention the repository, +but if it does, you can use different downloaded archive state files via `dir::state::lists`. + +In case manually vs. automatically installed matters, you can ask the reporter for +the `/var/lib/apt/extended_states` file and use it with `dir::state::extended_states`. + +### Dependency resolution + +APT works in its internal resolver in two stages: First all packages are visited +and marked for installation, keep back or removal. Option `Debug::pkgDepCache::Marker` +shows this. This also decides which packages are to be installed to satisfy dependencies, +which can be seen by `Debug::pkgDepCache::AutoInstall`. After this is done, we might +be in a situation in which two packages want to be installed, but only on of them can be. +It is the job of the pkgProblemResolver to decide which of two packages 'wins' and can +therefore decide what has to happen. You can see the contenders as well as their fight and +the resulting resolution with `Debug::pkgProblemResolver`. + +### Downloading files + +Various binaries (called 'methods') are tasked with downloading files. The Acquire system +talks to them via simple text protocol. Depending on which side you want to see, either +`Debug::pkgAcquire::Worker` or `Debug::Acquire::http` (or similar) will show the messages. + +The integration tests use a simple self-built webserver which also logs. If you find that +the http(s) methods do not behave like they should be try to implement this behavior in the +webserver for simpler and more controlled testing. -as well as gtest-dev based integration tests available in -`./test/libapt` and can be run with make test. +### Installation order +Dependencies are solved, packages downloaded: Everything read for the installation! +The last step in the chain is often forgotten, but still very important: +Packages have to be installed in a particular order so that their dependencies are +satisfied, but at the same time you don't want to install very important and optional +packages at the same time if possible, so that a broken optional package does not +block the correct installation of very important packages. Which option to use depends on +if you are interested in the topology sorting (`Debug::pkgOrderList`), the dependency-aware +cycle and unconfigured prevention (`Debug::pkgPackageManager`) or the actual calls +to dpkg (`Debug::pkgDpkgPm`). -- cgit v1.2.3 From daf38aff59196e86c28cac84606d48a4bc18d6b0 Mon Sep 17 00:00:00 2001 From: Mert Dirik <mertdirik@gmail.com> Date: Fri, 15 Aug 2014 19:37:39 +0200 Subject: Turkish program translation update Closes: 756710 --- po/tr.po | 181 +++++++++++++++++++++++++++++++++++++++------------------------ 1 file changed, 111 insertions(+), 70 deletions(-) diff --git a/po/tr.po b/po/tr.po index 4a6b4344c..e0654c622 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1,7 +1,7 @@ # Turkish translation for apt # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # Copyright (c) 2013 Debian L10n Turkish 2013 -# Mert Dirik <mertdirik@gmail.com>, 2013. +# Mert Dirik <mertdirik@gmail.com>, 2013-2014. # This file is distributed under the same license as the apt package. # Rosetta Contributors, 2009. msgid "" @@ -9,21 +9,21 @@ msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" "POT-Creation-Date: 2014-07-10 10:53+0200\n" -"PO-Revision-Date: 2013-02-18 03:41+0200\n" +"PO-Revision-Date: 2014-08-01 02:29+0200\n" "Last-Translator: Mert Dirik <mertdirik@gmail.com>\n" -"Language-Team: Debian l10n Turkish\n" +"Language-Team: Debian l10n Turkish <debian-l10n-turkish@lists.debian.org>\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n!=1;\n" -"X-Generator: Poedit 1.5.5\n" +"X-Generator: Poedit 1.5.4\n" "X-Launchpad-Export-Date: 2013-02-04 12:16+0000\n" #: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format +#, c-format msgid "Clean of %s is not supported" -msgstr "İndeks dosyası türü '%s' desteklenmiyor" +msgstr "%s temizliği desteklenmiyor" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. @@ -52,7 +52,7 @@ msgstr "%s için dosya bilgisi alınamadı." #: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" -msgstr "" +msgstr "Durum: [%3i%%]" #: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" @@ -103,9 +103,9 @@ msgid "The method driver %s could not be found." msgstr "Yöntem sürücüsü %s bulunamadı." #: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format +#, c-format msgid "Is the package %s installed?" -msgstr "'dpkg-dev' paketinin kurulu olduğundan emin olun.\n" +msgstr "%s paketi kurulu mu?" #: apt-pkg/acquire-worker.cc:169 #, c-format @@ -320,9 +320,8 @@ msgid "Size mismatch" msgstr "Boyutlar eşleşmiyor" #: apt-pkg/acquire-item.cc:173 -#, fuzzy msgid "Invalid file format" -msgstr "Geçersiz işlem: %s" +msgstr "Geçersiz dosya biçimi" #: apt-pkg/acquire-item.cc:1573 #, c-format @@ -654,9 +653,9 @@ msgid "Couldn't find any package by regex '%s'" msgstr "'%s' düzenli ifadesini içeren herhangi bir paket bulunamadı" #: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format +#, c-format msgid "Couldn't find any package by glob '%s'" -msgstr "'%s' düzenli ifadesini içeren herhangi bir paket bulunamadı" +msgstr "'%s' ifadesine eşleşen herhangi bir paket bulunamadı" #: apt-pkg/cacheset.cc:626 #, c-format @@ -713,10 +712,10 @@ msgid "Invalid 'Date' entry in Release file %s" msgstr "'Release' dosyasında (%s) geçersiz 'Date' girdisi" #: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format +#, c-format msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "" -"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (URI ayrıştırma)" +"Kaynak listesinin (%2$s) %1$u numaralı girdisi hatalı (URI ayrıştırma)" #: apt-pkg/sourcelist.cc:170 #, c-format @@ -795,9 +794,9 @@ msgid "Type '%s' is not known on line %u in source list %s" msgstr "'%s' türü bilinmiyor. (Satır: %u, Kaynak Listesi: %s)" #: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format +#, c-format msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "'%s' türü bilinmiyor. (Satır: %u, Kaynak Listesi: %s)" +msgstr "'%s' türü bilinmiyor (girdi: %u, kaynak listesi: %s)" #: apt-pkg/deb/dpkgpm.cc:95 #, c-format @@ -882,20 +881,20 @@ msgstr "%s tamamen kaldırıldı" #: apt-pkg/deb/dpkgpm.cc:1066 msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +msgstr "ioctl(TIOCGWINSZ) başarısız oldu" #: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format +#, c-format msgid "Can not write log (%s)" -msgstr "%s dosyasına yazılamıyor" +msgstr "Günlük dosyasına yazılamıyor (%s)" #: apt-pkg/deb/dpkgpm.cc:1069 msgid "Is /dev/pts mounted?" -msgstr "" +msgstr "/dev/pts bağlı mı?" #: apt-pkg/deb/dpkgpm.cc:1090 msgid "Is stdout a terminal?" -msgstr "" +msgstr "stdout bir uçbirim mi?" #: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 #: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 @@ -941,12 +940,12 @@ msgstr "" "raporu yazılamadı" #: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy msgid "" "No apport report written because the error message indicates an issue on the " "local system" msgstr "" -"Hata iletisi diskin dolu olduğunu belirttiği için apport raporu yazılamadı" +"Hata iletisi yerel bir sistem hatasına işaret ettiği için apport raporu " +"yazılamadı" #: apt-pkg/deb/dpkgpm.cc:1685 msgid "" @@ -1153,13 +1152,13 @@ msgstr "%c%s... Bitti" #: apt-pkg/contrib/progress.cc:181 msgid "..." -msgstr "" +msgstr "..." #. Print the spinner #: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format +#, c-format msgid "%c%s... %u%%" -msgstr "%c%s... Bitti" +msgstr "%c%s... %u%%" #: apt-pkg/contrib/mmap.cc:79 msgid "Can't mmap an empty file" @@ -1571,6 +1570,11 @@ msgid "" "See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " "mount point." msgstr "" +"Öntanımlı bağlama noktasında bir CD-ROM algılanamadı.\n" +"CD-ROM bağlama noktasını ayarlamak için --cdrom seçeneğini kullanmayı " +"deneyebilirsiniz.\n" +"Otomatik CD-ROM ve bağlantı noktası algılama hakkında daha fazla bilgi almak " +"için 'man apt-cdrom' komutunu kullanabilirsiniz." #: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." @@ -1610,19 +1614,19 @@ msgstr "" "cache=/tmp\n" #: cmdline/apt-get.cc:245 -#, fuzzy, c-format +#, c-format msgid "Can not find a package for architecture '%s'" -msgstr "'%s' düzenli ifadesini içeren herhangi bir paket bulunamadı" +msgstr "'%s' mimarisi için bir paket bulunamadı" #: cmdline/apt-get.cc:327 -#, fuzzy, c-format +#, c-format msgid "Can not find a package '%s' with version '%s'" -msgstr "'%s' düzenli ifadesini içeren herhangi bir paket bulunamadı" +msgstr "'%s' paketinin '%s' sürümü bulunamadı" #: cmdline/apt-get.cc:330 -#, fuzzy, c-format +#, c-format msgid "Can not find a package '%s' with release '%s'" -msgstr "'%s' düzenli ifadesini içeren herhangi bir paket bulunamadı" +msgstr "'%s' paketi '%s' dağıtım sürümünde bulunamadı" #: cmdline/apt-get.cc:367 #, c-format @@ -1630,9 +1634,9 @@ msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Kaynak paket olarak '%s' yerine '%s' kullanılacak\n" #: cmdline/apt-get.cc:423 -#, fuzzy, c-format +#, c-format msgid "Can not find version '%s' of package '%s'" -msgstr "'%2$s' paketinin mevcut olmayan '%1$s' sürümünü görmezden gel" +msgstr "'%2$s' paketinin '%1$s' sürümünü bulunamadı" #: cmdline/apt-get.cc:454 #, c-format @@ -1940,13 +1944,12 @@ msgstr "" " Bu APT'nin Süper İnek Güçleri vardır.\n" #: cmdline/apt-helper.cc:35 -#, fuzzy msgid "Must specify at least one pair url/filename" -msgstr "Kaynağının indirileceği en az bir paket seçilmeli" +msgstr "En az bir adet url/dosyaadı çifti belirtilmelidir" #: cmdline/apt-helper.cc:53 msgid "Download Failed" -msgstr "" +msgstr "İndirme Başarısız" #: cmdline/apt-helper.cc:66 msgid "" @@ -1960,6 +1963,15 @@ msgid "" "\n" " This APT helper has Super Meep Powers.\n" msgstr "" +"Usage: apt-helper [seçenekler] komut\n" +" apt-helper [seçenekler] download-file uri hedef-konum\n" +"\n" +"apt-helper apt'nin dahili yardımcı aracıdır\n" +"\n" +"Komutlar:\n" +" download-file - verilen adresi hedef yola kaydet\n" +"\n" +" Bu APT yardımcısının Süper Meep Güçleri var.\n" #: cmdline/apt-mark.cc:68 #, c-format @@ -2001,7 +2013,6 @@ msgid "Executing dpkg failed. Are you root?" msgstr "'dpkg' çalıştırılamadı. root olduğunuzdan emin misiniz?" #: cmdline/apt-mark.cc:392 -#, fuzzy msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -2030,11 +2041,16 @@ msgstr "" "Kullanım: apt-mark [seçenekler] {auto|manual} paket1 [paket2 ...]\n" "\n" "apt-mark paketleri otomatik ya da elle kurulmuş olarak işaretlemeye\n" -"yarayan basit bir komut satırı arayüzüdür.\n" +"ve mevcut işaretleri görmeye yarayan basit bir komut satırı arayüzüdür.\n" "\n" "Komutlar:\n" " auto - Belirtilen paketleri otomatik kurulmuş olarak işaretle\n" " manual - Belirtilen paketleri elle kurulmuş olarak işaretle\n" +" hold - Paketi tutulacak şekilde işaretle\n" +" unhold - Paketin tutuluyor işaretini kaldır\n" +" showauto - Otomatik olarak kurulmuş paketlerin listesini görüntüle\n" +" showmanual - Elle kurulmuş paketlerin listesini görüntüle\n" +" showhold - Tutulur durumda olan paketlerin listesini görüntüle\n" "\n" "Seçenekler:\n" " -h Bu yardım metni.\n" @@ -2068,6 +2084,24 @@ msgid "" "\n" " edit-sources - edit the source information file\n" msgstr "" +"Usage: apt [seçenekler] komut\n" +"\n" +"apt için komut satırı arayüzü.\n" +"Temel komutlar: \n" +" list - Paketleri adlarına göre listele\n" +" search - Paket açıklamalarında arama yap\n" +" show - Paket ayrıntılarını görüntüle\n" +"\n" +" update - Mevcut paket listesini güncelle\n" +"\n" +" install - paket kur\n" +" remove - paket kaldır\n" +"\n" +" upgrade - sistemi yükselt (paketleri kurarak ve yükselterek)\n" +" full-upgrade - sistemi yükselt (paketleri kurarak,yükselterek ve " +"kaldırarak)\n" +"\n" +" edit-sources - kaynak bilgi dosyasını düzenle\n" #: methods/cdrom.cc:203 #, c-format @@ -2303,9 +2337,9 @@ msgid "Temporary failure resolving '%s'" msgstr "'%s' çözümlenirken geçici bir sorunla karşılaşıldı" #: methods/connect.cc:209 -#, fuzzy, c-format +#, c-format msgid "System error resolving '%s:%s'" -msgstr "'%s' çözümlenirken geçici bir sorunla karşılaşıldı" +msgstr "'%s:%s' çözümlenirken bir sistem hatası oluştu" #: methods/connect.cc:211 #, c-format @@ -2337,6 +2371,8 @@ msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" +"Temiz-imzalı dosya geçerli değil, '%s' hatası alındı (ağ kimlik doğrulama " +"gerektiriyor mu?)" #: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" @@ -2434,11 +2470,11 @@ msgstr "Bitti" #: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" -msgstr "" +msgstr "Sıralama" #: apt-private/private-list.cc:131 msgid "Listing" -msgstr "" +msgstr "Listeleme" #: apt-private/private-list.cc:164 #, c-format @@ -2446,7 +2482,10 @@ msgid "There is %i additional version. Please use the '-a' switch to see it" msgid_plural "" "There are %i additional versions. Please use the '-a' switch to see them." msgstr[0] "" +"Fazladan %i sürüm daha var. Görmek için '-a' anahtarını kullanabilirsiniz." msgstr[1] "" +"Fazladan %i sürüm daha var. Bu sürümleri görmek için '-a' anahtarını " +"kullanabilirsiniz." #: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." @@ -2481,40 +2520,37 @@ msgstr "Karşılanmayan bağımlılıklar. -f kullanmayı deneyin." #: apt-private/private-output.cc:103 apt-private/private-show.cc:84 #: apt-private/private-show.cc:89 msgid "unknown" -msgstr "" +msgstr "bilinmeyen" #: apt-private/private-output.cc:234 -#, fuzzy, c-format +#, c-format msgid "[installed,upgradable to: %s]" -msgstr " [Kuruldu]" +msgstr "[kurulu,yükseltilebilir: %s]" #: apt-private/private-output.cc:238 -#, fuzzy msgid "[installed,local]" -msgstr " [Kuruldu]" +msgstr "[kurulu,yerel]" #: apt-private/private-output.cc:241 msgid "[installed,auto-removable]" -msgstr "" +msgstr "[kurulu,otomatik-kaldırılabilir]" #: apt-private/private-output.cc:243 -#, fuzzy msgid "[installed,automatic]" -msgstr " [Kuruldu]" +msgstr "[kurulu,otomatik]" #: apt-private/private-output.cc:245 -#, fuzzy msgid "[installed]" -msgstr " [Kuruldu]" +msgstr "[kurulu]" #: apt-private/private-output.cc:249 #, c-format msgid "[upgradable from: %s]" -msgstr "" +msgstr "[şundan yükseltilebilir: %s]" #: apt-private/private-output.cc:253 msgid "[residual-config]" -msgstr "" +msgstr "[artık-yapılandırma]" #: apt-private/private-output.cc:435 #, c-format @@ -2648,11 +2684,15 @@ msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" msgid_plural "" "%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" msgstr[0] "" +"%i paket yükseltilebilir. Bu paketi görmek için 'apt list --upgradable' " +"komutunu çalıştırın.\n" msgstr[1] "" +"%i paket yükseltilebilir. Bu paketleri görmek için 'apt list --upgradable' " +"komutunu çalıştırın.\n" #: apt-private/private-update.cc:94 msgid "All packages are up to date." -msgstr "" +msgstr "Tüm paketler güncel." #: apt-private/private-show.cc:156 #, c-format @@ -2660,11 +2700,13 @@ msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" "There are %i additional records. Please use the '-a' switch to see them." msgstr[0] "" +"Fazladan %i kayıt daha var. Görmek için '-a' anahtarını kullanabilirsiniz." msgstr[1] "" +"Fazladan %i kayıt daha var. Görmek için '-a' anahtarını kullanabilirsiniz." #: apt-private/private-show.cc:163 msgid "not a real package (virtual)" -msgstr "" +msgstr "gerçek bir paket değil (sanal)" #: apt-private/private-install.cc:82 msgid "Internal error, InstallPackages was called with broken packages!" @@ -2968,18 +3010,18 @@ msgid "Install these packages without verification?" msgstr "Paketler doğrulanmadan kurulsun mu?" #: apt-private/private-sources.cc:58 -#, fuzzy, c-format +#, c-format msgid "Failed to parse %s. Edit again? " -msgstr "%s, %s olarak yeniden adlandırılamadı" +msgstr "%s ayrıştırılamadı. Tekrar düzenlemek ister misiniz?" #: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgstr "'%s' dosyası değişti, lütfen 'apt-get update' komutunu çalıştırın." #: apt-private/private-search.cc:51 msgid "Full Text Search" -msgstr "" +msgstr "Tam Metin Arama" #: apt-private/acqprogress.cc:66 msgid "Hit " @@ -3033,9 +3075,9 @@ msgid "Can not read mirror file '%s'" msgstr "Yansı dosyası %s okunamıyor" #: methods/mirror.cc:315 -#, fuzzy, c-format +#, c-format msgid "No entry found in mirror file '%s'" -msgstr "Yansı dosyası %s okunamıyor" +msgstr "'%s' yansı dosyasında hiç girdi bulunmuyor" #: methods/mirror.cc:445 #, c-format @@ -3279,9 +3321,9 @@ msgstr "" " -o=? Ayar seçeneği belirtmeyi sağlar, ör -o dir::cache=/tmp\n" #: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format +#, c-format msgid "Unable to mkstemp %s" -msgstr "%s durum bilgisi alınamadı" +msgstr "mkstemp %s başarısız oldu" #: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" @@ -3427,9 +3469,8 @@ msgid "Unable to open DB file %s: %s" msgstr "Veritabanı dosyası %s açılamadı: %s" #: ftparchive/cachedb.cc:332 -#, fuzzy msgid "Failed to read .dsc" -msgstr "%s bağlantı okuması başarılamadı" +msgstr ".dsc dosyası okunamadı" #: ftparchive/cachedb.cc:365 msgid "Archive has no control record" @@ -3536,9 +3577,9 @@ msgstr "%s açılamıyor" #. skip spaces #. find end of word #: ftparchive/override.cc:68 -#, fuzzy, c-format +#, c-format msgid "Malformed override %s line %llu (%s)" -msgstr "Hatalı geçersiz kılma %s satır %llu #1" +msgstr "Hatalı geçersiz kılma %s satır %llu (%s)" #: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format -- cgit v1.2.3 From 75520f1b36860b9b8220a2048bc41ebf7abf73e1 Mon Sep 17 00:00:00 2001 From: Miroslav Kure <kurem@upcase.inf.upol.cz> Date: Fri, 15 Aug 2014 19:42:41 +0200 Subject: Czech program translation update Closes: 758208 --- po/cs.po | 268 +++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 147 insertions(+), 121 deletions(-) diff --git a/po/cs.po b/po/cs.po index 262db1013..58018bb05 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1,6 +1,6 @@ # Czech translation of APT # This file is put in the public domain. -# Miroslav Kure <kurem@debian.cz>, 2004-2012. +# Miroslav Kure <kurem@debian.cz>, 2004-2014. # # msgid "" @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" "POT-Creation-Date: 2014-07-10 10:53+0200\n" -"PO-Revision-Date: 2012-07-08 13:46+0200\n" +"PO-Revision-Date: 2014-08-15 13:30+0200\n" "Last-Translator: Miroslav Kure <kurem@debian.cz>\n" "Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n" "Language: cs\n" @@ -18,9 +18,9 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n>=2 && n<=4 ? 1 : 2;\n" #: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format +#, c-format msgid "Clean of %s is not supported" -msgstr "Indexový typ souboru „%s“ není podporován" +msgstr "Vyčištění %s není podporováno" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. @@ -49,11 +49,11 @@ msgstr "Nebylo možno vyhodnotit %s." #: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" -msgstr "" +msgstr "Postup: [%3i%%]" #: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" -msgstr "Spouštím dpkg" +msgstr "Spouští se dpkg" #: apt-pkg/init.cc:146 #, c-format @@ -100,9 +100,9 @@ msgid "The method driver %s could not be found." msgstr "Ovladač metody %s nemohl být nalezen." #: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format +#, c-format msgid "Is the package %s installed?" -msgstr "Zkontrolujte, zda je nainstalován balíček „dpkg-dev“.\n" +msgstr "Je balík %s nainstalován?" #: apt-pkg/acquire-worker.cc:169 #, c-format @@ -315,9 +315,8 @@ msgid "Size mismatch" msgstr "Velikosti nesouhlasí" #: apt-pkg/acquire-item.cc:173 -#, fuzzy msgid "Invalid file format" -msgstr "Neplatná operace %s" +msgstr "Neplatná formát souboru" #: apt-pkg/acquire-item.cc:1573 #, c-format @@ -412,12 +411,12 @@ msgstr "Nelze uzamknout adresář %s" #: apt-pkg/acquire.cc:902 #, c-format msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Stahuji soubor %li z %li (%s zbývá)" +msgstr "Stahuje se soubor %li z %li (zbývá %s)" #: apt-pkg/acquire.cc:904 #, c-format msgid "Retrieving file %li of %li" -msgstr "Stahuji soubor %li z %li" +msgstr "Stahuje se soubor %li z %li" #: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format @@ -491,24 +490,24 @@ msgstr "Řádek %u v seznamu zdrojů %s je příliš dlouhý." #: apt-pkg/cdrom.cc:571 msgid "Unmounting CD-ROM...\n" -msgstr "Odpojuji CD-ROM…\n" +msgstr "Odpojuje se CD-ROM…\n" #: apt-pkg/cdrom.cc:586 #, c-format msgid "Using CD-ROM mount point %s\n" -msgstr "Používám přípojný bod %s\n" +msgstr "Používá se přípojný bod %s\n" #: apt-pkg/cdrom.cc:599 msgid "Waiting for disc...\n" -msgstr "Čekám na disk…\n" +msgstr "Čeká se na disk…\n" #: apt-pkg/cdrom.cc:609 msgid "Mounting CD-ROM...\n" -msgstr "Připojuji CD-ROM…\n" +msgstr "Připojuje se CD-ROM…\n" #: apt-pkg/cdrom.cc:620 msgid "Identifying... " -msgstr "Rozpoznávám… " +msgstr "Rozpoznává se… " #: apt-pkg/cdrom.cc:662 #, c-format @@ -517,7 +516,7 @@ msgstr "Uložený název: %s \n" #: apt-pkg/cdrom.cc:680 msgid "Scanning disc for index files...\n" -msgstr "Hledám na disku indexové soubory…\n" +msgstr "Na disku se hledají indexové soubory…\n" #: apt-pkg/cdrom.cc:734 #, c-format @@ -556,11 +555,11 @@ msgstr "" #: apt-pkg/cdrom.cc:819 msgid "Copying package lists..." -msgstr "Kopíruji seznamy balíků…" +msgstr "Kopírují se seznamy balíků…" #: apt-pkg/cdrom.cc:863 msgid "Writing new source list\n" -msgstr "Zapisuji nový seznam balíků\n" +msgstr "Zapisuje se nový seznam balíků\n" #: apt-pkg/cdrom.cc:874 msgid "Source list entries for this disc are:\n" @@ -646,9 +645,9 @@ msgid "Couldn't find any package by regex '%s'" msgstr "Nelze najít balík vyhovující regulárnímu výrazu „%s“" #: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format +#, c-format msgid "Couldn't find any package by glob '%s'" -msgstr "Nelze najít balík vyhovující regulárnímu výrazu „%s“" +msgstr "Nelze najít balík vyhovující masce „%s“" #: apt-pkg/cacheset.cc:626 #, c-format @@ -705,9 +704,9 @@ msgid "Invalid 'Date' entry in Release file %s" msgstr "Neplatná položka „Date“ v Release souboru %s" #: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format +#, c-format msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (zpracování URI)" +msgstr "Zkomolená část %u v seznamu zdrojů %s (zpracování URI)" #: apt-pkg/sourcelist.cc:170 #, c-format @@ -762,7 +761,7 @@ msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (zpracování dist)" #: apt-pkg/sourcelist.cc:335 #, c-format msgid "Opening %s" -msgstr "Otevírám %s" +msgstr "Otevírá se %s" #: apt-pkg/sourcelist.cc:371 #, c-format @@ -775,29 +774,29 @@ msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typ „%s“ na řádce %u v seznamu zdrojů %s není známý" #: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format +#, c-format msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Typ „%s“ na řádce %u v seznamu zdrojů %s není známý" +msgstr "Typ „%s“ v části %u v seznamu zdrojů %s není známý" #: apt-pkg/deb/dpkgpm.cc:95 #, c-format msgid "Installing %s" -msgstr "Instaluji %s" +msgstr "Instaluje se %s" #: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format msgid "Configuring %s" -msgstr "Nastavuji %s" +msgstr "Nastavuje se %s" #: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format msgid "Removing %s" -msgstr "Odstraňuji %s" +msgstr "Odstraňuje se %s" #: apt-pkg/deb/dpkgpm.cc:98 #, c-format msgid "Completely removing %s" -msgstr "Kompletně odstraňuji %s" +msgstr "Kompletně se odstraňuje %s" #: apt-pkg/deb/dpkgpm.cc:99 #, c-format @@ -807,7 +806,7 @@ msgstr "Značím si zmizení %s" #: apt-pkg/deb/dpkgpm.cc:100 #, c-format msgid "Running post-installation trigger %s" -msgstr "Spouštím poinstalační spouštěč %s" +msgstr "Spouští se poinstalační spouštěč %s" #. FIXME: use a better string after freeze #: apt-pkg/deb/dpkgpm.cc:827 @@ -823,17 +822,17 @@ msgstr "Nelze otevřít soubor „%s“" #: apt-pkg/deb/dpkgpm.cc:989 #, c-format msgid "Preparing %s" -msgstr "Připravuji %s" +msgstr "Připravuje se %s" #: apt-pkg/deb/dpkgpm.cc:990 #, c-format msgid "Unpacking %s" -msgstr "Rozbaluji %s" +msgstr "Rozbaluje se %s" #: apt-pkg/deb/dpkgpm.cc:995 #, c-format msgid "Preparing to configure %s" -msgstr "Připravuji nastavení %s" +msgstr "Připravuje se nastavení %s" #: apt-pkg/deb/dpkgpm.cc:997 #, c-format @@ -843,7 +842,7 @@ msgstr "Nainstalován %s" #: apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Preparing for removal of %s" -msgstr "Připravuji odstranění %s" +msgstr "Připravuje se odstranění %s" #: apt-pkg/deb/dpkgpm.cc:1004 #, c-format @@ -853,7 +852,7 @@ msgstr "Odstraněn %s" #: apt-pkg/deb/dpkgpm.cc:1009 #, c-format msgid "Preparing to completely remove %s" -msgstr "Připravuji úplné odstranění %s" +msgstr "Připravuje se úplné odstranění %s" #: apt-pkg/deb/dpkgpm.cc:1010 #, c-format @@ -862,26 +861,26 @@ msgstr "Kompletně odstraněn %s" #: apt-pkg/deb/dpkgpm.cc:1066 msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +msgstr "volání ioctl(TIOCGWINSZ) selhalo" #: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format +#, c-format msgid "Can not write log (%s)" -msgstr "Nelze zapsat do %s" +msgstr "Nelze zapsat log (%s)" #: apt-pkg/deb/dpkgpm.cc:1069 msgid "Is /dev/pts mounted?" -msgstr "" +msgstr "Je /dev/pts připojeno?" #: apt-pkg/deb/dpkgpm.cc:1090 msgid "Is stdout a terminal?" -msgstr "" +msgstr "Je standardní výstup terminál?" #: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 #: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format msgid "Waited for %s but it wasn't there" -msgstr "Čekal jsem na %s, ale nebyl tam" +msgstr "Čekali jsme na %s, ale nebyl tam" #: apt-pkg/deb/dpkgpm.cc:1569 msgid "Operation was interrupted before it could finish" @@ -922,20 +921,19 @@ msgstr "" "je chyba způsobena zcela zaplněnou pamětí." #: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy msgid "" "No apport report written because the error message indicates an issue on the " "local system" msgstr "" "Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje, že " -"je chyba způsobena zcela zaplněným diskem." +"je chyba na lokálním systému." #: apt-pkg/deb/dpkgpm.cc:1685 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" "Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje " -"chybu V/V dpkg." +"V/V chybu dpkg." #: apt-pkg/deb/debsystem.cc:91 #, c-format @@ -993,7 +991,7 @@ msgstr "Výběr %s nenalezen" #: apt-pkg/contrib/fileutl.cc:190 #, c-format msgid "Not using locking for read only lock file %s" -msgstr "Nepoužívám zamykání pro zámkový soubor %s, který je pouze pro čtení" +msgstr "Nepoužívá se zamykání pro zámkový soubor %s, který je pouze pro čtení" #: apt-pkg/contrib/fileutl.cc:195 #, c-format @@ -1003,7 +1001,7 @@ msgstr "Nešlo otevřít zámkový soubor %s" #: apt-pkg/contrib/fileutl.cc:218 #, c-format msgid "Not using locking for nfs mounted lock file %s" -msgstr "Nepoužívám zamykání pro zámkový soubor %s připojený přes nfs" +msgstr "Nepoužívá se zamykání pro zámkový soubor %s připojený přes nfs" #: apt-pkg/contrib/fileutl.cc:223 #, c-format @@ -1090,12 +1088,12 @@ msgstr "Chyba čtení" #: apt-pkg/contrib/fileutl.cc:1514 #, c-format msgid "read, still have %llu to read but none left" -msgstr "čtení, stále mám k přečtení %llu, ale už nic nezbývá" +msgstr "čtení, stále se má přečíst %llu, ale už nic nezbývá" #: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 #, c-format msgid "write, still have %llu to write but couldn't" -msgstr "zápis, stále mám %llu k zápisu, ale nejde to" +msgstr "zápis, stále se má zapsat %llu, ale nejde to" #: apt-pkg/contrib/fileutl.cc:1915 #, c-format @@ -1207,7 +1205,7 @@ msgstr "Nerozpoznaná zkratka typu: „%c“" #: apt-pkg/contrib/configuration.cc:633 #, c-format msgid "Opening configuration file %s" -msgstr "Otevírám konfigurační soubor %s" +msgstr "Otevírá se konfigurační soubor %s" #: apt-pkg/contrib/configuration.cc:801 #, c-format @@ -1539,6 +1537,9 @@ msgid "" "See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " "mount point." msgstr "" +"Na výchozím přípojném bodu nebylo rozpoznáno/nalezeno žádné CD-ROM.\n" +"Můžete zkusit zadat přípojný bod CD-ROM volbou --cdrom.\n" +"Více o rozpoznávání CD-ROM a přípojných bodech naleznete v „man apt-cdrom“." #: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." @@ -1577,19 +1578,19 @@ msgstr "" " -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n" #: cmdline/apt-get.cc:245 -#, fuzzy, c-format +#, c-format msgid "Can not find a package for architecture '%s'" -msgstr "Nelze najít balík vyhovující regulárnímu výrazu „%s“" +msgstr "Nelze najít balík pro architekturu „%s“" #: cmdline/apt-get.cc:327 -#, fuzzy, c-format +#, c-format msgid "Can not find a package '%s' with version '%s'" -msgstr "Nelze najít balík vyhovující regulárnímu výrazu „%s“" +msgstr "Nelze najít balík „%s“ s verzí „%s“" #: cmdline/apt-get.cc:330 -#, fuzzy, c-format +#, c-format msgid "Can not find a package '%s' with release '%s'" -msgstr "Nelze najít balík vyhovující regulárnímu výrazu „%s“" +msgstr "Nelze najít balík „%s“ z vydání „%s“" #: cmdline/apt-get.cc:367 #, c-format @@ -1597,9 +1598,9 @@ msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Vybírám „%s“ jako zdrojový balík místo „%s“\n" #: cmdline/apt-get.cc:423 -#, fuzzy, c-format +#, c-format msgid "Can not find version '%s' of package '%s'" -msgstr "Ignoruje se nedostupná verze „%s“ balíku „%s“" +msgstr "Nelze najít verzi „%s“ balíku „%s“" #: cmdline/apt-get.cc:454 #, c-format @@ -1665,7 +1666,7 @@ msgstr "" #: cmdline/apt-get.cc:843 #, c-format msgid "Skipping already downloaded file '%s'\n" -msgstr "Přeskakuji dříve stažený soubor „%s“\n" +msgstr "Přeskakuje se dříve stažený soubor „%s“\n" #: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 #: apt-private/private-install.cc:187 apt-private/private-install.cc:190 @@ -1683,14 +1684,14 @@ msgstr "Na %s nemáte dostatek volného místa" #: cmdline/apt-get.cc:891 #, c-format msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Potřebuji stáhnout %sB/%sB zdrojových archivů.\n" +msgstr "Nutno stáhnout %sB/%sB zdrojových archivů.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB #: cmdline/apt-get.cc:896 #, c-format msgid "Need to get %sB of source archives.\n" -msgstr "Potřebuji stáhnout %sB zdrojových archivů.\n" +msgstr "Nutno stáhnout %sB zdrojových archivů.\n" #: cmdline/apt-get.cc:902 #, c-format @@ -1708,7 +1709,7 @@ msgstr "Stahování dokončeno v režimu pouze stáhnout" #: cmdline/apt-get.cc:950 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Přeskakuji rozbalení již rozbaleného zdroje v %s\n" +msgstr "Přeskakuje se rozbalení již rozbaleného zdroje v %s\n" #: cmdline/apt-get.cc:962 #, c-format @@ -1718,7 +1719,7 @@ msgstr "Příkaz pro rozbalení „%s“ selhal.\n" #: cmdline/apt-get.cc:963 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Zkontrolujte, zda je nainstalován balíček „dpkg-dev“.\n" +msgstr "Zkontrolujte, zda je nainstalován balík „dpkg-dev“.\n" #: cmdline/apt-get.cc:991 #, c-format @@ -1905,13 +1906,12 @@ msgstr "" " Tato APT má schopnosti svaté krávy.\n" #: cmdline/apt-helper.cc:35 -#, fuzzy msgid "Must specify at least one pair url/filename" -msgstr "Musíte zadat aspoň jeden balík, pro který se stáhnou zdrojové texty" +msgstr "Musíte zadat aspoň jeden pár url/jméno souboru" #: cmdline/apt-helper.cc:53 msgid "Download Failed" -msgstr "" +msgstr "Stažení selhalo" #: cmdline/apt-helper.cc:66 msgid "" @@ -1925,6 +1925,15 @@ msgid "" "\n" " This APT helper has Super Meep Powers.\n" msgstr "" +"Použití: apt-helper [volby] příkaz\n" +" apt-helper [volby] download-file uri cílová_cesta\n" +"\n" +"apt-helper je interní pomocník pro apt\n" +"\n" +"Příkazy:\n" +" download-file - stáhne zadané uri do cílové cesty\n" +"\n" +" Tento APT pomocník má schopnosti svatého čehokoliv.\n" #: cmdline/apt-mark.cc:68 #, c-format @@ -1966,7 +1975,6 @@ msgid "Executing dpkg failed. Are you root?" msgstr "Spuštění dpkg selhalo. Jste root?" #: cmdline/apt-mark.cc:392 -#, fuzzy msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -2000,6 +2008,11 @@ msgstr "" "Příkazy:\n" " auto - Označí dané balíky jako instalované automaticky\n" " manual - Označí dané balíky jako instalované ručně\n" +" hold - Označí balík jako podržený v aktuální verzi\n" +" unhold - Zruší podržení balíku v aktuální verzi\n" +" showauto - Vypíše seznam balíků instalovaných automaticky\n" +" showmanual - Vypíše seznam balíků instalovaných ručně\n" +" showhold - Vypíše seznam podržených balíků\n" "\n" "Volby:\n" " -h Tato nápověda.\n" @@ -2032,6 +2045,23 @@ msgid "" "\n" " edit-sources - edit the source information file\n" msgstr "" +"Použití: apt [volby] příkaz\n" +"\n" +"Řádkové rozhraní pro apt.\n" +"Základní příkazy:\n" +" list - vypíše balíky podle jmen\n" +" search - hledá v popisech balíků\n" +" show - zobrazí podrobnosti balíku\n" +"\n" +" update - aktualizuje seznam dostupných balíků\n" +"\n" +" install - nainstaluje balíky\n" +" remove - odstraní balíky\n" +"\n" +" upgrade - aktualizuje systém instalací/aktualizací balíků\n" +" full-upgrade - aktualizuje systém instalací/aktualizací/odstraněním balíků\n" +"\n" +" edit-sources - upraví soubor se zdroji balíků\n" #: methods/cdrom.cc:203 #, c-format @@ -2079,7 +2109,7 @@ msgstr "Neplatné URI, lokální URI nesmí začínat na //" #. Login must be before getpeername otherwise dante won't work. #: methods/ftp.cc:177 msgid "Logging in" -msgstr "Přihlašuji se" +msgstr "Přihlašování" #: methods/ftp.cc:183 msgid "Unable to determine the peer name" @@ -2222,7 +2252,7 @@ msgstr "Nelze vyvolat " #: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" -msgstr "Připojuji se k %s (%s)" +msgstr "Připojování k %s (%s)" #: methods/connect.cc:87 #, c-format @@ -2254,7 +2284,7 @@ msgstr "Nelze se připojit k %s:%s (%s)." #: methods/connect.cc:154 methods/rsh.cc:439 #, c-format msgid "Connecting to %s" -msgstr "Připojuji se k %s" +msgstr "Připojování k %s" #: methods/connect.cc:180 methods/connect.cc:199 #, c-format @@ -2267,9 +2297,9 @@ msgid "Temporary failure resolving '%s'" msgstr "Dočasné selhání při zjišťování „%s“" #: methods/connect.cc:209 -#, fuzzy, c-format +#, c-format msgid "System error resolving '%s:%s'" -msgstr "Něco hodně ošklivého se přihodilo při překladu „%s:%s“ (%i - %s)" +msgstr "Systémová chyba při překladu „%s:%s“" #: methods/connect.cc:211 #, c-format @@ -2301,6 +2331,7 @@ msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" +"Podepsaný soubor není platný, obdrženo „%s“ (vyžaduje přístup na síť ověření?)" #: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" @@ -2352,7 +2383,7 @@ msgstr "Chyba zápisu do výstupního souboru" #: methods/server.cc:51 msgid "Waiting for headers" -msgstr "Čekám na hlavičky" +msgstr "Čeká se na hlavičky" #: methods/server.cc:109 msgid "Bad header line" @@ -2392,7 +2423,7 @@ msgstr "Vnitřní chyba" #: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " -msgstr "Propočítávám aktualizaci… " +msgstr "Propočítává se aktualizace… " #: apt-private/private-upgrade.cc:28 msgid "Done" @@ -2400,24 +2431,24 @@ msgstr "Hotovo" #: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 msgid "Sorting" -msgstr "" +msgstr "Řadí se" #: apt-private/private-list.cc:131 msgid "Listing" -msgstr "" +msgstr "Vypisuje se" #: apt-private/private-list.cc:164 #, c-format msgid "There is %i additional version. Please use the '-a' switch to see it" msgid_plural "" "There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Existuje %i další verze. Zobrazíte ji přepínačem „-a“." +msgstr[1] "Existují %i další verze. Zobrazíte je přepínačem „-a“." +msgstr[2] "Existuje %i dalších verzí. Zobrazíte je přepínačem „-a“." #: apt-private/private-cachefile.cc:93 msgid "Correcting dependencies..." -msgstr "Opravuji závislosti…" +msgstr "Opravují se závislosti…" #: apt-private/private-cachefile.cc:96 msgid " failed." @@ -2446,40 +2477,37 @@ msgstr "Nesplněné závislosti. Zkuste použít -f." #: apt-private/private-output.cc:103 apt-private/private-show.cc:84 #: apt-private/private-show.cc:89 msgid "unknown" -msgstr "" +msgstr "neznámá" #: apt-private/private-output.cc:234 -#, fuzzy, c-format +#, c-format msgid "[installed,upgradable to: %s]" -msgstr "[Instalovaný]" +msgstr "[instalovaný,aktualizovatelný na: %s]" #: apt-private/private-output.cc:238 -#, fuzzy msgid "[installed,local]" -msgstr "[Instalovaný]" +msgstr "[instalovaný,lokální]" #: apt-private/private-output.cc:241 msgid "[installed,auto-removable]" -msgstr "" +msgstr "[instalovaný,automaticky-odstranitelný]" #: apt-private/private-output.cc:243 -#, fuzzy msgid "[installed,automatic]" -msgstr "[Instalovaný]" +msgstr "[instalovaný,automaticky]" #: apt-private/private-output.cc:245 -#, fuzzy msgid "[installed]" -msgstr "[Instalovaný]" +msgstr "[instalovaný]" #: apt-private/private-output.cc:249 #, c-format msgid "[upgradable from: %s]" -msgstr "" +msgstr "[aktualizovatelný z: %s]" #: apt-private/private-output.cc:253 msgid "[residual-config]" -msgstr "" +msgstr "[zbytkové-konfigurační-coubory]" #: apt-private/private-output.cc:435 #, c-format @@ -2613,25 +2641,28 @@ msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" msgid_plural "" "%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" msgstr[0] "" +"%i balík může být aktualizován. Zobrazíte jej „apt list --upgradable“.\n" msgstr[1] "" +"%i balíky mohou být aktualizovány. Zobrazíte je „apt list --upgradable“.\n" msgstr[2] "" +"%i balíků může být aktualizováno. Zobrazíte je „apt list --upgradable“.\n" #: apt-private/private-update.cc:94 msgid "All packages are up to date." -msgstr "" +msgstr "Všechny balíky jsou aktuální." #: apt-private/private-show.cc:156 #, c-format msgid "There is %i additional record. Please use the '-a' switch to see it" msgid_plural "" "There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Existuje %i další záznam. Zobrazíte jej přepínačem „-a“." +msgstr[1] "Existují %i další záznamy. Zobrazíte je přepínačem „-a“." +msgstr[2] "Existuje %i dalších záznamů. Zobrazíte je přepínačem „-a“." #: apt-private/private-show.cc:163 msgid "not a real package (virtual)" -msgstr "" +msgstr "není skutečný balík (virtuální)" #: apt-private/private-install.cc:82 msgid "Internal error, InstallPackages was called with broken packages!" @@ -2655,14 +2686,14 @@ msgstr "" #: apt-private/private-install.cc:155 #, c-format msgid "Need to get %sB/%sB of archives.\n" -msgstr "Potřebuji stáhnout %sB/%sB archivů.\n" +msgstr "Nutno stáhnout %sB/%sB archivů.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB #: apt-private/private-install.cc:160 #, c-format msgid "Need to get %sB of archives.\n" -msgstr "Potřebuji stáhnout %sB archivů.\n" +msgstr "Nutno stáhnout %sB archivů.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB @@ -2738,7 +2769,7 @@ msgstr "Nelze opravit chybějící balíky." #: apt-private/private-install.cc:330 msgid "Aborting install." -msgstr "Přerušuji instalaci." +msgstr "Instalace se přerušuje." #: apt-private/private-install.cc:366 msgid "" @@ -2861,13 +2892,13 @@ msgstr "Doporučované balíky:" #: apt-private/private-install.cc:825 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Přeskakuji %s, protože je již nainstalován.\n" +msgstr "%s bude přeskočen, protože je již nainstalován.\n" #: apt-private/private-install.cc:829 #, c-format msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" -"Přeskakuji %s, protože není nainstalován a vyžadovány jsou pouze " +"%s bude přeskočen, protože není nainstalován a vyžadovány jsou pouze " "aktualizace.\n" #: apt-private/private-install.cc:841 @@ -2931,18 +2962,18 @@ msgid "Install these packages without verification?" msgstr "Instalovat tyto balíky bez ověření?" #: apt-private/private-sources.cc:58 -#, fuzzy, c-format +#, c-format msgid "Failed to parse %s. Edit again? " -msgstr "Selhalo přejmenování %s na %s" +msgstr "Nepodařilo se zpracovat %s. Zkusit znovu upravit?" #: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgstr "Soubor „%s“ se změnil, spusťte prosím „apt-get update“." #: apt-private/private-search.cc:51 msgid "Full Text Search" -msgstr "" +msgstr "Fulltextové hledání" #: apt-private/acqprogress.cc:66 msgid "Hit " @@ -2996,9 +3027,9 @@ msgid "Can not read mirror file '%s'" msgstr "Nelze číst soubor se zrcadly „%s“" #: methods/mirror.cc:315 -#, fuzzy, c-format +#, c-format msgid "No entry found in mirror file '%s'" -msgstr "Nelze číst soubor se zrcadly „%s“" +msgstr "V souboru se zrcadly „%s“ nebyl nalezen žádný záznam" #: methods/mirror.cc:445 #, c-format @@ -3045,7 +3076,7 @@ msgstr "chyby nad touto hláškou. Opravte je a poté znovu spusťte [I]nstalova #: dselect/update:30 msgid "Merging available information" -msgstr "Slučuji dostupné informace" +msgstr "Slučují se dostupné informace" #: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" @@ -3086,7 +3117,7 @@ msgstr "Cesta %s je příliš dlouhá" #: apt-inst/extract.cc:132 #, c-format msgid "Unpacking %s more than once" -msgstr "Rozbaluji %s vícekrát" +msgstr "%s se rozbaluje vícekrát" #: apt-inst/extract.cc:142 #, c-format @@ -3236,9 +3267,9 @@ msgstr "" " -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n" #: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format +#, c-format msgid "Unable to mkstemp %s" -msgstr "Nelze vyhodnotit %s" +msgstr "Nelze zavolat mkstemp %s" #: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" @@ -3381,9 +3412,8 @@ msgid "Unable to open DB file %s: %s" msgstr "Nelze otevřít DB soubor %s: %s" #: ftparchive/cachedb.cc:332 -#, fuzzy msgid "Failed to read .dsc" -msgstr "Nelze přečíst link %s" +msgstr "Nelze přečíst .dsc" #: ftparchive/cachedb.cc:365 msgid "Archive has no control record" @@ -3490,9 +3520,9 @@ msgstr "Nelze otevřít %s" #. skip spaces #. find end of word #: ftparchive/override.cc:68 -#, fuzzy, c-format +#, c-format msgid "Malformed override %s line %llu (%s)" -msgstr "Zkomolený override soubor %s, řádek %llu #1" +msgstr "Zkomolený override soubor %s, řádek %llu (%s)" #: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format @@ -3606,10 +3636,6 @@ msgstr "" " -c=? Načte tento konfigurační soubor\n" " -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n" -#, fuzzy -#~ msgid "Internal error, Upgrade broke stuff" -#~ msgstr "Vnitřní chyba, AllUpgrade pokazil věci" - #~ msgid "%s not a valid DEB package." #~ msgstr "%s není platný DEB balík." -- cgit v1.2.3 From c53cf70da31a3c59675af8c5425b54433793dc8d Mon Sep 17 00:00:00 2001 From: David Kalnischkies <david@kalnischkies.de> Date: Sat, 16 Aug 2014 13:29:10 +0200 Subject: add dpkg::source-options for dpkg-source invocation dpkg-source can be told to enforce signature checks with --require-valid-signature, but while this isn't feasible as default for Debian itself at the moment, a local admin should be able to use it. This commit also fixes the size limit on the construction of the command being called for dpkg-source and dpkg-buildpackage. Closes: 757534 --- cmdline/apt-get.cc | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index a58386eb0..845d67d2b 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -953,18 +953,19 @@ static bool DoSource(CommandLine &CmdL) else { // Call dpkg-source - char S[500]; - snprintf(S,sizeof(S),"%s -x %s", + std::string const sourceopts = _config->Find("DPkg::Source-Options", "-x"); + std::string S; + strprintf(S, "%s %s %s", _config->Find("Dir::Bin::dpkg-source","dpkg-source").c_str(), - Dsc[I].Dsc.c_str()); - if (system(S) != 0) + sourceopts.c_str(), Dsc[I].Dsc.c_str()); + if (system(S.c_str()) != 0) { - fprintf(stderr,_("Unpack command '%s' failed.\n"),S); - fprintf(stderr,_("Check if the 'dpkg-dev' package is installed.\n")); + fprintf(stderr, _("Unpack command '%s' failed.\n"), S.c_str()); + fprintf(stderr, _("Check if the 'dpkg-dev' package is installed.\n")); _exit(1); - } + } } - + // Try to compile it with dpkg-buildpackage if (_config->FindB("APT::Get::Compile",false) == true) { @@ -980,20 +981,20 @@ static bool DoSource(CommandLine &CmdL) buildopts.append(_config->Find("DPkg::Build-Options","-b -uc")); // Call dpkg-buildpackage - char S[500]; - snprintf(S,sizeof(S),"cd %s && %s %s", + std::string S; + strprintf(S, "cd %s && %s %s", Dir.c_str(), _config->Find("Dir::Bin::dpkg-buildpackage","dpkg-buildpackage").c_str(), buildopts.c_str()); - - if (system(S) != 0) + + if (system(S.c_str()) != 0) { - fprintf(stderr,_("Build command '%s' failed.\n"),S); + fprintf(stderr, _("Build command '%s' failed.\n"), S.c_str()); _exit(1); - } - } + } + } } - + _exit(0); } -- cgit v1.2.3 From 40faab46c4d5fa766c80090f0fdb54120dbb37f2 Mon Sep 17 00:00:00 2001 From: David Kalnischkies <david@kalnischkies.de> Date: Sat, 16 Aug 2014 16:33:46 +0200 Subject: support versioned provides as implemented by dpkg APT supported versioned provides for a long while in an attempt to get it working with rpm. While this support is old, we can be relatively sure that it works as versioned provides are used internally to make Multi-Arch:foreign work. Previous versions of apt will print a warning indicating that the versioned provides is ignored, so that something which "Provides: foo (= 2)" doesn't provide anything. Note that dpkg does allow only a equals-relation in the provides line as anything else is deemed too complex. apt doesn't support anything else either and such a support would require potentially big changes. Closes: 758153 --- apt-pkg/deb/deblistparser.cc | 4 +- .../test-bug-758153-versioned-provides-support | 137 +++++++++++++++++++++ 2 files changed, 139 insertions(+), 2 deletions(-) create mode 100755 test/integration/test-bug-758153-versioned-provides-support diff --git a/apt-pkg/deb/deblistparser.cc b/apt-pkg/deb/deblistparser.cc index 28c898542..7d4fd52cf 100644 --- a/apt-pkg/deb/deblistparser.cc +++ b/apt-pkg/deb/deblistparser.cc @@ -803,8 +803,8 @@ bool debListParser::ParseProvides(pkgCache::VerIterator &Ver) Start = ParseDepends(Start,Stop,Package,Version,Op); if (Start == 0) return _error->Error("Problem parsing Provides line"); - if (Op != pkgCache::Dep::NoOp) { - _error->Warning("Ignoring Provides line with DepCompareOp for package %s", Package.c_str()); + if (Op != pkgCache::Dep::NoOp && Op != pkgCache::Dep::Equals) { + _error->Warning("Ignoring Provides line with non-equal DepCompareOp for package %s", Package.c_str()); } else if ((Ver->MultiArch & pkgCache::Version::Foreign) == pkgCache::Version::Foreign) { if (NewProvidesAllArch(Ver, Package, Version) == false) return false; diff --git a/test/integration/test-bug-758153-versioned-provides-support b/test/integration/test-bug-758153-versioned-provides-support new file mode 100755 index 000000000..2904ae5a1 --- /dev/null +++ b/test/integration/test-bug-758153-versioned-provides-support @@ -0,0 +1,137 @@ +#!/bin/sh +set -e + +# dpkg implements versioned provides in commit 5bb02fe80e9f40dcad9703a72f67cf615ff217b5 +# but previous versions seem to allow parsing, working and ignoring it. + +TESTDIR=$(readlink -f $(dirname $0)) +. $TESTDIR/framework +setupenvironment +configarchitecture 'amd64' 'i386' + +insertinstalledpackage 'webapp' 'all' '1' 'Depends: httpd' +insertinstalledpackage 'webserver' 'all' '1' 'Provides: httpd' + +insertpackage 'unstable' 'webapp' 'all' '2' 'Depends: httpd (>= 2)' +insertpackage 'unstable' 'webserver' 'amd64' '2' 'Provides: httpd (= 2)' +insertpackage 'unstable' 'foreign-webserver' 'i386' '2' 'Multi-Arch: foreign +Provides: httpd (= 2)' + +insertpackage 'experimental' 'webapp' 'all' '3' 'Depends: httpd (>= 1.5)' +insertpackage 'experimental' 'webserver' 'amd64' '3' 'Provides: httpd (= 3)' + +insertpackage 'experimental' 'foreign-webserver' 'i386' '4' 'Multi-Arch: foreign +Provides: httpd (= 4)' +insertpackage 'experimental' 'cool-webapp' 'all' '4' 'Depends: httpd (>= 4)' + +setupaptarchive + +testequal 'Reading package lists... +Building dependency tree... +The following packages will be upgraded: + webapp webserver +2 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. +Inst webserver [1] (2 unstable [amd64]) +Inst webapp [1] (2 unstable [all]) +Conf webserver (2 unstable [amd64]) +Conf webapp (2 unstable [all])' aptget dist-upgrade -s + +testequal 'Reading package lists... +Building dependency tree... +The following packages will be upgraded: + webapp webserver +2 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. +Inst webserver [1] (2 unstable [amd64]) +Inst webapp [1] (2 unstable [all]) +Conf webserver (2 unstable [amd64]) +Conf webapp (2 unstable [all])' aptget install webapp webserver -s + +testequal 'Reading package lists... +Building dependency tree... +The following packages will be upgraded: + webapp webserver +2 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. +Inst webserver [1] (2 unstable [amd64]) +Inst webapp [1] (3 experimental [all]) +Conf webserver (2 unstable [amd64]) +Conf webapp (3 experimental [all])' aptget install webapp=3 webserver -s + +testequal 'Reading package lists... +Building dependency tree... +The following packages will be upgraded: + webapp webserver +2 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. +Inst webserver [1] (3 experimental [amd64]) +Inst webapp [1] (2 unstable [all]) +Conf webserver (3 experimental [amd64]) +Conf webapp (2 unstable [all])' aptget install webapp webserver=3 -s + +testequal 'Reading package lists... +Building dependency tree... +The following NEW packages will be installed: + foreign-webserver:i386 +The following packages will be upgraded: + webapp +1 upgraded, 1 newly installed, 0 to remove and 1 not upgraded. +Inst foreign-webserver:i386 (2 unstable [i386]) +Inst webapp [1] (2 unstable [all]) +Conf foreign-webserver:i386 (2 unstable [i386]) +Conf webapp (2 unstable [all])' aptget install webapp foreign-webserver:i386 -s + +testequal 'Reading package lists... +Building dependency tree... +The following NEW packages will be installed: + foreign-webserver:i386 +The following packages will be upgraded: + webapp +1 upgraded, 1 newly installed, 0 to remove and 1 not upgraded. +Inst foreign-webserver:i386 (2 unstable [i386]) +Inst webapp [1] (3 experimental [all]) +Conf foreign-webserver:i386 (2 unstable [i386]) +Conf webapp (3 experimental [all])' aptget install webapp=3 foreign-webserver:i386 -s + +testequal 'Reading package lists... +Building dependency tree... +The following NEW packages will be installed: + foreign-webserver:i386 +The following packages will be upgraded: + webapp +1 upgraded, 1 newly installed, 0 to remove and 1 not upgraded. +Inst foreign-webserver:i386 (4 experimental [i386]) +Inst webapp [1] (2 unstable [all]) +Conf foreign-webserver:i386 (4 experimental [i386]) +Conf webapp (2 unstable [all])' aptget install webapp foreign-webserver:i386=4 -s + +testequal 'Reading package lists... +Building dependency tree... +Some packages could not be installed. This may mean that you have +requested an impossible situation or if you are using the unstable +distribution that some required packages have not yet been created +or been moved out of Incoming. +The following information may help to resolve the situation: + +The following packages have unmet dependencies: + cool-webapp : Depends: httpd (>= 4) +E: Unable to correct problems, you have held broken packages.' aptget install cool-webapp -s + +testequal 'Reading package lists... +Building dependency tree... +Some packages could not be installed. This may mean that you have +requested an impossible situation or if you are using the unstable +distribution that some required packages have not yet been created +or been moved out of Incoming. +The following information may help to resolve the situation: + +The following packages have unmet dependencies: + cool-webapp : Depends: httpd (>= 4) +E: Unable to correct problems, you have held broken packages.' aptget install cool-webapp foreign-webserver:i386 -s + +testequal 'Reading package lists... +Building dependency tree... +The following NEW packages will be installed: + cool-webapp foreign-webserver:i386 +0 upgraded, 2 newly installed, 0 to remove and 2 not upgraded. +Inst foreign-webserver:i386 (4 experimental [i386]) +Inst cool-webapp (4 experimental [all]) +Conf foreign-webserver:i386 (4 experimental [i386]) +Conf cool-webapp (4 experimental [all])' aptget install cool-webapp foreign-webserver:i386=4 -s -- cgit v1.2.3 From 031dd14ff98d31d454652b400425caaa6d0f2367 Mon Sep 17 00:00:00 2001 From: Michael Vogt <mvo@debian.org> Date: Wed, 27 Aug 2014 17:14:51 -0700 Subject: prepare 1.0.7 --- debian/changelog | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/debian/changelog b/debian/changelog index cf838bc40..d940e853b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,36 @@ +apt (1.0.7) unstable; urgency=medium + + [ Michael Vogt ] + * add REAMDE.md + * StringToBool: only act if the entire string is consumed by strtol() + * Use @builddeps@ in the debian/tests/control file + * apt-pkg/acquire-item.cc: make pkgAcqDiffIndex more uniform + * Fix SmartConfigure to ignore ordering of packages that are already valid + * doc/apt.8.xml: fix typo, thanks to Jakub Wilk (Closes: #756056) + * doc/po/pt.po: updated, thanks to Américo Monteir (Closes: #756200) + + [ victory ] + * Update Japanese documentation translation (Closes: #754817) + + [ Trần Ngọc Quân ] + * l10n: vi.po (636t): Update one new string + + [ Julian Andres Klode ] + * Fix debListParser to accept "no" as a value for the Multi-Arch field + (Closes: #759099) + + [ Mert Dirik ] + * Turkish program translation update (Closes: 756710) + + [ Miroslav Kure ] + * Czech program translation update (Closes: 758208) + + [ David Kalnischkies ] + * add dpkg::source-options for dpkg-source invocation (Closes: 757534) + * support versioned provides as implemented by dpkg (Closes: 758153) + + -- Michael Vogt <mvo@debian.org> Wed, 27 Aug 2014 17:11:42 -0700 + apt (1.0.6) unstable; urgency=medium [ Chris Leick ] -- cgit v1.2.3 From 9de269457707c816b3dc88729ced8410f981cd2a Mon Sep 17 00:00:00 2001 From: Michael Vogt <mvo@debian.org> Date: Thu, 28 Aug 2014 00:24:03 +0000 Subject: releasing 1.0.7 --- configure.ac | 2 +- doc/apt-verbatim.ent | 2 +- doc/po/apt-doc.pot | 1574 ++++++++-------- doc/po/de.po | 1628 ++++++++-------- doc/po/es.po | 1622 ++++++++-------- doc/po/fr.po | 1622 ++++++++-------- doc/po/it.po | 1622 ++++++++-------- doc/po/ja.po | 1752 ++++++++--------- doc/po/pl.po | 1622 ++++++++-------- doc/po/pt.po | 2223 ++++++++++------------ doc/po/pt_BR.po | 1622 ++++++++-------- po/ar.po | 4365 +++++++++++++++++++++--------------------- po/ast.po | 4977 ++++++++++++++++++++++++------------------------ po/bg.po | 5023 ++++++++++++++++++++++++------------------------ po/bs.po | 3949 +++++++++++++++++++------------------- po/ca.po | 5027 ++++++++++++++++++++++++------------------------ po/cs.po | 5050 ++++++++++++++++++++++++------------------------- po/cy.po | 4977 ++++++++++++++++++++++++------------------------ po/da.po | 5025 ++++++++++++++++++++++++------------------------ po/de.po | 5087 ++++++++++++++++++++++++------------------------- po/dz.po | 4897 +++++++++++++++++++++++------------------------ po/el.po | 4907 +++++++++++++++++++++++------------------------ po/es.po | 5035 ++++++++++++++++++++++++------------------------- po/eu.po | 4917 +++++++++++++++++++++++------------------------ po/fi.po | 4887 +++++++++++++++++++++++------------------------ po/fr.po | 5115 ++++++++++++++++++++++++------------------------- po/gl.po | 4997 ++++++++++++++++++++++++------------------------ po/hu.po | 4985 ++++++++++++++++++++++++------------------------ po/it.po | 5135 +++++++++++++++++++++++++------------------------- po/ja.po | 5049 ++++++++++++++++++++++++------------------------- po/km.po | 4827 +++++++++++++++++++++++------------------------ po/ko.po | 4895 +++++++++++++++++++++++------------------------ po/ku.po | 4115 ++++++++++++++++++++-------------------- po/lt.po | 4383 +++++++++++++++++++++--------------------- po/mr.po | 4877 +++++++++++++++++++++++------------------------ po/nb.po | 4929 ++++++++++++++++++++++++------------------------ po/ne.po | 4845 +++++++++++++++++++++++------------------------ po/nl.po | 5041 ++++++++++++++++++++++++------------------------- po/nn.po | 4905 +++++++++++++++++++++++------------------------ po/pl.po | 5039 ++++++++++++++++++++++++------------------------- po/pt.po | 5041 ++++++++++++++++++++++++------------------------- po/pt_BR.po | 4899 +++++++++++++++++++++++------------------------ po/ro.po | 4957 ++++++++++++++++++++++++------------------------ po/ru.po | 5027 ++++++++++++++++++++++++------------------------ po/sk.po | 4985 ++++++++++++++++++++++++------------------------ po/sl.po | 4979 ++++++++++++++++++++++++------------------------ po/sv.po | 4983 ++++++++++++++++++++++++------------------------ po/th.po | 4905 +++++++++++++++++++++++------------------------ po/tl.po | 4971 ++++++++++++++++++++++++------------------------ po/tr.po | 5055 ++++++++++++++++++++++++------------------------- po/uk.po | 5089 ++++++++++++++++++++++++------------------------- po/vi.po | 5069 ++++++++++++++++++++++++------------------------- po/zh_CN.po | 4837 +++++++++++++++++++++++------------------------ po/zh_TW.po | 4847 +++++++++++++++++++++++------------------------ 54 files changed, 113016 insertions(+), 113179 deletions(-) diff --git a/configure.ac b/configure.ac index e605528f4..98fd89213 100644 --- a/configure.ac +++ b/configure.ac @@ -18,7 +18,7 @@ AC_CONFIG_AUX_DIR(buildlib) AC_CONFIG_HEADER(include/config.h:buildlib/config.h.in include/apti18n.h:buildlib/apti18n.h.in) PACKAGE="apt" -PACKAGE_VERSION="1.0.6" +PACKAGE_VERSION="1.0.7" PACKAGE_MAIL="APT Development Team <deity@lists.debian.org>" AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE") AC_DEFINE_UNQUOTED(PACKAGE_VERSION,"$PACKAGE_VERSION") diff --git a/doc/apt-verbatim.ent b/doc/apt-verbatim.ent index b9d3d11da..e769eed22 100644 --- a/doc/apt-verbatim.ent +++ b/doc/apt-verbatim.ent @@ -225,7 +225,7 @@ "> <!-- this will be updated by 'prepare-release' --> -<!ENTITY apt-product-version "1.0.6"> +<!ENTITY apt-product-version "1.0.7"> <!-- (Code)names for various things used all over the place --> <!ENTITY oldstable-codename "squeeze"> diff --git a/doc/po/apt-doc.pot b/doc/po/apt-doc.pot index b17bde1e1..b18552933 100644 --- a/doc/po/apt-doc.pot +++ b/doc/po/apt-doc.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: apt-doc 1.0.6\n" +"Project-Id-Version: apt-doc 1.0.7\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -497,27 +497,27 @@ msgid "" msgstr "" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt.8.xml:25 apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 apt-mark.8.xml:28 apt-secure.8.xml:27 apt-cdrom.8.xml:27 apt-config.8.xml:28 +#: apt.8.xml:21 apt-get.8.xml:22 apt-cache.8.xml:22 apt-key.8.xml:21 apt-mark.8.xml:22 apt-secure.8.xml:21 apt-cdrom.8.xml:21 apt-config.8.xml:22 msgid "8" msgstr "" #. type: Content of: <refentry><refmeta><refmiscinfo> -#: apt.8.xml:26 apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 apt-mark.8.xml:29 apt-secure.8.xml:28 apt-cdrom.8.xml:28 apt-config.8.xml:29 apt.conf.5.xml:34 apt_preferences.5.xml:28 sources.list.5.xml:29 apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 apt-ftparchive.1.xml:29 +#: apt.8.xml:22 apt-get.8.xml:23 apt-cache.8.xml:23 apt-key.8.xml:22 apt-mark.8.xml:23 apt-secure.8.xml:22 apt-cdrom.8.xml:22 apt-config.8.xml:23 apt.conf.5.xml:28 apt_preferences.5.xml:22 sources.list.5.xml:23 apt-extracttemplates.1.xml:23 apt-sortpkgs.1.xml:23 apt-ftparchive.1.xml:23 msgid "APT" msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt.8.xml:32 +#: apt.8.xml:28 msgid "command-line interface" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:37 apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 apt-mark.8.xml:40 apt-secure.8.xml:52 apt-cdrom.8.xml:39 apt-config.8.xml:40 apt.conf.5.xml:43 apt_preferences.5.xml:38 sources.list.5.xml:38 apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 apt-ftparchive.1.xml:40 +#: apt.8.xml:33 apt-get.8.xml:34 apt-cache.8.xml:34 apt-key.8.xml:33 apt-mark.8.xml:34 apt-secure.8.xml:46 apt-cdrom.8.xml:33 apt-config.8.xml:34 apt.conf.5.xml:37 apt_preferences.5.xml:32 sources.list.5.xml:32 apt-extracttemplates.1.xml:34 apt-sortpkgs.1.xml:34 apt-ftparchive.1.xml:34 msgid "Description" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:38 +#: apt.8.xml:34 msgid "" "<command>apt</command> (Advanced Package Tool) is the command-line tool for " "handling packages. It provides a commandline interface for the package " @@ -526,7 +526,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:47 +#: apt.8.xml:43 msgid "" "<literal>list</literal> is used to display a list of packages. It supports " "shell pattern for matching package names and the following options: " @@ -535,28 +535,28 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:58 +#: apt.8.xml:54 msgid "" "<literal>search</literal> searches for the given term(s) and display " "matching packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:64 +#: apt.8.xml:60 msgid "" "<literal>show</literal> shows the package information for the given " "package(s)." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:71 +#: apt.8.xml:67 msgid "" "<literal>install</literal> is followed by one or more package names desired " "for installation or upgrading." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:75 apt-get.8.xml:118 +#: apt.8.xml:71 apt-get.8.xml:112 msgid "" "A specific version of a package can be selected for installation by " "following the package name with an equals and the version of the package to " @@ -567,7 +567,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:85 apt-get.8.xml:153 +#: apt.8.xml:81 apt-get.8.xml:147 msgid "" "<literal>remove</literal> is identical to <literal>install</literal> except " "that packages are removed instead of installed. Note that removing a package " @@ -577,30 +577,30 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:93 +#: apt.8.xml:89 msgid "" "<literal>edit-sources</literal> lets you edit your sources.list file and " "provides basic sanity checks." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:99 +#: apt.8.xml:95 msgid "" "<literal>update</literal> is used to resynchronize the package index files " "from their sources." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:105 +#: apt.8.xml:101 msgid "" "<literal>upgrade</literal> is used to install the newest versions of all " "packages currently installed on the system from the sources enumerated in " -"<filename>/etc/apt/sources.list</filename>. New package will be installed, " -"but existing package will never removed." +"<filename>/etc/apt/sources.list</filename>. New packages will be installed, " +"but existing packages will never be removed." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:114 +#: apt.8.xml:110 msgid "" "<literal>full-upgrade</literal> performs the function of upgrade but may " "also remove installed packages if that is required in order to resolve a " @@ -608,17 +608,17 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:124 apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 apt-ftparchive.1.xml:506 +#: apt.8.xml:120 apt-get.8.xml:251 apt-cache.8.xml:244 apt-mark.8.xml:104 apt-config.8.xml:80 apt-extracttemplates.1.xml:48 apt-sortpkgs.1.xml:44 apt-ftparchive.1.xml:500 msgid "options" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:134 +#: apt.8.xml:130 msgid "Script usage" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:136 +#: apt.8.xml:132 msgid "" "The &apt; commandline is designed as a end-user tool and it may change the " "output between versions. While it tries to not break backward compatibility " @@ -628,12 +628,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:144 +#: apt.8.xml:140 msgid "Differences to &apt-get;" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:145 +#: apt.8.xml:141 msgid "" "The <command>apt</command> command is meant to be pleasant for end users and " "does not need to be backward compatible like &apt-get;. Therefore some " @@ -641,60 +641,60 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:151 +#: apt.8.xml:147 msgid "The option <literal>DPkg::Progress-Fancy</literal> is enabled." msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:155 +#: apt.8.xml:151 msgid "The option <literal>APT::Color</literal> is enabled." msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:159 +#: apt.8.xml:155 msgid "" "A new <literal>list</literal> command is available similar to <literal>dpkg " "--list</literal>." msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:164 +#: apt.8.xml:160 msgid "" "The option <literal>upgrade</literal> has <literal>--with-new-pkgs</literal> " "enabled by default." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 apt-config.8.xml:111 apt.conf.5.xml:1228 apt_preferences.5.xml:707 sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 apt-ftparchive.1.xml:609 +#: apt.8.xml:170 apt-get.8.xml:552 apt-cache.8.xml:346 apt-key.8.xml:191 apt-mark.8.xml:127 apt-secure.8.xml:187 apt-cdrom.8.xml:148 apt-config.8.xml:105 apt.conf.5.xml:1222 apt_preferences.5.xml:701 sources.list.5.xml:274 apt-extracttemplates.1.xml:66 apt-sortpkgs.1.xml:59 apt-ftparchive.1.xml:603 msgid "See Also" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:175 +#: apt.8.xml:171 msgid "" "&apt-get;, &apt-cache;, &sources-list;, &apt-conf;, &apt-config;, The APT " "User's guide in &guidesdir;, &apt-preferences;, the APT Howto." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:180 apt-get.8.xml:564 apt-cache.8.xml:357 apt-mark.8.xml:137 apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 +#: apt.8.xml:176 apt-get.8.xml:558 apt-cache.8.xml:351 apt-mark.8.xml:131 apt-cdrom.8.xml:153 apt-config.8.xml:110 apt-extracttemplates.1.xml:70 apt-sortpkgs.1.xml:63 apt-ftparchive.1.xml:607 msgid "Diagnostics" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:181 +#: apt.8.xml:177 msgid "" "<command>apt</command> returns zero on normal operation, decimal 100 on " "error." msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-get.8.xml:35 +#: apt-get.8.xml:29 msgid "APT package handling utility -- command-line interface" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:41 +#: apt-get.8.xml:35 msgid "" "<command>apt-get</command> is the command-line tool for handling packages, " "and may be considered the user's \"back-end\" to other tools using the APT " @@ -703,14 +703,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:46 apt-cache.8.xml:46 apt-cdrom.8.xml:53 apt-config.8.xml:46 apt-ftparchive.1.xml:56 +#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-cdrom.8.xml:47 apt-config.8.xml:40 apt-ftparchive.1.xml:50 msgid "" "Unless the <option>-h</option>, or <option>--help</option> option is given, " "one of the commands below must be present." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:51 +#: apt-get.8.xml:45 msgid "" "<literal>update</literal> is used to resynchronize the package index files " "from their sources. The indexes of available packages are fetched from the " @@ -725,7 +725,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:63 +#: apt-get.8.xml:57 msgid "" "<literal>upgrade</literal> is used to install the newest versions of all " "packages currently installed on the system from the sources enumerated in " @@ -741,7 +741,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:76 +#: apt-get.8.xml:70 msgid "" "<literal>dist-upgrade</literal> in addition to performing the function of " "<literal>upgrade</literal>, also intelligently handles changing dependencies " @@ -756,7 +756,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:89 +#: apt-get.8.xml:83 msgid "" "<literal>dselect-upgrade</literal> is used in conjunction with the " "traditional Debian packaging front-end, " @@ -767,7 +767,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:100 +#: apt-get.8.xml:94 msgid "" "<literal>install</literal> is followed by one or more packages desired for " "installation or upgrading. Each package is a package name, not a fully " @@ -784,14 +784,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:125 +#: apt-get.8.xml:119 msgid "" "Both of the version selection mechanisms can downgrade packages and must be " "used with care." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:128 +#: apt-get.8.xml:122 msgid "" "This is also the target to use if you want to upgrade one or more " "already-installed packages without upgrading every package you have on your " @@ -803,14 +803,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:139 +#: apt-get.8.xml:133 msgid "" "Finally, the &apt-preferences; mechanism allows you to create an alternative " "installation policy for individual packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:143 +#: apt-get.8.xml:137 msgid "" "If no package matches the given expression and the expression contains one " "of '.', '?' or '*' then it is assumed to be a POSIX regular expression, and " @@ -822,7 +822,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:161 +#: apt-get.8.xml:155 msgid "" "<literal>purge</literal> is identical to <literal>remove</literal> except " "that packages are removed and purged (any configuration files are deleted " @@ -830,7 +830,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:166 +#: apt-get.8.xml:160 msgid "" "<literal>source</literal> causes <command>apt-get</command> to fetch source " "packages. APT will examine the available packages to decide which source " @@ -842,7 +842,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:174 +#: apt-get.8.xml:168 msgid "" "Source packages are tracked separately from binary packages via " "<literal>deb-src</literal> lines in the &sources-list; file. This means that " @@ -852,7 +852,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:180 +#: apt-get.8.xml:174 msgid "" "If the <option>--compile</option> option is specified then the package will " "be compiled to a binary .deb using <command>dpkg-buildpackage</command> for " @@ -862,7 +862,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:187 +#: apt-get.8.xml:181 msgid "" "A specific source version can be retrieved by postfixing the source name " "with an equals and then the version to fetch, similar to the mechanism used " @@ -872,7 +872,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:193 +#: apt-get.8.xml:187 msgid "" "Note that source packages are not installed and tracked in the " "<command>dpkg</command> database like binary packages; they are simply " @@ -880,7 +880,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:199 +#: apt-get.8.xml:193 msgid "" "<literal>build-dep</literal> causes apt-get to install/remove packages in an " "attempt to satisfy the build dependencies for a source package. By default " @@ -890,21 +890,21 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:206 +#: apt-get.8.xml:200 msgid "" "<literal>check</literal> is a diagnostic tool; it updates the package cache " "and checks for broken dependencies." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:211 +#: apt-get.8.xml:205 msgid "" "<literal>download</literal> will download the given binary package into the " "current directory." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:217 +#: apt-get.8.xml:211 msgid "" "<literal>clean</literal> clears out the local repository of retrieved " "package files. It removes everything but the lock file from " @@ -913,7 +913,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:224 +#: apt-get.8.xml:218 msgid "" "Like <literal>clean</literal>, <literal>autoclean</literal> clears out the " "local repository of retrieved package files. The difference is that it only " @@ -925,7 +925,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:234 +#: apt-get.8.xml:228 msgid "" "<literal>autoremove</literal> is used to remove packages that were " "automatically installed to satisfy dependencies for other packages and are " @@ -933,7 +933,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:239 +#: apt-get.8.xml:233 msgid "" "<literal>changelog</literal> downloads a package changelog and displays it " "through <command>sensible-pager</command>. The server name and base " @@ -948,28 +948,28 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:262 +#: apt-get.8.xml:256 msgid "" "Do not consider recommended packages as a dependency for installing. " "Configuration Item: <literal>APT::Install-Recommends</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:267 +#: apt-get.8.xml:261 msgid "" "Consider suggested packages as a dependency for installing. Configuration " "Item: <literal>APT::Install-Suggests</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:272 +#: apt-get.8.xml:266 msgid "" "Download only; package files are only retrieved, not unpacked or installed. " "Configuration Item: <literal>APT::Get::Download-Only</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:277 +#: apt-get.8.xml:271 msgid "" "Fix; attempt to correct a system with broken dependencies in place. This " "option, when used with install/remove, can omit any packages to permit APT " @@ -985,7 +985,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:292 +#: apt-get.8.xml:286 msgid "" "Ignore missing packages; if packages cannot be retrieved or fail the " "integrity check after retrieval (corrupted package files), hold back those " @@ -997,7 +997,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:303 +#: apt-get.8.xml:297 msgid "" "Disables downloading of packages. This is best used with " "<option>--ignore-missing</option> to force APT to use only the .debs it has " @@ -1006,7 +1006,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:310 +#: apt-get.8.xml:304 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quiet up to a maximum of 2. You can also use " @@ -1018,7 +1018,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:325 +#: apt-get.8.xml:319 msgid "" "No action; perform a simulation of events that would occur but do not " "actually change the system. Configuration Item: " @@ -1026,7 +1026,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:329 +#: apt-get.8.xml:323 msgid "" "Simulated runs performed as a user will automatically deactivate locking " "(<literal>Debug::NoLocking</literal>), and if the option " @@ -1038,7 +1038,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:337 +#: apt-get.8.xml:331 msgid "" "Simulated runs print out a series of lines, each representing a " "<command>dpkg</command> operation: configure (<literal>Conf</literal>), " @@ -1048,7 +1048,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:345 +#: apt-get.8.xml:339 msgid "" "Automatic yes to prompts; assume \"yes\" as answer to all prompts and run " "non-interactively. If an undesirable situation, such as changing a held " @@ -1058,28 +1058,28 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:353 +#: apt-get.8.xml:347 msgid "" "Automatic \"no\" to all prompts. Configuration Item: " "<literal>APT::Get::Assume-No</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:358 +#: apt-get.8.xml:352 msgid "" "Show upgraded packages; print out a list of all packages that are to be " "upgraded. Configuration Item: <literal>APT::Get::Show-Upgraded</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:364 +#: apt-get.8.xml:358 msgid "" "Show full versions for upgraded and installed packages. Configuration Item: " "<literal>APT::Get::Show-Versions</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:370 +#: apt-get.8.xml:364 msgid "" "This option controls the architecture packages are built for by " "<command>apt-get source --compile</command> and how cross-builddependencies " @@ -1090,7 +1090,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:380 +#: apt-get.8.xml:374 msgid "" "This option controls the activated build profiles for which a source package " "is built by <command>apt-get source --compile</command> and how build " @@ -1100,14 +1100,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:391 +#: apt-get.8.xml:385 msgid "" "Compile source packages after downloading them. Configuration Item: " "<literal>APT::Get::Compile</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:396 +#: apt-get.8.xml:390 msgid "" "Ignore package holds; this causes <command>apt-get</command> to ignore a " "hold placed on a package. This may be useful in conjunction with " @@ -1116,7 +1116,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:403 +#: apt-get.8.xml:397 msgid "" "Allow installing new packages when used in conjunction with " "<literal>upgrade</literal>. This is useful if the update of a installed " @@ -1128,7 +1128,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:415 +#: apt-get.8.xml:409 msgid "" "Do not upgrade packages; when used in conjunction with " "<literal>install</literal>, <literal>no-upgrade</literal> will prevent " @@ -1137,7 +1137,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:422 +#: apt-get.8.xml:416 msgid "" "Do not install new packages; when used in conjunction with " "<literal>install</literal>, <literal>only-upgrade</literal> will install " @@ -1147,7 +1147,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:430 +#: apt-get.8.xml:424 msgid "" "Force yes; this is a dangerous option that will cause apt to continue " "without prompting if it is doing something potentially harmful. It should " @@ -1157,7 +1157,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:438 +#: apt-get.8.xml:432 msgid "" "Instead of fetching the files to install their URIs are printed. Each URI " "will have the path, the destination file name, the size and the expected MD5 " @@ -1170,7 +1170,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:449 +#: apt-get.8.xml:443 msgid "" "Use purge instead of remove for anything that would be removed. An asterisk " "(\"*\") will be displayed next to packages which are scheduled to be " @@ -1180,14 +1180,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:457 +#: apt-get.8.xml:451 msgid "" "Re-install packages that are already installed and at the newest version. " "Configuration Item: <literal>APT::Get::ReInstall</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:462 +#: apt-get.8.xml:456 msgid "" "This option is on by default; use <literal>--no-list-cleanup</literal> to " "turn it off. When it is on, <command>apt-get</command> will automatically " @@ -1198,7 +1198,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:472 +#: apt-get.8.xml:466 msgid "" "This option controls the default input to the policy engine; it creates a " "default pin at priority 990 using the specified release string. This " @@ -1213,7 +1213,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:487 +#: apt-get.8.xml:481 msgid "" "Only perform operations that are 'trivial'. Logically this can be considered " "related to <option>--assume-yes</option>; where " @@ -1223,14 +1223,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:494 +#: apt-get.8.xml:488 msgid "" "If any packages are to be removed apt-get immediately aborts without " "prompting. Configuration Item: <literal>APT::Get::Remove</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:500 +#: apt-get.8.xml:494 msgid "" "If the command is either <literal>install</literal> or " "<literal>remove</literal>, then this option acts like running the " @@ -1239,7 +1239,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:507 +#: apt-get.8.xml:501 msgid "" "Only has meaning for the <literal>source</literal> and " "<literal>build-dep</literal> commands. Indicates that the given source " @@ -1251,7 +1251,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:518 +#: apt-get.8.xml:512 msgid "" "Download only the diff, dsc, or tar file of a source archive. Configuration " "Item: <literal>APT::Get::Diff-Only</literal>, " @@ -1260,14 +1260,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:524 +#: apt-get.8.xml:518 msgid "" "Only process architecture-dependent build-dependencies. Configuration Item: " "<literal>APT::Get::Arch-Only</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:529 +#: apt-get.8.xml:523 msgid "" "Ignore if packages can't be authenticated and don't prompt about it. This " "is useful for tools like pbuilder. Configuration Item: " @@ -1275,7 +1275,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:535 +#: apt-get.8.xml:529 msgid "" "Show user friendly progress information in the terminal window when packages " "are installed, upgraded or removed. For a machine parsable version of this " @@ -1285,12 +1285,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 apt.conf.5.xml:1222 apt_preferences.5.xml:700 +#: apt-get.8.xml:542 apt-cache.8.xml:339 apt-key.8.xml:170 apt-mark.8.xml:121 apt.conf.5.xml:1216 apt_preferences.5.xml:694 msgid "Files" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:559 +#: apt-get.8.xml:553 msgid "" "&apt-cache;, &apt-cdrom;, &dpkg;, &sources-list;, &apt-conf;, &apt-config;, " "&apt-secure;, The APT User's guide in &guidesdir;, &apt-preferences;, the " @@ -1298,19 +1298,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:565 +#: apt-get.8.xml:559 msgid "" "<command>apt-get</command> returns zero on normal operation, decimal 100 on " "error." msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-cache.8.xml:35 +#: apt-cache.8.xml:29 msgid "query the APT cache" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:41 +#: apt-cache.8.xml:35 msgid "" "<command>apt-cache</command> performs a variety of operations on APT's " "package cache. <command>apt-cache</command> does not manipulate the state of " @@ -1319,19 +1319,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:51 +#: apt-cache.8.xml:45 msgid "" "<literal>gencaches</literal> creates APT's package cache. This is done " "implicitly by all commands needing this cache if it is missing or outdated." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-cache.8.xml:55 apt-cache.8.xml:144 apt-cache.8.xml:165 apt-cache.8.xml:187 apt-cache.8.xml:192 apt-cache.8.xml:208 apt-cache.8.xml:226 apt-cache.8.xml:238 +#: apt-cache.8.xml:49 apt-cache.8.xml:138 apt-cache.8.xml:159 apt-cache.8.xml:181 apt-cache.8.xml:186 apt-cache.8.xml:202 apt-cache.8.xml:220 apt-cache.8.xml:232 msgid "&synopsis-pkg;" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:56 +#: apt-cache.8.xml:50 msgid "" "<literal>showpkg</literal> displays information about the packages listed on " "the command line. Remaining arguments are package names. The available " @@ -1345,7 +1345,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> -#: apt-cache.8.xml:68 +#: apt-cache.8.xml:62 #, no-wrap msgid "" "Package: libreadline2\n" @@ -1361,7 +1361,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:80 +#: apt-cache.8.xml:74 msgid "" "Thus it may be seen that libreadline2, version 2.1-12, depends on libc5 and " "ncurses3.0 which must be installed for libreadline2 to work. In turn, " @@ -1373,21 +1373,21 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:89 +#: apt-cache.8.xml:83 msgid "" "<literal>stats</literal> displays some statistics about the cache. No " "further arguments are expected. Statistics reported are:" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:92 +#: apt-cache.8.xml:86 msgid "" "<literal>Total package names</literal> is the number of package names found " "in the cache." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:96 +#: apt-cache.8.xml:90 msgid "" "<literal>Normal packages</literal> is the number of regular, ordinary " "package names; these are packages that bear a one-to-one correspondence " @@ -1396,7 +1396,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:102 +#: apt-cache.8.xml:96 msgid "" "<literal>Pure virtual packages</literal> is the number of packages that " "exist only as a virtual package name; that is, packages only \"provide\" the " @@ -1407,7 +1407,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:110 +#: apt-cache.8.xml:104 msgid "" "<literal>Single virtual packages</literal> is the number of packages with " "only one package providing a particular virtual package. For example, in the " @@ -1416,7 +1416,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:116 +#: apt-cache.8.xml:110 msgid "" "<literal>Mixed virtual packages</literal> is the number of packages that " "either provide a particular virtual package or have the virtual package name " @@ -1425,7 +1425,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:123 +#: apt-cache.8.xml:117 msgid "" "<literal>Missing</literal> is the number of package names that were " "referenced in a dependency but were not provided by any package. Missing " @@ -1435,7 +1435,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:130 +#: apt-cache.8.xml:124 msgid "" "<literal>Total distinct</literal> versions is the number of package versions " "found in the cache; this value is therefore at least equal to the number of " @@ -1445,14 +1445,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:137 +#: apt-cache.8.xml:131 msgid "" "<literal>Total dependencies</literal> is the number of dependency " "relationships claimed by all of the packages in the cache." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:145 +#: apt-cache.8.xml:139 msgid "" "<literal>showsrc</literal> displays all the source package records that " "match the given package names. All versions are shown, as well as all " @@ -1460,28 +1460,28 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:151 +#: apt-cache.8.xml:145 msgid "" "<literal>dump</literal> shows a short listing of every package in the " "cache. It is primarily for debugging." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:156 +#: apt-cache.8.xml:150 msgid "" "<literal>dumpavail</literal> prints out an available list to stdout. This is " "suitable for use with &dpkg; and is used by the &dselect; method." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:161 +#: apt-cache.8.xml:155 msgid "" "<literal>unmet</literal> displays a summary of all unmet dependencies in the " "package cache." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:166 +#: apt-cache.8.xml:160 msgid "" "<literal>show</literal> performs a function similar to <command>dpkg " "--print-avail</command>; it displays the package records for the named " @@ -1489,12 +1489,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-cache.8.xml:171 +#: apt-cache.8.xml:165 msgid "&synopsis-regex;" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:172 +#: apt-cache.8.xml:166 msgid "" "<literal>search</literal> performs a full text search on all available " "package lists for the POSIX regex pattern given, see ®ex;. It searches " @@ -1507,33 +1507,33 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:183 +#: apt-cache.8.xml:177 msgid "" "Separate arguments can be used to specify multiple search patterns that are " "and'ed together." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:188 +#: apt-cache.8.xml:182 msgid "" "<literal>depends</literal> shows a listing of each dependency a package has " "and all the possible other packages that can fulfill that dependency." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:193 +#: apt-cache.8.xml:187 msgid "" "<literal>rdepends</literal> shows a listing of each reverse dependency a " "package has." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:197 +#: apt-cache.8.xml:191 msgid "<optional><replaceable>&synopsis-prefix;</replaceable></optional>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:198 +#: apt-cache.8.xml:192 msgid "" "This command prints the name of each package APT knows. The optional " "argument is a prefix match to filter the name list. The output is suitable " @@ -1543,7 +1543,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:203 +#: apt-cache.8.xml:197 msgid "" "Note that a package which APT knows of is not necessarily available to " "download, installable or installed, e.g. virtual packages are also listed in " @@ -1551,7 +1551,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:209 +#: apt-cache.8.xml:203 msgid "" "<literal>dotty</literal> takes a list of packages on the command line and " "generates output suitable for use by dotty from the <ulink " @@ -1564,7 +1564,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:218 +#: apt-cache.8.xml:212 msgid "" "The resulting nodes will have several shapes; normal packages are boxes, " "pure virtual packages are triangles, mixed virtual packages are diamonds, " @@ -1573,12 +1573,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:223 +#: apt-cache.8.xml:217 msgid "Caution, dotty cannot graph larger sets of packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:227 +#: apt-cache.8.xml:221 msgid "" "The same as <literal>dotty</literal>, only for xvcg from the <ulink " "url=\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG " @@ -1586,12 +1586,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:231 +#: apt-cache.8.xml:225 msgid "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:232 +#: apt-cache.8.xml:226 msgid "" "<literal>policy</literal> is meant to help debug issues relating to the " "preferences file. With no arguments it will print out the priorities of each " @@ -1600,7 +1600,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:239 +#: apt-cache.8.xml:233 msgid "" "<literal>apt-cache</literal>'s <literal>madison</literal> command attempts " "to mimic the output format and a subset of the functionality of the Debian " @@ -1612,7 +1612,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:255 +#: apt-cache.8.xml:249 msgid "" "Select the file to store the package cache. The package cache is the primary " "cache used by all operations. Configuration Item: " @@ -1620,7 +1620,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:261 +#: apt-cache.8.xml:255 msgid "" "Select the file to store the source cache. The source is used only by " "<literal>gencaches</literal> and it stores a parsed version of the package " @@ -1630,7 +1630,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:269 +#: apt-cache.8.xml:263 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quietness up to a maximum of 2. You can also use " @@ -1639,7 +1639,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:276 +#: apt-cache.8.xml:270 msgid "" "Print only important dependencies; for use with <literal>unmet</literal> and " "<literal>depends</literal>. Causes only Depends and Pre-Depends relations to " @@ -1647,7 +1647,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:290 +#: apt-cache.8.xml:284 msgid "" "Per default the <literal>depends</literal> and <literal>rdepends</literal> " "print all dependencies. This can be tweaked with these flags which will omit " @@ -1657,14 +1657,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:297 +#: apt-cache.8.xml:291 msgid "" "Print full package records when searching. Configuration Item: " "<literal>APT::Cache::ShowFull</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:302 +#: apt-cache.8.xml:296 msgid "" "Print full records for all available versions. This is the default; to turn " "it off, use <option>--no-all-versions</option>. If " @@ -1675,7 +1675,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:311 +#: apt-cache.8.xml:305 msgid "" "Perform automatic package cache regeneration, rather than use the cache as " "it is. This is the default; to turn it off, use " @@ -1684,14 +1684,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:317 +#: apt-cache.8.xml:311 msgid "" "Only search on the package names, not the long descriptions. Configuration " "Item: <literal>APT::Cache::NamesOnly</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:322 +#: apt-cache.8.xml:316 msgid "" "Make <literal>pkgnames</literal> print all names, including virtual packages " "and missing dependencies. Configuration Item: " @@ -1699,7 +1699,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:328 +#: apt-cache.8.xml:322 msgid "" "Make <literal>depends</literal> and <literal>rdepends</literal> recursive so " "that all packages mentioned are printed once. Configuration Item: " @@ -1707,7 +1707,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:335 +#: apt-cache.8.xml:329 msgid "" "Limit the output of <literal>depends</literal> and " "<literal>rdepends</literal> to packages which are currently installed. " @@ -1715,24 +1715,24 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:353 +#: apt-cache.8.xml:347 msgid "&apt-conf;, &sources-list;, &apt-get;" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:358 +#: apt-cache.8.xml:352 msgid "" "<command>apt-cache</command> returns zero on normal operation, decimal 100 " "on error." msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-key.8.xml:34 +#: apt-key.8.xml:28 msgid "APT key management utility" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:41 +#: apt-key.8.xml:35 msgid "" "<command>apt-key</command> is used to manage the list of keys used by apt to " "authenticate packages. Packages which have been authenticated using these " @@ -1740,12 +1740,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-key.8.xml:47 +#: apt-key.8.xml:41 msgid "Commands" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:52 +#: apt-key.8.xml:46 msgid "" "Add a new key to the list of trusted keys. The key is read from the " "filename given with the parameter &synopsis-param-filename; or if the " @@ -1753,39 +1753,39 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:65 +#: apt-key.8.xml:59 msgid "Remove a key from the list of trusted keys." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:76 +#: apt-key.8.xml:70 msgid "Output the key &synopsis-param-keyid; to standard output." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:87 +#: apt-key.8.xml:81 msgid "Output all trusted keys to standard output." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:98 +#: apt-key.8.xml:92 msgid "List trusted keys." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:109 +#: apt-key.8.xml:103 msgid "List fingerprints of trusted keys." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:120 +#: apt-key.8.xml:114 msgid "" "Pass advanced options to gpg. With adv --recv-key you can download the " "public key." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:132 +#: apt-key.8.xml:126 msgid "" "Update the local keyring with the archive keyring and remove from the local " "keyring the archive keys which are no longer valid. The archive keyring is " @@ -1794,7 +1794,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:146 +#: apt-key.8.xml:140 msgid "" "Perform an update working similarly to the <command>update</command> command " "above, but get the archive keyring from a URI instead and validate it " @@ -1805,19 +1805,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-key.8.xml:162 apt-cdrom.8.xml:82 +#: apt-key.8.xml:156 apt-cdrom.8.xml:76 msgid "Options" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:163 +#: apt-key.8.xml:157 msgid "" "Note that options need to be defined before the commands described in the " "previous section." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:166 +#: apt-key.8.xml:160 msgid "" "With this option it is possible to specify a particular keyring file the " "command should operate on. The default is that a command is executed on the " @@ -1828,54 +1828,54 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:181 +#: apt-key.8.xml:175 msgid "<filename>/etc/apt/trustdb.gpg</filename>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:182 +#: apt-key.8.xml:176 msgid "Local trust database of archive keys." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:185 +#: apt-key.8.xml:179 msgid "&keyring-filename;" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:186 +#: apt-key.8.xml:180 msgid "Keyring of &keyring-distro; archive trusted keys." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:189 +#: apt-key.8.xml:183 msgid "&keyring-removed-filename;" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:190 +#: apt-key.8.xml:184 msgid "Keyring of &keyring-distro; archive removed trusted keys." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:199 +#: apt-key.8.xml:193 msgid "&apt-get;, &apt-secure;" msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-mark.8.xml:35 +#: apt-mark.8.xml:29 msgid "mark/unmark a package as being automatically-installed" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:41 +#: apt-mark.8.xml:35 msgid "" "<command>apt-mark</command> will change whether a package has been marked as " "being automatically installed." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:45 +#: apt-mark.8.xml:39 msgid "" "When you request that a package is installed, and as a result other packages " "are installed to satisfy its dependencies, the dependencies are marked as " @@ -1885,7 +1885,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:54 +#: apt-mark.8.xml:48 msgid "" "<literal>auto</literal> is used to mark a package as being automatically " "installed, which will cause the package to be removed when no more manually " @@ -1893,7 +1893,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:62 +#: apt-mark.8.xml:56 msgid "" "<literal>manual</literal> is used to mark a package as being manually " "installed, which will prevent the package from being automatically removed " @@ -1901,7 +1901,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:70 +#: apt-mark.8.xml:64 msgid "" "<literal>hold</literal> is used to mark a package as held back, which will " "prevent the package from being automatically installed, upgraded or " @@ -1911,14 +1911,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:80 +#: apt-mark.8.xml:74 msgid "" "<literal>unhold</literal> is used to cancel a previously set hold on a " "package to allow all actions again." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:86 +#: apt-mark.8.xml:80 msgid "" "<literal>showauto</literal> is used to print a list of automatically " "installed packages with each package on a new line. All automatically " @@ -1927,7 +1927,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:94 +#: apt-mark.8.xml:88 msgid "" "<literal>showmanual</literal> can be used in the same way as " "<literal>showauto</literal> except that it will print a list of manually " @@ -1935,14 +1935,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:101 +#: apt-mark.8.xml:95 msgid "" "<literal>showhold</literal> is used to print a list of packages on hold in " "the same way as for the other show commands." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:117 +#: apt-mark.8.xml:111 msgid "" "Read/Write package stats from the filename given with the parameter " "&synopsis-param-filename; instead of from the default location, which is " @@ -1951,19 +1951,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:138 +#: apt-mark.8.xml:132 msgid "" "<command>apt-mark</command> returns zero on normal operation, non-zero on " "error." msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-secure.8.xml:49 +#: apt-secure.8.xml:43 msgid "Archive authentication support for APT" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:54 +#: apt-secure.8.xml:48 msgid "" "Starting with version 0.6, <command>apt</command> contains code that does " "signature checking of the Release file for all archives. This ensures that " @@ -1972,7 +1972,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:62 +#: apt-secure.8.xml:56 msgid "" "If a package comes from a archive without a signature, or with a signature " "that apt does not have a key for, that package is considered untrusted, and " @@ -1982,19 +1982,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:71 +#: apt-secure.8.xml:65 msgid "" "The package frontends &apt-get;, &aptitude; and &synaptic; support this new " "authentication feature." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:76 +#: apt-secure.8.xml:70 msgid "Trusted archives" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:79 +#: apt-secure.8.xml:73 msgid "" "The chain of trust from an apt archive to the end user is made up of several " "steps. <command>apt-secure</command> is the last step in this chain; " @@ -2005,7 +2005,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:87 +#: apt-secure.8.xml:81 msgid "" "apt-secure does not review signatures at a package level. If you require " "tools to do this you should look at <command>debsig-verify</command> and " @@ -2014,7 +2014,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:94 +#: apt-secure.8.xml:88 msgid "" "The chain of trust in Debian starts when a maintainer uploads a new package " "or a new version of a package to the Debian archive. In order to become " @@ -2025,7 +2025,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:104 +#: apt-secure.8.xml:98 msgid "" "Once the uploaded package is verified and included in the archive, the " "maintainer signature is stripped off, and checksums of the package are " @@ -2038,7 +2038,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:115 +#: apt-secure.8.xml:109 msgid "" "End users can check the signature of the Release file, extract a checksum of " "a package from it and compare it with the checksum of the package they " @@ -2046,14 +2046,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:120 +#: apt-secure.8.xml:114 msgid "" "Notice that this is distinct from checking signatures on a per package " "basis. It is designed to prevent two possible attacks:" msgstr "" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:125 +#: apt-secure.8.xml:119 msgid "" "<literal>Network \"man in the middle\" attacks</literal>. Without signature " "checking, malicious agents can introduce themselves into the package " @@ -2063,7 +2063,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:133 +#: apt-secure.8.xml:127 msgid "" "<literal>Mirror network compromise</literal>. Without signature checking, a " "malicious agent can compromise a mirror host and modify the files in it to " @@ -2072,7 +2072,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:140 +#: apt-secure.8.xml:134 msgid "" "However, it does not defend against a compromise of the Debian master server " "itself (which signs the packages) or against a compromise of the key used to " @@ -2081,12 +2081,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:146 +#: apt-secure.8.xml:140 msgid "User configuration" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:148 +#: apt-secure.8.xml:142 msgid "" "<command>apt-key</command> is the program that manages the list of keys used " "by apt. It can be used to add or remove keys, although an installation of " @@ -2095,7 +2095,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:155 +#: apt-secure.8.xml:149 msgid "" "In order to add a new key you need to first download it (you should make " "sure you are using a trusted communication channel when retrieving it), add " @@ -2106,19 +2106,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:164 +#: apt-secure.8.xml:158 msgid "Archive configuration" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:166 +#: apt-secure.8.xml:160 msgid "" "If you want to provide archive signatures in an archive under your " "maintenance you have to:" msgstr "" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:171 +#: apt-secure.8.xml:165 msgid "" "<emphasis>Create a toplevel Release file</emphasis>, if it does not exist " "already. You can do this by running <command>apt-ftparchive " @@ -2126,7 +2126,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:176 +#: apt-secure.8.xml:170 msgid "" "<emphasis>Sign it</emphasis>. You can do this by running <command>gpg " "--clearsign -o InRelease Release</command> and <command>gpg -abs -o " @@ -2134,7 +2134,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:180 +#: apt-secure.8.xml:174 msgid "" "<emphasis>Publish the key fingerprint</emphasis>, that way your users will " "know what key they need to import in order to authenticate the files in the " @@ -2142,7 +2142,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:187 +#: apt-secure.8.xml:181 msgid "" "Whenever the contents of the archive change (new packages are added or " "removed) the archive maintainer has to follow the first two steps outlined " @@ -2150,14 +2150,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:195 +#: apt-secure.8.xml:189 msgid "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " "&debsign;, &debsig-verify;, &gpg;" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:199 +#: apt-secure.8.xml:193 msgid "" "For more background information you might want to review the <ulink " "url=\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7\">Debian " @@ -2168,24 +2168,24 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:212 +#: apt-secure.8.xml:206 msgid "Manpage Authors" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:214 +#: apt-secure.8.xml:208 msgid "" "This man-page is based on the work of Javier Fernández-Sanguino Peña, Isaac " "Jones, Colin Walters, Florian Weimer and Michael Vogt." msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-cdrom.8.xml:34 +#: apt-cdrom.8.xml:28 msgid "APT CD-ROM management utility" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:40 +#: apt-cdrom.8.xml:34 msgid "" "<command>apt-cdrom</command> is used to add a new CD-ROM to APT's list of " "available sources. <command>apt-cdrom</command> takes care of determining " @@ -2194,7 +2194,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:47 +#: apt-cdrom.8.xml:41 msgid "" "It is necessary to use <command>apt-cdrom</command> to add CDs to the APT " "system; it cannot be done by hand. Furthermore each disc in a multi-CD set " @@ -2202,7 +2202,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:58 +#: apt-cdrom.8.xml:52 msgid "" "<literal>add</literal> is used to add a new disc to the source list. It will " "unmount the CD-ROM device, prompt for a disc to be inserted and then proceed " @@ -2212,7 +2212,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:66 +#: apt-cdrom.8.xml:60 msgid "" "APT uses a CD-ROM ID to track which disc is currently in the drive and " "maintains a database of these IDs in " @@ -2220,14 +2220,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:74 +#: apt-cdrom.8.xml:68 msgid "" "A debugging tool to report the identity of the current disc as well as the " "stored file name" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:87 +#: apt-cdrom.8.xml:81 msgid "" "Do not try to auto-detect the CD-ROM path. Usually combined with the " "<option>--cdrom</option> option. Configuration Item: " @@ -2235,7 +2235,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:95 +#: apt-cdrom.8.xml:89 msgid "" "Mount point; specify the location to mount the CD-ROM. This mount point must " "be listed in <filename>/etc/fstab</filename> and properly configured. " @@ -2243,7 +2243,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:104 +#: apt-cdrom.8.xml:98 msgid "" "Rename a disc; change the label of a disc or override the disc's given " "label. This option will cause <command>apt-cdrom</command> to prompt for a " @@ -2251,7 +2251,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:113 +#: apt-cdrom.8.xml:107 msgid "" "No mounting; prevent <command>apt-cdrom</command> from mounting and " "unmounting the mount point. Configuration Item: " @@ -2259,7 +2259,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:121 +#: apt-cdrom.8.xml:115 msgid "" "Fast Copy; Assume the package files are valid and do not check every " "package. This option should be used only if <command>apt-cdrom</command> has " @@ -2268,7 +2268,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:131 +#: apt-cdrom.8.xml:125 msgid "" "Thorough Package Scan; This option may be needed with some old Debian " "1.1/1.2 discs that have Package files in strange places. It takes much " @@ -2276,7 +2276,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:142 +#: apt-cdrom.8.xml:136 msgid "" "No Changes; Do not change the &sources-list; file and do not write index " "files. Everything is still checked however. Configuration Item: " @@ -2284,24 +2284,24 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:155 +#: apt-cdrom.8.xml:149 msgid "&apt-conf;, &apt-get;, &sources-list;" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:160 +#: apt-cdrom.8.xml:154 msgid "" "<command>apt-cdrom</command> returns zero on normal operation, decimal 100 " "on error." msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-config.8.xml:35 +#: apt-config.8.xml:29 msgid "APT Configuration Query program" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:41 +#: apt-config.8.xml:35 msgid "" "<command>apt-config</command> is an internal program used by various " "portions of the APT suite to provide consistent configurability. It accesses " @@ -2310,7 +2310,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:53 +#: apt-config.8.xml:47 msgid "" "shell is used to access the configuration information from a shell " "script. It is given pairs of arguments, the first being a shell variable and " @@ -2320,7 +2320,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> -#: apt-config.8.xml:61 +#: apt-config.8.xml:55 #, no-wrap msgid "" "OPTS=\"-f\"\n" @@ -2329,14 +2329,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:66 +#: apt-config.8.xml:60 msgid "" "This will set the shell environment variable $OPTS to the value of " "MyApp::options with a default of <option>-f</option>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:70 +#: apt-config.8.xml:64 msgid "" "The configuration item may be postfixed with a /[fdbi]. f returns file " "names, d returns directories, b returns true or false and i returns an " @@ -2344,24 +2344,24 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:79 +#: apt-config.8.xml:73 msgid "Just show the contents of the configuration space." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:92 +#: apt-config.8.xml:86 msgid "" "Include options which have an empty value. This is the default, so use " "--no-empty to remove them from the output." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-config.8.xml:97 +#: apt-config.8.xml:91 msgid "%f "%v";%n" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:98 +#: apt-config.8.xml:92 msgid "" "Defines the output of each config option. %t will be replaced with " "its individual name, %f with its full hierarchical name and %v " @@ -2372,39 +2372,39 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:112 apt-extracttemplates.1.xml:73 apt-sortpkgs.1.xml:66 apt-ftparchive.1.xml:610 +#: apt-config.8.xml:106 apt-extracttemplates.1.xml:67 apt-sortpkgs.1.xml:60 apt-ftparchive.1.xml:604 msgid "&apt-conf;" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:117 +#: apt-config.8.xml:111 msgid "" "<command>apt-config</command> returns zero on normal operation, decimal 100 " "on error." msgstr "" #. type: Content of: <refentry><refentryinfo><author><contrib> -#: apt.conf.5.xml:22 +#: apt.conf.5.xml:16 msgid "Initial documentation of Debug::*." msgstr "" #. type: Content of: <refentry><refentryinfo><author><email> -#: apt.conf.5.xml:23 +#: apt.conf.5.xml:17 msgid "dburrows@debian.org" msgstr "" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt.conf.5.xml:33 apt_preferences.5.xml:27 sources.list.5.xml:28 +#: apt.conf.5.xml:27 apt_preferences.5.xml:21 sources.list.5.xml:22 msgid "5" msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt.conf.5.xml:40 +#: apt.conf.5.xml:34 msgid "Configuration file for APT" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:44 +#: apt.conf.5.xml:38 msgid "" "<filename>/etc/apt/apt.conf</filename> is the main configuration file shared " "by all the tools in the APT suite of tools, though it is by no means the " @@ -2413,21 +2413,21 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><orderedlist><para> -#: apt.conf.5.xml:50 +#: apt.conf.5.xml:44 msgid "" "When an APT tool starts up it will read the configuration files in the " "following order:" msgstr "" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:52 +#: apt.conf.5.xml:46 msgid "" "the file specified by the <envar>APT_CONFIG</envar> environment variable (if " "any)" msgstr "" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:54 +#: apt.conf.5.xml:48 msgid "" "all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending " "order which have either no or \"<literal>conf</literal>\" as filename " @@ -2439,24 +2439,24 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:61 +#: apt.conf.5.xml:55 msgid "the main configuration file specified by <literal>Dir::Etc::main</literal>" msgstr "" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:63 +#: apt.conf.5.xml:57 msgid "" "the command line options are applied to override the configuration " "directives or to load even more configuration files." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:67 +#: apt.conf.5.xml:61 msgid "Syntax" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:68 +#: apt.conf.5.xml:62 msgid "" "The configuration file is organized in a tree with options organized into " "functional groups. Option specification is given with a double colon " @@ -2466,7 +2466,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:74 +#: apt.conf.5.xml:68 msgid "" "Syntactically the configuration language is modeled after what the ISC tools " "such as bind and dhcp use. Lines starting with <literal>//</literal> are " @@ -2481,7 +2481,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><informalexample><programlisting> -#: apt.conf.5.xml:87 +#: apt.conf.5.xml:81 #, no-wrap msgid "" "APT {\n" @@ -2493,7 +2493,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:95 +#: apt.conf.5.xml:89 msgid "" "with newlines placed to make it more readable. Lists can be created by " "opening a scope and including a single string enclosed in quotes followed by " @@ -2501,27 +2501,27 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><informalexample><programlisting> -#: apt.conf.5.xml:100 +#: apt.conf.5.xml:94 #, no-wrap msgid "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:103 +#: apt.conf.5.xml:97 msgid "" "In general the sample configuration file &configureindex; is a good guide " "for how it should look." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:106 +#: apt.conf.5.xml:100 msgid "" "Case is not significant in names of configuration items, so in the previous " "example you could use <literal>dpkg::pre-install-pkgs</literal>." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:109 +#: apt.conf.5.xml:103 msgid "" "Names for the configuration items are optional if a list is defined as can " "be seen in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. If " @@ -2531,7 +2531,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:114 +#: apt.conf.5.xml:108 msgid "" "Two special commands are defined: <literal>#include</literal> (which is " "deprecated and not supported by alternative implementations) and " @@ -2543,7 +2543,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:124 +#: apt.conf.5.xml:118 msgid "" "The <literal>#clear</literal> command is the only way to delete a list or a " "complete scope. Reopening a scope (or using the syntax described below with " @@ -2553,7 +2553,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:132 +#: apt.conf.5.xml:126 msgid "" "All of the APT tools take an -o option which allows an arbitrary " "configuration directive to be specified on the command line. The syntax is a " @@ -2565,7 +2565,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:140 +#: apt.conf.5.xml:134 msgid "" "Note that appending items to a list using <literal>::</literal> only works " "for one item per line, and that you should not use it in combination with " @@ -2582,19 +2582,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:155 +#: apt.conf.5.xml:149 msgid "The APT Group" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:156 +#: apt.conf.5.xml:150 msgid "" "This group of options controls general APT behavior as well as holding the " "options for all of the tools." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:161 +#: apt.conf.5.xml:155 msgid "" "System Architecture; sets the architecture to use when fetching files and " "parsing package lists. The internal default is the architecture apt was " @@ -2602,7 +2602,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:168 +#: apt.conf.5.xml:162 msgid "" "All Architectures the system supports. For instance, CPUs implementing the " "<literal>amd64</literal> (also called <literal>x86-64</literal>) " @@ -2616,7 +2616,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:182 +#: apt.conf.5.xml:176 msgid "" "List of all build profiles enabled for build-dependency resolution, without " "the \"<literal>profile.</literal>\" namespace prefix. By default this list " @@ -2625,7 +2625,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:190 +#: apt.conf.5.xml:184 msgid "" "Default release to install packages from if more than one version is " "available. Contains release name, codename or release version. Examples: " @@ -2634,14 +2634,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:196 +#: apt.conf.5.xml:190 msgid "" "Ignore held packages; this global option causes the problem resolver to " "ignore held packages in its decision making." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:201 +#: apt.conf.5.xml:195 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " @@ -2650,7 +2650,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:209 +#: apt.conf.5.xml:203 msgid "" "Defaults to on, which will cause APT to install essential and important " "packages as soon as possible in an install/upgrade operation, in order to " @@ -2665,7 +2665,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:221 +#: apt.conf.5.xml:215 msgid "" "The immediate configuration marker is also applied in the potentially " "problematic case of circular dependencies, since a dependency with the " @@ -2682,7 +2682,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:234 +#: apt.conf.5.xml:228 msgid "" "Before a big operation like <literal>dist-upgrade</literal> is run with this " "option disabled you should try to explicitly <literal>install</literal> the " @@ -2693,7 +2693,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:245 +#: apt.conf.5.xml:239 msgid "" "Never enable this option unless you <emphasis>really</emphasis> know what " "you are doing. It permits APT to temporarily remove an essential package to " @@ -2706,7 +2706,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:257 +#: apt.conf.5.xml:251 msgid "" "APT uses since version 0.7.26 a resizable memory mapped cache file to store " "the available information. <literal>Cache-Start</literal> acts as a hint of " @@ -2727,38 +2727,38 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:273 +#: apt.conf.5.xml:267 msgid "Defines which packages are considered essential build dependencies." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:277 +#: apt.conf.5.xml:271 msgid "" "The Get subsection controls the &apt-get; tool; please see its documentation " "for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:282 +#: apt.conf.5.xml:276 msgid "" "The Cache subsection controls the &apt-cache; tool; please see its " "documentation for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:287 +#: apt.conf.5.xml:281 msgid "" "The CDROM subsection controls the &apt-cdrom; tool; please see its " "documentation for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:293 +#: apt.conf.5.xml:287 msgid "The Acquire Group" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:294 +#: apt.conf.5.xml:288 msgid "" "The <literal>Acquire</literal> group of options controls the download of " "packages as well as the various \"acquire methods\" responsible for the " @@ -2766,7 +2766,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:301 +#: apt.conf.5.xml:295 msgid "" "Security related option defaulting to true, as giving a Release file's " "validation an expiration date prevents replay attacks over a long timescale, " @@ -2779,7 +2779,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:314 +#: apt.conf.5.xml:308 msgid "" "Maximum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -2791,7 +2791,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:326 +#: apt.conf.5.xml:320 msgid "" "Minimum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -2803,7 +2803,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:338 +#: apt.conf.5.xml:332 msgid "" "Try to download deltas called <literal>PDiffs</literal> for indexes (like " "<filename>Packages</filename> files) instead of downloading whole ones. True " @@ -2811,7 +2811,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:341 +#: apt.conf.5.xml:335 msgid "" "Two sub-options to limit the use of PDiffs are also available: " "<literal>FileLimit</literal> can be used to specify a maximum number of " @@ -2823,7 +2823,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:351 +#: apt.conf.5.xml:345 msgid "" "Queuing mode; <literal>Queue-Mode</literal> can be one of " "<literal>host</literal> or <literal>access</literal> which determines how " @@ -2833,21 +2833,21 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:359 +#: apt.conf.5.xml:353 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:364 +#: apt.conf.5.xml:358 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:369 +#: apt.conf.5.xml:363 msgid "" "<literal>http::Proxy</literal> sets the default proxy to use for HTTP " "URIs. It is in the standard form of " @@ -2860,7 +2860,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:377 +#: apt.conf.5.xml:371 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy not to use its cached " @@ -2872,14 +2872,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:387 apt.conf.5.xml:475 +#: apt.conf.5.xml:381 apt.conf.5.xml:469 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method; this value applies to the connection as well as the data timeout." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:390 +#: apt.conf.5.xml:384 msgid "" "The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial " @@ -2891,14 +2891,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:397 +#: apt.conf.5.xml:391 msgid "" "<literal>Acquire::http::AllowRedirect</literal> controls whether APT will " "follow redirects, which is enabled by default." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:400 +#: apt.conf.5.xml:394 msgid "" "The used bandwidth can be limited with " "<literal>Acquire::http::Dl-Limit</literal> which accepts integer values in " @@ -2908,7 +2908,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:407 +#: apt.conf.5.xml:401 msgid "" "<literal>Acquire::http::User-Agent</literal> can be used to set a different " "User-Agent for the http download method as some proxies allow access for " @@ -2916,7 +2916,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:411 +#: apt.conf.5.xml:405 msgid "" "<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify " "an external command to discover the http proxy to use. Apt expects the " @@ -2930,7 +2930,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:429 +#: apt.conf.5.xml:423 msgid "" "The <literal>Cache-control</literal>, <literal>Timeout</literal>, " "<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and " @@ -2941,7 +2941,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:437 +#: apt.conf.5.xml:431 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is the " @@ -2965,7 +2965,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:458 +#: apt.conf.5.xml:452 msgid "" "<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. " "It is in the standard form of " @@ -2986,7 +2986,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:478 +#: apt.conf.5.xml:472 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on; it works in nearly every environment. However, " @@ -2996,7 +2996,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:485 +#: apt.conf.5.xml:479 msgid "" "It is possible to proxy FTP over HTTP by setting the " "<envar>ftp_proxy</envar> environment variable to an HTTP URL - see the " @@ -3006,7 +3006,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:490 +#: apt.conf.5.xml:484 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@ -3016,13 +3016,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:504 +#: apt.conf.5.xml:498 #, no-wrap msgid "/cdrom/::Mount \"foo\";" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:499 +#: apt.conf.5.xml:493 msgid "" "For URIs using the <literal>cdrom</literal> method, the only configurable " "option is the mount point, <literal>cdrom::Mount</literal>, which must be " @@ -3035,7 +3035,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:512 +#: apt.conf.5.xml:506 msgid "" "For GPGV URIs the only configurable option is " "<literal>gpgv::Options</literal>, which passes additional parameters to " @@ -3043,7 +3043,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:523 +#: apt.conf.5.xml:517 #, no-wrap msgid "" "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> " @@ -3051,7 +3051,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:518 +#: apt.conf.5.xml:512 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " @@ -3063,19 +3063,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:528 +#: apt.conf.5.xml:522 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:531 +#: apt.conf.5.xml:525 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:524 +#: apt.conf.5.xml:518 msgid "" "Also, the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " @@ -3093,13 +3093,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:538 +#: apt.conf.5.xml:532 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:533 +#: apt.conf.5.xml:527 msgid "" "Note that the " "<literal>Dir::Bin::<replaceable>Methodname</replaceable></literal> will be " @@ -3115,7 +3115,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:543 +#: apt.conf.5.xml:537 msgid "" "The special type <literal>uncompressed</literal> can be used to give " "uncompressed files a preference, but note that most archives don't provide " @@ -3123,7 +3123,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:550 +#: apt.conf.5.xml:544 msgid "" "When downloading <literal>gzip</literal> compressed indexes (Packages, " "Sources, or Translations), keep them gzip compressed locally instead of " @@ -3132,7 +3132,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:558 +#: apt.conf.5.xml:552 msgid "" "The Languages subsection controls which <filename>Translation</filename> " "files are downloaded and in which order APT tries to display the " @@ -3144,13 +3144,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting> -#: apt.conf.5.xml:575 +#: apt.conf.5.xml:569 #, no-wrap msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:563 +#: apt.conf.5.xml:557 msgid "" "The default list includes \"environment\" and " "\"en\". \"<literal>environment</literal>\" has a special meaning here: it " @@ -3172,7 +3172,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:576 +#: apt.conf.5.xml:570 msgid "" "Note: To prevent problems resulting from APT being executed in different " "environments (e.g. by different users or by other programs) all Translation " @@ -3182,22 +3182,22 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:585 +#: apt.conf.5.xml:579 msgid "When downloading, force to use only the IPv4 protocol." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:591 +#: apt.conf.5.xml:585 msgid "When downloading, force to use only the IPv6 protocol." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:598 +#: apt.conf.5.xml:592 msgid "Directories" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:600 +#: apt.conf.5.xml:594 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@ -3209,7 +3209,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:607 +#: apt.conf.5.xml:601 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@ -3223,7 +3223,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:617 +#: apt.conf.5.xml:611 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -3233,7 +3233,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:623 +#: apt.conf.5.xml:617 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -3241,7 +3241,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:627 +#: apt.conf.5.xml:621 msgid "" "Binary programs are pointed to by " "<literal>Dir::Bin</literal>. <literal>Dir::Bin::Methods</literal> specifies " @@ -3253,7 +3253,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:635 +#: apt.conf.5.xml:629 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -3266,7 +3266,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:648 +#: apt.conf.5.xml:642 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -3277,12 +3277,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:657 +#: apt.conf.5.xml:651 msgid "APT in DSelect" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:659 +#: apt.conf.5.xml:653 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -3290,7 +3290,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:664 +#: apt.conf.5.xml:658 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, " @@ -3304,40 +3304,40 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:678 +#: apt.conf.5.xml:672 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:683 +#: apt.conf.5.xml:677 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:688 +#: apt.conf.5.xml:682 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:694 +#: apt.conf.5.xml:688 msgid "How APT calls &dpkg;" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:695 +#: apt.conf.5.xml:689 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:700 +#: apt.conf.5.xml:694 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -3345,7 +3345,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:706 +#: apt.conf.5.xml:700 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -3354,7 +3354,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:713 +#: apt.conf.5.xml:707 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -3365,7 +3365,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:720 +#: apt.conf.5.xml:714 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@ -3374,7 +3374,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:725 +#: apt.conf.5.xml:719 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -3385,7 +3385,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:732 +#: apt.conf.5.xml:726 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</literal> " @@ -3396,26 +3396,26 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:742 +#: apt.conf.5.xml:736 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:747 +#: apt.conf.5.xml:741 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:746 msgid "dpkg trigger usage (and related options)" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:753 +#: apt.conf.5.xml:747 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -3430,7 +3430,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:768 +#: apt.conf.5.xml:762 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -3440,7 +3440,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:762 +#: apt.conf.5.xml:756 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -3454,7 +3454,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:775 +#: apt.conf.5.xml:769 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -3467,7 +3467,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:783 +#: apt.conf.5.xml:777 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is " @@ -3485,7 +3485,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:798 +#: apt.conf.5.xml:792 msgid "" "If this option is set APT will call <command>dpkg --configure " "--pending</command> to let &dpkg; handle all required configurations and " @@ -3497,7 +3497,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:805 +#: apt.conf.5.xml:799 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -3508,7 +3508,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:818 +#: apt.conf.5.xml:812 #, no-wrap msgid "" "OrderList::Score {\n" @@ -3520,7 +3520,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:811 +#: apt.conf.5.xml:805 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -3534,12 +3534,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:831 +#: apt.conf.5.xml:825 msgid "Periodic and Archives options" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:832 +#: apt.conf.5.xml:826 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -3548,12 +3548,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:840 +#: apt.conf.5.xml:834 msgid "Debug options" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:842 +#: apt.conf.5.xml:836 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -3564,7 +3564,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:853 +#: apt.conf.5.xml:847 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, " @@ -3572,7 +3572,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:861 +#: apt.conf.5.xml:855 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s " @@ -3580,7 +3580,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:870 +#: apt.conf.5.xml:864 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -3590,65 +3590,65 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:878 +#: apt.conf.5.xml:872 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:888 +#: apt.conf.5.xml:882 msgid "A full list of debugging options to apt follows." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:897 +#: apt.conf.5.xml:891 msgid "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:908 +#: apt.conf.5.xml:902 msgid "Print information related to downloading packages using FTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:919 +#: apt.conf.5.xml:913 msgid "Print information related to downloading packages using HTTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:930 +#: apt.conf.5.xml:924 msgid "Print information related to downloading packages using HTTPS." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:941 +#: apt.conf.5.xml:935 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:952 +#: apt.conf.5.xml:946 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:962 +#: apt.conf.5.xml:956 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:972 +#: apt.conf.5.xml:966 msgid "" "Output each cryptographic hash that is generated by the " "<literal>apt</literal> libraries." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:982 +#: apt.conf.5.xml:976 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -3656,52 +3656,52 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:993 +#: apt.conf.5.xml:987 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1005 +#: apt.conf.5.xml:999 msgid "Log when items are added to or removed from the global download queue." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1015 +#: apt.conf.5.xml:1009 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1025 +#: apt.conf.5.xml:1019 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1037 +#: apt.conf.5.xml:1031 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1048 +#: apt.conf.5.xml:1042 msgid "Log all interactions with the sub-processes that actually perform downloads." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1059 +#: apt.conf.5.xml:1053 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1069 +#: apt.conf.5.xml:1063 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial " @@ -3711,7 +3711,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1083 +#: apt.conf.5.xml:1077 msgid "" "Generate debug messages describing which packages are marked as " "keep/install/remove while the ProblemResolver does his work. Each addition " @@ -3729,45 +3729,45 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1104 +#: apt.conf.5.xml:1098 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1115 +#: apt.conf.5.xml:1109 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1126 +#: apt.conf.5.xml:1120 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1138 +#: apt.conf.5.xml:1132 msgid "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1149 +#: apt.conf.5.xml:1143 msgid "Output the priority of each package list on startup." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1159 +#: apt.conf.5.xml:1153 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1170 +#: apt.conf.5.xml:1164 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -3775,14 +3775,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1182 +#: apt.conf.5.xml:1176 msgid "" "Print information about the vendors read from " "<filename>/etc/apt/vendors.list</filename>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1192 +#: apt.conf.5.xml:1186 msgid "" "Display the external commands that are called by apt hooks. This includes " "e.g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " @@ -3790,12 +3790,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1216 apt_preferences.5.xml:547 sources.list.5.xml:239 apt-ftparchive.1.xml:598 +#: apt.conf.5.xml:1210 apt_preferences.5.xml:541 sources.list.5.xml:233 apt-ftparchive.1.xml:592 msgid "Examples" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1217 +#: apt.conf.5.xml:1211 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -3803,17 +3803,17 @@ msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1229 +#: apt.conf.5.xml:1223 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt_preferences.5.xml:34 +#: apt_preferences.5.xml:28 msgid "Preference control file for APT" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:39 +#: apt_preferences.5.xml:33 msgid "" "The APT preferences file <filename>/etc/apt/preferences</filename> and the " "fragment files in the <filename>/etc/apt/preferences.d/</filename> folder " @@ -3822,7 +3822,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:44 +#: apt_preferences.5.xml:38 msgid "" "Several versions of a package may be available for installation when the " "&sources-list; file contains references to more than one distribution (for " @@ -3835,7 +3835,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:54 +#: apt_preferences.5.xml:48 msgid "" "Several instances of the same version of a package may be available when the " "&sources-list; file contains references to more than one source. In this " @@ -3845,7 +3845,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:61 +#: apt_preferences.5.xml:55 msgid "" "Preferences are a strong power in the hands of a system administrator but " "they can become also their biggest nightmare if used without care! APT will " @@ -3859,7 +3859,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:72 +#: apt_preferences.5.xml:66 msgid "" "Note that the files in the <filename>/etc/apt/preferences.d</filename> " "directory are parsed in alphanumeric ascending order and need to obey the " @@ -3872,12 +3872,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:81 +#: apt_preferences.5.xml:75 msgid "APT's Default Priority Assignments" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:96 +#: apt_preferences.5.xml:90 #, no-wrap msgid "" "<command>apt-get install -t testing " @@ -3885,13 +3885,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:99 +#: apt_preferences.5.xml:93 #, no-wrap msgid "APT::Default-Release \"stable\";\n" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:83 +#: apt_preferences.5.xml:77 msgid "" "If there is no preferences file or if there is no entry in the file that " "applies to a particular version then the priority assigned to that version " @@ -3908,19 +3908,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:103 +#: apt_preferences.5.xml:97 msgid "" "If the target release has been specified then APT uses the following " "algorithm to set the priorities of the versions of a package. Assign:" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:108 +#: apt_preferences.5.xml:102 msgid "priority 1" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:109 +#: apt_preferences.5.xml:103 msgid "" "to the versions coming from archives which in their " "<filename>Release</filename> files are marked as \"NotAutomatic: yes\" but " @@ -3929,12 +3929,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:115 +#: apt_preferences.5.xml:109 msgid "priority 100" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:116 +#: apt_preferences.5.xml:110 msgid "" "to the version that is already installed (if any) and to the versions coming " "from archives which in their <filename>Release</filename> files are marked " @@ -3943,29 +3943,29 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:123 +#: apt_preferences.5.xml:117 msgid "priority 500" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:124 +#: apt_preferences.5.xml:118 msgid "" "to the versions that are not installed and do not belong to the target " "release." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:128 +#: apt_preferences.5.xml:122 msgid "priority 990" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:129 +#: apt_preferences.5.xml:123 msgid "to the versions that are not installed and belong to the target release." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:134 +#: apt_preferences.5.xml:128 msgid "" "If the target release has not been specified then APT simply assigns " "priority 100 to all installed package versions and priority 500 to all " @@ -3976,14 +3976,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:141 +#: apt_preferences.5.xml:135 msgid "" "APT then applies the following rules, listed in order of precedence, to " "determine which version of a package to install." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:144 +#: apt_preferences.5.xml:138 msgid "" "Never downgrade unless the priority of an available version exceeds 1000. " "(\"Downgrading\" is installing a less recent version of a package in place " @@ -3993,19 +3993,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:150 +#: apt_preferences.5.xml:144 msgid "Install the highest priority version." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:151 +#: apt_preferences.5.xml:145 msgid "" "If two or more versions have the same priority, install the most recent one " "(that is, the one with the higher version number)." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:154 +#: apt_preferences.5.xml:148 msgid "" "If two or more versions have the same priority and version number but either " "the packages differ in some of their metadata or the " @@ -4013,7 +4013,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:160 +#: apt_preferences.5.xml:154 msgid "" "In a typical situation, the installed version of a package (priority 100) " "is not as recent as one of the versions available from the sources listed in " @@ -4024,7 +4024,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:167 +#: apt_preferences.5.xml:161 msgid "" "More rarely, the installed version of a package is <emphasis>more</emphasis> " "recent than any of the other available versions. The package will not be " @@ -4034,7 +4034,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:172 +#: apt_preferences.5.xml:166 msgid "" "Sometimes the installed version of a package is more recent than the version " "belonging to the target release, but not as recent as a version belonging to " @@ -4046,12 +4046,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:181 +#: apt_preferences.5.xml:175 msgid "The Effect of APT Preferences" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:183 +#: apt_preferences.5.xml:177 msgid "" "The APT preferences file allows the system administrator to control the " "assignment of priorities. The file consists of one or more multi-line " @@ -4060,7 +4060,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:189 +#: apt_preferences.5.xml:183 msgid "" "The specific form assigns a priority (a \"Pin-Priority\") to one or more " "specified packages with a specified version or version range. For example, " @@ -4071,7 +4071,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:196 +#: apt_preferences.5.xml:190 #, no-wrap msgid "" "Package: perl\n" @@ -4080,7 +4080,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:202 +#: apt_preferences.5.xml:196 msgid "" "The general form assigns a priority to all of the package versions in a " "given distribution (that is, to all the versions of packages that are listed " @@ -4090,7 +4090,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:208 +#: apt_preferences.5.xml:202 msgid "" "This general-form entry in the APT preferences file applies only to groups " "of packages. For example, the following record assigns a high priority to " @@ -4098,7 +4098,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:213 +#: apt_preferences.5.xml:207 #, no-wrap msgid "" "Package: *\n" @@ -4107,7 +4107,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:218 +#: apt_preferences.5.xml:212 msgid "" "A note of caution: the keyword used here is \"<literal>origin</literal>\" " "which can be used to match a hostname. The following record will assign a " @@ -4116,7 +4116,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:222 +#: apt_preferences.5.xml:216 #, no-wrap msgid "" "Package: *\n" @@ -4125,7 +4125,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:226 +#: apt_preferences.5.xml:220 msgid "" "This should <emphasis>not</emphasis> be confused with the Origin of a " "distribution as specified in a <filename>Release</filename> file. What " @@ -4135,7 +4135,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:231 +#: apt_preferences.5.xml:225 msgid "" "The following record assigns a low priority to all package versions " "belonging to any distribution whose Archive name is " @@ -4143,7 +4143,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:235 +#: apt_preferences.5.xml:229 #, no-wrap msgid "" "Package: *\n" @@ -4152,7 +4152,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:240 +#: apt_preferences.5.xml:234 msgid "" "The following record assigns a high priority to all package versions " "belonging to any distribution whose Codename is " @@ -4160,7 +4160,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:244 +#: apt_preferences.5.xml:238 #, no-wrap msgid "" "Package: *\n" @@ -4169,7 +4169,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:249 +#: apt_preferences.5.xml:243 msgid "" "The following record assigns a high priority to all package versions " "belonging to any release whose Archive name is \"<literal>stable</literal>\" " @@ -4177,7 +4177,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:254 +#: apt_preferences.5.xml:248 #, no-wrap msgid "" "Package: *\n" @@ -4186,12 +4186,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:264 +#: apt_preferences.5.xml:258 msgid "Regular expressions and &glob; syntax" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:266 +#: apt_preferences.5.xml:260 msgid "" "APT also supports pinning by &glob; expressions, and regular expressions " "surrounded by slashes. For example, the following example assigns the " @@ -4201,7 +4201,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:275 +#: apt_preferences.5.xml:269 #, no-wrap msgid "" "Package: gnome* /kde/\n" @@ -4210,7 +4210,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:281 +#: apt_preferences.5.xml:275 msgid "" "The rule for those expressions is that they can occur anywhere where a " "string can occur. Thus, the following pin assigns the priority 990 to all " @@ -4218,7 +4218,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:287 +#: apt_preferences.5.xml:281 #, no-wrap msgid "" "Package: *\n" @@ -4227,7 +4227,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:293 +#: apt_preferences.5.xml:287 msgid "" "If a regular expression occurs in a <literal>Package</literal> field, the " "behavior is the same as if this regular expression were replaced with a list " @@ -4238,89 +4238,89 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:309 +#: apt_preferences.5.xml:303 msgid "How APT Interprets Priorities" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:312 +#: apt_preferences.5.xml:306 msgid "" "Priorities (P) assigned in the APT preferences file must be positive or " "negative integers. They are interpreted as follows (roughly speaking):" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:317 +#: apt_preferences.5.xml:311 msgid "P >= 1000" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:318 +#: apt_preferences.5.xml:312 msgid "" "causes a version to be installed even if this constitutes a downgrade of the " "package" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:322 +#: apt_preferences.5.xml:316 msgid "990 <= P < 1000" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:323 +#: apt_preferences.5.xml:317 msgid "" "causes a version to be installed even if it does not come from the target " "release, unless the installed version is more recent" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:328 +#: apt_preferences.5.xml:322 msgid "500 <= P < 990" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:329 +#: apt_preferences.5.xml:323 msgid "" "causes a version to be installed unless there is a version available " "belonging to the target release or the installed version is more recent" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:334 +#: apt_preferences.5.xml:328 msgid "100 <= P < 500" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:335 +#: apt_preferences.5.xml:329 msgid "" "causes a version to be installed unless there is a version available " "belonging to some other distribution or the installed version is more recent" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:340 +#: apt_preferences.5.xml:334 msgid "0 < P < 100" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:341 +#: apt_preferences.5.xml:335 msgid "" "causes a version to be installed only if there is no installed version of " "the package" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:345 +#: apt_preferences.5.xml:339 msgid "P < 0" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:346 +#: apt_preferences.5.xml:340 msgid "prevents the version from being installed" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:351 +#: apt_preferences.5.xml:345 msgid "" "If any specific-form records match an available package version then the " "first such record determines the priority of the package version. Failing " @@ -4329,14 +4329,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:357 +#: apt_preferences.5.xml:351 msgid "" "For example, suppose the APT preferences file contains the three records " "presented earlier:" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:361 +#: apt_preferences.5.xml:355 #, no-wrap msgid "" "Package: perl\n" @@ -4353,12 +4353,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:374 +#: apt_preferences.5.xml:368 msgid "Then:" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:376 +#: apt_preferences.5.xml:370 msgid "" "The most recent available version of the <literal>perl</literal> package " "will be installed, so long as that version's version number begins with " @@ -4369,7 +4369,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:381 +#: apt_preferences.5.xml:375 msgid "" "A version of any package other than <literal>perl</literal> that is " "available from the local system has priority over other versions, even " @@ -4377,7 +4377,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:385 +#: apt_preferences.5.xml:379 msgid "" "A version of a package whose origin is not the local system but some other " "site listed in &sources-list; and which belongs to an " @@ -4386,12 +4386,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:395 +#: apt_preferences.5.xml:389 msgid "Determination of Package Version and Distribution Properties" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:397 +#: apt_preferences.5.xml:391 msgid "" "The locations listed in the &sources-list; file should provide " "<filename>Packages</filename> and <filename>Release</filename> files to " @@ -4399,7 +4399,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:401 +#: apt_preferences.5.xml:395 msgid "" "The <filename>Packages</filename> file is normally found in the directory " "<filename>.../dists/<replaceable>dist-name</replaceable>/<replaceable>component</replaceable>/<replaceable>arch</replaceable></filename>: " @@ -4411,27 +4411,27 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:409 +#: apt_preferences.5.xml:403 msgid "the <literal>Package:</literal> line" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:410 +#: apt_preferences.5.xml:404 msgid "gives the package name" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:413 apt_preferences.5.xml:463 +#: apt_preferences.5.xml:407 apt_preferences.5.xml:457 msgid "the <literal>Version:</literal> line" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:414 +#: apt_preferences.5.xml:408 msgid "gives the version number for the named package" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:419 +#: apt_preferences.5.xml:413 msgid "" "The <filename>Release</filename> file is normally found in the directory " "<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for " @@ -4444,12 +4444,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:430 +#: apt_preferences.5.xml:424 msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:431 +#: apt_preferences.5.xml:425 msgid "" "names the archive to which all the packages in the directory tree belong. " "For example, the line \"Archive: stable\" or \"Suite: stable\" specifies " @@ -4460,18 +4460,18 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:441 +#: apt_preferences.5.xml:435 #, no-wrap msgid "Pin: release a=stable\n" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:447 +#: apt_preferences.5.xml:441 msgid "the <literal>Codename:</literal> line" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:448 +#: apt_preferences.5.xml:442 msgid "" "names the codename to which all the packages in the directory tree belong. " "For example, the line \"Codename: &testing-codename;\" specifies that all of " @@ -4482,13 +4482,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:457 +#: apt_preferences.5.xml:451 #, no-wrap msgid "Pin: release n=&testing-codename;\n" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:464 +#: apt_preferences.5.xml:458 msgid "" "names the release version. For example, the packages in the tree might " "belong to Debian release version &stable-version;. Note that there is " @@ -4499,7 +4499,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:473 +#: apt_preferences.5.xml:467 #, no-wrap msgid "" "Pin: release v=&stable-version;\n" @@ -4508,12 +4508,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:482 +#: apt_preferences.5.xml:476 msgid "the <literal>Component:</literal> line" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:483 +#: apt_preferences.5.xml:477 msgid "" "names the licensing component associated with the packages in the directory " "tree of the <filename>Release</filename> file. For example, the line " @@ -4525,18 +4525,18 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:492 +#: apt_preferences.5.xml:486 #, no-wrap msgid "Pin: release c=main\n" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:498 +#: apt_preferences.5.xml:492 msgid "the <literal>Origin:</literal> line" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:499 +#: apt_preferences.5.xml:493 msgid "" "names the originator of the packages in the directory tree of the " "<filename>Release</filename> file. Most commonly, this is " @@ -4545,18 +4545,18 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:505 +#: apt_preferences.5.xml:499 #, no-wrap msgid "Pin: release o=Debian\n" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:511 +#: apt_preferences.5.xml:505 msgid "the <literal>Label:</literal> line" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:512 +#: apt_preferences.5.xml:506 msgid "" "names the label of the packages in the directory tree of the " "<filename>Release</filename> file. Most commonly, this is " @@ -4565,13 +4565,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:518 +#: apt_preferences.5.xml:512 #, no-wrap msgid "Pin: release l=Debian\n" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:525 +#: apt_preferences.5.xml:519 msgid "" "All of the <filename>Packages</filename> and <filename>Release</filename> " "files retrieved from locations listed in the &sources-list; file are stored " @@ -4586,12 +4586,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:538 +#: apt_preferences.5.xml:532 msgid "Optional Lines in an APT Preferences Record" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:540 +#: apt_preferences.5.xml:534 msgid "" "Each record in the APT preferences file can optionally begin with one or " "more lines beginning with the word <literal>Explanation:</literal>. This " @@ -4599,12 +4599,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:549 +#: apt_preferences.5.xml:543 msgid "Tracking Stable" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:557 +#: apt_preferences.5.xml:551 #, no-wrap msgid "" "Explanation: Uninstall or do not install any Debian-originated\n" @@ -4619,7 +4619,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:551 +#: apt_preferences.5.xml:545 msgid "" "The following APT preferences file will cause APT to assign a priority " "higher than the default (500) to all package versions belonging to a " @@ -4629,7 +4629,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:574 apt_preferences.5.xml:620 apt_preferences.5.xml:678 +#: apt_preferences.5.xml:568 apt_preferences.5.xml:614 apt_preferences.5.xml:672 #, no-wrap msgid "" "apt-get install <replaceable>package-name</replaceable>\n" @@ -4638,7 +4638,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:569 +#: apt_preferences.5.xml:563 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest " @@ -4647,13 +4647,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:586 +#: apt_preferences.5.xml:580 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/testing\n" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:580 +#: apt_preferences.5.xml:574 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>testing</literal> distribution; the package " @@ -4662,12 +4662,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:592 +#: apt_preferences.5.xml:586 msgid "Tracking Testing or Unstable" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:601 +#: apt_preferences.5.xml:595 #, no-wrap msgid "" "Package: *\n" @@ -4684,7 +4684,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:594 +#: apt_preferences.5.xml:588 msgid "" "The following APT preferences file will cause APT to assign a high priority " "to package versions from the <literal>testing</literal> distribution, a " @@ -4695,7 +4695,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:615 +#: apt_preferences.5.xml:609 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest " @@ -4704,13 +4704,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:635 +#: apt_preferences.5.xml:629 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/unstable\n" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:626 +#: apt_preferences.5.xml:620 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>unstable</literal> distribution. " @@ -4722,12 +4722,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:642 +#: apt_preferences.5.xml:636 msgid "Tracking the evolution of a codename release" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:656 +#: apt_preferences.5.xml:650 #, no-wrap msgid "" "Explanation: Uninstall or do not install any Debian-originated package " @@ -4749,7 +4749,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:644 +#: apt_preferences.5.xml:638 msgid "" "The following APT preferences file will cause APT to assign a priority " "higher than the default (500) to all package versions belonging to a " @@ -4764,7 +4764,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:673 +#: apt_preferences.5.xml:667 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest version(s) in " @@ -4773,13 +4773,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:693 +#: apt_preferences.5.xml:687 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/sid\n" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:684 +#: apt_preferences.5.xml:678 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>sid</literal> distribution. Thereafter, " @@ -4791,17 +4791,17 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:708 +#: apt_preferences.5.xml:702 msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;" msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: sources.list.5.xml:35 +#: sources.list.5.xml:29 msgid "List of configured APT data sources" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:40 +#: sources.list.5.xml:34 msgid "" "The source list <filename>/etc/apt/sources.list</filename> is designed to " "support any number of active sources and a variety of source media. The file " @@ -4812,7 +4812,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:47 +#: sources.list.5.xml:41 msgid "" "Each line specifying a source starts with type " "(e.g. <literal>deb-src</literal>) followed by options and arguments for " @@ -4822,12 +4822,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:55 +#: sources.list.5.xml:49 msgid "sources.list.d" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:56 +#: sources.list.5.xml:50 msgid "" "The <filename>/etc/apt/sources.list.d</filename> directory provides a way to " "add sources.list entries in separate files. The format is the same as for " @@ -4840,12 +4840,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:67 +#: sources.list.5.xml:61 msgid "The deb and deb-src types" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:68 +#: sources.list.5.xml:62 msgid "" "The <literal>deb</literal> type references a typical two-level Debian " "archive, <filename>distribution/component</filename>. The " @@ -4861,20 +4861,20 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:79 +#: sources.list.5.xml:73 msgid "" "The format for a <filename>sources.list</filename> entry using the " "<literal>deb</literal> and <literal>deb-src</literal> types is:" msgstr "" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:82 +#: sources.list.5.xml:76 #, no-wrap msgid "deb [ options ] uri suite [component1] [component2] [...]" msgstr "" #. type: Content of: <refentry><refsect1><para><literallayout> -#: sources.list.5.xml:86 +#: sources.list.5.xml:80 #, no-wrap msgid "" " Types: deb deb-src\n" @@ -4897,14 +4897,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:84 +#: sources.list.5.xml:78 msgid "" "Alternatively a rfc822 style format is also supported: <placeholder " "type=\"literallayout\" id=\"0\"/>" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:105 +#: sources.list.5.xml:99 msgid "" "The URI for the <literal>deb</literal> type must specify the base of the " "Debian distribution, from which APT will find the information it needs. " @@ -4917,7 +4917,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:114 +#: sources.list.5.xml:108 msgid "" "<literal>suite</literal> may also contain a variable, " "<literal>$(ARCH)</literal> which expands to the Debian architecture (such as " @@ -4929,7 +4929,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:122 +#: sources.list.5.xml:116 msgid "" "In the traditional style sources.list format since only one distribution can " "be specified per line it may be necessary to have multiple lines for the " @@ -4945,7 +4945,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:136 +#: sources.list.5.xml:130 msgid "" "<literal>options</literal> is always optional and needs to be surrounded by " "square brackets. It can consist of multiple settings in the form " @@ -4956,7 +4956,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:142 +#: sources.list.5.xml:136 msgid "" "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</replaceable>,…</literal> " "can be used to specify for which architectures information should be " @@ -4965,7 +4965,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:146 +#: sources.list.5.xml:140 msgid "" "<literal>arch+=<replaceable>arch1</replaceable>,<replaceable>arch2</replaceable>,…</literal> " "and " @@ -4975,7 +4975,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:149 +#: sources.list.5.xml:143 msgid "" "<literal>trusted=yes</literal> can be set to indicate that packages from " "this source are always authenticated even if the " @@ -4987,7 +4987,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:156 +#: sources.list.5.xml:150 msgid "" "It is important to list sources in order of preference, with the most " "preferred source listed first. Typically this will result in sorting by " @@ -4996,12 +4996,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:161 +#: sources.list.5.xml:155 msgid "Some examples:" msgstr "" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:163 +#: sources.list.5.xml:157 #, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n" @@ -5011,17 +5011,17 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:169 +#: sources.list.5.xml:163 msgid "URI specification" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:171 +#: sources.list.5.xml:165 msgid "The currently recognized URI types are:" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:175 +#: sources.list.5.xml:169 msgid "" "The file scheme allows an arbitrary directory in the file system to be " "considered an archive. This is useful for NFS mounts and local mirrors or " @@ -5029,7 +5029,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:182 +#: sources.list.5.xml:176 msgid "" "The cdrom scheme allows APT to use a local CD-ROM drive with media " "swapping. Use the &apt-cdrom; program to create cdrom entries in the source " @@ -5037,7 +5037,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:189 +#: sources.list.5.xml:183 msgid "" "The http scheme specifies an HTTP server for the archive. If an environment " "variable <envar>http_proxy</envar> is set with the format " @@ -5048,7 +5048,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:200 +#: sources.list.5.xml:194 msgid "" "The ftp scheme specifies an FTP server for the archive. APT's FTP behavior " "is highly configurable; for more information see the &apt-conf; manual " @@ -5061,7 +5061,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:212 +#: sources.list.5.xml:206 msgid "" "The copy scheme is identical to the file scheme except that packages are " "copied into the cache directory instead of used directly at their location. " @@ -5070,7 +5070,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:219 +#: sources.list.5.xml:213 msgid "" "The rsh/ssh method invokes RSH/SSH to connect to a remote host and access " "the files as a given user. Prior configuration of rhosts or RSA keys is " @@ -5079,12 +5079,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: sources.list.5.xml:226 +#: sources.list.5.xml:220 msgid "adding more recognizable URI types" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:228 +#: sources.list.5.xml:222 msgid "" "APT can be extended with more methods shipped in other optional packages, " "which should follow the naming scheme " @@ -5096,42 +5096,42 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:240 +#: sources.list.5.xml:234 msgid "" "Uses the archive stored locally (or NFS mounted) at /home/jason/debian for " "stable/main, stable/contrib, and stable/non-free." msgstr "" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:242 +#: sources.list.5.xml:236 #, no-wrap msgid "deb file:/home/jason/debian stable main contrib non-free" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:244 +#: sources.list.5.xml:238 msgid "As above, except this uses the unstable (development) distribution." msgstr "" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:245 +#: sources.list.5.xml:239 #, no-wrap msgid "deb file:/home/jason/debian unstable main contrib non-free" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:247 +#: sources.list.5.xml:241 msgid "Source line for the above" msgstr "" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:248 +#: sources.list.5.xml:242 #, no-wrap msgid "deb-src file:/home/jason/debian unstable main contrib non-free" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:250 +#: sources.list.5.xml:244 msgid "" "The first line gets package information for the architectures in " "<literal>APT::Architectures</literal> while the second always retrieves " @@ -5139,7 +5139,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:252 +#: sources.list.5.xml:246 #, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main\n" @@ -5147,33 +5147,33 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:255 +#: sources.list.5.xml:249 msgid "" "Uses HTTP to access the archive at archive.debian.org, and uses only the " "hamm/main area." msgstr "" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:257 +#: sources.list.5.xml:251 #, no-wrap msgid "deb http://archive.debian.org/debian-archive hamm main" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:259 +#: sources.list.5.xml:253 msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the &stable-codename;/contrib area." msgstr "" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:261 +#: sources.list.5.xml:255 #, no-wrap msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:263 +#: sources.list.5.xml:257 msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the unstable/contrib area. If this line appears as " @@ -5182,19 +5182,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:267 +#: sources.list.5.xml:261 #, no-wrap msgid "deb ftp://ftp.debian.org/debian unstable contrib" msgstr "" #. type: Content of: <refentry><refsect1><para><literallayout> -#: sources.list.5.xml:276 +#: sources.list.5.xml:270 #, no-wrap msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:269 +#: sources.list.5.xml:263 msgid "" "Uses HTTP to access the archive at ftp.tlh.debian.org, under the universe " "directory, and uses only files found under " @@ -5206,24 +5206,24 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:281 +#: sources.list.5.xml:275 msgid "&apt-cache; &apt-conf;" msgstr "" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt-extracttemplates.1.xml:28 apt-sortpkgs.1.xml:28 apt-ftparchive.1.xml:28 +#: apt-extracttemplates.1.xml:22 apt-sortpkgs.1.xml:22 apt-ftparchive.1.xml:22 msgid "1" msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-extracttemplates.1.xml:35 +#: apt-extracttemplates.1.xml:29 msgid "" "Utility to extract <command>debconf</command> config and templates from " "Debian packages" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:41 +#: apt-extracttemplates.1.xml:35 msgid "" "<command>apt-extracttemplates</command> will take one or more Debian package " "files as input and write out (to a temporary directory) all associated " @@ -5233,12 +5233,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:46 +#: apt-extracttemplates.1.xml:40 msgid "package version template-file config-script" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:47 +#: apt-extracttemplates.1.xml:41 msgid "" "template-file and config-script are written to the temporary directory " "specified by the <option>-t</option> or <option>--tempdir</option> " @@ -5248,7 +5248,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-extracttemplates.1.xml:60 +#: apt-extracttemplates.1.xml:54 msgid "" "Temporary directory in which to write extracted <command>debconf</command> " "template files and config scripts. Configuration Item: " @@ -5256,19 +5256,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:77 +#: apt-extracttemplates.1.xml:71 msgid "" "<command>apt-extracttemplates</command> returns zero on normal operation, " "decimal 100 on error." msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-sortpkgs.1.xml:35 +#: apt-sortpkgs.1.xml:29 msgid "Utility to sort package index files" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:41 +#: apt-sortpkgs.1.xml:35 msgid "" "<command>apt-sortpkgs</command> will take an index file (source index or " "package index) and sort the records so that they are ordered by the package " @@ -5277,31 +5277,31 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:47 +#: apt-sortpkgs.1.xml:41 msgid "All output is sent to standard output; the input must be a seekable file." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-sortpkgs.1.xml:56 +#: apt-sortpkgs.1.xml:50 msgid "" "Use source index field ordering. Configuration Item: " "<literal>APT::SortPkgs::Source</literal>." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:70 +#: apt-sortpkgs.1.xml:64 msgid "" "<command>apt-sortpkgs</command> returns zero on normal operation, decimal " "100 on error." msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-ftparchive.1.xml:35 +#: apt-ftparchive.1.xml:29 msgid "Utility to generate index files" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:41 +#: apt-ftparchive.1.xml:35 msgid "" "<command>apt-ftparchive</command> is the command line tool that generates " "the index files that APT uses to access a distribution source. The index " @@ -5310,7 +5310,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:45 +#: apt-ftparchive.1.xml:39 msgid "" "<command>apt-ftparchive</command> is a superset of the &dpkg-scanpackages; " "program, incorporating its entire functionality via the " @@ -5320,7 +5320,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:51 +#: apt-ftparchive.1.xml:45 msgid "" "Internally <command>apt-ftparchive</command> can make use of binary " "databases to cache the contents of a .deb file and it does not rely on any " @@ -5330,7 +5330,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:62 +#: apt-ftparchive.1.xml:56 msgid "" "The packages command generates a package file from a directory tree. It " "takes the given directory and recursively searches it for .deb files, " @@ -5339,12 +5339,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:67 apt-ftparchive.1.xml:91 +#: apt-ftparchive.1.xml:61 apt-ftparchive.1.xml:85 msgid "The option <option>--db</option> can be used to specify a binary caching DB." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:72 +#: apt-ftparchive.1.xml:66 msgid "" "The <literal>sources</literal> command generates a source index file from a " "directory tree. It takes the given directory and recursively searches it " @@ -5353,7 +5353,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:77 +#: apt-ftparchive.1.xml:71 msgid "" "If an override file is specified then a source override file will be looked " "for with an extension of .src. The --source-override option can be used to " @@ -5361,7 +5361,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:84 +#: apt-ftparchive.1.xml:78 msgid "" "The <literal>contents</literal> command generates a contents file from a " "directory tree. It takes the given directory and recursively searches it for " @@ -5372,7 +5372,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:96 +#: apt-ftparchive.1.xml:90 msgid "" "The <literal>release</literal> command generates a Release file from a " "directory tree. It recursively searches the given directory for uncompressed " @@ -5388,7 +5388,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:106 +#: apt-ftparchive.1.xml:100 msgid "" "Values for the additional metadata fields in the Release file are taken from " "the corresponding variables under " @@ -5402,7 +5402,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:119 +#: apt-ftparchive.1.xml:113 msgid "" "The <literal>generate</literal> command is designed to be runnable from a " "cron script and builds indexes according to the given config file. The " @@ -5412,19 +5412,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:128 +#: apt-ftparchive.1.xml:122 msgid "" "The <literal>clean</literal> command tidies the databases used by the given " "configuration file by removing any records that are no longer necessary." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:134 +#: apt-ftparchive.1.xml:128 msgid "The Generate Configuration" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:136 +#: apt-ftparchive.1.xml:130 msgid "" "The <literal>generate</literal> command uses a configuration file to " "describe the archives that are going to be generated. It follows the typical " @@ -5435,17 +5435,17 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:144 +#: apt-ftparchive.1.xml:138 msgid "The generate configuration has four separate sections, each described below." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:146 +#: apt-ftparchive.1.xml:140 msgid "<literal>Dir</literal> Section" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:148 +#: apt-ftparchive.1.xml:142 msgid "" "The <literal>Dir</literal> section defines the standard directories needed " "to locate the files required during the generation process. These " @@ -5454,7 +5454,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:155 +#: apt-ftparchive.1.xml:149 msgid "" "Specifies the root of the FTP archive, in a standard Debian configuration " "this is the directory that contains the <filename>ls-LR</filename> and dist " @@ -5462,29 +5462,29 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:162 +#: apt-ftparchive.1.xml:156 msgid "Specifies the location of the override files." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:167 +#: apt-ftparchive.1.xml:161 msgid "Specifies the location of the cache files." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:172 +#: apt-ftparchive.1.xml:166 msgid "" "Specifies the location of the file list files, if the " "<literal>FileList</literal> setting is used below." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:178 +#: apt-ftparchive.1.xml:172 msgid "<literal>Default</literal> Section" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:180 +#: apt-ftparchive.1.xml:174 msgid "" "The <literal>Default</literal> section specifies default values, and " "settings that control the operation of the generator. Other sections may " @@ -5492,7 +5492,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:186 +#: apt-ftparchive.1.xml:180 msgid "" "Sets the default compression schemes to use for the package index files. It " "is a string that contains a space separated list of at least one of: '.' (no " @@ -5501,42 +5501,42 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:194 +#: apt-ftparchive.1.xml:188 msgid "" "Sets the default list of file extensions that are package files. This " "defaults to '.deb'." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:200 +#: apt-ftparchive.1.xml:194 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Sources files." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:206 +#: apt-ftparchive.1.xml:200 msgid "" "Sets the default list of file extensions that are source files. This " "defaults to '.dsc'." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:212 +#: apt-ftparchive.1.xml:206 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Contents files." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:218 +#: apt-ftparchive.1.xml:212 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Translation-en master file." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:224 +#: apt-ftparchive.1.xml:218 msgid "" "Specifies the number of kilobytes to delink (and replace with hard links) " "per run. This is used in conjunction with the per-section " @@ -5544,14 +5544,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:231 +#: apt-ftparchive.1.xml:225 msgid "" "Specifies the mode of all created index files. It defaults to 0644. All " "index files are set to this mode with no regard to the umask." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:238 apt-ftparchive.1.xml:384 +#: apt-ftparchive.1.xml:232 apt-ftparchive.1.xml:378 msgid "" "Specifies whether long descriptions should be included in the " "<filename>Packages</filename> file or split out into a master " @@ -5559,12 +5559,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:244 +#: apt-ftparchive.1.xml:238 msgid "<literal>TreeDefault</literal> Section" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:246 +#: apt-ftparchive.1.xml:240 msgid "" "Sets defaults specific to <literal>Tree</literal> sections. All of these " "variables are substitution variables and have the strings $(DIST), " @@ -5572,7 +5572,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:253 +#: apt-ftparchive.1.xml:247 msgid "" "Sets the number of kilobytes of contents files that are generated each " "day. The contents files are round-robined so that over several days they " @@ -5580,7 +5580,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:260 +#: apt-ftparchive.1.xml:254 msgid "" "Controls the number of days a contents file is allowed to be checked without " "changing. If this limit is passed the mtime of the contents file is " @@ -5591,35 +5591,35 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:271 +#: apt-ftparchive.1.xml:265 msgid "" "Sets the top of the .deb directory tree. Defaults to " "<filename>$(DIST)/$(SECTION)/binary-$(ARCH)/</filename>" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:277 +#: apt-ftparchive.1.xml:271 msgid "" "Sets the top of the source package directory tree. Defaults to " "<filename>$(DIST)/$(SECTION)/source/</filename>" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:283 +#: apt-ftparchive.1.xml:277 msgid "" "Sets the output Packages file. Defaults to " "<filename>$(DIST)/$(SECTION)/binary-$(ARCH)/Packages</filename>" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:289 +#: apt-ftparchive.1.xml:283 msgid "" "Sets the output Sources file. Defaults to " "<filename>$(DIST)/$(SECTION)/source/Sources</filename>" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:295 +#: apt-ftparchive.1.xml:289 msgid "" "Sets the output Translation-en master file with the long descriptions if " "they should be not included in the Packages file. Defaults to " @@ -5627,7 +5627,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:302 +#: apt-ftparchive.1.xml:296 msgid "" "Sets the path prefix that causes a symlink to be considered an internal link " "instead of an external link. Defaults to " @@ -5635,7 +5635,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:309 +#: apt-ftparchive.1.xml:303 msgid "" "Sets the output Contents file. Defaults to " "<filename>$(DIST)/$(SECTION)/Contents-$(ARCH)</filename>. If this setting " @@ -5645,19 +5645,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:318 +#: apt-ftparchive.1.xml:312 msgid "Sets header file to prepend to the contents output." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:323 +#: apt-ftparchive.1.xml:317 msgid "" "Sets the binary cache database to use for this section. Multiple sections " "can share the same database." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:329 +#: apt-ftparchive.1.xml:323 msgid "" "Specifies that instead of walking the directory tree, " "<command>apt-ftparchive</command> should read the list of files from the " @@ -5665,7 +5665,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:336 +#: apt-ftparchive.1.xml:330 msgid "" "Specifies that instead of walking the directory tree, " "<command>apt-ftparchive</command> should read the list of files from the " @@ -5674,12 +5674,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:344 +#: apt-ftparchive.1.xml:338 msgid "<literal>Tree</literal> Section" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:346 +#: apt-ftparchive.1.xml:340 msgid "" "The <literal>Tree</literal> section defines a standard Debian file tree " "which consists of a base directory, then multiple sections in that base " @@ -5689,7 +5689,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:351 +#: apt-ftparchive.1.xml:345 msgid "" "The <literal>Tree</literal> section takes a scope tag which sets the " "<literal>$(DIST)</literal> variable and defines the root of the tree (the " @@ -5698,7 +5698,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:356 +#: apt-ftparchive.1.xml:350 msgid "" "All of the settings defined in the <literal>TreeDefault</literal> section " "can be used in a <literal>Tree</literal> section as well as three new " @@ -5706,7 +5706,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt-ftparchive.1.xml:362 +#: apt-ftparchive.1.xml:356 #, no-wrap msgid "" "for i in Sections do \n" @@ -5716,7 +5716,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:359 +#: apt-ftparchive.1.xml:353 msgid "" "When processing a <literal>Tree</literal> section " "<command>apt-ftparchive</command> performs an operation similar to: " @@ -5724,7 +5724,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:370 +#: apt-ftparchive.1.xml:364 msgid "" "This is a space separated list of sections which appear under the " "distribution; typically this is something like <literal>main contrib " @@ -5732,7 +5732,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:377 +#: apt-ftparchive.1.xml:371 msgid "" "This is a space separated list of all the architectures that appear under " "search section. The special architecture 'source' is used to indicate that " @@ -5740,36 +5740,36 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:390 +#: apt-ftparchive.1.xml:384 msgid "" "Sets the binary override file. The override file contains section, priority " "and maintainer address information." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:396 +#: apt-ftparchive.1.xml:390 msgid "" "Sets the source override file. The override file contains section " "information." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:402 apt-ftparchive.1.xml:448 +#: apt-ftparchive.1.xml:396 apt-ftparchive.1.xml:442 msgid "Sets the binary extra override file." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:407 apt-ftparchive.1.xml:453 +#: apt-ftparchive.1.xml:401 apt-ftparchive.1.xml:447 msgid "Sets the source extra override file." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:412 +#: apt-ftparchive.1.xml:406 msgid "<literal>BinDirectory</literal> Section" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:414 +#: apt-ftparchive.1.xml:408 msgid "" "The <literal>bindirectory</literal> section defines a binary directory tree " "with no special structure. The scope tag specifies the location of the " @@ -5779,54 +5779,54 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:422 +#: apt-ftparchive.1.xml:416 msgid "Sets the Packages file output." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:427 +#: apt-ftparchive.1.xml:421 msgid "" "Sets the Sources file output. At least one of <literal>Packages</literal> or " "<literal>Sources</literal> is required." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:433 +#: apt-ftparchive.1.xml:427 msgid "Sets the Contents file output (optional)." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:438 +#: apt-ftparchive.1.xml:432 msgid "Sets the binary override file." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:443 +#: apt-ftparchive.1.xml:437 msgid "Sets the source override file." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:458 +#: apt-ftparchive.1.xml:452 msgid "Sets the cache DB." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:463 +#: apt-ftparchive.1.xml:457 msgid "Appends a path to all the output paths." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:468 +#: apt-ftparchive.1.xml:462 msgid "Specifies the file list file." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:475 +#: apt-ftparchive.1.xml:469 msgid "The Binary Override File" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:476 +#: apt-ftparchive.1.xml:470 msgid "" "The binary override file is fully compatible with &dpkg-scanpackages;. It " "contains four fields separated by spaces. The first field is the package " @@ -5836,19 +5836,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><literallayout> -#: apt-ftparchive.1.xml:482 +#: apt-ftparchive.1.xml:476 #, no-wrap msgid "old [// oldn]* => new" msgstr "" #. type: Content of: <refentry><refsect1><para><literallayout> -#: apt-ftparchive.1.xml:484 +#: apt-ftparchive.1.xml:478 #, no-wrap msgid "new" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:481 +#: apt-ftparchive.1.xml:475 msgid "" "The general form of the maintainer field is: <placeholder " "type=\"literallayout\" id=\"0\"/> or simply, <placeholder " @@ -5859,12 +5859,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:492 +#: apt-ftparchive.1.xml:486 msgid "The Source Override File" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:494 +#: apt-ftparchive.1.xml:488 msgid "" "The source override file is fully compatible with &dpkg-scansources;. It " "contains two fields separated by spaces. The first field is the source " @@ -5872,12 +5872,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:499 +#: apt-ftparchive.1.xml:493 msgid "The Extra Override File" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:501 +#: apt-ftparchive.1.xml:495 msgid "" "The extra override file allows any arbitrary tag to be added or replaced in " "the output. It has three columns, the first is the package, the second is " @@ -5885,7 +5885,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:512 +#: apt-ftparchive.1.xml:506 msgid "" "Generate the given checksum. These options default to on, when turned off " "the generated index files will not have the checksum fields where possible. " @@ -5901,14 +5901,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:523 +#: apt-ftparchive.1.xml:517 msgid "" "Use a binary caching DB. This has no effect on the generate command. " "Configuration Item: <literal>APT::FTPArchive::DB</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:529 +#: apt-ftparchive.1.xml:523 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quiet up to a maximum of 2. You can also use " @@ -5917,7 +5917,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:537 +#: apt-ftparchive.1.xml:531 msgid "" "Perform Delinking. If the <literal>External-Links</literal> setting is used " "then this option actually enables delinking of the files. It defaults to on " @@ -5926,7 +5926,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:545 +#: apt-ftparchive.1.xml:539 msgid "" "Perform contents generation. When this option is set and package indexes are " "being generated with a cache DB then the file listing will also be extracted " @@ -5936,7 +5936,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:555 +#: apt-ftparchive.1.xml:549 msgid "" "Select the source override file to use with the <literal>sources</literal> " "command. Configuration Item: " @@ -5944,14 +5944,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:561 +#: apt-ftparchive.1.xml:555 msgid "" "Make the caching databases read only. Configuration Item: " "<literal>APT::FTPArchive::ReadOnlyDB</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:566 +#: apt-ftparchive.1.xml:560 msgid "" "Accept in the <literal>packages</literal> and <literal>contents</literal> " "commands only package files matching <literal>*_arch.deb</literal> or " @@ -5960,7 +5960,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:574 +#: apt-ftparchive.1.xml:568 msgid "" "&apt-ftparchive; caches as much as possible of metadata in a cachedb. If " "packages are recompiled and/or republished with the same version again, this " @@ -5974,7 +5974,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:586 +#: apt-ftparchive.1.xml:580 msgid "" "This configuration option defaults to \"<literal>true</literal>\" and should " "only be set to <literal>\"false\"</literal> if the Archive generated with " @@ -5984,7 +5984,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><programlisting> -#: apt-ftparchive.1.xml:604 +#: apt-ftparchive.1.xml:598 #, no-wrap msgid "" "<command>apt-ftparchive</command> packages " @@ -5993,63 +5993,63 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:600 +#: apt-ftparchive.1.xml:594 msgid "" "To create a compressed Packages file for a directory containing binary " "packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:614 +#: apt-ftparchive.1.xml:608 msgid "" "<command>apt-ftparchive</command> returns zero on normal operation, decimal " "100 on error." msgstr "" #. type: Attribute 'lang' of: <book> -#: guide.dbk:8 offline.dbk:8 +#: guide.dbk:9 offline.dbk:9 msgid "en" msgstr "" #. type: Content of: <book><title> -#: guide.dbk:10 +#: guide.dbk:11 msgid "APT User's Guide" msgstr "" #. type: Content of: <book><bookinfo><authorgroup><author><personname> -#: guide.dbk:16 offline.dbk:16 +#: guide.dbk:17 offline.dbk:17 msgid "Jason Gunthorpe" msgstr "" #. type: Content of: <book><bookinfo><authorgroup><author><email> -#: guide.dbk:16 offline.dbk:16 +#: guide.dbk:17 offline.dbk:17 msgid "jgg@debian.org" msgstr "" #. type: Content of: <book><bookinfo><releaseinfo> -#: guide.dbk:20 offline.dbk:20 +#: guide.dbk:21 offline.dbk:21 msgid "Version &apt-product-version;" msgstr "" #. type: Content of: <book><bookinfo><abstract><para> -#: guide.dbk:24 +#: guide.dbk:25 msgid "" "This document provides an overview of how to use the the APT package " "manager." msgstr "" #. type: Content of: <book><bookinfo> -#: guide.dbk:28 +#: guide.dbk:29 msgid "<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" msgstr "" #. type: Content of: <book><bookinfo><legalnotice><title> -#: guide.dbk:31 offline.dbk:32 +#: guide.dbk:32 offline.dbk:33 msgid "License Notice" msgstr "" #. type: Content of: <book><bookinfo><legalnotice><para> -#: guide.dbk:33 offline.dbk:34 +#: guide.dbk:34 offline.dbk:35 msgid "" "\"APT\" and this document are free software; you can redistribute them " "and/or modify them under the terms of the GNU General Public License as " @@ -6058,19 +6058,19 @@ msgid "" msgstr "" #. type: Content of: <book><bookinfo><legalnotice><para> -#: guide.dbk:42 offline.dbk:40 +#: guide.dbk:43 offline.dbk:41 msgid "" "For more details, on Debian systems, see the file " "/usr/share/common-licenses/GPL for the full license." msgstr "" #. type: Content of: <book><chapter><title> -#: guide.dbk:49 +#: guide.dbk:50 msgid "General" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:51 +#: guide.dbk:52 msgid "" "The APT package currently contains two sections, the APT " "<command>dselect</command> method and the <command>apt-get</command> command " @@ -6079,12 +6079,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><title> -#: guide.dbk:57 +#: guide.dbk:58 msgid "Anatomy of the Package System" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:59 +#: guide.dbk:60 msgid "" "The Debian packaging system has a large amount of information associated " "with each package to help assure that it integrates cleanly and easily into " @@ -6092,7 +6092,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:64 +#: guide.dbk:65 msgid "" "The dependency system allows individual programs to make use of shared " "elements in the system such as libraries. It simplifies placing infrequently " @@ -6102,7 +6102,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:71 +#: guide.dbk:72 msgid "" "The first step to understanding the dependency system is to grasp the " "concept of a simple dependency. The meaning of a simple dependency is that a " @@ -6111,7 +6111,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:76 +#: guide.dbk:77 msgid "" "For instance, mailcrypt is an emacs extension that aids in encrypting email " "with GPG. Without GPGP installed mailcrypt is useless, so mailcrypt has a " @@ -6120,7 +6120,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:82 +#: guide.dbk:83 msgid "" "The other important dependency to understand is a conflicting dependency. It " "means that a package, when installed with another package, will not work and " @@ -6133,7 +6133,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:92 +#: guide.dbk:93 msgid "" "As an added complication there is the possibility for a package to pretend " "to be another package. Consider that exim and sendmail for many intents are " @@ -6146,7 +6146,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:102 +#: guide.dbk:103 msgid "" "At any given time a single dependency may be met by packages that are " "already installed or it may not be. APT attempts to help resolve dependency " @@ -6155,12 +6155,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><title> -#: guide.dbk:111 +#: guide.dbk:112 msgid "apt-get" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:113 +#: guide.dbk:114 msgid "" "<command>apt-get</command> provides a simple way to install packages from " "the command line. Unlike <command>dpkg</command>, <command>apt-get</command> " @@ -6169,14 +6169,14 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><para><footnote><para> -#: guide.dbk:119 +#: guide.dbk:120 msgid "" "If you are using an http proxy server you must set the http_proxy " "environment variable first, see sources.list(5)" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:119 +#: guide.dbk:120 msgid "" "The first <placeholder type=\"footnote\" id=\"0\"/> thing that should be " "done before using <command>apt-get</command> is to fetch the package lists " @@ -6186,7 +6186,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><screen> -#: guide.dbk:127 +#: guide.dbk:128 #, no-wrap msgid "" "# apt-get update\n" @@ -6197,17 +6197,17 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:134 +#: guide.dbk:135 msgid "Once updated there are several commands that can be used:" msgstr "" #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:138 +#: guide.dbk:139 msgid "upgrade" msgstr "" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:141 +#: guide.dbk:142 msgid "" "Upgrade will attempt to gently upgrade the whole system. Upgrade will never " "install a new package or remove an existing package, nor will it ever " @@ -6220,12 +6220,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:153 +#: guide.dbk:154 msgid "install" msgstr "" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:156 +#: guide.dbk:157 msgid "" "Install is used to install packages by name. The package is automatically " "fetched and installed. This can be useful if you already know the name of " @@ -6237,12 +6237,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:167 +#: guide.dbk:168 msgid "dist-upgrade" msgstr "" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:170 +#: guide.dbk:171 msgid "" "Dist-upgrade is a complete upgrader designed to simplify upgrading between " "releases of Debian. It uses a sophisticated algorithm to determine the best " @@ -6255,14 +6255,14 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:180 +#: guide.dbk:181 msgid "" "It is important to closely look at what dist-upgrade is going to do, its " "decisions may sometimes be quite surprising." msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:187 +#: guide.dbk:188 msgid "" "<command>apt-get</command> has several command line options that are " "detailed in its man page, " @@ -6276,12 +6276,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><title> -#: guide.dbk:199 +#: guide.dbk:200 msgid "DSelect" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:201 +#: guide.dbk:202 msgid "" "The APT <command>dselect</command> method provides the complete APT system " "with the <command>dselect</command> package selection " @@ -6290,7 +6290,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:207 +#: guide.dbk:208 msgid "" "To enable the APT method you need to select [A]ccess in " "<command>dselect</command> and then choose the APT method. You will be " @@ -6305,7 +6305,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><screen> -#: guide.dbk:218 +#: guide.dbk:219 #, no-wrap msgid "" " Set up a list of distribution source locations\n" @@ -6323,7 +6323,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:232 +#: guide.dbk:233 msgid "" "The <emphasis>Sources</emphasis> setup starts by asking for the base of the " "Debian archive, defaulting to a HTTP mirror. Next it asks for the " @@ -6331,7 +6331,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><screen> -#: guide.dbk:237 +#: guide.dbk:238 #, no-wrap msgid "" " Please give the distribution tag to get or a path to the\n" @@ -6342,7 +6342,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:244 +#: guide.dbk:245 msgid "" "The distribution refers to the Debian version in the archive, " "<emphasis>stable</emphasis> refers to the latest released version and " @@ -6354,7 +6354,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><screen> -#: guide.dbk:253 +#: guide.dbk:254 #, no-wrap msgid "" " Please give the components to get\n" @@ -6364,7 +6364,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:259 +#: guide.dbk:260 msgid "" "The components list refers to the list of sub distributions to fetch. The " "distribution is split up based on software licenses, main being DFSG free " @@ -6373,14 +6373,14 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:265 +#: guide.dbk:266 msgid "" "Any number of sources can be added, the setup script will continue to prompt " "until you have specified all that you want." msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:269 +#: guide.dbk:270 msgid "" "Before starting to use <command>dselect</command> it is necessary to update " "the available list by selecting [U]pdate from the menu. This is a superset " @@ -6390,7 +6390,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:276 +#: guide.dbk:277 msgid "" "You can then go on and make your selections using [S]elect and then perform " "the installation using [I]nstall. When using the APT method the [C]onfig and " @@ -6399,7 +6399,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:282 +#: guide.dbk:283 msgid "" "By default APT will automatically remove the package (.deb) files once they " "have been successfully installed. To change this behavior place " @@ -6407,12 +6407,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><title> -#: guide.dbk:288 +#: guide.dbk:289 msgid "The Interface" msgstr "" #. type: Content of: <book><chapter><para><footnote><para> -#: guide.dbk:292 +#: guide.dbk:293 msgid "" "The <command>dselect</command> method actually is a set of wrapper scripts " "to <command>apt-get</command>. The method actually provides more " @@ -6420,7 +6420,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:290 +#: guide.dbk:291 msgid "" "Both that APT <command>dselect</command> method and " "<command>apt-get</command> share the same interface. It is a simple system " @@ -6431,12 +6431,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><title> -#: guide.dbk:301 +#: guide.dbk:302 msgid "Startup" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:303 +#: guide.dbk:304 msgid "" "Before all operations except update, APT performs a number of actions to " "prepare its internal state. It also does some checks of the system's " @@ -6445,7 +6445,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:309 +#: guide.dbk:310 #, no-wrap msgid "" "# apt-get check\n" @@ -6454,7 +6454,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:314 +#: guide.dbk:315 msgid "" "The first thing it does is read all the package files into memory. APT uses " "a caching scheme so this operation will be faster the second time it is " @@ -6463,7 +6463,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:320 +#: guide.dbk:321 msgid "" "The final operation performs a detailed analysis of the system's " "dependencies. It checks every dependency of every installed or unpacked " @@ -6472,7 +6472,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:326 +#: guide.dbk:327 #, no-wrap msgid "" "# apt-get check\n" @@ -6493,7 +6493,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:343 +#: guide.dbk:344 msgid "" "In this example the system has many problems, including a serious problem " "with libreadlineg2. For each package that has unmet dependencies a line is " @@ -6503,14 +6503,14 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para><footnote><para> -#: guide.dbk:352 +#: guide.dbk:353 msgid "" "APT however considers all known dependencies and attempts to prevent broken " "packages" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:350 +#: guide.dbk:351 msgid "" "There are two ways a system can get into a broken state like this. The first " "is caused by <command>dpkg</command> missing some subtle relationships " @@ -6521,7 +6521,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:359 +#: guide.dbk:360 msgid "" "The second situation is much less serious than the first because APT places " "certain constraints on the order that packages are installed. In both cases " @@ -6533,7 +6533,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:368 +#: guide.dbk:369 msgid "" "However, if the <literal>-f</literal> option is used to correct a seriously " "broken system caused by the first case then it is possible that it will " @@ -6543,12 +6543,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><title> -#: guide.dbk:376 +#: guide.dbk:377 msgid "The Status Report" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:378 +#: guide.dbk:379 msgid "" "Before proceeding <command>apt-get</command> will present a report on what " "will happen. Generally the report reflects the type of operation being " @@ -6559,12 +6559,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:385 +#: guide.dbk:386 msgid "The Extra Package list" msgstr "" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:387 +#: guide.dbk:388 #, no-wrap msgid "" "The following extra packages will be installed:\n" @@ -6576,7 +6576,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:395 +#: guide.dbk:396 msgid "" "The Extra Package list shows all of the packages that will be installed or " "upgraded in excess of the ones mentioned on the command line. It is only " @@ -6585,12 +6585,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:402 +#: guide.dbk:403 msgid "The Packages to Remove" msgstr "" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:404 +#: guide.dbk:405 #, no-wrap msgid "" "The following packages will be REMOVED:\n" @@ -6601,7 +6601,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:411 +#: guide.dbk:412 msgid "" "The Packages to Remove list shows all of the packages that will be removed " "from the system. It can be shown for any of the operations and should be " @@ -6613,12 +6613,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:421 +#: guide.dbk:422 msgid "The New Packages list" msgstr "" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:423 +#: guide.dbk:424 #, no-wrap msgid "" "The following NEW packages will installed:\n" @@ -6626,7 +6626,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:427 +#: guide.dbk:428 msgid "" "The New Packages list is simply a reminder of what will happen. The packages " "listed are not presently installed in the system but will be when APT is " @@ -6634,12 +6634,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:432 +#: guide.dbk:433 msgid "The Kept Back list" msgstr "" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:434 +#: guide.dbk:435 #, no-wrap msgid "" "The following packages have been kept back\n" @@ -6648,7 +6648,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:439 +#: guide.dbk:440 msgid "" "Whenever the whole system is being upgraded there is the possibility that " "new versions of packages cannot be installed because they require new things " @@ -6659,12 +6659,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:448 +#: guide.dbk:449 msgid "Held Packages warning" msgstr "" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:450 +#: guide.dbk:451 #, no-wrap msgid "" "The following held packages will be changed:\n" @@ -6672,7 +6672,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:454 +#: guide.dbk:455 msgid "" "Sometimes you can ask APT to install a package that is on hold, in such a " "case it prints out a warning that the held package is going to be " @@ -6680,17 +6680,17 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:460 +#: guide.dbk:461 msgid "Final summary" msgstr "" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:462 +#: guide.dbk:463 msgid "Finally, APT will print out a summary of all the changes that will occur." msgstr "" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:465 +#: guide.dbk:466 #, no-wrap msgid "" "206 packages upgraded, 8 newly installed, 23 to remove and 51 not " @@ -6700,7 +6700,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:470 +#: guide.dbk:471 msgid "" "The first line of the summary simply is a reduced version of all of the " "lists and includes the number of upgrades - that is packages already " @@ -6718,26 +6718,26 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:484 +#: guide.dbk:485 msgid "" "Some other reports can be generated by using the -u option to show packages " "to upgrade, they are similar to the previous examples." msgstr "" #. type: Content of: <book><chapter><section><title> -#: guide.dbk:491 +#: guide.dbk:492 msgid "The Status Display" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:493 +#: guide.dbk:494 msgid "" "During the download of archives and package files APT prints out a series of " "status messages." msgstr "" #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:497 +#: guide.dbk:498 #, no-wrap msgid "" "# apt-get update\n" @@ -6751,7 +6751,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:506 +#: guide.dbk:507 msgid "" "The lines starting with <emphasis>Get</emphasis> are printed out when APT " "begins to fetch a file while the last line indicates the progress of the " @@ -6762,7 +6762,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:514 +#: guide.dbk:515 msgid "" "The next section of the status line is repeated once for each download " "thread and indicates the operation being performed and some useful " @@ -6775,7 +6775,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:524 +#: guide.dbk:525 msgid "" "Inside of the single quote is an informative string indicating the progress " "of the negotiation phase of the download. Typically it progresses from " @@ -6794,7 +6794,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:539 +#: guide.dbk:540 msgid "" "The status display updates every half second to provide a constant feedback " "on the download progress while the Get lines scroll back whenever a new file " @@ -6804,12 +6804,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><title> -#: guide.dbk:547 +#: guide.dbk:548 msgid "Dpkg" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:549 +#: guide.dbk:550 msgid "" "APT uses <command>dpkg</command> for installing the archives and will switch " "over to the <command>dpkg</command> interface once downloading is " @@ -6820,34 +6820,34 @@ msgid "" msgstr "" #. type: Content of: <book><title> -#: offline.dbk:10 +#: offline.dbk:11 msgid "Using APT Offline" msgstr "" #. type: Content of: <book><bookinfo><abstract><para> -#: offline.dbk:24 +#: offline.dbk:25 msgid "" "This document describes how to use APT in a non-networked environment, " "specifically a 'sneaker-net' approach for performing upgrades." msgstr "" #. type: Content of: <book><bookinfo> -#: offline.dbk:29 +#: offline.dbk:30 msgid "<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" msgstr "" #. type: Content of: <book><chapter><title> -#: offline.dbk:47 +#: offline.dbk:48 msgid "Introduction" msgstr "" #. type: Content of: <book><chapter><section><title> -#: offline.dbk:49 offline.dbk:79 offline.dbk:191 +#: offline.dbk:50 offline.dbk:80 offline.dbk:192 msgid "Overview" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:51 +#: offline.dbk:52 msgid "" "Normally APT requires direct access to a Debian archive, either from a local " "media or through a network. Another common complaint is that a Debian " @@ -6856,7 +6856,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:57 +#: offline.dbk:58 msgid "" "The solution to this is to use large removable media such as a Zip disc or a " "SuperDisk disc. These discs are not large enough to store the entire Debian " @@ -6870,7 +6870,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:68 +#: offline.dbk:69 msgid "" "This is achieved by creatively manipulating the APT configuration file. The " "essential premise to tell APT to look on a disc for it's archive files. Note " @@ -6879,12 +6879,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><title> -#: offline.dbk:77 +#: offline.dbk:78 msgid "Using APT on both machines" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:81 +#: offline.dbk:82 msgid "" "APT being available on both machines gives the simplest configuration. The " "basic idea is to place a copy of the status file on the disc and use the " @@ -6893,7 +6893,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:87 +#: offline.dbk:88 #, no-wrap msgid "" " /disc/\n" @@ -6907,12 +6907,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><title> -#: offline.dbk:98 +#: offline.dbk:99 msgid "The configuration file" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:100 +#: offline.dbk:101 msgid "" "The configuration file should tell APT to store its files on the disc and to " "use the configuration files on the disc as well. The sources.list should " @@ -6924,14 +6924,14 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:108 +#: offline.dbk:109 msgid "" "<emphasis>apt.conf</emphasis> must contain the necessary information to make " "APT use the disc:" msgstr "" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:112 +#: offline.dbk:113 #, no-wrap msgid "" " APT\n" @@ -6961,7 +6961,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:137 +#: offline.dbk:138 msgid "" "More details can be seen by examining the apt.conf man page and the sample " "configuration file in " @@ -6969,7 +6969,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:142 +#: offline.dbk:143 msgid "" "On the target machine the first thing to do is mount the disc and copy " "<emphasis>/var/lib/dpkg/status</emphasis> to it. You will also need to " @@ -6981,7 +6981,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:151 +#: offline.dbk:152 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" @@ -6992,7 +6992,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:158 +#: offline.dbk:159 msgid "" "The dist-upgrade command can be replaced with any other standard APT " "commands, particularly dselect-upgrade. You can even use an APT front end " @@ -7001,14 +7001,14 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:164 +#: offline.dbk:165 msgid "" "Now the disc contains all of the index files and archives needed to upgrade " "the target machine. Take the disc back and run:" msgstr "" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:168 +#: offline.dbk:169 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" @@ -7019,14 +7019,14 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:175 +#: offline.dbk:176 msgid "" "It is necessary for proper function to re-specify the status file to be the " "local one. This is very important!" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:179 +#: offline.dbk:180 msgid "" "If you are using dselect you can do the very risky operation of copying " "disc/status to /var/lib/dpkg/status so that any selections you made on the " @@ -7036,12 +7036,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><title> -#: offline.dbk:189 +#: offline.dbk:190 msgid "Using APT and wget" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:193 +#: offline.dbk:194 msgid "" "<emphasis>wget</emphasis> is a popular and portable download tool that can " "run on nearly any machine. Unlike the method above this requires that the " @@ -7049,7 +7049,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:198 +#: offline.dbk:199 msgid "" "The basic idea is to create a disc that has only the archive files " "downloaded from the remote site. This is done by using the --print-uris " @@ -7058,19 +7058,19 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><title> -#: offline.dbk:204 +#: offline.dbk:205 msgid "Operation" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:206 +#: offline.dbk:207 msgid "" "Unlike the previous technique no special configuration files are " "required. We merely use the standard APT commands to generate the file list." msgstr "" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:210 +#: offline.dbk:211 #, no-wrap msgid "" " # apt-get dist-upgrade\n" @@ -7080,14 +7080,14 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:216 +#: offline.dbk:217 msgid "" "Any command other than dist-upgrade could be used here, including " "dselect-upgrade." msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:220 +#: offline.dbk:221 msgid "" "The /disc/wget-script file will now contain a list of wget commands to " "execute in order to fetch the necessary archives. This script should be run " @@ -7096,12 +7096,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:226 +#: offline.dbk:227 msgid "The remote machine would do something like" msgstr "" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:229 +#: offline.dbk:230 #, no-wrap msgid "" " # cd /disc\n" @@ -7110,19 +7110,19 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:234 +#: offline.dbk:235 msgid "" "Once the archives are downloaded and the disc returned to the Debian machine " "installation can proceed using," msgstr "" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:238 +#: offline.dbk:239 #, no-wrap msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:241 +#: offline.dbk:242 msgid "Which will use the already fetched archives on the disc." msgstr "" diff --git a/doc/po/de.po b/doc/po/de.po index 463b1d934..b2cff7770 100644 --- a/doc/po/de.po +++ b/doc/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-doc 1.0.4\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:52+0200\n" +"POT-Creation-Date: 2014-08-28 00:20+0000\n" "PO-Revision-Date: 2014-07-04 00:34+0200\n" "Last-Translator: Chris Leick <c.leick@vollbio.de>\n" "Language-Team: German <debian-l10n-german@lists.debian.org>\n" @@ -615,37 +615,37 @@ msgid "" msgstr "<!ENTITY synopsis-keyid \"Schlüsselkennung\">" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt.8.xml:25 apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 -#: apt-mark.8.xml:28 apt-secure.8.xml:27 apt-cdrom.8.xml:27 -#: apt-config.8.xml:28 +#: apt.8.xml:21 apt-get.8.xml:22 apt-cache.8.xml:22 apt-key.8.xml:21 +#: apt-mark.8.xml:22 apt-secure.8.xml:21 apt-cdrom.8.xml:21 +#: apt-config.8.xml:22 msgid "8" msgstr "8" #. type: Content of: <refentry><refmeta><refmiscinfo> -#: apt.8.xml:26 apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 -#: apt-mark.8.xml:29 apt-secure.8.xml:28 apt-cdrom.8.xml:28 -#: apt-config.8.xml:29 apt.conf.5.xml:34 apt_preferences.5.xml:28 -#: sources.list.5.xml:29 apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 -#: apt-ftparchive.1.xml:29 +#: apt.8.xml:22 apt-get.8.xml:23 apt-cache.8.xml:23 apt-key.8.xml:22 +#: apt-mark.8.xml:23 apt-secure.8.xml:22 apt-cdrom.8.xml:22 +#: apt-config.8.xml:23 apt.conf.5.xml:28 apt_preferences.5.xml:22 +#: sources.list.5.xml:23 apt-extracttemplates.1.xml:23 apt-sortpkgs.1.xml:23 +#: apt-ftparchive.1.xml:23 msgid "APT" msgstr "APT" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt.8.xml:32 +#: apt.8.xml:28 msgid "command-line interface" msgstr "Befehlszeilenschnittstelle" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:37 apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 -#: apt-mark.8.xml:40 apt-secure.8.xml:52 apt-cdrom.8.xml:39 -#: apt-config.8.xml:40 apt.conf.5.xml:43 apt_preferences.5.xml:38 -#: sources.list.5.xml:38 apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 -#: apt-ftparchive.1.xml:40 +#: apt.8.xml:33 apt-get.8.xml:34 apt-cache.8.xml:34 apt-key.8.xml:33 +#: apt-mark.8.xml:34 apt-secure.8.xml:46 apt-cdrom.8.xml:33 +#: apt-config.8.xml:34 apt.conf.5.xml:37 apt_preferences.5.xml:32 +#: sources.list.5.xml:32 apt-extracttemplates.1.xml:34 apt-sortpkgs.1.xml:34 +#: apt-ftparchive.1.xml:34 msgid "Description" msgstr "Beschreibung" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:38 +#: apt.8.xml:34 msgid "" "<command>apt</command> (Advanced Package Tool) is the command-line tool for " "handling packages. It provides a commandline interface for the package " @@ -658,7 +658,7 @@ msgstr "" "Befehlsoptionen finden sie unter &apt-get; und &apt-cache;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:47 +#: apt.8.xml:43 msgid "" "<literal>list</literal> is used to display a list of packages. It supports " "shell pattern for matching package names and the following options: " @@ -671,7 +671,7 @@ msgstr "" "<option>--upgradable</option>, <option>--all-versions</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:58 +#: apt.8.xml:54 msgid "" "<literal>search</literal> searches for the given term(s) and display " "matching packages." @@ -680,7 +680,7 @@ msgstr "" "passende Pakete an." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:64 +#: apt.8.xml:60 msgid "" "<literal>show</literal> shows the package information for the given " "package(s)." @@ -689,7 +689,7 @@ msgstr "" "Pakete." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:71 +#: apt.8.xml:67 msgid "" "<literal>install</literal> is followed by one or more package names desired " "for installation or upgrading." @@ -698,7 +698,7 @@ msgstr "" "von denen eine Installation oder ein Upgrade gewünscht wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:75 apt-get.8.xml:118 +#: apt.8.xml:71 apt-get.8.xml:112 msgid "" "A specific version of a package can be selected for installation by " "following the package name with an equals and the version of the package to " @@ -716,7 +716,7 @@ msgstr "" "ausgewählt werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:85 apt-get.8.xml:153 +#: apt.8.xml:81 apt-get.8.xml:147 msgid "" "<literal>remove</literal> is identical to <literal>install</literal> except " "that packages are removed instead of installed. Note that removing a package " @@ -731,7 +731,7 @@ msgstr "" "Leerzeichen dazwischen) wird das erkannte Paket installiert anstatt entfernt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:93 +#: apt.8.xml:89 msgid "" "<literal>edit-sources</literal> lets you edit your sources.list file and " "provides basic sanity checks." @@ -740,7 +740,7 @@ msgstr "" "list«-Datei und stellt grundlegende Plausibilitätsprüfungen bereit." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:99 +#: apt.8.xml:95 msgid "" "<literal>update</literal> is used to resynchronize the package index files " "from their sources." @@ -749,12 +749,18 @@ msgstr "" "ihren Quellen in Einklang zu bringen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:105 +#: apt.8.xml:101 +#, fuzzy +#| msgid "" +#| "<literal>upgrade</literal> is used to install the newest versions of all " +#| "packages currently installed on the system from the sources enumerated in " +#| "<filename>/etc/apt/sources.list</filename>. New package will be " +#| "installed, but existing package will never removed." msgid "" "<literal>upgrade</literal> is used to install the newest versions of all " "packages currently installed on the system from the sources enumerated in " -"<filename>/etc/apt/sources.list</filename>. New package will be installed, " -"but existing package will never removed." +"<filename>/etc/apt/sources.list</filename>. New packages will be installed, " +"but existing packages will never be removed." msgstr "" "<literal>upgrade</literal> wird verwendet, um die neuesten Versionen aller " "derzeit auf Ihrem System installierten Pakete von den in <filename>/etc/apt/" @@ -762,7 +768,7 @@ msgstr "" "neue Pakete installiert, existierende jedoch nicht entfernt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:114 +#: apt.8.xml:110 msgid "" "<literal>full-upgrade</literal> performs the function of upgrade but may " "also remove installed packages if that is required in order to resolve a " @@ -773,19 +779,19 @@ msgstr "" "Paketkonflikts nötig ist." #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:124 apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 -#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 -#: apt-ftparchive.1.xml:506 +#: apt.8.xml:120 apt-get.8.xml:251 apt-cache.8.xml:244 apt-mark.8.xml:104 +#: apt-config.8.xml:80 apt-extracttemplates.1.xml:48 apt-sortpkgs.1.xml:44 +#: apt-ftparchive.1.xml:500 msgid "options" msgstr "Optionen" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:134 +#: apt.8.xml:130 msgid "Script usage" msgstr "Skriptaufruf" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:136 +#: apt.8.xml:132 msgid "" "The &apt; commandline is designed as a end-user tool and it may change the " "output between versions. While it tries to not break backward compatibility " @@ -801,12 +807,12 @@ msgstr "" "Skripten." #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:144 +#: apt.8.xml:140 msgid "Differences to &apt-get;" msgstr "Unterschiede zu &apt-get;" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:145 +#: apt.8.xml:141 msgid "" "The <command>apt</command> command is meant to be pleasant for end users and " "does not need to be backward compatible like &apt-get;. Therefore some " @@ -817,17 +823,17 @@ msgstr "" "get;. Daher unterscheiden sich einige Optionen:" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:151 +#: apt.8.xml:147 msgid "The option <literal>DPkg::Progress-Fancy</literal> is enabled." msgstr "Die Option <literal>DPkg::Progress-Fancy</literal> ist aktiviert." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:155 +#: apt.8.xml:151 msgid "The option <literal>APT::Color</literal> is enabled." msgstr "Die Option <literal>APT::Color</literal> ist aktiviert." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:159 +#: apt.8.xml:155 msgid "" "A new <literal>list</literal> command is available similar to <literal>dpkg " "--list</literal>." @@ -836,7 +842,7 @@ msgstr "" "--list</literal> ähnlich." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:164 +#: apt.8.xml:160 msgid "" "The option <literal>upgrade</literal> has <literal>--with-new-pkgs</literal> " "enabled by default." @@ -845,16 +851,16 @@ msgstr "" "new-pkgs</literal> aktiviert." #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 -#: apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 -#: apt-config.8.xml:111 apt.conf.5.xml:1228 apt_preferences.5.xml:707 -#: sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 -#: apt-ftparchive.1.xml:609 +#: apt.8.xml:170 apt-get.8.xml:552 apt-cache.8.xml:346 apt-key.8.xml:191 +#: apt-mark.8.xml:127 apt-secure.8.xml:187 apt-cdrom.8.xml:148 +#: apt-config.8.xml:105 apt.conf.5.xml:1222 apt_preferences.5.xml:701 +#: sources.list.5.xml:274 apt-extracttemplates.1.xml:66 apt-sortpkgs.1.xml:59 +#: apt-ftparchive.1.xml:603 msgid "See Also" msgstr "Siehe auch" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:175 +#: apt.8.xml:171 msgid "" "&apt-get;, &apt-cache;, &sources-list;, &apt-conf;, &apt-config;, The APT " "User's guide in &guidesdir;, &apt-preferences;, the APT Howto." @@ -863,14 +869,14 @@ msgstr "" "Benutzeranleitung in &guidesdir;, &apt-preferences;, das APT-Howto." #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:180 apt-get.8.xml:564 apt-cache.8.xml:357 apt-mark.8.xml:137 -#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 -#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 +#: apt.8.xml:176 apt-get.8.xml:558 apt-cache.8.xml:351 apt-mark.8.xml:131 +#: apt-cdrom.8.xml:153 apt-config.8.xml:110 apt-extracttemplates.1.xml:70 +#: apt-sortpkgs.1.xml:63 apt-ftparchive.1.xml:607 msgid "Diagnostics" msgstr "Diagnose" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:181 +#: apt.8.xml:177 msgid "" "<command>apt</command> returns zero on normal operation, decimal 100 on " "error." @@ -879,12 +885,12 @@ msgstr "" "bei Fehlern." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-get.8.xml:35 +#: apt-get.8.xml:29 msgid "APT package handling utility -- command-line interface" msgstr "APT-Werkzeug für den Umgang mit Paketen -- Befehlszeilenschnittstelle" #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:41 +#: apt-get.8.xml:35 msgid "" "<command>apt-get</command> is the command-line tool for handling packages, " "and may be considered the user's \"back-end\" to other tools using the APT " @@ -897,8 +903,8 @@ msgstr "" "Oberflächenschnittstellen, wie &aptitude;, &synaptic; und &wajig;." #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:46 apt-cache.8.xml:46 apt-cdrom.8.xml:53 apt-config.8.xml:46 -#: apt-ftparchive.1.xml:56 +#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-cdrom.8.xml:47 apt-config.8.xml:40 +#: apt-ftparchive.1.xml:50 msgid "" "Unless the <option>-h</option>, or <option>--help</option> option is given, " "one of the commands below must be present." @@ -907,7 +913,7 @@ msgstr "" "angegeben ist, muss einer der unten aufgeführten Befehle vorkommen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:51 +#: apt-get.8.xml:45 msgid "" "<literal>update</literal> is used to resynchronize the package index files " "from their sources. The indexes of available packages are fetched from the " @@ -931,7 +937,7 @@ msgstr "" "Größe der Pakete nicht im voraus bekannt ist." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:63 +#: apt-get.8.xml:57 msgid "" "<literal>upgrade</literal> is used to install the newest versions of all " "packages currently installed on the system from the sources enumerated in " @@ -957,7 +963,7 @@ msgstr "" "get</command> die neuen Versionen der verfügbaren Pakete kennt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:76 +#: apt-get.8.xml:70 msgid "" "<literal>dist-upgrade</literal> in addition to performing the function of " "<literal>upgrade</literal>, also intelligently handles changing dependencies " @@ -982,7 +988,7 @@ msgstr "" "überschreiben der allgemeinen Einstellungen für einzelne Pakete." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:89 +#: apt-get.8.xml:83 msgid "" "<literal>dselect-upgrade</literal> is used in conjunction with the " "traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</" @@ -999,7 +1005,7 @@ msgstr "" "Installieren von neuen Paketen)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:100 +#: apt-get.8.xml:94 msgid "" "<literal>install</literal> is followed by one or more packages desired for " "installation or upgrading. Each package is a package name, not a fully " @@ -1030,7 +1036,7 @@ msgstr "" "get getroffen wurden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:125 +#: apt-get.8.xml:119 msgid "" "Both of the version selection mechanisms can downgrade packages and must be " "used with care." @@ -1039,7 +1045,7 @@ msgstr "" "durchführen und müssen mit Vorsicht gehandhabt werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:128 +#: apt-get.8.xml:122 msgid "" "This is also the target to use if you want to upgrade one or more already-" "installed packages without upgrading every package you have on your system. " @@ -1060,7 +1066,7 @@ msgstr "" "heruntergeladen und installiert." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:139 +#: apt-get.8.xml:133 msgid "" "Finally, the &apt-preferences; mechanism allows you to create an alternative " "installation policy for individual packages." @@ -1069,7 +1075,7 @@ msgstr "" "alternative Installationsrichtlinie für eigene Pakete zu erzeugen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:143 +#: apt-get.8.xml:137 msgid "" "If no package matches the given expression and the expression contains one " "of '.', '?' or '*' then it is assumed to be a POSIX regular expression, and " @@ -1089,7 +1095,7 @@ msgstr "" "Zeichen, um genauere reguläre Ausdruck zu erstellen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:161 +#: apt-get.8.xml:155 msgid "" "<literal>purge</literal> is identical to <literal>remove</literal> except " "that packages are removed and purged (any configuration files are deleted " @@ -1100,7 +1106,7 @@ msgstr "" "Konfigurationsdateien werden mitgelöscht)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:166 +#: apt-get.8.xml:160 msgid "" "<literal>source</literal> causes <command>apt-get</command> to fetch source " "packages. APT will examine the available packages to decide which source " @@ -1120,7 +1126,7 @@ msgstr "" "wurde, wenn möglich." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:174 +#: apt-get.8.xml:168 msgid "" "Source packages are tracked separately from binary packages via <literal>deb-" "src</literal> lines in the &sources-list; file. This means that you will " @@ -1135,7 +1141,7 @@ msgstr "" "Versionen (zu alte/zu neue) oder überhaupt keine Quellpakete erhalten." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:180 +#: apt-get.8.xml:174 msgid "" "If the <option>--compile</option> option is specified then the package will " "be compiled to a binary .deb using <command>dpkg-buildpackage</command> for " @@ -1150,7 +1156,7 @@ msgstr "" "angegeben ist, wird das Quellpaket nicht entpackt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:187 +#: apt-get.8.xml:181 msgid "" "A specific source version can be retrieved by postfixing the source name " "with an equals and then the version to fetch, similar to the mechanism used " @@ -1166,7 +1172,7 @@ msgstr "" "literal>-Option." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:193 +#: apt-get.8.xml:187 msgid "" "Note that source packages are not installed and tracked in the " "<command>dpkg</command> database like binary packages; they are simply " @@ -1178,7 +1184,7 @@ msgstr "" "heruntergeladen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:199 +#: apt-get.8.xml:193 msgid "" "<literal>build-dep</literal> causes apt-get to install/remove packages in an " "attempt to satisfy the build dependencies for a source package. By default " @@ -1194,7 +1200,7 @@ msgstr "" "angegeben werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:206 +#: apt-get.8.xml:200 msgid "" "<literal>check</literal> is a diagnostic tool; it updates the package cache " "and checks for broken dependencies." @@ -1203,7 +1209,7 @@ msgstr "" "Paketzwischenspeicher und prüft, ob beschädigte Abhängigkeiten vorliegen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:211 +#: apt-get.8.xml:205 msgid "" "<literal>download</literal> will download the given binary package into the " "current directory." @@ -1212,7 +1218,7 @@ msgstr "" "Verzeichnis herunterladen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:217 +#: apt-get.8.xml:211 msgid "" "<literal>clean</literal> clears out the local repository of retrieved " "package files. It removes everything but the lock file from " @@ -1225,7 +1231,7 @@ msgstr "" "partial/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:224 +#: apt-get.8.xml:218 msgid "" "Like <literal>clean</literal>, <literal>autoclean</literal> clears out the " "local repository of retrieved package files. The difference is that it only " @@ -1245,7 +1251,7 @@ msgstr "" "sie auf »off« gesetzt ist." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:234 +#: apt-get.8.xml:228 msgid "" "<literal>autoremove</literal> is used to remove packages that were " "automatically installed to satisfy dependencies for other packages and are " @@ -1256,7 +1262,7 @@ msgstr "" "erfüllen und die nicht mehr benötigt werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:239 +#: apt-get.8.xml:233 msgid "" "<literal>changelog</literal> downloads a package changelog and displays it " "through <command>sensible-pager</command>. The server name and base " @@ -1279,7 +1285,7 @@ msgstr "" "Befehl <option>install</option> angeben." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:262 +#: apt-get.8.xml:256 msgid "" "Do not consider recommended packages as a dependency for installing. " "Configuration Item: <literal>APT::Install-Recommends</literal>." @@ -1288,7 +1294,7 @@ msgstr "" "Konfigurationselement: <literal>APT::Install-Recommends</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:267 +#: apt-get.8.xml:261 msgid "" "Consider suggested packages as a dependency for installing. Configuration " "Item: <literal>APT::Install-Suggests</literal>." @@ -1297,7 +1303,7 @@ msgstr "" "Konfigurationselement: <literal>APT::Install-Suggests</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:272 +#: apt-get.8.xml:266 msgid "" "Download only; package files are only retrieved, not unpacked or installed. " "Configuration Item: <literal>APT::Get::Download-Only</literal>." @@ -1307,7 +1313,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:277 +#: apt-get.8.xml:271 msgid "" "Fix; attempt to correct a system with broken dependencies in place. This " "option, when used with install/remove, can omit any packages to permit APT " @@ -1336,7 +1342,7 @@ msgstr "" "<literal>APT::Get::Fix-Broken</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:292 +#: apt-get.8.xml:286 msgid "" "Ignore missing packages; if packages cannot be retrieved or fail the " "integrity check after retrieval (corrupted package files), hold back those " @@ -1357,7 +1363,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:303 +#: apt-get.8.xml:297 msgid "" "Disables downloading of packages. This is best used with <option>--ignore-" "missing</option> to force APT to use only the .debs it has already " @@ -1369,7 +1375,7 @@ msgstr "" "<literal>APT::Get::Download</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:310 +#: apt-get.8.xml:304 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quiet up to a maximum of 2. You can also use " @@ -1389,7 +1395,7 @@ msgstr "" "Konfigurationselement: <literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:325 +#: apt-get.8.xml:319 msgid "" "No action; perform a simulation of events that would occur but do not " "actually change the system. Configuration Item: <literal>APT::Get::" @@ -1400,7 +1406,7 @@ msgstr "" "<literal>APT::Get::Simulate</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:329 +#: apt-get.8.xml:323 msgid "" "Simulated runs performed as a user will automatically deactivate locking " "(<literal>Debug::NoLocking</literal>), and if the option <literal>APT::Get::" @@ -1420,7 +1426,7 @@ msgstr "" "wissen, was sie tun." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:337 +#: apt-get.8.xml:331 msgid "" "Simulated runs print out a series of lines, each representing a " "<command>dpkg</command> operation: configure (<literal>Conf</literal>), " @@ -1435,7 +1441,7 @@ msgstr "" "eckiger Klammern bedeutet Unterbrechungen, die keine Folgen haben (selten)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:345 +#: apt-get.8.xml:339 msgid "" "Automatic yes to prompts; assume \"yes\" as answer to all prompts and run " "non-interactively. If an undesirable situation, such as changing a held " @@ -1451,7 +1457,7 @@ msgstr "" "Get::Assume-Yes</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:353 +#: apt-get.8.xml:347 msgid "" "Automatic \"no\" to all prompts. Configuration Item: <literal>APT::Get::" "Assume-No</literal>." @@ -1460,7 +1466,7 @@ msgstr "" "Get::Assume-No</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:358 +#: apt-get.8.xml:352 msgid "" "Show upgraded packages; print out a list of all packages that are to be " "upgraded. Configuration Item: <literal>APT::Get::Show-Upgraded</literal>." @@ -1470,7 +1476,7 @@ msgstr "" "Konfigurationselement: <literal>APT::Get::Show-Upgraded</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:364 +#: apt-get.8.xml:358 msgid "" "Show full versions for upgraded and installed packages. Configuration Item: " "<literal>APT::Get::Show-Versions</literal>." @@ -1480,7 +1486,7 @@ msgstr "" "Versions</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:370 +#: apt-get.8.xml:364 msgid "" "This option controls the architecture packages are built for by <command>apt-" "get source --compile</command> and how cross-builddependencies are " @@ -1497,7 +1503,7 @@ msgstr "" "Konfigurationselement: <literal>APT::Get::Host-Architecture</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:380 +#: apt-get.8.xml:374 msgid "" "This option controls the activated build profiles for which a source package " "is built by <command>apt-get source --compile</command> and how build " @@ -1513,7 +1519,7 @@ msgstr "" "Build-Profiles</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:391 +#: apt-get.8.xml:385 msgid "" "Compile source packages after downloading them. Configuration Item: " "<literal>APT::Get::Compile</literal>." @@ -1522,7 +1528,7 @@ msgstr "" "Konfigurationselement: <literal>APT::Get::Compile</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:396 +#: apt-get.8.xml:390 msgid "" "Ignore package holds; this causes <command>apt-get</command> to ignore a " "hold placed on a package. This may be useful in conjunction with " @@ -1536,7 +1542,7 @@ msgstr "" "<literal>APT::Ignore-Hold</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:403 +#: apt-get.8.xml:397 msgid "" "Allow installing new packages when used in conjunction with " "<literal>upgrade</literal>. This is useful if the update of a installed " @@ -1556,7 +1562,7 @@ msgstr "" "wird.Konfigurationselement: <literal>APT::Get::Upgrade-Allow-New</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:415 +#: apt-get.8.xml:409 msgid "" "Do not upgrade packages; when used in conjunction with <literal>install</" "literal>, <literal>no-upgrade</literal> will prevent packages on the command " @@ -1570,7 +1576,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:422 +#: apt-get.8.xml:416 msgid "" "Do not install new packages; when used in conjunction with <literal>install</" "literal>, <literal>only-upgrade</literal> will install upgrades for already " @@ -1584,7 +1590,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:430 +#: apt-get.8.xml:424 msgid "" "Force yes; this is a dangerous option that will cause apt to continue " "without prompting if it is doing something potentially harmful. It should " @@ -1599,7 +1605,7 @@ msgstr "" "zerstören! Konfigurationselement: <literal>APT::Get::force-yes</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:438 +#: apt-get.8.xml:432 msgid "" "Instead of fetching the files to install their URIs are printed. Each URI " "will have the path, the destination file name, the size and the expected MD5 " @@ -1621,7 +1627,7 @@ msgstr "" "Get::Print-URIs</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:449 +#: apt-get.8.xml:443 msgid "" "Use purge instead of remove for anything that would be removed. An asterisk " "(\"*\") will be displayed next to packages which are scheduled to be purged. " @@ -1634,7 +1640,7 @@ msgstr "" "option>. Konfigurationselement: <literal>APT::Get::Purge</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:457 +#: apt-get.8.xml:451 msgid "" "Re-install packages that are already installed and at the newest version. " "Configuration Item: <literal>APT::Get::ReInstall</literal>." @@ -1643,7 +1649,7 @@ msgstr "" "Version haben. Konfigurationselement: <literal>APT::Get::ReInstall</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:462 +#: apt-get.8.xml:456 msgid "" "This option is on by default; use <literal>--no-list-cleanup</literal> to " "turn it off. When it is on, <command>apt-get</command> will automatically " @@ -1661,7 +1667,7 @@ msgstr "" "Get::List-Cleanup</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:472 +#: apt-get.8.xml:466 msgid "" "This option controls the default input to the policy engine; it creates a " "default pin at priority 990 using the specified release string. This " @@ -1686,7 +1692,7 @@ msgstr "" "auch die &apt-preferences;-Handbuchseite." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:487 +#: apt-get.8.xml:481 msgid "" "Only perform operations that are 'trivial'. Logically this can be considered " "related to <option>--assume-yes</option>; where <option>--assume-yes</" @@ -1700,7 +1706,7 @@ msgstr "" "Trivial-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:494 +#: apt-get.8.xml:488 msgid "" "If any packages are to be removed apt-get immediately aborts without " "prompting. Configuration Item: <literal>APT::Get::Remove</literal>." @@ -1709,7 +1715,7 @@ msgstr "" "Nachfrage ab. Konfigurationselement: <literal>APT::Get::Remove</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:500 +#: apt-get.8.xml:494 msgid "" "If the command is either <literal>install</literal> or <literal>remove</" "literal>, then this option acts like running the <literal>autoremove</" @@ -1723,7 +1729,7 @@ msgstr "" "AutomaticRemove</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:507 +#: apt-get.8.xml:501 msgid "" "Only has meaning for the <literal>source</literal> and <literal>build-dep</" "literal> commands. Indicates that the given source names are not to be " @@ -1742,7 +1748,7 @@ msgstr "" "Get::Only-Source</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:518 +#: apt-get.8.xml:512 msgid "" "Download only the diff, dsc, or tar file of a source archive. Configuration " "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</" @@ -1754,7 +1760,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:524 +#: apt-get.8.xml:518 msgid "" "Only process architecture-dependent build-dependencies. Configuration Item: " "<literal>APT::Get::Arch-Only</literal>." @@ -1763,7 +1769,7 @@ msgstr "" "Konfigurationselement: <literal>APT::Get::Arch-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:529 +#: apt-get.8.xml:523 msgid "" "Ignore if packages can't be authenticated and don't prompt about it. This " "is useful for tools like pbuilder. Configuration Item: <literal>APT::Get::" @@ -1775,7 +1781,7 @@ msgstr "" # FIXME s/Item/Items/ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:535 +#: apt-get.8.xml:529 msgid "" "Show user friendly progress information in the terminal window when packages " "are installed, upgraded or removed. For a machine parsable version of this " @@ -1791,13 +1797,13 @@ msgstr "" "Progress-Fancy</literal>." #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 -#: apt.conf.5.xml:1222 apt_preferences.5.xml:700 +#: apt-get.8.xml:542 apt-cache.8.xml:339 apt-key.8.xml:170 apt-mark.8.xml:121 +#: apt.conf.5.xml:1216 apt_preferences.5.xml:694 msgid "Files" msgstr "Dateien" #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:559 +#: apt-get.8.xml:553 msgid "" "&apt-cache;, &apt-cdrom;, &dpkg;, &sources-list;, &apt-conf;, &apt-config;, " "&apt-secure;, The APT User's guide in &guidesdir;, &apt-preferences;, the " @@ -1808,7 +1814,7 @@ msgstr "" "das APT-Howto." #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:565 +#: apt-get.8.xml:559 msgid "" "<command>apt-get</command> returns zero on normal operation, decimal 100 on " "error." @@ -1817,12 +1823,12 @@ msgstr "" "100 bei Fehlern." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-cache.8.xml:35 +#: apt-cache.8.xml:29 msgid "query the APT cache" msgstr "den APT-Zwischenspeicher abfragen" #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:41 +#: apt-cache.8.xml:35 msgid "" "<command>apt-cache</command> performs a variety of operations on APT's " "package cache. <command>apt-cache</command> does not manipulate the state of " @@ -1835,7 +1841,7 @@ msgstr "" "und Generieren von interessanten Ausgaben der Paket-Metadaten bereit." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:51 +#: apt-cache.8.xml:45 msgid "" "<literal>gencaches</literal> creates APT's package cache. This is done " "implicitly by all commands needing this cache if it is missing or outdated." @@ -1845,14 +1851,14 @@ msgstr "" "benötigen, falls er fehlt oder veraltet ist." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-cache.8.xml:55 apt-cache.8.xml:144 apt-cache.8.xml:165 -#: apt-cache.8.xml:187 apt-cache.8.xml:192 apt-cache.8.xml:208 -#: apt-cache.8.xml:226 apt-cache.8.xml:238 +#: apt-cache.8.xml:49 apt-cache.8.xml:138 apt-cache.8.xml:159 +#: apt-cache.8.xml:181 apt-cache.8.xml:186 apt-cache.8.xml:202 +#: apt-cache.8.xml:220 apt-cache.8.xml:232 msgid "&synopsis-pkg;" msgstr "&synopsis-pkg;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:56 +#: apt-cache.8.xml:50 msgid "" "<literal>showpkg</literal> displays information about the packages listed on " "the command line. Remaining arguments are package names. The available " @@ -1876,7 +1882,7 @@ msgstr "" "Ausgabe ähnlich der folgenden erzeugen:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> -#: apt-cache.8.xml:68 +#: apt-cache.8.xml:62 #, no-wrap msgid "" "Package: libreadline2\n" @@ -1902,7 +1908,7 @@ msgstr "" "Reverse Provides: \n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:80 +#: apt-cache.8.xml:74 msgid "" "Thus it may be seen that libreadline2, version 2.1-12, depends on libc5 and " "ncurses3.0 which must be installed for libreadline2 to work. In turn, " @@ -1920,7 +1926,7 @@ msgstr "" "restlichen Ausgabe ist es am besten, den apt-Quelltext zu konsultieren." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:89 +#: apt-cache.8.xml:83 msgid "" "<literal>stats</literal> displays some statistics about the cache. No " "further arguments are expected. Statistics reported are:" @@ -1929,7 +1935,7 @@ msgstr "" "Es werden keine weiteren Argumente erwartet. Berichtete Statistiken sind:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:92 +#: apt-cache.8.xml:86 msgid "" "<literal>Total package names</literal> is the number of package names found " "in the cache." @@ -1938,7 +1944,7 @@ msgstr "" "Zwischenspeicher gefundenen Pakete." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:96 +#: apt-cache.8.xml:90 msgid "" "<literal>Normal packages</literal> is the number of regular, ordinary " "package names; these are packages that bear a one-to-one correspondence " @@ -1952,7 +1958,7 @@ msgstr "" "Kategorie." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:102 +#: apt-cache.8.xml:96 msgid "" "<literal>Pure virtual packages</literal> is the number of packages that " "exist only as a virtual package name; that is, packages only \"provide\" the " @@ -1969,7 +1975,7 @@ msgstr "" "bereit, aber es gibt kein Paket mit dem Namen »mail-transport-agent«." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:110 +#: apt-cache.8.xml:104 msgid "" "<literal>Single virtual packages</literal> is the number of packages with " "only one package providing a particular virtual package. For example, in the " @@ -1982,7 +1988,7 @@ msgstr "" "aber nur ein Paket, xless, stellt »X11-text-viewer« bereit." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:116 +#: apt-cache.8.xml:110 msgid "" "<literal>Mixed virtual packages</literal> is the number of packages that " "either provide a particular virtual package or have the virtual package name " @@ -1995,7 +2001,7 @@ msgstr "" "tatsächliches Paket, wird aber auch vom Paket debconf-tiny bereitgestellt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:123 +#: apt-cache.8.xml:117 msgid "" "<literal>Missing</literal> is the number of package names that were " "referenced in a dependency but were not provided by any package. Missing " @@ -2011,7 +2017,7 @@ msgstr "" "Breaks-Angaben Bezug genommen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:130 +#: apt-cache.8.xml:124 msgid "" "<literal>Total distinct</literal> versions is the number of package versions " "found in the cache; this value is therefore at least equal to the number of " @@ -2027,7 +2033,7 @@ msgstr "" "Paketnamen sein." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:137 +#: apt-cache.8.xml:131 msgid "" "<literal>Total dependencies</literal> is the number of dependency " "relationships claimed by all of the packages in the cache." @@ -2036,7 +2042,7 @@ msgstr "" "Abhängigkeitsbeziehungen, den alle Pakete im Zwischenspeicher beanspruchen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:145 +#: apt-cache.8.xml:139 msgid "" "<literal>showsrc</literal> displays all the source package records that " "match the given package names. All versions are shown, as well as all " @@ -2047,7 +2053,7 @@ msgstr "" "wie alle Datensätze, die den Namen für ein Binärpaket deklarieren." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:151 +#: apt-cache.8.xml:145 msgid "" "<literal>dump</literal> shows a short listing of every package in the cache. " "It is primarily for debugging." @@ -2056,7 +2062,7 @@ msgstr "" "im Zwischenspeicher. Es dient in erster Linie der Fehlersuche." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:156 +#: apt-cache.8.xml:150 msgid "" "<literal>dumpavail</literal> prints out an available list to stdout. This is " "suitable for use with &dpkg; and is used by the &dselect; method." @@ -2066,7 +2072,7 @@ msgstr "" "benutzt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:161 +#: apt-cache.8.xml:155 msgid "" "<literal>unmet</literal> displays a summary of all unmet dependencies in the " "package cache." @@ -2075,7 +2081,7 @@ msgstr "" "Abhängigkeiten im Paketzwischenspeicher." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:166 +#: apt-cache.8.xml:160 msgid "" "<literal>show</literal> performs a function similar to <command>dpkg --print-" "avail</command>; it displays the package records for the named packages." @@ -2085,12 +2091,12 @@ msgstr "" "Pakete." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-cache.8.xml:171 +#: apt-cache.8.xml:165 msgid "&synopsis-regex;" msgstr "&synopsis-regex;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:172 +#: apt-cache.8.xml:166 msgid "" "<literal>search</literal> performs a full text search on all available " "package lists for the POSIX regex pattern given, see ®ex;. It searches " @@ -2111,7 +2117,7 @@ msgstr "" "wird die lange Beschreibung nicht durchsucht, sondern nur der Paketname." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:183 +#: apt-cache.8.xml:177 msgid "" "Separate arguments can be used to specify multiple search patterns that are " "and'ed together." @@ -2120,7 +2126,7 @@ msgstr "" "die »und«-verknüpft werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:188 +#: apt-cache.8.xml:182 msgid "" "<literal>depends</literal> shows a listing of each dependency a package has " "and all the possible other packages that can fulfill that dependency." @@ -2130,7 +2136,7 @@ msgstr "" "können." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:193 +#: apt-cache.8.xml:187 msgid "" "<literal>rdepends</literal> shows a listing of each reverse dependency a " "package has." @@ -2139,12 +2145,12 @@ msgstr "" "Rückwärtsabhängigkeit, die ein Paket hat." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:197 +#: apt-cache.8.xml:191 msgid "<optional><replaceable>&synopsis-prefix;</replaceable></optional>" msgstr "<optional><replaceable>&synopsis-prefix;</replaceable></optional>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:198 +#: apt-cache.8.xml:192 msgid "" "This command prints the name of each package APT knows. The optional " "argument is a prefix match to filter the name list. The output is suitable " @@ -2159,7 +2165,7 @@ msgstr "" "besten mit der <option>--generate</option>-Option benutzt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:203 +#: apt-cache.8.xml:197 msgid "" "Note that a package which APT knows of is not necessarily available to " "download, installable or installed, e.g. virtual packages are also listed in " @@ -2170,7 +2176,7 @@ msgstr "" "Pakete sind z.B. auch in der generierten Liste aufgeführt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:209 +#: apt-cache.8.xml:203 msgid "" "<literal>dotty</literal> takes a list of packages on the command line and " "generates output suitable for use by dotty from the <ulink url=\"http://www." @@ -2192,7 +2198,7 @@ msgstr "" "GivenOnly</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:218 +#: apt-cache.8.xml:212 msgid "" "The resulting nodes will have several shapes; normal packages are boxes, " "pure virtual packages are triangles, mixed virtual packages are diamonds, " @@ -2206,14 +2212,14 @@ msgstr "" "depends, grüne Linien sind Konflikte." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:223 +#: apt-cache.8.xml:217 msgid "Caution, dotty cannot graph larger sets of packages." msgstr "" "Vorsicht, dotty kann keine größeren Zusammenstellungen von Paketen grafisch " "darstellen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:227 +#: apt-cache.8.xml:221 msgid "" "The same as <literal>dotty</literal>, only for xvcg from the <ulink url=" "\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG tool</ulink>." @@ -2223,12 +2229,12 @@ msgstr "" "ulink>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:231 +#: apt-cache.8.xml:225 msgid "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>" msgstr "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:232 +#: apt-cache.8.xml:226 msgid "" "<literal>policy</literal> is meant to help debug issues relating to the " "preferences file. With no arguments it will print out the priorities of each " @@ -2241,7 +2247,7 @@ msgstr "" "Informationen über die Prioritätenauswahl der genannten Pakete aus." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:239 +#: apt-cache.8.xml:233 msgid "" "<literal>apt-cache</literal>'s <literal>madison</literal> command attempts " "to mimic the output format and a subset of the functionality of the Debian " @@ -2260,7 +2266,7 @@ msgstr "" "(<literal>APT::Architecture</literal>)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:255 +#: apt-cache.8.xml:249 msgid "" "Select the file to store the package cache. The package cache is the primary " "cache used by all operations. Configuration Item: <literal>Dir::Cache::" @@ -2272,7 +2278,7 @@ msgstr "" "pkgcache</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:261 +#: apt-cache.8.xml:255 msgid "" "Select the file to store the source cache. The source is used only by " "<literal>gencaches</literal> and it stores a parsed version of the package " @@ -2289,7 +2295,7 @@ msgstr "" "srcpkgcache</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:269 +#: apt-cache.8.xml:263 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quietness up to a maximum of 2. You can also use " @@ -2303,7 +2309,7 @@ msgstr "" "Konfigurationselement: <literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:276 +#: apt-cache.8.xml:270 msgid "" "Print only important dependencies; for use with <literal>unmet</literal> and " "<literal>depends</literal>. Causes only Depends and Pre-Depends relations to " @@ -2315,7 +2321,7 @@ msgstr "" "<literal>APT::Cache::Important</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:290 +#: apt-cache.8.xml:284 msgid "" "Per default the <literal>depends</literal> and <literal>rdepends</literal> " "print all dependencies. This can be tweaked with these flags which will omit " @@ -2331,7 +2337,7 @@ msgstr "" "Cache::ShowRecommends</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:297 +#: apt-cache.8.xml:291 msgid "" "Print full package records when searching. Configuration Item: " "<literal>APT::Cache::ShowFull</literal>." @@ -2340,7 +2346,7 @@ msgstr "" "Konfigurationselement: <literal>APT::Cache::ShowFull</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:302 +#: apt-cache.8.xml:296 msgid "" "Print full records for all available versions. This is the default; to turn " "it off, use <option>--no-all-versions</option>. If <option>--no-all-" @@ -2357,7 +2363,7 @@ msgstr "" "anwendbar. Konfigurationselement: <literal>APT::Cache::AllVersions</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:311 +#: apt-cache.8.xml:305 msgid "" "Perform automatic package cache regeneration, rather than use the cache as " "it is. This is the default; to turn it off, use <option>--no-generate</" @@ -2369,7 +2375,7 @@ msgstr "" "Konfigurationselement: <literal>APT::Cache::Generate</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:317 +#: apt-cache.8.xml:311 msgid "" "Only search on the package names, not the long descriptions. Configuration " "Item: <literal>APT::Cache::NamesOnly</literal>." @@ -2378,7 +2384,7 @@ msgstr "" "Konfigurationselement: <literal>APT::Cache::NamesOnly</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:322 +#: apt-cache.8.xml:316 msgid "" "Make <literal>pkgnames</literal> print all names, including virtual packages " "and missing dependencies. Configuration Item: <literal>APT::Cache::" @@ -2389,7 +2395,7 @@ msgstr "" "<literal>APT::Cache::AllNames</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:328 +#: apt-cache.8.xml:322 msgid "" "Make <literal>depends</literal> and <literal>rdepends</literal> recursive so " "that all packages mentioned are printed once. Configuration Item: " @@ -2400,7 +2406,7 @@ msgstr "" "Konfigurationselement: <literal>APT::Cache::RecurseDepends</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:335 +#: apt-cache.8.xml:329 msgid "" "Limit the output of <literal>depends</literal> and <literal>rdepends</" "literal> to packages which are currently installed. Configuration Item: " @@ -2411,12 +2417,12 @@ msgstr "" "<literal>APT::Cache::Installed</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:353 +#: apt-cache.8.xml:347 msgid "&apt-conf;, &sources-list;, &apt-get;" msgstr "&apt-conf;, &sources-list;, &apt-get;" #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:358 +#: apt-cache.8.xml:352 msgid "" "<command>apt-cache</command> returns zero on normal operation, decimal 100 " "on error." @@ -2425,12 +2431,12 @@ msgstr "" "100 bei Fehlern." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-key.8.xml:34 +#: apt-key.8.xml:28 msgid "APT key management utility" msgstr "APT-Schlüsselverwaltungsdienstprogramm" #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:41 +#: apt-key.8.xml:35 msgid "" "<command>apt-key</command> is used to manage the list of keys used by apt to " "authenticate packages. Packages which have been authenticated using these " @@ -2442,12 +2448,12 @@ msgstr "" "vertrauenswürdig betrachtet." #. type: Content of: <refentry><refsect1><title> -#: apt-key.8.xml:47 +#: apt-key.8.xml:41 msgid "Commands" msgstr "Befehle" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:52 +#: apt-key.8.xml:46 msgid "" "Add a new key to the list of trusted keys. The key is read from the " "filename given with the parameter &synopsis-param-filename; or if the " @@ -2458,33 +2464,33 @@ msgstr "" "Dateiname <literal>-</literal> ist, von der Standardeingabe." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:65 +#: apt-key.8.xml:59 msgid "Remove a key from the list of trusted keys." msgstr "" "entfernt einen Schlüssel von der Liste der vertrauenswürdigen Schlüssel." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:76 +#: apt-key.8.xml:70 msgid "Output the key &synopsis-param-keyid; to standard output." msgstr "gibt den Schlüssel &synopsis-param-keyid; auf der Standardausgabe aus." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:87 +#: apt-key.8.xml:81 msgid "Output all trusted keys to standard output." msgstr "gibt alle vertrauenswürdigen Schlüssel auf der Standardausgabe aus." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:98 +#: apt-key.8.xml:92 msgid "List trusted keys." msgstr "listet vertrauenswürdige Schlüssel auf." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:109 +#: apt-key.8.xml:103 msgid "List fingerprints of trusted keys." msgstr "listet Fingerabdrücke vertrauenswürdiger Schlüssel auf." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:120 +#: apt-key.8.xml:114 msgid "" "Pass advanced options to gpg. With adv --recv-key you can download the " "public key." @@ -2493,7 +2499,7 @@ msgstr "" "öffentlichen Schlüssel herunterladen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:132 +#: apt-key.8.xml:126 msgid "" "Update the local keyring with the archive keyring and remove from the local " "keyring the archive keys which are no longer valid. The archive keyring is " @@ -2507,7 +2513,7 @@ msgstr "" "package; in &keyring-distro;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:146 +#: apt-key.8.xml:140 msgid "" "Perform an update working similarly to the <command>update</command> command " "above, but get the archive keyring from a URI instead and validate it " @@ -2525,12 +2531,12 @@ msgstr "" "Ubuntu funktioniert dies aber." #. type: Content of: <refentry><refsect1><title> -#: apt-key.8.xml:162 apt-cdrom.8.xml:82 +#: apt-key.8.xml:156 apt-cdrom.8.xml:76 msgid "Options" msgstr "Optionen" #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:163 +#: apt-key.8.xml:157 msgid "" "Note that options need to be defined before the commands described in the " "previous section." @@ -2539,7 +2545,7 @@ msgstr "" "Befehlen definiert sein müssen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:166 +#: apt-key.8.xml:160 msgid "" "With this option it is possible to specify a particular keyring file the " "command should operate on. The default is that a command is executed on the " @@ -2556,52 +2562,52 @@ msgstr "" "Schlüssel werden zu diesem hinzugefügt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:181 +#: apt-key.8.xml:175 msgid "<filename>/etc/apt/trustdb.gpg</filename>" msgstr "<filename>/etc/apt/trustdb.gpg</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:182 +#: apt-key.8.xml:176 msgid "Local trust database of archive keys." msgstr "lokale Datenbank vertrauenswürdiger Archivschlüssel" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:185 +#: apt-key.8.xml:179 msgid "&keyring-filename;" msgstr "&keyring-filename;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:186 +#: apt-key.8.xml:180 msgid "Keyring of &keyring-distro; archive trusted keys." msgstr "" "Schlüsselbund vertrauenswürdiger Schlüssel des &keyring-distro;-Archivs" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:189 +#: apt-key.8.xml:183 msgid "&keyring-removed-filename;" msgstr "&keyring-removed-filename;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:190 +#: apt-key.8.xml:184 msgid "Keyring of &keyring-distro; archive removed trusted keys." msgstr "" "Schlüsselbund entfernter vertrauenswürdiger Schlüssel des &keyring-distro;-" "Archivs" #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:199 +#: apt-key.8.xml:193 msgid "&apt-get;, &apt-secure;" msgstr "&apt-get;, &apt-secure;" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-mark.8.xml:35 +#: apt-mark.8.xml:29 msgid "mark/unmark a package as being automatically-installed" msgstr "" "ein Paket als automatisch installiert markieren oder diese Markierung " "entfernen" #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:41 +#: apt-mark.8.xml:35 msgid "" "<command>apt-mark</command> will change whether a package has been marked as " "being automatically installed." @@ -2610,7 +2616,7 @@ msgstr "" "installiert markiert ist." #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:45 +#: apt-mark.8.xml:39 msgid "" "When you request that a package is installed, and as a result other packages " "are installed to satisfy its dependencies, the dependencies are marked as " @@ -2626,7 +2632,7 @@ msgstr "" "<command>aptitude</command> entfernt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:54 +#: apt-mark.8.xml:48 msgid "" "<literal>auto</literal> is used to mark a package as being automatically " "installed, which will cause the package to be removed when no more manually " @@ -2637,7 +2643,7 @@ msgstr "" "keine manuell installierten Pakete von ihm abhängen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:62 +#: apt-mark.8.xml:56 msgid "" "<literal>manual</literal> is used to mark a package as being manually " "installed, which will prevent the package from being automatically removed " @@ -2648,7 +2654,7 @@ msgstr "" "kein anderes Paket von ihm abhängt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:70 +#: apt-mark.8.xml:64 msgid "" "<literal>hold</literal> is used to mark a package as held back, which will " "prevent the package from being automatically installed, upgraded or " @@ -2664,7 +2670,7 @@ msgstr "" "option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:80 +#: apt-mark.8.xml:74 msgid "" "<literal>unhold</literal> is used to cancel a previously set hold on a " "package to allow all actions again." @@ -2673,7 +2679,7 @@ msgstr "" "ein Paket aufzuheben, um alle Aktionen wieder zu erlauben." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:86 +#: apt-mark.8.xml:80 msgid "" "<literal>showauto</literal> is used to print a list of automatically " "installed packages with each package on a new line. All automatically " @@ -2687,7 +2693,7 @@ msgstr "" "die automatisch installiert wurden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:94 +#: apt-mark.8.xml:88 msgid "" "<literal>showmanual</literal> can be used in the same way as " "<literal>showauto</literal> except that it will print a list of manually " @@ -2698,7 +2704,7 @@ msgstr "" "stattdessen eine Liste manuell installierter Pakete ausgibt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:101 +#: apt-mark.8.xml:95 msgid "" "<literal>showhold</literal> is used to print a list of packages on hold in " "the same way as for the other show commands." @@ -2707,7 +2713,7 @@ msgstr "" "Pakete auf die gleiche Art wie für andere Anzeigebefehle auszugeben." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:117 +#: apt-mark.8.xml:111 msgid "" "Read/Write package stats from the filename given with the parameter " "&synopsis-param-filename; instead of from the default location, which is " @@ -2720,7 +2726,7 @@ msgstr "" "<literal>Dir::State</literal> definierten Verzeichnis, ist." #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:138 +#: apt-mark.8.xml:132 msgid "" "<command>apt-mark</command> returns zero on normal operation, non-zero on " "error." @@ -2729,12 +2735,12 @@ msgstr "" "Fehlern nicht Null." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-secure.8.xml:49 +#: apt-secure.8.xml:43 msgid "Archive authentication support for APT" msgstr "Archivauthentifizierungsunterstützung für APT" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:54 +#: apt-secure.8.xml:48 msgid "" "Starting with version 0.6, <command>apt</command> contains code that does " "signature checking of the Release file for all archives. This ensures that " @@ -2747,7 +2753,7 @@ msgstr "" "auf den Signierschlüssel der Release-Datei haben." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:62 +#: apt-secure.8.xml:56 msgid "" "If a package comes from a archive without a signature, or with a signature " "that apt does not have a key for, that package is considered untrusted, and " @@ -2763,7 +2769,7 @@ msgstr "" "dem Herunterladen von Paketen von dort erzwingen." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:71 +#: apt-secure.8.xml:65 msgid "" "The package frontends &apt-get;, &aptitude; and &synaptic; support this new " "authentication feature." @@ -2772,12 +2778,12 @@ msgstr "" "neue Authentifizierungsfunktion." #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:76 +#: apt-secure.8.xml:70 msgid "Trusted archives" msgstr "Vertrauenswürdige Archive" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:79 +#: apt-secure.8.xml:73 msgid "" "The chain of trust from an apt archive to the end user is made up of several " "steps. <command>apt-secure</command> is the last step in this chain; " @@ -2795,7 +2801,7 @@ msgstr "" "sicherstellt." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:87 +#: apt-secure.8.xml:81 msgid "" "apt-secure does not review signatures at a package level. If you require " "tools to do this you should look at <command>debsig-verify</command> and " @@ -2808,7 +2814,7 @@ msgstr "" "(bereitgestellt von den Paketen debsig-verify beziehungsweise devscripts)." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:94 +#: apt-secure.8.xml:88 msgid "" "The chain of trust in Debian starts when a maintainer uploads a new package " "or a new version of a package to the Debian archive. In order to become " @@ -2826,7 +2832,7 @@ msgstr "" "sicherzustellen." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:104 +#: apt-secure.8.xml:98 msgid "" "Once the uploaded package is verified and included in the archive, the " "maintainer signature is stripped off, and checksums of the package are " @@ -2847,7 +2853,7 @@ msgstr "" "Archivschlüsselbund im Paket &keyring-package; verfügbar." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:115 +#: apt-secure.8.xml:109 msgid "" "End users can check the signature of the Release file, extract a checksum of " "a package from it and compare it with the checksum of the package they " @@ -2859,7 +2865,7 @@ msgstr "" "dies automatisch tut." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:120 +#: apt-secure.8.xml:114 msgid "" "Notice that this is distinct from checking signatures on a per package " "basis. It is designed to prevent two possible attacks:" @@ -2868,7 +2874,7 @@ msgstr "" "ist. Es wurde entworfen, um zwei mögliche Angriffe zu verhindern:" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:125 +#: apt-secure.8.xml:119 msgid "" "<literal>Network \"man in the middle\" attacks</literal>. Without signature " "checking, malicious agents can introduce themselves into the package " @@ -2884,7 +2890,7 @@ msgstr "" "oder DNS-Manipulationsangriffe) erfolgen." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:133 +#: apt-secure.8.xml:127 msgid "" "<literal>Mirror network compromise</literal>. Without signature checking, a " "malicious agent can compromise a mirror host and modify the files in it to " @@ -2897,7 +2903,7 @@ msgstr "" "Pakete von diesem Rechner herunterladen." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:140 +#: apt-secure.8.xml:134 msgid "" "However, it does not defend against a compromise of the Debian master server " "itself (which signs the packages) or against a compromise of the key used to " @@ -2910,12 +2916,12 @@ msgstr "" "Fall kann dieser Mechanismus eine Signatur pro Paket ergänzen." #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:146 +#: apt-secure.8.xml:140 msgid "User configuration" msgstr "Benutzerkonfiguration" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:148 +#: apt-secure.8.xml:142 msgid "" "<command>apt-key</command> is the program that manages the list of keys used " "by apt. It can be used to add or remove keys, although an installation of " @@ -2929,7 +2935,7 @@ msgstr "" "den Debian-Paketdepots benutzt werden." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:155 +#: apt-secure.8.xml:149 msgid "" "In order to add a new key you need to first download it (you should make " "sure you are using a trusted communication channel when retrieving it), add " @@ -2947,12 +2953,12 @@ msgstr "" "herunterladen und prüfen kann." #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:164 +#: apt-secure.8.xml:158 msgid "Archive configuration" msgstr "Archivkonfiguration" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:166 +#: apt-secure.8.xml:160 msgid "" "If you want to provide archive signatures in an archive under your " "maintenance you have to:" @@ -2961,7 +2967,7 @@ msgstr "" "stellen möchten, müssen Sie:" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:171 +#: apt-secure.8.xml:165 msgid "" "<emphasis>Create a toplevel Release file</emphasis>, if it does not exist " "already. You can do this by running <command>apt-ftparchive release</" @@ -2972,7 +2978,7 @@ msgstr "" "<command>apt-ftparchive release</command> (aus apt-utils) ausführen." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:176 +#: apt-secure.8.xml:170 msgid "" "<emphasis>Sign it</emphasis>. You can do this by running <command>gpg --" "clearsign -o InRelease Release</command> and <command>gpg -abs -o Release." @@ -2983,7 +2989,7 @@ msgstr "" "abs -o Release.gpg Release</command> ausführen." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:180 +#: apt-secure.8.xml:174 msgid "" "<emphasis>Publish the key fingerprint</emphasis>, that way your users will " "know what key they need to import in order to authenticate the files in the " @@ -2994,7 +3000,7 @@ msgstr "" "Dateien im Archiv zu authentifizieren." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:187 +#: apt-secure.8.xml:181 msgid "" "Whenever the contents of the archive change (new packages are added or " "removed) the archive maintainer has to follow the first two steps outlined " @@ -3005,7 +3011,7 @@ msgstr "" "Schritten folgen." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:195 +#: apt-secure.8.xml:189 msgid "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " "&debsign;, &debsig-verify;, &gpg;" @@ -3014,7 +3020,7 @@ msgstr "" "&debsign;, &debsig-verify;, &gpg;" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:199 +#: apt-secure.8.xml:193 msgid "" "For more background information you might want to review the <ulink url=" "\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7\">Debian " @@ -3031,12 +3037,12 @@ msgstr "" ">Strong Distribution HOWTO</ulink> von V. Alex Brennen lesen." #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:212 +#: apt-secure.8.xml:206 msgid "Manpage Authors" msgstr "Autoren der Handbuchseite" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:214 +#: apt-secure.8.xml:208 msgid "" "This man-page is based on the work of Javier Fernández-Sanguino Peña, Isaac " "Jones, Colin Walters, Florian Weimer and Michael Vogt." @@ -3045,12 +3051,12 @@ msgstr "" "Peña, Isaac Jones, Colin Walters, Florian Weimer und Michael Vogt." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-cdrom.8.xml:34 +#: apt-cdrom.8.xml:28 msgid "APT CD-ROM management utility" msgstr "APT-CD-ROM-Verwaltungswerkzeug" #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:40 +#: apt-cdrom.8.xml:34 msgid "" "<command>apt-cdrom</command> is used to add a new CD-ROM to APT's list of " "available sources. <command>apt-cdrom</command> takes care of determining " @@ -3063,7 +3069,7 @@ msgstr "" "mehrere mögliche Fehlbrennungen und prüft die Indexdateien." #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:47 +#: apt-cdrom.8.xml:41 msgid "" "It is necessary to use <command>apt-cdrom</command> to add CDs to the APT " "system; it cannot be done by hand. Furthermore each disc in a multi-CD set " @@ -3075,7 +3081,7 @@ msgstr "" "gescannt werden, um auf mögliche Fehlbrennungen zu testen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:58 +#: apt-cdrom.8.xml:52 msgid "" "<literal>add</literal> is used to add a new disc to the source list. It will " "unmount the CD-ROM device, prompt for a disc to be inserted and then proceed " @@ -3090,7 +3096,7 @@ msgstr "" "Verzeichnis hat, werden Sie nach einem aussagekräftigen Titel gefragt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:66 +#: apt-cdrom.8.xml:60 msgid "" "APT uses a CD-ROM ID to track which disc is currently in the drive and " "maintains a database of these IDs in <filename>&statedir;/cdroms.list</" @@ -3101,7 +3107,7 @@ msgstr "" "<filename>&statedir;/cdroms.list</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:74 +#: apt-cdrom.8.xml:68 msgid "" "A debugging tool to report the identity of the current disc as well as the " "stored file name" @@ -3110,7 +3116,7 @@ msgstr "" "gespeicherten Dateinamen zu berichten" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:87 +#: apt-cdrom.8.xml:81 msgid "" "Do not try to auto-detect the CD-ROM path. Usually combined with the " "<option>--cdrom</option> option. Configuration Item: <literal>Acquire::" @@ -3121,7 +3127,7 @@ msgstr "" "Konfigurationselement: <literal>Acquire::cdrom::AutoDetect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:95 +#: apt-cdrom.8.xml:89 msgid "" "Mount point; specify the location to mount the CD-ROM. This mount point must " "be listed in <filename>/etc/fstab</filename> and properly configured. " @@ -3133,7 +3139,7 @@ msgstr "" "cdrom::mount</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:104 +#: apt-cdrom.8.xml:98 msgid "" "Rename a disc; change the label of a disc or override the disc's given " "label. This option will cause <command>apt-cdrom</command> to prompt for a " @@ -3145,7 +3151,7 @@ msgstr "" "Konfigurationselement: <literal>APT::CDROM::Rename</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:113 +#: apt-cdrom.8.xml:107 msgid "" "No mounting; prevent <command>apt-cdrom</command> from mounting and " "unmounting the mount point. Configuration Item: <literal>APT::CDROM::" @@ -3156,7 +3162,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:121 +#: apt-cdrom.8.xml:115 msgid "" "Fast Copy; Assume the package files are valid and do not check every " "package. This option should be used only if <command>apt-cdrom</command> has " @@ -3169,7 +3175,7 @@ msgstr "" "festgestellt hat. Konfigurationselement: <literal>APT::CDROM::Fast</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:131 +#: apt-cdrom.8.xml:125 msgid "" "Thorough Package Scan; This option may be needed with some old Debian " "1.1/1.2 discs that have Package files in strange places. It takes much " @@ -3180,7 +3186,7 @@ msgstr "" "Dies verlängert das Durchsuchen des Mediums deutlich, nimmt aber alle auf." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:142 +#: apt-cdrom.8.xml:136 msgid "" "No Changes; Do not change the &sources-list; file and do not write index " "files. Everything is still checked however. Configuration Item: " @@ -3191,12 +3197,12 @@ msgstr "" "Konfigurationselement: <literal>APT::CDROM::NoAct</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:155 +#: apt-cdrom.8.xml:149 msgid "&apt-conf;, &apt-get;, &sources-list;" msgstr "&apt-conf;, &apt-get;, &sources-list;" #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:160 +#: apt-cdrom.8.xml:154 msgid "" "<command>apt-cdrom</command> returns zero on normal operation, decimal 100 " "on error." @@ -3205,12 +3211,12 @@ msgstr "" "100 bei Fehlern." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-config.8.xml:35 +#: apt-config.8.xml:29 msgid "APT Configuration Query program" msgstr "APT-Konfigurationsabfrageprogramm" #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:41 +#: apt-config.8.xml:35 msgid "" "<command>apt-config</command> is an internal program used by various " "portions of the APT suite to provide consistent configurability. It accesses " @@ -3224,7 +3230,7 @@ msgstr "" "Anwendungen zu benutzen ist." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:53 +#: apt-config.8.xml:47 msgid "" "shell is used to access the configuration information from a shell script. " "It is given pairs of arguments, the first being a shell variable and the " @@ -3240,7 +3246,7 @@ msgstr "" "sollte es wie folgt benutzt werden:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> -#: apt-config.8.xml:61 +#: apt-config.8.xml:55 #, no-wrap msgid "" "OPTS=\"-f\"\n" @@ -3252,7 +3258,7 @@ msgstr "" "eval $RES\n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:66 +#: apt-config.8.xml:60 msgid "" "This will set the shell environment variable $OPTS to the value of MyApp::" "options with a default of <option>-f</option>." @@ -3261,7 +3267,7 @@ msgstr "" "mit einer Vorgabe von <option>-f</option> setzen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:70 +#: apt-config.8.xml:64 msgid "" "The configuration item may be postfixed with a /[fdbi]. f returns file " "names, d returns directories, b returns true or false and i returns an " @@ -3273,12 +3279,12 @@ msgstr "" "intern geprüft." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:79 +#: apt-config.8.xml:73 msgid "Just show the contents of the configuration space." msgstr "Nur der Inhalt des Konfigurationsbereichs wird angezeigt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:92 +#: apt-config.8.xml:86 msgid "" "Include options which have an empty value. This is the default, so use --no-" "empty to remove them from the output." @@ -3287,12 +3293,12 @@ msgstr "" "benutzen Sie daher --no-empty, um sie aus der Ausgabe zu entfernen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-config.8.xml:97 +#: apt-config.8.xml:91 msgid "%f "%v";%n" msgstr "%f "%v";%n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:98 +#: apt-config.8.xml:92 msgid "" "Defines the output of each config option. %t will be replaced with " "its individual name, %f with its full hierarchical name and %v " @@ -3311,13 +3317,13 @@ msgstr "" "% kann mittels %% ausgegeben werden." #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:112 apt-extracttemplates.1.xml:73 apt-sortpkgs.1.xml:66 -#: apt-ftparchive.1.xml:610 +#: apt-config.8.xml:106 apt-extracttemplates.1.xml:67 apt-sortpkgs.1.xml:60 +#: apt-ftparchive.1.xml:604 msgid "&apt-conf;" msgstr "&apt-conf;" #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:117 +#: apt-config.8.xml:111 msgid "" "<command>apt-config</command> returns zero on normal operation, decimal 100 " "on error." @@ -3326,27 +3332,27 @@ msgstr "" "dezimal 100 bei Fehlern." #. type: Content of: <refentry><refentryinfo><author><contrib> -#: apt.conf.5.xml:22 +#: apt.conf.5.xml:16 msgid "Initial documentation of Debug::*." msgstr "ursprüngliche Dokumentation von Debug::*." #. type: Content of: <refentry><refentryinfo><author><email> -#: apt.conf.5.xml:23 +#: apt.conf.5.xml:17 msgid "dburrows@debian.org" msgstr "dburrows@debian.org" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt.conf.5.xml:33 apt_preferences.5.xml:27 sources.list.5.xml:28 +#: apt.conf.5.xml:27 apt_preferences.5.xml:21 sources.list.5.xml:22 msgid "5" msgstr "5" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt.conf.5.xml:40 +#: apt.conf.5.xml:34 msgid "Configuration file for APT" msgstr "Konfigurationsdatei für APT" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:44 +#: apt.conf.5.xml:38 msgid "" "<filename>/etc/apt/apt.conf</filename> is the main configuration file shared " "by all the tools in the APT suite of tools, though it is by no means the " @@ -3360,7 +3366,7 @@ msgstr "" "Umgebung bereitzustellen." #. type: Content of: <refentry><refsect1><orderedlist><para> -#: apt.conf.5.xml:50 +#: apt.conf.5.xml:44 msgid "" "When an APT tool starts up it will read the configuration files in the " "following order:" @@ -3369,7 +3375,7 @@ msgstr "" "folgenden Reihenfolge lesen:" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:52 +#: apt.conf.5.xml:46 msgid "" "the file specified by the <envar>APT_CONFIG</envar> environment variable (if " "any)" @@ -3378,7 +3384,7 @@ msgstr "" "angegeben wird (falls gesetzt)" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:54 +#: apt.conf.5.xml:48 msgid "" "all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending " "order which have either no or \"<literal>conf</literal>\" as filename " @@ -3398,7 +3404,7 @@ msgstr "" "sie stillschweigend ignoriert." #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:61 +#: apt.conf.5.xml:55 msgid "" "the main configuration file specified by <literal>Dir::Etc::main</literal>" msgstr "" @@ -3406,7 +3412,7 @@ msgstr "" "angegeben wird" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:63 +#: apt.conf.5.xml:57 msgid "" "the command line options are applied to override the configuration " "directives or to load even more configuration files." @@ -3415,12 +3421,12 @@ msgstr "" "zu überschreiben oder um sogar mehrere Konfigurationsdateien zu laden." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:67 +#: apt.conf.5.xml:61 msgid "Syntax" msgstr "Syntax" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:68 +#: apt.conf.5.xml:62 msgid "" "The configuration file is organized in a tree with options organized into " "functional groups. Option specification is given with a double colon " @@ -3435,7 +3441,7 @@ msgstr "" "das Werkzeug Get. Optionen werden nicht von ihren Elterngruppe geerbt." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:74 +#: apt.conf.5.xml:68 msgid "" "Syntactically the configuration language is modeled after what the ISC tools " "such as bind and dhcp use. Lines starting with <literal>//</literal> are " @@ -3462,7 +3468,7 @@ msgstr "" "werden, wie:" #. type: Content of: <refentry><refsect1><informalexample><programlisting> -#: apt.conf.5.xml:87 +#: apt.conf.5.xml:81 #, no-wrap msgid "" "APT {\n" @@ -3480,7 +3486,7 @@ msgstr "" "};\n" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:95 +#: apt.conf.5.xml:89 msgid "" "with newlines placed to make it more readable. Lists can be created by " "opening a scope and including a single string enclosed in quotes followed by " @@ -3493,13 +3499,13 @@ msgstr "" "eingefügt werden, jeweils getrennt durch einen Schrägstrich." #. type: Content of: <refentry><refsect1><informalexample><programlisting> -#: apt.conf.5.xml:100 +#: apt.conf.5.xml:94 #, no-wrap msgid "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" msgstr "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:103 +#: apt.conf.5.xml:97 msgid "" "In general the sample configuration file &configureindex; is a good guide " "for how it should look." @@ -3508,7 +3514,7 @@ msgstr "" "gute Anleitung, wie dies aussehen könnte." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:106 +#: apt.conf.5.xml:100 msgid "" "Case is not significant in names of configuration items, so in the previous " "example you could use <literal>dpkg::pre-install-pkgs</literal>." @@ -3518,7 +3524,7 @@ msgstr "" "<literal>dpkg::pre-install-pkgs</literal> benutzen." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:109 +#: apt.conf.5.xml:103 msgid "" "Names for the configuration items are optional if a list is defined as can " "be seen in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. If " @@ -3534,7 +3540,7 @@ msgstr "" "überschreiben, indem Sie der Option erneut einen neuen Wert zuweisen." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:114 +#: apt.conf.5.xml:108 msgid "" "Two special commands are defined: <literal>#include</literal> (which is " "deprecated and not supported by alternative implementations) and " @@ -3554,7 +3560,7 @@ msgstr "" "(Beachten Sie, dass diese Zeilen auch mit einem Schrägstrich enden müssen.)" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:124 +#: apt.conf.5.xml:118 msgid "" "The <literal>#clear</literal> command is the only way to delete a list or a " "complete scope. Reopening a scope (or using the syntax described below with " @@ -3571,7 +3577,7 @@ msgstr "" "nicht außer Kraft gesetzt, sondern nur bereinigt werden." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:132 +#: apt.conf.5.xml:126 msgid "" "All of the APT tools take an -o option which allows an arbitrary " "configuration directive to be specified on the command line. The syntax is a " @@ -3591,7 +3597,7 @@ msgstr "" "Befehlszeile benutzt werden.)" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:140 +#: apt.conf.5.xml:134 msgid "" "Note that appending items to a list using <literal>::</literal> only works " "for one item per line, and that you should not use it in combination with " @@ -3623,12 +3629,12 @@ msgstr "" "beklagt." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:155 +#: apt.conf.5.xml:149 msgid "The APT Group" msgstr "Die APT-Gruppe" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:156 +#: apt.conf.5.xml:150 msgid "" "This group of options controls general APT behavior as well as holding the " "options for all of the tools." @@ -3637,7 +3643,7 @@ msgstr "" "wie es die Optionen für alle Werkzeuge enthält." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:161 +#: apt.conf.5.xml:155 msgid "" "System Architecture; sets the architecture to use when fetching files and " "parsing package lists. The internal default is the architecture apt was " @@ -3648,7 +3654,7 @@ msgstr "" "die Architektur für die APT kompiliert wurde." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:168 +#: apt.conf.5.xml:162 msgid "" "All Architectures the system supports. For instance, CPUs implementing the " "<literal>amd64</literal> (also called <literal>x86-64</literal>) " @@ -3670,7 +3676,7 @@ msgstr "" "print-architectures</command> registriert werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:182 +#: apt.conf.5.xml:176 msgid "" "List of all build profiles enabled for build-dependency resolution, without " "the \"<literal>profile.</literal>\" namespace prefix. By default this list " @@ -3684,7 +3690,7 @@ msgstr "" "außer Kraft." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:190 +#: apt.conf.5.xml:184 msgid "" "Default release to install packages from if more than one version is " "available. Contains release name, codename or release version. Examples: " @@ -3697,7 +3703,7 @@ msgstr "" "codename;«, »4.0«, »5.0*«. Siehe auch &apt-preferences;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:196 +#: apt.conf.5.xml:190 msgid "" "Ignore held packages; this global option causes the problem resolver to " "ignore held packages in its decision making." @@ -3706,7 +3712,7 @@ msgstr "" "Problemlöser, gehaltene Pakete beim Treffen von Entscheidungen zu ignorieren." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:201 +#: apt.conf.5.xml:195 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " @@ -3721,7 +3727,7 @@ msgstr "" "Möglichkeiten bereitstellt, um sie erneut zu installieren." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:209 +#: apt.conf.5.xml:203 msgid "" "Defaults to on, which will cause APT to install essential and important " "packages as soon as possible in an install/upgrade operation, in order to " @@ -3749,7 +3755,7 @@ msgstr "" "Abhängigkeit von A nicht länger erfüllt wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:221 +#: apt.conf.5.xml:215 msgid "" "The immediate configuration marker is also applied in the potentially " "problematic case of circular dependencies, since a dependency with the " @@ -3779,7 +3785,7 @@ msgstr "" "Stelle verhindern kann." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:234 +#: apt.conf.5.xml:228 msgid "" "Before a big operation like <literal>dist-upgrade</literal> is run with this " "option disabled you should try to explicitly <literal>install</literal> the " @@ -3797,7 +3803,7 @@ msgstr "" "des Upgrade-Prozesses arbeiten können." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:245 +#: apt.conf.5.xml:239 msgid "" "Never enable this option unless you <emphasis>really</emphasis> know what " "you are doing. It permits APT to temporarily remove an essential package to " @@ -3819,7 +3825,7 @@ msgstr "" "davon abhängt, sind." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:257 +#: apt.conf.5.xml:251 msgid "" "APT uses since version 0.7.26 a resizable memory mapped cache file to store " "the available information. <literal>Cache-Start</literal> acts as a hint of " @@ -3856,13 +3862,13 @@ msgstr "" "auf 0 gesetzt ist, kann der Zwischenspeicher nicht automatisch wachsen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:273 +#: apt.conf.5.xml:267 msgid "Defines which packages are considered essential build dependencies." msgstr "" "definiert, welche Pakete als essentielle Bauabhängigkeiten betrachtet werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:277 +#: apt.conf.5.xml:271 msgid "" "The Get subsection controls the &apt-get; tool; please see its documentation " "for more information about the options here." @@ -3872,7 +3878,7 @@ msgstr "" "erhalten." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:282 +#: apt.conf.5.xml:276 msgid "" "The Cache subsection controls the &apt-cache; tool; please see its " "documentation for more information about the options here." @@ -3882,7 +3888,7 @@ msgstr "" "erhalten." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:287 +#: apt.conf.5.xml:281 msgid "" "The CDROM subsection controls the &apt-cdrom; tool; please see its " "documentation for more information about the options here." @@ -3892,12 +3898,12 @@ msgstr "" "erhalten." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:293 +#: apt.conf.5.xml:287 msgid "The Acquire Group" msgstr "Die Erwerbgruppe" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:294 +#: apt.conf.5.xml:288 msgid "" "The <literal>Acquire</literal> group of options controls the download of " "packages as well as the various \"acquire methods\" responsible for the " @@ -3908,7 +3914,7 @@ msgstr "" "Herunterladen selbst zuständig sind (siehe auch &sources-list;)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:301 +#: apt.conf.5.xml:295 msgid "" "Security related option defaulting to true, as giving a Release file's " "validation an expiration date prevents replay attacks over a long timescale, " @@ -3930,7 +3936,7 @@ msgstr "" "ValidTime</literal> unten benutzt werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:314 +#: apt.conf.5.xml:308 msgid "" "Maximum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -3949,7 +3955,7 @@ msgstr "" "Anhängen der Archivbezeichnung an den Optionsnamen vorgenommen werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:326 +#: apt.conf.5.xml:320 msgid "" "Minimum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -3969,7 +3975,7 @@ msgstr "" "Optionsnamen vorgenommen werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:338 +#: apt.conf.5.xml:332 msgid "" "Try to download deltas called <literal>PDiffs</literal> for indexes (like " "<filename>Packages</filename> files) instead of downloading whole ones. True " @@ -3980,7 +3986,7 @@ msgstr "" "der kompletten Dateien. Vorgabe ist True." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:341 +#: apt.conf.5.xml:335 msgid "" "Two sub-options to limit the use of PDiffs are also available: " "<literal>FileLimit</literal> can be used to specify a maximum number of " @@ -3998,7 +4004,7 @@ msgstr "" "komplette Datei anstelle der Patche heruntergeladen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:351 +#: apt.conf.5.xml:345 msgid "" "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" "literal> or <literal>access</literal> which determines how APT parallelizes " @@ -4014,7 +4020,7 @@ msgstr "" "URI-Art geöffnet wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:359 +#: apt.conf.5.xml:353 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." @@ -4023,7 +4029,7 @@ msgstr "" "APT fehlgeschlagene Dateien in der angegebenen Zahl erneut versuchen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:364 +#: apt.conf.5.xml:358 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." @@ -4033,7 +4039,7 @@ msgstr "" "kopiert zu werden. True ist die Vorgabe." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:369 +#: apt.conf.5.xml:363 msgid "" "<literal>http::Proxy</literal> sets the default proxy to use for HTTP URIs. " "It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</" @@ -4052,7 +4058,7 @@ msgstr "" "wurde, wird die Umgebungsvariable <envar>http_proxy</envar> benutzt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:377 +#: apt.conf.5.xml:371 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy not to use its cached " @@ -4073,7 +4079,7 @@ msgstr "" "Zwischenspeicher mit (großen) .deb-Dateien verunreinigt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:387 apt.conf.5.xml:475 +#: apt.conf.5.xml:381 apt.conf.5.xml:469 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method; this value applies to the connection as well as the data timeout." @@ -4083,7 +4089,7 @@ msgstr "" "Datenzeitüberschreitungen angewandt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:390 +#: apt.conf.5.xml:384 msgid "" "The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e." @@ -4103,7 +4109,7 @@ msgstr "" "HTTP/1.1-Spezifikation entsprechen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:397 +#: apt.conf.5.xml:391 msgid "" "<literal>Acquire::http::AllowRedirect</literal> controls whether APT will " "follow redirects, which is enabled by default." @@ -4112,7 +4118,7 @@ msgstr "" "folgen wird, was standardmäßig aktiviert ist." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:400 +#: apt.conf.5.xml:394 msgid "" "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" "literal> which accepts integer values in kilobytes per second. The default " @@ -4128,7 +4134,7 @@ msgstr "" "Zeit deaktiviert." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:407 +#: apt.conf.5.xml:401 msgid "" "<literal>Acquire::http::User-Agent</literal> can be used to set a different " "User-Agent for the http download method as some proxies allow access for " @@ -4140,7 +4146,7 @@ msgstr "" "bekannten Bezeichner verwendet." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:411 +#: apt.conf.5.xml:405 msgid "" "<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify " "an external command to discover the http proxy to use. Apt expects the " @@ -4163,7 +4169,7 @@ msgstr "" "dem veralteten Optionsnamen <literal>ProxyAutoDetect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:429 +#: apt.conf.5.xml:423 msgid "" "The <literal>Cache-control</literal>, <literal>Timeout</literal>, " "<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and " @@ -4180,7 +4186,7 @@ msgstr "" "<literal>Pipeline-Depth</literal> wird noch nicht unterstützt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:437 +#: apt.conf.5.xml:431 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is the " @@ -4221,7 +4227,7 @@ msgstr "" "Rechner ist <literal><host>::SslForceVersion</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:458 +#: apt.conf.5.xml:452 msgid "" "<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. " "It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</" @@ -4256,7 +4262,7 @@ msgstr "" "literal> und <literal>$(SITE_PORT)</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:478 +#: apt.conf.5.xml:472 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on; it works in nearly every environment. However, " @@ -4273,7 +4279,7 @@ msgstr "" "Musterkonfigurationsdatei)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:485 +#: apt.conf.5.xml:479 msgid "" "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" "envar> environment variable to an HTTP URL - see the discussion of the http " @@ -4287,7 +4293,7 @@ msgstr "" "Effizienz nicht empfohlen FTP über HTTP zu benutzen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:490 +#: apt.conf.5.xml:484 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@ -4303,13 +4309,13 @@ msgstr "" "Server RFC2428 unterstützen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:504 +#: apt.conf.5.xml:498 #, no-wrap msgid "/cdrom/::Mount \"foo\";" msgstr "/cdrom/::Mount \"foo\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:499 +#: apt.conf.5.xml:493 msgid "" "For URIs using the <literal>cdrom</literal> method, the only configurable " "option is the mount point, <literal>cdrom::Mount</literal>, which must be " @@ -4331,7 +4337,7 @@ msgstr "" "Aushängebefehle können per UMount angegeben werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:512 +#: apt.conf.5.xml:506 msgid "" "For GPGV URIs the only configurable option is <literal>gpgv::Options</" "literal>, which passes additional parameters to gpgv." @@ -4340,13 +4346,13 @@ msgstr "" "literal>, um zusätzliche Parameter an Gpgv weiterzuleiten." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:523 +#: apt.conf.5.xml:517 #, no-wrap msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" msgstr "Acquire::CompressionTypes::<replaceable>Dateierweiterung</replaceable> \"<replaceable>Methodenname</replaceable>\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:518 +#: apt.conf.5.xml:512 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " @@ -4366,19 +4372,19 @@ msgstr "" "\"synopsis\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:528 +#: apt.conf.5.xml:522 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "Acquire::CompressionTypes::Order:: \"gz\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:531 +#: apt.conf.5.xml:525 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:524 +#: apt.conf.5.xml:518 msgid "" "Also, the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " @@ -4410,13 +4416,13 @@ msgstr "" "explizit zur Liste hinzuzufügen, da es automatisch hinzufügt wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:538 +#: apt.conf.5.xml:532 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:533 +#: apt.conf.5.xml:527 msgid "" "Note that the <literal>Dir::Bin::<replaceable>Methodname</replaceable></" "literal> will be checked at run time. If this option has been set, the " @@ -4442,7 +4448,7 @@ msgstr "" "nicht überschreiben, es wird diesen Typ nur vor die Liste setzen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:543 +#: apt.conf.5.xml:537 msgid "" "The special type <literal>uncompressed</literal> can be used to give " "uncompressed files a preference, but note that most archives don't provide " @@ -4454,7 +4460,7 @@ msgstr "" "dies meist nur für lokale Spiegel benutzt werden kann." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:550 +#: apt.conf.5.xml:544 msgid "" "When downloading <literal>gzip</literal> compressed indexes (Packages, " "Sources, or Translations), keep them gzip compressed locally instead of " @@ -4468,7 +4474,7 @@ msgstr "" "False." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:558 +#: apt.conf.5.xml:552 msgid "" "The Languages subsection controls which <filename>Translation</filename> " "files are downloaded and in which order APT tries to display the description-" @@ -4488,13 +4494,13 @@ msgstr "" "langen Sprachcodes selten." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting> -#: apt.conf.5.xml:575 +#: apt.conf.5.xml:569 #, no-wrap msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" msgstr "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:563 +#: apt.conf.5.xml:557 msgid "" "The default list includes \"environment\" and \"en\". " "\"<literal>environment</literal>\" has a special meaning here: it will be " @@ -4535,7 +4541,7 @@ msgstr "" "\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:576 +#: apt.conf.5.xml:570 msgid "" "Note: To prevent problems resulting from APT being executed in different " "environments (e.g. by different users or by other programs) all Translation " @@ -4549,22 +4555,22 @@ msgstr "" "Liste hinzugefügt (nach einem impliziten »<literal>none</literal>«)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:585 +#: apt.conf.5.xml:579 msgid "When downloading, force to use only the IPv4 protocol." msgstr "Beim Herunterladen wird die Verwendung des IPv4-Protokolls erzwungen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:591 +#: apt.conf.5.xml:585 msgid "When downloading, force to use only the IPv6 protocol." msgstr "Beim Herunterladen wird die Verwendung des IPv6-Protokolls erzwungen." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:598 +#: apt.conf.5.xml:592 msgid "Directories" msgstr "Verzeichnisse" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:600 +#: apt.conf.5.xml:594 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@ -4584,7 +4590,7 @@ msgstr "" "nicht mit <filename>/</filename> oder <filename>./</filename> beginnen." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:607 +#: apt.conf.5.xml:601 #, fuzzy #| msgid "" #| "<literal>Dir::Cache</literal> contains locations pertaining to local " @@ -4619,7 +4625,7 @@ msgstr "" "Standardverzeichnis in <literal>Dir::Cache</literal> enthalten." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:617 +#: apt.conf.5.xml:611 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -4634,7 +4640,7 @@ msgstr "" "Konfigurationsdatei erfolgt)." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:623 +#: apt.conf.5.xml:617 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -4646,7 +4652,7 @@ msgstr "" "geladen." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:627 +#: apt.conf.5.xml:621 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@ -4664,7 +4670,7 @@ msgstr "" "Programms an." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:635 +#: apt.conf.5.xml:629 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -4684,7 +4690,7 @@ msgstr "" "<filename>/tmp/staging/var/lib/dpkg/status</filename> nachgesehen." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:648 +#: apt.conf.5.xml:642 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -4702,12 +4708,12 @@ msgstr "" "diese Muster verwandt werden." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:657 +#: apt.conf.5.xml:651 msgid "APT in DSelect" msgstr "APT in DSelect" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:659 +#: apt.conf.5.xml:653 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -4718,7 +4724,7 @@ msgstr "" "<literal>DSelect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:664 +#: apt.conf.5.xml:658 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@ -4741,7 +4747,7 @@ msgstr "" "vor dem Herunterladen neuer Pakete durch." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:678 +#: apt.conf.5.xml:672 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." @@ -4750,7 +4756,7 @@ msgstr "" "übermittelt, wenn es für die Installationsphase durchlaufen wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:683 +#: apt.conf.5.xml:677 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." @@ -4759,7 +4765,7 @@ msgstr "" "übermittelt, wenn es für die Aktualisierungsphase durchlaufen wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:688 +#: apt.conf.5.xml:682 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@ -4768,12 +4774,12 @@ msgstr "" "nachfragen, um fortzufahren. Vorgabe ist es, nur bei Fehlern nachzufragen." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:694 +#: apt.conf.5.xml:688 msgid "How APT calls &dpkg;" msgstr "Wie APT &dpkg; aufruft" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:695 +#: apt.conf.5.xml:689 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@ -4782,7 +4788,7 @@ msgstr "" "stehen im Abschnitt <literal>DPkg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:700 +#: apt.conf.5.xml:694 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -4793,7 +4799,7 @@ msgstr "" "jedes Listenelement wird als einzelnes Argument an &dpkg; übermittelt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:706 +#: apt.conf.5.xml:700 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4807,7 +4813,7 @@ msgstr "" "APT abgebrochen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:713 +#: apt.conf.5.xml:707 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4826,7 +4832,7 @@ msgstr "" "übergeben." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:720 +#: apt.conf.5.xml:714 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@ -4839,7 +4845,7 @@ msgstr "" "Version die Architektur und den <literal>MultiArch</literal>-Schalter hinzu." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:725 +#: apt.conf.5.xml:719 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -4857,7 +4863,7 @@ msgstr "" "bietet." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:732 +#: apt.conf.5.xml:726 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</" @@ -4875,7 +4881,7 @@ msgstr "" "verwendeten Dateideskriptors als eine Bestätigung." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:742 +#: apt.conf.5.xml:736 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." @@ -4884,7 +4890,7 @@ msgstr "" "die Vorgabe ist <filename>/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:747 +#: apt.conf.5.xml:741 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." @@ -4894,12 +4900,12 @@ msgstr "" "Programme werden erstellt." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:746 msgid "dpkg trigger usage (and related options)" msgstr "Dpkd-Trigger-Benutzung (und zugehörige Optionen)" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:753 +#: apt.conf.5.xml:747 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -4926,7 +4932,7 @@ msgstr "" "Pakete konfiguriert werden." #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:768 +#: apt.conf.5.xml:762 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -4940,7 +4946,7 @@ msgstr "" "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:762 +#: apt.conf.5.xml:756 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -4965,7 +4971,7 @@ msgstr "" "Optionenkombination wäre <placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:775 +#: apt.conf.5.xml:769 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -4988,7 +4994,7 @@ msgstr "" "anhängen." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:783 +#: apt.conf.5.xml:777 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@ -5018,7 +5024,7 @@ msgstr "" "enden könnte und möglicherweise nicht mehr startbar ist." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:798 +#: apt.conf.5.xml:792 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@ -5037,7 +5043,7 @@ msgstr "" "deaktivieren." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:805 +#: apt.conf.5.xml:799 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -5053,7 +5059,7 @@ msgstr "" "benötigt werden." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:818 +#: apt.conf.5.xml:812 #, no-wrap msgid "" "OrderList::Score {\n" @@ -5071,7 +5077,7 @@ msgstr "" "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:811 +#: apt.conf.5.xml:805 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -5095,12 +5101,12 @@ msgstr "" "mit ihren Vorgabewerten. <placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:831 +#: apt.conf.5.xml:825 msgid "Periodic and Archives options" msgstr "Periodische- und Archivoptionen" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:832 +#: apt.conf.5.xml:826 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -5114,12 +5120,12 @@ msgstr "" "Dokumentation dieser Optionen zu erhalten." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:840 +#: apt.conf.5.xml:834 msgid "Debug options" msgstr "Fehlersuchoptionen" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:842 +#: apt.conf.5.xml:836 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -5137,7 +5143,7 @@ msgstr "" "könnten es sein:" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:853 +#: apt.conf.5.xml:847 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -5148,7 +5154,7 @@ msgstr "" "getroffenen Entscheidungen ein." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:861 +#: apt.conf.5.xml:855 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -5159,7 +5165,7 @@ msgstr "" "<literal>apt-get -s install</literal>) als nicht root-Anwender auszuführen." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:870 +#: apt.conf.5.xml:864 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -5171,7 +5177,7 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:878 +#: apt.conf.5.xml:872 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." @@ -5180,12 +5186,12 @@ msgstr "" "Daten in CD-ROM-IDs aus." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:888 +#: apt.conf.5.xml:882 msgid "A full list of debugging options to apt follows." msgstr "Eine vollständige Liste der Fehlersuchoptionen von APT folgt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:897 +#: apt.conf.5.xml:891 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" @@ -5193,28 +5199,28 @@ msgstr "" "literal>-Quellen beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:908 +#: apt.conf.5.xml:902 msgid "Print information related to downloading packages using FTP." msgstr "" "gibt Informationen aus, die sich auf das Herunterladen von Paketen per FTP " "beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:919 +#: apt.conf.5.xml:913 msgid "Print information related to downloading packages using HTTP." msgstr "" "gibt Informationen aus, die sich auf das Herunterladen von Paketen per HTTP " "beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:930 +#: apt.conf.5.xml:924 msgid "Print information related to downloading packages using HTTPS." msgstr "" "gibt Informationen aus, die sich auf das Herunterladen von Paketen per HTTPS " "beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:941 +#: apt.conf.5.xml:935 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@ -5223,7 +5229,7 @@ msgstr "" "mittels <literal>gpg</literal> beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:952 +#: apt.conf.5.xml:946 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." @@ -5232,13 +5238,13 @@ msgstr "" "CD-ROMs gespeichert sind." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:962 +#: apt.conf.5.xml:956 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" "beschreibt den Prozess der Auflösung von Bauabhängigkeiten in &apt-get;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:972 +#: apt.conf.5.xml:966 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." @@ -5247,7 +5253,7 @@ msgstr "" "Bibliotheken generiert wurde." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:982 +#: apt.conf.5.xml:976 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -5258,7 +5264,7 @@ msgstr "" "ID für eine CD-ROM generiert wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:993 +#: apt.conf.5.xml:987 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." @@ -5268,14 +5274,14 @@ msgstr "" "gleichen Zeit laufen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1005 +#: apt.conf.5.xml:999 msgid "Log when items are added to or removed from the global download queue." msgstr "" "protokolliert, wenn Elemente aus der globalen Warteschlange zum " "Herunterladen hinzugefügt oder entfernt werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1015 +#: apt.conf.5.xml:1009 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." @@ -5284,7 +5290,7 @@ msgstr "" "und kryptografischen Signaturen von heruntergeladenen Dateien beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1025 +#: apt.conf.5.xml:1019 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." @@ -5293,7 +5299,7 @@ msgstr "" "Diffs und Fehler, die die Paketindexlisten-Diffs betreffen, aus." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1037 +#: apt.conf.5.xml:1031 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." @@ -5303,7 +5309,7 @@ msgstr "" "werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1048 +#: apt.conf.5.xml:1042 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" @@ -5311,7 +5317,7 @@ msgstr "" "durchführen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1059 +#: apt.conf.5.xml:1053 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." @@ -5321,7 +5327,7 @@ msgstr "" "beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1069 +#: apt.conf.5.xml:1063 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -5337,7 +5343,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1083 +#: apt.conf.5.xml:1077 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -5370,7 +5376,7 @@ msgstr "" "dem das Paket erscheint." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1104 +#: apt.conf.5.xml:1098 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." @@ -5380,7 +5386,7 @@ msgstr "" "sind, aus." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1115 +#: apt.conf.5.xml:1109 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." @@ -5389,7 +5395,7 @@ msgstr "" "und alle während deren Auswertung gefundenen Fehler aus." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1126 +#: apt.conf.5.xml:1120 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." @@ -5399,7 +5405,7 @@ msgstr "" "soll." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1138 +#: apt.conf.5.xml:1132 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" @@ -5407,12 +5413,12 @@ msgstr "" "von &dpkg; ausgeführt werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1149 +#: apt.conf.5.xml:1143 msgid "Output the priority of each package list on startup." msgstr "gibt die Priorität jeder Paketliste beim Start aus." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1159 +#: apt.conf.5.xml:1153 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." @@ -5422,7 +5428,7 @@ msgstr "" "aufgetreten ist)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1170 +#: apt.conf.5.xml:1164 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -5434,7 +5440,7 @@ msgstr "" "Marker</literal> beschrieben." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1182 +#: apt.conf.5.xml:1176 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@ -5443,7 +5449,7 @@ msgstr "" "filename> gelesenen Anbieter aus." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1192 +#: apt.conf.5.xml:1186 msgid "" "Display the external commands that are called by apt hooks. This includes e." "g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " @@ -5454,13 +5460,13 @@ msgstr "" "literal> oder <literal>APT::Update::{Pre,Post}-Invoke</literal> mit ein." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1216 apt_preferences.5.xml:547 sources.list.5.xml:239 -#: apt-ftparchive.1.xml:598 +#: apt.conf.5.xml:1210 apt_preferences.5.xml:541 sources.list.5.xml:233 +#: apt-ftparchive.1.xml:592 msgid "Examples" msgstr "Beispiele" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1217 +#: apt.conf.5.xml:1211 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -5470,17 +5476,17 @@ msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1229 +#: apt.conf.5.xml:1223 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt_preferences.5.xml:34 +#: apt_preferences.5.xml:28 msgid "Preference control file for APT" msgstr "Voreinstellungssteuerdatei für APT" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:39 +#: apt_preferences.5.xml:33 msgid "" "The APT preferences file <filename>/etc/apt/preferences</filename> and the " "fragment files in the <filename>/etc/apt/preferences.d/</filename> folder " @@ -5493,7 +5499,7 @@ msgstr "" "Installation ausgewählt werden." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:44 +#: apt_preferences.5.xml:38 msgid "" "Several versions of a package may be available for installation when the " "&sources-list; file contains references to more than one distribution (for " @@ -5515,7 +5521,7 @@ msgstr "" "Installation ausgewählt wird." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:54 +#: apt_preferences.5.xml:48 msgid "" "Several instances of the same version of a package may be available when the " "&sources-list; file contains references to more than one source. In this " @@ -5531,7 +5537,7 @@ msgstr "" "der Version." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:61 +#: apt_preferences.5.xml:55 msgid "" "Preferences are a strong power in the hands of a system administrator but " "they can become also their biggest nightmare if used without care! APT will " @@ -5555,7 +5561,7 @@ msgstr "" "nicht. Sind wurden gewarnt." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:72 +#: apt_preferences.5.xml:66 msgid "" "Note that the files in the <filename>/etc/apt/preferences.d</filename> " "directory are parsed in alphanumeric ascending order and need to obey the " @@ -5577,24 +5583,24 @@ msgstr "" "diesem Fall wird sie stillschweigend ignoriert." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:81 +#: apt_preferences.5.xml:75 msgid "APT's Default Priority Assignments" msgstr "APTs Standardprioritätszuweisungen" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:96 +#: apt_preferences.5.xml:90 #, no-wrap msgid "<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n" msgstr "<command>apt-get install -t testing <replaceable>irgendein_Paket</replaceable></command>\n" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:99 +#: apt_preferences.5.xml:93 #, no-wrap msgid "APT::Default-Release \"stable\";\n" msgstr "APT::Default-Release \"stable\";\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:83 +#: apt_preferences.5.xml:77 msgid "" "If there is no preferences file or if there is no entry in the file that " "applies to a particular version then the priority assigned to that version " @@ -5622,7 +5628,7 @@ msgstr "" "\"programlisting\" id=\"0\"/> <placeholder type=\"programlisting\" id=\"1\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:103 +#: apt_preferences.5.xml:97 msgid "" "If the target release has been specified then APT uses the following " "algorithm to set the priorities of the versions of a package. Assign:" @@ -5632,12 +5638,12 @@ msgstr "" "Zuweisung:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:108 +#: apt_preferences.5.xml:102 msgid "priority 1" msgstr "Priorität 1" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:109 +#: apt_preferences.5.xml:103 msgid "" "to the versions coming from archives which in their <filename>Release</" "filename> files are marked as \"NotAutomatic: yes\" but <emphasis>not</" @@ -5650,12 +5656,12 @@ msgstr "" "<literal>experimental</literal> von Debian." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:115 +#: apt_preferences.5.xml:109 msgid "priority 100" msgstr "Priorität 100" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:116 +#: apt_preferences.5.xml:110 msgid "" "to the version that is already installed (if any) and to the versions coming " "from archives which in their <filename>Release</filename> files are marked " @@ -5669,12 +5675,12 @@ msgstr "" "backports</literal>." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:123 +#: apt_preferences.5.xml:117 msgid "priority 500" msgstr "Priorität 500" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:124 +#: apt_preferences.5.xml:118 msgid "" "to the versions that are not installed and do not belong to the target " "release." @@ -5683,19 +5689,19 @@ msgstr "" "gehören." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:128 +#: apt_preferences.5.xml:122 msgid "priority 990" msgstr "Priorität 990" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:129 +#: apt_preferences.5.xml:123 msgid "" "to the versions that are not installed and belong to the target release." msgstr "" "zu den Versionen, die nicht installiert sind und zum Ziel-Release gehören." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:134 +#: apt_preferences.5.xml:128 msgid "" "If the target release has not been specified then APT simply assigns " "priority 100 to all installed package versions and priority 500 to all " @@ -5713,7 +5719,7 @@ msgstr "" "markiert sind." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:141 +#: apt_preferences.5.xml:135 msgid "" "APT then applies the following rules, listed in order of precedence, to " "determine which version of a package to install." @@ -5723,7 +5729,7 @@ msgstr "" "ist." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:144 +#: apt_preferences.5.xml:138 msgid "" "Never downgrade unless the priority of an available version exceeds 1000. " "(\"Downgrading\" is installing a less recent version of a package in place " @@ -5739,12 +5745,12 @@ msgstr "" "Downgrading eines Paketes riskant sein kann.)" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:150 +#: apt_preferences.5.xml:144 msgid "Install the highest priority version." msgstr "installiert die Version mit der höchsten Priorität." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:151 +#: apt_preferences.5.xml:145 msgid "" "If two or more versions have the same priority, install the most recent one " "(that is, the one with the higher version number)." @@ -5753,7 +5759,7 @@ msgstr "" "aktuellste installiert (das ist die mit der höheren Versionsnummer)." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:154 +#: apt_preferences.5.xml:148 msgid "" "If two or more versions have the same priority and version number but either " "the packages differ in some of their metadata or the <literal>--reinstall</" @@ -5765,7 +5771,7 @@ msgstr "" "installierte installiert." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:160 +#: apt_preferences.5.xml:154 msgid "" "In a typical situation, the installed version of a package (priority 100) " "is not as recent as one of the versions available from the sources listed in " @@ -5781,7 +5787,7 @@ msgstr "" "upgrade</command> ausgeführt wird." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:167 +#: apt_preferences.5.xml:161 msgid "" "More rarely, the installed version of a package is <emphasis>more</emphasis> " "recent than any of the other available versions. The package will not be " @@ -5795,7 +5801,7 @@ msgstr "" "upgrade</command> ausgeführt wird." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:172 +#: apt_preferences.5.xml:166 msgid "" "Sometimes the installed version of a package is more recent than the version " "belonging to the target release, but not as recent as a version belonging to " @@ -5815,12 +5821,12 @@ msgstr "" "hat." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:181 +#: apt_preferences.5.xml:175 msgid "The Effect of APT Preferences" msgstr "Die Auswirkungen von APT-Einstellungen" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:183 +#: apt_preferences.5.xml:177 msgid "" "The APT preferences file allows the system administrator to control the " "assignment of priorities. The file consists of one or more multi-line " @@ -5834,7 +5840,7 @@ msgstr "" "allgemeine Gestalt." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:189 +#: apt_preferences.5.xml:183 msgid "" "The specific form assigns a priority (a \"Pin-Priority\") to one or more " "specified packages with a specified version or version range. For example, " @@ -5851,7 +5857,7 @@ msgstr "" "Pakete können durch Leerzeichen getrennt werden." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:196 +#: apt_preferences.5.xml:190 #, no-wrap msgid "" "Package: perl\n" @@ -5863,7 +5869,7 @@ msgstr "" "Pin-Priority: 1001\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:202 +#: apt_preferences.5.xml:196 msgid "" "The general form assigns a priority to all of the package versions in a " "given distribution (that is, to all the versions of packages that are listed " @@ -5878,7 +5884,7 @@ msgstr "" "ausgebildeten Domänennamen identifiziert wird, eine Priorität zu." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:208 +#: apt_preferences.5.xml:202 msgid "" "This general-form entry in the APT preferences file applies only to groups " "of packages. For example, the following record assigns a high priority to " @@ -5889,7 +5895,7 @@ msgstr "" "Paketversionen eine hohe Priorität zu, die lokal liegen." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:213 +#: apt_preferences.5.xml:207 #, no-wrap msgid "" "Package: *\n" @@ -5901,7 +5907,7 @@ msgstr "" "Pin-Priority: 999\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:218 +#: apt_preferences.5.xml:212 msgid "" "A note of caution: the keyword used here is \"<literal>origin</literal>\" " "which can be used to match a hostname. The following record will assign a " @@ -5915,7 +5921,7 @@ msgstr "" "de.debian.org« identifiziert wird." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:222 +#: apt_preferences.5.xml:216 #, no-wrap msgid "" "Package: *\n" @@ -5927,7 +5933,7 @@ msgstr "" "Pin-Priority: 999\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:226 +#: apt_preferences.5.xml:220 msgid "" "This should <emphasis>not</emphasis> be confused with the Origin of a " "distribution as specified in a <filename>Release</filename> file. What " @@ -5942,7 +5948,7 @@ msgstr "" "oder »Ximian«." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:231 +#: apt_preferences.5.xml:225 msgid "" "The following record assigns a low priority to all package versions " "belonging to any distribution whose Archive name is \"<literal>unstable</" @@ -5953,7 +5959,7 @@ msgstr "" "Priorität zu." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:235 +#: apt_preferences.5.xml:229 #, no-wrap msgid "" "Package: *\n" @@ -5965,7 +5971,7 @@ msgstr "" "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:240 +#: apt_preferences.5.xml:234 msgid "" "The following record assigns a high priority to all package versions " "belonging to any distribution whose Codename is \"<literal>&testing-codename;" @@ -5976,7 +5982,7 @@ msgstr "" "hohe Priorität zu." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:244 +#: apt_preferences.5.xml:238 #, no-wrap msgid "" "Package: *\n" @@ -5988,7 +5994,7 @@ msgstr "" "Pin-Priority: 900\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:249 +#: apt_preferences.5.xml:243 msgid "" "The following record assigns a high priority to all package versions " "belonging to any release whose Archive name is \"<literal>stable</literal>\" " @@ -5999,7 +6005,7 @@ msgstr "" "Nummer »<literal>&stable-version;</literal>« ist, eine hohe Priorität zu." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:254 +#: apt_preferences.5.xml:248 #, no-wrap msgid "" "Package: *\n" @@ -6011,12 +6017,12 @@ msgstr "" "Pin-Priority: 500\n" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:264 +#: apt_preferences.5.xml:258 msgid "Regular expressions and &glob; syntax" msgstr "Reguläre Ausdrücke und &glob;-Syntax" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:266 +#: apt_preferences.5.xml:260 msgid "" "APT also supports pinning by &glob; expressions, and regular expressions " "surrounded by slashes. For example, the following example assigns the " @@ -6032,7 +6038,7 @@ msgstr "" "von Schrägstrichen umschlossen wird)." #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:275 +#: apt_preferences.5.xml:269 #, no-wrap msgid "" "Package: gnome* /kde/\n" @@ -6044,7 +6050,7 @@ msgstr "" "Pin-Priority: 500\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:281 +#: apt_preferences.5.xml:275 msgid "" "The rule for those expressions is that they can occur anywhere where a " "string can occur. Thus, the following pin assigns the priority 990 to all " @@ -6055,7 +6061,7 @@ msgstr "" "Paketen von einem Release seit Karmic die Priorität 900 zu." #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:287 +#: apt_preferences.5.xml:281 #, no-wrap msgid "" "Package: *\n" @@ -6067,7 +6073,7 @@ msgstr "" "Pin-Priority: 990\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:293 +#: apt_preferences.5.xml:287 msgid "" "If a regular expression occurs in a <literal>Package</literal> field, the " "behavior is the same as if this regular expression were replaced with a list " @@ -6085,12 +6091,12 @@ msgstr "" "»Package«-Feld wird selbst nicht als ein &glob;-Ausdruck angesehen." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:309 +#: apt_preferences.5.xml:303 msgid "How APT Interprets Priorities" msgstr "Wie APT Prioritäten interpretiert" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:312 +#: apt_preferences.5.xml:306 msgid "" "Priorities (P) assigned in the APT preferences file must be positive or " "negative integers. They are interpreted as follows (roughly speaking):" @@ -6100,12 +6106,12 @@ msgstr "" "(grob gesagt):" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:317 +#: apt_preferences.5.xml:311 msgid "P >= 1000" msgstr "P >= 1000" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:318 +#: apt_preferences.5.xml:312 msgid "" "causes a version to be installed even if this constitutes a downgrade of the " "package" @@ -6114,12 +6120,12 @@ msgstr "" "des Pakets durchführt" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:322 +#: apt_preferences.5.xml:316 msgid "990 <= P < 1000" msgstr "990 <= P < 1000" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:323 +#: apt_preferences.5.xml:317 msgid "" "causes a version to be installed even if it does not come from the target " "release, unless the installed version is more recent" @@ -6128,12 +6134,12 @@ msgstr "" "Ziel-Release kommt, außer wenn die installierte Version aktueller ist" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:328 +#: apt_preferences.5.xml:322 msgid "500 <= P < 990" msgstr "500 <= P < 990" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:329 +#: apt_preferences.5.xml:323 msgid "" "causes a version to be installed unless there is a version available " "belonging to the target release or the installed version is more recent" @@ -6143,12 +6149,12 @@ msgstr "" "neuer ist" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:334 +#: apt_preferences.5.xml:328 msgid "100 <= P < 500" msgstr "100 <= P < 500" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:335 +#: apt_preferences.5.xml:329 msgid "" "causes a version to be installed unless there is a version available " "belonging to some other distribution or the installed version is more recent" @@ -6158,12 +6164,12 @@ msgstr "" "installierte Version neuer ist" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:340 +#: apt_preferences.5.xml:334 msgid "0 < P < 100" msgstr "0 < P < 100" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:341 +#: apt_preferences.5.xml:335 msgid "" "causes a version to be installed only if there is no installed version of " "the package" @@ -6172,17 +6178,17 @@ msgstr "" "installierte Version des Pakets gibt" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:345 +#: apt_preferences.5.xml:339 msgid "P < 0" msgstr "P < 0" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:346 +#: apt_preferences.5.xml:340 msgid "prevents the version from being installed" msgstr "verhindert das Installieren der Version" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:351 +#: apt_preferences.5.xml:345 msgid "" "If any specific-form records match an available package version then the " "first such record determines the priority of the package version. Failing " @@ -6196,7 +6202,7 @@ msgstr "" "erste dieser Datensätze die Priorität der Paketversion fest." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:357 +#: apt_preferences.5.xml:351 msgid "" "For example, suppose the APT preferences file contains the three records " "presented earlier:" @@ -6205,7 +6211,7 @@ msgstr "" "bereits gezeigten Datensätze:" #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:361 +#: apt_preferences.5.xml:355 #, no-wrap msgid "" "Package: perl\n" @@ -6233,12 +6239,12 @@ msgstr "" "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:374 +#: apt_preferences.5.xml:368 msgid "Then:" msgstr "Dann:" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:376 +#: apt_preferences.5.xml:370 msgid "" "The most recent available version of the <literal>perl</literal> package " "will be installed, so long as that version's version number begins with " @@ -6253,7 +6259,7 @@ msgstr "" "perl;* ist, dann wird von <literal>perl</literal> ein Downgrade durchgeführt." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:381 +#: apt_preferences.5.xml:375 msgid "" "A version of any package other than <literal>perl</literal> that is " "available from the local system has priority over other versions, even " @@ -6264,7 +6270,7 @@ msgstr "" "sogar wenn diese Versionen zum Ziel-Release gehören." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:385 +#: apt_preferences.5.xml:379 msgid "" "A version of a package whose origin is not the local system but some other " "site listed in &sources-list; and which belongs to an <literal>unstable</" @@ -6278,12 +6284,12 @@ msgstr "" "Pakets installiert ist." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:395 +#: apt_preferences.5.xml:389 msgid "Determination of Package Version and Distribution Properties" msgstr "Festlegung von Paketversion und Distributions-Eigenschaften" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:397 +#: apt_preferences.5.xml:391 msgid "" "The locations listed in the &sources-list; file should provide " "<filename>Packages</filename> and <filename>Release</filename> files to " @@ -6294,7 +6300,7 @@ msgstr "" "bereitstellen, um die an diesem Ort verfügbaren Pakete zu beschreiben." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:401 +#: apt_preferences.5.xml:395 msgid "" "The <filename>Packages</filename> file is normally found in the directory " "<filename>.../dists/<replaceable>dist-name</replaceable>/" @@ -6313,27 +6319,27 @@ msgstr "" "Datensatz sind nur zwei Zeilen zum Setzen der APT-Prioritäten relevant:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:409 +#: apt_preferences.5.xml:403 msgid "the <literal>Package:</literal> line" msgstr "die <literal>Package:</literal>-Zeile" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:410 +#: apt_preferences.5.xml:404 msgid "gives the package name" msgstr "gibt den Paketnamen an" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:413 apt_preferences.5.xml:463 +#: apt_preferences.5.xml:407 apt_preferences.5.xml:457 msgid "the <literal>Version:</literal> line" msgstr "die <literal>Version:</literal>-Zeile" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:414 +#: apt_preferences.5.xml:408 msgid "gives the version number for the named package" msgstr "gibt die Versionsnummer für das genannte Paket an" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:419 +#: apt_preferences.5.xml:413 msgid "" "The <filename>Release</filename> file is normally found in the directory " "<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for " @@ -6355,12 +6361,12 @@ msgstr "" "APT-Prioritäten relevant:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:430 +#: apt_preferences.5.xml:424 msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" msgstr "die <literal>Archive:</literal>- oder <literal>Suite:</literal>-Zeile" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:431 +#: apt_preferences.5.xml:425 msgid "" "names the archive to which all the packages in the directory tree belong. " "For example, the line \"Archive: stable\" or \"Suite: stable\" specifies " @@ -6377,18 +6383,18 @@ msgstr "" "die folgende Zeile benötigen:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:441 +#: apt_preferences.5.xml:435 #, no-wrap msgid "Pin: release a=stable\n" msgstr "Pin: release a=stable\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:447 +#: apt_preferences.5.xml:441 msgid "the <literal>Codename:</literal> line" msgstr "die <literal>Codename:</literal>-Zeile" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:448 +#: apt_preferences.5.xml:442 msgid "" "names the codename to which all the packages in the directory tree belong. " "For example, the line \"Codename: &testing-codename;\" specifies that all of " @@ -6405,13 +6411,13 @@ msgstr "" "anzugeben würde die folgende Zeile benötigen:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:457 +#: apt_preferences.5.xml:451 #, no-wrap msgid "Pin: release n=&testing-codename;\n" msgstr "Pin: release n=&testing-codename;\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:464 +#: apt_preferences.5.xml:458 msgid "" "names the release version. For example, the packages in the tree might " "belong to Debian release version &stable-version;. Note that there is " @@ -6428,7 +6434,7 @@ msgstr "" "eine der folgenden Zeilen benötigen:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:473 +#: apt_preferences.5.xml:467 #, no-wrap msgid "" "Pin: release v=&stable-version;\n" @@ -6440,12 +6446,12 @@ msgstr "" "Pin: release &stable-version;\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:482 +#: apt_preferences.5.xml:476 msgid "the <literal>Component:</literal> line" msgstr "die <literal>Component:</literal>-Zeile" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:483 +#: apt_preferences.5.xml:477 msgid "" "names the licensing component associated with the packages in the directory " "tree of the <filename>Release</filename> file. For example, the line " @@ -6463,18 +6469,18 @@ msgstr "" "Zeilen benötigen:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:492 +#: apt_preferences.5.xml:486 #, no-wrap msgid "Pin: release c=main\n" msgstr "Pin: release c=main\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:498 +#: apt_preferences.5.xml:492 msgid "the <literal>Origin:</literal> line" msgstr "die <literal>Origin:</literal>-Zeile" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:499 +#: apt_preferences.5.xml:493 msgid "" "names the originator of the packages in the directory tree of the " "<filename>Release</filename> file. Most commonly, this is <literal>Debian</" @@ -6486,18 +6492,18 @@ msgstr "" "in der APT-Einstellungsdatei anzugeben würde die folgende Zeile benötigen:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:505 +#: apt_preferences.5.xml:499 #, no-wrap msgid "Pin: release o=Debian\n" msgstr "Pin: release o=Debian\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:511 +#: apt_preferences.5.xml:505 msgid "the <literal>Label:</literal> line" msgstr "die <literal>Label:</literal>-Zeile" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:512 +#: apt_preferences.5.xml:506 msgid "" "names the label of the packages in the directory tree of the " "<filename>Release</filename> file. Most commonly, this is <literal>Debian</" @@ -6510,13 +6516,13 @@ msgstr "" "die folgende Zeile benötigen:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:518 +#: apt_preferences.5.xml:512 #, no-wrap msgid "Pin: release l=Debian\n" msgstr "Pin: release l=Debian\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:525 +#: apt_preferences.5.xml:519 msgid "" "All of the <filename>Packages</filename> and <filename>Release</filename> " "files retrieved from locations listed in the &sources-list; file are stored " @@ -6542,12 +6548,12 @@ msgstr "" "Distribution heruntergeladen wurde." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:538 +#: apt_preferences.5.xml:532 msgid "Optional Lines in an APT Preferences Record" msgstr "Optionale Zeilen in einem APT-Einstellungsdatensatz" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:540 +#: apt_preferences.5.xml:534 msgid "" "Each record in the APT preferences file can optionally begin with one or " "more lines beginning with the word <literal>Explanation:</literal>. This " @@ -6558,12 +6564,12 @@ msgstr "" "anfangen. Dieses stellt einen Platz für Kommentare bereit." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:549 +#: apt_preferences.5.xml:543 msgid "Tracking Stable" msgstr "Stable verfolgen" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:557 +#: apt_preferences.5.xml:551 #, no-wrap msgid "" "Explanation: Uninstall or do not install any Debian-originated\n" @@ -6587,7 +6593,7 @@ msgstr "" "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:551 +#: apt_preferences.5.xml:545 msgid "" "The following APT preferences file will cause APT to assign a priority " "higher than the default (500) to all package versions belonging to a " @@ -6602,8 +6608,8 @@ msgstr "" "Distributionen gehören. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:574 apt_preferences.5.xml:620 -#: apt_preferences.5.xml:678 +#: apt_preferences.5.xml:568 apt_preferences.5.xml:614 +#: apt_preferences.5.xml:672 #, no-wrap msgid "" "apt-get install <replaceable>package-name</replaceable>\n" @@ -6615,7 +6621,7 @@ msgstr "" "apt-get dist-upgrade\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:569 +#: apt_preferences.5.xml:563 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest " @@ -6628,13 +6634,13 @@ msgstr "" "type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:586 +#: apt_preferences.5.xml:580 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/testing\n" msgstr "apt-get install <replaceable>Paket</replaceable>/testing\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:580 +#: apt_preferences.5.xml:574 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>testing</literal> distribution; the package " @@ -6648,12 +6654,12 @@ msgstr "" "\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:592 +#: apt_preferences.5.xml:586 msgid "Tracking Testing or Unstable" msgstr "Testing oder Unstable verfolgen" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:601 +#: apt_preferences.5.xml:595 #, no-wrap msgid "" "Package: *\n" @@ -6681,7 +6687,7 @@ msgstr "" "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:594 +#: apt_preferences.5.xml:588 msgid "" "The following APT preferences file will cause APT to assign a high priority " "to package versions from the <literal>testing</literal> distribution, a " @@ -6698,7 +6704,7 @@ msgstr "" "\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:615 +#: apt_preferences.5.xml:609 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest " @@ -6711,13 +6717,13 @@ msgstr "" "type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:635 +#: apt_preferences.5.xml:629 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/unstable\n" msgstr "apt-get install <replaceable>Paket</replaceable>/unstable\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:626 +#: apt_preferences.5.xml:620 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>unstable</literal> distribution. " @@ -6737,12 +6743,12 @@ msgstr "" "\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:642 +#: apt_preferences.5.xml:636 msgid "Tracking the evolution of a codename release" msgstr "Die Entwicklung eines Codename-Releases verfolgen" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:656 +#: apt_preferences.5.xml:650 #, no-wrap msgid "" "Explanation: Uninstall or do not install any Debian-originated package versions\n" @@ -6777,7 +6783,7 @@ msgstr "" "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:644 +#: apt_preferences.5.xml:638 msgid "" "The following APT preferences file will cause APT to assign a priority " "higher than the default (500) to all package versions belonging to a " @@ -6803,7 +6809,7 @@ msgstr "" "benutzen. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:673 +#: apt_preferences.5.xml:667 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest version(s) in " @@ -6816,13 +6822,13 @@ msgstr "" "literal> durchzuführen. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:693 +#: apt_preferences.5.xml:687 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/sid\n" msgstr "apt-get install <replaceable>Paket</replaceable>/sid\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:684 +#: apt_preferences.5.xml:678 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>sid</literal> distribution. Thereafter, " @@ -6842,17 +6848,17 @@ msgstr "" "\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:708 +#: apt_preferences.5.xml:702 msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;" msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;" #. type: Content of: <refentry><refnamediv><refpurpose> -#: sources.list.5.xml:35 +#: sources.list.5.xml:29 msgid "List of configured APT data sources" msgstr "Liste konfigurierter APT-Datenquellen" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:40 +#: sources.list.5.xml:34 msgid "" "The source list <filename>/etc/apt/sources.list</filename> is designed to " "support any number of active sources and a variety of source media. The file " @@ -6869,7 +6875,7 @@ msgstr "" "einer anderen APT-Oberfläche) beschafft." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:47 +#: sources.list.5.xml:41 msgid "" "Each line specifying a source starts with type (e.g. <literal>deb-src</" "literal>) followed by options and arguments for this type. Individual " @@ -6884,12 +6890,12 @@ msgstr "" "einer Zeile kennzeichnet den Rest dieser Zeile als Kommentar." #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:55 +#: sources.list.5.xml:49 msgid "sources.list.d" msgstr "sources.list.d" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:56 +#: sources.list.5.xml:50 msgid "" "The <filename>/etc/apt/sources.list.d</filename> directory provides a way to " "add sources.list entries in separate files. The format is the same as for " @@ -6911,12 +6917,12 @@ msgstr "" "Silently</literal> passt – in diesem Fall wird sie stillschweigend ignoriert." #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:67 +#: sources.list.5.xml:61 msgid "The deb and deb-src types" msgstr "Die Typen deb und deb-src" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:68 +#: sources.list.5.xml:62 msgid "" "The <literal>deb</literal> type references a typical two-level Debian " "archive, <filename>distribution/component</filename>. The " @@ -6941,7 +6947,7 @@ msgstr "" "benötigt, um Quellindizes herunterzuladen." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:79 +#: sources.list.5.xml:73 msgid "" "The format for a <filename>sources.list</filename> entry using the " "<literal>deb</literal> and <literal>deb-src</literal> types is:" @@ -6950,13 +6956,13 @@ msgstr "" "<literal>deb</literal>- und <literal>deb-src</literal>-Typen benutzt, ist:" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:82 +#: sources.list.5.xml:76 #, no-wrap msgid "deb [ options ] uri suite [component1] [component2] [...]" msgstr "deb [ Optionen ] URI Suite [Komponente1] [Komponente2] […]" #. type: Content of: <refentry><refsect1><para><literallayout> -#: sources.list.5.xml:86 +#: sources.list.5.xml:80 #, no-wrap msgid "" " Types: deb deb-src\n" @@ -6996,7 +7002,7 @@ msgstr "" " " #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:84 +#: sources.list.5.xml:78 msgid "" "Alternatively a rfc822 style format is also supported: <placeholder type=" "\"literallayout\" id=\"0\"/>" @@ -7005,7 +7011,7 @@ msgstr "" "type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:105 +#: sources.list.5.xml:99 msgid "" "The URI for the <literal>deb</literal> type must specify the base of the " "Debian distribution, from which APT will find the information it needs. " @@ -7026,7 +7032,7 @@ msgstr "" "muss mindestens eine <literal>Komponente</literal> angegeben sein." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:114 +#: sources.list.5.xml:108 msgid "" "<literal>suite</literal> may also contain a variable, <literal>$(ARCH)</" "literal> which expands to the Debian architecture (such as <literal>amd64</" @@ -7046,7 +7052,7 @@ msgstr "" "generieren." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:122 +#: sources.list.5.xml:116 msgid "" "In the traditional style sources.list format since only one distribution can " "be specified per line it may be necessary to have multiple lines for the " @@ -7075,7 +7081,7 @@ msgstr "" "hauszuhalten." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:136 +#: sources.list.5.xml:130 msgid "" "<literal>options</literal> is always optional and needs to be surrounded by " "square brackets. It can consist of multiple settings in the form " @@ -7093,7 +7099,7 @@ msgstr "" "stillschweigend ignoriert werden." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:142 +#: sources.list.5.xml:136 msgid "" "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</" "replaceable>,…</literal> can be used to specify for which architectures " @@ -7109,7 +7115,7 @@ msgstr "" "heruntergeladen." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:146 +#: sources.list.5.xml:140 msgid "" "<literal>arch+=<replaceable>arch1</replaceable>,<replaceable>arch2</" "replaceable>,…</literal> and <literal>arch-=<replaceable>arch1</replaceable>," @@ -7124,7 +7130,7 @@ msgstr "" "hinzuzufügen oder zu entfernen." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:149 +#: sources.list.5.xml:143 msgid "" "<literal>trusted=yes</literal> can be set to indicate that packages from " "this source are always authenticated even if the <filename>Release</" @@ -7142,7 +7148,7 @@ msgstr "" "korrekt authentifizierte Quellen als nicht authentifiziert." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:156 +#: sources.list.5.xml:150 msgid "" "It is important to list sources in order of preference, with the most " "preferred source listed first. Typically this will result in sorting by " @@ -7156,12 +7162,12 @@ msgstr "" "Rechnern, zum Beispiel)." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:161 +#: sources.list.5.xml:155 msgid "Some examples:" msgstr "Einige Beispiele:" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:163 +#: sources.list.5.xml:157 #, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n" @@ -7173,17 +7179,17 @@ msgstr "" " " #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:169 +#: sources.list.5.xml:163 msgid "URI specification" msgstr "URI-Beschreibung" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:171 +#: sources.list.5.xml:165 msgid "The currently recognized URI types are:" msgstr "Die derzeit zulässigen URI-Typen sind:" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:175 +#: sources.list.5.xml:169 msgid "" "The file scheme allows an arbitrary directory in the file system to be " "considered an archive. This is useful for NFS mounts and local mirrors or " @@ -7194,7 +7200,7 @@ msgstr "" "lokale Spiegel oder Archive." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:182 +#: sources.list.5.xml:176 msgid "" "The cdrom scheme allows APT to use a local CD-ROM drive with media swapping. " "Use the &apt-cdrom; program to create cdrom entries in the source list." @@ -7204,7 +7210,7 @@ msgstr "" "der Quellenliste zu erstellen." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:189 +#: sources.list.5.xml:183 msgid "" "The http scheme specifies an HTTP server for the archive. If an environment " "variable <envar>http_proxy</envar> is set with the format http://server:" @@ -7221,7 +7227,7 @@ msgstr "" "Beachten Sie, dass dies eine unsichere Authentifizierungsmethode ist." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:200 +#: sources.list.5.xml:194 msgid "" "The ftp scheme specifies an FTP server for the archive. APT's FTP behavior " "is highly configurable; for more information see the &apt-conf; manual page. " @@ -7243,7 +7249,7 @@ msgstr "" "benutzen, werden ignoriert." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:212 +#: sources.list.5.xml:206 msgid "" "The copy scheme is identical to the file scheme except that packages are " "copied into the cache directory instead of used directly at their location. " @@ -7256,7 +7262,7 @@ msgstr "" "Wechseldatenträger benutzen, um Dateien mit APT umherzukopieren." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:219 +#: sources.list.5.xml:213 msgid "" "The rsh/ssh method invokes RSH/SSH to connect to a remote host and access " "the files as a given user. Prior configuration of rhosts or RSA keys is " @@ -7270,12 +7276,12 @@ msgstr "" "<command>find</command> und <command>dd</command> verwandt." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: sources.list.5.xml:226 +#: sources.list.5.xml:220 msgid "adding more recognizable URI types" msgstr "weitere zulässige URI-Typen hinzufügen" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:228 +#: sources.list.5.xml:222 msgid "" "APT can be extended with more methods shipped in other optional packages, " "which should follow the naming scheme <package>apt-transport-" @@ -7294,7 +7300,7 @@ msgstr "" "Benutzung von debtorrent verfügbar – siehe &apt-transport-debtorrent;." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:240 +#: sources.list.5.xml:234 msgid "" "Uses the archive stored locally (or NFS mounted) at /home/jason/debian for " "stable/main, stable/contrib, and stable/non-free." @@ -7303,37 +7309,37 @@ msgstr "" "jason/debian für stable/main, stable/contrib und stable/non-free." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:242 +#: sources.list.5.xml:236 #, no-wrap msgid "deb file:/home/jason/debian stable main contrib non-free" msgstr "deb file:/home/jason/debian stable main contrib non-free" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:244 +#: sources.list.5.xml:238 msgid "As above, except this uses the unstable (development) distribution." msgstr "" "wie oben, außer das dies die »unstable«- (Entwicklungs-) Distribution " "benutzt." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:245 +#: sources.list.5.xml:239 #, no-wrap msgid "deb file:/home/jason/debian unstable main contrib non-free" msgstr "deb file:/home/jason/debian unstable main contrib non-free" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:247 +#: sources.list.5.xml:241 msgid "Source line for the above" msgstr "Quellzeile für obiges" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:248 +#: sources.list.5.xml:242 #, no-wrap msgid "deb-src file:/home/jason/debian unstable main contrib non-free" msgstr "deb-src file:/home/jason/debian unstable main contrib non-free" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:250 +#: sources.list.5.xml:244 msgid "" "The first line gets package information for the architectures in " "<literal>APT::Architectures</literal> while the second always retrieves " @@ -7344,7 +7350,7 @@ msgstr "" "<literal>amd64</literal> und <literal>armel</literal> holt." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:252 +#: sources.list.5.xml:246 #, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main\n" @@ -7354,7 +7360,7 @@ msgstr "" "deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:255 +#: sources.list.5.xml:249 msgid "" "Uses HTTP to access the archive at archive.debian.org, and uses only the " "hamm/main area." @@ -7363,13 +7369,13 @@ msgstr "" "den hamm/main-Bereich zu benutzen." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:257 +#: sources.list.5.xml:251 #, no-wrap msgid "deb http://archive.debian.org/debian-archive hamm main" msgstr "deb http://archive.debian.org/debian-archive hamm main" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:259 +#: sources.list.5.xml:253 msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the &stable-codename;/contrib area." @@ -7379,13 +7385,13 @@ msgstr "" "benutzen." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:261 +#: sources.list.5.xml:255 #, no-wrap msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib" msgstr "deb ftp://ftp.debian.org/debian &stable-codename; contrib" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:263 +#: sources.list.5.xml:257 msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the unstable/contrib area. If this line appears as " @@ -7399,19 +7405,19 @@ msgstr "" "für beide Quellzeilen benutzt." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:267 +#: sources.list.5.xml:261 #, no-wrap msgid "deb ftp://ftp.debian.org/debian unstable contrib" msgstr "deb ftp://ftp.debian.org/debian unstable contrib" #. type: Content of: <refentry><refsect1><para><literallayout> -#: sources.list.5.xml:276 +#: sources.list.5.xml:270 #, no-wrap msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/" msgstr "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:269 +#: sources.list.5.xml:263 msgid "" "Uses HTTP to access the archive at ftp.tlh.debian.org, under the universe " "directory, and uses only files found under <filename>unstable/binary-i386</" @@ -7431,17 +7437,17 @@ msgstr "" "type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:281 +#: sources.list.5.xml:275 msgid "&apt-cache; &apt-conf;" msgstr "&apt-cache; &apt-conf;" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt-extracttemplates.1.xml:28 apt-sortpkgs.1.xml:28 apt-ftparchive.1.xml:28 +#: apt-extracttemplates.1.xml:22 apt-sortpkgs.1.xml:22 apt-ftparchive.1.xml:22 msgid "1" msgstr "1" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-extracttemplates.1.xml:35 +#: apt-extracttemplates.1.xml:29 msgid "" "Utility to extract <command>debconf</command> config and templates from " "Debian packages" @@ -7450,7 +7456,7 @@ msgstr "" "und Schablonen von Debian-Paketen" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:41 +#: apt-extracttemplates.1.xml:35 msgid "" "<command>apt-extracttemplates</command> will take one or more Debian package " "files as input and write out (to a temporary directory) all associated " @@ -7466,12 +7472,12 @@ msgstr "" "generiert:" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:46 +#: apt-extracttemplates.1.xml:40 msgid "package version template-file config-script" msgstr "Paket Version Schablonendatei Konfigurationsskript" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:47 +#: apt-extracttemplates.1.xml:41 msgid "" "template-file and config-script are written to the temporary directory " "specified by the <option>-t</option> or <option>--tempdir</option> " @@ -7486,7 +7492,7 @@ msgstr "" "<filename>package.config.XXXXXX</filename> angegeben wurde." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-extracttemplates.1.xml:60 +#: apt-extracttemplates.1.xml:54 msgid "" "Temporary directory in which to write extracted <command>debconf</command> " "template files and config scripts. Configuration Item: <literal>APT::" @@ -7497,7 +7503,7 @@ msgstr "" "Konfigurationselement: <literal>APT::ExtractTemplates::TempDir</literal>" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:77 +#: apt-extracttemplates.1.xml:71 msgid "" "<command>apt-extracttemplates</command> returns zero on normal operation, " "decimal 100 on error." @@ -7506,12 +7512,12 @@ msgstr "" "zurück, dezimal 100 bei Fehlern." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-sortpkgs.1.xml:35 +#: apt-sortpkgs.1.xml:29 msgid "Utility to sort package index files" msgstr "Werkzeug zum Sortieren von Paketindexdateien" #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:41 +#: apt-sortpkgs.1.xml:35 msgid "" "<command>apt-sortpkgs</command> will take an index file (source index or " "package index) and sort the records so that they are ordered by the package " @@ -7523,7 +7529,7 @@ msgstr "" "die internen Felder jedes Datensatzes gemäß interner Sortierregeln sortieren." #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:47 +#: apt-sortpkgs.1.xml:41 msgid "" "All output is sent to standard output; the input must be a seekable file." msgstr "" @@ -7531,7 +7537,7 @@ msgstr "" "durchsuchbare Datei sein." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-sortpkgs.1.xml:56 +#: apt-sortpkgs.1.xml:50 msgid "" "Use source index field ordering. Configuration Item: <literal>APT::" "SortPkgs::Source</literal>." @@ -7540,7 +7546,7 @@ msgstr "" "SortPkgs::Source</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:70 +#: apt-sortpkgs.1.xml:64 msgid "" "<command>apt-sortpkgs</command> returns zero on normal operation, decimal " "100 on error." @@ -7549,12 +7555,12 @@ msgstr "" "dezimal 100 bei Fehlern." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-ftparchive.1.xml:35 +#: apt-ftparchive.1.xml:29 msgid "Utility to generate index files" msgstr "Hilfsprogramm zum Generieren von Indexdateien" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:41 +#: apt-ftparchive.1.xml:35 msgid "" "<command>apt-ftparchive</command> is the command line tool that generates " "the index files that APT uses to access a distribution source. The index " @@ -7567,7 +7573,7 @@ msgstr "" "Inhalts dieser Stelle generiert werden." #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:45 +#: apt-ftparchive.1.xml:39 msgid "" "<command>apt-ftparchive</command> is a superset of the &dpkg-scanpackages; " "program, incorporating its entire functionality via the <literal>packages</" @@ -7581,7 +7587,7 @@ msgstr "" "für ein komplettes Archiv zu »skripten«." #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:51 +#: apt-ftparchive.1.xml:45 msgid "" "Internally <command>apt-ftparchive</command> can make use of binary " "databases to cache the contents of a .deb file and it does not rely on any " @@ -7597,7 +7603,7 @@ msgstr "" "Ausgabedateien erzeugt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:62 +#: apt-ftparchive.1.xml:56 msgid "" "The packages command generates a package file from a directory tree. It " "takes the given directory and recursively searches it for .deb files, " @@ -7610,7 +7616,7 @@ msgstr "" "Befehl entspricht etwa &dpkg-scanpackages;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:67 apt-ftparchive.1.xml:91 +#: apt-ftparchive.1.xml:61 apt-ftparchive.1.xml:85 msgid "" "The option <option>--db</option> can be used to specify a binary caching DB." msgstr "" @@ -7618,7 +7624,7 @@ msgstr "" "Zwischenspeichern von Programmen anzugeben." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:72 +#: apt-ftparchive.1.xml:66 msgid "" "The <literal>sources</literal> command generates a source index file from a " "directory tree. It takes the given directory and recursively searches it " @@ -7631,7 +7637,7 @@ msgstr "" "stdout ausgibt. Dieser Befehl entspricht etwa &dpkg-scansources;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:77 +#: apt-ftparchive.1.xml:71 msgid "" "If an override file is specified then a source override file will be looked " "for with an extension of .src. The --source-override option can be used to " @@ -7643,7 +7649,7 @@ msgstr "" "ändern." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:84 +#: apt-ftparchive.1.xml:78 msgid "" "The <literal>contents</literal> command generates a contents file from a " "directory tree. It takes the given directory and recursively searches it " @@ -7661,7 +7667,7 @@ msgstr "" "getrennt in der Ausgabe." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:96 +#: apt-ftparchive.1.xml:90 msgid "" "The <literal>release</literal> command generates a Release file from a " "directory tree. It recursively searches the given directory for uncompressed " @@ -7688,7 +7694,7 @@ msgstr "" "Prüfsumme enthält." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:106 +#: apt-ftparchive.1.xml:100 msgid "" "Values for the additional metadata fields in the Release file are taken from " "the corresponding variables under <literal>APT::FTPArchive::Release</" @@ -7709,7 +7715,7 @@ msgstr "" "<literal>Description</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:119 +#: apt-ftparchive.1.xml:113 msgid "" "The <literal>generate</literal> command is designed to be runnable from a " "cron script and builds indexes according to the given config file. The " @@ -7725,7 +7731,7 @@ msgstr "" "Verwaltung der erforderlichen Einstellungen bereitstellt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:128 +#: apt-ftparchive.1.xml:122 msgid "" "The <literal>clean</literal> command tidies the databases used by the given " "configuration file by removing any records that are no longer necessary." @@ -7735,12 +7741,12 @@ msgstr "" "Datensätze entfernt." #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:134 +#: apt-ftparchive.1.xml:128 msgid "The Generate Configuration" msgstr "Die Generate-Konfiguration" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:136 +#: apt-ftparchive.1.xml:130 msgid "" "The <literal>generate</literal> command uses a configuration file to " "describe the archives that are going to be generated. It follows the typical " @@ -7758,7 +7764,7 @@ msgstr "" "wenn die Markierung »scope« behandelt wird." #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:144 +#: apt-ftparchive.1.xml:138 msgid "" "The generate configuration has four separate sections, each described below." msgstr "" @@ -7766,12 +7772,12 @@ msgstr "" "unterhalb beschrieben" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:146 +#: apt-ftparchive.1.xml:140 msgid "<literal>Dir</literal> Section" msgstr "<literal>Dir</literal>-Abschnitt" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:148 +#: apt-ftparchive.1.xml:142 msgid "" "The <literal>Dir</literal> section defines the standard directories needed " "to locate the files required during the generation process. These " @@ -7785,7 +7791,7 @@ msgstr "" "absoluten Pfad zu bilden." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:155 +#: apt-ftparchive.1.xml:149 msgid "" "Specifies the root of the FTP archive, in a standard Debian configuration " "this is the directory that contains the <filename>ls-LR</filename> and dist " @@ -7796,17 +7802,17 @@ msgstr "" "enthält." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:162 +#: apt-ftparchive.1.xml:156 msgid "Specifies the location of the override files." msgstr "gibt den Ort der Override-Dateien an" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:167 +#: apt-ftparchive.1.xml:161 msgid "Specifies the location of the cache files." msgstr "gibt den Ort der Zwischenspeicherdateien an" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:172 +#: apt-ftparchive.1.xml:166 msgid "" "Specifies the location of the file list files, if the <literal>FileList</" "literal> setting is used below." @@ -7815,12 +7821,12 @@ msgstr "" "unterhalb gesetzt ist." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:178 +#: apt-ftparchive.1.xml:172 msgid "<literal>Default</literal> Section" msgstr "<literal>Default</literal>-Abschnitt" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:180 +#: apt-ftparchive.1.xml:174 msgid "" "The <literal>Default</literal> section specifies default values, and " "settings that control the operation of the generator. Other sections may " @@ -7831,7 +7837,7 @@ msgstr "" "können diese Vorgaben mit einer Einstellung pro Abschnitt überschreiben." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:186 +#: apt-ftparchive.1.xml:180 msgid "" "Sets the default compression schemes to use for the package index files. It " "is a string that contains a space separated list of at least one of: '.' (no " @@ -7845,7 +7851,7 @@ msgstr "" "ist ». gzip«." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:194 +#: apt-ftparchive.1.xml:188 msgid "" "Sets the default list of file extensions that are package files. This " "defaults to '.deb'." @@ -7854,7 +7860,7 @@ msgstr "" "Vorgabe ist ».deb«." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:200 +#: apt-ftparchive.1.xml:194 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Sources files." @@ -7863,7 +7869,7 @@ msgstr "" "Kompression der Quelldateien steuert." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:206 +#: apt-ftparchive.1.xml:200 msgid "" "Sets the default list of file extensions that are source files. This " "defaults to '.dsc'." @@ -7872,7 +7878,7 @@ msgstr "" "Vorgabe ist ».dsc«." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:212 +#: apt-ftparchive.1.xml:206 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Contents files." @@ -7881,7 +7887,7 @@ msgstr "" "Kompression der Inhaltsdateien steuert." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:218 +#: apt-ftparchive.1.xml:212 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Translation-en master file." @@ -7890,7 +7896,7 @@ msgstr "" "Kompression der Translation-en-Hauptdatei steuert." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:224 +#: apt-ftparchive.1.xml:218 msgid "" "Specifies the number of kilobytes to delink (and replace with hard links) " "per run. This is used in conjunction with the per-section <literal>External-" @@ -7901,7 +7907,7 @@ msgstr "" "<literal>External-Links</literal>-Einstellung pro Abschnitt benutzt." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:231 +#: apt-ftparchive.1.xml:225 msgid "" "Specifies the mode of all created index files. It defaults to 0644. All " "index files are set to this mode with no regard to the umask." @@ -7910,7 +7916,7 @@ msgstr "" "Indexdateien werden ohne Beachtung von umask auf diese Rechte gesetzt." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:238 apt-ftparchive.1.xml:384 +#: apt-ftparchive.1.xml:232 apt-ftparchive.1.xml:378 msgid "" "Specifies whether long descriptions should be included in the " "<filename>Packages</filename> file or split out into a master " @@ -7921,12 +7927,12 @@ msgstr "" "Hauptdatei unterteilt werden sollen" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:244 +#: apt-ftparchive.1.xml:238 msgid "<literal>TreeDefault</literal> Section" msgstr "<literal>TreeDefault</literal>-Abschnitt" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:246 +#: apt-ftparchive.1.xml:240 msgid "" "Sets defaults specific to <literal>Tree</literal> sections. All of these " "variables are substitution variables and have the strings $(DIST), " @@ -7937,7 +7943,7 @@ msgstr "" "$(SECTION) und $(ARCH) durch ihre jeweiligen Werte ersetzt." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:253 +#: apt-ftparchive.1.xml:247 msgid "" "Sets the number of kilobytes of contents files that are generated each day. " "The contents files are round-robined so that over several days they will all " @@ -7948,7 +7954,7 @@ msgstr "" "Tage alle neu gebildet werden." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:260 +#: apt-ftparchive.1.xml:254 msgid "" "Controls the number of days a contents file is allowed to be checked without " "changing. If this limit is passed the mtime of the contents file is updated. " @@ -7966,7 +7972,7 @@ msgstr "" "eine neue Datei benötigen. Die Vorgabe ist 10, die Einheiten sind Tage." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:271 +#: apt-ftparchive.1.xml:265 msgid "" "Sets the top of the .deb directory tree. Defaults to <filename>$(DIST)/" "$(SECTION)/binary-$(ARCH)/</filename>" @@ -7975,7 +7981,7 @@ msgstr "" "$(SECTION)/binary-$(ARCH)/</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:277 +#: apt-ftparchive.1.xml:271 msgid "" "Sets the top of the source package directory tree. Defaults to <filename>" "$(DIST)/$(SECTION)/source/</filename>" @@ -7984,7 +7990,7 @@ msgstr "" "$(DIST)/$(SECTION)/source/</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:283 +#: apt-ftparchive.1.xml:277 msgid "" "Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/" "binary-$(ARCH)/Packages</filename>" @@ -7993,7 +7999,7 @@ msgstr "" "binary-$(ARCH)/Packages</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:289 +#: apt-ftparchive.1.xml:283 msgid "" "Sets the output Sources file. Defaults to <filename>$(DIST)/$(SECTION)/" "source/Sources</filename>" @@ -8002,7 +8008,7 @@ msgstr "" "source/Sources</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:295 +#: apt-ftparchive.1.xml:289 msgid "" "Sets the output Translation-en master file with the long descriptions if " "they should be not included in the Packages file. Defaults to <filename>" @@ -8013,7 +8019,7 @@ msgstr "" "ist <filename>$(DIST)/$(SECTION)/i18n/Translation-en</filename>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:302 +#: apt-ftparchive.1.xml:296 msgid "" "Sets the path prefix that causes a symlink to be considered an internal link " "instead of an external link. Defaults to <filename>$(DIST)/$(SECTION)/</" @@ -8024,7 +8030,7 @@ msgstr "" "<filename>$(DIST)/$(SECTION)/</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:309 +#: apt-ftparchive.1.xml:303 msgid "" "Sets the output Contents file. Defaults to <filename>$(DIST)/$(SECTION)/" "Contents-$(ARCH)</filename>. If this setting causes multiple Packages files " @@ -8039,12 +8045,12 @@ msgstr "" "automatisch integrieren." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:318 +#: apt-ftparchive.1.xml:312 msgid "Sets header file to prepend to the contents output." msgstr "setzt die Kopfdatendatei, um sie der Inhaltsausgabe voranzustellen." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:323 +#: apt-ftparchive.1.xml:317 msgid "" "Sets the binary cache database to use for this section. Multiple sections " "can share the same database." @@ -8053,7 +8059,7 @@ msgstr "" "Abschnitt. Mehrere Abschnitte können sich die gleiche Datenbank teilen." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:329 +#: apt-ftparchive.1.xml:323 msgid "" "Specifies that instead of walking the directory tree, <command>apt-" "ftparchive</command> should read the list of files from the given file. " @@ -8064,7 +8070,7 @@ msgstr "" "Relativen Dateinamen wird das Archivverzeichnis vorangestellt." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:336 +#: apt-ftparchive.1.xml:330 msgid "" "Specifies that instead of walking the directory tree, <command>apt-" "ftparchive</command> should read the list of files from the given file. " @@ -8077,12 +8083,12 @@ msgstr "" "benutzt, wenn Quellindizes verarbeitet werden." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:344 +#: apt-ftparchive.1.xml:338 msgid "<literal>Tree</literal> Section" msgstr "<literal>Tree</literal>-Abschnitt" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:346 +#: apt-ftparchive.1.xml:340 msgid "" "The <literal>Tree</literal> section defines a standard Debian file tree " "which consists of a base directory, then multiple sections in that base " @@ -8097,7 +8103,7 @@ msgstr "" "<literal>Directory</literal>-Ersetzungsvariable definiert." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:351 +#: apt-ftparchive.1.xml:345 msgid "" "The <literal>Tree</literal> section takes a scope tag which sets the " "<literal>$(DIST)</literal> variable and defines the root of the tree (the " @@ -8111,7 +8117,7 @@ msgstr "" "codename;</filename>." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:356 +#: apt-ftparchive.1.xml:350 msgid "" "All of the settings defined in the <literal>TreeDefault</literal> section " "can be used in a <literal>Tree</literal> section as well as three new " @@ -8122,7 +8128,7 @@ msgstr "" "Variablen benutzt werden." #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt-ftparchive.1.xml:362 +#: apt-ftparchive.1.xml:356 #, no-wrap msgid "" "for i in Sections do \n" @@ -8136,7 +8142,7 @@ msgstr "" " " #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:359 +#: apt-ftparchive.1.xml:353 msgid "" "When processing a <literal>Tree</literal> section <command>apt-ftparchive</" "command> performs an operation similar to: <placeholder type=\"programlisting" @@ -8147,7 +8153,7 @@ msgstr "" "<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:370 +#: apt-ftparchive.1.xml:364 msgid "" "This is a space separated list of sections which appear under the " "distribution; typically this is something like <literal>main contrib non-" @@ -8158,7 +8164,7 @@ msgstr "" "non-free</literal>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:377 +#: apt-ftparchive.1.xml:371 msgid "" "This is a space separated list of all the architectures that appear under " "search section. The special architecture 'source' is used to indicate that " @@ -8169,7 +8175,7 @@ msgstr "" "benutzt, um anzugeben, dass dieser Baum ein Quellarchiv besitzt." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:390 +#: apt-ftparchive.1.xml:384 msgid "" "Sets the binary override file. The override file contains section, priority " "and maintainer address information." @@ -8178,7 +8184,7 @@ msgstr "" "Priorität und Adressinformationen des Betreuers." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:396 +#: apt-ftparchive.1.xml:390 msgid "" "Sets the source override file. The override file contains section " "information." @@ -8187,22 +8193,22 @@ msgstr "" "Abschnittsinformationen." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:402 apt-ftparchive.1.xml:448 +#: apt-ftparchive.1.xml:396 apt-ftparchive.1.xml:442 msgid "Sets the binary extra override file." msgstr "setzt die zusätzliche Programm-Override-Datei" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:407 apt-ftparchive.1.xml:453 +#: apt-ftparchive.1.xml:401 apt-ftparchive.1.xml:447 msgid "Sets the source extra override file." msgstr "setzt die zusätzliche Quell-Override-Datei" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:412 +#: apt-ftparchive.1.xml:406 msgid "<literal>BinDirectory</literal> Section" msgstr "<literal>BinDirectory</literal>-Abschnitt" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:414 +#: apt-ftparchive.1.xml:408 msgid "" "The <literal>bindirectory</literal> section defines a binary directory tree " "with no special structure. The scope tag specifies the location of the " @@ -8217,12 +8223,12 @@ msgstr "" "<literal>Abschnitt</literal><literal>Architektur</literal> ähnlich." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:422 +#: apt-ftparchive.1.xml:416 msgid "Sets the Packages file output." msgstr "setzt die Packages-Dateiausgabe" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:427 +#: apt-ftparchive.1.xml:421 msgid "" "Sets the Sources file output. At least one of <literal>Packages</literal> or " "<literal>Sources</literal> is required." @@ -8231,42 +8237,42 @@ msgstr "" "<literal>Sources</literal> ist erforderlich." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:433 +#: apt-ftparchive.1.xml:427 msgid "Sets the Contents file output (optional)." msgstr "setzt die Contents-Dateiausgabe (optional)" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:438 +#: apt-ftparchive.1.xml:432 msgid "Sets the binary override file." msgstr "setzt die Programm-Override-Datei" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:443 +#: apt-ftparchive.1.xml:437 msgid "Sets the source override file." msgstr "setzt die Quell-Override-Datei" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:458 +#: apt-ftparchive.1.xml:452 msgid "Sets the cache DB." msgstr "setzt die Zwischenspeicherdatenbank" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:463 +#: apt-ftparchive.1.xml:457 msgid "Appends a path to all the output paths." msgstr "hängt einen Pfad an alle Ausgabepfade an" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:468 +#: apt-ftparchive.1.xml:462 msgid "Specifies the file list file." msgstr "gibt die Dateilistendatei an" #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:475 +#: apt-ftparchive.1.xml:469 msgid "The Binary Override File" msgstr "Die Programm-Override-Datei" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:476 +#: apt-ftparchive.1.xml:470 msgid "" "The binary override file is fully compatible with &dpkg-scanpackages;. It " "contains four fields separated by spaces. The first field is the package " @@ -8281,19 +8287,19 @@ msgstr "" "und das letzte Feld ist das Betreuerumsetzungsfeld." #. type: Content of: <refentry><refsect1><para><literallayout> -#: apt-ftparchive.1.xml:482 +#: apt-ftparchive.1.xml:476 #, no-wrap msgid "old [// oldn]* => new" msgstr "alt [// oldn]* => neu" #. type: Content of: <refentry><refsect1><para><literallayout> -#: apt-ftparchive.1.xml:484 +#: apt-ftparchive.1.xml:478 #, no-wrap msgid "new" msgstr "neu" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:481 +#: apt-ftparchive.1.xml:475 msgid "" "The general form of the maintainer field is: <placeholder type=" "\"literallayout\" id=\"0\"/> or simply, <placeholder type=\"literallayout\" " @@ -8310,12 +8316,12 @@ msgstr "" "bedingungslos." #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:492 +#: apt-ftparchive.1.xml:486 msgid "The Source Override File" msgstr "Die Quell-Override-Datei" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:494 +#: apt-ftparchive.1.xml:488 msgid "" "The source override file is fully compatible with &dpkg-scansources;. It " "contains two fields separated by spaces. The first field is the source " @@ -8326,12 +8332,12 @@ msgstr "" "Quellpaketname, das zweite ist der Abschnitt, dem er zugeordnet ist." #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:499 +#: apt-ftparchive.1.xml:493 msgid "The Extra Override File" msgstr "Die zusätzlich Override-Datei" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:501 +#: apt-ftparchive.1.xml:495 msgid "" "The extra override file allows any arbitrary tag to be added or replaced in " "the output. It has three columns, the first is the package, the second is " @@ -8343,7 +8349,7 @@ msgstr "" "ist der neue Wert." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:512 +#: apt-ftparchive.1.xml:506 msgid "" "Generate the given checksum. These options default to on, when turned off " "the generated index files will not have the checksum fields where possible. " @@ -8368,7 +8374,7 @@ msgstr "" "literal> sein kann." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:523 +#: apt-ftparchive.1.xml:517 msgid "" "Use a binary caching DB. This has no effect on the generate command. " "Configuration Item: <literal>APT::FTPArchive::DB</literal>." @@ -8378,7 +8384,7 @@ msgstr "" "DB</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:529 +#: apt-ftparchive.1.xml:523 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quiet up to a maximum of 2. You can also use " @@ -8392,7 +8398,7 @@ msgstr "" "Konfigurationselement: <literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:537 +#: apt-ftparchive.1.xml:531 msgid "" "Perform Delinking. If the <literal>External-Links</literal> setting is used " "then this option actually enables delinking of the files. It defaults to on " @@ -8406,7 +8412,7 @@ msgstr "" "DeLinkAct</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:545 +#: apt-ftparchive.1.xml:539 msgid "" "Perform contents generation. When this option is set and package indexes are " "being generated with a cache DB then the file listing will also be extracted " @@ -8422,7 +8428,7 @@ msgstr "" "Konfigurationselement: <literal>APT::FTPArchive::Contents</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:555 +#: apt-ftparchive.1.xml:549 msgid "" "Select the source override file to use with the <literal>sources</literal> " "command. Configuration Item: <literal>APT::FTPArchive::SourceOverride</" @@ -8433,7 +8439,7 @@ msgstr "" "SourceOverride</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:561 +#: apt-ftparchive.1.xml:555 msgid "" "Make the caching databases read only. Configuration Item: <literal>APT::" "FTPArchive::ReadOnlyDB</literal>." @@ -8442,7 +8448,7 @@ msgstr "" "<literal>APT::FTPArchive::ReadOnlyDB</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:566 +#: apt-ftparchive.1.xml:560 msgid "" "Accept in the <literal>packages</literal> and <literal>contents</literal> " "commands only package files matching <literal>*_arch.deb</literal> or " @@ -8456,7 +8462,7 @@ msgstr "" "FTPArchive::Architecture</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:574 +#: apt-ftparchive.1.xml:568 msgid "" "&apt-ftparchive; caches as much as possible of metadata in a cachedb. If " "packages are recompiled and/or republished with the same version again, this " @@ -8480,7 +8486,7 @@ msgstr "" "haben sollte und all diese zusätzlichen Prüfungen daher nutzlos sind." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:586 +#: apt-ftparchive.1.xml:580 msgid "" "This configuration option defaults to \"<literal>true</literal>\" and should " "only be set to <literal>\"false\"</literal> if the Archive generated with " @@ -8496,13 +8502,13 @@ msgstr "" "werden kann." #. type: Content of: <refentry><refsect1><para><programlisting> -#: apt-ftparchive.1.xml:604 +#: apt-ftparchive.1.xml:598 #, no-wrap msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" msgstr "<command>apt-ftparchive</command> Pakete <replaceable>Verzeichnis</replaceable> | <command>gzip</command> > <filename>Pakete.gz</filename>\n" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:600 +#: apt-ftparchive.1.xml:594 msgid "" "To create a compressed Packages file for a directory containing binary " "packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>" @@ -8512,7 +8518,7 @@ msgstr "" ">" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:614 +#: apt-ftparchive.1.xml:608 msgid "" "<command>apt-ftparchive</command> returns zero on normal operation, decimal " "100 on error." @@ -8521,32 +8527,32 @@ msgstr "" "dezimal 100 bei Fehlern." #. type: Attribute 'lang' of: <book> -#: guide.dbk:8 offline.dbk:8 +#: guide.dbk:9 offline.dbk:9 msgid "en" msgstr "de" #. type: Content of: <book><title> -#: guide.dbk:10 +#: guide.dbk:11 msgid "APT User's Guide" msgstr "APT-Benutzerhandbuch" #. type: Content of: <book><bookinfo><authorgroup><author><personname> -#: guide.dbk:16 offline.dbk:16 +#: guide.dbk:17 offline.dbk:17 msgid "Jason Gunthorpe" msgstr "Jason Gunthorpe" #. type: Content of: <book><bookinfo><authorgroup><author><email> -#: guide.dbk:16 offline.dbk:16 +#: guide.dbk:17 offline.dbk:17 msgid "jgg@debian.org" msgstr "jgg@debian.org" #. type: Content of: <book><bookinfo><releaseinfo> -#: guide.dbk:20 offline.dbk:20 +#: guide.dbk:21 offline.dbk:21 msgid "Version &apt-product-version;" msgstr "" #. type: Content of: <book><bookinfo><abstract><para> -#: guide.dbk:24 +#: guide.dbk:25 msgid "" "This document provides an overview of how to use the the APT package manager." msgstr "" @@ -8554,19 +8560,19 @@ msgstr "" "Paketverwaltungsprogramm benutzt wird." #. type: Content of: <book><bookinfo> -#: guide.dbk:28 +#: guide.dbk:29 msgid "" "<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" msgstr "" "<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" #. type: Content of: <book><bookinfo><legalnotice><title> -#: guide.dbk:31 offline.dbk:32 +#: guide.dbk:32 offline.dbk:33 msgid "License Notice" msgstr "" #. type: Content of: <book><bookinfo><legalnotice><para> -#: guide.dbk:33 offline.dbk:34 +#: guide.dbk:34 offline.dbk:35 msgid "" "\"APT\" and this document are free software; you can redistribute them and/" "or modify them under the terms of the GNU General Public License as " @@ -8579,7 +8585,7 @@ msgstr "" "der Lizenz oder (optional) jeder späteren Version." #. type: Content of: <book><bookinfo><legalnotice><para> -#: guide.dbk:42 offline.dbk:40 +#: guide.dbk:43 offline.dbk:41 msgid "" "For more details, on Debian systems, see the file /usr/share/common-licenses/" "GPL for the full license." @@ -8588,12 +8594,12 @@ msgstr "" "licenses/GPL, die die vollständige Lizenz enthält." #. type: Content of: <book><chapter><title> -#: guide.dbk:49 +#: guide.dbk:50 msgid "General" msgstr "Allgemein" #. type: Content of: <book><chapter><para> -#: guide.dbk:51 +#: guide.dbk:52 msgid "" "The APT package currently contains two sections, the APT <command>dselect</" "command> method and the <command>apt-get</command> command line user " @@ -8607,12 +8613,12 @@ msgstr "" "herunterzuladen." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:57 +#: guide.dbk:58 msgid "Anatomy of the Package System" msgstr "Anatomie des Paketsystems" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:59 +#: guide.dbk:60 msgid "" "The Debian packaging system has a large amount of information associated " "with each package to help assure that it integrates cleanly and easily into " @@ -8624,7 +8630,7 @@ msgstr "" "Funktionen ist das Abhängigkeitssystem." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:64 +#: guide.dbk:65 msgid "" "The dependency system allows individual programs to make use of shared " "elements in the system such as libraries. It simplifies placing infrequently " @@ -8640,7 +8646,7 @@ msgstr "" "von Mail-Transport-Agenten, X-Servern und so weiter." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:71 +#: guide.dbk:72 msgid "" "The first step to understanding the dependency system is to grasp the " "concept of a simple dependency. The meaning of a simple dependency is that a " @@ -8654,7 +8660,7 @@ msgstr "" "funktionieren." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:76 +#: guide.dbk:77 msgid "" "For instance, mailcrypt is an emacs extension that aids in encrypting email " "with GPG. Without GPGP installed mailcrypt is useless, so mailcrypt has a " @@ -8668,7 +8674,7 @@ msgstr "" "Emacs. Ohne Emacs ist es komplett unbenutzbar." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:82 +#: guide.dbk:83 msgid "" "The other important dependency to understand is a conflicting dependency. It " "means that a package, when installed with another package, will not work and " @@ -8691,7 +8697,7 @@ msgstr "" "haben." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:92 +#: guide.dbk:93 msgid "" "As an added complication there is the possibility for a package to pretend " "to be another package. Consider that exim and sendmail for many intents are " @@ -8713,7 +8719,7 @@ msgstr "" "Verwirrung führen, wenn manuell versucht wird, Pakete zu reparieren." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:102 +#: guide.dbk:103 msgid "" "At any given time a single dependency may be met by packages that are " "already installed or it may not be. APT attempts to help resolve dependency " @@ -8727,12 +8733,12 @@ msgstr "" "helfen." #. type: Content of: <book><chapter><title> -#: guide.dbk:111 +#: guide.dbk:112 msgid "apt-get" msgstr "apt-get" #. type: Content of: <book><chapter><para> -#: guide.dbk:113 +#: guide.dbk:114 msgid "" "<command>apt-get</command> provides a simple way to install packages from " "the command line. Unlike <command>dpkg</command>, <command>apt-get</command> " @@ -8746,7 +8752,7 @@ msgstr "" "<emphasis>Quelle</emphasis> installieren." #. type: Content of: <book><chapter><para><footnote><para> -#: guide.dbk:119 +#: guide.dbk:120 msgid "" "If you are using an http proxy server you must set the http_proxy " "environment variable first, see sources.list(5)" @@ -8755,7 +8761,7 @@ msgstr "" "Umgebungsvariable »http_proxy« setzen, siehe sources.list(5)" #. type: Content of: <book><chapter><para> -#: guide.dbk:119 +#: guide.dbk:120 msgid "" "The first <placeholder type=\"footnote\" id=\"0\"/> thing that should be " "done before using <command>apt-get</command> is to fetch the package lists " @@ -8769,7 +8775,7 @@ msgstr "" "literal> erledigt. Zum Beispiel," #. type: Content of: <book><chapter><screen> -#: guide.dbk:127 +#: guide.dbk:128 #, no-wrap msgid "" "# apt-get update\n" @@ -8785,17 +8791,17 @@ msgstr "" "Abhängigkeitsbaum wird aufgebaut … Fertig\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:134 +#: guide.dbk:135 msgid "Once updated there are several commands that can be used:" msgstr "Einmal aktualisiert stehen mehrere Befehl zur Benutzung zur Verfügung:" #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:138 +#: guide.dbk:139 msgid "upgrade" msgstr "upgrade" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:141 +#: guide.dbk:142 msgid "" "Upgrade will attempt to gently upgrade the whole system. Upgrade will never " "install a new package or remove an existing package, nor will it ever " @@ -8818,12 +8824,12 @@ msgstr "" "Paketen zu erzwingen." #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:153 +#: guide.dbk:154 msgid "install" msgstr "install" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:156 +#: guide.dbk:157 msgid "" "Install is used to install packages by name. The package is automatically " "fetched and installed. This can be useful if you already know the name of " @@ -8843,12 +8849,12 @@ msgstr "" "fragen, wenn sich etwas anderes als dessen Argumente ändert." #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:167 +#: guide.dbk:168 msgid "dist-upgrade" msgstr "dist-upgrade" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:170 +#: guide.dbk:171 msgid "" "Dist-upgrade is a complete upgrader designed to simplify upgrading between " "releases of Debian. It uses a sophisticated algorithm to determine the best " @@ -8871,7 +8877,7 @@ msgstr "" "die außen vor geblieben sind." #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:180 +#: guide.dbk:181 msgid "" "It is important to closely look at what dist-upgrade is going to do, its " "decisions may sometimes be quite surprising." @@ -8881,7 +8887,7 @@ msgstr "" # s/package/packages/ #. type: Content of: <book><chapter><para> -#: guide.dbk:187 +#: guide.dbk:188 msgid "" "<command>apt-get</command> has several command line options that are " "detailed in its man page, <citerefentry><refentrytitle>apt-get</" @@ -8905,12 +8911,12 @@ msgstr "" "veranlasste, erneut ohne <literal>-d</literal> ausgeführt wird." #. type: Content of: <book><chapter><title> -#: guide.dbk:199 +#: guide.dbk:200 msgid "DSelect" msgstr "DSelect" #. type: Content of: <book><chapter><para> -#: guide.dbk:201 +#: guide.dbk:202 msgid "" "The APT <command>dselect</command> method provides the complete APT system " "with the <command>dselect</command> package selection GUI. <command>dselect</" @@ -8923,7 +8929,7 @@ msgstr "" "Entfernen auszuwählen und APT installiert sie tatsächlich." #. type: Content of: <book><chapter><para> -#: guide.dbk:207 +#: guide.dbk:208 msgid "" "To enable the APT method you need to select [A]ccess in <command>dselect</" "command> and then choose the APT method. You will be prompted for a set of " @@ -8948,7 +8954,7 @@ msgstr "" "dem Internet herunterlädt." #. type: Content of: <book><chapter><screen> -#: guide.dbk:218 +#: guide.dbk:219 #, no-wrap msgid "" " Set up a list of distribution source locations\n" @@ -8978,7 +8984,7 @@ msgstr "" " URL [http://llug.sep.bnl.gov/debian]:\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:232 +#: guide.dbk:233 msgid "" "The <emphasis>Sources</emphasis> setup starts by asking for the base of the " "Debian archive, defaulting to a HTTP mirror. Next it asks for the " @@ -8989,7 +8995,7 @@ msgstr "" "wird nach der zu erhaltenden Distribution gefragt." #. type: Content of: <book><chapter><screen> -#: guide.dbk:237 +#: guide.dbk:238 #, no-wrap msgid "" " Please give the distribution tag to get or a path to the\n" @@ -9005,7 +9011,7 @@ msgstr "" " Distribution [stable]:\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:244 +#: guide.dbk:245 msgid "" "The distribution refers to the Debian version in the archive, " "<emphasis>stable</emphasis> refers to the latest released version and " @@ -9025,7 +9031,7 @@ msgstr "" "importieren ist jedoch legal." #. type: Content of: <book><chapter><screen> -#: guide.dbk:253 +#: guide.dbk:254 #, no-wrap msgid "" " Please give the components to get\n" @@ -9039,7 +9045,7 @@ msgstr "" " Komponenten [main contrib non-free]:\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:259 +#: guide.dbk:260 msgid "" "The components list refers to the list of sub distributions to fetch. The " "distribution is split up based on software licenses, main being DFSG free " @@ -9053,7 +9059,7 @@ msgstr "" "in ihrer Benutzung und ihren Vertrieb haben." #. type: Content of: <book><chapter><para> -#: guide.dbk:265 +#: guide.dbk:266 msgid "" "Any number of sources can be added, the setup script will continue to prompt " "until you have specified all that you want." @@ -9063,7 +9069,7 @@ msgstr "" "möchten." #. type: Content of: <book><chapter><para> -#: guide.dbk:269 +#: guide.dbk:270 msgid "" "Before starting to use <command>dselect</command> it is necessary to update " "the available list by selecting [U]pdate from the menu. This is a superset " @@ -9079,7 +9085,7 @@ msgstr "" "<literal>apt-get update</literal> ausgeführt wurde." #. type: Content of: <book><chapter><para> -#: guide.dbk:276 +#: guide.dbk:277 msgid "" "You can then go on and make your selections using [S]elect and then perform " "the installation using [I]nstall. When using the APT method the [C]onfig and " @@ -9092,7 +9098,7 @@ msgstr "" "Befehl [I]nstall. führt beides gleichermaßen aus." #. type: Content of: <book><chapter><para> -#: guide.dbk:282 +#: guide.dbk:283 msgid "" "By default APT will automatically remove the package (.deb) files once they " "have been successfully installed. To change this behavior place " @@ -9103,12 +9109,12 @@ msgstr "" "Sie <literal>Dselect::clean \"prompt\";</literal> in /etc/apt/apt.conf." #. type: Content of: <book><chapter><title> -#: guide.dbk:288 +#: guide.dbk:289 msgid "The Interface" msgstr "Die Schnittstelle" #. type: Content of: <book><chapter><para><footnote><para> -#: guide.dbk:292 +#: guide.dbk:293 msgid "" "The <command>dselect</command> method actually is a set of wrapper scripts " "to <command>apt-get</command>. The method actually provides more " @@ -9120,7 +9126,7 @@ msgstr "" "allein vorhanden sind." #. type: Content of: <book><chapter><para> -#: guide.dbk:290 +#: guide.dbk:291 msgid "" "Both that APT <command>dselect</command> method and <command>apt-get</" "command> share the same interface. It is a simple system that generally " @@ -9138,12 +9144,12 @@ msgstr "" "wieviel noch zu tun ist." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:301 +#: guide.dbk:302 msgid "Startup" msgstr "Anfang" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:303 +#: guide.dbk:304 msgid "" "Before all operations except update, APT performs a number of actions to " "prepare its internal state. It also does some checks of the system's state. " @@ -9156,7 +9162,7 @@ msgstr "" "Ausführung von <literal>apt-get check</literal> durchgeführt werden." #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:309 +#: guide.dbk:310 #, no-wrap msgid "" "# apt-get check\n" @@ -9168,7 +9174,7 @@ msgstr "" "Abhängigkeitsbaum wird aufgebaut … Fertig\n" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:314 +#: guide.dbk:315 msgid "" "The first thing it does is read all the package files into memory. APT uses " "a caching scheme so this operation will be faster the second time it is run. " @@ -9182,7 +9188,7 @@ msgstr "" "Warnung ausgegeben." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:320 +#: guide.dbk:321 msgid "" "The final operation performs a detailed analysis of the system's " "dependencies. It checks every dependency of every installed or unpacked " @@ -9196,7 +9202,7 @@ msgstr "" "command> wird die Ausführung verweigern." #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:326 +#: guide.dbk:327 #, no-wrap msgid "" "# apt-get check\n" @@ -9233,7 +9239,7 @@ msgstr "" " libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1)\n" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:343 +#: guide.dbk:344 msgid "" "In this example the system has many problems, including a serious problem " "with libreadlineg2. For each package that has unmet dependencies a line is " @@ -9248,7 +9254,7 @@ msgstr "" "Erklärung, warum das Paket ein Abhängigkeitsproblem hat, ist inbegriffen." #. type: Content of: <book><chapter><section><para><footnote><para> -#: guide.dbk:352 +#: guide.dbk:353 msgid "" "APT however considers all known dependencies and attempts to prevent broken " "packages" @@ -9257,7 +9263,7 @@ msgstr "" "kaputte Pakete zu vermeiden" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:350 +#: guide.dbk:351 msgid "" "There are two ways a system can get into a broken state like this. The first " "is caused by <command>dpkg</command> missing some subtle relationships " @@ -9275,7 +9281,7 @@ msgstr "" "ihm Abhängigen installiert sind." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:359 +#: guide.dbk:360 msgid "" "The second situation is much less serious than the first because APT places " "certain constraints on the order that packages are installed. In both cases " @@ -9294,7 +9300,7 @@ msgstr "" "gescheiterten Betreuerskripten." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:368 +#: guide.dbk:369 msgid "" "However, if the <literal>-f</literal> option is used to correct a seriously " "broken system caused by the first case then it is possible that it will " @@ -9311,12 +9317,12 @@ msgstr "" "fortzufahren." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:376 +#: guide.dbk:377 msgid "The Status Report" msgstr "Der Statusbericht" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:378 +#: guide.dbk:379 msgid "" "Before proceeding <command>apt-get</command> will present a report on what " "will happen. Generally the report reflects the type of operation being " @@ -9333,12 +9339,12 @@ msgstr "" "andere relevante Aktivitäten zum Befehl, der ausgeführt wird." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:385 +#: guide.dbk:386 msgid "The Extra Package list" msgstr "Die zusätzliche Paketliste" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:387 +#: guide.dbk:388 #, no-wrap msgid "" "The following extra packages will be installed:\n" @@ -9356,7 +9362,7 @@ msgstr "" " ssh\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:395 +#: guide.dbk:396 msgid "" "The Extra Package list shows all of the packages that will be installed or " "upgraded in excess of the ones mentioned on the command line. It is only " @@ -9370,12 +9376,12 @@ msgstr "" "automatischen Installation." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:402 +#: guide.dbk:403 msgid "The Packages to Remove" msgstr "Die zu entfernenden Pakete" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:404 +#: guide.dbk:405 #, no-wrap msgid "" "The following packages will be REMOVED:\n" @@ -9391,7 +9397,7 @@ msgstr "" " nas xpilot xfig\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:411 +#: guide.dbk:412 msgid "" "The Packages to Remove list shows all of the packages that will be removed " "from the system. It can be shown for any of the operations and should be " @@ -9411,12 +9417,12 @@ msgstr "" "sind, möglicherweise aufgrund einer abgebrochenen Installation." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:421 +#: guide.dbk:422 msgid "The New Packages list" msgstr "Die Liste neuer Pakete" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:423 +#: guide.dbk:424 #, no-wrap msgid "" "The following NEW packages will installed:\n" @@ -9426,7 +9432,7 @@ msgstr "" " zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:427 +#: guide.dbk:428 msgid "" "The New Packages list is simply a reminder of what will happen. The packages " "listed are not presently installed in the system but will be when APT is " @@ -9437,12 +9443,12 @@ msgstr "" "es aber sein, wenn APT fertig ist." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:432 +#: guide.dbk:433 msgid "The Kept Back list" msgstr "Die Liste zurückgehaltener Pakete" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:434 +#: guide.dbk:435 #, no-wrap msgid "" "The following packages have been kept back\n" @@ -9454,7 +9460,7 @@ msgstr "" " gs snmp arena lynx xpat2 groff xscreensaver\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:439 +#: guide.dbk:440 msgid "" "Whenever the whole system is being upgraded there is the possibility that " "new versions of packages cannot be installed because they require new things " @@ -9472,12 +9478,12 @@ msgstr "" "indem <command>dselect</command> zum Lösen ihrer Probleme benutzt wird." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:448 +#: guide.dbk:449 msgid "Held Packages warning" msgstr "Warnung wegen zurückgehaltener Pakete" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:450 +#: guide.dbk:451 #, no-wrap msgid "" "The following held packages will be changed:\n" @@ -9487,7 +9493,7 @@ msgstr "" " cvs\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:454 +#: guide.dbk:455 msgid "" "Sometimes you can ask APT to install a package that is on hold, in such a " "case it prints out a warning that the held package is going to be changed. " @@ -9499,12 +9505,12 @@ msgstr "" "oder »Install« vorkommen." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:460 +#: guide.dbk:461 msgid "Final summary" msgstr "Abschließende Zusammenfassung" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:462 +#: guide.dbk:463 msgid "" "Finally, APT will print out a summary of all the changes that will occur." msgstr "" @@ -9512,7 +9518,7 @@ msgstr "" "auftreten werden." #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:465 +#: guide.dbk:466 #, no-wrap msgid "" "206 packages upgraded, 8 newly installed, 23 to remove and 51 not upgraded.\n" @@ -9524,7 +9530,7 @@ msgstr "" "Muss 65,7MB/66,7MB an Archiven herunterladen. Nach dem Entpacken werden 26,5MB zusätzlich belegt sein.\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:470 +#: guide.dbk:471 msgid "" "The first line of the summary simply is a reduced version of all of the " "lists and includes the number of upgrades - that is packages already " @@ -9555,7 +9561,7 @@ msgstr "" "wird, dann kann der Wert den Betrag des freiwerdenden Speichers anzeigen." #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:484 +#: guide.dbk:485 msgid "" "Some other reports can be generated by using the -u option to show packages " "to upgrade, they are similar to the previous examples." @@ -9565,12 +9571,12 @@ msgstr "" "soll. Dies ist den vorherigen Beispielen ähnlich." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:491 +#: guide.dbk:492 msgid "The Status Display" msgstr "Der Anzeigestatus" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:493 +#: guide.dbk:494 msgid "" "During the download of archives and package files APT prints out a series of " "status messages." @@ -9579,7 +9585,7 @@ msgstr "" "von Statusmeldungen aus." #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:497 +#: guide.dbk:498 #, no-wrap msgid "" "# apt-get update\n" @@ -9599,7 +9605,7 @@ msgstr "" "11% [5 testing/non-free 'Warte auf Datei' 0/32.1k 0%] 2203b/s 1m52s\n" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:506 +#: guide.dbk:507 msgid "" "The lines starting with <emphasis>Get</emphasis> are printed out when APT " "begins to fetch a file while the last line indicates the progress of the " @@ -9617,7 +9623,7 @@ msgstr "" "Ungenauigkeiten bewirkt." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:514 +#: guide.dbk:515 msgid "" "The next section of the status line is repeated once for each download " "thread and indicates the operation being performed and some useful " @@ -9638,7 +9644,7 @@ msgstr "" "Archive wird es den Namen des Paketes enthalten, das heruntergeladen wird." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:524 +#: guide.dbk:525 msgid "" "Inside of the single quote is an informative string indicating the progress " "of the negotiation phase of the download. Typically it progresses from " @@ -9672,7 +9678,7 @@ msgstr "" "der angezeigten Datenübertragungsgeschwindigkeit wider." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:539 +#: guide.dbk:540 msgid "" "The status display updates every half second to provide a constant feedback " "on the download progress while the Get lines scroll back whenever a new file " @@ -9688,12 +9694,12 @@ msgstr "" "Statusanzeige zu entfernen." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:547 +#: guide.dbk:548 msgid "Dpkg" msgstr "Dpkg" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:549 +#: guide.dbk:550 msgid "" "APT uses <command>dpkg</command> for installing the archives and will switch " "over to the <command>dpkg</command> interface once downloading is completed. " @@ -9711,12 +9717,12 @@ msgstr "" "vollständig hier zu besprechen." #. type: Content of: <book><title> -#: offline.dbk:10 +#: offline.dbk:11 msgid "Using APT Offline" msgstr "APT offline verwenden" #. type: Content of: <book><bookinfo><abstract><para> -#: offline.dbk:24 +#: offline.dbk:25 msgid "" "This document describes how to use APT in a non-networked environment, " "specifically a 'sneaker-net' approach for performing upgrades." @@ -9726,24 +9732,24 @@ msgstr "" "herangeht." #. type: Content of: <book><bookinfo> -#: offline.dbk:29 +#: offline.dbk:30 msgid "" "<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" msgstr "" "<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" #. type: Content of: <book><chapter><title> -#: offline.dbk:47 +#: offline.dbk:48 msgid "Introduction" msgstr "Einleitung" #. type: Content of: <book><chapter><section><title> -#: offline.dbk:49 offline.dbk:79 offline.dbk:191 +#: offline.dbk:50 offline.dbk:80 offline.dbk:192 msgid "Overview" msgstr "Übersicht" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:51 +#: offline.dbk:52 msgid "" "Normally APT requires direct access to a Debian archive, either from a local " "media or through a network. Another common complaint is that a Debian " @@ -9757,7 +9763,7 @@ msgstr "" "Verbindung hat, sie jedoch physisch fern sind." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:57 +#: offline.dbk:58 msgid "" "The solution to this is to use large removable media such as a Zip disc or a " "SuperDisk disc. These discs are not large enough to store the entire Debian " @@ -9782,7 +9788,7 @@ msgstr "" "fehlenden Verbindung <emphasis>Zielrechner</emphasis>." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:68 +#: offline.dbk:69 msgid "" "This is achieved by creatively manipulating the APT configuration file. The " "essential premise to tell APT to look on a disc for it's archive files. Note " @@ -9796,12 +9802,12 @@ msgstr "" "Dateinamen umgehen kann, so wie ext2, fat32 oder vfat." #. type: Content of: <book><chapter><title> -#: offline.dbk:77 +#: offline.dbk:78 msgid "Using APT on both machines" msgstr "APT auf beiden Maschinen benutzen" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:81 +#: offline.dbk:82 msgid "" "APT being available on both machines gives the simplest configuration. The " "basic idea is to place a copy of the status file on the disc and use the " @@ -9815,7 +9821,7 @@ msgstr "" "heruntergeladen werden. Die Plattenverzeichnisstruktur sollte so aussehen:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:87 +#: offline.dbk:88 #, no-wrap msgid "" " /disc/\n" @@ -9837,12 +9843,12 @@ msgstr "" " apt.conf\n" #. type: Content of: <book><chapter><section><title> -#: offline.dbk:98 +#: offline.dbk:99 msgid "The configuration file" msgstr "Die Konfigurationsdatei" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:100 +#: offline.dbk:101 msgid "" "The configuration file should tell APT to store its files on the disc and to " "use the configuration files on the disc as well. The sources.list should " @@ -9861,7 +9867,7 @@ msgstr "" "Sie »copy«-URIs benutzen müssen. Die Syntax entspricht der von »file«-URIs." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:108 +#: offline.dbk:109 msgid "" "<emphasis>apt.conf</emphasis> must contain the necessary information to make " "APT use the disc:" @@ -9870,7 +9876,7 @@ msgstr "" "damit APT die Platte benutzt:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:112 +#: offline.dbk:113 #, no-wrap msgid "" " APT\n" @@ -9923,7 +9929,7 @@ msgstr "" " };\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:137 +#: offline.dbk:138 msgid "" "More details can be seen by examining the apt.conf man page and the sample " "configuration file in <emphasis>/usr/share/doc/apt/examples/apt.conf</" @@ -9934,7 +9940,7 @@ msgstr "" "emphasis>." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:142 +#: offline.dbk:143 msgid "" "On the target machine the first thing to do is mount the disc and copy " "<emphasis>/var/lib/dpkg/status</emphasis> to it. You will also need to " @@ -9952,7 +9958,7 @@ msgstr "" "aus:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:151 +#: offline.dbk:152 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" @@ -9969,7 +9975,7 @@ msgstr "" " Upgrade durchzuführen ]\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:158 +#: offline.dbk:159 msgid "" "The dist-upgrade command can be replaced with any other standard APT " "commands, particularly dselect-upgrade. You can even use an APT front end " @@ -9982,7 +9988,7 @@ msgstr "" "ein Problem dar, Ihre Auswahl zurück an den lokalen Rechner zu kommunizieren." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:164 +#: offline.dbk:165 msgid "" "Now the disc contains all of the index files and archives needed to upgrade " "the target machine. Take the disc back and run:" @@ -9992,7 +9998,7 @@ msgstr "" "starten Sie:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:168 +#: offline.dbk:169 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" @@ -10008,7 +10014,7 @@ msgstr "" " [ Oder irgendeinen anderen APT-Befehl ]\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:175 +#: offline.dbk:176 msgid "" "It is necessary for proper function to re-specify the status file to be the " "local one. This is very important!" @@ -10017,7 +10023,7 @@ msgstr "" "die lokale anzugeben. Dies ist sehr wichtig!" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:179 +#: offline.dbk:180 msgid "" "If you are using dselect you can do the very risky operation of copying disc/" "status to /var/lib/dpkg/status so that any selections you made on the remote " @@ -10034,12 +10040,12 @@ msgstr "" "wurden!" #. type: Content of: <book><chapter><title> -#: offline.dbk:189 +#: offline.dbk:190 msgid "Using APT and wget" msgstr "APT und Wget benutzen" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:193 +#: offline.dbk:194 msgid "" "<emphasis>wget</emphasis> is a popular and portable download tool that can " "run on nearly any machine. Unlike the method above this requires that the " @@ -10051,7 +10057,7 @@ msgstr "" "verfügbarer Pakete hat." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:198 +#: offline.dbk:199 msgid "" "The basic idea is to create a disc that has only the archive files " "downloaded from the remote site. This is done by using the --print-uris " @@ -10065,12 +10071,12 @@ msgstr "" "herunterzuladen." #. type: Content of: <book><chapter><section><title> -#: offline.dbk:204 +#: offline.dbk:205 msgid "Operation" msgstr "Betrieb" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:206 +#: offline.dbk:207 msgid "" "Unlike the previous technique no special configuration files are required. " "We merely use the standard APT commands to generate the file list." @@ -10080,7 +10086,7 @@ msgstr "" "benutzt, um die Dateiliste zu erstellen." #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:210 +#: offline.dbk:211 #, no-wrap msgid "" " # apt-get dist-upgrade\n" @@ -10095,7 +10101,7 @@ msgstr "" " # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /Platte/wget-script\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:216 +#: offline.dbk:217 msgid "" "Any command other than dist-upgrade could be used here, including dselect-" "upgrade." @@ -10104,7 +10110,7 @@ msgstr "" "einschließlich »upgrade«." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:220 +#: offline.dbk:221 msgid "" "The /disc/wget-script file will now contain a list of wget commands to " "execute in order to fetch the necessary archives. This script should be run " @@ -10117,12 +10123,12 @@ msgstr "" "werden, so dass die Ausgabe auf die Platte gespeichert wird." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:226 +#: offline.dbk:227 msgid "The remote machine would do something like" msgstr "Die ferne Maschine würde etwas wie das folgende tun" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:229 +#: offline.dbk:230 #, no-wrap msgid "" " # cd /disc\n" @@ -10134,7 +10140,7 @@ msgstr "" " [ warten … Fertig ]\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:234 +#: offline.dbk:235 msgid "" "Once the archives are downloaded and the disc returned to the Debian machine " "installation can proceed using," @@ -10143,13 +10149,13 @@ msgstr "" "zurückgekehrt ist, kann die Installation fortfahren durch Benutzung von " #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:238 +#: offline.dbk:239 #, no-wrap msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" msgstr " # apt-get -o dir::cache::archives=\"/Platte/\" dist-upgrade\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:241 +#: offline.dbk:242 msgid "Which will use the already fetched archives on the disc." msgstr "Es wird die bereits auf die Platte heruntergeladenen Archive benutzen." diff --git a/doc/po/es.po b/doc/po/es.po index 3779a4466..24602318d 100644 --- a/doc/po/es.po +++ b/doc/po/es.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.1\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:52+0200\n" +"POT-Creation-Date: 2014-08-28 00:20+0000\n" "PO-Revision-Date: 2014-07-04 01:31+0200\n" "Last-Translator: Omar Campagne <ocampagne@gmail.com>\n" "Language-Team: Debian l10n Spanish <debian-l10n-spanish@lists.debian.org>\n" @@ -699,37 +699,37 @@ msgstr "" "473041FA --> <!ENTITY synopsis-keyid \"keyid\">" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt.8.xml:25 apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 -#: apt-mark.8.xml:28 apt-secure.8.xml:27 apt-cdrom.8.xml:27 -#: apt-config.8.xml:28 +#: apt.8.xml:21 apt-get.8.xml:22 apt-cache.8.xml:22 apt-key.8.xml:21 +#: apt-mark.8.xml:22 apt-secure.8.xml:21 apt-cdrom.8.xml:21 +#: apt-config.8.xml:22 msgid "8" msgstr "8" #. type: Content of: <refentry><refmeta><refmiscinfo> -#: apt.8.xml:26 apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 -#: apt-mark.8.xml:29 apt-secure.8.xml:28 apt-cdrom.8.xml:28 -#: apt-config.8.xml:29 apt.conf.5.xml:34 apt_preferences.5.xml:28 -#: sources.list.5.xml:29 apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 -#: apt-ftparchive.1.xml:29 +#: apt.8.xml:22 apt-get.8.xml:23 apt-cache.8.xml:23 apt-key.8.xml:22 +#: apt-mark.8.xml:23 apt-secure.8.xml:22 apt-cdrom.8.xml:22 +#: apt-config.8.xml:23 apt.conf.5.xml:28 apt_preferences.5.xml:22 +#: sources.list.5.xml:23 apt-extracttemplates.1.xml:23 apt-sortpkgs.1.xml:23 +#: apt-ftparchive.1.xml:23 msgid "APT" msgstr "APT" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt.8.xml:32 +#: apt.8.xml:28 msgid "command-line interface" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:37 apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 -#: apt-mark.8.xml:40 apt-secure.8.xml:52 apt-cdrom.8.xml:39 -#: apt-config.8.xml:40 apt.conf.5.xml:43 apt_preferences.5.xml:38 -#: sources.list.5.xml:38 apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 -#: apt-ftparchive.1.xml:40 +#: apt.8.xml:33 apt-get.8.xml:34 apt-cache.8.xml:34 apt-key.8.xml:33 +#: apt-mark.8.xml:34 apt-secure.8.xml:46 apt-cdrom.8.xml:33 +#: apt-config.8.xml:34 apt.conf.5.xml:37 apt_preferences.5.xml:32 +#: sources.list.5.xml:32 apt-extracttemplates.1.xml:34 apt-sortpkgs.1.xml:34 +#: apt-ftparchive.1.xml:34 msgid "Description" msgstr "Descripción" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:38 +#: apt.8.xml:34 msgid "" "<command>apt</command> (Advanced Package Tool) is the command-line tool for " "handling packages. It provides a commandline interface for the package " @@ -738,7 +738,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:47 +#: apt.8.xml:43 msgid "" "<literal>list</literal> is used to display a list of packages. It supports " "shell pattern for matching package names and the following options: " @@ -747,14 +747,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:58 +#: apt.8.xml:54 msgid "" "<literal>search</literal> searches for the given term(s) and display " "matching packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:64 +#: apt.8.xml:60 #, fuzzy #| msgid "" #| "<literal>rdepends</literal> shows a listing of each reverse dependency a " @@ -766,14 +766,14 @@ msgstr "" "<literal>rdepends</literal> muestra las dependencias inversas de un paquete." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:71 +#: apt.8.xml:67 msgid "" "<literal>install</literal> is followed by one or more package names desired " "for installation or upgrading." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:75 apt-get.8.xml:118 +#: apt.8.xml:71 apt-get.8.xml:112 msgid "" "A specific version of a package can be selected for installation by " "following the package name with an equals and the version of the package to " @@ -791,7 +791,7 @@ msgstr "" "(stable, testing, unstable)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:85 apt-get.8.xml:153 +#: apt.8.xml:81 apt-get.8.xml:147 msgid "" "<literal>remove</literal> is identical to <literal>install</literal> except " "that packages are removed instead of installed. Note that removing a package " @@ -807,14 +807,14 @@ msgstr "" "en cuestión será instalado en vez de eliminado." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:93 +#: apt.8.xml:89 msgid "" "<literal>edit-sources</literal> lets you edit your sources.list file and " "provides basic sanity checks." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:99 +#: apt.8.xml:95 #, fuzzy #| msgid "" #| "<literal>showhold</literal> is used to print a list of packages on hold " @@ -827,16 +827,16 @@ msgstr "" "de la misma forma que las otras órdenes «show»." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:105 +#: apt.8.xml:101 msgid "" "<literal>upgrade</literal> is used to install the newest versions of all " "packages currently installed on the system from the sources enumerated in " -"<filename>/etc/apt/sources.list</filename>. New package will be installed, " -"but existing package will never removed." +"<filename>/etc/apt/sources.list</filename>. New packages will be installed, " +"but existing packages will never be removed." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:114 +#: apt.8.xml:110 msgid "" "<literal>full-upgrade</literal> performs the function of upgrade but may " "also remove installed packages if that is required in order to resolve a " @@ -844,19 +844,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:124 apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 -#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 -#: apt-ftparchive.1.xml:506 +#: apt.8.xml:120 apt-get.8.xml:251 apt-cache.8.xml:244 apt-mark.8.xml:104 +#: apt-config.8.xml:80 apt-extracttemplates.1.xml:48 apt-sortpkgs.1.xml:44 +#: apt-ftparchive.1.xml:500 msgid "options" msgstr "Opciones" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:134 +#: apt.8.xml:130 msgid "Script usage" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:136 +#: apt.8.xml:132 msgid "" "The &apt; commandline is designed as a end-user tool and it may change the " "output between versions. While it tries to not break backward compatibility " @@ -866,12 +866,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:144 +#: apt.8.xml:140 msgid "Differences to &apt-get;" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:145 +#: apt.8.xml:141 msgid "" "The <command>apt</command> command is meant to be pleasant for end users and " "does not need to be backward compatible like &apt-get;. Therefore some " @@ -879,28 +879,28 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:151 +#: apt.8.xml:147 #, fuzzy #| msgid "the <literal>Package:</literal> line" msgid "The option <literal>DPkg::Progress-Fancy</literal> is enabled." msgstr "La línea <literal>Package:</literal>" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:155 +#: apt.8.xml:151 #, fuzzy #| msgid "the <literal>Component:</literal> line" msgid "The option <literal>APT::Color</literal> is enabled." msgstr "La línea <literal>Component:</literal>" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:159 +#: apt.8.xml:155 msgid "" "A new <literal>list</literal> command is available similar to <literal>dpkg " "--list</literal>." msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:164 +#: apt.8.xml:160 #, fuzzy #| msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" msgid "" @@ -909,16 +909,16 @@ msgid "" msgstr "Las líneas <literal>Archive:</literal> o <literal>Suite:</literal>" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 -#: apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 -#: apt-config.8.xml:111 apt.conf.5.xml:1228 apt_preferences.5.xml:707 -#: sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 -#: apt-ftparchive.1.xml:609 +#: apt.8.xml:170 apt-get.8.xml:552 apt-cache.8.xml:346 apt-key.8.xml:191 +#: apt-mark.8.xml:127 apt-secure.8.xml:187 apt-cdrom.8.xml:148 +#: apt-config.8.xml:105 apt.conf.5.xml:1222 apt_preferences.5.xml:701 +#: sources.list.5.xml:274 apt-extracttemplates.1.xml:66 apt-sortpkgs.1.xml:59 +#: apt-ftparchive.1.xml:603 msgid "See Also" msgstr "Véase también" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:175 +#: apt.8.xml:171 #, fuzzy #| msgid "" #| "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " @@ -933,14 +933,14 @@ msgstr "" "preferences;, el Cómo de APT." #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:180 apt-get.8.xml:564 apt-cache.8.xml:357 apt-mark.8.xml:137 -#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 -#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 +#: apt.8.xml:176 apt-get.8.xml:558 apt-cache.8.xml:351 apt-mark.8.xml:131 +#: apt-cdrom.8.xml:153 apt-config.8.xml:110 apt-extracttemplates.1.xml:70 +#: apt-sortpkgs.1.xml:63 apt-ftparchive.1.xml:607 msgid "Diagnostics" msgstr "Diagnósticos" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:181 +#: apt.8.xml:177 #, fuzzy #| msgid "" #| "<command>apt-get</command> returns zero on normal operation, decimal 100 " @@ -953,13 +953,13 @@ msgstr "" "100 en caso de error." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-get.8.xml:35 +#: apt-get.8.xml:29 msgid "APT package handling utility -- command-line interface" msgstr "" "Herramienta de gestión de paquetes APT -- interfaz para la línea de órdenes" #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:41 +#: apt-get.8.xml:35 #, fuzzy #| msgid "" #| "<command>apt-get</command> is the command-line tool for handling " @@ -979,8 +979,8 @@ msgstr "" "&synaptic; y &wajig;." #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:46 apt-cache.8.xml:46 apt-cdrom.8.xml:53 apt-config.8.xml:46 -#: apt-ftparchive.1.xml:56 +#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-cdrom.8.xml:47 apt-config.8.xml:40 +#: apt-ftparchive.1.xml:50 msgid "" "Unless the <option>-h</option>, or <option>--help</option> option is given, " "one of the commands below must be present." @@ -989,7 +989,7 @@ msgstr "" "una de las siguientes órdenes debe estar presente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:51 +#: apt-get.8.xml:45 msgid "" "<literal>update</literal> is used to resynchronize the package index files " "from their sources. The indexes of available packages are fetched from the " @@ -1013,7 +1013,7 @@ msgstr "" "tamaño de los archivos de paquete." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:63 +#: apt-get.8.xml:57 msgid "" "<literal>upgrade</literal> is used to install the newest versions of all " "packages currently installed on the system from the sources enumerated in " @@ -1038,7 +1038,7 @@ msgstr "" "hay nuevas versiones disponibles." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:76 +#: apt-get.8.xml:70 msgid "" "<literal>dist-upgrade</literal> in addition to performing the function of " "<literal>upgrade</literal>, also intelligently handles changing dependencies " @@ -1063,7 +1063,7 @@ msgstr "" "invalidar este comportamiento para paquetes individuales." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:89 +#: apt-get.8.xml:83 msgid "" "<literal>dselect-upgrade</literal> is used in conjunction with the " "traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</" @@ -1080,7 +1080,7 @@ msgstr "" "paquetes antiguos e instalar las nuevas versiones)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:100 +#: apt-get.8.xml:94 msgid "" "<literal>install</literal> is followed by one or more packages desired for " "installation or upgrading. Each package is a package name, not a fully " @@ -1110,7 +1110,7 @@ msgstr "" "de apt-get." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:125 +#: apt-get.8.xml:119 msgid "" "Both of the version selection mechanisms can downgrade packages and must be " "used with care." @@ -1119,7 +1119,7 @@ msgstr "" "anterior de los paquetes y se debe utilizar con precaución." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:128 +#: apt-get.8.xml:122 msgid "" "This is also the target to use if you want to upgrade one or more already-" "installed packages without upgrading every package you have on your system. " @@ -1139,7 +1139,7 @@ msgstr "" "instalarán." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:139 +#: apt-get.8.xml:133 msgid "" "Finally, the &apt-preferences; mechanism allows you to create an alternative " "installation policy for individual packages." @@ -1148,7 +1148,7 @@ msgstr "" "paquetes individuales." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:143 +#: apt-get.8.xml:137 msgid "" "If no package matches the given expression and the expression contains one " "of '.', '?' or '*' then it is assumed to be a POSIX regular expression, and " @@ -1168,7 +1168,7 @@ msgstr "" "«$», o bien crear una expresión regular más específica." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:161 +#: apt-get.8.xml:155 msgid "" "<literal>purge</literal> is identical to <literal>remove</literal> except " "that packages are removed and purged (any configuration files are deleted " @@ -1179,7 +1179,7 @@ msgstr "" "también cualquier fichero de configuración)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:166 +#: apt-get.8.xml:160 msgid "" "<literal>source</literal> causes <command>apt-get</command> to fetch source " "packages. APT will examine the available packages to decide which source " @@ -1198,7 +1198,7 @@ msgstr "" "release</literal>, si es posible." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:174 +#: apt-get.8.xml:168 msgid "" "Source packages are tracked separately from binary packages via <literal>deb-" "src</literal> lines in the &sources-list; file. This means that you will " @@ -1214,7 +1214,7 @@ msgstr "" "ninguna." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:180 +#: apt-get.8.xml:174 msgid "" "If the <option>--compile</option> option is specified then the package will " "be compiled to a binary .deb using <command>dpkg-buildpackage</command> for " @@ -1229,7 +1229,7 @@ msgstr "" "paquete fuente no se desempaquetará." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:187 +#: apt-get.8.xml:181 msgid "" "A specific source version can be retrieved by postfixing the source name " "with an equals and then the version to fetch, similar to the mechanism used " @@ -1244,7 +1244,7 @@ msgstr "" "activando implícitamente la opción <literal>APT::Get::Only-Source</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:193 +#: apt-get.8.xml:187 msgid "" "Note that source packages are not installed and tracked in the " "<command>dpkg</command> database like binary packages; they are simply " @@ -1255,7 +1255,7 @@ msgstr "" "se descargan al directorio actual en la forma de archivos tar de fuentes." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:199 +#: apt-get.8.xml:193 msgid "" "<literal>build-dep</literal> causes apt-get to install/remove packages in an " "attempt to satisfy the build dependencies for a source package. By default " @@ -1270,7 +1270,7 @@ msgstr "" "<option>--host-architecture</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:206 +#: apt-get.8.xml:200 msgid "" "<literal>check</literal> is a diagnostic tool; it updates the package cache " "and checks for broken dependencies." @@ -1279,7 +1279,7 @@ msgstr "" "caché de paquetes y revisa la existencia de dependencias rotas." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:211 +#: apt-get.8.xml:205 msgid "" "<literal>download</literal> will download the given binary package into the " "current directory." @@ -1288,7 +1288,7 @@ msgstr "" "directorio actual." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:217 +#: apt-get.8.xml:211 #, fuzzy #| msgid "" #| "<literal>clean</literal> clears out the local repository of retrieved " @@ -1313,7 +1313,7 @@ msgstr "" "literal> de vez en cuando para liberar algo de espacio en disco." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:224 +#: apt-get.8.xml:218 msgid "" "Like <literal>clean</literal>, <literal>autoclean</literal> clears out the " "local repository of retrieved package files. The difference is that it only " @@ -1332,7 +1332,7 @@ msgstr "" "desactivada impedirá que se borren los paquetes instalados." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:234 +#: apt-get.8.xml:228 msgid "" "<literal>autoremove</literal> is used to remove packages that were " "automatically installed to satisfy dependencies for other packages and are " @@ -1343,7 +1343,7 @@ msgstr "" "ya no son necesarios." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:239 +#: apt-get.8.xml:233 msgid "" "<literal>changelog</literal> downloads a package changelog and displays it " "through <command>sensible-pager</command>. The server name and base " @@ -1367,7 +1367,7 @@ msgstr "" "option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:262 +#: apt-get.8.xml:256 msgid "" "Do not consider recommended packages as a dependency for installing. " "Configuration Item: <literal>APT::Install-Recommends</literal>." @@ -1376,7 +1376,7 @@ msgstr "" "de configuración: <literal>APT::Install-Recommends</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:267 +#: apt-get.8.xml:261 msgid "" "Consider suggested packages as a dependency for installing. Configuration " "Item: <literal>APT::Install-Suggests</literal>." @@ -1385,7 +1385,7 @@ msgstr "" "instalar. Opción de configuración: <literal>APT::Install-Suggests</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:272 +#: apt-get.8.xml:266 msgid "" "Download only; package files are only retrieved, not unpacked or installed. " "Configuration Item: <literal>APT::Get::Download-Only</literal>." @@ -1394,7 +1394,7 @@ msgstr "" "instala. Opción de configuración: <literal>APT::Get::Download-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:277 +#: apt-get.8.xml:271 #, fuzzy #| msgid "" #| "Fix; attempt to correct a system with broken dependencies in place. This " @@ -1435,7 +1435,7 @@ msgstr "" "<literal>APT::Get::Fix-Broken</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:292 +#: apt-get.8.xml:286 msgid "" "Ignore missing packages; if packages cannot be retrieved or fail the " "integrity check after retrieval (corrupted package files), hold back those " @@ -1455,7 +1455,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:303 +#: apt-get.8.xml:297 msgid "" "Disables downloading of packages. This is best used with <option>--ignore-" "missing</option> to force APT to use only the .debs it has already " @@ -1467,7 +1467,7 @@ msgstr "" "<literal>APT::Get::Download</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:310 +#: apt-get.8.xml:304 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quiet up to a maximum of 2. You can also use " @@ -1487,7 +1487,7 @@ msgstr "" "no espera. Opción de configuración: <literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:325 +#: apt-get.8.xml:319 msgid "" "No action; perform a simulation of events that would occur but do not " "actually change the system. Configuration Item: <literal>APT::Get::" @@ -1498,7 +1498,7 @@ msgstr "" "Simulate</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:329 +#: apt-get.8.xml:323 msgid "" "Simulated runs performed as a user will automatically deactivate locking " "(<literal>Debug::NoLocking</literal>), and if the option <literal>APT::Get::" @@ -1517,7 +1517,7 @@ msgstr "" "acciones sin avisos de <literal>apt-get</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:337 +#: apt-get.8.xml:331 msgid "" "Simulated runs print out a series of lines, each representing a " "<command>dpkg</command> operation: configure (<literal>Conf</literal>), " @@ -1533,7 +1533,7 @@ msgstr "" "(poco frecuente)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:345 +#: apt-get.8.xml:339 msgid "" "Automatic yes to prompts; assume \"yes\" as answer to all prompts and run " "non-interactively. If an undesirable situation, such as changing a held " @@ -1549,7 +1549,7 @@ msgstr "" "<literal>APT::Get::Assume-Yes</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:353 +#: apt-get.8.xml:347 msgid "" "Automatic \"no\" to all prompts. Configuration Item: <literal>APT::Get::" "Assume-No</literal>." @@ -1558,7 +1558,7 @@ msgstr "" "Get::Assume-No</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:358 +#: apt-get.8.xml:352 msgid "" "Show upgraded packages; print out a list of all packages that are to be " "upgraded. Configuration Item: <literal>APT::Get::Show-Upgraded</literal>." @@ -1567,7 +1567,7 @@ msgstr "" "<literal>APT::Get::Show-Upgraded</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:364 +#: apt-get.8.xml:358 msgid "" "Show full versions for upgraded and installed packages. Configuration Item: " "<literal>APT::Get::Show-Versions</literal>." @@ -1576,7 +1576,7 @@ msgstr "" "Opción de configuración: <literal>APT::Get::Show-Versions</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:370 +#: apt-get.8.xml:364 #, fuzzy #| msgid "" #| "This option controls the architecture packages are built for by " @@ -1601,7 +1601,7 @@ msgstr "" "configuración: <literal>APT::Get::Host-Architecture</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:380 +#: apt-get.8.xml:374 #, fuzzy #| msgid "" #| "This option controls the architecture packages are built for by " @@ -1625,7 +1625,7 @@ msgstr "" "configuración: <literal>APT::Get::Host-Architecture</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:391 +#: apt-get.8.xml:385 msgid "" "Compile source packages after downloading them. Configuration Item: " "<literal>APT::Get::Compile</literal>." @@ -1634,7 +1634,7 @@ msgstr "" "<literal>APT::Get::Compile</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:396 +#: apt-get.8.xml:390 msgid "" "Ignore package holds; this causes <command>apt-get</command> to ignore a " "hold placed on a package. This may be useful in conjunction with " @@ -1648,7 +1648,7 @@ msgstr "" "Ignore-Hold</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:403 +#: apt-get.8.xml:397 msgid "" "Allow installing new packages when used in conjunction with " "<literal>upgrade</literal>. This is useful if the update of a installed " @@ -1660,7 +1660,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:415 +#: apt-get.8.xml:409 msgid "" "Do not upgrade packages; when used in conjunction with <literal>install</" "literal>, <literal>no-upgrade</literal> will prevent packages on the command " @@ -1673,7 +1673,7 @@ msgstr "" "configuración: <literal>APT::Get::Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:422 +#: apt-get.8.xml:416 msgid "" "Do not install new packages; when used in conjunction with <literal>install</" "literal>, <literal>only-upgrade</literal> will install upgrades for already " @@ -1687,7 +1687,7 @@ msgstr "" "<literal>APT::Get::Only-Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:430 +#: apt-get.8.xml:424 msgid "" "Force yes; this is a dangerous option that will cause apt to continue " "without prompting if it is doing something potentially harmful. It should " @@ -1703,7 +1703,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:438 +#: apt-get.8.xml:432 msgid "" "Instead of fetching the files to install their URIs are printed. Each URI " "will have the path, the destination file name, the size and the expected MD5 " @@ -1725,7 +1725,7 @@ msgstr "" "<literal>APT::Get::Print-URIs</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:449 +#: apt-get.8.xml:443 msgid "" "Use purge instead of remove for anything that would be removed. An asterisk " "(\"*\") will be displayed next to packages which are scheduled to be purged. " @@ -1739,7 +1739,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:457 +#: apt-get.8.xml:451 msgid "" "Re-install packages that are already installed and at the newest version. " "Configuration Item: <literal>APT::Get::ReInstall</literal>." @@ -1749,7 +1749,7 @@ msgstr "" "ReInstall</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:462 +#: apt-get.8.xml:456 msgid "" "This option is on by default; use <literal>--no-list-cleanup</literal> to " "turn it off. When it is on, <command>apt-get</command> will automatically " @@ -1767,7 +1767,7 @@ msgstr "" "<literal>APT::Get::List-Cleanup</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:472 +#: apt-get.8.xml:466 msgid "" "This option controls the default input to the policy engine; it creates a " "default pin at priority 990 using the specified release string. This " @@ -1791,7 +1791,7 @@ msgstr "" "también la página del manual de &apt-preferences;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:487 +#: apt-get.8.xml:481 msgid "" "Only perform operations that are 'trivial'. Logically this can be considered " "related to <option>--assume-yes</option>; where <option>--assume-yes</" @@ -1805,7 +1805,7 @@ msgstr "" "<literal>APT::Get::Trivial-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:494 +#: apt-get.8.xml:488 msgid "" "If any packages are to be removed apt-get immediately aborts without " "prompting. Configuration Item: <literal>APT::Get::Remove</literal>." @@ -1814,7 +1814,7 @@ msgstr "" "preguntar. Opción de configuración: <literal>APT::Get::Remove</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:500 +#: apt-get.8.xml:494 msgid "" "If the command is either <literal>install</literal> or <literal>remove</" "literal>, then this option acts like running the <literal>autoremove</" @@ -1827,7 +1827,7 @@ msgstr "" "Get::AutomaticRemove</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:507 +#: apt-get.8.xml:501 msgid "" "Only has meaning for the <literal>source</literal> and <literal>build-dep</" "literal> commands. Indicates that the given source names are not to be " @@ -1847,7 +1847,7 @@ msgstr "" "literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:518 +#: apt-get.8.xml:512 msgid "" "Download only the diff, dsc, or tar file of a source archive. Configuration " "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</" @@ -1858,7 +1858,7 @@ msgstr "" "Dsc-Only</literal> y <literal>APT::Get::Tar-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:524 +#: apt-get.8.xml:518 msgid "" "Only process architecture-dependent build-dependencies. Configuration Item: " "<literal>APT::Get::Arch-Only</literal>." @@ -1867,7 +1867,7 @@ msgstr "" "arquitectura. Opción de configuración: <literal>APT::Get::Arch-Only</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:529 +#: apt-get.8.xml:523 msgid "" "Ignore if packages can't be authenticated and don't prompt about it. This " "is useful for tools like pbuilder. Configuration Item: <literal>APT::Get::" @@ -1878,7 +1878,7 @@ msgstr "" "configuración: <literal>APT::Get::AllowUnauthenticated</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:535 +#: apt-get.8.xml:529 msgid "" "Show user friendly progress information in the terminal window when packages " "are installed, upgraded or removed. For a machine parsable version of this " @@ -1888,13 +1888,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 -#: apt.conf.5.xml:1222 apt_preferences.5.xml:700 +#: apt-get.8.xml:542 apt-cache.8.xml:339 apt-key.8.xml:170 apt-mark.8.xml:121 +#: apt.conf.5.xml:1216 apt_preferences.5.xml:694 msgid "Files" msgstr "Ficheros" #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:559 +#: apt-get.8.xml:553 #, fuzzy #| msgid "" #| "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " @@ -1910,7 +1910,7 @@ msgstr "" "preferences;, el Cómo de APT." #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:565 +#: apt-get.8.xml:559 msgid "" "<command>apt-get</command> returns zero on normal operation, decimal 100 on " "error." @@ -1919,12 +1919,12 @@ msgstr "" "100 en caso de error." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-cache.8.xml:35 +#: apt-cache.8.xml:29 msgid "query the APT cache" msgstr "Realiza consultas al caché de APT" #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:41 +#: apt-cache.8.xml:35 msgid "" "<command>apt-cache</command> performs a variety of operations on APT's " "package cache. <command>apt-cache</command> does not manipulate the state of " @@ -1937,7 +1937,7 @@ msgstr "" "genera información interesante a partir de los metadatos del paquete." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:51 +#: apt-cache.8.xml:45 msgid "" "<literal>gencaches</literal> creates APT's package cache. This is done " "implicitly by all commands needing this cache if it is missing or outdated." @@ -1947,14 +1947,14 @@ msgstr "" "si está obsoleta." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-cache.8.xml:55 apt-cache.8.xml:144 apt-cache.8.xml:165 -#: apt-cache.8.xml:187 apt-cache.8.xml:192 apt-cache.8.xml:208 -#: apt-cache.8.xml:226 apt-cache.8.xml:238 +#: apt-cache.8.xml:49 apt-cache.8.xml:138 apt-cache.8.xml:159 +#: apt-cache.8.xml:181 apt-cache.8.xml:186 apt-cache.8.xml:202 +#: apt-cache.8.xml:220 apt-cache.8.xml:232 msgid "&synopsis-pkg;" msgstr "&synopsis-pkg;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:56 +#: apt-cache.8.xml:50 msgid "" "<literal>showpkg</literal> displays information about the packages listed on " "the command line. Remaining arguments are package names. The available " @@ -1978,7 +1978,7 @@ msgstr "" "siguiente:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> -#: apt-cache.8.xml:68 +#: apt-cache.8.xml:62 #, no-wrap msgid "" "Package: libreadline2\n" @@ -2004,7 +2004,7 @@ msgstr "" "Reverse Provides: \n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:80 +#: apt-cache.8.xml:74 msgid "" "Thus it may be seen that libreadline2, version 2.1-12, depends on libc5 and " "ncurses3.0 which must be installed for libreadline2 to work. In turn, " @@ -2023,7 +2023,7 @@ msgstr "" "salida lo mejor es consultar el código fuente de apt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:89 +#: apt-cache.8.xml:83 msgid "" "<literal>stats</literal> displays some statistics about the cache. No " "further arguments are expected. Statistics reported are:" @@ -2032,7 +2032,7 @@ msgstr "" "necesita ningún argumento adicional. Las estadísticas que muestra son:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:92 +#: apt-cache.8.xml:86 msgid "" "<literal>Total package names</literal> is the number of package names found " "in the cache." @@ -2041,7 +2041,7 @@ msgstr "" "encontrados en la caché." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:96 +#: apt-cache.8.xml:90 msgid "" "<literal>Normal packages</literal> is the number of regular, ordinary " "package names; these are packages that bear a one-to-one correspondence " @@ -2054,7 +2054,7 @@ msgstr "" "dependencias. La mayoría de los paquetes pertenecen a este grupo." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:102 +#: apt-cache.8.xml:96 msgid "" "<literal>Pure virtual packages</literal> is the number of packages that " "exist only as a virtual package name; that is, packages only \"provide\" the " @@ -2071,7 +2071,7 @@ msgstr "" "agent», pero no hay ningún paquete que se llame «mail-transport-agent»." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:110 +#: apt-cache.8.xml:104 msgid "" "<literal>Single virtual packages</literal> is the number of packages with " "only one package providing a particular virtual package. For example, in the " @@ -2084,7 +2084,7 @@ msgstr "" "paquete, xless, proporciona «X11-text-viewer»." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:116 +#: apt-cache.8.xml:110 msgid "" "<literal>Mixed virtual packages</literal> is the number of packages that " "either provide a particular virtual package or have the virtual package name " @@ -2098,7 +2098,7 @@ msgstr "" "paquete debconf-tiny." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:123 +#: apt-cache.8.xml:117 msgid "" "<literal>Missing</literal> is the number of package names that were " "referenced in a dependency but were not provided by any package. Missing " @@ -2114,7 +2114,7 @@ msgstr "" "«Conflicts» o «Breaks» de la descripción de los paquetes." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:130 +#: apt-cache.8.xml:124 msgid "" "<literal>Total distinct</literal> versions is the number of package versions " "found in the cache; this value is therefore at least equal to the number of " @@ -2129,7 +2129,7 @@ msgstr "" "considerablemente mayor que el número total de paquetes." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:137 +#: apt-cache.8.xml:131 msgid "" "<literal>Total dependencies</literal> is the number of dependency " "relationships claimed by all of the packages in the cache." @@ -2138,7 +2138,7 @@ msgstr "" "dependencia de todos los paquetes de la caché." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:145 +#: apt-cache.8.xml:139 msgid "" "<literal>showsrc</literal> displays all the source package records that " "match the given package names. All versions are shown, as well as all " @@ -2150,7 +2150,7 @@ msgstr "" "son binarios." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:151 +#: apt-cache.8.xml:145 msgid "" "<literal>dump</literal> shows a short listing of every package in the cache. " "It is primarily for debugging." @@ -2159,7 +2159,7 @@ msgstr "" "la caché. Fundamentalmente para depuración." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:156 +#: apt-cache.8.xml:150 msgid "" "<literal>dumpavail</literal> prints out an available list to stdout. This is " "suitable for use with &dpkg; and is used by the &dselect; method." @@ -2169,7 +2169,7 @@ msgstr "" "además, la usa el método &dselect;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:161 +#: apt-cache.8.xml:155 msgid "" "<literal>unmet</literal> displays a summary of all unmet dependencies in the " "package cache." @@ -2178,7 +2178,7 @@ msgstr "" "satisfechas en la caché de paquetes." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:166 +#: apt-cache.8.xml:160 msgid "" "<literal>show</literal> performs a function similar to <command>dpkg --print-" "avail</command>; it displays the package records for the named packages." @@ -2187,12 +2187,12 @@ msgstr "" "avail</command>, muestra los campos del paquete para los paquetes nombrados." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-cache.8.xml:171 +#: apt-cache.8.xml:165 msgid "&synopsis-regex;" msgstr "&synopsis-regex;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:172 +#: apt-cache.8.xml:166 msgid "" "<literal>search</literal> performs a full text search on all available " "package lists for the POSIX regex pattern given, see ®ex;. It searches " @@ -2214,7 +2214,7 @@ msgstr "" "de los paquetes, no en la descripción larga." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:183 +#: apt-cache.8.xml:177 msgid "" "Separate arguments can be used to specify multiple search patterns that are " "and'ed together." @@ -2223,7 +2223,7 @@ msgstr "" "búsqueda que se juntarán mediante una «Y lógica»." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:188 +#: apt-cache.8.xml:182 msgid "" "<literal>depends</literal> shows a listing of each dependency a package has " "and all the possible other packages that can fulfill that dependency." @@ -2232,7 +2232,7 @@ msgstr "" "paquete y de todos los demás paquetes que la pueden satisfacer." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:193 +#: apt-cache.8.xml:187 msgid "" "<literal>rdepends</literal> shows a listing of each reverse dependency a " "package has." @@ -2240,12 +2240,12 @@ msgstr "" "<literal>rdepends</literal> muestra las dependencias inversas de un paquete." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:197 +#: apt-cache.8.xml:191 msgid "<optional><replaceable>&synopsis-prefix;</replaceable></optional>" msgstr "<optional><replaceable>&synopsis-prefix;</replaceable></optional>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:198 +#: apt-cache.8.xml:192 msgid "" "This command prints the name of each package APT knows. The optional " "argument is a prefix match to filter the name list. The output is suitable " @@ -2261,7 +2261,7 @@ msgstr "" "generate</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:203 +#: apt-cache.8.xml:197 msgid "" "Note that a package which APT knows of is not necessarily available to " "download, installable or installed, e.g. virtual packages are also listed in " @@ -2272,7 +2272,7 @@ msgstr "" "virtuales también aparecen en la lista generada." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:209 +#: apt-cache.8.xml:203 msgid "" "<literal>dotty</literal> takes a list of packages on the command line and " "generates output suitable for use by dotty from the <ulink url=\"http://www." @@ -2293,7 +2293,7 @@ msgstr "" "active la opción <literal>APT::Cache::GivenOnly</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:218 +#: apt-cache.8.xml:212 msgid "" "The resulting nodes will have several shapes; normal packages are boxes, " "pure virtual packages are triangles, mixed virtual packages are diamonds, " @@ -2308,12 +2308,12 @@ msgstr "" "líneas verdes son conflictos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:223 +#: apt-cache.8.xml:217 msgid "Caution, dotty cannot graph larger sets of packages." msgstr "Tenga cuidado, dotty no puede dibujar grandes conjuntos de paquetes." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:227 +#: apt-cache.8.xml:221 msgid "" "The same as <literal>dotty</literal>, only for xvcg from the <ulink url=" "\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG tool</ulink>." @@ -2323,12 +2323,12 @@ msgstr "" "ulink>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:231 +#: apt-cache.8.xml:225 msgid "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>" msgstr "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:232 +#: apt-cache.8.xml:226 msgid "" "<literal>policy</literal> is meant to help debug issues relating to the " "preferences file. With no arguments it will print out the priorities of each " @@ -2341,7 +2341,7 @@ msgstr "" "detallada acerca de la prioridad de selección del paquete nombrado." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:239 +#: apt-cache.8.xml:233 msgid "" "<literal>apt-cache</literal>'s <literal>madison</literal> command attempts " "to mimic the output format and a subset of the functionality of the Debian " @@ -2360,7 +2360,7 @@ msgstr "" "paquetes (<literal>APT::Architecture</literal>)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:255 +#: apt-cache.8.xml:249 msgid "" "Select the file to store the package cache. The package cache is the primary " "cache used by all operations. Configuration Item: <literal>Dir::Cache::" @@ -2371,7 +2371,7 @@ msgstr "" "configuración: <literal>Dir::Cache::pkgcache</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:261 +#: apt-cache.8.xml:255 msgid "" "Select the file to store the source cache. The source is used only by " "<literal>gencaches</literal> and it stores a parsed version of the package " @@ -2386,7 +2386,7 @@ msgstr "" "Opción de configuración: <literal>Dir::Cache::srcpkgcache</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:269 +#: apt-cache.8.xml:263 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quietness up to a maximum of 2. You can also use " @@ -2400,7 +2400,7 @@ msgstr "" "configuración: <literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:276 +#: apt-cache.8.xml:270 msgid "" "Print only important dependencies; for use with <literal>unmet</literal> and " "<literal>depends</literal>. Causes only Depends and Pre-Depends relations to " @@ -2412,7 +2412,7 @@ msgstr "" "Cache::Important</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:290 +#: apt-cache.8.xml:284 msgid "" "Per default the <literal>depends</literal> and <literal>rdepends</literal> " "print all dependencies. This can be tweaked with these flags which will omit " @@ -2428,7 +2428,7 @@ msgstr "" "<literal>APT::Cache::ShowRecommends</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:297 +#: apt-cache.8.xml:291 msgid "" "Print full package records when searching. Configuration Item: " "<literal>APT::Cache::ShowFull</literal>." @@ -2437,7 +2437,7 @@ msgstr "" "Opción de configuración: <literal>APT::Cache::ShowFull</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:302 +#: apt-cache.8.xml:296 msgid "" "Print full records for all available versions. This is the default; to turn " "it off, use <option>--no-all-versions</option>. If <option>--no-all-" @@ -2454,7 +2454,7 @@ msgstr "" "configuración: <literal>APT::Cache::AllVersions</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:311 +#: apt-cache.8.xml:305 msgid "" "Perform automatic package cache regeneration, rather than use the cache as " "it is. This is the default; to turn it off, use <option>--no-generate</" @@ -2466,7 +2466,7 @@ msgstr "" "Cache::Generate</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:317 +#: apt-cache.8.xml:311 msgid "" "Only search on the package names, not the long descriptions. Configuration " "Item: <literal>APT::Cache::NamesOnly</literal>." @@ -2475,7 +2475,7 @@ msgstr "" "Opción de configuración: <literal>APT::Cache::NamesOnly</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:322 +#: apt-cache.8.xml:316 msgid "" "Make <literal>pkgnames</literal> print all names, including virtual packages " "and missing dependencies. Configuration Item: <literal>APT::Cache::" @@ -2486,7 +2486,7 @@ msgstr "" "configuración: <literal>APT::Cache::AllNames</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:328 +#: apt-cache.8.xml:322 msgid "" "Make <literal>depends</literal> and <literal>rdepends</literal> recursive so " "that all packages mentioned are printed once. Configuration Item: " @@ -2497,7 +2497,7 @@ msgstr "" "vez. Opción de configuración <literal>APT::Cache::RecurseDepends</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:335 +#: apt-cache.8.xml:329 msgid "" "Limit the output of <literal>depends</literal> and <literal>rdepends</" "literal> to packages which are currently installed. Configuration Item: " @@ -2508,12 +2508,12 @@ msgstr "" "Cache::Installed</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:353 +#: apt-cache.8.xml:347 msgid "&apt-conf;, &sources-list;, &apt-get;" msgstr "&apt-conf;, &sources-list;, &apt-get;" #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:358 +#: apt-cache.8.xml:352 msgid "" "<command>apt-cache</command> returns zero on normal operation, decimal 100 " "on error." @@ -2522,12 +2522,12 @@ msgstr "" "valor 100 en caso de error." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-key.8.xml:34 +#: apt-key.8.xml:28 msgid "APT key management utility" msgstr "Herramienta para gestionar las claves de APT" #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:41 +#: apt-key.8.xml:35 msgid "" "<command>apt-key</command> is used to manage the list of keys used by apt to " "authenticate packages. Packages which have been authenticated using these " @@ -2538,12 +2538,12 @@ msgstr "" "claves se consideran de confianza." #. type: Content of: <refentry><refsect1><title> -#: apt-key.8.xml:47 +#: apt-key.8.xml:41 msgid "Commands" msgstr "Órdenes" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:52 +#: apt-key.8.xml:46 msgid "" "Add a new key to the list of trusted keys. The key is read from the " "filename given with the parameter &synopsis-param-filename; or if the " @@ -2554,32 +2554,32 @@ msgstr "" "entrada estándar si el nombre de fichero se define como <literal>-</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:65 +#: apt-key.8.xml:59 msgid "Remove a key from the list of trusted keys." msgstr "Elimina una clave de la lista de claves de confianza." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:76 +#: apt-key.8.xml:70 msgid "Output the key &synopsis-param-keyid; to standard output." msgstr "Muestra la clave &synopsis-param-keyid; por la salida estándar." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:87 +#: apt-key.8.xml:81 msgid "Output all trusted keys to standard output." msgstr "Devuelve todas las claves de confianza por la salida estándar." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:98 +#: apt-key.8.xml:92 msgid "List trusted keys." msgstr "Lista las claves de confianza." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:109 +#: apt-key.8.xml:103 msgid "List fingerprints of trusted keys." msgstr "Lista las huellas digitales de las claves de confianza." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:120 +#: apt-key.8.xml:114 msgid "" "Pass advanced options to gpg. With adv --recv-key you can download the " "public key." @@ -2588,7 +2588,7 @@ msgstr "" "«adv --recv-key»." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:132 +#: apt-key.8.xml:126 msgid "" "Update the local keyring with the archive keyring and remove from the local " "keyring the archive keys which are no longer valid. The archive keyring is " @@ -2602,7 +2602,7 @@ msgstr "" "en &keyring-distro;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:146 +#: apt-key.8.xml:140 msgid "" "Perform an update working similarly to the <command>update</command> command " "above, but get the archive keyring from a URI instead and validate it " @@ -2620,12 +2620,12 @@ msgstr "" "de APT para Ubuntu sí es compatible." #. type: Content of: <refentry><refsect1><title> -#: apt-key.8.xml:162 apt-cdrom.8.xml:82 +#: apt-key.8.xml:156 apt-cdrom.8.xml:76 msgid "Options" msgstr "Opciones" #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:163 +#: apt-key.8.xml:157 msgid "" "Note that options need to be defined before the commands described in the " "previous section." @@ -2634,7 +2634,7 @@ msgstr "" "descritas en el sección anterior." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:166 +#: apt-key.8.xml:160 msgid "" "With this option it is possible to specify a particular keyring file the " "command should operate on. The default is that a command is executed on the " @@ -2651,49 +2651,49 @@ msgstr "" "es, por ejemplo, que las claves nuevas se añaden a este fichero." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:181 +#: apt-key.8.xml:175 msgid "<filename>/etc/apt/trustdb.gpg</filename>" msgstr "<filename>/etc/apt/trustdb.gpg</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:182 +#: apt-key.8.xml:176 msgid "Local trust database of archive keys." msgstr "Base de datos local de las claves de confianza de archivos Debian" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:185 +#: apt-key.8.xml:179 msgid "&keyring-filename;" msgstr "&keyring-filename;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:186 +#: apt-key.8.xml:180 msgid "Keyring of &keyring-distro; archive trusted keys." msgstr "Registro de las claves de confianza del archivo de &keyring-distro;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:189 +#: apt-key.8.xml:183 msgid "&keyring-removed-filename;" msgstr "&keyring-removed-filename;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:190 +#: apt-key.8.xml:184 msgid "Keyring of &keyring-distro; archive removed trusted keys." msgstr "" "Registro de las claves de confianza eliminadas del archivo de &keyring-" "distro;." #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:199 +#: apt-key.8.xml:193 msgid "&apt-get;, &apt-secure;" msgstr "&apt-get;, &apt-secure;" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-mark.8.xml:35 +#: apt-mark.8.xml:29 msgid "mark/unmark a package as being automatically-installed" msgstr "Marca o desmarca un paquete como instalado automáticamente" #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:41 +#: apt-mark.8.xml:35 msgid "" "<command>apt-mark</command> will change whether a package has been marked as " "being automatically installed." @@ -2702,7 +2702,7 @@ msgstr "" "o no." #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:45 +#: apt-mark.8.xml:39 msgid "" "When you request that a package is installed, and as a result other packages " "are installed to satisfy its dependencies, the dependencies are marked as " @@ -2718,7 +2718,7 @@ msgstr "" "eliminará." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:54 +#: apt-mark.8.xml:48 msgid "" "<literal>auto</literal> is used to mark a package as being automatically " "installed, which will cause the package to be removed when no more manually " @@ -2729,7 +2729,7 @@ msgstr "" "ningún otro paquete manualmente instalado depende de este paquete." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:62 +#: apt-mark.8.xml:56 msgid "" "<literal>manual</literal> is used to mark a package as being manually " "installed, which will prevent the package from being automatically removed " @@ -2740,7 +2740,7 @@ msgstr "" "otro depende de él." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:70 +#: apt-mark.8.xml:64 msgid "" "<literal>hold</literal> is used to mark a package as held back, which will " "prevent the package from being automatically installed, upgraded or " @@ -2755,7 +2755,7 @@ msgstr "" "file</option> tenga efecto sobre él." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:80 +#: apt-mark.8.xml:74 msgid "" "<literal>unhold</literal> is used to cancel a previously set hold on a " "package to allow all actions again." @@ -2764,7 +2764,7 @@ msgstr "" "sobre un paquete previamente marcado con «hold»." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:86 +#: apt-mark.8.xml:80 msgid "" "<literal>showauto</literal> is used to print a list of automatically " "installed packages with each package on a new line. All automatically " @@ -2777,7 +2777,7 @@ msgstr "" "paquetes solo se muestran aquellos automáticamente instalados." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:94 +#: apt-mark.8.xml:88 msgid "" "<literal>showmanual</literal> can be used in the same way as " "<literal>showauto</literal> except that it will print a list of manually " @@ -2788,7 +2788,7 @@ msgstr "" "paquetes manualmente instalados." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:101 +#: apt-mark.8.xml:95 msgid "" "<literal>showhold</literal> is used to print a list of packages on hold in " "the same way as for the other show commands." @@ -2797,7 +2797,7 @@ msgstr "" "de la misma forma que las otras órdenes «show»." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:117 +#: apt-mark.8.xml:111 msgid "" "Read/Write package stats from the filename given with the parameter " "&synopsis-param-filename; instead of from the default location, which is " @@ -2811,7 +2811,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:138 +#: apt-mark.8.xml:132 msgid "" "<command>apt-mark</command> returns zero on normal operation, non-zero on " "error." @@ -2820,12 +2820,12 @@ msgstr "" "100 en caso de error." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-secure.8.xml:49 +#: apt-secure.8.xml:43 msgid "Archive authentication support for APT" msgstr "Compatibilidad con la autenticación en el archivo para APT" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:54 +#: apt-secure.8.xml:48 msgid "" "Starting with version 0.6, <command>apt</command> contains code that does " "signature checking of the Release file for all archives. This ensures that " @@ -2838,7 +2838,7 @@ msgstr "" "sin acceso a la clave con la que se firmó el fichero «Release»." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:62 +#: apt-secure.8.xml:56 msgid "" "If a package comes from a archive without a signature, or with a signature " "that apt does not have a key for, that package is considered untrusted, and " @@ -2854,7 +2854,7 @@ msgstr "" "ellas." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:71 +#: apt-secure.8.xml:65 msgid "" "The package frontends &apt-get;, &aptitude; and &synaptic; support this new " "authentication feature." @@ -2863,12 +2863,12 @@ msgstr "" "pueden usar esta nueva funcionalidad de autenticación." #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:76 +#: apt-secure.8.xml:70 msgid "Trusted archives" msgstr "Archivos de confianza" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:79 +#: apt-secure.8.xml:73 msgid "" "The chain of trust from an apt archive to the end user is made up of several " "steps. <command>apt-secure</command> is the last step in this chain; " @@ -2885,7 +2885,7 @@ msgstr "" "asegurar que la integridad del archivo es correcta." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:87 +#: apt-secure.8.xml:81 msgid "" "apt-secure does not review signatures at a package level. If you require " "tools to do this you should look at <command>debsig-verify</command> and " @@ -2898,7 +2898,7 @@ msgstr "" "devscripts respectivamente)." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:94 +#: apt-secure.8.xml:88 msgid "" "The chain of trust in Debian starts when a maintainer uploads a new package " "or a new version of a package to the Debian archive. In order to become " @@ -2916,7 +2916,7 @@ msgstr "" "identidad del propietario de la clave." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:104 +#: apt-secure.8.xml:98 msgid "" "Once the uploaded package is verified and included in the archive, the " "maintainer signature is stripped off, and checksums of the package are " @@ -2938,7 +2938,7 @@ msgstr "" "&keyring-distro; en el paquete &keyring-package; package." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:115 +#: apt-secure.8.xml:109 msgid "" "End users can check the signature of the Release file, extract a checksum of " "a package from it and compare it with the checksum of the package they " @@ -2950,7 +2950,7 @@ msgstr "" "APT." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:120 +#: apt-secure.8.xml:114 msgid "" "Notice that this is distinct from checking signatures on a per package " "basis. It is designed to prevent two possible attacks:" @@ -2959,7 +2959,7 @@ msgstr "" "individualmente. Se diseñó para prevenir dos posible ataques:" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:125 +#: apt-secure.8.xml:119 msgid "" "<literal>Network \"man in the middle\" attacks</literal>. Without signature " "checking, malicious agents can introduce themselves into the package " @@ -2975,7 +2975,7 @@ msgstr "" "envenenamiento de ARP o de DNS)." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:133 +#: apt-secure.8.xml:127 msgid "" "<literal>Mirror network compromise</literal>. Without signature checking, a " "malicious agent can compromise a mirror host and modify the files in it to " @@ -2988,7 +2988,7 @@ msgstr "" "usuarios que descarguen paquetes de dicha réplica." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:140 +#: apt-secure.8.xml:134 msgid "" "However, it does not defend against a compromise of the Debian master server " "itself (which signs the packages) or against a compromise of the key used to " @@ -3001,12 +3001,12 @@ msgstr "" "una firma por paquete." #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:146 +#: apt-secure.8.xml:140 msgid "User configuration" msgstr "Configuración de usuario" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:148 +#: apt-secure.8.xml:142 msgid "" "<command>apt-key</command> is the program that manages the list of keys used " "by apt. It can be used to add or remove keys, although an installation of " @@ -3020,7 +3020,7 @@ msgstr "" "paquetes de Debian." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:155 +#: apt-secure.8.xml:149 msgid "" "In order to add a new key you need to first download it (you should make " "sure you are using a trusted communication channel when retrieving it), add " @@ -3037,12 +3037,12 @@ msgstr "" "archivos de paquetes configurados." #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:164 +#: apt-secure.8.xml:158 msgid "Archive configuration" msgstr "Configuración del archivo" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:166 +#: apt-secure.8.xml:160 msgid "" "If you want to provide archive signatures in an archive under your " "maintenance you have to:" @@ -3051,7 +3051,7 @@ msgstr "" "que:" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:171 +#: apt-secure.8.xml:165 msgid "" "<emphasis>Create a toplevel Release file</emphasis>, if it does not exist " "already. You can do this by running <command>apt-ftparchive release</" @@ -3062,7 +3062,7 @@ msgstr "" "utils)." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:176 +#: apt-secure.8.xml:170 msgid "" "<emphasis>Sign it</emphasis>. You can do this by running <command>gpg --" "clearsign -o InRelease Release</command> and <command>gpg -abs -o Release." @@ -3073,7 +3073,7 @@ msgstr "" "o Release.gpg Release</command>." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:180 +#: apt-secure.8.xml:174 msgid "" "<emphasis>Publish the key fingerprint</emphasis>, that way your users will " "know what key they need to import in order to authenticate the files in the " @@ -3084,7 +3084,7 @@ msgstr "" "del archivo." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:187 +#: apt-secure.8.xml:181 msgid "" "Whenever the contents of the archive change (new packages are added or " "removed) the archive maintainer has to follow the first two steps outlined " @@ -3095,7 +3095,7 @@ msgstr "" "explicados anteriormente." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:195 +#: apt-secure.8.xml:189 msgid "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " "&debsign;, &debsig-verify;, &gpg;" @@ -3104,7 +3104,7 @@ msgstr "" "&debsign;, &debsig-verify;, &gpg;" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:199 +#: apt-secure.8.xml:193 msgid "" "For more background information you might want to review the <ulink url=" "\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7\">Debian " @@ -3121,12 +3121,12 @@ msgstr "" "una Distribución</ulink> de V. Alex Brennen." #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:212 +#: apt-secure.8.xml:206 msgid "Manpage Authors" msgstr "Autores de la página del manual" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:214 +#: apt-secure.8.xml:208 msgid "" "This man-page is based on the work of Javier Fernández-Sanguino Peña, Isaac " "Jones, Colin Walters, Florian Weimer and Michael Vogt." @@ -3135,12 +3135,12 @@ msgstr "" "Peña, Isaac Jones, Colin Walters, Florian Weimer y Michael Vogt." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-cdrom.8.xml:34 +#: apt-cdrom.8.xml:28 msgid "APT CD-ROM management utility" msgstr "Herramienta de APT para la gestión de discos ópticos" #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:40 +#: apt-cdrom.8.xml:34 msgid "" "<command>apt-cdrom</command> is used to add a new CD-ROM to APT's list of " "available sources. <command>apt-cdrom</command> takes care of determining " @@ -3153,7 +3153,7 @@ msgstr "" "verifica los ficheros de índice." #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:47 +#: apt-cdrom.8.xml:41 msgid "" "It is necessary to use <command>apt-cdrom</command> to add CDs to the APT " "system; it cannot be done by hand. Furthermore each disc in a multi-CD set " @@ -3165,7 +3165,7 @@ msgstr "" "errores de grabación." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:58 +#: apt-cdrom.8.xml:52 msgid "" "<literal>add</literal> is used to add a new disc to the source list. It will " "unmount the CD-ROM device, prompt for a disc to be inserted and then proceed " @@ -3180,7 +3180,7 @@ msgstr "" "título descriptivo." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:66 +#: apt-cdrom.8.xml:60 msgid "" "APT uses a CD-ROM ID to track which disc is currently in the drive and " "maintains a database of these IDs in <filename>&statedir;/cdroms.list</" @@ -3191,7 +3191,7 @@ msgstr "" "identificadores en <filename>&statedir;/cdroms.list</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:74 +#: apt-cdrom.8.xml:68 msgid "" "A debugging tool to report the identity of the current disc as well as the " "stored file name" @@ -3200,7 +3200,7 @@ msgstr "" "así como del nombre del fichero guardado." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:87 +#: apt-cdrom.8.xml:81 #, fuzzy #| msgid "" #| "Mount point; specify the location to mount the CD-ROM. This mount point " @@ -3217,7 +3217,7 @@ msgstr "" "mount</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:95 +#: apt-cdrom.8.xml:89 msgid "" "Mount point; specify the location to mount the CD-ROM. This mount point must " "be listed in <filename>/etc/fstab</filename> and properly configured. " @@ -3229,7 +3229,7 @@ msgstr "" "mount</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:104 +#: apt-cdrom.8.xml:98 msgid "" "Rename a disc; change the label of a disc or override the disc's given " "label. This option will cause <command>apt-cdrom</command> to prompt for a " @@ -3241,7 +3241,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:113 +#: apt-cdrom.8.xml:107 msgid "" "No mounting; prevent <command>apt-cdrom</command> from mounting and " "unmounting the mount point. Configuration Item: <literal>APT::CDROM::" @@ -3251,7 +3251,7 @@ msgstr "" "de montaje. Opción de configuración: <literal>APT::CDROM::NoMount</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:121 +#: apt-cdrom.8.xml:115 msgid "" "Fast Copy; Assume the package files are valid and do not check every " "package. This option should be used only if <command>apt-cdrom</command> has " @@ -3264,7 +3264,7 @@ msgstr "" "de configuración: <literal>APT::CDROM::Fast</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:131 +#: apt-cdrom.8.xml:125 msgid "" "Thorough Package Scan; This option may be needed with some old Debian " "1.1/1.2 discs that have Package files in strange places. It takes much " @@ -3276,7 +3276,7 @@ msgstr "" "pero encontrará todo el contenido." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:142 +#: apt-cdrom.8.xml:136 msgid "" "No Changes; Do not change the &sources-list; file and do not write index " "files. Everything is still checked however. Configuration Item: " @@ -3287,12 +3287,12 @@ msgstr "" "CDROM::NoAct</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:155 +#: apt-cdrom.8.xml:149 msgid "&apt-conf;, &apt-get;, &sources-list;" msgstr "&apt-conf;, &apt-get;, &sources-list;" #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:160 +#: apt-cdrom.8.xml:154 msgid "" "<command>apt-cdrom</command> returns zero on normal operation, decimal 100 " "on error." @@ -3301,12 +3301,12 @@ msgstr "" "100 en caso de error." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-config.8.xml:35 +#: apt-config.8.xml:29 msgid "APT Configuration Query program" msgstr "Programa para consultar la configuración de APT" #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:41 +#: apt-config.8.xml:35 msgid "" "<command>apt-config</command> is an internal program used by various " "portions of the APT suite to provide consistent configurability. It accesses " @@ -3320,7 +3320,7 @@ msgstr "" "sencillo de usar por aplicaciones con scripts." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:53 +#: apt-config.8.xml:47 msgid "" "shell is used to access the configuration information from a shell script. " "It is given pairs of arguments, the first being a shell variable and the " @@ -3336,7 +3336,7 @@ msgstr "" "manera en un script de intérprete de órdenes:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> -#: apt-config.8.xml:61 +#: apt-config.8.xml:55 #, no-wrap msgid "" "OPTS=\"-f\"\n" @@ -3348,7 +3348,7 @@ msgstr "" "eval $RES\n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:66 +#: apt-config.8.xml:60 msgid "" "This will set the shell environment variable $OPTS to the value of MyApp::" "options with a default of <option>-f</option>." @@ -3357,7 +3357,7 @@ msgstr "" "valor de MyApp::Opciones, y con <option>-f</option> por omisión." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:70 +#: apt-config.8.xml:64 msgid "" "The configuration item may be postfixed with a /[fdbi]. f returns file " "names, d returns directories, b returns true or false and i returns an " @@ -3370,12 +3370,12 @@ msgstr "" "internamente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:79 +#: apt-config.8.xml:73 msgid "Just show the contents of the configuration space." msgstr "Sólo muestra el contenido del espacio de configuración." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:92 +#: apt-config.8.xml:86 msgid "" "Include options which have an empty value. This is the default, so use --no-" "empty to remove them from the output." @@ -3384,12 +3384,12 @@ msgstr "" "predeterminado, utilice «--no-empty» para eliminarlos de la salida." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-config.8.xml:97 +#: apt-config.8.xml:91 msgid "%f "%v";%n" msgstr "%f "%v";%n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:98 +#: apt-config.8.xml:92 msgid "" "Defines the output of each config option. %t will be replaced with " "its individual name, %f with its full hierarchical name and %v " @@ -3407,13 +3407,13 @@ msgstr "" "utilizando %%." #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:112 apt-extracttemplates.1.xml:73 apt-sortpkgs.1.xml:66 -#: apt-ftparchive.1.xml:610 +#: apt-config.8.xml:106 apt-extracttemplates.1.xml:67 apt-sortpkgs.1.xml:60 +#: apt-ftparchive.1.xml:604 msgid "&apt-conf;" msgstr "&apt-conf;" #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:117 +#: apt-config.8.xml:111 msgid "" "<command>apt-config</command> returns zero on normal operation, decimal 100 " "on error." @@ -3422,27 +3422,27 @@ msgstr "" "valor 100 en caso de error." #. type: Content of: <refentry><refentryinfo><author><contrib> -#: apt.conf.5.xml:22 +#: apt.conf.5.xml:16 msgid "Initial documentation of Debug::*." msgstr "Documentación inicial de Debug::*." #. type: Content of: <refentry><refentryinfo><author><email> -#: apt.conf.5.xml:23 +#: apt.conf.5.xml:17 msgid "dburrows@debian.org" msgstr "dburrows@debian.org" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt.conf.5.xml:33 apt_preferences.5.xml:27 sources.list.5.xml:28 +#: apt.conf.5.xml:27 apt_preferences.5.xml:21 sources.list.5.xml:22 msgid "5" msgstr "5" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt.conf.5.xml:40 +#: apt.conf.5.xml:34 msgid "Configuration file for APT" msgstr "Fichero de configuración de APT" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:44 +#: apt.conf.5.xml:38 msgid "" "<filename>/etc/apt/apt.conf</filename> is the main configuration file shared " "by all the tools in the APT suite of tools, though it is by no means the " @@ -3456,7 +3456,7 @@ msgstr "" "ofrecer un entorno homogéneo." #. type: Content of: <refentry><refsect1><orderedlist><para> -#: apt.conf.5.xml:50 +#: apt.conf.5.xml:44 msgid "" "When an APT tool starts up it will read the configuration files in the " "following order:" @@ -3465,7 +3465,7 @@ msgstr "" "en el siguiente orden:" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:52 +#: apt.conf.5.xml:46 msgid "" "the file specified by the <envar>APT_CONFIG</envar> environment variable (if " "any)" @@ -3474,7 +3474,7 @@ msgstr "" "existir)." #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:54 +#: apt.conf.5.xml:48 msgid "" "all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending " "order which have either no or \"<literal>conf</literal>\" as filename " @@ -3493,7 +3493,7 @@ msgstr "" "forma silenciosa." #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:61 +#: apt.conf.5.xml:55 msgid "" "the main configuration file specified by <literal>Dir::Etc::main</literal>" msgstr "" @@ -3501,7 +3501,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:63 +#: apt.conf.5.xml:57 msgid "" "the command line options are applied to override the configuration " "directives or to load even more configuration files." @@ -3510,12 +3510,12 @@ msgstr "" "configuración o para cargar más ficheros de configuración." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:67 +#: apt.conf.5.xml:61 msgid "Syntax" msgstr "Sintaxis" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:68 +#: apt.conf.5.xml:62 msgid "" "The configuration file is organized in a tree with options organized into " "functional groups. Option specification is given with a double colon " @@ -3530,7 +3530,7 @@ msgstr "" "APT. Las opciones no se heredan de sus grupos paternos." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:74 +#: apt.conf.5.xml:68 msgid "" "Syntactically the configuration language is modeled after what the ISC tools " "such as bind and dhcp use. Lines starting with <literal>//</literal> are " @@ -3556,7 +3556,7 @@ msgstr "" "llaves, como:" #. type: Content of: <refentry><refsect1><informalexample><programlisting> -#: apt.conf.5.xml:87 +#: apt.conf.5.xml:81 #, no-wrap msgid "" "APT {\n" @@ -3574,7 +3574,7 @@ msgstr "" "};\n" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:95 +#: apt.conf.5.xml:89 msgid "" "with newlines placed to make it more readable. Lists can be created by " "opening a scope and including a single string enclosed in quotes followed by " @@ -3586,13 +3586,13 @@ msgstr "" "separadas por punto y coma." #. type: Content of: <refentry><refsect1><informalexample><programlisting> -#: apt.conf.5.xml:100 +#: apt.conf.5.xml:94 #, no-wrap msgid "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" msgstr "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:103 +#: apt.conf.5.xml:97 msgid "" "In general the sample configuration file &configureindex; is a good guide " "for how it should look." @@ -3601,7 +3601,7 @@ msgstr "" "buena guía para entender su aspecto." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:106 +#: apt.conf.5.xml:100 msgid "" "Case is not significant in names of configuration items, so in the previous " "example you could use <literal>dpkg::pre-install-pkgs</literal>." @@ -3611,7 +3611,7 @@ msgstr "" "<literal>dpkg::pre-install-pkgs</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:109 +#: apt.conf.5.xml:103 msgid "" "Names for the configuration items are optional if a list is defined as can " "be seen in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. If " @@ -3626,7 +3626,7 @@ msgstr "" "cualquier otra opción reasignando un nuevo valor a la opción." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:114 +#: apt.conf.5.xml:108 msgid "" "Two special commands are defined: <literal>#include</literal> (which is " "deprecated and not supported by alternative implementations) and " @@ -3646,7 +3646,7 @@ msgstr "" "acabar con punto y coma)." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:124 +#: apt.conf.5.xml:118 msgid "" "The <literal>#clear</literal> command is the only way to delete a list or a " "complete scope. Reopening a scope (or using the syntax described below with " @@ -3662,7 +3662,7 @@ msgstr "" "los ámbitos no se pueden redefinir, sólo eliminar." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:132 +#: apt.conf.5.xml:126 msgid "" "All of the APT tools take an -o option which allows an arbitrary " "configuration directive to be specified on the command line. The syntax is a " @@ -3681,7 +3681,7 @@ msgstr "" "sintaxis de ámbitos en la línea de órdenes)." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:140 +#: apt.conf.5.xml:134 msgid "" "Note that appending items to a list using <literal>::</literal> only works " "for one item per line, and that you should not use it in combination with " @@ -3711,12 +3711,12 @@ msgstr "" "declaraciones ahora que APT no muestra fallos de forma explícita." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:155 +#: apt.conf.5.xml:149 msgid "The APT Group" msgstr "El grupo APT" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:156 +#: apt.conf.5.xml:150 msgid "" "This group of options controls general APT behavior as well as holding the " "options for all of the tools." @@ -3725,7 +3725,7 @@ msgstr "" "mantiene las opciones para todas las herramientas." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:161 +#: apt.conf.5.xml:155 msgid "" "System Architecture; sets the architecture to use when fetching files and " "parsing package lists. The internal default is the architecture apt was " @@ -3736,7 +3736,7 @@ msgstr "" "arquitectura para la que apt se compiló." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:168 +#: apt.conf.5.xml:162 msgid "" "All Architectures the system supports. For instance, CPUs implementing the " "<literal>amd64</literal> (also called <literal>x86-64</literal>) " @@ -3758,7 +3758,7 @@ msgstr "" "add-architecture</command>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:182 +#: apt.conf.5.xml:176 msgid "" "List of all build profiles enabled for build-dependency resolution, without " "the \"<literal>profile.</literal>\" namespace prefix. By default this list " @@ -3767,7 +3767,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:190 +#: apt.conf.5.xml:184 msgid "" "Default release to install packages from if more than one version is " "available. Contains release name, codename or release version. Examples: " @@ -3781,7 +3781,7 @@ msgstr "" "«5.0*». Consulte también &apt-preferences;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:196 +#: apt.conf.5.xml:190 msgid "" "Ignore held packages; this global option causes the problem resolver to " "ignore held packages in its decision making." @@ -3790,7 +3790,7 @@ msgstr "" "problemas ignore los paquetes retenidos en la toma de decisiones." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:201 +#: apt.conf.5.xml:195 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " @@ -3804,7 +3804,7 @@ msgstr "" "mecanismo directo para reinstalarlos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:209 +#: apt.conf.5.xml:203 msgid "" "Defaults to on, which will cause APT to install essential and important " "packages as soon as possible in an install/upgrade operation, in order to " @@ -3831,7 +3831,7 @@ msgstr "" "del paquete A, ya que no se satisface la dependencia sobre éste." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:221 +#: apt.conf.5.xml:215 msgid "" "The immediate configuration marker is also applied in the potentially " "problematic case of circular dependencies, since a dependency with the " @@ -3860,7 +3860,7 @@ msgstr "" "anteriormente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:234 +#: apt.conf.5.xml:228 msgid "" "Before a big operation like <literal>dist-upgrade</literal> is run with this " "option disabled you should try to explicitly <literal>install</literal> the " @@ -3877,7 +3877,7 @@ msgstr "" "para que así pueden mejorar y corregir el proceso de actualización." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:245 +#: apt.conf.5.xml:239 msgid "" "Never enable this option unless you <emphasis>really</emphasis> know what " "you are doing. It permits APT to temporarily remove an essential package to " @@ -3898,7 +3898,7 @@ msgstr "" "sobre la que estos paquetes dependen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:257 +#: apt.conf.5.xml:251 msgid "" "APT uses since version 0.7.26 a resizable memory mapped cache file to store " "the available information. <literal>Cache-Start</literal> acts as a hint of " @@ -3935,14 +3935,14 @@ msgstr "" "desactiva el crecimiento automático de la caché." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:273 +#: apt.conf.5.xml:267 msgid "Defines which packages are considered essential build dependencies." msgstr "" "Define los paquetes que se consideran dependencias de construcción " "esenciales." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:277 +#: apt.conf.5.xml:271 msgid "" "The Get subsection controls the &apt-get; tool; please see its documentation " "for more information about the options here." @@ -3951,7 +3951,7 @@ msgstr "" "documentación para más información sobre esta opción." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:282 +#: apt.conf.5.xml:276 msgid "" "The Cache subsection controls the &apt-cache; tool; please see its " "documentation for more information about the options here." @@ -3960,7 +3960,7 @@ msgstr "" "documentación para más información sobre esta opción." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:287 +#: apt.conf.5.xml:281 msgid "" "The CDROM subsection controls the &apt-cdrom; tool; please see its " "documentation for more information about the options here." @@ -3969,12 +3969,12 @@ msgstr "" "documentación para más información sobre esta opción." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:293 +#: apt.conf.5.xml:287 msgid "The Acquire Group" msgstr "El grupo Acquire" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:294 +#: apt.conf.5.xml:288 msgid "" "The <literal>Acquire</literal> group of options controls the download of " "packages as well as the various \"acquire methods\" responsible for the " @@ -3985,7 +3985,7 @@ msgstr "" "sí mismo (consulte también &sources-list;)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:301 +#: apt.conf.5.xml:295 msgid "" "Security related option defaulting to true, as giving a Release file's " "validation an expiration date prevents replay attacks over a long timescale, " @@ -4006,7 +4006,7 @@ msgstr "" "utilizar la opción <literal>Max-ValidTime</literal> a continuación." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:314 +#: apt.conf.5.xml:308 msgid "" "Maximum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -4025,7 +4025,7 @@ msgstr "" "se pueden realizar añadiendo la etiqueta del archivo al nombre de opción." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:326 +#: apt.conf.5.xml:320 msgid "" "Minimum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -4045,7 +4045,7 @@ msgstr "" "y deben utilizar añadiendo la etiqueta del archivo al nombre de opción." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:338 +#: apt.conf.5.xml:332 msgid "" "Try to download deltas called <literal>PDiffs</literal> for indexes (like " "<filename>Packages</filename> files) instead of downloading whole ones. True " @@ -4056,7 +4056,7 @@ msgstr "" "enteros. Su valor predeterminado es «true»." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:341 +#: apt.conf.5.xml:335 msgid "" "Two sub-options to limit the use of PDiffs are also available: " "<literal>FileLimit</literal> can be used to specify a maximum number of " @@ -4074,7 +4074,7 @@ msgstr "" "parches." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:351 +#: apt.conf.5.xml:345 msgid "" "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" "literal> or <literal>access</literal> which determines how APT parallelizes " @@ -4089,7 +4089,7 @@ msgstr "" "se abrirá una conexión por cada tipo de URI." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:359 +#: apt.conf.5.xml:353 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." @@ -4098,7 +4098,7 @@ msgstr "" "intentar obtener los ficheros fallidos el número de veces proporcionado." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:364 +#: apt.conf.5.xml:358 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." @@ -4108,7 +4108,7 @@ msgstr "" "«true» de forma predeterminada." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:369 +#: apt.conf.5.xml:363 msgid "" "<literal>http::Proxy</literal> sets the default proxy to use for HTTP URIs. " "It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</" @@ -4128,7 +4128,7 @@ msgstr "" "opciones anteriores." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:377 +#: apt.conf.5.xml:371 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy not to use its cached " @@ -4147,7 +4147,7 @@ msgstr "" "impedir que el proxy contamine la caché con ficheros «.deb» (de gran tamaño)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:387 apt.conf.5.xml:475 +#: apt.conf.5.xml:381 apt.conf.5.xml:469 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method; this value applies to the connection as well as the data timeout." @@ -4157,7 +4157,7 @@ msgstr "" "y a la recepción de datos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:390 +#: apt.conf.5.xml:384 msgid "" "The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e." @@ -4177,7 +4177,7 @@ msgstr "" "cumplir la especificación HTTP/1.1." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:397 +#: apt.conf.5.xml:391 msgid "" "<literal>Acquire::http::AllowRedirect</literal> controls whether APT will " "follow redirects, which is enabled by default." @@ -4186,7 +4186,7 @@ msgstr "" "redirección; activado por omisión." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:400 +#: apt.conf.5.xml:394 #, fuzzy #| msgid "" #| "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" @@ -4208,7 +4208,7 @@ msgstr "" "implícitamente la descarga simultánea desde varios servidores)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:407 +#: apt.conf.5.xml:401 msgid "" "<literal>Acquire::http::User-Agent</literal> can be used to set a different " "User-Agent for the http download method as some proxies allow access for " @@ -4219,7 +4219,7 @@ msgstr "" "permiten el acceso para clientes que usan un identificador conocido." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:411 +#: apt.conf.5.xml:405 msgid "" "<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify " "an external command to discover the http proxy to use. Apt expects the " @@ -4233,7 +4233,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:429 +#: apt.conf.5.xml:423 msgid "" "The <literal>Cache-control</literal>, <literal>Timeout</literal>, " "<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and " @@ -4250,7 +4250,7 @@ msgstr "" "<literal>Pipeline-Depth</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:437 +#: apt.conf.5.xml:431 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is the " @@ -4290,7 +4290,7 @@ msgstr "" "SslForceVersion</literal> es la opción correspondiente para cada servidor." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:458 +#: apt.conf.5.xml:452 msgid "" "<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. " "It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</" @@ -4323,7 +4323,7 @@ msgstr "" "<literal>$(SITE)</literal> y <literal>$(SITE_PORT)</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:478 +#: apt.conf.5.xml:472 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on; it works in nearly every environment. However, " @@ -4340,7 +4340,7 @@ msgstr "" "ejemplos)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:485 +#: apt.conf.5.xml:479 msgid "" "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" "envar> environment variable to an HTTP URL - see the discussion of the http " @@ -4354,7 +4354,7 @@ msgstr "" "a su poca eficiencia." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:490 +#: apt.conf.5.xml:484 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@ -4370,13 +4370,13 @@ msgstr "" "compatibles con la RFC 2428." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:504 +#: apt.conf.5.xml:498 #, no-wrap msgid "/cdrom/::Mount \"foo\";" msgstr "/cdrom/::Mount \"algo\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:499 +#: apt.conf.5.xml:493 msgid "" "For URIs using the <literal>cdrom</literal> method, the only configurable " "option is the mount point, <literal>cdrom::Mount</literal>, which must be " @@ -4398,7 +4398,7 @@ msgstr "" "especificar órdenes para desmontar mediante UMount." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:512 +#: apt.conf.5.xml:506 msgid "" "For GPGV URIs the only configurable option is <literal>gpgv::Options</" "literal>, which passes additional parameters to gpgv." @@ -4407,13 +4407,13 @@ msgstr "" "Options</literal>, que introduce parámetros adicionales a gpgv." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:523 +#: apt.conf.5.xml:517 #, no-wrap msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" msgstr "Acquire::CompressionTypes::<replaceable>extensión-del-fichero</replaceable> \"<replaceable>nombre-del-método</replaceable>\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:518 +#: apt.conf.5.xml:512 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " @@ -4433,19 +4433,19 @@ msgstr "" "\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:528 +#: apt.conf.5.xml:522 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "Acquire::CompressionTypes::Order:: \"gz\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:531 +#: apt.conf.5.xml:525 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:524 +#: apt.conf.5.xml:518 msgid "" "Also, the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " @@ -4477,13 +4477,13 @@ msgstr "" "explícita ya que se añadirá de forma automática." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:538 +#: apt.conf.5.xml:532 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:533 +#: apt.conf.5.xml:527 msgid "" "Note that the <literal>Dir::Bin::<replaceable>Methodname</replaceable></" "literal> will be checked at run time. If this option has been set, the " @@ -4508,7 +4508,7 @@ msgstr "" "omite la lista definida, simplemente prefija la lista con este tipo." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:543 +#: apt.conf.5.xml:537 msgid "" "The special type <literal>uncompressed</literal> can be used to give " "uncompressed files a preference, but note that most archives don't provide " @@ -4520,7 +4520,7 @@ msgstr "" "así que habitualmente esto solo sirve con réplicas locales." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:550 +#: apt.conf.5.xml:544 msgid "" "When downloading <literal>gzip</literal> compressed indexes (Packages, " "Sources, or Translations), keep them gzip compressed locally instead of " @@ -4534,7 +4534,7 @@ msgstr "" "paquetes locales. El valor predeterminado es «false»." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:558 +#: apt.conf.5.xml:552 msgid "" "The Languages subsection controls which <filename>Translation</filename> " "files are downloaded and in which order APT tries to display the description-" @@ -4553,13 +4553,13 @@ msgstr "" "idioma (especialmente para los códigos de idioma largos)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting> -#: apt.conf.5.xml:575 +#: apt.conf.5.xml:569 #, no-wrap msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" msgstr "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; }" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:563 +#: apt.conf.5.xml:557 msgid "" "The default list includes \"environment\" and \"en\". " "\"<literal>environment</literal>\" has a special meaning here: it will be " @@ -4598,7 +4598,7 @@ msgstr "" "\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:576 +#: apt.conf.5.xml:570 msgid "" "Note: To prevent problems resulting from APT being executed in different " "environments (e.g. by different users or by other programs) all Translation " @@ -4612,22 +4612,22 @@ msgstr "" "implícito)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:585 +#: apt.conf.5.xml:579 msgid "When downloading, force to use only the IPv4 protocol." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:591 +#: apt.conf.5.xml:585 msgid "When downloading, force to use only the IPv6 protocol." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:598 +#: apt.conf.5.xml:592 msgid "Directories" msgstr "Directorios" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:600 +#: apt.conf.5.xml:594 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@ -4648,7 +4648,7 @@ msgstr "" "filename> ó <filename>./</filename>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:607 +#: apt.conf.5.xml:601 #, fuzzy #| msgid "" #| "<literal>Dir::Cache</literal> contains locations pertaining to local " @@ -4682,7 +4682,7 @@ msgstr "" "directorio predeterminado está en <literal>Dir::Cache</literal>" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:617 +#: apt.conf.5.xml:611 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -4698,7 +4698,7 @@ msgstr "" "<envar>APT_CONFIG</envar>)." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:623 +#: apt.conf.5.xml:617 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -4709,7 +4709,7 @@ msgstr "" "Al finalizar este proceso carga el fichero de configuración principal." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:627 +#: apt.conf.5.xml:621 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@ -4726,7 +4726,7 @@ msgstr "" "literal> especifican la ubicación de sus respectivos programas." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:635 +#: apt.conf.5.xml:629 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -4747,7 +4747,7 @@ msgstr "" "staging/var/lib/dpkg/status</filename>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:648 +#: apt.conf.5.xml:642 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -4765,12 +4765,12 @@ msgstr "" "de expresiones regulares." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:657 +#: apt.conf.5.xml:651 msgid "APT in DSelect" msgstr "APT con DSelect" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:659 +#: apt.conf.5.xml:653 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -4781,7 +4781,7 @@ msgstr "" "encuentran en la sección <literal>DSelect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:664 +#: apt.conf.5.xml:658 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@ -4803,7 +4803,7 @@ msgstr "" "realiza esta acción antes de descargar paquetes nuevos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:678 +#: apt.conf.5.xml:672 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." @@ -4812,7 +4812,7 @@ msgstr "" "la línea de ordenes al ejecutar la fase de instalación." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:683 +#: apt.conf.5.xml:677 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." @@ -4821,7 +4821,7 @@ msgstr "" "la línea de ordenes al ejecutar la fase de actualización." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:688 +#: apt.conf.5.xml:682 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@ -4831,12 +4831,12 @@ msgstr "" "preguntará en caso de error." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:694 +#: apt.conf.5.xml:688 msgid "How APT calls &dpkg;" msgstr "Invocación de APT a dpkg" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:695 +#: apt.conf.5.xml:689 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@ -4845,7 +4845,7 @@ msgstr "" "se encuentran en la sección <literal>DPkg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:700 +#: apt.conf.5.xml:694 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -4856,7 +4856,7 @@ msgstr "" "introduce a &dpkg; como un sólo argumento." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:706 +#: apt.conf.5.xml:700 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4869,7 +4869,7 @@ msgstr "" "sh</filename>; en caso de fallo, APT cancela la acción." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:713 +#: apt.conf.5.xml:707 #, fuzzy #| msgid "" #| "This is a list of shell commands to run before invoking &dpkg;. Like " @@ -4893,7 +4893,7 @@ msgstr "" "la entrada estándar." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:720 +#: apt.conf.5.xml:714 #, fuzzy #| msgid "" #| "Version 2 of this protocol dumps more information, including the protocol " @@ -4915,7 +4915,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:725 +#: apt.conf.5.xml:719 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -4926,7 +4926,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:732 +#: apt.conf.5.xml:726 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</" @@ -4937,7 +4937,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:742 +#: apt.conf.5.xml:736 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." @@ -4946,7 +4946,7 @@ msgstr "" "predeterminado es <filename>/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:747 +#: apt.conf.5.xml:741 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." @@ -4956,12 +4956,12 @@ msgstr "" "paquetes y a producir todos los binarios." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:746 msgid "dpkg trigger usage (and related options)" msgstr "Uso del disparador de dpkg (y de las opciones relacionadas)" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:753 +#: apt.conf.5.xml:747 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -4988,7 +4988,7 @@ msgstr "" "tiempo (o más) durante la configuración de todos los paquetes." #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:768 +#: apt.conf.5.xml:762 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -5002,7 +5002,7 @@ msgstr "" "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:762 +#: apt.conf.5.xml:756 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -5026,7 +5026,7 @@ msgstr "" "type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:775 +#: apt.conf.5.xml:769 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -5049,7 +5049,7 @@ msgstr "" "eliminación." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:783 +#: apt.conf.5.xml:777 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@ -5079,7 +5079,7 @@ msgstr "" "imposibilidad de arrancar el sistema. " #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:798 +#: apt.conf.5.xml:792 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@ -5097,7 +5097,7 @@ msgstr "" "desactivar esta opción en todas las ejecuciones menos la última." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:805 +#: apt.conf.5.xml:799 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -5113,7 +5113,7 @@ msgstr "" "los disparadores necesarios para configurar este paquete." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:818 +#: apt.conf.5.xml:812 #, no-wrap msgid "" "OrderList::Score {\n" @@ -5131,7 +5131,7 @@ msgstr "" "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:811 +#: apt.conf.5.xml:805 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -5156,12 +5156,12 @@ msgstr "" "<placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:831 +#: apt.conf.5.xml:825 msgid "Periodic and Archives options" msgstr "Las opciones «Periodic» y «Archives»" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:832 +#: apt.conf.5.xml:826 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -5175,12 +5175,12 @@ msgstr "" "documentación de estas opciones." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:840 +#: apt.conf.5.xml:834 msgid "Debug options" msgstr "Opciones de depuración" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:842 +#: apt.conf.5.xml:836 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -5197,7 +5197,7 @@ msgstr "" "para un usuario normal, aunque unas cuantas sí son:" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:853 +#: apt.conf.5.xml:847 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -5208,7 +5208,7 @@ msgstr "" "purge</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:861 +#: apt.conf.5.xml:855 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -5219,7 +5219,7 @@ msgstr "" "<literal>apt-get -s install</literal>) como un usuario normal." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:870 +#: apt.conf.5.xml:864 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -5231,7 +5231,7 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:878 +#: apt.conf.5.xml:872 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." @@ -5240,14 +5240,14 @@ msgstr "" "statfs en los identificadores de los discos ópticos." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:888 +#: apt.conf.5.xml:882 msgid "A full list of debugging options to apt follows." msgstr "" "A continuación, se muestra la lista completa de las opciones de depuración " "de apt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:897 +#: apt.conf.5.xml:891 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" @@ -5255,26 +5255,26 @@ msgstr "" "<literal>cdrom://</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:908 +#: apt.conf.5.xml:902 msgid "Print information related to downloading packages using FTP." msgstr "" "Muestra la información relacionada con la descarga de paquetes mediante FTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:919 +#: apt.conf.5.xml:913 msgid "Print information related to downloading packages using HTTP." msgstr "" "Muestra la información relacionada con la descarga de paquetes mediante HTTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:930 +#: apt.conf.5.xml:924 msgid "Print information related to downloading packages using HTTPS." msgstr "" "Muestra la información relacionada con la descarga de paquetes mediante " "HTTPS." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:941 +#: apt.conf.5.xml:935 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@ -5283,7 +5283,7 @@ msgstr "" "criptográficas mediante <literal>gpg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:952 +#: apt.conf.5.xml:946 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." @@ -5292,14 +5292,14 @@ msgstr "" "paquetes almacenadas en CD-ROM." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:962 +#: apt.conf.5.xml:956 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" "Describe el proceso de resolución de dependencias de compilación en &apt-" "get;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:972 +#: apt.conf.5.xml:966 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." @@ -5308,7 +5308,7 @@ msgstr "" "<literal>apt</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:982 +#: apt.conf.5.xml:976 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -5319,7 +5319,7 @@ msgstr "" "identificador de un CD-ROM." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:993 +#: apt.conf.5.xml:987 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." @@ -5329,14 +5329,14 @@ msgstr "" "a la vez." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1005 +#: apt.conf.5.xml:999 msgid "Log when items are added to or removed from the global download queue." msgstr "" "Registra los elementos que se añaden o se borran de la cola de descarga " "global." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1015 +#: apt.conf.5.xml:1009 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." @@ -5346,7 +5346,7 @@ msgstr "" "ficheros descargados." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1025 +#: apt.conf.5.xml:1019 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." @@ -5355,7 +5355,7 @@ msgstr "" "lista de índices de paquetes, y los errores relacionados con éstos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1037 +#: apt.conf.5.xml:1031 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." @@ -5365,7 +5365,7 @@ msgstr "" "índices completos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1048 +#: apt.conf.5.xml:1042 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" @@ -5373,7 +5373,7 @@ msgstr "" "descargas." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1059 +#: apt.conf.5.xml:1053 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." @@ -5382,7 +5382,7 @@ msgstr "" "de los paquetes y con la eliminación de los paquetes sin usar." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1069 +#: apt.conf.5.xml:1063 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -5398,7 +5398,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1083 +#: apt.conf.5.xml:1077 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -5429,7 +5429,7 @@ msgstr "" "la sección en la que aparece el paquete." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1104 +#: apt.conf.5.xml:1098 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." @@ -5438,7 +5438,7 @@ msgstr "" "invocó, con los argumentos separados por un espacio." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1115 +#: apt.conf.5.xml:1109 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." @@ -5447,7 +5447,7 @@ msgstr "" "estado y cualquier error encontrado durante el análisis." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1126 +#: apt.conf.5.xml:1120 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." @@ -5456,7 +5456,7 @@ msgstr "" "literal> debería entregar los paquetes a &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1138 +#: apt.conf.5.xml:1132 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" @@ -5464,12 +5464,12 @@ msgstr "" "&dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1149 +#: apt.conf.5.xml:1143 msgid "Output the priority of each package list on startup." msgstr "Muestra la prioridad de cada lista de paquetes al iniciarse." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1159 +#: apt.conf.5.xml:1153 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." @@ -5478,7 +5478,7 @@ msgstr "" "lo que ocurre cuando se encuentra un problema de dependencias complejo)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1170 +#: apt.conf.5.xml:1164 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -5489,7 +5489,7 @@ msgstr "" "misma que la descrita en <literal>Debug::pkgDepCache::Marker</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1182 +#: apt.conf.5.xml:1176 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@ -5498,7 +5498,7 @@ msgstr "" "vendors.list</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1192 +#: apt.conf.5.xml:1186 msgid "" "Display the external commands that are called by apt hooks. This includes e." "g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " @@ -5506,13 +5506,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1216 apt_preferences.5.xml:547 sources.list.5.xml:239 -#: apt-ftparchive.1.xml:598 +#: apt.conf.5.xml:1210 apt_preferences.5.xml:541 sources.list.5.xml:233 +#: apt-ftparchive.1.xml:592 msgid "Examples" msgstr "Ejemplos" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1217 +#: apt.conf.5.xml:1211 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -5522,17 +5522,17 @@ msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1229 +#: apt.conf.5.xml:1223 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt_preferences.5.xml:34 +#: apt_preferences.5.xml:28 msgid "Preference control file for APT" msgstr "Fichero de preferencias de APT" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:39 +#: apt_preferences.5.xml:33 msgid "" "The APT preferences file <filename>/etc/apt/preferences</filename> and the " "fragment files in the <filename>/etc/apt/preferences.d/</filename> folder " @@ -5545,7 +5545,7 @@ msgstr "" "paquetes seleccionados para su instalación." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:44 +#: apt_preferences.5.xml:38 msgid "" "Several versions of a package may be available for installation when the " "&sources-list; file contains references to more than one distribution (for " @@ -5566,7 +5566,7 @@ msgstr "" "usuario sobre qué versión se seleccionará para su instalación." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:54 +#: apt_preferences.5.xml:48 msgid "" "Several instances of the same version of a package may be available when the " "&sources-list; file contains references to more than one source. In this " @@ -5581,7 +5581,7 @@ msgstr "" "APT no modifican la elección del ejemplar, sólo la elección de la versión." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:61 +#: apt_preferences.5.xml:55 msgid "" "Preferences are a strong power in the hands of a system administrator but " "they can become also their biggest nightmare if used without care! APT will " @@ -5605,7 +5605,7 @@ msgstr "" "que no funcionen como se espera. Queda avisado." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:72 +#: apt_preferences.5.xml:66 msgid "" "Note that the files in the <filename>/etc/apt/preferences.d</filename> " "directory are parsed in alphanumeric ascending order and need to obey the " @@ -5626,24 +5626,24 @@ msgstr "" "Files-Silently</literal>. Si coincide, el fichero se ignora silenciosamente." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:81 +#: apt_preferences.5.xml:75 msgid "APT's Default Priority Assignments" msgstr "Asignación de prioridades predeterminadas de APT " #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:96 +#: apt_preferences.5.xml:90 #, no-wrap msgid "<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n" msgstr "<command>apt-get install -t testing <replaceable>paquete</replaceable></command>\n" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:99 +#: apt_preferences.5.xml:93 #, no-wrap msgid "APT::Default-Release \"stable\";\n" msgstr "APT::Default-Release \"stable\";\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:83 +#: apt_preferences.5.xml:77 msgid "" "If there is no preferences file or if there is no entry in the file that " "applies to a particular version then the priority assigned to that version " @@ -5671,7 +5671,7 @@ msgstr "" "\"0\"/><placeholder type=\"programlisting\" id=\"1\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:103 +#: apt_preferences.5.xml:97 msgid "" "If the target release has been specified then APT uses the following " "algorithm to set the priorities of the versions of a package. Assign:" @@ -5681,12 +5681,12 @@ msgstr "" "Asignar: " #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:108 +#: apt_preferences.5.xml:102 msgid "priority 1" msgstr "priority 1" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:109 +#: apt_preferences.5.xml:103 msgid "" "to the versions coming from archives which in their <filename>Release</" "filename> files are marked as \"NotAutomatic: yes\" but <emphasis>not</" @@ -5699,12 +5699,12 @@ msgstr "" "literal> de Debian." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:115 +#: apt_preferences.5.xml:109 msgid "priority 100" msgstr "prioridad 100" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:116 +#: apt_preferences.5.xml:110 msgid "" "to the version that is already installed (if any) and to the versions coming " "from archives which in their <filename>Release</filename> files are marked " @@ -5718,12 +5718,12 @@ msgstr "" "<literal>squeeze-backports</literal>." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:123 +#: apt_preferences.5.xml:117 msgid "priority 500" msgstr "prioridad 500" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:124 +#: apt_preferences.5.xml:118 msgid "" "to the versions that are not installed and do not belong to the target " "release." @@ -5732,12 +5732,12 @@ msgstr "" "objetivo." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:128 +#: apt_preferences.5.xml:122 msgid "priority 990" msgstr "prioridad 990" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:129 +#: apt_preferences.5.xml:123 msgid "" "to the versions that are not installed and belong to the target release." msgstr "" @@ -5745,7 +5745,7 @@ msgstr "" "objetivo." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:134 +#: apt_preferences.5.xml:128 msgid "" "If the target release has not been specified then APT simply assigns " "priority 100 to all installed package versions and priority 500 to all " @@ -5762,7 +5762,7 @@ msgstr "" "la opción «ButAutomaticUpgrades: yes»." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:141 +#: apt_preferences.5.xml:135 msgid "" "APT then applies the following rules, listed in order of precedence, to " "determine which version of a package to install." @@ -5771,7 +5771,7 @@ msgstr "" "determinar qué versión del paquete debe instalar." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:144 +#: apt_preferences.5.xml:138 msgid "" "Never downgrade unless the priority of an available version exceeds 1000. " "(\"Downgrading\" is installing a less recent version of a package in place " @@ -5788,12 +5788,12 @@ msgstr "" "ser peligroso)." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:150 +#: apt_preferences.5.xml:144 msgid "Install the highest priority version." msgstr "Instala la versión de mayor prioridad." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:151 +#: apt_preferences.5.xml:145 msgid "" "If two or more versions have the same priority, install the most recent one " "(that is, the one with the higher version number)." @@ -5802,7 +5802,7 @@ msgstr "" "(esto es, la que tiene un número de versión mayor)." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:154 +#: apt_preferences.5.xml:148 msgid "" "If two or more versions have the same priority and version number but either " "the packages differ in some of their metadata or the <literal>--reinstall</" @@ -5813,7 +5813,7 @@ msgstr "" "<literal>--reinstall</literal>, se instalará la que no está instalada." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:160 +#: apt_preferences.5.xml:154 msgid "" "In a typical situation, the installed version of a package (priority 100) " "is not as recent as one of the versions available from the sources listed in " @@ -5828,7 +5828,7 @@ msgstr "" "command> o <command>apt-get upgrade</command>." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:167 +#: apt_preferences.5.xml:161 msgid "" "More rarely, the installed version of a package is <emphasis>more</emphasis> " "recent than any of the other available versions. The package will not be " @@ -5842,7 +5842,7 @@ msgstr "" "upgrade</command>." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:172 +#: apt_preferences.5.xml:166 msgid "" "Sometimes the installed version of a package is more recent than the version " "belonging to the target release, but not as recent as a version belonging to " @@ -5861,12 +5861,12 @@ msgstr "" "versión instalada." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:181 +#: apt_preferences.5.xml:175 msgid "The Effect of APT Preferences" msgstr "El efecto de las preferencias sobre APT" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:183 +#: apt_preferences.5.xml:177 msgid "" "The APT preferences file allows the system administrator to control the " "assignment of priorities. The file consists of one or more multi-line " @@ -5879,7 +5879,7 @@ msgstr "" "registros pueden tener una de estos dos formatos: el específico o el general." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:189 +#: apt_preferences.5.xml:183 msgid "" "The specific form assigns a priority (a \"Pin-Priority\") to one or more " "specified packages with a specified version or version range. For example, " @@ -5896,7 +5896,7 @@ msgstr "" "paquetes separados por espacios." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:196 +#: apt_preferences.5.xml:190 #, no-wrap msgid "" "Package: perl\n" @@ -5908,7 +5908,7 @@ msgstr "" "Pin-Priority: 1001\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:202 +#: apt_preferences.5.xml:196 msgid "" "The general form assigns a priority to all of the package versions in a " "given distribution (that is, to all the versions of packages that are listed " @@ -5923,7 +5923,7 @@ msgstr "" "identificado por su nombre de dominio." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:208 +#: apt_preferences.5.xml:202 msgid "" "This general-form entry in the APT preferences file applies only to groups " "of packages. For example, the following record assigns a high priority to " @@ -5934,7 +5934,7 @@ msgstr "" "prioridad alta a todas las versiones disponibles desde un sitio local." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:213 +#: apt_preferences.5.xml:207 #, no-wrap msgid "" "Package: *\n" @@ -5946,7 +5946,7 @@ msgstr "" "Pin-Priority: 999\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:218 +#: apt_preferences.5.xml:212 msgid "" "A note of caution: the keyword used here is \"<literal>origin</literal>\" " "which can be used to match a hostname. The following record will assign a " @@ -5960,7 +5960,7 @@ msgstr "" "debian.org»." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:222 +#: apt_preferences.5.xml:216 #, no-wrap msgid "" "Package: *\n" @@ -5972,7 +5972,7 @@ msgstr "" "Pin-Priority: 999\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:226 +#: apt_preferences.5.xml:220 msgid "" "This should <emphasis>not</emphasis> be confused with the Origin of a " "distribution as specified in a <filename>Release</filename> file. What " @@ -5987,7 +5987,7 @@ msgstr "" "sino el autor o el nombre del proveedor, tales como «Debian» o «Ximian»." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:231 +#: apt_preferences.5.xml:225 msgid "" "The following record assigns a low priority to all package versions " "belonging to any distribution whose Archive name is \"<literal>unstable</" @@ -5998,7 +5998,7 @@ msgstr "" "archivo de paquetes «<literal>unstable</literal>» (inestable)." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:235 +#: apt_preferences.5.xml:229 #, no-wrap msgid "" "Package: *\n" @@ -6010,7 +6010,7 @@ msgstr "" "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:240 +#: apt_preferences.5.xml:234 msgid "" "The following record assigns a high priority to all package versions " "belonging to any distribution whose Codename is \"<literal>&testing-codename;" @@ -6021,7 +6021,7 @@ msgstr "" "«<literal>&testing-codename;</literal>»." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:244 +#: apt_preferences.5.xml:238 #, no-wrap msgid "" "Package: *\n" @@ -6033,7 +6033,7 @@ msgstr "" "Pin-Priority: 900\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:249 +#: apt_preferences.5.xml:243 msgid "" "The following record assigns a high priority to all package versions " "belonging to any release whose Archive name is \"<literal>stable</literal>\" " @@ -6045,7 +6045,7 @@ msgstr "" "«<literal>&stable-version;</literal>»." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:254 +#: apt_preferences.5.xml:248 #, no-wrap msgid "" "Package: *\n" @@ -6057,12 +6057,12 @@ msgstr "" "Pin-Priority: 500\n" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:264 +#: apt_preferences.5.xml:258 msgid "Regular expressions and &glob; syntax" msgstr "Expresiones regulares y sintaxis &glob;" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:266 +#: apt_preferences.5.xml:260 msgid "" "APT also supports pinning by &glob; expressions, and regular expressions " "surrounded by slashes. For example, the following example assigns the " @@ -6077,7 +6077,7 @@ msgstr "" "«kde» (como expresión regular extendida POSIX delimitada por barras)." #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:275 +#: apt_preferences.5.xml:269 #, no-wrap msgid "" "Package: gnome* /kde/\n" @@ -6089,7 +6089,7 @@ msgstr "" "Pin-Priority: 500\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:281 +#: apt_preferences.5.xml:275 msgid "" "The rule for those expressions is that they can occur anywhere where a " "string can occur. Thus, the following pin assigns the priority 990 to all " @@ -6100,7 +6100,7 @@ msgstr "" "paquetes provenientes de una publicación a partir de &ubuntu-codename;." #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:287 +#: apt_preferences.5.xml:281 #, no-wrap msgid "" "Package: *\n" @@ -6112,7 +6112,7 @@ msgstr "" "Pin-Priority: 990\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:293 +#: apt_preferences.5.xml:287 msgid "" "If a regular expression occurs in a <literal>Package</literal> field, the " "behavior is the same as if this regular expression were replaced with a list " @@ -6130,12 +6130,12 @@ msgstr "" "literal>» en un campo «Package» no se considera una expresión &glob;." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:309 +#: apt_preferences.5.xml:303 msgid "How APT Interprets Priorities" msgstr "Interpretación de APT de las prioridades" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:312 +#: apt_preferences.5.xml:306 msgid "" "Priorities (P) assigned in the APT preferences file must be positive or " "negative integers. They are interpreted as follows (roughly speaking):" @@ -6145,12 +6145,12 @@ msgstr "" "siguiente modo:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:317 +#: apt_preferences.5.xml:311 msgid "P >= 1000" msgstr "P >= 1000" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:318 +#: apt_preferences.5.xml:312 msgid "" "causes a version to be installed even if this constitutes a downgrade of the " "package" @@ -6159,12 +6159,12 @@ msgstr "" "el sistema." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:322 +#: apt_preferences.5.xml:316 msgid "990 <= P < 1000" msgstr "990 <= P < 1000" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:323 +#: apt_preferences.5.xml:317 msgid "" "causes a version to be installed even if it does not come from the target " "release, unless the installed version is more recent" @@ -6173,12 +6173,12 @@ msgstr "" "que la versión instalada sea más reciente." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:328 +#: apt_preferences.5.xml:322 msgid "500 <= P < 990" msgstr "500 <= P < 990" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:329 +#: apt_preferences.5.xml:323 msgid "" "causes a version to be installed unless there is a version available " "belonging to the target release or the installed version is more recent" @@ -6188,12 +6188,12 @@ msgstr "" "más reciente." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:334 +#: apt_preferences.5.xml:328 msgid "100 <= P < 500" msgstr "100 <= P < 500" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:335 +#: apt_preferences.5.xml:329 msgid "" "causes a version to be installed unless there is a version available " "belonging to some other distribution or the installed version is more recent" @@ -6202,12 +6202,12 @@ msgstr "" "perteneciente a otra distribución, o si la versión instalada es más reciente." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:340 +#: apt_preferences.5.xml:334 msgid "0 < P < 100" msgstr "0 < P < 100" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:341 +#: apt_preferences.5.xml:335 msgid "" "causes a version to be installed only if there is no installed version of " "the package" @@ -6215,17 +6215,17 @@ msgstr "" "La versión sólo se instala si no hay ninguna versión del paquete instalada." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:345 +#: apt_preferences.5.xml:339 msgid "P < 0" msgstr "P < 0" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:346 +#: apt_preferences.5.xml:340 msgid "prevents the version from being installed" msgstr "Evita la instalación de la versión." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:351 +#: apt_preferences.5.xml:345 msgid "" "If any specific-form records match an available package version then the " "first such record determines the priority of the package version. Failing " @@ -6239,7 +6239,7 @@ msgstr "" "versión del paquete." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:357 +#: apt_preferences.5.xml:351 msgid "" "For example, suppose the APT preferences file contains the three records " "presented earlier:" @@ -6248,7 +6248,7 @@ msgstr "" "registros antes mencionados:" #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:361 +#: apt_preferences.5.xml:355 #, no-wrap msgid "" "Package: perl\n" @@ -6276,12 +6276,12 @@ msgstr "" "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:374 +#: apt_preferences.5.xml:368 msgid "Then:" msgstr "Por ello:" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:376 +#: apt_preferences.5.xml:370 msgid "" "The most recent available version of the <literal>perl</literal> package " "will be installed, so long as that version's version number begins with " @@ -6296,7 +6296,7 @@ msgstr "" "perl;*, se instalará una versión anterior de <literal>perl</literal>." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:381 +#: apt_preferences.5.xml:375 msgid "" "A version of any package other than <literal>perl</literal> that is " "available from the local system has priority over other versions, even " @@ -6307,7 +6307,7 @@ msgstr "" "versiones, incluso sobre los pertenecientes a la distribución objetivo." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:385 +#: apt_preferences.5.xml:379 msgid "" "A version of a package whose origin is not the local system but some other " "site listed in &sources-list; and which belongs to an <literal>unstable</" @@ -6320,12 +6320,12 @@ msgstr "" "hay ninguna versión del paquete ya instalado." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:395 +#: apt_preferences.5.xml:389 msgid "Determination of Package Version and Distribution Properties" msgstr "Determinar la versión del paquete y las propiedades de la distribución" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:397 +#: apt_preferences.5.xml:391 msgid "" "The locations listed in the &sources-list; file should provide " "<filename>Packages</filename> and <filename>Release</filename> files to " @@ -6336,7 +6336,7 @@ msgstr "" "describen los paquetes disponibles en cada uno de los sitios." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:401 +#: apt_preferences.5.xml:395 msgid "" "The <filename>Packages</filename> file is normally found in the directory " "<filename>.../dists/<replaceable>dist-name</replaceable>/" @@ -6356,27 +6356,27 @@ msgstr "" "de APT:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:409 +#: apt_preferences.5.xml:403 msgid "the <literal>Package:</literal> line" msgstr "La línea <literal>Package:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:410 +#: apt_preferences.5.xml:404 msgid "gives the package name" msgstr "indica el nombre del paquete." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:413 apt_preferences.5.xml:463 +#: apt_preferences.5.xml:407 apt_preferences.5.xml:457 msgid "the <literal>Version:</literal> line" msgstr "La línea <literal>Version:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:414 +#: apt_preferences.5.xml:408 msgid "gives the version number for the named package" msgstr "indica el número de versión del paquete." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:419 +#: apt_preferences.5.xml:413 msgid "" "The <filename>Release</filename> file is normally found in the directory " "<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for " @@ -6397,12 +6397,12 @@ msgstr "" "son relevantes para las prioridades de APT:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:430 +#: apt_preferences.5.xml:424 msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" msgstr "Las líneas <literal>Archive:</literal> o <literal>Suite:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:431 +#: apt_preferences.5.xml:425 msgid "" "names the archive to which all the packages in the directory tree belong. " "For example, the line \"Archive: stable\" or \"Suite: stable\" specifies " @@ -6420,18 +6420,18 @@ msgstr "" "línea en el fichero de preferencias de APT:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:441 +#: apt_preferences.5.xml:435 #, no-wrap msgid "Pin: release a=stable\n" msgstr "Pin: release a=stable\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:447 +#: apt_preferences.5.xml:441 msgid "the <literal>Codename:</literal> line" msgstr "La línea <literal>Codename:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:448 +#: apt_preferences.5.xml:442 msgid "" "names the codename to which all the packages in the directory tree belong. " "For example, the line \"Codename: &testing-codename;\" specifies that all of " @@ -6450,13 +6450,13 @@ msgstr "" "de APT:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:457 +#: apt_preferences.5.xml:451 #, no-wrap msgid "Pin: release n=&testing-codename;\n" msgstr "Pin: release n=&testing-codename;\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:464 +#: apt_preferences.5.xml:458 msgid "" "names the release version. For example, the packages in the tree might " "belong to Debian release version &stable-version;. Note that there is " @@ -6473,7 +6473,7 @@ msgstr "" "siguientes línea en el fichero de preferencias de APT:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:473 +#: apt_preferences.5.xml:467 #, no-wrap msgid "" "Pin: release v=&stable-version;\n" @@ -6485,12 +6485,12 @@ msgstr "" "Pin: release &stable-version;\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:482 +#: apt_preferences.5.xml:476 msgid "the <literal>Component:</literal> line" msgstr "La línea <literal>Component:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:483 +#: apt_preferences.5.xml:477 msgid "" "names the licensing component associated with the packages in the directory " "tree of the <filename>Release</filename> file. For example, the line " @@ -6509,18 +6509,18 @@ msgstr "" "de APT:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:492 +#: apt_preferences.5.xml:486 #, no-wrap msgid "Pin: release c=main\n" msgstr "Pin: release c=main\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:498 +#: apt_preferences.5.xml:492 msgid "the <literal>Origin:</literal> line" msgstr "La línea <literal>Origin:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:499 +#: apt_preferences.5.xml:493 msgid "" "names the originator of the packages in the directory tree of the " "<filename>Release</filename> file. Most commonly, this is <literal>Debian</" @@ -6533,18 +6533,18 @@ msgstr "" "mediante la siguiente línea:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:505 +#: apt_preferences.5.xml:499 #, no-wrap msgid "Pin: release o=Debian\n" msgstr "Pin: release o=Debian\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:511 +#: apt_preferences.5.xml:505 msgid "the <literal>Label:</literal> line" msgstr "La línea <literal>Label:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:512 +#: apt_preferences.5.xml:506 msgid "" "names the label of the packages in the directory tree of the " "<filename>Release</filename> file. Most commonly, this is <literal>Debian</" @@ -6557,13 +6557,13 @@ msgstr "" "siguiente línea:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:518 +#: apt_preferences.5.xml:512 #, no-wrap msgid "Pin: release l=Debian\n" msgstr "Pin: release l=Debian\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:525 +#: apt_preferences.5.xml:519 msgid "" "All of the <filename>Packages</filename> and <filename>Release</filename> " "files retrieved from locations listed in the &sources-list; file are stored " @@ -6588,12 +6588,12 @@ msgstr "" "la distribución «<literal>unstable</literal>» (inestable)." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:538 +#: apt_preferences.5.xml:532 msgid "Optional Lines in an APT Preferences Record" msgstr "Líneas opcionales en el registro de preferencias de APT" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:540 +#: apt_preferences.5.xml:534 msgid "" "Each record in the APT preferences file can optionally begin with one or " "more lines beginning with the word <literal>Explanation:</literal>. This " @@ -6604,12 +6604,12 @@ msgstr "" "Útil para comentarios." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:549 +#: apt_preferences.5.xml:543 msgid "Tracking Stable" msgstr "Seguir la distribución «stable» (estable)" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:557 +#: apt_preferences.5.xml:551 #, no-wrap msgid "" "Explanation: Uninstall or do not install any Debian-originated\n" @@ -6633,7 +6633,7 @@ msgstr "" "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:551 +#: apt_preferences.5.xml:545 msgid "" "The following APT preferences file will cause APT to assign a priority " "higher than the default (500) to all package versions belonging to a " @@ -6648,8 +6648,8 @@ msgstr "" "<literal>Debian</literal>. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:574 apt_preferences.5.xml:620 -#: apt_preferences.5.xml:678 +#: apt_preferences.5.xml:568 apt_preferences.5.xml:614 +#: apt_preferences.5.xml:672 #, no-wrap msgid "" "apt-get install <replaceable>package-name</replaceable>\n" @@ -6661,7 +6661,7 @@ msgstr "" "apt-get dist-upgrade\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:569 +#: apt_preferences.5.xml:563 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest " @@ -6675,13 +6675,13 @@ msgstr "" "\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:586 +#: apt_preferences.5.xml:580 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/testing\n" msgstr "apt-get install <replaceable>paquete</replaceable>/testing\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:580 +#: apt_preferences.5.xml:574 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>testing</literal> distribution; the package " @@ -6694,12 +6694,12 @@ msgstr "" "\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:592 +#: apt_preferences.5.xml:586 msgid "Tracking Testing or Unstable" msgstr "Seguir la distribución «testing» (en pruebas) o «unstable» (inestable)" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:601 +#: apt_preferences.5.xml:595 #, no-wrap msgid "" "Package: *\n" @@ -6727,7 +6727,7 @@ msgstr "" "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:594 +#: apt_preferences.5.xml:588 msgid "" "The following APT preferences file will cause APT to assign a high priority " "to package versions from the <literal>testing</literal> distribution, a " @@ -6744,7 +6744,7 @@ msgstr "" ">" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:615 +#: apt_preferences.5.xml:609 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest " @@ -6757,13 +6757,13 @@ msgstr "" "<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:635 +#: apt_preferences.5.xml:629 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/unstable\n" msgstr "apt-get install <replaceable>paquete</replaceable>/unstable\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:626 +#: apt_preferences.5.xml:620 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>unstable</literal> distribution. " @@ -6782,12 +6782,12 @@ msgstr "" "instalada. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:642 +#: apt_preferences.5.xml:636 msgid "Tracking the evolution of a codename release" msgstr "Seguir la evolución de una publicación por el nombre" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:656 +#: apt_preferences.5.xml:650 #, no-wrap msgid "" "Explanation: Uninstall or do not install any Debian-originated package versions\n" @@ -6821,7 +6821,7 @@ msgstr "" "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:644 +#: apt_preferences.5.xml:638 msgid "" "The following APT preferences file will cause APT to assign a priority " "higher than the default (500) to all package versions belonging to a " @@ -6848,7 +6848,7 @@ msgstr "" "\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:673 +#: apt_preferences.5.xml:667 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest version(s) in " @@ -6862,13 +6862,13 @@ msgstr "" "id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:693 +#: apt_preferences.5.xml:687 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/sid\n" msgstr "apt-get install <replaceable>paquete</replaceable>/sid\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:684 +#: apt_preferences.5.xml:678 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>sid</literal> distribution. Thereafter, " @@ -6887,17 +6887,17 @@ msgstr "" "instalada. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:708 +#: apt_preferences.5.xml:702 msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;" msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;" #. type: Content of: <refentry><refnamediv><refpurpose> -#: sources.list.5.xml:35 +#: sources.list.5.xml:29 msgid "List of configured APT data sources" msgstr "Lista de fuentes de datos de APT configurados" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:40 +#: sources.list.5.xml:34 msgid "" "The source list <filename>/etc/apt/sources.list</filename> is designed to " "support any number of active sources and a variety of source media. The file " @@ -6914,7 +6914,7 @@ msgstr "" "command> (o una orden equivalente de una interfaz de APT)." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:47 +#: sources.list.5.xml:41 msgid "" "Each line specifying a source starts with type (e.g. <literal>deb-src</" "literal>) followed by options and arguments for this type. Individual " @@ -6929,12 +6929,12 @@ msgstr "" "cualquier lugar de la línea marca los caracteres restantes como comentario." #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:55 +#: sources.list.5.xml:49 msgid "sources.list.d" msgstr "sources.list.d" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:56 +#: sources.list.5.xml:50 msgid "" "The <filename>/etc/apt/sources.list.d</filename> directory provides a way to " "add sources.list entries in separate files. The format is the same as for " @@ -6956,12 +6956,12 @@ msgstr "" "silenciosamente." #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:67 +#: sources.list.5.xml:61 msgid "The deb and deb-src types" msgstr "Los tipos «deb» y «deb-src»" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:68 +#: sources.list.5.xml:62 msgid "" "The <literal>deb</literal> type references a typical two-level Debian " "archive, <filename>distribution/component</filename>. The " @@ -6987,7 +6987,7 @@ msgstr "" "literal> para obtener los índices de fuentes." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:79 +#: sources.list.5.xml:73 msgid "" "The format for a <filename>sources.list</filename> entry using the " "<literal>deb</literal> and <literal>deb-src</literal> types is:" @@ -6996,14 +6996,14 @@ msgstr "" "usando los tipos <literal>deb</literal> y <literal>deb-src</literal> es:" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:82 +#: sources.list.5.xml:76 #, fuzzy, no-wrap #| msgid "deb [ options ] uri distribution [component1] [component2] [...]" msgid "deb [ options ] uri suite [component1] [component2] [...]" msgstr "deb [ opciones ] uri distribución [componente1] [componente2] [...]" #. type: Content of: <refentry><refsect1><para><literallayout> -#: sources.list.5.xml:86 +#: sources.list.5.xml:80 #, no-wrap msgid "" " Types: deb deb-src\n" @@ -7026,14 +7026,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:84 +#: sources.list.5.xml:78 msgid "" "Alternatively a rfc822 style format is also supported: <placeholder type=" "\"literallayout\" id=\"0\"/>" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:105 +#: sources.list.5.xml:99 #, fuzzy #| msgid "" #| "The URI for the <literal>deb</literal> type must specify the base of the " @@ -7064,7 +7064,7 @@ msgstr "" "<literal>distribución</literal> no define una ruta exacta." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:114 +#: sources.list.5.xml:108 #, fuzzy #| msgid "" #| "<literal>distribution</literal> may also contain a variable, <literal>" @@ -7093,7 +7093,7 @@ msgstr "" "sistema." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:122 +#: sources.list.5.xml:116 #, fuzzy #| msgid "" #| "Since only one distribution can be specified per line it may be necessary " @@ -7133,7 +7133,7 @@ msgstr "" "aprovechar mejor el ancho de banda." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:136 +#: sources.list.5.xml:130 msgid "" "<literal>options</literal> is always optional and needs to be surrounded by " "square brackets. It can consist of multiple settings in the form " @@ -7150,7 +7150,7 @@ msgstr "" "ignoran silenciosamente):" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:142 +#: sources.list.5.xml:136 msgid "" "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</" "replaceable>,…</literal> can be used to specify for which architectures " @@ -7165,7 +7165,7 @@ msgstr "" "arquitecturas definidas por la opción <literal>APT::Architectures</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:146 +#: sources.list.5.xml:140 #, fuzzy #| msgid "" #| "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</" @@ -7186,7 +7186,7 @@ msgstr "" "arquitecturas definidas por la opción <literal>APT::Architectures</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:149 +#: sources.list.5.xml:143 msgid "" "<literal>trusted=yes</literal> can be set to indicate that packages from " "this source are always authenticated even if the <filename>Release</" @@ -7204,7 +7204,7 @@ msgstr "" "autenticadas no lo están." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:156 +#: sources.list.5.xml:150 msgid "" "It is important to list sources in order of preference, with the most " "preferred source listed first. Typically this will result in sorting by " @@ -7217,12 +7217,12 @@ msgstr "" "seguidos por servidores de Internet distantes, por ejemplo)." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:161 +#: sources.list.5.xml:155 msgid "Some examples:" msgstr "Algunos ejemplos:" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:163 +#: sources.list.5.xml:157 #, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n" @@ -7234,17 +7234,17 @@ msgstr "" " " #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:169 +#: sources.list.5.xml:163 msgid "URI specification" msgstr "Especificación del URI" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:171 +#: sources.list.5.xml:165 msgid "The currently recognized URI types are:" msgstr "Los tipos de URI permitidos actualmente son:" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:175 +#: sources.list.5.xml:169 msgid "" "The file scheme allows an arbitrary directory in the file system to be " "considered an archive. This is useful for NFS mounts and local mirrors or " @@ -7255,7 +7255,7 @@ msgstr "" "particiones montadas mediante NFS y réplicas o archivos de paquetes locales." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:182 +#: sources.list.5.xml:176 msgid "" "The cdrom scheme allows APT to use a local CD-ROM drive with media swapping. " "Use the &apt-cdrom; program to create cdrom entries in the source list." @@ -7265,7 +7265,7 @@ msgstr "" "list»." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:189 +#: sources.list.5.xml:183 msgid "" "The http scheme specifies an HTTP server for the archive. If an environment " "variable <envar>http_proxy</envar> is set with the format http://server:" @@ -7283,7 +7283,7 @@ msgstr "" "autenticación no es seguro." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:200 +#: sources.list.5.xml:194 msgid "" "The ftp scheme specifies an FTP server for the archive. APT's FTP behavior " "is highly configurable; for more information see the &apt-conf; manual page. " @@ -7304,7 +7304,7 @@ msgstr "" "fichero de configuración." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:212 +#: sources.list.5.xml:206 msgid "" "The copy scheme is identical to the file scheme except that packages are " "copied into the cache directory instead of used directly at their location. " @@ -7317,7 +7317,7 @@ msgstr "" "permite realizar la copia de ficheros con APT." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:219 +#: sources.list.5.xml:213 msgid "" "The rsh/ssh method invokes RSH/SSH to connect to a remote host and access " "the files as a given user. Prior configuration of rhosts or RSA keys is " @@ -7331,12 +7331,12 @@ msgstr "" "transferencia de ficheros desde la máquina remota." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: sources.list.5.xml:226 +#: sources.list.5.xml:220 msgid "adding more recognizable URI types" msgstr "Añadir más tipos de URI reconocidos." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:228 +#: sources.list.5.xml:222 msgid "" "APT can be extended with more methods shipped in other optional packages, " "which should follow the naming scheme <package>apt-transport-" @@ -7355,7 +7355,7 @@ msgstr "" "debtorrent, consulte &apt-transport-debtorrent;." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:240 +#: sources.list.5.xml:234 msgid "" "Uses the archive stored locally (or NFS mounted) at /home/jason/debian for " "stable/main, stable/contrib, and stable/non-free." @@ -7364,36 +7364,36 @@ msgstr "" "para «stable/main», «stable/contrib», y «stable/non-free»." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:242 +#: sources.list.5.xml:236 #, no-wrap msgid "deb file:/home/jason/debian stable main contrib non-free" msgstr "deb file:/home/jason/debian stable main contrib non-free" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:244 +#: sources.list.5.xml:238 msgid "As above, except this uses the unstable (development) distribution." msgstr "" "Como arriba, excepto que usa la distribución «unstable» (en desarrollo)." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:245 +#: sources.list.5.xml:239 #, no-wrap msgid "deb file:/home/jason/debian unstable main contrib non-free" msgstr "deb file:/home/jason/debian unstable main contrib non-free" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:247 +#: sources.list.5.xml:241 msgid "Source line for the above" msgstr "Línea para obtener el código fuente desde la ubicación anterior." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:248 +#: sources.list.5.xml:242 #, no-wrap msgid "deb-src file:/home/jason/debian unstable main contrib non-free" msgstr "deb-src file:/home/jason/debian unstable main contrib non-free" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:250 +#: sources.list.5.xml:244 msgid "" "The first line gets package information for the architectures in " "<literal>APT::Architectures</literal> while the second always retrieves " @@ -7404,7 +7404,7 @@ msgstr "" "obtiene <literal>amd64</literal> y <literal>armel</literal>." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:252 +#: sources.list.5.xml:246 #, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main\n" @@ -7414,7 +7414,7 @@ msgstr "" "deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:255 +#: sources.list.5.xml:249 msgid "" "Uses HTTP to access the archive at archive.debian.org, and uses only the " "hamm/main area." @@ -7423,13 +7423,13 @@ msgstr "" "usa sólo la sección «hamm/main»." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:257 +#: sources.list.5.xml:251 #, no-wrap msgid "deb http://archive.debian.org/debian-archive hamm main" msgstr "deb http://archive.debian.org/debian-archive hamm main" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:259 +#: sources.list.5.xml:253 msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the &stable-codename;/contrib area." @@ -7438,13 +7438,13 @@ msgstr "" "del directorio «debian», y usa sólo la sección «&stable-codename;/contrib»." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:261 +#: sources.list.5.xml:255 #, no-wrap msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib" msgstr "deb ftp://ftp.debian.org/debian &stable-codename; contrib" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:263 +#: sources.list.5.xml:257 msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the unstable/contrib area. If this line appears as " @@ -7457,19 +7457,19 @@ msgstr "" "filename>, se usará sólo una sesión FTP para ambas." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:267 +#: sources.list.5.xml:261 #, no-wrap msgid "deb ftp://ftp.debian.org/debian unstable contrib" msgstr "deb ftp://ftp.debian.org/debian unstable contrib" #. type: Content of: <refentry><refsect1><para><literallayout> -#: sources.list.5.xml:276 +#: sources.list.5.xml:270 #, no-wrap msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/" msgstr "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:269 +#: sources.list.5.xml:263 msgid "" "Uses HTTP to access the archive at ftp.tlh.debian.org, under the universe " "directory, and uses only files found under <filename>unstable/binary-i386</" @@ -7488,17 +7488,17 @@ msgstr "" "tiene esta estructura.) <placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:281 +#: sources.list.5.xml:275 msgid "&apt-cache; &apt-conf;" msgstr "&apt-cache; &apt-conf;" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt-extracttemplates.1.xml:28 apt-sortpkgs.1.xml:28 apt-ftparchive.1.xml:28 +#: apt-extracttemplates.1.xml:22 apt-sortpkgs.1.xml:22 apt-ftparchive.1.xml:22 msgid "1" msgstr "1" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-extracttemplates.1.xml:35 +#: apt-extracttemplates.1.xml:29 msgid "" "Utility to extract <command>debconf</command> config and templates from " "Debian packages" @@ -7507,7 +7507,7 @@ msgstr "" "plantillas de paquetes de Debian" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:41 +#: apt-extracttemplates.1.xml:35 msgid "" "<command>apt-extracttemplates</command> will take one or more Debian package " "files as input and write out (to a temporary directory) all associated " @@ -7522,12 +7522,12 @@ msgstr "" "plantillas, se generará una salida de una línea con el formato:" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:46 +#: apt-extracttemplates.1.xml:40 msgid "package version template-file config-script" msgstr "paquete versión fichero-de-plantilla script-de-configuración" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:47 +#: apt-extracttemplates.1.xml:41 msgid "" "template-file and config-script are written to the temporary directory " "specified by the <option>-t</option> or <option>--tempdir</option> " @@ -7542,7 +7542,7 @@ msgstr "" "XXXXXX</filename> y <filename>paquete.config.XXXXXX</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-extracttemplates.1.xml:60 +#: apt-extracttemplates.1.xml:54 msgid "" "Temporary directory in which to write extracted <command>debconf</command> " "template files and config scripts. Configuration Item: <literal>APT::" @@ -7553,7 +7553,7 @@ msgstr "" "de configuración: <literal>APT::ExtractTemplates::TempDir</literal>" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:77 +#: apt-extracttemplates.1.xml:71 msgid "" "<command>apt-extracttemplates</command> returns zero on normal operation, " "decimal 100 on error." @@ -7562,12 +7562,12 @@ msgstr "" "error, y el valor 100 en caso de error." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-sortpkgs.1.xml:35 +#: apt-sortpkgs.1.xml:29 msgid "Utility to sort package index files" msgstr "Herramienta para ordenar los ficheros de índice de paquetes" #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:41 +#: apt-sortpkgs.1.xml:35 msgid "" "<command>apt-sortpkgs</command> will take an index file (source index or " "package index) and sort the records so that they are ordered by the package " @@ -7580,7 +7580,7 @@ msgstr "" "ordenación internas." #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:47 +#: apt-sortpkgs.1.xml:41 msgid "" "All output is sent to standard output; the input must be a seekable file." msgstr "" @@ -7588,7 +7588,7 @@ msgstr "" "fichero ubicable." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-sortpkgs.1.xml:56 +#: apt-sortpkgs.1.xml:50 msgid "" "Use source index field ordering. Configuration Item: <literal>APT::" "SortPkgs::Source</literal>." @@ -7597,7 +7597,7 @@ msgstr "" "configuración: <literal>APT::SortPkgs::Source</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:70 +#: apt-sortpkgs.1.xml:64 msgid "" "<command>apt-sortpkgs</command> returns zero on normal operation, decimal " "100 on error." @@ -7606,12 +7606,12 @@ msgstr "" "valor 100 en caso de error." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-ftparchive.1.xml:35 +#: apt-ftparchive.1.xml:29 msgid "Utility to generate index files" msgstr "Herramienta para generar ficheros de índice" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:41 +#: apt-ftparchive.1.xml:35 msgid "" "<command>apt-ftparchive</command> is the command line tool that generates " "the index files that APT uses to access a distribution source. The index " @@ -7624,7 +7624,7 @@ msgstr "" "de origen basado en el contenido de ese sitio." #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:45 +#: apt-ftparchive.1.xml:39 msgid "" "<command>apt-ftparchive</command> is a superset of the &dpkg-scanpackages; " "program, incorporating its entire functionality via the <literal>packages</" @@ -7639,7 +7639,7 @@ msgstr "" "«script» para el proceso de generación de un archivo completo." #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:51 +#: apt-ftparchive.1.xml:45 msgid "" "Internally <command>apt-ftparchive</command> can make use of binary " "databases to cache the contents of a .deb file and it does not rely on any " @@ -7654,7 +7654,7 @@ msgstr "" "los ficheros y genera los ficheros de salida comprimidos deseados." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:62 +#: apt-ftparchive.1.xml:56 msgid "" "The packages command generates a package file from a directory tree. It " "takes the given directory and recursively searches it for .deb files, " @@ -7667,7 +7667,7 @@ msgstr "" "orden es casi un equivalente de &dpkg-scanpackages;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:67 apt-ftparchive.1.xml:91 +#: apt-ftparchive.1.xml:61 apt-ftparchive.1.xml:85 msgid "" "The option <option>--db</option> can be used to specify a binary caching DB." msgstr "" @@ -7675,7 +7675,7 @@ msgstr "" "datos binaria para la caché (registro de paquetes)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:72 +#: apt-ftparchive.1.xml:66 msgid "" "The <literal>sources</literal> command generates a source index file from a " "directory tree. It takes the given directory and recursively searches it " @@ -7689,7 +7689,7 @@ msgstr "" "scansources;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:77 +#: apt-ftparchive.1.xml:71 msgid "" "If an override file is specified then a source override file will be looked " "for with an extension of .src. The --source-override option can be used to " @@ -7700,7 +7700,7 @@ msgstr "" "para cambiar el fichero de fuentes alternativo que se usará." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:84 +#: apt-ftparchive.1.xml:78 msgid "" "The <literal>contents</literal> command generates a contents file from a " "directory tree. It takes the given directory and recursively searches it " @@ -7718,7 +7718,7 @@ msgstr "" "por una coma en la salida." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:96 +#: apt-ftparchive.1.xml:90 msgid "" "The <literal>release</literal> command generates a Release file from a " "directory tree. It recursively searches the given directory for uncompressed " @@ -7744,7 +7744,7 @@ msgstr "" "contiene una suma de control MD5, SHA1 y SHA256 para cada fichero." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:106 +#: apt-ftparchive.1.xml:100 msgid "" "Values for the additional metadata fields in the Release file are taken from " "the corresponding variables under <literal>APT::FTPArchive::Release</" @@ -7765,7 +7765,7 @@ msgstr "" "<literal>Components</literal> y <literal>Description</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:119 +#: apt-ftparchive.1.xml:113 msgid "" "The <literal>generate</literal> command is designed to be runnable from a " "cron script and builds indexes according to the given config file. The " @@ -7781,7 +7781,7 @@ msgstr "" "configuración necesaria." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:128 +#: apt-ftparchive.1.xml:122 msgid "" "The <literal>clean</literal> command tidies the databases used by the given " "configuration file by removing any records that are no longer necessary." @@ -7791,12 +7791,12 @@ msgstr "" "necesarios." #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:134 +#: apt-ftparchive.1.xml:128 msgid "The Generate Configuration" msgstr "La configuración de «generate»" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:136 +#: apt-ftparchive.1.xml:130 msgid "" "The <literal>generate</literal> command uses a configuration file to " "describe the archives that are going to be generated. It follows the typical " @@ -7814,7 +7814,7 @@ msgstr "" "etiqueta." #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:144 +#: apt-ftparchive.1.xml:138 msgid "" "The generate configuration has four separate sections, each described below." msgstr "" @@ -7822,12 +7822,12 @@ msgstr "" "a continuación." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:146 +#: apt-ftparchive.1.xml:140 msgid "<literal>Dir</literal> Section" msgstr "Sección <literal>Dir</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:148 +#: apt-ftparchive.1.xml:142 msgid "" "The <literal>Dir</literal> section defines the standard directories needed " "to locate the files required during the generation process. These " @@ -7840,7 +7840,7 @@ msgstr "" "secciones posteriores para producir una ruta absoluta." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:155 +#: apt-ftparchive.1.xml:149 msgid "" "Specifies the root of the FTP archive, in a standard Debian configuration " "this is the directory that contains the <filename>ls-LR</filename> and dist " @@ -7851,17 +7851,17 @@ msgstr "" "«dist»." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:162 +#: apt-ftparchive.1.xml:156 msgid "Specifies the location of the override files." msgstr "Define la ubicación de los ficheros alternativos." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:167 +#: apt-ftparchive.1.xml:161 msgid "Specifies the location of the cache files." msgstr "Define la ubicación de los ficheros almacenados." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:172 +#: apt-ftparchive.1.xml:166 msgid "" "Specifies the location of the file list files, if the <literal>FileList</" "literal> setting is used below." @@ -7870,12 +7870,12 @@ msgstr "" "posteriormente el valor <literal>FileList</literal>." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:178 +#: apt-ftparchive.1.xml:172 msgid "<literal>Default</literal> Section" msgstr "Sección <literal>Default</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:180 +#: apt-ftparchive.1.xml:174 msgid "" "The <literal>Default</literal> section specifies default values, and " "settings that control the operation of the generator. Other sections may " @@ -7886,7 +7886,7 @@ msgstr "" "sobrescribir estos valores predeterminados con un valor de la sección." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:186 +#: apt-ftparchive.1.xml:180 msgid "" "Sets the default compression schemes to use for the package index files. It " "is a string that contains a space separated list of at least one of: '.' (no " @@ -7900,7 +7900,7 @@ msgstr "" "compresión es «. gzip»." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:194 +#: apt-ftparchive.1.xml:188 msgid "" "Sets the default list of file extensions that are package files. This " "defaults to '.deb'." @@ -7909,7 +7909,7 @@ msgstr "" "paquete. El valor predeterminado es «.deb»." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:200 +#: apt-ftparchive.1.xml:194 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Sources files." @@ -7918,7 +7918,7 @@ msgstr "" "controla la compresión para los ficheros «Sources»." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:206 +#: apt-ftparchive.1.xml:200 msgid "" "Sets the default list of file extensions that are source files. This " "defaults to '.dsc'." @@ -7927,7 +7927,7 @@ msgstr "" "ficheros de fuentes. El valor predeterminado es «.dsc»." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:212 +#: apt-ftparchive.1.xml:206 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Contents files." @@ -7936,7 +7936,7 @@ msgstr "" "controla la compresión para los ficheros «Contents»." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:218 +#: apt-ftparchive.1.xml:212 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Translation-en master file." @@ -7945,7 +7945,7 @@ msgstr "" "controla la compresión para el fichero maestro Translation-en." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:224 +#: apt-ftparchive.1.xml:218 msgid "" "Specifies the number of kilobytes to delink (and replace with hard links) " "per run. This is used in conjunction with the per-section <literal>External-" @@ -7956,7 +7956,7 @@ msgstr "" "cada sección." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:231 +#: apt-ftparchive.1.xml:225 msgid "" "Specifies the mode of all created index files. It defaults to 0644. All " "index files are set to this mode with no regard to the umask." @@ -7966,7 +7966,7 @@ msgstr "" "sin tener en cuenta la máscara de usuario («umask»)." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:238 apt-ftparchive.1.xml:384 +#: apt-ftparchive.1.xml:232 apt-ftparchive.1.xml:378 msgid "" "Specifies whether long descriptions should be included in the " "<filename>Packages</filename> file or split out into a master " @@ -7977,12 +7977,12 @@ msgstr "" "maestro." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:244 +#: apt-ftparchive.1.xml:238 msgid "<literal>TreeDefault</literal> Section" msgstr "Sección <literal>TreeDefault</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:246 +#: apt-ftparchive.1.xml:240 msgid "" "Sets defaults specific to <literal>Tree</literal> sections. All of these " "variables are substitution variables and have the strings $(DIST), " @@ -7993,7 +7993,7 @@ msgstr "" "$(DIST), $(SECTION) y $(ARCH) con sus valores respectivos." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:253 +#: apt-ftparchive.1.xml:247 msgid "" "Sets the number of kilobytes of contents files that are generated each day. " "The contents files are round-robined so that over several days they will all " @@ -8004,7 +8004,7 @@ msgstr "" "que durante varios días todos se regenerarán." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:260 +#: apt-ftparchive.1.xml:254 msgid "" "Controls the number of days a contents file is allowed to be checked without " "changing. If this limit is passed the mtime of the contents file is updated. " @@ -8023,7 +8023,7 @@ msgstr "" "unidades usadas son días." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:271 +#: apt-ftparchive.1.xml:265 msgid "" "Sets the top of the .deb directory tree. Defaults to <filename>$(DIST)/" "$(SECTION)/binary-$(ARCH)/</filename>" @@ -8032,7 +8032,7 @@ msgstr "" "$(DIST)/$(SECTION)/binary-$(ARCH)/</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:277 +#: apt-ftparchive.1.xml:271 msgid "" "Sets the top of the source package directory tree. Defaults to <filename>" "$(DIST)/$(SECTION)/source/</filename>" @@ -8041,7 +8041,7 @@ msgstr "" "predeterminado es <filename>$(DIST)/$(SECTION)/source/</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:283 +#: apt-ftparchive.1.xml:277 msgid "" "Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/" "binary-$(ARCH)/Packages</filename>" @@ -8050,7 +8050,7 @@ msgstr "" "$(DIST)/$(SECTION)/binary-$(ARCH)/Packages</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:289 +#: apt-ftparchive.1.xml:283 msgid "" "Sets the output Sources file. Defaults to <filename>$(DIST)/$(SECTION)/" "source/Sources</filename>" @@ -8059,7 +8059,7 @@ msgstr "" "$(DIST)/$(SECTION)/source/Sources</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:295 +#: apt-ftparchive.1.xml:289 msgid "" "Sets the output Translation-en master file with the long descriptions if " "they should be not included in the Packages file. Defaults to <filename>" @@ -8070,7 +8070,7 @@ msgstr "" "predeterminado es <filename>$(DIST)/$(SECTION)/i18n/Translation-en</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:302 +#: apt-ftparchive.1.xml:296 msgid "" "Sets the path prefix that causes a symlink to be considered an internal link " "instead of an external link. Defaults to <filename>$(DIST)/$(SECTION)/</" @@ -8081,7 +8081,7 @@ msgstr "" "<filename>$(DIST)/$(SECTION)/</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:309 +#: apt-ftparchive.1.xml:303 msgid "" "Sets the output Contents file. Defaults to <filename>$(DIST)/$(SECTION)/" "Contents-$(ARCH)</filename>. If this setting causes multiple Packages files " @@ -8096,13 +8096,13 @@ msgstr "" "automáticamente esos ficheros de paquete." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:318 +#: apt-ftparchive.1.xml:312 msgid "Sets header file to prepend to the contents output." msgstr "" "Define el fichero de cabecera a añadir al fichero «Contents» de salida." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:323 +#: apt-ftparchive.1.xml:317 msgid "" "Sets the binary cache database to use for this section. Multiple sections " "can share the same database." @@ -8111,7 +8111,7 @@ msgstr "" "Varias secciones pueden compartir la misma base de datos." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:329 +#: apt-ftparchive.1.xml:323 msgid "" "Specifies that instead of walking the directory tree, <command>apt-" "ftparchive</command> should read the list of files from the given file. " @@ -8123,7 +8123,7 @@ msgstr "" "como prefijo el directorio del archivo." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:336 +#: apt-ftparchive.1.xml:330 msgid "" "Specifies that instead of walking the directory tree, <command>apt-" "ftparchive</command> should read the list of files from the given file. " @@ -8137,12 +8137,12 @@ msgstr "" "índices de fuentes." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:344 +#: apt-ftparchive.1.xml:338 msgid "<literal>Tree</literal> Section" msgstr "Sección <literal>Tree</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:346 +#: apt-ftparchive.1.xml:340 msgid "" "The <literal>Tree</literal> section defines a standard Debian file tree " "which consists of a base directory, then multiple sections in that base " @@ -8157,7 +8157,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:351 +#: apt-ftparchive.1.xml:345 msgid "" "The <literal>Tree</literal> section takes a scope tag which sets the " "<literal>$(DIST)</literal> variable and defines the root of the tree (the " @@ -8170,7 +8170,7 @@ msgstr "" "valor como <filename>dists/&stable-codename;</filename>." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:356 +#: apt-ftparchive.1.xml:350 msgid "" "All of the settings defined in the <literal>TreeDefault</literal> section " "can be used in a <literal>Tree</literal> section as well as three new " @@ -8181,7 +8181,7 @@ msgstr "" "variables." #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt-ftparchive.1.xml:362 +#: apt-ftparchive.1.xml:356 #, no-wrap msgid "" "for i in Sections do \n" @@ -8195,7 +8195,7 @@ msgstr "" " " #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:359 +#: apt-ftparchive.1.xml:353 msgid "" "When processing a <literal>Tree</literal> section <command>apt-ftparchive</" "command> performs an operation similar to: <placeholder type=\"programlisting" @@ -8206,7 +8206,7 @@ msgstr "" "<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:370 +#: apt-ftparchive.1.xml:364 msgid "" "This is a space separated list of sections which appear under the " "distribution; typically this is something like <literal>main contrib non-" @@ -8217,7 +8217,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:377 +#: apt-ftparchive.1.xml:371 msgid "" "This is a space separated list of all the architectures that appear under " "search section. The special architecture 'source' is used to indicate that " @@ -8228,7 +8228,7 @@ msgstr "" "indicar que este árbol tiene un fichero de fuentes." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:390 +#: apt-ftparchive.1.xml:384 msgid "" "Sets the binary override file. The override file contains section, priority " "and maintainer address information." @@ -8237,7 +8237,7 @@ msgstr "" "sección, la prioridad y la dirección del mantenedor." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:396 +#: apt-ftparchive.1.xml:390 msgid "" "Sets the source override file. The override file contains section " "information." @@ -8246,22 +8246,22 @@ msgstr "" "la sección." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:402 apt-ftparchive.1.xml:448 +#: apt-ftparchive.1.xml:396 apt-ftparchive.1.xml:442 msgid "Sets the binary extra override file." msgstr "Define el fichero binario alternativo adicional." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:407 apt-ftparchive.1.xml:453 +#: apt-ftparchive.1.xml:401 apt-ftparchive.1.xml:447 msgid "Sets the source extra override file." msgstr "Define el fichero de fuentes alternativo adicional." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:412 +#: apt-ftparchive.1.xml:406 msgid "<literal>BinDirectory</literal> Section" msgstr "Sección <literal>BinDirectory</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:414 +#: apt-ftparchive.1.xml:408 msgid "" "The <literal>bindirectory</literal> section defines a binary directory tree " "with no special structure. The scope tag specifies the location of the " @@ -8276,12 +8276,12 @@ msgstr "" "<literal>Section</literal><literal>Architecture</literal>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:422 +#: apt-ftparchive.1.xml:416 msgid "Sets the Packages file output." msgstr "Define el fichero «Packages» de salida." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:427 +#: apt-ftparchive.1.xml:421 msgid "" "Sets the Sources file output. At least one of <literal>Packages</literal> or " "<literal>Sources</literal> is required." @@ -8290,42 +8290,42 @@ msgstr "" "<literal>Packages</literal> o <literal>Sources</literal>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:433 +#: apt-ftparchive.1.xml:427 msgid "Sets the Contents file output (optional)." msgstr "Define el fichero «Contents» de salida (opcional)" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:438 +#: apt-ftparchive.1.xml:432 msgid "Sets the binary override file." msgstr "Define el fichero binario alternativo." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:443 +#: apt-ftparchive.1.xml:437 msgid "Sets the source override file." msgstr "Define el fichero de fuentes alternativo." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:458 +#: apt-ftparchive.1.xml:452 msgid "Sets the cache DB." msgstr "Define la base de datos de la caché." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:463 +#: apt-ftparchive.1.xml:457 msgid "Appends a path to all the output paths." msgstr "Añade una ruta a todas las rutas de salida." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:468 +#: apt-ftparchive.1.xml:462 msgid "Specifies the file list file." msgstr "Define el fichero de la lista de ficheros." #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:475 +#: apt-ftparchive.1.xml:469 msgid "The Binary Override File" msgstr "El fichero binario alternativo" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:476 +#: apt-ftparchive.1.xml:470 msgid "" "The binary override file is fully compatible with &dpkg-scanpackages;. It " "contains four fields separated by spaces. The first field is the package " @@ -8340,19 +8340,19 @@ msgstr "" "de permutación del mantenedor." #. type: Content of: <refentry><refsect1><para><literallayout> -#: apt-ftparchive.1.xml:482 +#: apt-ftparchive.1.xml:476 #, no-wrap msgid "old [// oldn]* => new" msgstr "antigua [// antigua-n]* => nueva" #. type: Content of: <refentry><refsect1><para><literallayout> -#: apt-ftparchive.1.xml:484 +#: apt-ftparchive.1.xml:478 #, no-wrap msgid "new" msgstr "nueva" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:481 +#: apt-ftparchive.1.xml:475 msgid "" "The general form of the maintainer field is: <placeholder type=" "\"literallayout\" id=\"0\"/> or simply, <placeholder type=\"literallayout\" " @@ -8369,12 +8369,12 @@ msgstr "" "segunda forma sustituye de forma incondicional el campo del mantenedor." #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:492 +#: apt-ftparchive.1.xml:486 msgid "The Source Override File" msgstr "El fichero de fuentes alternativo" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:494 +#: apt-ftparchive.1.xml:488 msgid "" "The source override file is fully compatible with &dpkg-scansources;. It " "contains two fields separated by spaces. The first field is the source " @@ -8385,12 +8385,12 @@ msgstr "" "nombre del paquete fuente, el segundo es la sección a la que se asignará." #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:499 +#: apt-ftparchive.1.xml:493 msgid "The Extra Override File" msgstr "El fichero alternativo adicional" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:501 +#: apt-ftparchive.1.xml:495 msgid "" "The extra override file allows any arbitrary tag to be added or replaced in " "the output. It has three columns, the first is the package, the second is " @@ -8401,7 +8401,7 @@ msgstr "" "paquete, la segunda es la etiqueta y el resto de la línea es el nuevo valor." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:512 +#: apt-ftparchive.1.xml:506 msgid "" "Generate the given checksum. These options default to on, when turned off " "the generated index files will not have the checksum fields where possible. " @@ -8425,7 +8425,7 @@ msgstr "" "<literal>MD5</literal>, <literal>SHA1</literal> o <literal>SHA256</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:523 +#: apt-ftparchive.1.xml:517 msgid "" "Use a binary caching DB. This has no effect on the generate command. " "Configuration Item: <literal>APT::FTPArchive::DB</literal>." @@ -8434,7 +8434,7 @@ msgstr "" "«generate». Opción de configuración: <literal>APT::FTPArchive::DB</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:529 +#: apt-ftparchive.1.xml:523 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quiet up to a maximum of 2. You can also use " @@ -8448,7 +8448,7 @@ msgstr "" "configuración. Opción de configuración: <literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:537 +#: apt-ftparchive.1.xml:531 msgid "" "Perform Delinking. If the <literal>External-Links</literal> setting is used " "then this option actually enables delinking of the files. It defaults to on " @@ -8461,7 +8461,7 @@ msgstr "" "Opción de configuración: <literal>APT::FTPArchive::DeLinkAct</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:545 +#: apt-ftparchive.1.xml:539 msgid "" "Perform contents generation. When this option is set and package indexes are " "being generated with a cache DB then the file listing will also be extracted " @@ -8478,7 +8478,7 @@ msgstr "" "Contents</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:555 +#: apt-ftparchive.1.xml:549 msgid "" "Select the source override file to use with the <literal>sources</literal> " "command. Configuration Item: <literal>APT::FTPArchive::SourceOverride</" @@ -8489,7 +8489,7 @@ msgstr "" "FTPArchive::SourceOverride</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:561 +#: apt-ftparchive.1.xml:555 msgid "" "Make the caching databases read only. Configuration Item: <literal>APT::" "FTPArchive::ReadOnlyDB</literal>." @@ -8498,7 +8498,7 @@ msgstr "" "Opción de configuración: <literal>APT::FTPArchive::ReadOnlyDB</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:566 +#: apt-ftparchive.1.xml:560 msgid "" "Accept in the <literal>packages</literal> and <literal>contents</literal> " "commands only package files matching <literal>*_arch.deb</literal> or " @@ -8512,7 +8512,7 @@ msgstr "" "FTPArchive::Architecture</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:574 +#: apt-ftparchive.1.xml:568 msgid "" "&apt-ftparchive; caches as much as possible of metadata in a cachedb. If " "packages are recompiled and/or republished with the same version again, this " @@ -8536,7 +8536,7 @@ msgstr "" "comprobaciones adicionales son innecesarias." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:586 +#: apt-ftparchive.1.xml:580 msgid "" "This configuration option defaults to \"<literal>true</literal>\" and should " "only be set to <literal>\"false\"</literal> if the Archive generated with " @@ -8552,13 +8552,13 @@ msgstr "" "con la orden «generate»." #. type: Content of: <refentry><refsect1><para><programlisting> -#: apt-ftparchive.1.xml:604 +#: apt-ftparchive.1.xml:598 #, no-wrap msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" msgstr "<command>apt-ftparchive</command> packages <replaceable>directorio</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:600 +#: apt-ftparchive.1.xml:594 msgid "" "To create a compressed Packages file for a directory containing binary " "packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>" @@ -8567,7 +8567,7 @@ msgstr "" "paquetes binarios («.deb»): <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:614 +#: apt-ftparchive.1.xml:608 msgid "" "<command>apt-ftparchive</command> returns zero on normal operation, decimal " "100 on error." @@ -8576,32 +8576,32 @@ msgstr "" "valor 100 en caso de error." #. type: Attribute 'lang' of: <book> -#: guide.dbk:8 offline.dbk:8 +#: guide.dbk:9 offline.dbk:9 msgid "en" msgstr "es" #. type: Content of: <book><title> -#: guide.dbk:10 +#: guide.dbk:11 msgid "APT User's Guide" msgstr "Guía de usuario de APT" #. type: Content of: <book><bookinfo><authorgroup><author><personname> -#: guide.dbk:16 offline.dbk:16 +#: guide.dbk:17 offline.dbk:17 msgid "Jason Gunthorpe" msgstr "Jason Gunthorpe" #. type: Content of: <book><bookinfo><authorgroup><author><email> -#: guide.dbk:16 offline.dbk:16 +#: guide.dbk:17 offline.dbk:17 msgid "jgg@debian.org" msgstr "jgg@debian.org" #. type: Content of: <book><bookinfo><releaseinfo> -#: guide.dbk:20 offline.dbk:20 +#: guide.dbk:21 offline.dbk:21 msgid "Version &apt-product-version;" msgstr "" #. type: Content of: <book><bookinfo><abstract><para> -#: guide.dbk:24 +#: guide.dbk:25 msgid "" "This document provides an overview of how to use the the APT package manager." msgstr "" @@ -8609,19 +8609,19 @@ msgstr "" "APT." #. type: Content of: <book><bookinfo> -#: guide.dbk:28 +#: guide.dbk:29 msgid "" "<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" msgstr "" "<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" #. type: Content of: <book><bookinfo><legalnotice><title> -#: guide.dbk:31 offline.dbk:32 +#: guide.dbk:32 offline.dbk:33 msgid "License Notice" msgstr "" #. type: Content of: <book><bookinfo><legalnotice><para> -#: guide.dbk:33 offline.dbk:34 +#: guide.dbk:34 offline.dbk:35 msgid "" "\"APT\" and this document are free software; you can redistribute them and/" "or modify them under the terms of the GNU General Public License as " @@ -8634,7 +8634,7 @@ msgstr "" "versión 2 o (a su elección) cualquier versión posterior." #. type: Content of: <book><bookinfo><legalnotice><para> -#: guide.dbk:42 offline.dbk:40 +#: guide.dbk:43 offline.dbk:41 msgid "" "For more details, on Debian systems, see the file /usr/share/common-licenses/" "GPL for the full license." @@ -8643,12 +8643,12 @@ msgstr "" "el fichero «/usr/share/common-licenses/GPL»." #. type: Content of: <book><chapter><title> -#: guide.dbk:49 +#: guide.dbk:50 msgid "General" msgstr "General" #. type: Content of: <book><chapter><para> -#: guide.dbk:51 +#: guide.dbk:52 msgid "" "The APT package currently contains two sections, the APT <command>dselect</" "command> method and the <command>apt-get</command> command line user " @@ -8661,12 +8661,12 @@ msgstr "" "desinstalar paquetes, así como descargar paquetes nuevos de Internet." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:57 +#: guide.dbk:58 msgid "Anatomy of the Package System" msgstr "Anatomía del sistema de paquetes" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:59 +#: guide.dbk:60 msgid "" "The Debian packaging system has a large amount of information associated " "with each package to help assure that it integrates cleanly and easily into " @@ -8677,7 +8677,7 @@ msgstr "" "el sistema. La característica más importante es el sistema de dependencias." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:64 +#: guide.dbk:65 msgid "" "The dependency system allows individual programs to make use of shared " "elements in the system such as libraries. It simplifies placing infrequently " @@ -8693,7 +8693,7 @@ msgstr "" "de X y demás." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:71 +#: guide.dbk:72 msgid "" "The first step to understanding the dependency system is to grasp the " "concept of a simple dependency. The meaning of a simple dependency is that a " @@ -8706,7 +8706,7 @@ msgstr "" "funcionar correctamente." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:76 +#: guide.dbk:77 msgid "" "For instance, mailcrypt is an emacs extension that aids in encrypting email " "with GPG. Without GPGP installed mailcrypt is useless, so mailcrypt has a " @@ -8719,7 +8719,7 @@ msgstr "" "una dependencia simple con emacs, ya que sin él mailcrypt es inservible." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:82 +#: guide.dbk:83 msgid "" "The other important dependency to understand is a conflicting dependency. It " "means that a package, when installed with another package, will not work and " @@ -8741,7 +8741,7 @@ msgstr "" "dependencia de conflicto con todos los demás." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:92 +#: guide.dbk:93 msgid "" "As an added complication there is the possibility for a package to pretend " "to be another package. Consider that exim and sendmail for many intents are " @@ -8762,7 +8762,7 @@ msgstr "" "intentar arreglar paquetes manualmente." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:102 +#: guide.dbk:103 msgid "" "At any given time a single dependency may be met by packages that are " "already installed or it may not be. APT attempts to help resolve dependency " @@ -8775,12 +8775,12 @@ msgstr "" "algoritmos automáticos que ayudan en la selección de paquetes a instalar." #. type: Content of: <book><chapter><title> -#: guide.dbk:111 +#: guide.dbk:112 msgid "apt-get" msgstr "apt-get" #. type: Content of: <book><chapter><para> -#: guide.dbk:113 +#: guide.dbk:114 msgid "" "<command>apt-get</command> provides a simple way to install packages from " "the command line. Unlike <command>dpkg</command>, <command>apt-get</command> " @@ -8794,7 +8794,7 @@ msgstr "" "deb» desde una <emphasis>fuente</emphasis>." #. type: Content of: <book><chapter><para><footnote><para> -#: guide.dbk:119 +#: guide.dbk:120 msgid "" "If you are using an http proxy server you must set the http_proxy " "environment variable first, see sources.list(5)" @@ -8803,7 +8803,7 @@ msgstr "" "http_proxy, consulte sources.list (5)." #. type: Content of: <book><chapter><para> -#: guide.dbk:119 +#: guide.dbk:120 msgid "" "The first <placeholder type=\"footnote\" id=\"0\"/> thing that should be " "done before using <command>apt-get</command> is to fetch the package lists " @@ -8817,7 +8817,7 @@ msgstr "" "Por ejemplo," #. type: Content of: <book><chapter><screen> -#: guide.dbk:127 +#: guide.dbk:128 #, no-wrap msgid "" "# apt-get update\n" @@ -8833,17 +8833,17 @@ msgstr "" "Creando árbol de dependencias... Hecho\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:134 +#: guide.dbk:135 msgid "Once updated there are several commands that can be used:" msgstr "Puede usar varias órdenes después de actualizar:" #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:138 +#: guide.dbk:139 msgid "upgrade" msgstr "upgrade" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:141 +#: guide.dbk:142 msgid "" "Upgrade will attempt to gently upgrade the whole system. Upgrade will never " "install a new package or remove an existing package, nor will it ever " @@ -8864,12 +8864,12 @@ msgstr "" "la instalación de tales paquetes." #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:153 +#: guide.dbk:154 msgid "install" msgstr "install" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:156 +#: guide.dbk:157 msgid "" "Install is used to install packages by name. The package is automatically " "fetched and installed. This can be useful if you already know the name of " @@ -8888,12 +8888,12 @@ msgstr "" "confirmación en caso de modificar cualquiera de los argumentos introducidos." #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:167 +#: guide.dbk:168 msgid "dist-upgrade" msgstr "dist-upgrade" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:170 +#: guide.dbk:171 msgid "" "Dist-upgrade is a complete upgrader designed to simplify upgrading between " "releases of Debian. It uses a sophisticated algorithm to determine the best " @@ -8914,7 +8914,7 @@ msgstr "" "quedado atrás." #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:180 +#: guide.dbk:181 msgid "" "It is important to closely look at what dist-upgrade is going to do, its " "decisions may sometimes be quite surprising." @@ -8923,7 +8923,7 @@ msgstr "" "decisiones a veces pueden resultar sorprendentes." #. type: Content of: <book><chapter><para> -#: guide.dbk:187 +#: guide.dbk:188 msgid "" "<command>apt-get</command> has several command line options that are " "detailed in its man page, <citerefentry><refentrytitle>apt-get</" @@ -8945,12 +8945,12 @@ msgstr "" "la orden que provocó su descarga, sin <literal>-d</literal>." #. type: Content of: <book><chapter><title> -#: guide.dbk:199 +#: guide.dbk:200 msgid "DSelect" msgstr "DSelect" #. type: Content of: <book><chapter><para> -#: guide.dbk:201 +#: guide.dbk:202 msgid "" "The APT <command>dselect</command> method provides the complete APT system " "with the <command>dselect</command> package selection GUI. <command>dselect</" @@ -8963,7 +8963,7 @@ msgstr "" "instalar o desinstalar que en realidad instalará APT." #. type: Content of: <book><chapter><para> -#: guide.dbk:207 +#: guide.dbk:208 msgid "" "To enable the APT method you need to select [A]ccess in <command>dselect</" "command> and then choose the APT method. You will be prompted for a set of " @@ -8988,7 +8988,7 @@ msgstr "" "óptico en lugar de descargarlos de Internet." #. type: Content of: <book><chapter><screen> -#: guide.dbk:218 +#: guide.dbk:219 #, no-wrap msgid "" " Set up a list of distribution source locations\n" @@ -9018,7 +9018,7 @@ msgstr "" " URL [http://llug.sep.bnl.gov/debian]:\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:232 +#: guide.dbk:233 msgid "" "The <emphasis>Sources</emphasis> setup starts by asking for the base of the " "Debian archive, defaulting to a HTTP mirror. Next it asks for the " @@ -9029,7 +9029,7 @@ msgstr "" "continuación, preguntará la distribución a obtener." #. type: Content of: <book><chapter><screen> -#: guide.dbk:237 +#: guide.dbk:238 #, no-wrap msgid "" " Please give the distribution tag to get or a path to the\n" @@ -9045,7 +9045,7 @@ msgstr "" " Distribution [stable]:\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:244 +#: guide.dbk:245 msgid "" "The distribution refers to the Debian version in the archive, " "<emphasis>stable</emphasis> refers to the latest released version and " @@ -9064,7 +9064,7 @@ msgstr "" "estos paquetes a E.E.U.U es ilegal." #. type: Content of: <book><chapter><screen> -#: guide.dbk:253 +#: guide.dbk:254 #, no-wrap msgid "" " Please give the components to get\n" @@ -9078,7 +9078,7 @@ msgstr "" " Components [main contrib non-free]:\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:259 +#: guide.dbk:260 msgid "" "The components list refers to the list of sub distributions to fetch. The " "distribution is split up based on software licenses, main being DFSG free " @@ -9092,7 +9092,7 @@ msgstr "" "distribución." #. type: Content of: <book><chapter><para> -#: guide.dbk:265 +#: guide.dbk:266 msgid "" "Any number of sources can be added, the setup script will continue to prompt " "until you have specified all that you want." @@ -9101,7 +9101,7 @@ msgstr "" "preguntará por fuentes hasta que el usuario defina todo lo que quiera." #. type: Content of: <book><chapter><para> -#: guide.dbk:269 +#: guide.dbk:270 msgid "" "Before starting to use <command>dselect</command> it is necessary to update " "the available list by selecting [U]pdate from the menu. This is a superset " @@ -9117,7 +9117,7 @@ msgstr "" "literal> con anterioridad." #. type: Content of: <book><chapter><para> -#: guide.dbk:276 +#: guide.dbk:277 msgid "" "You can then go on and make your selections using [S]elect and then perform " "the installation using [I]nstall. When using the APT method the [C]onfig and " @@ -9130,7 +9130,7 @@ msgstr "" "ambos a la vez." #. type: Content of: <book><chapter><para> -#: guide.dbk:282 +#: guide.dbk:283 msgid "" "By default APT will automatically remove the package (.deb) files once they " "have been successfully installed. To change this behavior place " @@ -9142,12 +9142,12 @@ msgstr "" "etc/apt/apt.conf»." #. type: Content of: <book><chapter><title> -#: guide.dbk:288 +#: guide.dbk:289 msgid "The Interface" msgstr "La interfaz" #. type: Content of: <book><chapter><para><footnote><para> -#: guide.dbk:292 +#: guide.dbk:293 msgid "" "The <command>dselect</command> method actually is a set of wrapper scripts " "to <command>apt-get</command>. The method actually provides more " @@ -9158,7 +9158,7 @@ msgstr "" "funcionalidad que la presente en <command>apt-get</command> por si mismo." #. type: Content of: <book><chapter><para> -#: guide.dbk:290 +#: guide.dbk:291 msgid "" "Both that APT <command>dselect</command> method and <command>apt-get</" "command> share the same interface. It is a simple system that generally " @@ -9175,12 +9175,12 @@ msgstr "" "por hacer." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:301 +#: guide.dbk:302 msgid "Startup" msgstr "Arranque" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:303 +#: guide.dbk:304 msgid "" "Before all operations except update, APT performs a number of actions to " "prepare its internal state. It also does some checks of the system's state. " @@ -9193,7 +9193,7 @@ msgstr "" "cualquier momento ejecutando <literal>apt-get check</literal>." #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:309 +#: guide.dbk:310 #, no-wrap msgid "" "# apt-get check\n" @@ -9205,7 +9205,7 @@ msgstr "" "Creando árbol de dependencias... Hecho\n" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:314 +#: guide.dbk:315 msgid "" "The first thing it does is read all the package files into memory. APT uses " "a caching scheme so this operation will be faster the second time it is run. " @@ -9218,7 +9218,7 @@ msgstr "" "paquete, éstos se ignorarán y verá una advertencia al finalizar apt-get." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:320 +#: guide.dbk:321 msgid "" "The final operation performs a detailed analysis of the system's " "dependencies. It checks every dependency of every installed or unpacked " @@ -9231,7 +9231,7 @@ msgstr "" "y <command>apt-get</command> se negará a ejecutarse." #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:326 +#: guide.dbk:327 #, no-wrap msgid "" "# apt-get check\n" @@ -9267,7 +9267,7 @@ msgstr "" " libreadlineg2: Entra en conflicto:libreadline2 (<< 2.1-2.1)\n" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:343 +#: guide.dbk:344 msgid "" "In this example the system has many problems, including a serious problem " "with libreadlineg2. For each package that has unmet dependencies a line is " @@ -9282,7 +9282,7 @@ msgstr "" "paquete tiene un problema de dependencias." #. type: Content of: <book><chapter><section><para><footnote><para> -#: guide.dbk:352 +#: guide.dbk:353 msgid "" "APT however considers all known dependencies and attempts to prevent broken " "packages" @@ -9291,7 +9291,7 @@ msgstr "" "prevenir paquetes rotos" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:350 +#: guide.dbk:351 msgid "" "There are two ways a system can get into a broken state like this. The first " "is caused by <command>dpkg</command> missing some subtle relationships " @@ -9308,7 +9308,7 @@ msgstr "" "desempaquetado sin que sus dependencias estuviesen instaladas previamente." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:359 +#: guide.dbk:360 msgid "" "The second situation is much less serious than the first because APT places " "certain constraints on the order that packages are installed. In both cases " @@ -9327,7 +9327,7 @@ msgstr "" "existen scripts fallidos del mantenedor." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:368 +#: guide.dbk:369 msgid "" "However, if the <literal>-f</literal> option is used to correct a seriously " "broken system caused by the first case then it is possible that it will " @@ -9342,12 +9342,12 @@ msgstr "" "corregir la situación lo suficiente como para que APT pueda continuar." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:376 +#: guide.dbk:377 msgid "The Status Report" msgstr "El informe de estado" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:378 +#: guide.dbk:379 msgid "" "Before proceeding <command>apt-get</command> will present a report on what " "will happen. Generally the report reflects the type of operation being " @@ -9364,12 +9364,12 @@ msgstr "" "ejecutada." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:385 +#: guide.dbk:386 msgid "The Extra Package list" msgstr "La lista de paquetes extras" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:387 +#: guide.dbk:388 #, no-wrap msgid "" "The following extra packages will be installed:\n" @@ -9387,7 +9387,7 @@ msgstr "" " ssh\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:395 +#: guide.dbk:396 msgid "" "The Extra Package list shows all of the packages that will be installed or " "upgraded in excess of the ones mentioned on the command line. It is only " @@ -9400,12 +9400,12 @@ msgstr "" "paquetes listados son el resultado de una instalación automática." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:402 +#: guide.dbk:403 msgid "The Packages to Remove" msgstr "Los paquetes a eliminar" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:404 +#: guide.dbk:405 #, no-wrap msgid "" "The following packages will be REMOVED:\n" @@ -9421,7 +9421,7 @@ msgstr "" " nas xpilot xfig\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:411 +#: guide.dbk:412 msgid "" "The Packages to Remove list shows all of the packages that will be removed " "from the system. It can be shown for any of the operations and should be " @@ -9440,12 +9440,12 @@ msgstr "" "debido a una instalación interrumpida." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:421 +#: guide.dbk:422 msgid "The New Packages list" msgstr "La lista de paquetes nuevos" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:423 +#: guide.dbk:424 #, no-wrap msgid "" "The following NEW packages will installed:\n" @@ -9455,7 +9455,7 @@ msgstr "" " zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:427 +#: guide.dbk:428 msgid "" "The New Packages list is simply a reminder of what will happen. The packages " "listed are not presently installed in the system but will be when APT is " @@ -9466,12 +9466,12 @@ msgstr "" "estarán cuando APT finalice." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:432 +#: guide.dbk:433 msgid "The Kept Back list" msgstr "La lista de paquetes retenidos" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:434 +#: guide.dbk:435 #, no-wrap msgid "" "The following packages have been kept back\n" @@ -9483,7 +9483,7 @@ msgstr "" " gs snmp arena lynx xpat2 groff xscreensaver\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:439 +#: guide.dbk:440 msgid "" "Whenever the whole system is being upgraded there is the possibility that " "new versions of packages cannot be installed because they require new things " @@ -9500,12 +9500,12 @@ msgstr "" "<command>dselect</command> para así resolver esos problemas." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:448 +#: guide.dbk:449 msgid "Held Packages warning" msgstr "Advertencia de paquetes retenidos" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:450 +#: guide.dbk:451 #, no-wrap msgid "" "The following held packages will be changed:\n" @@ -9515,7 +9515,7 @@ msgstr "" " cvs\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:454 +#: guide.dbk:455 msgid "" "Sometimes you can ask APT to install a package that is on hold, in such a " "case it prints out a warning that the held package is going to be changed. " @@ -9526,19 +9526,19 @@ msgstr "" "debería ocurrir durante un «dist-upgrade» o un «install»." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:460 +#: guide.dbk:461 msgid "Final summary" msgstr "Resumen final" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:462 +#: guide.dbk:463 msgid "" "Finally, APT will print out a summary of all the changes that will occur." msgstr "" "Por último, APT mostrará un resumen de los cambios que se llevarán a cabo." #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:465 +#: guide.dbk:466 #, no-wrap msgid "" "206 packages upgraded, 8 newly installed, 23 to remove and 51 not upgraded.\n" @@ -9551,7 +9551,7 @@ msgstr "" "Se necesita descargar 65.7M/66.7M de archivos. Se usarán 26.5M después de desempaquetar.\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:470 +#: guide.dbk:471 msgid "" "The first line of the summary simply is a reduced version of all of the " "lists and includes the number of upgrades - that is packages already " @@ -9583,7 +9583,7 @@ msgstr "" "a liberar." #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:484 +#: guide.dbk:485 msgid "" "Some other reports can be generated by using the -u option to show packages " "to upgrade, they are similar to the previous examples." @@ -9592,12 +9592,12 @@ msgstr "" "actualizar, similar a los ejemplos anteriores." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:491 +#: guide.dbk:492 msgid "The Status Display" msgstr "La pantalla de estado" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:493 +#: guide.dbk:494 msgid "" "During the download of archives and package files APT prints out a series of " "status messages." @@ -9606,7 +9606,7 @@ msgstr "" "ficheros de paquete y archivo." #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:497 +#: guide.dbk:498 #, no-wrap msgid "" "# apt-get update\n" @@ -9626,7 +9626,7 @@ msgstr "" "11% [5 testing/non-free Esperando las cabeceras 0/32.1k 0%] 2203b/s 1m52s\n" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:506 +#: guide.dbk:507 msgid "" "The lines starting with <emphasis>Get</emphasis> are printed out when APT " "begins to fetch a file while the last line indicates the progress of the " @@ -9644,7 +9644,7 @@ msgstr "" "inexacta." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:514 +#: guide.dbk:515 msgid "" "The next section of the status line is repeated once for each download " "thread and indicates the operation being performed and some useful " @@ -9665,7 +9665,7 @@ msgstr "" "conectarse con los archivos, contendrá el nombre del paquete obtenido." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:524 +#: guide.dbk:525 msgid "" "Inside of the single quote is an informative string indicating the progress " "of the negotiation phase of the download. Typically it progresses from " @@ -9698,7 +9698,7 @@ msgstr "" "de transferencia visible." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:539 +#: guide.dbk:540 msgid "" "The status display updates every half second to provide a constant feedback " "on the download progress while the Get lines scroll back whenever a new file " @@ -9714,12 +9714,12 @@ msgstr "" "para omitir la pantalla de estado." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:547 +#: guide.dbk:548 msgid "Dpkg" msgstr "Dpkg" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:549 +#: guide.dbk:550 msgid "" "APT uses <command>dpkg</command> for installing the archives and will switch " "over to the <command>dpkg</command> interface once downloading is completed. " @@ -9736,12 +9736,12 @@ msgstr "" "Éstas son demasiado variadas como para poder tratarlas aquí en su totalidad." #. type: Content of: <book><title> -#: offline.dbk:10 +#: offline.dbk:11 msgid "Using APT Offline" msgstr "Uso de APT Offline" #. type: Content of: <book><bookinfo><abstract><para> -#: offline.dbk:24 +#: offline.dbk:25 msgid "" "This document describes how to use APT in a non-networked environment, " "specifically a 'sneaker-net' approach for performing upgrades." @@ -9750,24 +9750,24 @@ msgstr "" "específicamente una aproximación «sneaker-net» a la tarea de actualización." #. type: Content of: <book><bookinfo> -#: offline.dbk:29 +#: offline.dbk:30 msgid "" "<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" msgstr "" "<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" #. type: Content of: <book><chapter><title> -#: offline.dbk:47 +#: offline.dbk:48 msgid "Introduction" msgstr "Introducción" #. type: Content of: <book><chapter><section><title> -#: offline.dbk:49 offline.dbk:79 offline.dbk:191 +#: offline.dbk:50 offline.dbk:80 offline.dbk:192 msgid "Overview" msgstr "Resumen" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:51 +#: offline.dbk:52 msgid "" "Normally APT requires direct access to a Debian archive, either from a local " "media or through a network. Another common complaint is that a Debian " @@ -9781,7 +9781,7 @@ msgstr "" "rápida." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:57 +#: offline.dbk:58 msgid "" "The solution to this is to use large removable media such as a Zip disc or a " "SuperDisk disc. These discs are not large enough to store the entire Debian " @@ -9806,7 +9806,7 @@ msgstr "" "poca o ninguna conexión." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:68 +#: offline.dbk:69 msgid "" "This is achieved by creatively manipulating the APT configuration file. The " "essential premise to tell APT to look on a disc for it's archive files. Note " @@ -9820,12 +9820,12 @@ msgstr "" "tales como ext2, fat32 o vfat." #. type: Content of: <book><chapter><title> -#: offline.dbk:77 +#: offline.dbk:78 msgid "Using APT on both machines" msgstr "Uso de APT en ambas máquinas" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:81 +#: offline.dbk:82 msgid "" "APT being available on both machines gives the simplest configuration. The " "basic idea is to place a copy of the status file on the disc and use the " @@ -9839,7 +9839,7 @@ msgstr "" "disco debería tener este aspecto:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:87 +#: offline.dbk:88 #, no-wrap msgid "" " /disc/\n" @@ -9861,12 +9861,12 @@ msgstr "" " apt.conf\n" #. type: Content of: <book><chapter><section><title> -#: offline.dbk:98 +#: offline.dbk:99 msgid "The configuration file" msgstr "El fichero de configuración" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:100 +#: offline.dbk:101 msgid "" "The configuration file should tell APT to store its files on the disc and to " "use the configuration files on the disc as well. The sources.list should " @@ -9885,7 +9885,7 @@ msgstr "" "URI «copy», de idéntica sintaxis al URI «file»." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:108 +#: offline.dbk:109 msgid "" "<emphasis>apt.conf</emphasis> must contain the necessary information to make " "APT use the disc:" @@ -9894,7 +9894,7 @@ msgstr "" "para que APT use el disco:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:112 +#: offline.dbk:113 #, no-wrap msgid "" " APT\n" @@ -9946,7 +9946,7 @@ msgstr "" " };\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:137 +#: offline.dbk:138 msgid "" "More details can be seen by examining the apt.conf man page and the sample " "configuration file in <emphasis>/usr/share/doc/apt/examples/apt.conf</" @@ -9956,7 +9956,7 @@ msgstr "" "de ejemplo en <emphasis>/usr/share/doc/apt/examples/apt.conf</emphasis>." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:142 +#: offline.dbk:143 msgid "" "On the target machine the first thing to do is mount the disc and copy " "<emphasis>/var/lib/dpkg/status</emphasis> to it. You will also need to " @@ -9973,7 +9973,7 @@ msgstr "" "el sistema remoto:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:151 +#: offline.dbk:152 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" @@ -9990,7 +9990,7 @@ msgstr "" " destino ]\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:158 +#: offline.dbk:159 msgid "" "The dist-upgrade command can be replaced with any other standard APT " "commands, particularly dselect-upgrade. You can even use an APT front end " @@ -10003,7 +10003,7 @@ msgstr "" "problema al informar después de sus selecciones al sistema remoto." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:164 +#: offline.dbk:165 msgid "" "Now the disc contains all of the index files and archives needed to upgrade " "the target machine. Take the disc back and run:" @@ -10012,7 +10012,7 @@ msgstr "" "para actualizar el sistema destino. Inserte el disco otra vez y ejecute:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:168 +#: offline.dbk:169 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" @@ -10028,7 +10028,7 @@ msgstr "" " [ O cualquiera otra orden de APT ]\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:175 +#: offline.dbk:176 msgid "" "It is necessary for proper function to re-specify the status file to be the " "local one. This is very important!" @@ -10037,7 +10037,7 @@ msgstr "" "local. Tiene una importancia crucial." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:179 +#: offline.dbk:180 msgid "" "If you are using dselect you can do the very risky operation of copying disc/" "status to /var/lib/dpkg/status so that any selections you made on the remote " @@ -10052,12 +10052,12 @@ msgstr "" "estado si dpkg o APT se han ejecutado mientras tanto." #. type: Content of: <book><chapter><title> -#: offline.dbk:189 +#: offline.dbk:190 msgid "Using APT and wget" msgstr "Uso de APT y wget" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:193 +#: offline.dbk:194 msgid "" "<emphasis>wget</emphasis> is a popular and portable download tool that can " "run on nearly any machine. Unlike the method above this requires that the " @@ -10069,7 +10069,7 @@ msgstr "" "disponibles." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:198 +#: offline.dbk:199 msgid "" "The basic idea is to create a disc that has only the archive files " "downloaded from the remote site. This is done by using the --print-uris " @@ -10082,12 +10082,12 @@ msgstr "" "obtendrá los paquetes." #. type: Content of: <book><chapter><section><title> -#: offline.dbk:204 +#: offline.dbk:205 msgid "Operation" msgstr "Operación" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:206 +#: offline.dbk:207 msgid "" "Unlike the previous technique no special configuration files are required. " "We merely use the standard APT commands to generate the file list." @@ -10097,7 +10097,7 @@ msgstr "" "generar el fichero con la lista." #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:210 +#: offline.dbk:211 #, no-wrap msgid "" " # apt-get dist-upgrade\n" @@ -10112,7 +10112,7 @@ msgstr "" " # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:216 +#: offline.dbk:217 msgid "" "Any command other than dist-upgrade could be used here, including dselect-" "upgrade." @@ -10121,7 +10121,7 @@ msgstr "" "«dselect-upgrade»." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:220 +#: offline.dbk:221 msgid "" "The /disc/wget-script file will now contain a list of wget commands to " "execute in order to fetch the necessary archives. This script should be run " @@ -10134,12 +10134,12 @@ msgstr "" "la salida en el disco." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:226 +#: offline.dbk:227 msgid "The remote machine would do something like" msgstr "El sistema remoto haría algo como" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:229 +#: offline.dbk:230 #, no-wrap msgid "" " # cd /disc\n" @@ -10151,7 +10151,7 @@ msgstr "" " [ wait.. ]\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:234 +#: offline.dbk:235 msgid "" "Once the archives are downloaded and the disc returned to the Debian machine " "installation can proceed using," @@ -10160,13 +10160,13 @@ msgstr "" "conectado al sistema Debian, ejecute la instalación con lo siguiente." #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:238 +#: offline.dbk:239 #, no-wrap msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:241 +#: offline.dbk:242 msgid "Which will use the already fetched archives on the disc." msgstr "Esto utiliza los archivos del disco previamente obtenidos." diff --git a/doc/po/fr.po b/doc/po/fr.po index 1fabc54dc..f94f0e07a 100644 --- a/doc/po/fr.po +++ b/doc/po/fr.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:52+0200\n" +"POT-Creation-Date: 2014-08-28 00:20+0000\n" "PO-Revision-Date: 2014-07-04 01:28+0200\n" "Last-Translator: Christian Perrier <bubulle@debian.org>\n" "Language-Team: French <debian-l10n-french@lists.debian.org>\n" @@ -610,37 +610,37 @@ msgid "" msgstr "<!ENTITY synopsis-keyid \"id_de_clé\">" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt.8.xml:25 apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 -#: apt-mark.8.xml:28 apt-secure.8.xml:27 apt-cdrom.8.xml:27 -#: apt-config.8.xml:28 +#: apt.8.xml:21 apt-get.8.xml:22 apt-cache.8.xml:22 apt-key.8.xml:21 +#: apt-mark.8.xml:22 apt-secure.8.xml:21 apt-cdrom.8.xml:21 +#: apt-config.8.xml:22 msgid "8" msgstr "8" #. type: Content of: <refentry><refmeta><refmiscinfo> -#: apt.8.xml:26 apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 -#: apt-mark.8.xml:29 apt-secure.8.xml:28 apt-cdrom.8.xml:28 -#: apt-config.8.xml:29 apt.conf.5.xml:34 apt_preferences.5.xml:28 -#: sources.list.5.xml:29 apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 -#: apt-ftparchive.1.xml:29 +#: apt.8.xml:22 apt-get.8.xml:23 apt-cache.8.xml:23 apt-key.8.xml:22 +#: apt-mark.8.xml:23 apt-secure.8.xml:22 apt-cdrom.8.xml:22 +#: apt-config.8.xml:23 apt.conf.5.xml:28 apt_preferences.5.xml:22 +#: sources.list.5.xml:23 apt-extracttemplates.1.xml:23 apt-sortpkgs.1.xml:23 +#: apt-ftparchive.1.xml:23 msgid "APT" msgstr "APT" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt.8.xml:32 +#: apt.8.xml:28 msgid "command-line interface" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:37 apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 -#: apt-mark.8.xml:40 apt-secure.8.xml:52 apt-cdrom.8.xml:39 -#: apt-config.8.xml:40 apt.conf.5.xml:43 apt_preferences.5.xml:38 -#: sources.list.5.xml:38 apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 -#: apt-ftparchive.1.xml:40 +#: apt.8.xml:33 apt-get.8.xml:34 apt-cache.8.xml:34 apt-key.8.xml:33 +#: apt-mark.8.xml:34 apt-secure.8.xml:46 apt-cdrom.8.xml:33 +#: apt-config.8.xml:34 apt.conf.5.xml:37 apt_preferences.5.xml:32 +#: sources.list.5.xml:32 apt-extracttemplates.1.xml:34 apt-sortpkgs.1.xml:34 +#: apt-ftparchive.1.xml:34 msgid "Description" msgstr "Description" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:38 +#: apt.8.xml:34 msgid "" "<command>apt</command> (Advanced Package Tool) is the command-line tool for " "handling packages. It provides a commandline interface for the package " @@ -649,7 +649,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:47 +#: apt.8.xml:43 msgid "" "<literal>list</literal> is used to display a list of packages. It supports " "shell pattern for matching package names and the following options: " @@ -658,14 +658,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:58 +#: apt.8.xml:54 msgid "" "<literal>search</literal> searches for the given term(s) and display " "matching packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:64 +#: apt.8.xml:60 #, fuzzy #| msgid "" #| "<literal>rdepends</literal> shows a listing of each reverse dependency a " @@ -678,14 +678,14 @@ msgstr "" "dépendances inverses d'un paquet." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:71 +#: apt.8.xml:67 msgid "" "<literal>install</literal> is followed by one or more package names desired " "for installation or upgrading." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:75 apt-get.8.xml:118 +#: apt.8.xml:71 apt-get.8.xml:112 msgid "" "A specific version of a package can be selected for installation by " "following the package name with an equals and the version of the package to " @@ -702,7 +702,7 @@ msgstr "" "unstable)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:85 apt-get.8.xml:153 +#: apt.8.xml:81 apt-get.8.xml:147 msgid "" "<literal>remove</literal> is identical to <literal>install</literal> except " "that packages are removed instead of installed. Note that removing a package " @@ -718,14 +718,14 @@ msgstr "" "d'être supprimé." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:93 +#: apt.8.xml:89 msgid "" "<literal>edit-sources</literal> lets you edit your sources.list file and " "provides basic sanity checks." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:99 +#: apt.8.xml:95 #, fuzzy #| msgid "" #| "<literal>showhold</literal> is used to print a list of packages on hold " @@ -738,16 +738,16 @@ msgstr "" "de manière analogue aux commandes de même type." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:105 +#: apt.8.xml:101 msgid "" "<literal>upgrade</literal> is used to install the newest versions of all " "packages currently installed on the system from the sources enumerated in " -"<filename>/etc/apt/sources.list</filename>. New package will be installed, " -"but existing package will never removed." +"<filename>/etc/apt/sources.list</filename>. New packages will be installed, " +"but existing packages will never be removed." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:114 +#: apt.8.xml:110 msgid "" "<literal>full-upgrade</literal> performs the function of upgrade but may " "also remove installed packages if that is required in order to resolve a " @@ -755,19 +755,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:124 apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 -#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 -#: apt-ftparchive.1.xml:506 +#: apt.8.xml:120 apt-get.8.xml:251 apt-cache.8.xml:244 apt-mark.8.xml:104 +#: apt-config.8.xml:80 apt-extracttemplates.1.xml:48 apt-sortpkgs.1.xml:44 +#: apt-ftparchive.1.xml:500 msgid "options" msgstr "options" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:134 +#: apt.8.xml:130 msgid "Script usage" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:136 +#: apt.8.xml:132 msgid "" "The &apt; commandline is designed as a end-user tool and it may change the " "output between versions. While it tries to not break backward compatibility " @@ -777,12 +777,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:144 +#: apt.8.xml:140 msgid "Differences to &apt-get;" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:145 +#: apt.8.xml:141 msgid "" "The <command>apt</command> command is meant to be pleasant for end users and " "does not need to be backward compatible like &apt-get;. Therefore some " @@ -790,28 +790,28 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:151 +#: apt.8.xml:147 #, fuzzy #| msgid "the <literal>Package:</literal> line" msgid "The option <literal>DPkg::Progress-Fancy</literal> is enabled." msgstr "la ligne <literal>Package:</literal>" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:155 +#: apt.8.xml:151 #, fuzzy #| msgid "the <literal>Component:</literal> line" msgid "The option <literal>APT::Color</literal> is enabled." msgstr "La ligne <literal>Component:</literal>" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:159 +#: apt.8.xml:155 msgid "" "A new <literal>list</literal> command is available similar to <literal>dpkg " "--list</literal>." msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:164 +#: apt.8.xml:160 #, fuzzy #| msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" msgid "" @@ -820,16 +820,16 @@ msgid "" msgstr "La ligne <literal>Archive:</literal> ou <literal>Suite:</literal>" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 -#: apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 -#: apt-config.8.xml:111 apt.conf.5.xml:1228 apt_preferences.5.xml:707 -#: sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 -#: apt-ftparchive.1.xml:609 +#: apt.8.xml:170 apt-get.8.xml:552 apt-cache.8.xml:346 apt-key.8.xml:191 +#: apt-mark.8.xml:127 apt-secure.8.xml:187 apt-cdrom.8.xml:148 +#: apt-config.8.xml:105 apt.conf.5.xml:1222 apt_preferences.5.xml:701 +#: sources.list.5.xml:274 apt-extracttemplates.1.xml:66 apt-sortpkgs.1.xml:59 +#: apt-ftparchive.1.xml:603 msgid "See Also" msgstr "Voir aussi" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:175 +#: apt.8.xml:171 #, fuzzy #| msgid "" #| "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " @@ -844,14 +844,14 @@ msgstr "" "« HOWTO » d'APT." #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:180 apt-get.8.xml:564 apt-cache.8.xml:357 apt-mark.8.xml:137 -#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 -#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 +#: apt.8.xml:176 apt-get.8.xml:558 apt-cache.8.xml:351 apt-mark.8.xml:131 +#: apt-cdrom.8.xml:153 apt-config.8.xml:110 apt-extracttemplates.1.xml:70 +#: apt-sortpkgs.1.xml:63 apt-ftparchive.1.xml:607 msgid "Diagnostics" msgstr "Diagnostics" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:181 +#: apt.8.xml:177 #, fuzzy #| msgid "" #| "<command>apt-get</command> returns zero on normal operation, decimal 100 " @@ -864,13 +864,13 @@ msgstr "" "décimal 100 en cas d'erreur." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-get.8.xml:35 +#: apt-get.8.xml:29 msgid "APT package handling utility -- command-line interface" msgstr "" "Utilitaire APT pour la gestion des paquets -- interface en ligne de commande." #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:41 +#: apt-get.8.xml:35 #, fuzzy #| msgid "" #| "<command>apt-get</command> is the command-line tool for handling " @@ -889,8 +889,8 @@ msgstr "" "existent, comme &dselect;, &aptitude;, &synaptic; and &wajig;." #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:46 apt-cache.8.xml:46 apt-cdrom.8.xml:53 apt-config.8.xml:46 -#: apt-ftparchive.1.xml:56 +#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-cdrom.8.xml:47 apt-config.8.xml:40 +#: apt-ftparchive.1.xml:50 msgid "" "Unless the <option>-h</option>, or <option>--help</option> option is given, " "one of the commands below must be present." @@ -899,7 +899,7 @@ msgstr "" "donnée, l'une des commandes suivantes doit être présente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:51 +#: apt-get.8.xml:45 msgid "" "<literal>update</literal> is used to resynchronize the package index files " "from their sources. The indexes of available packages are fetched from the " @@ -924,7 +924,7 @@ msgstr "" "ne peut être connue à l'avance." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:63 +#: apt-get.8.xml:57 msgid "" "<literal>upgrade</literal> is used to install the newest versions of all " "packages currently installed on the system from the sources enumerated in " @@ -950,7 +950,7 @@ msgstr "" "l'existence de nouvelles versions des paquets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:76 +#: apt-get.8.xml:70 msgid "" "<literal>dist-upgrade</literal> in addition to performing the function of " "<literal>upgrade</literal>, also intelligently handles changing dependencies " @@ -974,7 +974,7 @@ msgstr "" "un mécanisme de remplacement des paramètres généraux pour certains paquets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:89 +#: apt-get.8.xml:83 msgid "" "<literal>dselect-upgrade</literal> is used in conjunction with the " "traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</" @@ -992,7 +992,7 @@ msgstr "" "installation de nouveaux paquets)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:100 +#: apt-get.8.xml:94 msgid "" "<literal>install</literal> is followed by one or more packages desired for " "installation or upgrading. Each package is a package name, not a fully " @@ -1021,7 +1021,7 @@ msgstr "" "prises par le système de résolution des conflits d'apt-get." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:125 +#: apt-get.8.xml:119 msgid "" "Both of the version selection mechanisms can downgrade packages and must be " "used with care." @@ -1031,7 +1031,7 @@ msgstr "" "avec précaution." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:128 +#: apt-get.8.xml:122 msgid "" "This is also the target to use if you want to upgrade one or more already-" "installed packages without upgrading every package you have on your system. " @@ -1051,7 +1051,7 @@ msgstr "" "comme décrit plus haut) sera récupérée et installée." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:139 +#: apt-get.8.xml:133 msgid "" "Finally, the &apt-preferences; mechanism allows you to create an alternative " "installation policy for individual packages." @@ -1060,7 +1060,7 @@ msgstr "" "l'installation des paquets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:143 +#: apt-get.8.xml:137 msgid "" "If no package matches the given expression and the expression contains one " "of '.', '?' or '*' then it is assumed to be a POSIX regular expression, and " @@ -1081,7 +1081,7 @@ msgstr "" "d'utiliser une expression plus précise." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:161 +#: apt-get.8.xml:155 msgid "" "<literal>purge</literal> is identical to <literal>remove</literal> except " "that packages are removed and purged (any configuration files are deleted " @@ -1092,7 +1092,7 @@ msgstr "" "de configuration sont également effacés)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:166 +#: apt-get.8.xml:160 msgid "" "<literal>source</literal> causes <command>apt-get</command> to fetch source " "packages. APT will examine the available packages to decide which source " @@ -1111,7 +1111,7 @@ msgstr "" "par paquet avec la syntaxe <literal>paquet/version</literal> si possible." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:174 +#: apt-get.8.xml:168 msgid "" "Source packages are tracked separately from binary packages via <literal>deb-" "src</literal> lines in the &sources-list; file. This means that you will " @@ -1127,7 +1127,7 @@ msgstr "" "installé ou que vous voulez installer." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:180 +#: apt-get.8.xml:174 msgid "" "If the <option>--compile</option> option is specified then the package will " "be compiled to a binary .deb using <command>dpkg-buildpackage</command> for " @@ -1142,7 +1142,7 @@ msgstr "" "décompacté." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:187 +#: apt-get.8.xml:181 msgid "" "A specific source version can be retrieved by postfixing the source name " "with an equals and then the version to fetch, similar to the mechanism used " @@ -1157,7 +1157,7 @@ msgstr "" "Source</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:193 +#: apt-get.8.xml:187 msgid "" "Note that source packages are not installed and tracked in the " "<command>dpkg</command> database like binary packages; they are simply " @@ -1169,7 +1169,7 @@ msgstr "" "les archives tar." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:199 +#: apt-get.8.xml:193 msgid "" "<literal>build-dep</literal> causes apt-get to install/remove packages in an " "attempt to satisfy the build dependencies for a source package. By default " @@ -1184,7 +1184,7 @@ msgstr "" "indiquée avec l'option <option>--host-architecture</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:206 +#: apt-get.8.xml:200 msgid "" "<literal>check</literal> is a diagnostic tool; it updates the package cache " "and checks for broken dependencies." @@ -1193,7 +1193,7 @@ msgstr "" "jour le cache des paquets et cherche les dépendances défectueuses." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:211 +#: apt-get.8.xml:205 msgid "" "<literal>download</literal> will download the given binary package into the " "current directory." @@ -1202,7 +1202,7 @@ msgstr "" "répertoire courant." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:217 +#: apt-get.8.xml:211 #, fuzzy #| msgid "" #| "<literal>clean</literal> clears out the local repository of retrieved " @@ -1227,7 +1227,7 @@ msgstr "" "temps en temps si l'on veut libérer de l'espace disque." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:224 +#: apt-get.8.xml:218 msgid "" "Like <literal>clean</literal>, <literal>autoclean</literal> clears out the " "local repository of retrieved package files. The difference is that it only " @@ -1246,7 +1246,7 @@ msgstr "" "installés." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:234 +#: apt-get.8.xml:228 msgid "" "<literal>autoremove</literal> is used to remove packages that were " "automatically installed to satisfy dependencies for other packages and are " @@ -1257,7 +1257,7 @@ msgstr "" "ne sont plus nécessaires." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:239 +#: apt-get.8.xml:233 msgid "" "<literal>changelog</literal> downloads a package changelog and displays it " "through <command>sensible-pager</command>. The server name and base " @@ -1281,7 +1281,7 @@ msgstr "" "<option>install</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:262 +#: apt-get.8.xml:256 msgid "" "Do not consider recommended packages as a dependency for installing. " "Configuration Item: <literal>APT::Install-Recommends</literal>." @@ -1290,7 +1290,7 @@ msgstr "" "Élément de configuration : <literal>APT::Install-Recommends</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:267 +#: apt-get.8.xml:261 msgid "" "Consider suggested packages as a dependency for installing. Configuration " "Item: <literal>APT::Install-Suggests</literal>." @@ -1299,7 +1299,7 @@ msgstr "" "de configuration : <literal>APT::Install-Suggests</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:272 +#: apt-get.8.xml:266 msgid "" "Download only; package files are only retrieved, not unpacked or installed. " "Configuration Item: <literal>APT::Get::Download-Only</literal>." @@ -1309,7 +1309,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:277 +#: apt-get.8.xml:271 #, fuzzy #| msgid "" #| "Fix; attempt to correct a system with broken dependencies in place. This " @@ -1350,7 +1350,7 @@ msgstr "" "configuration : <literal>APT::Get::Fix-Broken</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:292 +#: apt-get.8.xml:286 msgid "" "Ignore missing packages; if packages cannot be retrieved or fail the " "integrity check after retrieval (corrupted package files), hold back those " @@ -1370,7 +1370,7 @@ msgstr "" "<literal>APT::Get::Fix-Missing</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:303 +#: apt-get.8.xml:297 msgid "" "Disables downloading of packages. This is best used with <option>--ignore-" "missing</option> to force APT to use only the .debs it has already " @@ -1382,7 +1382,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:310 +#: apt-get.8.xml:304 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quiet up to a maximum of 2. You can also use " @@ -1404,7 +1404,7 @@ msgstr "" "configuration : <literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:325 +#: apt-get.8.xml:319 msgid "" "No action; perform a simulation of events that would occur but do not " "actually change the system. Configuration Item: <literal>APT::Get::" @@ -1415,7 +1415,7 @@ msgstr "" "<literal>APT::Get::Simulate</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:329 +#: apt-get.8.xml:323 msgid "" "Simulated runs performed as a user will automatically deactivate locking " "(<literal>Debug::NoLocking</literal>), and if the option <literal>APT::Get::" @@ -1436,7 +1436,7 @@ msgstr "" "notifications)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:337 +#: apt-get.8.xml:331 msgid "" "Simulated runs print out a series of lines, each representing a " "<command>dpkg</command> operation: configure (<literal>Conf</literal>), " @@ -1451,7 +1451,7 @@ msgstr "" "que les dommages n'ont aucune conséquence (rare)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:345 +#: apt-get.8.xml:339 msgid "" "Automatic yes to prompts; assume \"yes\" as answer to all prompts and run " "non-interactively. If an undesirable situation, such as changing a held " @@ -1467,7 +1467,7 @@ msgstr "" "configuration : <literal>APT::Get::Assume-Yes</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:353 +#: apt-get.8.xml:347 msgid "" "Automatic \"no\" to all prompts. Configuration Item: <literal>APT::Get::" "Assume-No</literal>." @@ -1476,7 +1476,7 @@ msgstr "" "configuration : <literal>APT::Get::Assume-No</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:358 +#: apt-get.8.xml:352 msgid "" "Show upgraded packages; print out a list of all packages that are to be " "upgraded. Configuration Item: <literal>APT::Get::Show-Upgraded</literal>." @@ -1486,7 +1486,7 @@ msgstr "" "Upgraded</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:364 +#: apt-get.8.xml:358 msgid "" "Show full versions for upgraded and installed packages. Configuration Item: " "<literal>APT::Get::Show-Versions</literal>." @@ -1495,7 +1495,7 @@ msgstr "" "Élément de configuration : <literal>APT::Get::Show-Versions</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:370 +#: apt-get.8.xml:364 #, fuzzy #| msgid "" #| "This option controls the architecture packages are built for by " @@ -1521,7 +1521,7 @@ msgstr "" "literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:380 +#: apt-get.8.xml:374 #, fuzzy #| msgid "" #| "This option controls the architecture packages are built for by " @@ -1546,7 +1546,7 @@ msgstr "" "literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:391 +#: apt-get.8.xml:385 msgid "" "Compile source packages after downloading them. Configuration Item: " "<literal>APT::Get::Compile</literal>." @@ -1555,7 +1555,7 @@ msgstr "" "configuration : <literal>APT::Get::Compile</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:396 +#: apt-get.8.xml:390 msgid "" "Ignore package holds; this causes <command>apt-get</command> to ignore a " "hold placed on a package. This may be useful in conjunction with " @@ -1569,7 +1569,7 @@ msgstr "" "<literal>APT::Ignore-Hold</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:403 +#: apt-get.8.xml:397 msgid "" "Allow installing new packages when used in conjunction with " "<literal>upgrade</literal>. This is useful if the update of a installed " @@ -1581,7 +1581,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:415 +#: apt-get.8.xml:409 msgid "" "Do not upgrade packages; when used in conjunction with <literal>install</" "literal>, <literal>no-upgrade</literal> will prevent packages on the command " @@ -1594,7 +1594,7 @@ msgstr "" "Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:422 +#: apt-get.8.xml:416 msgid "" "Do not install new packages; when used in conjunction with <literal>install</" "literal>, <literal>only-upgrade</literal> will install upgrades for already " @@ -1607,7 +1607,7 @@ msgstr "" "configuration : <literal>APT::Get::Only-Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:430 +#: apt-get.8.xml:424 msgid "" "Force yes; this is a dangerous option that will cause apt to continue " "without prompting if it is doing something potentially harmful. It should " @@ -1623,7 +1623,7 @@ msgstr "" "yes</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:438 +#: apt-get.8.xml:432 msgid "" "Instead of fetching the files to install their URIs are printed. Each URI " "will have the path, the destination file name, the size and the expected MD5 " @@ -1645,7 +1645,7 @@ msgstr "" "<literal>APT::Get::Print-URIs</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:449 +#: apt-get.8.xml:443 msgid "" "Use purge instead of remove for anything that would be removed. An asterisk " "(\"*\") will be displayed next to packages which are scheduled to be purged. " @@ -1659,7 +1659,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:457 +#: apt-get.8.xml:451 msgid "" "Re-install packages that are already installed and at the newest version. " "Configuration Item: <literal>APT::Get::ReInstall</literal>." @@ -1668,7 +1668,7 @@ msgstr "" "Élément de configuration : <literal>APT::Get::ReInstall</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:462 +#: apt-get.8.xml:456 msgid "" "This option is on by default; use <literal>--no-list-cleanup</literal> to " "turn it off. When it is on, <command>apt-get</command> will automatically " @@ -1686,7 +1686,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:472 +#: apt-get.8.xml:466 msgid "" "This option controls the default input to the policy engine; it creates a " "default pin at priority 990 using the specified release string. This " @@ -1708,7 +1708,7 @@ msgstr "" "Release</literal>. Voyez aussi la page de manuel d'&apt-preferences;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:487 +#: apt-get.8.xml:481 msgid "" "Only perform operations that are 'trivial'. Logically this can be considered " "related to <option>--assume-yes</option>; where <option>--assume-yes</" @@ -1722,7 +1722,7 @@ msgstr "" "Get::Trivial-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:494 +#: apt-get.8.xml:488 msgid "" "If any packages are to be removed apt-get immediately aborts without " "prompting. Configuration Item: <literal>APT::Get::Remove</literal>." @@ -1732,7 +1732,7 @@ msgstr "" "Remove</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:500 +#: apt-get.8.xml:494 msgid "" "If the command is either <literal>install</literal> or <literal>remove</" "literal>, then this option acts like running the <literal>autoremove</" @@ -1745,7 +1745,7 @@ msgstr "" "inutilisés. Élément de configuration : <literal>APT::Get::Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:507 +#: apt-get.8.xml:501 msgid "" "Only has meaning for the <literal>source</literal> and <literal>build-dep</" "literal> commands. Indicates that the given source names are not to be " @@ -1765,7 +1765,7 @@ msgstr "" "literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:518 +#: apt-get.8.xml:512 msgid "" "Download only the diff, dsc, or tar file of a source archive. Configuration " "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</" @@ -1777,7 +1777,7 @@ msgstr "" "literal>, " #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:524 +#: apt-get.8.xml:518 msgid "" "Only process architecture-dependent build-dependencies. Configuration Item: " "<literal>APT::Get::Arch-Only</literal>." @@ -1787,7 +1787,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:529 +#: apt-get.8.xml:523 msgid "" "Ignore if packages can't be authenticated and don't prompt about it. This " "is useful for tools like pbuilder. Configuration Item: <literal>APT::Get::" @@ -1799,7 +1799,7 @@ msgstr "" "AllowUnauthenticated</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:535 +#: apt-get.8.xml:529 msgid "" "Show user friendly progress information in the terminal window when packages " "are installed, upgraded or removed. For a machine parsable version of this " @@ -1809,13 +1809,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 -#: apt.conf.5.xml:1222 apt_preferences.5.xml:700 +#: apt-get.8.xml:542 apt-cache.8.xml:339 apt-key.8.xml:170 apt-mark.8.xml:121 +#: apt.conf.5.xml:1216 apt_preferences.5.xml:694 msgid "Files" msgstr "Fichiers" #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:559 +#: apt-get.8.xml:553 #, fuzzy #| msgid "" #| "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " @@ -1831,7 +1831,7 @@ msgstr "" "« HOWTO » d'APT." #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:565 +#: apt-get.8.xml:559 msgid "" "<command>apt-get</command> returns zero on normal operation, decimal 100 on " "error." @@ -1840,12 +1840,12 @@ msgstr "" "décimal 100 en cas d'erreur." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-cache.8.xml:35 +#: apt-cache.8.xml:29 msgid "query the APT cache" msgstr "recherche dans le cache d'APT" #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:41 +#: apt-cache.8.xml:35 msgid "" "<command>apt-cache</command> performs a variety of operations on APT's " "package cache. <command>apt-cache</command> does not manipulate the state of " @@ -1858,7 +1858,7 @@ msgstr "" "desquelles il extrait les informations intéressantes." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:51 +#: apt-cache.8.xml:45 msgid "" "<literal>gencaches</literal> creates APT's package cache. This is done " "implicitly by all commands needing this cache if it is missing or outdated." @@ -1868,14 +1868,14 @@ msgstr "" "ou obsolète." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-cache.8.xml:55 apt-cache.8.xml:144 apt-cache.8.xml:165 -#: apt-cache.8.xml:187 apt-cache.8.xml:192 apt-cache.8.xml:208 -#: apt-cache.8.xml:226 apt-cache.8.xml:238 +#: apt-cache.8.xml:49 apt-cache.8.xml:138 apt-cache.8.xml:159 +#: apt-cache.8.xml:181 apt-cache.8.xml:186 apt-cache.8.xml:202 +#: apt-cache.8.xml:220 apt-cache.8.xml:232 msgid "&synopsis-pkg;" msgstr "&synopsis-pkg;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:56 +#: apt-cache.8.xml:50 msgid "" "<literal>showpkg</literal> displays information about the packages listed on " "the command line. Remaining arguments are package names. The available " @@ -1899,7 +1899,7 @@ msgstr "" "résultat :" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> -#: apt-cache.8.xml:68 +#: apt-cache.8.xml:62 #, no-wrap msgid "" "Package: libreadline2\n" @@ -1925,7 +1925,7 @@ msgstr "" "Reverse Provides: \n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:80 +#: apt-cache.8.xml:74 msgid "" "Thus it may be seen that libreadline2, version 2.1-12, depends on libc5 and " "ncurses3.0 which must be installed for libreadline2 to work. In turn, " @@ -1944,7 +1944,7 @@ msgstr "" "consulter le code source d'APT." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:89 +#: apt-cache.8.xml:83 msgid "" "<literal>stats</literal> displays some statistics about the cache. No " "further arguments are expected. Statistics reported are:" @@ -1954,7 +1954,7 @@ msgstr "" "rapportées :" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:92 +#: apt-cache.8.xml:86 msgid "" "<literal>Total package names</literal> is the number of package names found " "in the cache." @@ -1963,7 +1963,7 @@ msgstr "" "le cache." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:96 +#: apt-cache.8.xml:90 msgid "" "<literal>Normal packages</literal> is the number of regular, ordinary " "package names; these are packages that bear a one-to-one correspondence " @@ -1976,7 +1976,7 @@ msgstr "" "dépendance. La majorité des paquets appartient à cette catégorie." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:102 +#: apt-cache.8.xml:96 msgid "" "<literal>Pure virtual packages</literal> is the number of packages that " "exist only as a virtual package name; that is, packages only \"provide\" the " @@ -1994,7 +1994,7 @@ msgstr "" "n'existe aucun paquet nommé « mail-transport-agent »." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:110 +#: apt-cache.8.xml:104 msgid "" "<literal>Single virtual packages</literal> is the number of packages with " "only one package providing a particular virtual package. For example, in the " @@ -2007,7 +2007,7 @@ msgstr "" "« xless » remplit « X11-text-viewer »." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:116 +#: apt-cache.8.xml:110 msgid "" "<literal>Mixed virtual packages</literal> is the number of packages that " "either provide a particular virtual package or have the virtual package name " @@ -2020,7 +2020,7 @@ msgstr "" "paquet réel et il est aussi fourni par « debconf-tiny »." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:123 +#: apt-cache.8.xml:117 msgid "" "<literal>Missing</literal> is the number of package names that were " "referenced in a dependency but were not provided by any package. Missing " @@ -2035,7 +2035,7 @@ msgstr "" "Habituellement on les trouve dans les champs « Conflicts » ou « Breaks »." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:130 +#: apt-cache.8.xml:124 msgid "" "<literal>Total distinct</literal> versions is the number of package versions " "found in the cache; this value is therefore at least equal to the number of " @@ -2050,7 +2050,7 @@ msgstr "" "considérablement plus grande que le nombre total de paquets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:137 +#: apt-cache.8.xml:131 msgid "" "<literal>Total dependencies</literal> is the number of dependency " "relationships claimed by all of the packages in the cache." @@ -2059,7 +2059,7 @@ msgstr "" "dépendances déclarées par tous les paquets présents dans le cache." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:145 +#: apt-cache.8.xml:139 msgid "" "<literal>showsrc</literal> displays all the source package records that " "match the given package names. All versions are shown, as well as all " @@ -2070,7 +2070,7 @@ msgstr "" "les entrées qui déclarent que ces noms correspondent à des paquets binaires." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:151 +#: apt-cache.8.xml:145 msgid "" "<literal>dump</literal> shows a short listing of every package in the cache. " "It is primarily for debugging." @@ -2079,7 +2079,7 @@ msgstr "" "paquet du cache. Elle est d'abord destinée au débogage." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:156 +#: apt-cache.8.xml:150 msgid "" "<literal>dumpavail</literal> prints out an available list to stdout. This is " "suitable for use with &dpkg; and is used by the &dselect; method." @@ -2089,7 +2089,7 @@ msgstr "" "et la méthode &dselect; s'en sert." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:161 +#: apt-cache.8.xml:155 msgid "" "<literal>unmet</literal> displays a summary of all unmet dependencies in the " "package cache." @@ -2098,7 +2098,7 @@ msgstr "" "dépendances absentes dans le cache de paquets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:166 +#: apt-cache.8.xml:160 msgid "" "<literal>show</literal> performs a function similar to <command>dpkg --print-" "avail</command>; it displays the package records for the named packages." @@ -2108,12 +2108,12 @@ msgstr "" "argument." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-cache.8.xml:171 +#: apt-cache.8.xml:165 msgid "&synopsis-regex;" msgstr "&synopsis-regex;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:172 +#: apt-cache.8.xml:166 msgid "" "<literal>search</literal> performs a full text search on all available " "package lists for the POSIX regex pattern given, see ®ex;. It searches " @@ -2134,7 +2134,7 @@ msgstr "" "mais seulement dans les noms de paquets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:183 +#: apt-cache.8.xml:177 msgid "" "Separate arguments can be used to specify multiple search patterns that are " "and'ed together." @@ -2143,7 +2143,7 @@ msgstr "" "rationnelles différentes sur lesquelles seront réalisées un « et » logique." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:188 +#: apt-cache.8.xml:182 msgid "" "<literal>depends</literal> shows a listing of each dependency a package has " "and all the possible other packages that can fulfill that dependency." @@ -2153,7 +2153,7 @@ msgstr "" "satisfont ces dépendances." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:193 +#: apt-cache.8.xml:187 msgid "" "<literal>rdepends</literal> shows a listing of each reverse dependency a " "package has." @@ -2162,12 +2162,12 @@ msgstr "" "dépendances inverses d'un paquet." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:197 +#: apt-cache.8.xml:191 msgid "<optional><replaceable>&synopsis-prefix;</replaceable></optional>" msgstr "<optional><replaceable>&synopsis-prefix;</replaceable></optional>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:198 +#: apt-cache.8.xml:192 msgid "" "This command prints the name of each package APT knows. The optional " "argument is a prefix match to filter the name list. The output is suitable " @@ -2182,7 +2182,7 @@ msgstr "" "l'option <option>--generate</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:203 +#: apt-cache.8.xml:197 msgid "" "Note that a package which APT knows of is not necessarily available to " "download, installable or installed, e.g. virtual packages are also listed in " @@ -2193,7 +2193,7 @@ msgstr "" "affichés dans la liste créée." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:209 +#: apt-cache.8.xml:203 msgid "" "<literal>dotty</literal> takes a list of packages on the command line and " "generates output suitable for use by dotty from the <ulink url=\"http://www." @@ -2215,7 +2215,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:218 +#: apt-cache.8.xml:212 msgid "" "The resulting nodes will have several shapes; normal packages are boxes, " "pure virtual packages are triangles, mixed virtual packages are diamonds, " @@ -2230,14 +2230,14 @@ msgstr "" "conflits." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:223 +#: apt-cache.8.xml:217 msgid "Caution, dotty cannot graph larger sets of packages." msgstr "" "Attention, dotty ne peut pas représenter des ensembles très grands de " "paquets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:227 +#: apt-cache.8.xml:221 msgid "" "The same as <literal>dotty</literal>, only for xvcg from the <ulink url=" "\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG tool</ulink>." @@ -2247,12 +2247,12 @@ msgstr "" "ulink>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:231 +#: apt-cache.8.xml:225 msgid "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>" msgstr "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:232 +#: apt-cache.8.xml:226 msgid "" "<literal>policy</literal> is meant to help debug issues relating to the " "preferences file. With no arguments it will print out the priorities of each " @@ -2265,7 +2265,7 @@ msgstr "" "paquet donné en argument." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:239 +#: apt-cache.8.xml:233 msgid "" "<literal>apt-cache</literal>'s <literal>madison</literal> command attempts " "to mimic the output format and a subset of the functionality of the Debian " @@ -2285,7 +2285,7 @@ msgstr "" "literal>)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:255 +#: apt-cache.8.xml:249 msgid "" "Select the file to store the package cache. The package cache is the primary " "cache used by all operations. Configuration Item: <literal>Dir::Cache::" @@ -2296,7 +2296,7 @@ msgstr "" "<literal>Dir::Cache::pkgcache</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:261 +#: apt-cache.8.xml:255 msgid "" "Select the file to store the source cache. The source is used only by " "<literal>gencaches</literal> and it stores a parsed version of the package " @@ -2312,7 +2312,7 @@ msgstr "" "<literal>Dir::Cache::srcpkgcache</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:269 +#: apt-cache.8.xml:263 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quietness up to a maximum of 2. You can also use " @@ -2327,7 +2327,7 @@ msgstr "" "<literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:276 +#: apt-cache.8.xml:270 msgid "" "Print only important dependencies; for use with <literal>unmet</literal> and " "<literal>depends</literal>. Causes only Depends and Pre-Depends relations to " @@ -2339,7 +2339,7 @@ msgstr "" "<literal>APT::Cache::Important</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:290 +#: apt-cache.8.xml:284 msgid "" "Per default the <literal>depends</literal> and <literal>rdepends</literal> " "print all dependencies. This can be tweaked with these flags which will omit " @@ -2354,7 +2354,7 @@ msgstr "" "replaceable></literal>, p. ex. <literal>APT::Cache::ShowRecommends</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:297 +#: apt-cache.8.xml:291 msgid "" "Print full package records when searching. Configuration Item: " "<literal>APT::Cache::ShowFull</literal>." @@ -2364,7 +2364,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:302 +#: apt-cache.8.xml:296 msgid "" "Print full records for all available versions. This is the default; to turn " "it off, use <option>--no-all-versions</option>. If <option>--no-all-" @@ -2382,7 +2382,7 @@ msgstr "" "<literal>APT::Cache::AllVersions</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:311 +#: apt-cache.8.xml:305 msgid "" "Perform automatic package cache regeneration, rather than use the cache as " "it is. This is the default; to turn it off, use <option>--no-generate</" @@ -2394,7 +2394,7 @@ msgstr "" "configuration : <literal>APT::Cache::Generate</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:317 +#: apt-cache.8.xml:311 msgid "" "Only search on the package names, not the long descriptions. Configuration " "Item: <literal>APT::Cache::NamesOnly</literal>." @@ -2404,7 +2404,7 @@ msgstr "" "NamesOnly</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:322 +#: apt-cache.8.xml:316 msgid "" "Make <literal>pkgnames</literal> print all names, including virtual packages " "and missing dependencies. Configuration Item: <literal>APT::Cache::" @@ -2415,7 +2415,7 @@ msgstr "" "configuration : <literal>APT::Cache::AllNames</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:328 +#: apt-cache.8.xml:322 msgid "" "Make <literal>depends</literal> and <literal>rdepends</literal> recursive so " "that all packages mentioned are printed once. Configuration Item: " @@ -2427,7 +2427,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:335 +#: apt-cache.8.xml:329 msgid "" "Limit the output of <literal>depends</literal> and <literal>rdepends</" "literal> to packages which are currently installed. Configuration Item: " @@ -2438,12 +2438,12 @@ msgstr "" "Élément de configuration : <literal>APT::Cache::Installed</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:353 +#: apt-cache.8.xml:347 msgid "&apt-conf;, &sources-list;, &apt-get;" msgstr "&apt-conf;, &sources-list;, &apt-get;." #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:358 +#: apt-cache.8.xml:352 msgid "" "<command>apt-cache</command> returns zero on normal operation, decimal 100 " "on error." @@ -2452,12 +2452,12 @@ msgstr "" "nombre décimal 100 en cas d'erreur." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-key.8.xml:34 +#: apt-key.8.xml:28 msgid "APT key management utility" msgstr "Utilitaire de gestion des clés d'APT" #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:41 +#: apt-key.8.xml:35 msgid "" "<command>apt-key</command> is used to manage the list of keys used by apt to " "authenticate packages. Packages which have been authenticated using these " @@ -2467,12 +2467,12 @@ msgstr "" "les paquets. Les paquets authentifiés par ces clés seront réputés fiables." #. type: Content of: <refentry><refsect1><title> -#: apt-key.8.xml:47 +#: apt-key.8.xml:41 msgid "Commands" msgstr "Commandes" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:52 +#: apt-key.8.xml:46 msgid "" "Add a new key to the list of trusted keys. The key is read from the " "filename given with the parameter &synopsis-param-filename; or if the " @@ -2483,32 +2483,32 @@ msgstr "" "si le nom de fichier est <literal>-</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:65 +#: apt-key.8.xml:59 msgid "Remove a key from the list of trusted keys." msgstr "Supprimer une clé de la liste des clés fiables." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:76 +#: apt-key.8.xml:70 msgid "Output the key &synopsis-param-keyid; to standard output." msgstr "Afficher la clé &synopsis-param-keyid; sur la sortie standard." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:87 +#: apt-key.8.xml:81 msgid "Output all trusted keys to standard output." msgstr "Afficher toutes les clés fiables sur la sortie standard." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:98 +#: apt-key.8.xml:92 msgid "List trusted keys." msgstr "Afficher la liste des clés fiables." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:109 +#: apt-key.8.xml:103 msgid "List fingerprints of trusted keys." msgstr "Afficher les empreintes des clés fiables." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:120 +#: apt-key.8.xml:114 msgid "" "Pass advanced options to gpg. With adv --recv-key you can download the " "public key." @@ -2517,7 +2517,7 @@ msgstr "" "possible de télécharger une clé publique." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:132 +#: apt-key.8.xml:126 msgid "" "Update the local keyring with the archive keyring and remove from the local " "keyring the archive keys which are no longer valid. The archive keyring is " @@ -2531,7 +2531,7 @@ msgstr "" "&keyring-distro;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:146 +#: apt-key.8.xml:140 msgid "" "Perform an update working similarly to the <command>update</command> command " "above, but get the archive keyring from a URI instead and validate it " @@ -2549,12 +2549,12 @@ msgstr "" "place. Par contre, la version d'Ubuntu permet de l'utiliser." #. type: Content of: <refentry><refsect1><title> -#: apt-key.8.xml:162 apt-cdrom.8.xml:82 +#: apt-key.8.xml:156 apt-cdrom.8.xml:76 msgid "Options" msgstr "Options" #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:163 +#: apt-key.8.xml:157 msgid "" "Note that options need to be defined before the commands described in the " "previous section." @@ -2563,7 +2563,7 @@ msgstr "" "décrites dans la section suivante." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:166 +#: apt-key.8.xml:160 msgid "" "With this option it is possible to specify a particular keyring file the " "command should operate on. The default is that a command is executed on the " @@ -2580,47 +2580,47 @@ msgstr "" "les nouvelles clés y seront ajoutées." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:181 +#: apt-key.8.xml:175 msgid "<filename>/etc/apt/trustdb.gpg</filename>" msgstr "<filename>/etc/apt/trustdb.gpg</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:182 +#: apt-key.8.xml:176 msgid "Local trust database of archive keys." msgstr "Base de données locale de fiabilité des clés de l'archive." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:185 +#: apt-key.8.xml:179 msgid "&keyring-filename;" msgstr "&keyring-filename;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:186 +#: apt-key.8.xml:180 msgid "Keyring of &keyring-distro; archive trusted keys." msgstr "Trousseau des clés fiables de l'archive &keyring-distro;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:189 +#: apt-key.8.xml:183 msgid "&keyring-removed-filename;" msgstr "&keyring-removed-filename;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:190 +#: apt-key.8.xml:184 msgid "Keyring of &keyring-distro; archive removed trusted keys." msgstr "Trousseau des clés fiables supprimées de l'archive &keyring-distro;." #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:199 +#: apt-key.8.xml:193 msgid "&apt-get;, &apt-secure;" msgstr "&apt-get;, &apt-secure;" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-mark.8.xml:35 +#: apt-mark.8.xml:29 msgid "mark/unmark a package as being automatically-installed" msgstr "Indiquer si un paquet a été installé automatiquement ou non" #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:41 +#: apt-mark.8.xml:35 msgid "" "<command>apt-mark</command> will change whether a package has been marked as " "being automatically installed." @@ -2629,7 +2629,7 @@ msgstr "" "a été automatiquement installé ou pas." #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:45 +#: apt-mark.8.xml:39 msgid "" "When you request that a package is installed, and as a result other packages " "are installed to satisfy its dependencies, the dependencies are marked as " @@ -2645,7 +2645,7 @@ msgstr "" "command>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:54 +#: apt-mark.8.xml:48 msgid "" "<literal>auto</literal> is used to mark a package as being automatically " "installed, which will cause the package to be removed when no more manually " @@ -2656,7 +2656,7 @@ msgstr "" "aucun paquet installé manuellement ne dépend de lui." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:62 +#: apt-mark.8.xml:56 msgid "" "<literal>manual</literal> is used to mark a package as being manually " "installed, which will prevent the package from being automatically removed " @@ -2667,7 +2667,7 @@ msgstr "" "aucun autre paquet n'en dépend." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:70 +#: apt-mark.8.xml:64 msgid "" "<literal>hold</literal> is used to mark a package as held back, which will " "prevent the package from being automatically installed, upgraded or " @@ -2682,7 +2682,7 @@ msgstr "" "non affecté par l'option <option>--file</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:80 +#: apt-mark.8.xml:74 msgid "" "<literal>unhold</literal> is used to cancel a previously set hold on a " "package to allow all actions again." @@ -2692,7 +2692,7 @@ msgstr "" "liée." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:86 +#: apt-mark.8.xml:80 msgid "" "<literal>showauto</literal> is used to print a list of automatically " "installed packages with each package on a new line. All automatically " @@ -2706,7 +2706,7 @@ msgstr "" "affichés." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:94 +#: apt-mark.8.xml:88 msgid "" "<literal>showmanual</literal> can be used in the same way as " "<literal>showauto</literal> except that it will print a list of manually " @@ -2717,7 +2717,7 @@ msgstr "" "manuellement." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:101 +#: apt-mark.8.xml:95 msgid "" "<literal>showhold</literal> is used to print a list of packages on hold in " "the same way as for the other show commands." @@ -2726,7 +2726,7 @@ msgstr "" "de manière analogue aux commandes de même type." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:117 +#: apt-mark.8.xml:111 msgid "" "Read/Write package stats from the filename given with the parameter " "&synopsis-param-filename; instead of from the default location, which is " @@ -2739,7 +2739,7 @@ msgstr "" "literal>)." #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:138 +#: apt-mark.8.xml:132 msgid "" "<command>apt-mark</command> returns zero on normal operation, non-zero on " "error." @@ -2748,12 +2748,12 @@ msgstr "" "autre chiffre en cas d'erreur." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-secure.8.xml:49 +#: apt-secure.8.xml:43 msgid "Archive authentication support for APT" msgstr "Gestion de l'authentification d'archive avec APT" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:54 +#: apt-secure.8.xml:48 msgid "" "Starting with version 0.6, <command>apt</command> contains code that does " "signature checking of the Release file for all archives. This ensures that " @@ -2766,7 +2766,7 @@ msgstr "" "la clé de la signature du fichier Release." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:62 +#: apt-secure.8.xml:56 msgid "" "If a package comes from a archive without a signature, or with a signature " "that apt does not have a key for, that package is considered untrusted, and " @@ -2782,7 +2782,7 @@ msgstr "" "vérification des sources avant tout téléchargement de paquet." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:71 +#: apt-secure.8.xml:65 msgid "" "The package frontends &apt-get;, &aptitude; and &synaptic; support this new " "authentication feature." @@ -2791,12 +2791,12 @@ msgstr "" "fonction de certification." #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:76 +#: apt-secure.8.xml:70 msgid "Trusted archives" msgstr "Trusted archives" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:79 +#: apt-secure.8.xml:73 msgid "" "The chain of trust from an apt archive to the end user is made up of several " "steps. <command>apt-secure</command> is the last step in this chain; " @@ -2813,7 +2813,7 @@ msgstr "" "en sorte que l'archive soit fiable." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:87 +#: apt-secure.8.xml:81 msgid "" "apt-secure does not review signatures at a package level. If you require " "tools to do this you should look at <command>debsig-verify</command> and " @@ -2826,7 +2826,7 @@ msgstr "" "verify et devscripts." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:94 +#: apt-secure.8.xml:88 msgid "" "The chain of trust in Debian starts when a maintainer uploads a new package " "or a new version of a package to the Debian archive. In order to become " @@ -2844,7 +2844,7 @@ msgstr "" "l'identité des propriétaires de la clé." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:104 +#: apt-secure.8.xml:98 #, fuzzy msgid "" "Once the uploaded package is verified and included in the archive, the " @@ -2865,7 +2865,7 @@ msgstr "" "miroirs. Les clés sont fournies par le paquet &keyring-package;." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:115 +#: apt-secure.8.xml:109 msgid "" "End users can check the signature of the Release file, extract a checksum of " "a package from it and compare it with the checksum of the package they " @@ -2877,7 +2877,7 @@ msgstr "" "automatiquement." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:120 +#: apt-secure.8.xml:114 msgid "" "Notice that this is distinct from checking signatures on a per package " "basis. It is designed to prevent two possible attacks:" @@ -2886,7 +2886,7 @@ msgstr "" "paquet. Elle vise à empêcher deux types d'attaque possibles :" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:125 +#: apt-secure.8.xml:119 msgid "" "<literal>Network \"man in the middle\" attacks</literal>. Without signature " "checking, malicious agents can introduce themselves into the package " @@ -2901,7 +2901,7 @@ msgstr "" "trafic vers un serveur fourbe (par usurpation d'adresses)." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:133 +#: apt-secure.8.xml:127 msgid "" "<literal>Mirror network compromise</literal>. Without signature checking, a " "malicious agent can compromise a mirror host and modify the files in it to " @@ -2914,7 +2914,7 @@ msgstr "" "paquets de ce miroir propagent du code malveillant." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:140 +#: apt-secure.8.xml:134 msgid "" "However, it does not defend against a compromise of the Debian master server " "itself (which signs the packages) or against a compromise of the key used to " @@ -2927,12 +2927,12 @@ msgstr "" "signature des paquets." #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:146 +#: apt-secure.8.xml:140 msgid "User configuration" msgstr "Configuration utilisateur" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:148 +#: apt-secure.8.xml:142 msgid "" "<command>apt-key</command> is the program that manages the list of keys used " "by apt. It can be used to add or remove keys, although an installation of " @@ -2945,7 +2945,7 @@ msgstr "" "Debian et les différents répertoires de paquets." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:155 +#: apt-secure.8.xml:149 msgid "" "In order to add a new key you need to first download it (you should make " "sure you are using a trusted communication channel when retrieving it), add " @@ -2962,12 +2962,12 @@ msgstr "" "l'archive que vous avez configurée." #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:164 +#: apt-secure.8.xml:158 msgid "Archive configuration" msgstr "Configuration d'une archive" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:166 +#: apt-secure.8.xml:160 msgid "" "If you want to provide archive signatures in an archive under your " "maintenance you have to:" @@ -2976,7 +2976,7 @@ msgstr "" "devez :" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:171 +#: apt-secure.8.xml:165 msgid "" "<emphasis>Create a toplevel Release file</emphasis>, if it does not exist " "already. You can do this by running <command>apt-ftparchive release</" @@ -2987,7 +2987,7 @@ msgstr "" "ftparchive release</command> (fournie dans le paquet apt-utils)." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:176 +#: apt-secure.8.xml:170 msgid "" "<emphasis>Sign it</emphasis>. You can do this by running <command>gpg --" "clearsign -o InRelease Release</command> and <command>gpg -abs -o Release." @@ -2998,7 +2998,7 @@ msgstr "" "command>." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:180 +#: apt-secure.8.xml:174 msgid "" "<emphasis>Publish the key fingerprint</emphasis>, that way your users will " "know what key they need to import in order to authenticate the files in the " @@ -3009,7 +3009,7 @@ msgstr "" "authentifier les fichiers de l'archive." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:187 +#: apt-secure.8.xml:181 msgid "" "Whenever the contents of the archive change (new packages are added or " "removed) the archive maintainer has to follow the first two steps outlined " @@ -3019,7 +3019,7 @@ msgstr "" "les deux premières étapes." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:195 +#: apt-secure.8.xml:189 msgid "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " "&debsign;, &debsig-verify;, &gpg;" @@ -3028,7 +3028,7 @@ msgstr "" "&debsign;, &debsig-verify;, &gpg;" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:199 +#: apt-secure.8.xml:193 msgid "" "For more background information you might want to review the <ulink url=" "\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7\">Debian " @@ -3045,12 +3045,12 @@ msgstr "" "Distribution HOWTO</ulink> par V. Alex Brennen." #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:212 +#: apt-secure.8.xml:206 msgid "Manpage Authors" msgstr "Auteurs des pages de manuel" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:214 +#: apt-secure.8.xml:208 msgid "" "This man-page is based on the work of Javier Fernández-Sanguino Peña, Isaac " "Jones, Colin Walters, Florian Weimer and Michael Vogt." @@ -3059,12 +3059,12 @@ msgstr "" "Peña, Isaac Jones, Colin Walters, Florian Weimer et Michael Vogt." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-cdrom.8.xml:34 +#: apt-cdrom.8.xml:28 msgid "APT CD-ROM management utility" msgstr "Utilitaire de gestion des CD d'APT" #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:40 +#: apt-cdrom.8.xml:34 msgid "" "<command>apt-cdrom</command> is used to add a new CD-ROM to APT's list of " "available sources. <command>apt-cdrom</command> takes care of determining " @@ -3077,7 +3077,7 @@ msgstr "" "gravure et de vérifier les fichiers d'index." #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:47 +#: apt-cdrom.8.xml:41 msgid "" "It is necessary to use <command>apt-cdrom</command> to add CDs to the APT " "system; it cannot be done by hand. Furthermore each disc in a multi-CD set " @@ -3089,7 +3089,7 @@ msgstr "" "pour prendre en compte de possibles erreurs de gravure." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:58 +#: apt-cdrom.8.xml:52 msgid "" "<literal>add</literal> is used to add a new disc to the source list. It will " "unmount the CD-ROM device, prompt for a disc to be inserted and then proceed " @@ -3104,7 +3104,7 @@ msgstr "" "titre descriptif est demandé." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:66 +#: apt-cdrom.8.xml:60 msgid "" "APT uses a CD-ROM ID to track which disc is currently in the drive and " "maintains a database of these IDs in <filename>&statedir;/cdroms.list</" @@ -3115,7 +3115,7 @@ msgstr "" "identifiants dans <filename>&statedir;/cdroms.list</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:74 +#: apt-cdrom.8.xml:68 msgid "" "A debugging tool to report the identity of the current disc as well as the " "stored file name" @@ -3124,7 +3124,7 @@ msgstr "" "le nom du fichier stocké." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:87 +#: apt-cdrom.8.xml:81 #, fuzzy #| msgid "" #| "Mount point; specify the location to mount the CD-ROM. This mount point " @@ -3141,7 +3141,7 @@ msgstr "" "mount</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:95 +#: apt-cdrom.8.xml:89 msgid "" "Mount point; specify the location to mount the CD-ROM. This mount point must " "be listed in <filename>/etc/fstab</filename> and properly configured. " @@ -3153,7 +3153,7 @@ msgstr "" "mount</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:104 +#: apt-cdrom.8.xml:98 msgid "" "Rename a disc; change the label of a disc or override the disc's given " "label. This option will cause <command>apt-cdrom</command> to prompt for a " @@ -3165,7 +3165,7 @@ msgstr "" "<literal>APT::CDROM::Rename</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:113 +#: apt-cdrom.8.xml:107 msgid "" "No mounting; prevent <command>apt-cdrom</command> from mounting and " "unmounting the mount point. Configuration Item: <literal>APT::CDROM::" @@ -3176,7 +3176,7 @@ msgstr "" "NoMount</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:121 +#: apt-cdrom.8.xml:115 msgid "" "Fast Copy; Assume the package files are valid and do not check every " "package. This option should be used only if <command>apt-cdrom</command> has " @@ -3190,7 +3190,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:131 +#: apt-cdrom.8.xml:125 msgid "" "Thorough Package Scan; This option may be needed with some old Debian " "1.1/1.2 discs that have Package files in strange places. It takes much " @@ -3202,7 +3202,7 @@ msgstr "" "le CD mais tous les paquets seront repérés." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:142 +#: apt-cdrom.8.xml:136 msgid "" "No Changes; Do not change the &sources-list; file and do not write index " "files. Everything is still checked however. Configuration Item: " @@ -3213,12 +3213,12 @@ msgstr "" "<literal>APT::CDROM::NoAct</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:155 +#: apt-cdrom.8.xml:149 msgid "&apt-conf;, &apt-get;, &sources-list;" msgstr "&apt-conf;, &apt-get;, &sources-list;." #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:160 +#: apt-cdrom.8.xml:154 msgid "" "<command>apt-cdrom</command> returns zero on normal operation, decimal 100 " "on error." @@ -3227,12 +3227,12 @@ msgstr "" "nombre décimal 100 en cas d'erreur." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-config.8.xml:35 +#: apt-config.8.xml:29 msgid "APT Configuration Query program" msgstr "Programme d'interrogation de la configuration d'APT" #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:41 +#: apt-config.8.xml:35 msgid "" "<command>apt-config</command> is an internal program used by various " "portions of the APT suite to provide consistent configurability. It accesses " @@ -3246,7 +3246,7 @@ msgstr "" "apt.conf</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:53 +#: apt-config.8.xml:47 msgid "" "shell is used to access the configuration information from a shell script. " "It is given pairs of arguments, the first being a shell variable and the " @@ -3262,7 +3262,7 @@ msgstr "" "cette commande devrait être utilisée comme suit :" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> -#: apt-config.8.xml:61 +#: apt-config.8.xml:55 #, no-wrap msgid "" "OPTS=\"-f\"\n" @@ -3274,7 +3274,7 @@ msgstr "" "eval $RES\n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:66 +#: apt-config.8.xml:60 msgid "" "This will set the shell environment variable $OPTS to the value of MyApp::" "options with a default of <option>-f</option>." @@ -3283,7 +3283,7 @@ msgstr "" "MyApp::Options ou, par défaut, la valeur -f." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:70 +#: apt-config.8.xml:64 msgid "" "The configuration item may be postfixed with a /[fdbi]. f returns file " "names, d returns directories, b returns true or false and i returns an " @@ -3295,12 +3295,12 @@ msgstr "" "vérifiée." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:79 +#: apt-config.8.xml:73 msgid "Just show the contents of the configuration space." msgstr "Affiche seulement le contenu de l'espace de configuration." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:92 +#: apt-config.8.xml:86 msgid "" "Include options which have an empty value. This is the default, so use --no-" "empty to remove them from the output." @@ -3310,12 +3310,12 @@ msgstr "" "ce qui est retourné." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-config.8.xml:97 +#: apt-config.8.xml:91 msgid "%f "%v";%n" msgstr "%f "%v";%n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:98 +#: apt-config.8.xml:92 msgid "" "Defines the output of each config option. %t will be replaced with " "its individual name, %f with its full hierarchical name and %v " @@ -3333,13 +3333,13 @@ msgstr "" "caractère % peut être affiché avec %% ." #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:112 apt-extracttemplates.1.xml:73 apt-sortpkgs.1.xml:66 -#: apt-ftparchive.1.xml:610 +#: apt-config.8.xml:106 apt-extracttemplates.1.xml:67 apt-sortpkgs.1.xml:60 +#: apt-ftparchive.1.xml:604 msgid "&apt-conf;" msgstr "&apt-conf;" #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:117 +#: apt-config.8.xml:111 msgid "" "<command>apt-config</command> returns zero on normal operation, decimal 100 " "on error." @@ -3348,27 +3348,27 @@ msgstr "" "le nombre 100 en cas d'erreur." #. type: Content of: <refentry><refentryinfo><author><contrib> -#: apt.conf.5.xml:22 +#: apt.conf.5.xml:16 msgid "Initial documentation of Debug::*." msgstr "Documentation initiale de Debug::*." #. type: Content of: <refentry><refentryinfo><author><email> -#: apt.conf.5.xml:23 +#: apt.conf.5.xml:17 msgid "dburrows@debian.org" msgstr "dburrows@debian.org" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt.conf.5.xml:33 apt_preferences.5.xml:27 sources.list.5.xml:28 +#: apt.conf.5.xml:27 apt_preferences.5.xml:21 sources.list.5.xml:22 msgid "5" msgstr "5" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt.conf.5.xml:40 +#: apt.conf.5.xml:34 msgid "Configuration file for APT" msgstr "Fichier de configuration pour APT" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:44 +#: apt.conf.5.xml:38 msgid "" "<filename>/etc/apt/apt.conf</filename> is the main configuration file shared " "by all the tools in the APT suite of tools, though it is by no means the " @@ -3382,7 +3382,7 @@ msgstr "" "environnement d'utilisation uniforme." #. type: Content of: <refentry><refsect1><orderedlist><para> -#: apt.conf.5.xml:50 +#: apt.conf.5.xml:44 msgid "" "When an APT tool starts up it will read the configuration files in the " "following order:" @@ -3391,7 +3391,7 @@ msgstr "" "configuration dans l'ordre suivant :" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:52 +#: apt.conf.5.xml:46 msgid "" "the file specified by the <envar>APT_CONFIG</envar> environment variable (if " "any)" @@ -3400,7 +3400,7 @@ msgstr "" "elle existe" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:54 +#: apt.conf.5.xml:48 msgid "" "all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending " "order which have either no or \"<literal>conf</literal>\" as filename " @@ -3421,14 +3421,14 @@ msgstr "" "configuration étant, eux, ignorés silencieusemennt)." #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:61 +#: apt.conf.5.xml:55 msgid "" "the main configuration file specified by <literal>Dir::Etc::main</literal>" msgstr "" "le fichier de configuration défini par <literal>Dir::Etc::Main</literal>" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:63 +#: apt.conf.5.xml:57 msgid "" "the command line options are applied to override the configuration " "directives or to load even more configuration files." @@ -3438,12 +3438,12 @@ msgstr "" "configuration." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:67 +#: apt.conf.5.xml:61 msgid "Syntax" msgstr "Syntaxe" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:68 +#: apt.conf.5.xml:62 msgid "" "The configuration file is organized in a tree with options organized into " "functional groups. Option specification is given with a double colon " @@ -3458,7 +3458,7 @@ msgstr "" "Get. Il n'y a pas d'héritage des options des groupes parents." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:74 +#: apt.conf.5.xml:68 msgid "" "Syntactically the configuration language is modeled after what the ISC tools " "such as bind and dhcp use. Lines starting with <literal>//</literal> are " @@ -3485,7 +3485,7 @@ msgstr "" "accolades, comme suit :" #. type: Content of: <refentry><refsect1><informalexample><programlisting> -#: apt.conf.5.xml:87 +#: apt.conf.5.xml:81 #, no-wrap msgid "" "APT {\n" @@ -3503,7 +3503,7 @@ msgstr "" "};\n" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:95 +#: apt.conf.5.xml:89 msgid "" "with newlines placed to make it more readable. Lists can be created by " "opening a scope and including a single string enclosed in quotes followed by " @@ -3515,13 +3515,13 @@ msgstr "" "incluses, séparées par des points-virgules." #. type: Content of: <refentry><refsect1><informalexample><programlisting> -#: apt.conf.5.xml:100 +#: apt.conf.5.xml:94 #, no-wrap msgid "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" msgstr "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:103 +#: apt.conf.5.xml:97 msgid "" "In general the sample configuration file &configureindex; is a good guide " "for how it should look." @@ -3530,7 +3530,7 @@ msgstr "" "de configuration." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:106 +#: apt.conf.5.xml:100 msgid "" "Case is not significant in names of configuration items, so in the previous " "example you could use <literal>dpkg::pre-install-pkgs</literal>." @@ -3540,7 +3540,7 @@ msgstr "" "<literal>dpkg::pre-install-pkgs</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:109 +#: apt.conf.5.xml:103 msgid "" "Names for the configuration items are optional if a list is defined as can " "be seen in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. If " @@ -3556,7 +3556,7 @@ msgstr "" "réaffectant une valeur." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:114 +#: apt.conf.5.xml:108 msgid "" "Two special commands are defined: <literal>#include</literal> (which is " "deprecated and not supported by alternative implementations) and " @@ -3576,7 +3576,7 @@ msgstr "" "également se terminer avec un point-virgule." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:124 +#: apt.conf.5.xml:118 msgid "" "The <literal>#clear</literal> command is the only way to delete a list or a " "complete scope. Reopening a scope (or using the syntax described below with " @@ -3592,7 +3592,7 @@ msgstr "" "peuvent être remplacés mais seulement effacés." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:132 +#: apt.conf.5.xml:126 msgid "" "All of the APT tools take an -o option which allows an arbitrary " "configuration directive to be specified on the command line. The syntax is a " @@ -3611,7 +3611,7 @@ msgstr "" "champ d'action (« scope ») ne peut pas être indiquée à la ligne de commande." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:140 +#: apt.conf.5.xml:134 msgid "" "Note that appending items to a list using <literal>::</literal> only works " "for one item per line, and that you should not use it in combination with " @@ -3643,12 +3643,12 @@ msgstr "" "explicitement." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:155 +#: apt.conf.5.xml:149 msgid "The APT Group" msgstr "Le groupe APT" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:156 +#: apt.conf.5.xml:150 msgid "" "This group of options controls general APT behavior as well as holding the " "options for all of the tools." @@ -3657,7 +3657,7 @@ msgstr "" "également des options communes à tous les outils." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:161 +#: apt.conf.5.xml:155 msgid "" "System Architecture; sets the architecture to use when fetching files and " "parsing package lists. The internal default is the architecture apt was " @@ -3668,7 +3668,7 @@ msgstr "" "valeur interne par défaut est l'architecture pour laquelle APT a été compilé." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:168 +#: apt.conf.5.xml:162 msgid "" "All Architectures the system supports. For instance, CPUs implementing the " "<literal>amd64</literal> (also called <literal>x86-64</literal>) " @@ -3690,7 +3690,7 @@ msgstr "" "sont enregistrées avec <command>dpkg --add-architecture</command>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:182 +#: apt.conf.5.xml:176 msgid "" "List of all build profiles enabled for build-dependency resolution, without " "the \"<literal>profile.</literal>\" namespace prefix. By default this list " @@ -3699,7 +3699,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:190 +#: apt.conf.5.xml:184 msgid "" "Default release to install packages from if more than one version is " "available. Contains release name, codename or release version. Examples: " @@ -3713,7 +3713,7 @@ msgstr "" "&apt-preferences;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:196 +#: apt.conf.5.xml:190 msgid "" "Ignore held packages; this global option causes the problem resolver to " "ignore held packages in its decision making." @@ -3723,7 +3723,7 @@ msgstr "" "décision." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:201 +#: apt.conf.5.xml:195 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " @@ -3737,7 +3737,7 @@ msgstr "" "direct pour les réinstaller." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:209 +#: apt.conf.5.xml:203 msgid "" "Defaults to on, which will cause APT to install essential and important " "packages as soon as possible in an install/upgrade operation, in order to " @@ -3764,7 +3764,7 @@ msgstr "" "dépendances ne sont pas satisfaites." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:221 +#: apt.conf.5.xml:215 msgid "" "The immediate configuration marker is also applied in the potentially " "problematic case of circular dependencies, since a dependency with the " @@ -3793,7 +3793,7 @@ msgstr "" "le seul qu'elle permet d'éviter." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:234 +#: apt.conf.5.xml:228 msgid "" "Before a big operation like <literal>dist-upgrade</literal> is run with this " "option disabled you should try to explicitly <literal>install</literal> the " @@ -3811,7 +3811,7 @@ msgstr "" "corriger les processus de mise à jour." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:245 +#: apt.conf.5.xml:239 msgid "" "Never enable this option unless you <emphasis>really</emphasis> know what " "you are doing. It permits APT to temporarily remove an essential package to " @@ -3833,7 +3833,7 @@ msgstr "" "tous les paquets dont ces paquets dépendent." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:257 +#: apt.conf.5.xml:251 msgid "" "APT uses since version 0.7.26 a resizable memory mapped cache file to store " "the available information. <literal>Cache-Start</literal> acts as a hint of " @@ -3873,14 +3873,14 @@ msgstr "" "l'augmentation automatique de la taille du cache est désactivée." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:273 +#: apt.conf.5.xml:267 msgid "Defines which packages are considered essential build dependencies." msgstr "" "Cette option définit les paquets qui sont considérés comme faisant partie " "des dépendances essentielles pour la construction de paquets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:277 +#: apt.conf.5.xml:271 msgid "" "The Get subsection controls the &apt-get; tool; please see its documentation " "for more information about the options here." @@ -3890,7 +3890,7 @@ msgstr "" "question." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:282 +#: apt.conf.5.xml:276 msgid "" "The Cache subsection controls the &apt-cache; tool; please see its " "documentation for more information about the options here." @@ -3900,7 +3900,7 @@ msgstr "" "options en question." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:287 +#: apt.conf.5.xml:281 msgid "" "The CDROM subsection controls the &apt-cdrom; tool; please see its " "documentation for more information about the options here." @@ -3910,12 +3910,12 @@ msgstr "" "options en question." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:293 +#: apt.conf.5.xml:287 msgid "The Acquire Group" msgstr "Le groupe Acquire" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:294 +#: apt.conf.5.xml:288 msgid "" "The <literal>Acquire</literal> group of options controls the download of " "packages as well as the various \"acquire methods\" responsible for the " @@ -3926,7 +3926,7 @@ msgstr "" "effectuent ce téléchargement (voir aussi &sources-list;)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:301 +#: apt.conf.5.xml:295 msgid "" "Security related option defaulting to true, as giving a Release file's " "validation an expiration date prevents replay attacks over a long timescale, " @@ -3947,7 +3947,7 @@ msgstr "" "alors utilisée." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:314 +#: apt.conf.5.xml:308 msgid "" "Maximum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -3966,7 +3966,7 @@ msgstr "" "l'option." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:326 +#: apt.conf.5.xml:320 msgid "" "Minimum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -3986,7 +3986,7 @@ msgstr "" "nom de l'option." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:338 +#: apt.conf.5.xml:332 msgid "" "Try to download deltas called <literal>PDiffs</literal> for indexes (like " "<filename>Packages</filename> files) instead of downloading whole ones. True " @@ -3997,7 +3997,7 @@ msgstr "" "filename>), plutôt que de les télécharger entièrement. Par défaut à « true »." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:341 +#: apt.conf.5.xml:335 msgid "" "Two sub-options to limit the use of PDiffs are also available: " "<literal>FileLimit</literal> can be used to specify a maximum number of " @@ -4016,7 +4016,7 @@ msgstr "" "fichiers de différences." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:351 +#: apt.conf.5.xml:345 msgid "" "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" "literal> or <literal>access</literal> which determines how APT parallelizes " @@ -4032,7 +4032,7 @@ msgstr "" "initiée." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:359 +#: apt.conf.5.xml:353 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." @@ -4042,7 +4042,7 @@ msgstr "" "échoué." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:364 +#: apt.conf.5.xml:358 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." @@ -4052,7 +4052,7 @@ msgstr "" "archives de sources au lieu de les copier. Par défaut à « true »." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:369 +#: apt.conf.5.xml:363 msgid "" "<literal>http::Proxy</literal> sets the default proxy to use for HTTP URIs. " "It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</" @@ -4073,7 +4073,7 @@ msgstr "" "options de mandataire HTTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:377 +#: apt.conf.5.xml:371 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy not to use its cached " @@ -4093,7 +4093,7 @@ msgstr "" "fichiers .deb très grands." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:387 apt.conf.5.xml:475 +#: apt.conf.5.xml:381 apt.conf.5.xml:469 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method; this value applies to the connection as well as the data timeout." @@ -4103,7 +4103,7 @@ msgstr "" "connexion qu'aux données." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:390 +#: apt.conf.5.xml:384 msgid "" "The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e." @@ -4123,7 +4123,7 @@ msgstr "" "qui ne respectent pas la norme HTTP/1.1." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:397 +#: apt.conf.5.xml:391 msgid "" "<literal>Acquire::http::AllowRedirect</literal> controls whether APT will " "follow redirects, which is enabled by default." @@ -4132,7 +4132,7 @@ msgstr "" "suive les redirections. Ce réglage est activé par défaut." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:400 +#: apt.conf.5.xml:394 #, fuzzy #| msgid "" #| "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" @@ -4154,7 +4154,7 @@ msgstr "" "implicitement le téléchargement simultané depuis plusieurs serveurs." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:407 +#: apt.conf.5.xml:401 msgid "" "<literal>Acquire::http::User-Agent</literal> can be used to set a different " "User-Agent for the http download method as some proxies allow access for " @@ -4166,7 +4166,7 @@ msgstr "" "n'autorisent l'accès qu'aux client s'identifiant de manière spécifique.." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:411 +#: apt.conf.5.xml:405 msgid "" "<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify " "an external command to discover the http proxy to use. Apt expects the " @@ -4180,7 +4180,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:429 +#: apt.conf.5.xml:423 msgid "" "The <literal>Cache-control</literal>, <literal>Timeout</literal>, " "<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and " @@ -4197,7 +4197,7 @@ msgstr "" "literal> n'est pas encore gérée." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:437 +#: apt.conf.5.xml:431 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is the " @@ -4230,7 +4230,7 @@ msgstr "" "<literal>TLSv1</literal> ou <literal>SSLv3</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:458 +#: apt.conf.5.xml:452 msgid "" "<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. " "It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</" @@ -4266,7 +4266,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:478 +#: apt.conf.5.xml:472 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on; it works in nearly every environment. However, " @@ -4283,7 +4283,7 @@ msgstr "" "modèle de fichier de configuration)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:485 +#: apt.conf.5.xml:479 msgid "" "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" "envar> environment variable to an HTTP URL - see the discussion of the http " @@ -4298,7 +4298,7 @@ msgstr "" "efficacité de cette méthode." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:490 +#: apt.conf.5.xml:484 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@ -4314,13 +4314,13 @@ msgstr "" "des serveurs FTP ne suivent pas la RFC 2428." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:504 +#: apt.conf.5.xml:498 #, no-wrap msgid "/cdrom/::Mount \"foo\";" msgstr "/cdrom/::Mount \"foo\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:499 +#: apt.conf.5.xml:493 msgid "" "For URIs using the <literal>cdrom</literal> method, the only configurable " "option is the mount point, <literal>cdrom::Mount</literal>, which must be " @@ -4343,7 +4343,7 @@ msgstr "" "<literal>UMount</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:512 +#: apt.conf.5.xml:506 msgid "" "For GPGV URIs the only configurable option is <literal>gpgv::Options</" "literal>, which passes additional parameters to gpgv." @@ -4352,13 +4352,13 @@ msgstr "" "permet de passer des paramètres à gpgv" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:523 +#: apt.conf.5.xml:517 #, no-wrap msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" msgstr "Acquire::CompressionTypes::<replaceable>ExtensionFichier</replaceable> \"<replaceable>NomMethode</replaceable>\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:518 +#: apt.conf.5.xml:512 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " @@ -4378,19 +4378,19 @@ msgstr "" "type=\"synopsis\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:528 +#: apt.conf.5.xml:522 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "Acquire::CompressionTypes::Order:: \"gz\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:531 +#: apt.conf.5.xml:525 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:524 +#: apt.conf.5.xml:518 msgid "" "Also, the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " @@ -4422,13 +4422,13 @@ msgstr "" "<literal>bz2</literal> à liste car il sera ajouté automatiquement." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:538 +#: apt.conf.5.xml:532 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:533 +#: apt.conf.5.xml:527 msgid "" "Note that the <literal>Dir::Bin::<replaceable>Methodname</replaceable></" "literal> will be checked at run time. If this option has been set, the " @@ -4455,7 +4455,7 @@ msgstr "" "question." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:543 +#: apt.conf.5.xml:537 msgid "" "The special type <literal>uncompressed</literal> can be used to give " "uncompressed files a preference, but note that most archives don't provide " @@ -4467,7 +4467,7 @@ msgstr "" "surtout destiné aux miroirs locaux." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:550 +#: apt.conf.5.xml:544 msgid "" "When downloading <literal>gzip</literal> compressed indexes (Packages, " "Sources, or Translations), keep them gzip compressed locally instead of " @@ -4482,7 +4482,7 @@ msgstr "" "(« False »)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:558 +#: apt.conf.5.xml:552 msgid "" "The Languages subsection controls which <filename>Translation</filename> " "files are downloaded and in which order APT tries to display the description-" @@ -4502,13 +4502,13 @@ msgstr "" "langues étant particulièrement rares." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting> -#: apt.conf.5.xml:575 +#: apt.conf.5.xml:569 #, no-wrap msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" msgstr "Acquire::Languages { \"environment\"; \"fr\"; \"en\"; \"none\"; \"de\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:563 +#: apt.conf.5.xml:557 msgid "" "The default list includes \"environment\" and \"en\". " "\"<literal>environment</literal>\" has a special meaning here: it will be " @@ -4548,7 +4548,7 @@ msgstr "" "alors « de, fr, en ». <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:576 +#: apt.conf.5.xml:570 msgid "" "Note: To prevent problems resulting from APT being executed in different " "environments (e.g. by different users or by other programs) all Translation " @@ -4562,22 +4562,22 @@ msgstr "" "(après un « <literal>none</literal> » implicite)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:585 +#: apt.conf.5.xml:579 msgid "When downloading, force to use only the IPv4 protocol." msgstr "Utilisation imposée du protocole IPv4 lors des téléchargements." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:591 +#: apt.conf.5.xml:585 msgid "When downloading, force to use only the IPv6 protocol." msgstr "Utilisation imposée du protocole IPv6 lors des téléchargements." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:598 +#: apt.conf.5.xml:592 msgid "Directories" msgstr "Les répertoires" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:600 +#: apt.conf.5.xml:594 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@ -4597,7 +4597,7 @@ msgstr "" "<filename>./</filename>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:607 +#: apt.conf.5.xml:601 #, fuzzy #| msgid "" #| "<literal>Dir::Cache</literal> contains locations pertaining to local " @@ -4632,7 +4632,7 @@ msgstr "" "Cache</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:617 +#: apt.conf.5.xml:611 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -4647,7 +4647,7 @@ msgstr "" "fichier de configuration indiqué par la variable <envar>APT_CONFIG</envar>)." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:623 +#: apt.conf.5.xml:617 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -4658,7 +4658,7 @@ msgstr "" "configuration est chargé." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:627 +#: apt.conf.5.xml:621 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@ -4676,7 +4676,7 @@ msgstr "" "programmes correspondants." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:635 +#: apt.conf.5.xml:629 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -4698,7 +4698,7 @@ msgstr "" "staging/var/lib/dpkg/status</filename>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:648 +#: apt.conf.5.xml:642 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -4716,12 +4716,12 @@ msgstr "" "est possible d'utiliser la syntaxe des expressions rationnelles." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:657 +#: apt.conf.5.xml:651 msgid "APT in DSelect" msgstr "APT et DSelect" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:659 +#: apt.conf.5.xml:653 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -4732,7 +4732,7 @@ msgstr "" "<literal>DSelect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:664 +#: apt.conf.5.xml:658 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@ -4755,7 +4755,7 @@ msgstr "" "avant de récupérer de nouveaux paquets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:678 +#: apt.conf.5.xml:672 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." @@ -4764,7 +4764,7 @@ msgstr "" "&apt-get; lors de la phase d'installation." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:683 +#: apt.conf.5.xml:677 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." @@ -4773,7 +4773,7 @@ msgstr "" "&apt-get; lors de la phase de mise à jour." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:688 +#: apt.conf.5.xml:682 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@ -4783,12 +4783,12 @@ msgstr "" "d'erreur que l'on propose à l'utilisateur d'intervenir." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:694 +#: apt.conf.5.xml:688 msgid "How APT calls &dpkg;" msgstr "Méthode d'appel de &dpkg; par APT" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:695 +#: apt.conf.5.xml:689 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@ -4797,7 +4797,7 @@ msgstr "" "&dpkg; : elles figurent dans la section <literal>DPkg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:700 +#: apt.conf.5.xml:694 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -4808,7 +4808,7 @@ msgstr "" "est passé comme un seul paramètre à &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:706 +#: apt.conf.5.xml:700 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4821,7 +4821,7 @@ msgstr "" "<filename>/bin/sh</filename> : APT s'arrête dès que l'une d'elles échoue." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:713 +#: apt.conf.5.xml:707 #, fuzzy #| msgid "" #| "This is a list of shell commands to run before invoking &dpkg;. Like " @@ -4845,7 +4845,7 @@ msgstr "" "qu'il va installer, à raison d'un par ligne." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:720 +#: apt.conf.5.xml:714 #, fuzzy #| msgid "" #| "Version 2 of this protocol dumps more information, including the protocol " @@ -4867,7 +4867,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:725 +#: apt.conf.5.xml:719 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -4878,7 +4878,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:732 +#: apt.conf.5.xml:726 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</" @@ -4889,7 +4889,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:742 +#: apt.conf.5.xml:736 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." @@ -4898,7 +4898,7 @@ msgstr "" "le répertoire <filename>/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:747 +#: apt.conf.5.xml:741 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." @@ -4908,14 +4908,14 @@ msgstr "" "créés." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:746 msgid "dpkg trigger usage (and related options)" msgstr "" "utilisation des actions différées (« triggers ») de dpkg (et options " "associées)" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:753 +#: apt.conf.5.xml:747 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -4942,7 +4942,7 @@ msgstr "" "pendant la configuration des paquets." #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:768 +#: apt.conf.5.xml:762 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -4956,7 +4956,7 @@ msgstr "" "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:762 +#: apt.conf.5.xml:756 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -4980,7 +4980,7 @@ msgstr "" "<placeholder type=\"literallayout\" id=\"0\"/>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:775 +#: apt.conf.5.xml:769 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -5003,7 +5003,7 @@ msgstr "" "options « unpack » et « remove »." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:783 +#: apt.conf.5.xml:777 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@ -5033,7 +5033,7 @@ msgstr "" "configuré et donc éventuellement non amorçable." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:798 +#: apt.conf.5.xml:792 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@ -5052,7 +5052,7 @@ msgstr "" "peut conserver l'option active." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:805 +#: apt.conf.5.xml:799 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -5070,7 +5070,7 @@ msgstr "" "celles concernant le paquet en cours de traitement." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:818 +#: apt.conf.5.xml:812 #, no-wrap msgid "" "OrderList::Score {\n" @@ -5088,7 +5088,7 @@ msgstr "" "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:811 +#: apt.conf.5.xml:805 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -5114,12 +5114,12 @@ msgstr "" "id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:831 +#: apt.conf.5.xml:825 msgid "Periodic and Archives options" msgstr "Options « Periodic » et « Archive »" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:832 +#: apt.conf.5.xml:826 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -5131,12 +5131,12 @@ msgstr "" "script <literal>/etc/cron.daily/apt</literal>, lancé quotidiennement." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:840 +#: apt.conf.5.xml:834 msgid "Debug options" msgstr "Les options de débogage" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:842 +#: apt.conf.5.xml:836 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -5154,7 +5154,7 @@ msgstr "" "peuvent tout de même être utiles :" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:853 +#: apt.conf.5.xml:847 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -5165,7 +5165,7 @@ msgstr "" "upgrade, upgrade, install, remove et purge</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:861 +#: apt.conf.5.xml:855 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -5177,7 +5177,7 @@ msgstr "" "superutilisateur." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:870 +#: apt.conf.5.xml:864 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -5189,7 +5189,7 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:878 +#: apt.conf.5.xml:872 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." @@ -5198,12 +5198,12 @@ msgstr "" "type statfs dans les identifiants de CD." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:888 +#: apt.conf.5.xml:882 msgid "A full list of debugging options to apt follows." msgstr "Liste complète des options de débogage de APT :" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:897 +#: apt.conf.5.xml:891 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" @@ -5211,24 +5211,24 @@ msgstr "" "literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:908 +#: apt.conf.5.xml:902 msgid "Print information related to downloading packages using FTP." msgstr "" "Affiche les informations concernant le téléchargement de paquets par FTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:919 +#: apt.conf.5.xml:913 msgid "Print information related to downloading packages using HTTP." msgstr "" "Affiche les informations concernant le téléchargement de paquets par HTTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:930 +#: apt.conf.5.xml:924 msgid "Print information related to downloading packages using HTTPS." msgstr "Print information related to downloading packages using HTTPS." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:941 +#: apt.conf.5.xml:935 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@ -5237,7 +5237,7 @@ msgstr "" "cryptographiques avec <literal>gpg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:952 +#: apt.conf.5.xml:946 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." @@ -5246,14 +5246,14 @@ msgstr "" "stockées sur CD." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:962 +#: apt.conf.5.xml:956 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" "Décrit le processus de résolution des dépendances pour la construction de " "paquets source ( « build-dependencies » ) par &apt-get;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:972 +#: apt.conf.5.xml:966 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." @@ -5262,7 +5262,7 @@ msgstr "" "librairies d'<literal>apt</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:982 +#: apt.conf.5.xml:976 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -5273,7 +5273,7 @@ msgstr "" "utilisés sur le système de fichier du CD." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:993 +#: apt.conf.5.xml:987 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." @@ -5283,14 +5283,14 @@ msgstr "" "temps." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1005 +#: apt.conf.5.xml:999 msgid "Log when items are added to or removed from the global download queue." msgstr "" "Trace les ajouts et suppressions d'éléments de la queue globale de " "téléchargement." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1015 +#: apt.conf.5.xml:1009 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." @@ -5300,7 +5300,7 @@ msgstr "" "éventuelles." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1025 +#: apt.conf.5.xml:1019 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." @@ -5310,7 +5310,7 @@ msgstr "" "éventuelles." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1037 +#: apt.conf.5.xml:1031 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." @@ -5320,7 +5320,7 @@ msgstr "" "place des fichiers complets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1048 +#: apt.conf.5.xml:1042 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" @@ -5328,7 +5328,7 @@ msgstr "" "effectivement des téléchargements." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1059 +#: apt.conf.5.xml:1053 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." @@ -5337,7 +5337,7 @@ msgstr "" "automatiquement, et la suppression des paquets inutiles." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1069 +#: apt.conf.5.xml:1063 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -5352,7 +5352,7 @@ msgstr "" "de APT ; voir <literal>Debug::pkgProblemResolver</literal> pour ce dernier." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1083 +#: apt.conf.5.xml:1077 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -5388,7 +5388,7 @@ msgstr "" "de APT ; voir <literal>Debug::pkgProblemResolver</literal> pour ce dernier." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1104 +#: apt.conf.5.xml:1098 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." @@ -5397,7 +5397,7 @@ msgstr "" "paramètres sont séparés par des espaces." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1115 +#: apt.conf.5.xml:1109 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." @@ -5407,7 +5407,7 @@ msgstr "" "fichier." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1126 +#: apt.conf.5.xml:1120 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." @@ -5416,18 +5416,18 @@ msgstr "" "<literal>apt</literal> passe les paquets à &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1138 +#: apt.conf.5.xml:1132 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "Affiche le détail des opérations liées à l'invocation de &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1149 +#: apt.conf.5.xml:1143 msgid "Output the priority of each package list on startup." msgstr "Affiche, au lancement, la priorité de chaque liste de paquets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1159 +#: apt.conf.5.xml:1153 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." @@ -5436,7 +5436,7 @@ msgstr "" "concerne que les cas où un problème de dépendances complexe se présente)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1170 +#: apt.conf.5.xml:1164 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -5447,7 +5447,7 @@ msgstr "" "est décrite dans <literal>Debug::pkgDepCache::Marker</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1182 +#: apt.conf.5.xml:1176 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@ -5456,7 +5456,7 @@ msgstr "" "list</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1192 +#: apt.conf.5.xml:1186 msgid "" "Display the external commands that are called by apt hooks. This includes e." "g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " @@ -5464,13 +5464,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1216 apt_preferences.5.xml:547 sources.list.5.xml:239 -#: apt-ftparchive.1.xml:598 +#: apt.conf.5.xml:1210 apt_preferences.5.xml:541 sources.list.5.xml:233 +#: apt-ftparchive.1.xml:592 msgid "Examples" msgstr "Exemples" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1217 +#: apt.conf.5.xml:1211 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -5480,17 +5480,17 @@ msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1229 +#: apt.conf.5.xml:1223 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt_preferences.5.xml:34 +#: apt_preferences.5.xml:28 msgid "Preference control file for APT" msgstr "Fichier de contrôle des préférences pour APT" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:39 +#: apt_preferences.5.xml:33 msgid "" "The APT preferences file <filename>/etc/apt/preferences</filename> and the " "fragment files in the <filename>/etc/apt/preferences.d/</filename> folder " @@ -5503,7 +5503,7 @@ msgstr "" "l'on veut installer." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:44 +#: apt_preferences.5.xml:38 msgid "" "Several versions of a package may be available for installation when the " "&sources-list; file contains references to more than one distribution (for " @@ -5525,7 +5525,7 @@ msgstr "" "veut installer." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:54 +#: apt_preferences.5.xml:48 msgid "" "Several instances of the same version of a package may be available when the " "&sources-list; file contains references to more than one source. In this " @@ -5541,7 +5541,7 @@ msgstr "" "le choix des exemplaires, seulement sur le choix de la version." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:61 +#: apt_preferences.5.xml:55 msgid "" "Preferences are a strong power in the hands of a system administrator but " "they can become also their biggest nightmare if used without care! APT will " @@ -5562,7 +5562,7 @@ msgstr "" "mélangées sans une bonne compréhension des paragraphes qui suivent." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:72 +#: apt_preferences.5.xml:66 msgid "" "Note that the files in the <filename>/etc/apt/preferences.d</filename> " "directory are parsed in alphanumeric ascending order and need to obey the " @@ -5584,24 +5584,24 @@ msgstr "" "étant, eux, ignorés silencieusemennt)." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:81 +#: apt_preferences.5.xml:75 msgid "APT's Default Priority Assignments" msgstr "Priorités affectées par défaut" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:96 +#: apt_preferences.5.xml:90 #, no-wrap msgid "<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n" msgstr "<command>apt-get install -t testing <replaceable>paquet</replaceable></command>\n" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:99 +#: apt_preferences.5.xml:93 #, no-wrap msgid "APT::Default-Release \"stable\";\n" msgstr "APT::Default-Release \"stable\";\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:83 +#: apt_preferences.5.xml:77 msgid "" "If there is no preferences file or if there is no entry in the file that " "applies to a particular version then the priority assigned to that version " @@ -5626,7 +5626,7 @@ msgstr "" "\"programlisting\" id=\"0\"/> <placeholder type=\"programlisting\" id=\"1\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:103 +#: apt_preferences.5.xml:97 msgid "" "If the target release has been specified then APT uses the following " "algorithm to set the priorities of the versions of a package. Assign:" @@ -5635,12 +5635,12 @@ msgstr "" "suivant pour déterminer la priorité des versions d'un paquet :" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:108 +#: apt_preferences.5.xml:102 msgid "priority 1" msgstr "priorité 1" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:109 +#: apt_preferences.5.xml:103 msgid "" "to the versions coming from archives which in their <filename>Release</" "filename> files are marked as \"NotAutomatic: yes\" but <emphasis>not</" @@ -5653,12 +5653,12 @@ msgstr "" "<literal>experimental</literal> de Debian." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:115 +#: apt_preferences.5.xml:109 msgid "priority 100" msgstr "une priorité égale à 100" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:116 +#: apt_preferences.5.xml:110 msgid "" "to the version that is already installed (if any) and to the versions coming " "from archives which in their <filename>Release</filename> files are marked " @@ -5671,12 +5671,12 @@ msgstr "" "depuis <literal>squeeze-backports</literal>." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:123 +#: apt_preferences.5.xml:117 msgid "priority 500" msgstr "une priorité égale à 500" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:124 +#: apt_preferences.5.xml:118 msgid "" "to the versions that are not installed and do not belong to the target " "release." @@ -5685,12 +5685,12 @@ msgstr "" "pas à la distribution par défaut." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:128 +#: apt_preferences.5.xml:122 msgid "priority 990" msgstr "une priorité égale à 990" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:129 +#: apt_preferences.5.xml:123 msgid "" "to the versions that are not installed and belong to the target release." msgstr "" @@ -5698,7 +5698,7 @@ msgstr "" "la distribution par défaut." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:134 +#: apt_preferences.5.xml:128 msgid "" "If the target release has not been specified then APT simply assigns " "priority 100 to all installed package versions and priority 500 to all " @@ -5716,7 +5716,7 @@ msgstr "" "« ButAutomaticUpgrades: yes »." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:141 +#: apt_preferences.5.xml:135 msgid "" "APT then applies the following rules, listed in order of precedence, to " "determine which version of a package to install." @@ -5725,7 +5725,7 @@ msgstr "" "qu'il faut installer (par ordre de priorité) :" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:144 +#: apt_preferences.5.xml:138 msgid "" "Never downgrade unless the priority of an available version exceeds 1000. " "(\"Downgrading\" is installing a less recent version of a package in place " @@ -5741,12 +5741,12 @@ msgstr "" "arrière." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:150 +#: apt_preferences.5.xml:144 msgid "Install the highest priority version." msgstr "Installer la version qui possède la priorité la plus haute." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:151 +#: apt_preferences.5.xml:145 msgid "" "If two or more versions have the same priority, install the most recent one " "(that is, the one with the higher version number)." @@ -5755,7 +5755,7 @@ msgstr "" "plus récente (c.-à-d. celle dont le numéro de version est le plus grand)." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:154 +#: apt_preferences.5.xml:148 msgid "" "If two or more versions have the same priority and version number but either " "the packages differ in some of their metadata or the <literal>--reinstall</" @@ -5767,7 +5767,7 @@ msgstr "" "qui n'est pas installée." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:160 +#: apt_preferences.5.xml:154 msgid "" "In a typical situation, the installed version of a package (priority 100) " "is not as recent as one of the versions available from the sources listed in " @@ -5782,7 +5782,7 @@ msgstr "" "replaceable></command> ou <command>apt-get dist-upgrade</command>." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:167 +#: apt_preferences.5.xml:161 msgid "" "More rarely, the installed version of a package is <emphasis>more</emphasis> " "recent than any of the other available versions. The package will not be " @@ -5795,7 +5795,7 @@ msgstr "" "<command>apt-get upgrade</command> ne provoquent pas de retour en arrière." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:172 +#: apt_preferences.5.xml:166 msgid "" "Sometimes the installed version of a package is more recent than the version " "belonging to the target release, but not as recent as a version belonging to " @@ -5814,12 +5814,12 @@ msgstr "" "priorité que celle de la version installée." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:181 +#: apt_preferences.5.xml:175 msgid "The Effect of APT Preferences" msgstr "Conséquences des préférences" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:183 +#: apt_preferences.5.xml:177 msgid "" "The APT preferences file allows the system administrator to control the " "assignment of priorities. The file consists of one or more multi-line " @@ -5832,7 +5832,7 @@ msgstr "" "formes, une forme particulière et une forme générale." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:189 +#: apt_preferences.5.xml:183 msgid "" "The specific form assigns a priority (a \"Pin-Priority\") to one or more " "specified packages with a specified version or version range. For example, " @@ -5848,7 +5848,7 @@ msgstr "" "dont le numéro de version commence par <literal>&good-perl;</literal>." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:196 +#: apt_preferences.5.xml:190 #, no-wrap msgid "" "Package: perl\n" @@ -5860,7 +5860,7 @@ msgstr "" "Pin-Priority: 1001\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:202 +#: apt_preferences.5.xml:196 msgid "" "The general form assigns a priority to all of the package versions in a " "given distribution (that is, to all the versions of packages that are listed " @@ -5875,7 +5875,7 @@ msgstr "" "un nom complètement qualifié." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:208 +#: apt_preferences.5.xml:202 msgid "" "This general-form entry in the APT preferences file applies only to groups " "of packages. For example, the following record assigns a high priority to " @@ -5886,7 +5886,7 @@ msgstr "" "priorité haute à toutes les versions disponibles dans le site local." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:213 +#: apt_preferences.5.xml:207 #, no-wrap msgid "" "Package: *\n" @@ -5898,7 +5898,7 @@ msgstr "" "Pin-Priority: 999\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:218 +#: apt_preferences.5.xml:212 msgid "" "A note of caution: the keyword used here is \"<literal>origin</literal>\" " "which can be used to match a hostname. The following record will assign a " @@ -5911,7 +5911,7 @@ msgstr "" "serveur identifié par l' nom d'hôte « ftp.de.debian.org »." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:222 +#: apt_preferences.5.xml:216 #, no-wrap msgid "" "Package: *\n" @@ -5923,7 +5923,7 @@ msgstr "" "Pin-Priority: 999\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:226 +#: apt_preferences.5.xml:220 msgid "" "This should <emphasis>not</emphasis> be confused with the Origin of a " "distribution as specified in a <filename>Release</filename> file. What " @@ -5938,7 +5938,7 @@ msgstr "" "mais le nom d'un auteur ou d'un distributeur, comme « Debian » ou « Ximian »." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:231 +#: apt_preferences.5.xml:225 msgid "" "The following record assigns a low priority to all package versions " "belonging to any distribution whose Archive name is \"<literal>unstable</" @@ -5949,7 +5949,7 @@ msgstr "" "<literal>unstable</literal>." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:235 +#: apt_preferences.5.xml:229 #, no-wrap msgid "" "Package: *\n" @@ -5961,7 +5961,7 @@ msgstr "" "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:240 +#: apt_preferences.5.xml:234 msgid "" "The following record assigns a high priority to all package versions " "belonging to any distribution whose Codename is \"<literal>&testing-codename;" @@ -5972,7 +5972,7 @@ msgstr "" "<literal>&testing-codename;</literal>." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:244 +#: apt_preferences.5.xml:238 #, no-wrap msgid "" "Package: *\n" @@ -5984,7 +5984,7 @@ msgstr "" "Pin-Priority: 900\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:249 +#: apt_preferences.5.xml:243 msgid "" "The following record assigns a high priority to all package versions " "belonging to any release whose Archive name is \"<literal>stable</literal>\" " @@ -5996,7 +5996,7 @@ msgstr "" "<literal>&stable-version;</literal>." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:254 +#: apt_preferences.5.xml:248 #, no-wrap msgid "" "Package: *\n" @@ -6008,12 +6008,12 @@ msgstr "" "Pin-Priority: 500\n" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:264 +#: apt_preferences.5.xml:258 msgid "Regular expressions and &glob; syntax" msgstr "Expressions régulières et syntaxe &glob;" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:266 +#: apt_preferences.5.xml:260 msgid "" "APT also supports pinning by &glob; expressions, and regular expressions " "surrounded by slashes. For example, the following example assigns the " @@ -6029,7 +6029,7 @@ msgstr "" "POSIX étendue, entourée de barres obliques)." #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:275 +#: apt_preferences.5.xml:269 #, no-wrap msgid "" "Package: gnome* /kde/\n" @@ -6041,7 +6041,7 @@ msgstr "" "Pin-Priority: 500\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:281 +#: apt_preferences.5.xml:275 msgid "" "The rule for those expressions is that they can occur anywhere where a " "string can occur. Thus, the following pin assigns the priority 990 to all " @@ -6053,7 +6053,7 @@ msgstr "" "par &ubuntu-codename;." #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:287 +#: apt_preferences.5.xml:281 #, no-wrap msgid "" "Package: *\n" @@ -6065,7 +6065,7 @@ msgstr "" "Pin-Priority: 990\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:293 +#: apt_preferences.5.xml:287 msgid "" "If a regular expression occurs in a <literal>Package</literal> field, the " "behavior is the same as if this regular expression were replaced with a list " @@ -6084,12 +6084,12 @@ msgstr "" "expression &glob; en soi." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:309 +#: apt_preferences.5.xml:303 msgid "How APT Interprets Priorities" msgstr "Méthode d'interprétation des priorités par APT" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:312 +#: apt_preferences.5.xml:306 msgid "" "Priorities (P) assigned in the APT preferences file must be positive or " "negative integers. They are interpreted as follows (roughly speaking):" @@ -6098,12 +6098,12 @@ msgstr "" "entiers positifs ou négatifs. Ils sont interprétés à peu près comme suit :" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:317 +#: apt_preferences.5.xml:311 msgid "P >= 1000" msgstr "P >= 1000" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:318 +#: apt_preferences.5.xml:312 msgid "" "causes a version to be installed even if this constitutes a downgrade of the " "package" @@ -6112,12 +6112,12 @@ msgstr "" "retour en arrière." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:322 +#: apt_preferences.5.xml:316 msgid "990 <= P < 1000" msgstr "990 <= P < 1000" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:323 +#: apt_preferences.5.xml:317 msgid "" "causes a version to be installed even if it does not come from the target " "release, unless the installed version is more recent" @@ -6127,12 +6127,12 @@ msgstr "" "plus récente." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:328 +#: apt_preferences.5.xml:322 msgid "500 <= P < 990" msgstr "500 <= P < 990" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:329 +#: apt_preferences.5.xml:323 msgid "" "causes a version to be installed unless there is a version available " "belonging to the target release or the installed version is more recent" @@ -6141,12 +6141,12 @@ msgstr "" "distribution par défaut ou si la version installée est plus récente." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:334 +#: apt_preferences.5.xml:328 msgid "100 <= P < 500" msgstr "100 <= P < 500" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:335 +#: apt_preferences.5.xml:329 msgid "" "causes a version to be installed unless there is a version available " "belonging to some other distribution or the installed version is more recent" @@ -6155,29 +6155,29 @@ msgstr "" "autre distribution ou si la version installée est plus récente." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:340 +#: apt_preferences.5.xml:334 msgid "0 < P < 100" msgstr "0 < P < 100" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:341 +#: apt_preferences.5.xml:335 msgid "" "causes a version to be installed only if there is no installed version of " "the package" msgstr "la version sera installée si aucune version du paquet n'est installée." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:345 +#: apt_preferences.5.xml:339 msgid "P < 0" msgstr "P < 0" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:346 +#: apt_preferences.5.xml:340 msgid "prevents the version from being installed" msgstr "cette priorité empêche l'installation de la version." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:351 +#: apt_preferences.5.xml:345 msgid "" "If any specific-form records match an available package version then the " "first such record determines the priority of the package version. Failing " @@ -6191,7 +6191,7 @@ msgstr "" "trouvée détermine la priorité." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:357 +#: apt_preferences.5.xml:351 msgid "" "For example, suppose the APT preferences file contains the three records " "presented earlier:" @@ -6200,7 +6200,7 @@ msgstr "" "entrées décrites ci-dessous :" #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:361 +#: apt_preferences.5.xml:355 #, no-wrap msgid "" "Package: perl\n" @@ -6228,12 +6228,12 @@ msgstr "" "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:374 +#: apt_preferences.5.xml:368 msgid "Then:" msgstr "Alors :" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:376 +#: apt_preferences.5.xml:370 msgid "" "The most recent available version of the <literal>perl</literal> package " "will be installed, so long as that version's version number begins with " @@ -6248,7 +6248,7 @@ msgstr "" "arrière." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:381 +#: apt_preferences.5.xml:375 msgid "" "A version of any package other than <literal>perl</literal> that is " "available from the local system has priority over other versions, even " @@ -6259,7 +6259,7 @@ msgstr "" "appartenant à la distribution par défaut." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:385 +#: apt_preferences.5.xml:379 msgid "" "A version of a package whose origin is not the local system but some other " "site listed in &sources-list; and which belongs to an <literal>unstable</" @@ -6272,13 +6272,13 @@ msgstr "" "paquet n'est déjà installée." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:395 +#: apt_preferences.5.xml:389 msgid "Determination of Package Version and Distribution Properties" msgstr "" "Détermination de la version des paquets et des propriétés des distributions" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:397 +#: apt_preferences.5.xml:391 msgid "" "The locations listed in the &sources-list; file should provide " "<filename>Packages</filename> and <filename>Release</filename> files to " @@ -6289,7 +6289,7 @@ msgstr "" "décrivent les paquets disponibles à cet endroit." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:401 +#: apt_preferences.5.xml:395 msgid "" "The <filename>Packages</filename> file is normally found in the directory " "<filename>.../dists/<replaceable>dist-name</replaceable>/" @@ -6308,27 +6308,27 @@ msgstr "" "sont pertinentes pour la détermination des priorités :" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:409 +#: apt_preferences.5.xml:403 msgid "the <literal>Package:</literal> line" msgstr "la ligne <literal>Package:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:410 +#: apt_preferences.5.xml:404 msgid "gives the package name" msgstr "donne le nom du paquet" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:413 apt_preferences.5.xml:463 +#: apt_preferences.5.xml:407 apt_preferences.5.xml:457 msgid "the <literal>Version:</literal> line" msgstr "la ligne <literal>Version:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:414 +#: apt_preferences.5.xml:408 msgid "gives the version number for the named package" msgstr "donne le numéro de version du paquet" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:419 +#: apt_preferences.5.xml:413 msgid "" "The <filename>Release</filename> file is normally found in the directory " "<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for " @@ -6350,12 +6350,12 @@ msgstr "" "pertinentes pour déterminer les priorités :" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:430 +#: apt_preferences.5.xml:424 msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" msgstr "La ligne <literal>Archive:</literal> ou <literal>Suite:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:431 +#: apt_preferences.5.xml:425 msgid "" "names the archive to which all the packages in the directory tree belong. " "For example, the line \"Archive: stable\" or \"Suite: stable\" specifies " @@ -6372,18 +6372,18 @@ msgstr "" "préférences demanderait cette ligne :" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:441 +#: apt_preferences.5.xml:435 #, no-wrap msgid "Pin: release a=stable\n" msgstr "Pin: release a=stable\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:447 +#: apt_preferences.5.xml:441 msgid "the <literal>Codename:</literal> line" msgstr "la ligne <literal>Codename:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:448 +#: apt_preferences.5.xml:442 msgid "" "names the codename to which all the packages in the directory tree belong. " "For example, the line \"Codename: &testing-codename;\" specifies that all of " @@ -6401,13 +6401,13 @@ msgstr "" "ligne :" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:457 +#: apt_preferences.5.xml:451 #, no-wrap msgid "Pin: release n=&testing-codename;\n" msgstr "Pin: release n=&testing-codename;\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:464 +#: apt_preferences.5.xml:458 msgid "" "names the release version. For example, the packages in the tree might " "belong to Debian release version &stable-version;. Note that there is " @@ -6424,7 +6424,7 @@ msgstr "" "préférences demanderait ces lignes :" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:473 +#: apt_preferences.5.xml:467 #, no-wrap msgid "" "Pin: release v=&stable-version;\n" @@ -6436,12 +6436,12 @@ msgstr "" "Pin: release &stable-version;\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:482 +#: apt_preferences.5.xml:476 msgid "the <literal>Component:</literal> line" msgstr "La ligne <literal>Component:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:483 +#: apt_preferences.5.xml:477 msgid "" "names the licensing component associated with the packages in the directory " "tree of the <filename>Release</filename> file. For example, the line " @@ -6459,18 +6459,18 @@ msgstr "" "fichier des préférences demanderait cette ligne :" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:492 +#: apt_preferences.5.xml:486 #, no-wrap msgid "Pin: release c=main\n" msgstr "Pin: release c=main\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:498 +#: apt_preferences.5.xml:492 msgid "the <literal>Origin:</literal> line" msgstr "La ligne <literal>Origin:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:499 +#: apt_preferences.5.xml:493 msgid "" "names the originator of the packages in the directory tree of the " "<filename>Release</filename> file. Most commonly, this is <literal>Debian</" @@ -6483,18 +6483,18 @@ msgstr "" "ligne :" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:505 +#: apt_preferences.5.xml:499 #, no-wrap msgid "Pin: release o=Debian\n" msgstr "Pin: release o=Debian\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:511 +#: apt_preferences.5.xml:505 msgid "the <literal>Label:</literal> line" msgstr "La ligne <literal>Label:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:512 +#: apt_preferences.5.xml:506 msgid "" "names the label of the packages in the directory tree of the " "<filename>Release</filename> file. Most commonly, this is <literal>Debian</" @@ -6507,13 +6507,13 @@ msgstr "" "préférences demanderait cette ligne :" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:518 +#: apt_preferences.5.xml:512 #, no-wrap msgid "Pin: release l=Debian\n" msgstr "Pin: release l=Debian\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:525 +#: apt_preferences.5.xml:519 msgid "" "All of the <filename>Packages</filename> and <filename>Release</filename> " "files retrieved from locations listed in the &sources-list; file are stored " @@ -6538,12 +6538,12 @@ msgstr "" "<literal>unstable</literal>." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:538 +#: apt_preferences.5.xml:532 msgid "Optional Lines in an APT Preferences Record" msgstr "Lignes facultatives dans le fichier des préférences" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:540 +#: apt_preferences.5.xml:534 msgid "" "Each record in the APT preferences file can optionally begin with one or " "more lines beginning with the word <literal>Explanation:</literal>. This " @@ -6554,12 +6554,12 @@ msgstr "" "commentaires." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:549 +#: apt_preferences.5.xml:543 msgid "Tracking Stable" msgstr "Méthode pour suivre Stable" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:557 +#: apt_preferences.5.xml:551 #, no-wrap msgid "" "Explanation: Uninstall or do not install any Debian-originated\n" @@ -6583,7 +6583,7 @@ msgstr "" "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:551 +#: apt_preferences.5.xml:545 msgid "" "The following APT preferences file will cause APT to assign a priority " "higher than the default (500) to all package versions belonging to a " @@ -6598,8 +6598,8 @@ msgstr "" "literal>. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:574 apt_preferences.5.xml:620 -#: apt_preferences.5.xml:678 +#: apt_preferences.5.xml:568 apt_preferences.5.xml:614 +#: apt_preferences.5.xml:672 #, no-wrap msgid "" "apt-get install <replaceable>package-name</replaceable>\n" @@ -6611,7 +6611,7 @@ msgstr "" "apt-get dist-upgrade\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:569 +#: apt_preferences.5.xml:563 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest " @@ -6624,13 +6624,13 @@ msgstr "" "\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:586 +#: apt_preferences.5.xml:580 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/testing\n" msgstr "apt-get install <replaceable>paquet</replaceable>/testing\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:580 +#: apt_preferences.5.xml:574 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>testing</literal> distribution; the package " @@ -6643,12 +6643,12 @@ msgstr "" "de relancer la commande. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:592 +#: apt_preferences.5.xml:586 msgid "Tracking Testing or Unstable" msgstr "Méthode pour suivre Testing ou Unstable" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:601 +#: apt_preferences.5.xml:595 #, no-wrap msgid "" "Package: *\n" @@ -6676,7 +6676,7 @@ msgstr "" "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:594 +#: apt_preferences.5.xml:588 msgid "" "The following APT preferences file will cause APT to assign a high priority " "to package versions from the <literal>testing</literal> distribution, a " @@ -6693,7 +6693,7 @@ msgstr "" "<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:615 +#: apt_preferences.5.xml:609 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest " @@ -6706,13 +6706,13 @@ msgstr "" "type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:635 +#: apt_preferences.5.xml:629 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/unstable\n" msgstr "apt-get install <replaceable>paquet</replaceable>/unstable\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:626 +#: apt_preferences.5.xml:620 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>unstable</literal> distribution. " @@ -6731,12 +6731,12 @@ msgstr "" "installée. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:642 +#: apt_preferences.5.xml:636 msgid "Tracking the evolution of a codename release" msgstr "Suivre l'évolution d'une version par son nom de code" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:656 +#: apt_preferences.5.xml:650 #, no-wrap msgid "" "Explanation: Uninstall or do not install any Debian-originated package versions\n" @@ -6770,7 +6770,7 @@ msgstr "" "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:644 +#: apt_preferences.5.xml:638 msgid "" "The following APT preferences file will cause APT to assign a priority " "higher than the default (500) to all package versions belonging to a " @@ -6794,7 +6794,7 @@ msgstr "" "exemples précédents. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:673 +#: apt_preferences.5.xml:667 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest version(s) in " @@ -6807,13 +6807,13 @@ msgstr "" "<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:693 +#: apt_preferences.5.xml:687 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/sid\n" msgstr "apt-get install <replaceable>paquet</replaceable>/sid\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:684 +#: apt_preferences.5.xml:678 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>sid</literal> distribution. Thereafter, " @@ -6832,17 +6832,17 @@ msgstr "" "<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:708 +#: apt_preferences.5.xml:702 msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;" msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;" #. type: Content of: <refentry><refnamediv><refpurpose> -#: sources.list.5.xml:35 +#: sources.list.5.xml:29 msgid "List of configured APT data sources" msgstr "Liste des sources de données APT configurées" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:40 +#: sources.list.5.xml:34 msgid "" "The source list <filename>/etc/apt/sources.list</filename> is designed to " "support any number of active sources and a variety of source media. The file " @@ -6859,7 +6859,7 @@ msgstr "" "commande équivalent avec une autre interface à APT)." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:47 +#: sources.list.5.xml:41 msgid "" "Each line specifying a source starts with type (e.g. <literal>deb-src</" "literal>) followed by options and arguments for this type. Individual " @@ -6874,12 +6874,12 @@ msgstr "" "reste de la ligne est un commentaire." #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:55 +#: sources.list.5.xml:49 msgid "sources.list.d" msgstr "sources.list.d" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:56 +#: sources.list.5.xml:50 msgid "" "The <filename>/etc/apt/sources.list.d</filename> directory provides a way to " "add sources.list entries in separate files. The format is the same as for " @@ -6903,12 +6903,12 @@ msgstr "" "ignorés silencieusemennt)." #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:67 +#: sources.list.5.xml:61 msgid "The deb and deb-src types" msgstr "Les types deb et deb-src." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:68 +#: sources.list.5.xml:62 msgid "" "The <literal>deb</literal> type references a typical two-level Debian " "archive, <filename>distribution/component</filename>. The " @@ -6934,7 +6934,7 @@ msgstr "" "pour récupérer les index des sources." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:79 +#: sources.list.5.xml:73 msgid "" "The format for a <filename>sources.list</filename> entry using the " "<literal>deb</literal> and <literal>deb-src</literal> types is:" @@ -6943,14 +6943,14 @@ msgstr "" "types <literal>deb</literal> et <literal>deb-src</literal> est :" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:82 +#: sources.list.5.xml:76 #, fuzzy, no-wrap #| msgid "deb [ options ] uri distribution [component1] [component2] [...]" msgid "deb [ options ] uri suite [component1] [component2] [...]" msgstr "deb [ options ] uri distribution [composant1] [composant2] [...]" #. type: Content of: <refentry><refsect1><para><literallayout> -#: sources.list.5.xml:86 +#: sources.list.5.xml:80 #, no-wrap msgid "" " Types: deb deb-src\n" @@ -6973,14 +6973,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:84 +#: sources.list.5.xml:78 msgid "" "Alternatively a rfc822 style format is also supported: <placeholder type=" "\"literallayout\" id=\"0\"/>" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:105 +#: sources.list.5.xml:99 #, fuzzy #| msgid "" #| "The URI for the <literal>deb</literal> type must specify the base of the " @@ -7012,7 +7012,7 @@ msgstr "" "être présent." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:114 +#: sources.list.5.xml:108 #, fuzzy #| msgid "" #| "<literal>distribution</literal> may also contain a variable, <literal>" @@ -7040,7 +7040,7 @@ msgstr "" "literal> crée automatiquement un URI en fonction de l'architecture effective." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:122 +#: sources.list.5.xml:116 #, fuzzy #| msgid "" #| "Since only one distribution can be specified per line it may be necessary " @@ -7080,7 +7080,7 @@ msgstr "" "tirer plus efficacement parti des sites à faible bande passante." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:136 +#: sources.list.5.xml:130 msgid "" "<literal>options</literal> is always optional and needs to be surrounded by " "square brackets. It can consist of multiple settings in the form " @@ -7097,7 +7097,7 @@ msgstr "" "ignorés silencieusement) :" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:142 +#: sources.list.5.xml:136 msgid "" "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</" "replaceable>,…</literal> can be used to specify for which architectures " @@ -7112,7 +7112,7 @@ msgstr "" "Architectures</literal> sera téléchargée." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:146 +#: sources.list.5.xml:140 #, fuzzy #| msgid "" #| "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</" @@ -7133,7 +7133,7 @@ msgstr "" "Architectures</literal> sera téléchargée." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:149 +#: sources.list.5.xml:143 msgid "" "<literal>trusted=yes</literal> can be set to indicate that packages from " "this source are always authenticated even if the <filename>Release</" @@ -7151,7 +7151,7 @@ msgstr "" "authentifiées comme non authentifiées." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:156 +#: sources.list.5.xml:150 msgid "" "It is important to list sources in order of preference, with the most " "preferred source listed first. Typically this will result in sorting by " @@ -7164,12 +7164,12 @@ msgstr "" "les hôtes distants." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:161 +#: sources.list.5.xml:155 msgid "Some examples:" msgstr "Exemples :" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:163 +#: sources.list.5.xml:157 #, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n" @@ -7181,17 +7181,17 @@ msgstr "" " " #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:169 +#: sources.list.5.xml:163 msgid "URI specification" msgstr "Spécification des URI" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:171 +#: sources.list.5.xml:165 msgid "The currently recognized URI types are:" msgstr "Les types d'URI actuellement reconnues sont :" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:175 +#: sources.list.5.xml:169 msgid "" "The file scheme allows an arbitrary directory in the file system to be " "considered an archive. This is useful for NFS mounts and local mirrors or " @@ -7202,7 +7202,7 @@ msgstr "" "avec les montages NFS, les miroirs et les archives locaux." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:182 +#: sources.list.5.xml:176 msgid "" "The cdrom scheme allows APT to use a local CD-ROM drive with media swapping. " "Use the &apt-cdrom; program to create cdrom entries in the source list." @@ -7212,7 +7212,7 @@ msgstr "" "pour créer des entrées dans la liste des sources." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:189 +#: sources.list.5.xml:183 msgid "" "The http scheme specifies an HTTP server for the archive. If an environment " "variable <envar>http_proxy</envar> is set with the format http://server:" @@ -7229,7 +7229,7 @@ msgstr "" "Notez qu'il s'agit d'une méthode d'authentification peu sûre." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:200 +#: sources.list.5.xml:194 msgid "" "The ftp scheme specifies an FTP server for the archive. APT's FTP behavior " "is highly configurable; for more information see the &apt-conf; manual page. " @@ -7251,7 +7251,7 @@ msgstr "" "configuration seront ignorés." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:212 +#: sources.list.5.xml:206 msgid "" "The copy scheme is identical to the file scheme except that packages are " "copied into the cache directory instead of used directly at their location. " @@ -7265,7 +7265,7 @@ msgstr "" "des fichiers avec APT." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:219 +#: sources.list.5.xml:213 msgid "" "The rsh/ssh method invokes RSH/SSH to connect to a remote host and access " "the files as a given user. Prior configuration of rhosts or RSA keys is " @@ -7279,12 +7279,12 @@ msgstr "" "sont utilisées pour l'accès aux fichiers de la machine distante." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: sources.list.5.xml:226 +#: sources.list.5.xml:220 msgid "adding more recognizable URI types" msgstr "ajout de types d'URI supplémentaires reconnues" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:228 +#: sources.list.5.xml:222 msgid "" "APT can be extended with more methods shipped in other optional packages, " "which should follow the naming scheme <package>apt-transport-" @@ -7303,7 +7303,7 @@ msgstr "" "disponibles (voir &apt-transport-debtorrent;)." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:240 +#: sources.list.5.xml:234 msgid "" "Uses the archive stored locally (or NFS mounted) at /home/jason/debian for " "stable/main, stable/contrib, and stable/non-free." @@ -7312,37 +7312,37 @@ msgstr "" "debian pour stable/main, stable/contrib et stable/non-free." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:242 +#: sources.list.5.xml:236 #, no-wrap msgid "deb file:/home/jason/debian stable main contrib non-free" msgstr "deb file:/home/jason/debian stable main contrib non-free" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:244 +#: sources.list.5.xml:238 msgid "As above, except this uses the unstable (development) distribution." msgstr "" "Comme ci-dessus, excepté que cette ligne utilise la distribution " "« unstable » (développement)." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:245 +#: sources.list.5.xml:239 #, no-wrap msgid "deb file:/home/jason/debian unstable main contrib non-free" msgstr "deb file:/home/jason/debian unstable main contrib non-free" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:247 +#: sources.list.5.xml:241 msgid "Source line for the above" msgstr "La précédente ligne, mais pour les sources." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:248 +#: sources.list.5.xml:242 #, no-wrap msgid "deb-src file:/home/jason/debian unstable main contrib non-free" msgstr "deb-src file:/home/jason/debian unstable main contrib non-free" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:250 +#: sources.list.5.xml:244 msgid "" "The first line gets package information for the architectures in " "<literal>APT::Architectures</literal> while the second always retrieves " @@ -7353,7 +7353,7 @@ msgstr "" "<literal>amd64</literal> et <literal>armel</literal>." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:252 +#: sources.list.5.xml:246 #, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main\n" @@ -7363,7 +7363,7 @@ msgstr "" "deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:255 +#: sources.list.5.xml:249 msgid "" "Uses HTTP to access the archive at archive.debian.org, and uses only the " "hamm/main area." @@ -7372,13 +7372,13 @@ msgstr "" "n'utiliser que la section hamm/main." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:257 +#: sources.list.5.xml:251 #, no-wrap msgid "deb http://archive.debian.org/debian-archive hamm main" msgstr "deb http://archive.debian.org/debian-archive hamm main" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:259 +#: sources.list.5.xml:253 msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the &stable-codename;/contrib area." @@ -7387,13 +7387,13 @@ msgstr "" "répertoire debian, et n'utiliser que la section &stable-codename;/contrib." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:261 +#: sources.list.5.xml:255 #, no-wrap msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib" msgstr "deb ftp://ftp.debian.org/debian &stable-codename; contrib" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:263 +#: sources.list.5.xml:257 msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the unstable/contrib area. If this line appears as " @@ -7406,19 +7406,19 @@ msgstr "" "apparaissent, une seule session FTP sera utilisée pour les deux lignes." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:267 +#: sources.list.5.xml:261 #, no-wrap msgid "deb ftp://ftp.debian.org/debian unstable contrib" msgstr "deb ftp://ftp.debian.org/debian unstable contrib" #. type: Content of: <refentry><refsect1><para><literallayout> -#: sources.list.5.xml:276 +#: sources.list.5.xml:270 #, no-wrap msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/" msgstr "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:269 +#: sources.list.5.xml:263 msgid "" "Uses HTTP to access the archive at ftp.tlh.debian.org, under the universe " "directory, and uses only files found under <filename>unstable/binary-i386</" @@ -7438,17 +7438,17 @@ msgstr "" "type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:281 +#: sources.list.5.xml:275 msgid "&apt-cache; &apt-conf;" msgstr "&apt-cache; &apt-conf;" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt-extracttemplates.1.xml:28 apt-sortpkgs.1.xml:28 apt-ftparchive.1.xml:28 +#: apt-extracttemplates.1.xml:22 apt-sortpkgs.1.xml:22 apt-ftparchive.1.xml:22 msgid "1" msgstr "1" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-extracttemplates.1.xml:35 +#: apt-extracttemplates.1.xml:29 msgid "" "Utility to extract <command>debconf</command> config and templates from " "Debian packages" @@ -7457,7 +7457,7 @@ msgstr "" "<command>debconf</command> contenu dans un paquet Debian" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:41 +#: apt-extracttemplates.1.xml:35 msgid "" "<command>apt-extracttemplates</command> will take one or more Debian package " "files as input and write out (to a temporary directory) all associated " @@ -7472,12 +7472,12 @@ msgstr "" "suivant :" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:46 +#: apt-extracttemplates.1.xml:40 msgid "package version template-file config-script" msgstr "paquet version guide-de-configuration script-de-configuration" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:47 +#: apt-extracttemplates.1.xml:41 msgid "" "template-file and config-script are written to the temporary directory " "specified by the <option>-t</option> or <option>--tempdir</option> " @@ -7492,7 +7492,7 @@ msgstr "" "<filename>package.config.XXXXXX</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-extracttemplates.1.xml:60 +#: apt-extracttemplates.1.xml:54 msgid "" "Temporary directory in which to write extracted <command>debconf</command> " "template files and config scripts. Configuration Item: <literal>APT::" @@ -7503,7 +7503,7 @@ msgstr "" "<literal>APT::ExtractTemplates::TempDir</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:77 +#: apt-extracttemplates.1.xml:71 msgid "" "<command>apt-extracttemplates</command> returns zero on normal operation, " "decimal 100 on error." @@ -7512,12 +7512,12 @@ msgstr "" "le nombre 100 en cas d'erreur." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-sortpkgs.1.xml:35 +#: apt-sortpkgs.1.xml:29 msgid "Utility to sort package index files" msgstr "Outil de tri des index de paquets." #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:41 +#: apt-sortpkgs.1.xml:35 msgid "" "<command>apt-sortpkgs</command> will take an index file (source index or " "package index) and sort the records so that they are ordered by the package " @@ -7530,7 +7530,7 @@ msgstr "" "internes." #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:47 +#: apt-sortpkgs.1.xml:41 msgid "" "All output is sent to standard output; the input must be a seekable file." msgstr "" @@ -7538,7 +7538,7 @@ msgstr "" "fichier analysable." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-sortpkgs.1.xml:56 +#: apt-sortpkgs.1.xml:50 msgid "" "Use source index field ordering. Configuration Item: <literal>APT::" "SortPkgs::Source</literal>." @@ -7547,7 +7547,7 @@ msgstr "" "configuration : <literal>APT::SortPkgs::Source</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:70 +#: apt-sortpkgs.1.xml:64 msgid "" "<command>apt-sortpkgs</command> returns zero on normal operation, decimal " "100 on error." @@ -7556,12 +7556,12 @@ msgstr "" "en cas d'erreur." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-ftparchive.1.xml:35 +#: apt-ftparchive.1.xml:29 msgid "Utility to generate index files" msgstr "Outil de création de fichiers d'index" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:41 +#: apt-ftparchive.1.xml:35 msgid "" "<command>apt-ftparchive</command> is the command line tool that generates " "the index files that APT uses to access a distribution source. The index " @@ -7573,7 +7573,7 @@ msgstr "" "index doit être créé pour un site et basé sur le contenu de ce site." #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:45 +#: apt-ftparchive.1.xml:39 msgid "" "<command>apt-ftparchive</command> is a superset of the &dpkg-scanpackages; " "program, incorporating its entire functionality via the <literal>packages</" @@ -7588,7 +7588,7 @@ msgstr "" "élaborée pour automatiser le processus de création d'une archive complète." #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:51 +#: apt-ftparchive.1.xml:45 msgid "" "Internally <command>apt-ftparchive</command> can make use of binary " "databases to cache the contents of a .deb file and it does not rely on any " @@ -7603,7 +7603,7 @@ msgstr "" "voulus." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:62 +#: apt-ftparchive.1.xml:56 msgid "" "The packages command generates a package file from a directory tree. It " "takes the given directory and recursively searches it for .deb files, " @@ -7617,7 +7617,7 @@ msgstr "" "équivalente à &dpkg-scanpackages;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:67 apt-ftparchive.1.xml:91 +#: apt-ftparchive.1.xml:61 apt-ftparchive.1.xml:85 msgid "" "The option <option>--db</option> can be used to specify a binary caching DB." msgstr "" @@ -7625,7 +7625,7 @@ msgstr "" "binaire." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:72 +#: apt-ftparchive.1.xml:66 msgid "" "The <literal>sources</literal> command generates a source index file from a " "directory tree. It takes the given directory and recursively searches it " @@ -7639,7 +7639,7 @@ msgstr "" "équivalente à &dpkg-scansources;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:77 +#: apt-ftparchive.1.xml:71 msgid "" "If an override file is specified then a source override file will be looked " "for with an extension of .src. The --source-override option can be used to " @@ -7650,7 +7650,7 @@ msgstr "" "override pour changer de fichier source d'« override »." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:84 +#: apt-ftparchive.1.xml:78 msgid "" "The <literal>contents</literal> command generates a contents file from a " "directory tree. It takes the given directory and recursively searches it " @@ -7668,7 +7668,7 @@ msgstr "" "virgule sépare les paquets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:96 +#: apt-ftparchive.1.xml:90 msgid "" "The <literal>release</literal> command generates a Release file from a " "directory tree. It recursively searches the given directory for uncompressed " @@ -7694,7 +7694,7 @@ msgstr "" "sommes de contrôle MD5, SHA1 et SHA256 pour chaque fichier." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:106 +#: apt-ftparchive.1.xml:100 msgid "" "Values for the additional metadata fields in the Release file are taken from " "the corresponding variables under <literal>APT::FTPArchive::Release</" @@ -7715,7 +7715,7 @@ msgstr "" "<literal>Description</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:119 +#: apt-ftparchive.1.xml:113 msgid "" "The <literal>generate</literal> command is designed to be runnable from a " "cron script and builds indexes according to the given config file. The " @@ -7729,7 +7729,7 @@ msgstr "" "préciser index et répertoires aussi bien que les paramètres requis." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:128 +#: apt-ftparchive.1.xml:122 msgid "" "The <literal>clean</literal> command tidies the databases used by the given " "configuration file by removing any records that are no longer necessary." @@ -7739,12 +7739,12 @@ msgstr "" "sont plus nécessaires." #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:134 +#: apt-ftparchive.1.xml:128 msgid "The Generate Configuration" msgstr "Configuration de la commande generate" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:136 +#: apt-ftparchive.1.xml:130 msgid "" "The <literal>generate</literal> command uses a configuration file to " "describe the archives that are going to be generated. It follows the typical " @@ -7761,19 +7761,19 @@ msgstr "" "arborescence. Cela n'affecte que l'usage de l'étiquette de visée (scope tag)." #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:144 +#: apt-ftparchive.1.xml:138 msgid "" "The generate configuration has four separate sections, each described below." msgstr "" "Ce fichier de configuration possède quatre sections, décrites ci-dessous." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:146 +#: apt-ftparchive.1.xml:140 msgid "<literal>Dir</literal> Section" msgstr "La section <literal>Dir</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:148 +#: apt-ftparchive.1.xml:142 msgid "" "The <literal>Dir</literal> section defines the standard directories needed " "to locate the files required during the generation process. These " @@ -7786,7 +7786,7 @@ msgstr "" "manière à produire un chemin absolu et complet." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:155 +#: apt-ftparchive.1.xml:149 msgid "" "Specifies the root of the FTP archive, in a standard Debian configuration " "this is the directory that contains the <filename>ls-LR</filename> and dist " @@ -7797,17 +7797,17 @@ msgstr "" "filename> et les noeuds des distributions." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:162 +#: apt-ftparchive.1.xml:156 msgid "Specifies the location of the override files." msgstr "Indique l'emplacement des fichiers d'« override »." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:167 +#: apt-ftparchive.1.xml:161 msgid "Specifies the location of the cache files." msgstr "Indique l'emplacement des fichiers de cache." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:172 +#: apt-ftparchive.1.xml:166 msgid "" "Specifies the location of the file list files, if the <literal>FileList</" "literal> setting is used below." @@ -7816,12 +7816,12 @@ msgstr "" "sert de la valeur <literal>FileList</literal> définie plus bas)." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:178 +#: apt-ftparchive.1.xml:172 msgid "<literal>Default</literal> Section" msgstr "La section <literal>Default</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:180 +#: apt-ftparchive.1.xml:174 msgid "" "The <literal>Default</literal> section specifies default values, and " "settings that control the operation of the generator. Other sections may " @@ -7832,7 +7832,7 @@ msgstr "" "annulées dans d'autres sections (paramètrage par section)." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:186 +#: apt-ftparchive.1.xml:180 msgid "" "Sets the default compression schemes to use for the package index files. It " "is a string that contains a space separated list of at least one of: '.' (no " @@ -7845,7 +7845,7 @@ msgstr "" "Par défaut, c'est la chaîne « . gzip »." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:194 +#: apt-ftparchive.1.xml:188 msgid "" "Sets the default list of file extensions that are package files. This " "defaults to '.deb'." @@ -7854,7 +7854,7 @@ msgstr "" "paquets. Par défaut, c'est « .deb »." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:200 +#: apt-ftparchive.1.xml:194 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Sources files." @@ -7863,7 +7863,7 @@ msgstr "" "compressés les fichiers sources." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:206 +#: apt-ftparchive.1.xml:200 msgid "" "Sets the default list of file extensions that are source files. This " "defaults to '.dsc'." @@ -7872,7 +7872,7 @@ msgstr "" "fichiers sources. Par défaut, c'est « .dsc »." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:212 +#: apt-ftparchive.1.xml:206 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Contents files." @@ -7881,7 +7881,7 @@ msgstr "" "compressés les fichiers « Contents »." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:218 +#: apt-ftparchive.1.xml:212 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Translation-en master file." @@ -7890,7 +7890,7 @@ msgstr "" "compressé le fichier maître Translations-en." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:224 +#: apt-ftparchive.1.xml:218 msgid "" "Specifies the number of kilobytes to delink (and replace with hard links) " "per run. This is used in conjunction with the per-section <literal>External-" @@ -7901,7 +7901,7 @@ msgstr "" "paramètre <literal>External-Links</literal>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:231 +#: apt-ftparchive.1.xml:225 msgid "" "Specifies the mode of all created index files. It defaults to 0644. All " "index files are set to this mode with no regard to the umask." @@ -7911,7 +7911,7 @@ msgstr "" "utilisateur (umasq) est ignoré." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:238 apt-ftparchive.1.xml:384 +#: apt-ftparchive.1.xml:232 apt-ftparchive.1.xml:378 msgid "" "Specifies whether long descriptions should be included in the " "<filename>Packages</filename> file or split out into a master " @@ -7922,12 +7922,12 @@ msgstr "" "<filename>Translation-en</filename>." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:244 +#: apt-ftparchive.1.xml:238 msgid "<literal>TreeDefault</literal> Section" msgstr "La section <literal>TreeDefault</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:246 +#: apt-ftparchive.1.xml:240 msgid "" "Sets defaults specific to <literal>Tree</literal> sections. All of these " "variables are substitution variables and have the strings $(DIST), " @@ -7939,7 +7939,7 @@ msgstr "" "respective." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:253 +#: apt-ftparchive.1.xml:247 msgid "" "Sets the number of kilobytes of contents files that are generated each day. " "The contents files are round-robined so that over several days they will all " @@ -7950,7 +7950,7 @@ msgstr "" "robin » de manière que, sur plusieurs jours, tous soient reconstruits." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:260 +#: apt-ftparchive.1.xml:254 msgid "" "Controls the number of days a contents file is allowed to be checked without " "changing. If this limit is passed the mtime of the contents file is updated. " @@ -7968,7 +7968,7 @@ msgstr "" "défaut ce nombre vaut 10, l'unité étant le jour." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:271 +#: apt-ftparchive.1.xml:265 msgid "" "Sets the top of the .deb directory tree. Defaults to <filename>$(DIST)/" "$(SECTION)/binary-$(ARCH)/</filename>" @@ -7977,7 +7977,7 @@ msgstr "" "<filename>$(DIST)/$(SECTION)/binary-$(ARCH)/</filename>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:277 +#: apt-ftparchive.1.xml:271 msgid "" "Sets the top of the source package directory tree. Defaults to <filename>" "$(DIST)/$(SECTION)/source/</filename>" @@ -7986,7 +7986,7 @@ msgstr "" "<filename>$(DIST)/$(SECTION)/source/</filename>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:283 +#: apt-ftparchive.1.xml:277 msgid "" "Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/" "binary-$(ARCH)/Packages</filename>" @@ -7995,7 +7995,7 @@ msgstr "" "$(SECTION)/binary-$(ARCH)/Packages</filename>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:289 +#: apt-ftparchive.1.xml:283 msgid "" "Sets the output Sources file. Defaults to <filename>$(DIST)/$(SECTION)/" "source/Sources</filename>" @@ -8004,7 +8004,7 @@ msgstr "" "$(SECTION)/source/Sources</filename>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:295 +#: apt-ftparchive.1.xml:289 msgid "" "Sets the output Translation-en master file with the long descriptions if " "they should be not included in the Packages file. Defaults to <filename>" @@ -8015,7 +8015,7 @@ msgstr "" "défaut : <filename>$(DIST)/$(SECTION)/i18n/Translation-en</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:302 +#: apt-ftparchive.1.xml:296 msgid "" "Sets the path prefix that causes a symlink to be considered an internal link " "instead of an external link. Defaults to <filename>$(DIST)/$(SECTION)/</" @@ -8026,7 +8026,7 @@ msgstr "" "défaut, c'est <filename>$(DIST)/$(SECTION)/</filename>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:309 +#: apt-ftparchive.1.xml:303 msgid "" "Sets the output Contents file. Defaults to <filename>$(DIST)/$(SECTION)/" "Contents-$(ARCH)</filename>. If this setting causes multiple Packages files " @@ -8040,12 +8040,12 @@ msgstr "" "<command>apt-ftparchive</command> les intègre automatiquement." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:318 +#: apt-ftparchive.1.xml:312 msgid "Sets header file to prepend to the contents output." msgstr "Indique l'en-tête à préfixer au fichier « Contents » créé." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:323 +#: apt-ftparchive.1.xml:317 msgid "" "Sets the binary cache database to use for this section. Multiple sections " "can share the same database." @@ -8054,7 +8054,7 @@ msgstr "" "Différentes sections peuvent partager cette base de données." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:329 +#: apt-ftparchive.1.xml:323 msgid "" "Specifies that instead of walking the directory tree, <command>apt-" "ftparchive</command> should read the list of files from the given file. " @@ -8065,7 +8065,7 @@ msgstr "" "relatifs sont préfixés par le répertoire de l'archive." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:336 +#: apt-ftparchive.1.xml:330 msgid "" "Specifies that instead of walking the directory tree, <command>apt-" "ftparchive</command> should read the list of files from the given file. " @@ -8078,12 +8078,12 @@ msgstr "" "traiter les index de sources." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:344 +#: apt-ftparchive.1.xml:338 msgid "<literal>Tree</literal> Section" msgstr "La section <literal>Tree</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:346 +#: apt-ftparchive.1.xml:340 msgid "" "The <literal>Tree</literal> section defines a standard Debian file tree " "which consists of a base directory, then multiple sections in that base " @@ -8097,7 +8097,7 @@ msgstr "" "par la variable de substitution <literal>Directory</literal>." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:351 +#: apt-ftparchive.1.xml:345 msgid "" "The <literal>Tree</literal> section takes a scope tag which sets the " "<literal>$(DIST)</literal> variable and defines the root of the tree (the " @@ -8110,7 +8110,7 @@ msgstr "" "C'est par exemple : <filename>dists/&stable-codename;</filename>." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:356 +#: apt-ftparchive.1.xml:350 msgid "" "All of the settings defined in the <literal>TreeDefault</literal> section " "can be used in a <literal>Tree</literal> section as well as three new " @@ -8121,7 +8121,7 @@ msgstr "" "trois nouvelles variables suivantes." #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt-ftparchive.1.xml:362 +#: apt-ftparchive.1.xml:356 #, no-wrap msgid "" "for i in Sections do \n" @@ -8135,7 +8135,7 @@ msgstr "" " " #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:359 +#: apt-ftparchive.1.xml:353 msgid "" "When processing a <literal>Tree</literal> section <command>apt-ftparchive</" "command> performs an operation similar to: <placeholder type=\"programlisting" @@ -8146,7 +8146,7 @@ msgstr "" "\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:370 +#: apt-ftparchive.1.xml:364 msgid "" "This is a space separated list of sections which appear under the " "distribution; typically this is something like <literal>main contrib non-" @@ -8157,7 +8157,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:377 +#: apt-ftparchive.1.xml:371 msgid "" "This is a space separated list of all the architectures that appear under " "search section. The special architecture 'source' is used to indicate that " @@ -8168,7 +8168,7 @@ msgstr "" "que l'arborescence est une arborescence de sources." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:390 +#: apt-ftparchive.1.xml:384 msgid "" "Sets the binary override file. The override file contains section, priority " "and maintainer address information." @@ -8177,7 +8177,7 @@ msgstr "" "informations sur la section, la priorité et le responsable du paquet." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:396 +#: apt-ftparchive.1.xml:390 msgid "" "Sets the source override file. The override file contains section " "information." @@ -8186,22 +8186,22 @@ msgstr "" "informations sur la section." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:402 apt-ftparchive.1.xml:448 +#: apt-ftparchive.1.xml:396 apt-ftparchive.1.xml:442 msgid "Sets the binary extra override file." msgstr "Indique un autre fichier d'« override » pour les binaires." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:407 apt-ftparchive.1.xml:453 +#: apt-ftparchive.1.xml:401 apt-ftparchive.1.xml:447 msgid "Sets the source extra override file." msgstr "Indique un autre fichier d'« override » pour les sources." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:412 +#: apt-ftparchive.1.xml:406 msgid "<literal>BinDirectory</literal> Section" msgstr "La section <literal>BinDirectory</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:414 +#: apt-ftparchive.1.xml:408 msgid "" "The <literal>bindirectory</literal> section defines a binary directory tree " "with no special structure. The scope tag specifies the location of the " @@ -8216,12 +8216,12 @@ msgstr "" "paramètrage de <literal>Section</literal><literal>Architecture</literal>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:422 +#: apt-ftparchive.1.xml:416 msgid "Sets the Packages file output." msgstr "Définit le fichier « Packages » créé." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:427 +#: apt-ftparchive.1.xml:421 msgid "" "Sets the Sources file output. At least one of <literal>Packages</literal> or " "<literal>Sources</literal> is required." @@ -8230,42 +8230,42 @@ msgstr "" "<literal>Packages</literal> ou <literal>Sources</literal> est nécessaire." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:433 +#: apt-ftparchive.1.xml:427 msgid "Sets the Contents file output (optional)." msgstr "Définit le fichier « Contents » créé." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:438 +#: apt-ftparchive.1.xml:432 msgid "Sets the binary override file." msgstr "Définit le fichier d'« override » pour les binaires." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:443 +#: apt-ftparchive.1.xml:437 msgid "Sets the source override file." msgstr "Définit le fichier d'« override » pour les sources." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:458 +#: apt-ftparchive.1.xml:452 msgid "Sets the cache DB." msgstr "Définit la base de données cache." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:463 +#: apt-ftparchive.1.xml:457 msgid "Appends a path to all the output paths." msgstr "Ajoute un chemin à tous les chemins créés." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:468 +#: apt-ftparchive.1.xml:462 msgid "Specifies the file list file." msgstr "Définit le fichier contenant la liste des fichiers." #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:475 +#: apt-ftparchive.1.xml:469 msgid "The Binary Override File" msgstr "Le fichier d'« Override » pour les binaires." #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:476 +#: apt-ftparchive.1.xml:470 msgid "" "The binary override file is fully compatible with &dpkg-scanpackages;. It " "contains four fields separated by spaces. The first field is the package " @@ -8280,19 +8280,19 @@ msgstr "" "nom du responsable de paquet." #. type: Content of: <refentry><refsect1><para><literallayout> -#: apt-ftparchive.1.xml:482 +#: apt-ftparchive.1.xml:476 #, no-wrap msgid "old [// oldn]* => new" msgstr "old [// oldn]* => new" #. type: Content of: <refentry><refsect1><para><literallayout> -#: apt-ftparchive.1.xml:484 +#: apt-ftparchive.1.xml:478 #, no-wrap msgid "new" msgstr "new" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:481 +#: apt-ftparchive.1.xml:475 msgid "" "The general form of the maintainer field is: <placeholder type=" "\"literallayout\" id=\"0\"/> or simply, <placeholder type=\"literallayout\" " @@ -8309,12 +8309,12 @@ msgstr "" "deuxième forme remplace inconditionnellement le champ." #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:492 +#: apt-ftparchive.1.xml:486 msgid "The Source Override File" msgstr "Le fichier d'« Override » pour les sources" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:494 +#: apt-ftparchive.1.xml:488 msgid "" "The source override file is fully compatible with &dpkg-scansources;. It " "contains two fields separated by spaces. The first field is the source " @@ -8325,12 +8325,12 @@ msgstr "" "sa section." #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:499 +#: apt-ftparchive.1.xml:493 msgid "The Extra Override File" msgstr "Le fichier supplémentaire d'« Override »" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:501 +#: apt-ftparchive.1.xml:495 msgid "" "The extra override file allows any arbitrary tag to be added or replaced in " "the output. It has three columns, the first is the package, the second is " @@ -8342,7 +8342,7 @@ msgstr "" "ligne est la nouvelle valeur." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:512 +#: apt-ftparchive.1.xml:506 msgid "" "Generate the given checksum. These options default to on, when turned off " "the generated index files will not have the checksum fields where possible. " @@ -8366,7 +8366,7 @@ msgstr "" "<literal>MD5</literal>, <literal>SHA1</literal> ou <literal>SHA256</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:523 +#: apt-ftparchive.1.xml:517 msgid "" "Use a binary caching DB. This has no effect on the generate command. " "Configuration Item: <literal>APT::FTPArchive::DB</literal>." @@ -8376,7 +8376,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:529 +#: apt-ftparchive.1.xml:523 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quiet up to a maximum of 2. You can also use " @@ -8392,7 +8392,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:537 +#: apt-ftparchive.1.xml:531 msgid "" "Perform Delinking. If the <literal>External-Links</literal> setting is used " "then this option actually enables delinking of the files. It defaults to on " @@ -8406,7 +8406,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:545 +#: apt-ftparchive.1.xml:539 msgid "" "Perform contents generation. When this option is set and package indexes are " "being generated with a cache DB then the file listing will also be extracted " @@ -8422,7 +8422,7 @@ msgstr "" "de configuration : <literal>APT::FTPArchive::Contents</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:555 +#: apt-ftparchive.1.xml:549 msgid "" "Select the source override file to use with the <literal>sources</literal> " "command. Configuration Item: <literal>APT::FTPArchive::SourceOverride</" @@ -8433,7 +8433,7 @@ msgstr "" "FTPArchive::SourceOverride</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:561 +#: apt-ftparchive.1.xml:555 msgid "" "Make the caching databases read only. Configuration Item: <literal>APT::" "FTPArchive::ReadOnlyDB</literal>." @@ -8442,7 +8442,7 @@ msgstr "" "configuration : <literal>APT::FTPArchive::ReadOnlyDB</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:566 +#: apt-ftparchive.1.xml:560 msgid "" "Accept in the <literal>packages</literal> and <literal>contents</literal> " "commands only package files matching <literal>*_arch.deb</literal> or " @@ -8456,7 +8456,7 @@ msgstr "" "<literal>APT::FTPArchive::Architecture</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:574 +#: apt-ftparchive.1.xml:568 msgid "" "&apt-ftparchive; caches as much as possible of metadata in a cachedb. If " "packages are recompiled and/or republished with the same version again, this " @@ -8479,7 +8479,7 @@ msgstr "" "survenir et l'ensemble de ces contrôles devient inutile." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:586 +#: apt-ftparchive.1.xml:580 msgid "" "This configuration option defaults to \"<literal>true</literal>\" and should " "only be set to <literal>\"false\"</literal> if the Archive generated with " @@ -8495,13 +8495,13 @@ msgstr "" "generate." #. type: Content of: <refentry><refsect1><para><programlisting> -#: apt-ftparchive.1.xml:604 +#: apt-ftparchive.1.xml:598 #, no-wrap msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" msgstr "<command>apt-ftparchive</command> packages <replaceable>répertoire</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:600 +#: apt-ftparchive.1.xml:594 msgid "" "To create a compressed Packages file for a directory containing binary " "packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>" @@ -8510,7 +8510,7 @@ msgstr "" "des paquets binaires (.deb): <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:614 +#: apt-ftparchive.1.xml:608 msgid "" "<command>apt-ftparchive</command> returns zero on normal operation, decimal " "100 on error." @@ -8519,32 +8519,32 @@ msgstr "" "nombre 100 en cas d'erreur." #. type: Attribute 'lang' of: <book> -#: guide.dbk:8 offline.dbk:8 +#: guide.dbk:9 offline.dbk:9 msgid "en" msgstr "fr" #. type: Content of: <book><title> -#: guide.dbk:10 +#: guide.dbk:11 msgid "APT User's Guide" msgstr "Guide d'utilisation d'APT" #. type: Content of: <book><bookinfo><authorgroup><author><personname> -#: guide.dbk:16 offline.dbk:16 +#: guide.dbk:17 offline.dbk:17 msgid "Jason Gunthorpe" msgstr "Jason Gunthorpe" #. type: Content of: <book><bookinfo><authorgroup><author><email> -#: guide.dbk:16 offline.dbk:16 +#: guide.dbk:17 offline.dbk:17 msgid "jgg@debian.org" msgstr "jgg@debian.org" #. type: Content of: <book><bookinfo><releaseinfo> -#: guide.dbk:20 offline.dbk:20 +#: guide.dbk:21 offline.dbk:21 msgid "Version &apt-product-version;" msgstr "" #. type: Content of: <book><bookinfo><abstract><para> -#: guide.dbk:24 +#: guide.dbk:25 msgid "" "This document provides an overview of how to use the the APT package manager." msgstr "" @@ -8552,19 +8552,19 @@ msgstr "" "paquets APT." #. type: Content of: <book><bookinfo> -#: guide.dbk:28 +#: guide.dbk:29 msgid "" "<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" msgstr "" "<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" #. type: Content of: <book><bookinfo><legalnotice><title> -#: guide.dbk:31 offline.dbk:32 +#: guide.dbk:32 offline.dbk:33 msgid "License Notice" msgstr "" #. type: Content of: <book><bookinfo><legalnotice><para> -#: guide.dbk:33 offline.dbk:34 +#: guide.dbk:34 offline.dbk:35 msgid "" "\"APT\" and this document are free software; you can redistribute them and/" "or modify them under the terms of the GNU General Public License as " @@ -8577,7 +8577,7 @@ msgstr "" "ultérieure." #. type: Content of: <book><bookinfo><legalnotice><para> -#: guide.dbk:42 offline.dbk:40 +#: guide.dbk:43 offline.dbk:41 msgid "" "For more details, on Debian systems, see the file /usr/share/common-licenses/" "GPL for the full license." @@ -8586,12 +8586,12 @@ msgstr "" "Linux, consultables dans le fichier usr/share/common-licenses/GPL." #. type: Content of: <book><chapter><title> -#: guide.dbk:49 +#: guide.dbk:50 msgid "General" msgstr "Généralités" #. type: Content of: <book><chapter><para> -#: guide.dbk:51 +#: guide.dbk:52 msgid "" "The APT package currently contains two sections, the APT <command>dselect</" "command> method and the <command>apt-get</command> command line user " @@ -8605,12 +8605,12 @@ msgstr "" "Internet." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:57 +#: guide.dbk:58 msgid "Anatomy of the Package System" msgstr "Anatomie du système de gestion des paquets" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:59 +#: guide.dbk:60 msgid "" "The Debian packaging system has a large amount of information associated " "with each package to help assure that it integrates cleanly and easily into " @@ -8622,7 +8622,7 @@ msgstr "" "immédiatement visibles est le système de gestion des dépendances." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:64 +#: guide.dbk:65 msgid "" "The dependency system allows individual programs to make use of shared " "elements in the system such as libraries. It simplifies placing infrequently " @@ -8639,7 +8639,7 @@ msgstr "" "électronique, les serveurs X et d'autres cxomposants du système." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:71 +#: guide.dbk:72 msgid "" "The first step to understanding the dependency system is to grasp the " "concept of a simple dependency. The meaning of a simple dependency is that a " @@ -8652,7 +8652,7 @@ msgstr "" "simultanément pour pouvoir fonctionner correctement." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:76 +#: guide.dbk:77 msgid "" "For instance, mailcrypt is an emacs extension that aids in encrypting email " "with GPG. Without GPGP installed mailcrypt is useless, so mailcrypt has a " @@ -8666,7 +8666,7 @@ msgstr "" "a une dépendance simple sur emacs." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:82 +#: guide.dbk:83 msgid "" "The other important dependency to understand is a conflicting dependency. It " "means that a package, when installed with another package, will not work and " @@ -8690,7 +8690,7 @@ msgstr "" "autres." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:92 +#: guide.dbk:93 msgid "" "As an added complication there is the possibility for a package to pretend " "to be another package. Consider that exim and sendmail for many intents are " @@ -8713,7 +8713,7 @@ msgstr "" "rendre la correction de certains défauts des paquets plus complexe." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:102 +#: guide.dbk:103 msgid "" "At any given time a single dependency may be met by packages that are " "already installed or it may not be. APT attempts to help resolve dependency " @@ -8726,12 +8726,12 @@ msgstr "" "d'algorithmes automatiques qui simplifient le choix des paquets à installer." #. type: Content of: <book><chapter><title> -#: guide.dbk:111 +#: guide.dbk:112 msgid "apt-get" msgstr "apt-get" #. type: Content of: <book><chapter><para> -#: guide.dbk:113 +#: guide.dbk:114 msgid "" "<command>apt-get</command> provides a simple way to install packages from " "the command line. Unlike <command>dpkg</command>, <command>apt-get</command> " @@ -8745,7 +8745,7 @@ msgstr "" "installer les archives .deb que depuis une <emphasis>Source</emphasis>." #. type: Content of: <book><chapter><para><footnote><para> -#: guide.dbk:119 +#: guide.dbk:120 msgid "" "If you are using an http proxy server you must set the http_proxy " "environment variable first, see sources.list(5)" @@ -8754,7 +8754,7 @@ msgstr "" "positionner la variable d'environnement http_proxy, voir sources.list(5)" #. type: Content of: <book><chapter><para> -#: guide.dbk:119 +#: guide.dbk:120 msgid "" "The first <placeholder type=\"footnote\" id=\"0\"/> thing that should be " "done before using <command>apt-get</command> is to fetch the package lists " @@ -8768,7 +8768,7 @@ msgstr "" "<literal>apt-get update</literal>. Par exemple," #. type: Content of: <book><chapter><screen> -#: guide.dbk:127 +#: guide.dbk:128 #, no-wrap msgid "" "# apt-get update\n" @@ -8784,19 +8784,19 @@ msgstr "" "Construction de l'arbre des dépendances... Fait\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:134 +#: guide.dbk:135 msgid "Once updated there are several commands that can be used:" msgstr "" "Une fois cette mise à jour effectuée, plusieurs commandes peuvent être " "utilisées :" #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:138 +#: guide.dbk:139 msgid "upgrade" msgstr "upgrade" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:141 +#: guide.dbk:142 msgid "" "Upgrade will attempt to gently upgrade the whole system. Upgrade will never " "install a new package or remove an existing package, nor will it ever " @@ -8820,12 +8820,12 @@ msgstr "" "peuvet être utilisés pour forcer l'installation de tels paquets." #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:153 +#: guide.dbk:154 msgid "install" msgstr "install" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:156 +#: guide.dbk:157 msgid "" "Install is used to install packages by name. The package is automatically " "fetched and installed. This can be useful if you already know the name of " @@ -8846,12 +8846,12 @@ msgstr "" "ligne de commande sont nécessaires." #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:167 +#: guide.dbk:168 msgid "dist-upgrade" msgstr "dist-upgrade" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:170 +#: guide.dbk:171 msgid "" "Dist-upgrade is a complete upgrader designed to simplify upgrading between " "releases of Debian. It uses a sophisticated algorithm to determine the best " @@ -8874,7 +8874,7 @@ msgstr "" "côté." #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:180 +#: guide.dbk:181 msgid "" "It is important to closely look at what dist-upgrade is going to do, its " "decisions may sometimes be quite surprising." @@ -8883,7 +8883,7 @@ msgstr "" "décisions peuvent parfois apparaître surprenantes." #. type: Content of: <book><chapter><para> -#: guide.dbk:187 +#: guide.dbk:188 #, fuzzy #| msgid "" #| "<command>apt-get</command> has several command line options that are " @@ -8917,12 +8917,12 @@ msgstr "" "récupérer, sans l'option <literal>-d</literal>." #. type: Content of: <book><chapter><title> -#: guide.dbk:199 +#: guide.dbk:200 msgid "DSelect" msgstr "DSelect" #. type: Content of: <book><chapter><para> -#: guide.dbk:201 +#: guide.dbk:202 msgid "" "The APT <command>dselect</command> method provides the complete APT system " "with the <command>dselect</command> package selection GUI. <command>dselect</" @@ -8936,7 +8936,7 @@ msgstr "" "individuelles d'installation ou suppression." #. type: Content of: <book><chapter><para> -#: guide.dbk:207 +#: guide.dbk:208 msgid "" "To enable the APT method you need to select [A]ccess in <command>dselect</" "command> and then choose the APT method. You will be prompted for a set of " @@ -8961,7 +8961,7 @@ msgstr "" "les télécharger via l'Internet." #. type: Content of: <book><chapter><screen> -#: guide.dbk:218 +#: guide.dbk:219 #, no-wrap msgid "" " Set up a list of distribution source locations\n" @@ -8991,7 +8991,7 @@ msgstr "" " URL [http://llug.sep.bnl.gov/debian]:\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:232 +#: guide.dbk:233 msgid "" "The <emphasis>Sources</emphasis> setup starts by asking for the base of the " "Debian archive, defaulting to a HTTP mirror. Next it asks for the " @@ -9002,7 +9002,7 @@ msgstr "" "est demandée." #. type: Content of: <book><chapter><screen> -#: guide.dbk:237 +#: guide.dbk:238 #, no-wrap msgid "" " Please give the distribution tag to get or a path to the\n" @@ -9019,7 +9019,7 @@ msgstr "" " Distribution [stable] :\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:244 +#: guide.dbk:245 msgid "" "The distribution refers to the Debian version in the archive, " "<emphasis>stable</emphasis> refers to the latest released version and " @@ -9039,7 +9039,7 @@ msgstr "" "cette traduction, 2010, cette notion est totalement obsolète]." #. type: Content of: <book><chapter><screen> -#: guide.dbk:253 +#: guide.dbk:254 #, no-wrap msgid "" " Please give the components to get\n" @@ -9054,7 +9054,7 @@ msgstr "" " Composants [main contrib non-free] :\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:259 +#: guide.dbk:260 msgid "" "The components list refers to the list of sub distributions to fetch. The " "distribution is split up based on software licenses, main being DFSG free " @@ -9069,7 +9069,7 @@ msgstr "" "comprennent des restrictions de distribution ou d'utilisation." #. type: Content of: <book><chapter><para> -#: guide.dbk:265 +#: guide.dbk:266 msgid "" "Any number of sources can be added, the setup script will continue to prompt " "until you have specified all that you want." @@ -9079,7 +9079,7 @@ msgstr "" "le processus est terminé." #. type: Content of: <book><chapter><para> -#: guide.dbk:269 +#: guide.dbk:270 msgid "" "Before starting to use <command>dselect</command> it is necessary to update " "the available list by selecting [U]pdate from the menu. This is a superset " @@ -9095,7 +9095,7 @@ msgstr "" "utilisée sur ce système." #. type: Content of: <book><chapter><para> -#: guide.dbk:276 +#: guide.dbk:277 msgid "" "You can then go on and make your selections using [S]elect and then perform " "the installation using [I]nstall. When using the APT method the [C]onfig and " @@ -9109,7 +9109,7 @@ msgstr "" "fait l'ensemble des opérations." #. type: Content of: <book><chapter><para> -#: guide.dbk:282 +#: guide.dbk:283 msgid "" "By default APT will automatically remove the package (.deb) files once they " "have been successfully installed. To change this behavior place " @@ -9121,12 +9121,12 @@ msgstr "" "\"prompt\";</literal> dans /etc/apt/apt.conf." #. type: Content of: <book><chapter><title> -#: guide.dbk:288 +#: guide.dbk:289 msgid "The Interface" msgstr "L'interface" #. type: Content of: <book><chapter><para><footnote><para> -#: guide.dbk:292 +#: guide.dbk:293 msgid "" "The <command>dselect</command> method actually is a set of wrapper scripts " "to <command>apt-get</command>. The method actually provides more " @@ -9137,7 +9137,7 @@ msgstr "" "supplémentaires à celles d'<command>apt-get</command> utilisé isolément." #. type: Content of: <book><chapter><para> -#: guide.dbk:290 +#: guide.dbk:291 msgid "" "Both that APT <command>dselect</command> method and <command>apt-get</" "command> share the same interface. It is a simple system that generally " @@ -9155,12 +9155,12 @@ msgstr "" "qu'il effectue. " #. type: Content of: <book><chapter><section><title> -#: guide.dbk:301 +#: guide.dbk:302 msgid "Startup" msgstr "Démarrage" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:303 +#: guide.dbk:304 msgid "" "Before all operations except update, APT performs a number of actions to " "prepare its internal state. It also does some checks of the system's state. " @@ -9173,7 +9173,7 @@ msgstr "" "isolément avec la commande <literal>apt-get check</literal>." #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:309 +#: guide.dbk:310 #, no-wrap msgid "" "# apt-get check\n" @@ -9185,7 +9185,7 @@ msgstr "" "Construction de l'arbre des dépendances... Fait\n" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:314 +#: guide.dbk:315 msgid "" "The first thing it does is read all the package files into memory. APT uses " "a caching scheme so this operation will be faster the second time it is run. " @@ -9199,7 +9199,7 @@ msgstr "" "get se terminera." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:320 +#: guide.dbk:321 msgid "" "The final operation performs a detailed analysis of the system's " "dependencies. It checks every dependency of every installed or unpacked " @@ -9212,7 +9212,7 @@ msgstr "" "des opérations ultérieures." #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:326 +#: guide.dbk:327 #, no-wrap msgid "" "# apt-get check\n" @@ -9248,7 +9248,7 @@ msgstr "" " libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1)\n" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:343 +#: guide.dbk:344 msgid "" "In this example the system has many problems, including a serious problem " "with libreadlineg2. For each package that has unmet dependencies a line is " @@ -9262,7 +9262,7 @@ msgstr "" "problème. Une explication simple du problème est donnée." #. type: Content of: <book><chapter><section><para><footnote><para> -#: guide.dbk:352 +#: guide.dbk:353 msgid "" "APT however considers all known dependencies and attempts to prevent broken " "packages" @@ -9271,7 +9271,7 @@ msgstr "" "que cette situation ne se produise" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:350 +#: guide.dbk:351 msgid "" "There are two ways a system can get into a broken state like this. The first " "is caused by <command>dpkg</command> missing some subtle relationships " @@ -9288,7 +9288,7 @@ msgstr "" "être décompressé sans que ses dépendances ne soient satisfaites." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:359 +#: guide.dbk:360 msgid "" "The second situation is much less serious than the first because APT places " "certain constraints on the order that packages are installed. In both cases " @@ -9307,7 +9307,7 @@ msgstr "" "script de mainteneur échoue de manière inopinée." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:368 +#: guide.dbk:369 msgid "" "However, if the <literal>-f</literal> option is used to correct a seriously " "broken system caused by the first case then it is possible that it will " @@ -9324,12 +9324,12 @@ msgstr "" "nouveau APT." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:376 +#: guide.dbk:377 msgid "The Status Report" msgstr "Le rapport d'état" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:378 +#: guide.dbk:379 msgid "" "Before proceeding <command>apt-get</command> will present a report on what " "will happen. Generally the report reflects the type of operation being " @@ -9346,12 +9346,12 @@ msgstr "" "opérations découlant du type de commande utilisée." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:385 +#: guide.dbk:386 msgid "The Extra Package list" msgstr "La liste des paquets supplémentaires" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:387 +#: guide.dbk:388 #, no-wrap msgid "" "The following extra packages will be installed:\n" @@ -9369,7 +9369,7 @@ msgstr "" " ssh\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:395 +#: guide.dbk:396 msgid "" "The Extra Package list shows all of the packages that will be installed or " "upgraded in excess of the ones mentioned on the command line. It is only " @@ -9382,12 +9382,12 @@ msgstr "" "concernés sont le résultat d'une installation automatique." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:402 +#: guide.dbk:403 msgid "The Packages to Remove" msgstr "Les paquets à supprimer" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:404 +#: guide.dbk:405 #, no-wrap msgid "" "The following packages will be REMOVED:\n" @@ -9403,7 +9403,7 @@ msgstr "" " nas xpilot xfig\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:411 +#: guide.dbk:412 msgid "" "The Packages to Remove list shows all of the packages that will be removed " "from the system. It can be shown for any of the operations and should be " @@ -9423,12 +9423,12 @@ msgstr "" "installés, par exemple après l'interruption d'une opération d'installation." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:421 +#: guide.dbk:422 msgid "The New Packages list" msgstr "La liste des nouveaux paquets" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:423 +#: guide.dbk:424 #, no-wrap msgid "" "The following NEW packages will installed:\n" @@ -9438,7 +9438,7 @@ msgstr "" " zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:427 +#: guide.dbk:428 msgid "" "The New Packages list is simply a reminder of what will happen. The packages " "listed are not presently installed in the system but will be when APT is " @@ -9449,12 +9449,12 @@ msgstr "" "mais le seront une fois qu'APT aura terminé." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:432 +#: guide.dbk:433 msgid "The Kept Back list" msgstr "La liste des paquets conservés" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:434 +#: guide.dbk:435 #, no-wrap msgid "" "The following packages have been kept back\n" @@ -9466,7 +9466,7 @@ msgstr "" " gs snmp arena lynx xpat2 groff xscreensaver\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:439 +#: guide.dbk:440 msgid "" "Whenever the whole system is being upgraded there is the possibility that " "new versions of packages cannot be installed because they require new things " @@ -9484,12 +9484,12 @@ msgstr "" "literal> ou avec <command>dselect</command>." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:448 +#: guide.dbk:449 msgid "Held Packages warning" msgstr "L'avertissement pour paquets retenus" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:450 +#: guide.dbk:451 #, no-wrap msgid "" "The following held packages will be changed:\n" @@ -9499,7 +9499,7 @@ msgstr "" " cvs\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:454 +#: guide.dbk:455 msgid "" "Sometimes you can ask APT to install a package that is on hold, in such a " "case it prints out a warning that the held package is going to be changed. " @@ -9511,19 +9511,19 @@ msgstr "" "l'utilisation des commandes dist-upgrade ou install." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:460 +#: guide.dbk:461 msgid "Final summary" msgstr "Résumé final" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:462 +#: guide.dbk:463 msgid "" "Finally, APT will print out a summary of all the changes that will occur." msgstr "" "Enfin, APT affichera un résumé de toutes les opérations qui prendront place." #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:465 +#: guide.dbk:466 #, no-wrap msgid "" "206 packages upgraded, 8 newly installed, 23 to remove and 51 not upgraded.\n" @@ -9535,7 +9535,7 @@ msgstr "" "Il est nécessaire de prendre 65,7Mo/66,7Mo dans les archives. Après cette opération, 26,5Mo d'espace disque supplémentaires seront utilisés.\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:470 +#: guide.dbk:471 msgid "" "The first line of the summary simply is a reduced version of all of the " "lists and includes the number of upgrades - that is packages already " @@ -9567,7 +9567,7 @@ msgstr "" "représenter l'espace qui est alors libéré." #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:484 +#: guide.dbk:485 msgid "" "Some other reports can be generated by using the -u option to show packages " "to upgrade, they are similar to the previous examples." @@ -9576,12 +9576,12 @@ msgstr "" "paquets à mettre à jour. Il sont analogues aux exemples précédents." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:491 +#: guide.dbk:492 msgid "The Status Display" msgstr "L'affichage d'état" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:493 +#: guide.dbk:494 msgid "" "During the download of archives and package files APT prints out a series of " "status messages." @@ -9590,7 +9590,7 @@ msgstr "" "nombre de messages d'avancement." #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:497 +#: guide.dbk:498 #, no-wrap msgid "" "# apt-get update\n" @@ -9610,7 +9610,7 @@ msgstr "" "11% [5 testing/non-free `Attente du fichier' 0/32.1k 0%] 2203b/s 1m52s\n" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:506 +#: guide.dbk:507 msgid "" "The lines starting with <emphasis>Get</emphasis> are printed out when APT " "begins to fetch a file while the last line indicates the progress of the " @@ -9628,7 +9628,7 @@ msgstr "" "ce qui peut conduire à des imprécisions." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:514 +#: guide.dbk:515 msgid "" "The next section of the status line is repeated once for each download " "thread and indicates the operation being performed and some useful " @@ -9649,7 +9649,7 @@ msgstr "" "du nom du paquet en cours de récupération." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:524 +#: guide.dbk:525 msgid "" "Inside of the single quote is an informative string indicating the progress " "of the negotiation phase of the download. Typically it progresses from " @@ -9683,7 +9683,7 @@ msgstr "" "toute ce qui est nécessaire, à la vitesse affichée." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:539 +#: guide.dbk:540 msgid "" "The status display updates every half second to provide a constant feedback " "on the download progress while the Get lines scroll back whenever a new file " @@ -9699,12 +9699,12 @@ msgstr "" "l'option <literal>-q</literal> pour supprimer cet affichage." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:547 +#: guide.dbk:548 msgid "Dpkg" msgstr "Dpkg" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:549 +#: guide.dbk:550 msgid "" "APT uses <command>dpkg</command> for installing the archives and will switch " "over to the <command>dpkg</command> interface once downloading is completed. " @@ -9722,12 +9722,12 @@ msgstr "" "description détaillée soit donnée dans ce document." #. type: Content of: <book><title> -#: offline.dbk:10 +#: offline.dbk:11 msgid "Using APT Offline" msgstr "Utilisation d'APT hors ligne" #. type: Content of: <book><bookinfo><abstract><para> -#: offline.dbk:24 +#: offline.dbk:25 msgid "" "This document describes how to use APT in a non-networked environment, " "specifically a 'sneaker-net' approach for performing upgrades." @@ -9737,24 +9737,24 @@ msgstr "" "à jour." #. type: Content of: <book><bookinfo> -#: offline.dbk:29 +#: offline.dbk:30 msgid "" "<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" msgstr "" "<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" #. type: Content of: <book><chapter><title> -#: offline.dbk:47 +#: offline.dbk:48 msgid "Introduction" msgstr "Introduction" #. type: Content of: <book><chapter><section><title> -#: offline.dbk:49 offline.dbk:79 offline.dbk:191 +#: offline.dbk:50 offline.dbk:80 offline.dbk:192 msgid "Overview" msgstr "Aperçu" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:51 +#: offline.dbk:52 msgid "" "Normally APT requires direct access to a Debian archive, either from a local " "media or through a network. Another common complaint is that a Debian " @@ -9767,7 +9767,7 @@ msgstr "" "une autre possédant une connexion à haut débit mais située à distance." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:57 +#: offline.dbk:58 msgid "" "The solution to this is to use large removable media such as a Zip disc or a " "SuperDisk disc. These discs are not large enough to store the entire Debian " @@ -9793,7 +9793,7 @@ msgstr "" "une connectivité limitée." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:68 +#: offline.dbk:69 msgid "" "This is achieved by creatively manipulating the APT configuration file. The " "essential premise to tell APT to look on a disc for it's archive files. Note " @@ -9807,12 +9807,12 @@ msgstr "" "vfat." #. type: Content of: <book><chapter><title> -#: offline.dbk:77 +#: offline.dbk:78 msgid "Using APT on both machines" msgstr "Utilisation d'APT sur les deux machines" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:81 +#: offline.dbk:82 msgid "" "APT being available on both machines gives the simplest configuration. The " "basic idea is to place a copy of the status file on the disc and use the " @@ -9826,7 +9826,7 @@ msgstr "" "devraient ressembler à :" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:87 +#: offline.dbk:88 #, no-wrap msgid "" " /disc/\n" @@ -9848,12 +9848,12 @@ msgstr "" " apt.conf\n" #. type: Content of: <book><chapter><section><title> -#: offline.dbk:98 +#: offline.dbk:99 msgid "The configuration file" msgstr "Le fichier de configuration" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:100 +#: offline.dbk:101 msgid "" "The configuration file should tell APT to store its files on the disc and to " "use the configuration files on the disc as well. The sources.list should " @@ -9873,7 +9873,7 @@ msgstr "" "fichiers." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:108 +#: offline.dbk:109 msgid "" "<emphasis>apt.conf</emphasis> must contain the necessary information to make " "APT use the disc:" @@ -9882,7 +9882,7 @@ msgstr "" "qu'APT utilise le disque.disc:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:112 +#: offline.dbk:113 #, no-wrap msgid "" " APT\n" @@ -9934,7 +9934,7 @@ msgstr "" " };\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:137 +#: offline.dbk:138 msgid "" "More details can be seen by examining the apt.conf man page and the sample " "configuration file in <emphasis>/usr/share/doc/apt/examples/apt.conf</" @@ -9945,7 +9945,7 @@ msgstr "" "dans <emphasis>/usr/share/doc/apt/examples/apt.conf</emphasis>." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:142 +#: offline.dbk:143 msgid "" "On the target machine the first thing to do is mount the disc and copy " "<emphasis>/var/lib/dpkg/status</emphasis> to it. You will also need to " @@ -9963,7 +9963,7 @@ msgstr "" "commandes suivante :" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:151 +#: offline.dbk:152 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" @@ -9979,7 +9979,7 @@ msgstr "" " [ APT récupère tous les fichiers nécessaires à la mise à jour de la machine distante ]\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:158 +#: offline.dbk:159 msgid "" "The dist-upgrade command can be replaced with any other standard APT " "commands, particularly dselect-upgrade. You can even use an APT front end " @@ -9992,7 +9992,7 @@ msgstr "" "la communication des choix vers l'ordinateur local." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:164 +#: offline.dbk:165 msgid "" "Now the disc contains all of the index files and archives needed to upgrade " "the target machine. Take the disc back and run:" @@ -10002,7 +10002,7 @@ msgstr "" "possible d'y ramener le disque et exécuter :" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:168 +#: offline.dbk:169 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" @@ -10018,7 +10018,7 @@ msgstr "" " [ Ou toute autre commande APT ]\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:175 +#: offline.dbk:176 msgid "" "It is necessary for proper function to re-specify the status file to be the " "local one. This is very important!" @@ -10027,7 +10027,7 @@ msgstr "" "fichier d'état est le fichier local. Cela est très important." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:179 +#: offline.dbk:180 msgid "" "If you are using dselect you can do the very risky operation of copying disc/" "status to /var/lib/dpkg/status so that any selections you made on the remote " @@ -10043,12 +10043,12 @@ msgstr "" "dans l'intervalle." #. type: Content of: <book><chapter><title> -#: offline.dbk:189 +#: offline.dbk:190 msgid "Using APT and wget" msgstr "Utilisation d'APT et wget" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:193 +#: offline.dbk:194 msgid "" "<emphasis>wget</emphasis> is a popular and portable download tool that can " "run on nearly any machine. Unlike the method above this requires that the " @@ -10060,7 +10060,7 @@ msgstr "" "paquets disponibles." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:198 +#: offline.dbk:199 msgid "" "The basic idea is to create a disc that has only the archive files " "downloaded from the remote site. This is done by using the --print-uris " @@ -10073,12 +10073,12 @@ msgstr "" "permettant de récupérer les paquets/" #. type: Content of: <book><chapter><section><title> -#: offline.dbk:204 +#: offline.dbk:205 msgid "Operation" msgstr "Fonctionnement" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:206 +#: offline.dbk:207 msgid "" "Unlike the previous technique no special configuration files are required. " "We merely use the standard APT commands to generate the file list." @@ -10088,7 +10088,7 @@ msgstr "" "utilisées pour créer la liste de ficheirs." #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:210 +#: offline.dbk:211 #, no-wrap msgid "" " # apt-get dist-upgrade\n" @@ -10102,7 +10102,7 @@ msgstr "" " # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:216 +#: offline.dbk:217 msgid "" "Any command other than dist-upgrade could be used here, including dselect-" "upgrade." @@ -10111,7 +10111,7 @@ msgstr "" "upgrade." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:220 +#: offline.dbk:221 msgid "" "The /disc/wget-script file will now contain a list of wget commands to " "execute in order to fetch the necessary archives. This script should be run " @@ -10124,12 +10124,12 @@ msgstr "" "écrits sur le disque." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:226 +#: offline.dbk:227 msgid "The remote machine would do something like" msgstr "Sur la machine distante, il faudra alors exécuter l'équivalent de :" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:229 +#: offline.dbk:230 #, no-wrap msgid "" " # cd /disc\n" @@ -10141,7 +10141,7 @@ msgstr "" " [ attendre.. ]\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:234 +#: offline.dbk:235 msgid "" "Once the archives are downloaded and the disc returned to the Debian machine " "installation can proceed using," @@ -10150,13 +10150,13 @@ msgstr "" "Debian, l'installation peut se poursuivre avec :" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:238 +#: offline.dbk:239 #, no-wrap msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:241 +#: offline.dbk:242 msgid "Which will use the already fetched archives on the disc." msgstr "Cette commande utilisera les fichiers récupérés sur le disque." diff --git a/doc/po/it.po b/doc/po/it.po index e60dd79c1..76d428272 100644 --- a/doc/po/it.po +++ b/doc/po/it.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:52+0200\n" +"POT-Creation-Date: 2014-08-28 00:20+0000\n" "PO-Revision-Date: 2014-07-04 00:45+0200\n" "Last-Translator: Beatrice Torracca <beatricet@libero.it>\n" "Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n" @@ -662,37 +662,37 @@ msgstr "" "473041FA --> <!ENTITY synopsis-keyid \"IDchiave\">" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt.8.xml:25 apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 -#: apt-mark.8.xml:28 apt-secure.8.xml:27 apt-cdrom.8.xml:27 -#: apt-config.8.xml:28 +#: apt.8.xml:21 apt-get.8.xml:22 apt-cache.8.xml:22 apt-key.8.xml:21 +#: apt-mark.8.xml:22 apt-secure.8.xml:21 apt-cdrom.8.xml:21 +#: apt-config.8.xml:22 msgid "8" msgstr "8" #. type: Content of: <refentry><refmeta><refmiscinfo> -#: apt.8.xml:26 apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 -#: apt-mark.8.xml:29 apt-secure.8.xml:28 apt-cdrom.8.xml:28 -#: apt-config.8.xml:29 apt.conf.5.xml:34 apt_preferences.5.xml:28 -#: sources.list.5.xml:29 apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 -#: apt-ftparchive.1.xml:29 +#: apt.8.xml:22 apt-get.8.xml:23 apt-cache.8.xml:23 apt-key.8.xml:22 +#: apt-mark.8.xml:23 apt-secure.8.xml:22 apt-cdrom.8.xml:22 +#: apt-config.8.xml:23 apt.conf.5.xml:28 apt_preferences.5.xml:22 +#: sources.list.5.xml:23 apt-extracttemplates.1.xml:23 apt-sortpkgs.1.xml:23 +#: apt-ftparchive.1.xml:23 msgid "APT" msgstr "APT" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt.8.xml:32 +#: apt.8.xml:28 msgid "command-line interface" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:37 apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 -#: apt-mark.8.xml:40 apt-secure.8.xml:52 apt-cdrom.8.xml:39 -#: apt-config.8.xml:40 apt.conf.5.xml:43 apt_preferences.5.xml:38 -#: sources.list.5.xml:38 apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 -#: apt-ftparchive.1.xml:40 +#: apt.8.xml:33 apt-get.8.xml:34 apt-cache.8.xml:34 apt-key.8.xml:33 +#: apt-mark.8.xml:34 apt-secure.8.xml:46 apt-cdrom.8.xml:33 +#: apt-config.8.xml:34 apt.conf.5.xml:37 apt_preferences.5.xml:32 +#: sources.list.5.xml:32 apt-extracttemplates.1.xml:34 apt-sortpkgs.1.xml:34 +#: apt-ftparchive.1.xml:34 msgid "Description" msgstr "Descrizione" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:38 +#: apt.8.xml:34 msgid "" "<command>apt</command> (Advanced Package Tool) is the command-line tool for " "handling packages. It provides a commandline interface for the package " @@ -701,7 +701,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:47 +#: apt.8.xml:43 msgid "" "<literal>list</literal> is used to display a list of packages. It supports " "shell pattern for matching package names and the following options: " @@ -710,14 +710,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:58 +#: apt.8.xml:54 msgid "" "<literal>search</literal> searches for the given term(s) and display " "matching packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:64 +#: apt.8.xml:60 #, fuzzy #| msgid "" #| "<literal>rdepends</literal> shows a listing of each reverse dependency a " @@ -730,14 +730,14 @@ msgstr "" "di un pacchetto." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:71 +#: apt.8.xml:67 msgid "" "<literal>install</literal> is followed by one or more package names desired " "for installation or upgrading." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:75 apt-get.8.xml:118 +#: apt.8.xml:71 apt-get.8.xml:112 msgid "" "A specific version of a package can be selected for installation by " "following the package name with an equals and the version of the package to " @@ -755,7 +755,7 @@ msgstr "" "(stable, testing, unstable)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:85 apt-get.8.xml:153 +#: apt.8.xml:81 apt-get.8.xml:147 msgid "" "<literal>remove</literal> is identical to <literal>install</literal> except " "that packages are removed instead of installed. Note that removing a package " @@ -770,14 +770,14 @@ msgstr "" "in mezzo), il pacchetto specificato viene installato invece che rimosso." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:93 +#: apt.8.xml:89 msgid "" "<literal>edit-sources</literal> lets you edit your sources.list file and " "provides basic sanity checks." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:99 +#: apt.8.xml:95 #, fuzzy #| msgid "" #| "<literal>showhold</literal> is used to print a list of packages on hold " @@ -790,16 +790,16 @@ msgstr "" "bloccati in modo uguale a ciò che fanno gli altri comandi «show»." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:105 +#: apt.8.xml:101 msgid "" "<literal>upgrade</literal> is used to install the newest versions of all " "packages currently installed on the system from the sources enumerated in " -"<filename>/etc/apt/sources.list</filename>. New package will be installed, " -"but existing package will never removed." +"<filename>/etc/apt/sources.list</filename>. New packages will be installed, " +"but existing packages will never be removed." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:114 +#: apt.8.xml:110 msgid "" "<literal>full-upgrade</literal> performs the function of upgrade but may " "also remove installed packages if that is required in order to resolve a " @@ -807,19 +807,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:124 apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 -#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 -#: apt-ftparchive.1.xml:506 +#: apt.8.xml:120 apt-get.8.xml:251 apt-cache.8.xml:244 apt-mark.8.xml:104 +#: apt-config.8.xml:80 apt-extracttemplates.1.xml:48 apt-sortpkgs.1.xml:44 +#: apt-ftparchive.1.xml:500 msgid "options" msgstr "opzioni" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:134 +#: apt.8.xml:130 msgid "Script usage" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:136 +#: apt.8.xml:132 msgid "" "The &apt; commandline is designed as a end-user tool and it may change the " "output between versions. While it tries to not break backward compatibility " @@ -829,12 +829,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:144 +#: apt.8.xml:140 msgid "Differences to &apt-get;" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:145 +#: apt.8.xml:141 msgid "" "The <command>apt</command> command is meant to be pleasant for end users and " "does not need to be backward compatible like &apt-get;. Therefore some " @@ -842,28 +842,28 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:151 +#: apt.8.xml:147 #, fuzzy #| msgid "the <literal>Package:</literal> line" msgid "The option <literal>DPkg::Progress-Fancy</literal> is enabled." msgstr "la riga <literal>Package:</literal>" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:155 +#: apt.8.xml:151 #, fuzzy #| msgid "the <literal>Component:</literal> line" msgid "The option <literal>APT::Color</literal> is enabled." msgstr "la riga<literal>Component:</literal>" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:159 +#: apt.8.xml:155 msgid "" "A new <literal>list</literal> command is available similar to <literal>dpkg " "--list</literal>." msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:164 +#: apt.8.xml:160 #, fuzzy #| msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" msgid "" @@ -872,16 +872,16 @@ msgid "" msgstr "la riga <literal>Archive:</literal> o <literal>Suite:</literal>" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 -#: apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 -#: apt-config.8.xml:111 apt.conf.5.xml:1228 apt_preferences.5.xml:707 -#: sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 -#: apt-ftparchive.1.xml:609 +#: apt.8.xml:170 apt-get.8.xml:552 apt-cache.8.xml:346 apt-key.8.xml:191 +#: apt-mark.8.xml:127 apt-secure.8.xml:187 apt-cdrom.8.xml:148 +#: apt-config.8.xml:105 apt.conf.5.xml:1222 apt_preferences.5.xml:701 +#: sources.list.5.xml:274 apt-extracttemplates.1.xml:66 apt-sortpkgs.1.xml:59 +#: apt-ftparchive.1.xml:603 msgid "See Also" msgstr "Vedere anche" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:175 +#: apt.8.xml:171 #, fuzzy #| msgid "" #| "&apt-cache;, &apt-cdrom;, &dpkg;, &sources-list;, &apt-conf;, &apt-" @@ -896,14 +896,14 @@ msgstr "" "l'APT Howto." #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:180 apt-get.8.xml:564 apt-cache.8.xml:357 apt-mark.8.xml:137 -#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 -#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 +#: apt.8.xml:176 apt-get.8.xml:558 apt-cache.8.xml:351 apt-mark.8.xml:131 +#: apt-cdrom.8.xml:153 apt-config.8.xml:110 apt-extracttemplates.1.xml:70 +#: apt-sortpkgs.1.xml:63 apt-ftparchive.1.xml:607 msgid "Diagnostics" msgstr "Diagnostica" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:181 +#: apt.8.xml:177 #, fuzzy #| msgid "" #| "<command>apt-get</command> returns zero on normal operation, decimal 100 " @@ -916,13 +916,13 @@ msgstr "" "e il valore decimale 100 in caso di errore." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-get.8.xml:35 +#: apt-get.8.xml:29 msgid "APT package handling utility -- command-line interface" msgstr "" "strumento APT per la gestione dei pacchetti, interfaccia a riga di comando" #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:41 +#: apt-get.8.xml:35 msgid "" "<command>apt-get</command> is the command-line tool for handling packages, " "and may be considered the user's \"back-end\" to other tools using the APT " @@ -935,8 +935,8 @@ msgstr "" "interfaccia, come &aptitude;, &synaptic; e &wajig;." #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:46 apt-cache.8.xml:46 apt-cdrom.8.xml:53 apt-config.8.xml:46 -#: apt-ftparchive.1.xml:56 +#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-cdrom.8.xml:47 apt-config.8.xml:40 +#: apt-ftparchive.1.xml:50 msgid "" "Unless the <option>-h</option>, or <option>--help</option> option is given, " "one of the commands below must be present." @@ -945,7 +945,7 @@ msgstr "" "option>, deve essere presente uno dei comandi seguenti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:51 +#: apt-get.8.xml:45 msgid "" "<literal>update</literal> is used to resynchronize the package index files " "from their sources. The indexes of available packages are fetched from the " @@ -969,7 +969,7 @@ msgstr "" "conoscere in anticipo la dimensione dei file degli indici dei pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:63 +#: apt-get.8.xml:57 msgid "" "<literal>upgrade</literal> is used to install the newest versions of all " "packages currently installed on the system from the sources enumerated in " @@ -995,7 +995,7 @@ msgstr "" "command> sappia se sono disponibili nuove versioni dei pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:76 +#: apt-get.8.xml:70 msgid "" "<literal>dist-upgrade</literal> in addition to performing the function of " "<literal>upgrade</literal>, also intelligently handles changing dependencies " @@ -1020,7 +1020,7 @@ msgstr "" "scavalcare le impostazioni generali per singoli pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:89 +#: apt-get.8.xml:83 msgid "" "<literal>dselect-upgrade</literal> is used in conjunction with the " "traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</" @@ -1037,7 +1037,7 @@ msgstr "" "l'installazione di nuovi)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:100 +#: apt-get.8.xml:94 msgid "" "<literal>install</literal> is followed by one or more packages desired for " "installation or upgrading. Each package is a package name, not a fully " @@ -1067,7 +1067,7 @@ msgstr "" "conflitti di apt-get." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:125 +#: apt-get.8.xml:119 msgid "" "Both of the version selection mechanisms can downgrade packages and must be " "used with care." @@ -1076,7 +1076,7 @@ msgstr "" "pacchetti e devono essere usati con cautela." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:128 +#: apt-get.8.xml:122 msgid "" "This is also the target to use if you want to upgrade one or more already-" "installed packages without upgrading every package you have on your system. " @@ -1096,7 +1096,7 @@ msgstr "" "installata." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:139 +#: apt-get.8.xml:133 msgid "" "Finally, the &apt-preferences; mechanism allows you to create an alternative " "installation policy for individual packages." @@ -1105,7 +1105,7 @@ msgstr "" "di installazione alternativa per i singoli pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:143 +#: apt-get.8.xml:137 msgid "" "If no package matches the given expression and the expression contains one " "of '.', '?' or '*' then it is assumed to be a POSIX regular expression, and " @@ -1125,7 +1125,7 @@ msgstr "" "o «$», oppure creare un'espressione regolare più specifica." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:161 +#: apt-get.8.xml:155 msgid "" "<literal>purge</literal> is identical to <literal>remove</literal> except " "that packages are removed and purged (any configuration files are deleted " @@ -1136,7 +1136,7 @@ msgstr "" "eliminato anche ogni file di configurazione)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:166 +#: apt-get.8.xml:160 msgid "" "<literal>source</literal> causes <command>apt-get</command> to fetch source " "packages. APT will examine the available packages to decide which source " @@ -1155,7 +1155,7 @@ msgstr "" "i singoli pacchetti con la sintassi <literal>pacch/rilascio</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:174 +#: apt-get.8.xml:168 msgid "" "Source packages are tracked separately from binary packages via <literal>deb-" "src</literal> lines in the &sources-list; file. This means that you will " @@ -1171,7 +1171,7 @@ msgstr "" "(troppo vecchia o troppo nuova) oppure nessuna versione." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:180 +#: apt-get.8.xml:174 msgid "" "If the <option>--compile</option> option is specified then the package will " "be compiled to a binary .deb using <command>dpkg-buildpackage</command> for " @@ -1186,7 +1186,7 @@ msgstr "" "download-only</option>, allora il pacchetto sorgente non verrà spacchettato." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:187 +#: apt-get.8.xml:181 msgid "" "A specific source version can be retrieved by postfixing the source name " "with an equals and then the version to fetch, similar to the mechanism used " @@ -1201,7 +1201,7 @@ msgstr "" "abilitando implicitamente l'opzione <literal>APT::Get::Only-Source</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:193 +#: apt-get.8.xml:187 msgid "" "Note that source packages are not installed and tracked in the " "<command>dpkg</command> database like binary packages; they are simply " @@ -1213,7 +1213,7 @@ msgstr "" "tar dei sorgenti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:199 +#: apt-get.8.xml:193 msgid "" "<literal>build-dep</literal> causes apt-get to install/remove packages in an " "attempt to satisfy the build dependencies for a source package. By default " @@ -1229,7 +1229,7 @@ msgstr "" "architecture</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:206 +#: apt-get.8.xml:200 msgid "" "<literal>check</literal> is a diagnostic tool; it updates the package cache " "and checks for broken dependencies." @@ -1238,7 +1238,7 @@ msgstr "" "pacchetti e controlla la presenza di dipendenze non soddisfatte." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:211 +#: apt-get.8.xml:205 msgid "" "<literal>download</literal> will download the given binary package into the " "current directory." @@ -1247,7 +1247,7 @@ msgstr "" "directory corrente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:217 +#: apt-get.8.xml:211 msgid "" "<literal>clean</literal> clears out the local repository of retrieved " "package files. It removes everything but the lock file from " @@ -1260,7 +1260,7 @@ msgstr "" "file di lock." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:224 +#: apt-get.8.xml:218 msgid "" "Like <literal>clean</literal>, <literal>autoclean</literal> clears out the " "local repository of retrieved package files. The difference is that it only " @@ -1279,7 +1279,7 @@ msgstr "" "impedisce che vengano eliminati i pacchetti installati." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:234 +#: apt-get.8.xml:228 msgid "" "<literal>autoremove</literal> is used to remove packages that were " "automatically installed to satisfy dependencies for other packages and are " @@ -1290,7 +1290,7 @@ msgstr "" "pacchetti e che non sono più necessari." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:239 +#: apt-get.8.xml:233 msgid "" "<literal>changelog</literal> downloads a package changelog and displays it " "through <command>sensible-pager</command>. The server name and base " @@ -1313,7 +1313,7 @@ msgstr "" "opzioni del comando <option>install</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:262 +#: apt-get.8.xml:256 msgid "" "Do not consider recommended packages as a dependency for installing. " "Configuration Item: <literal>APT::Install-Recommends</literal>." @@ -1323,7 +1323,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:267 +#: apt-get.8.xml:261 msgid "" "Consider suggested packages as a dependency for installing. Configuration " "Item: <literal>APT::Install-Suggests</literal>." @@ -1332,7 +1332,7 @@ msgstr "" "Voce di configurazione:<literal>APT::Install-Suggests</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:272 +#: apt-get.8.xml:266 msgid "" "Download only; package files are only retrieved, not unpacked or installed. " "Configuration Item: <literal>APT::Get::Download-Only</literal>." @@ -1342,7 +1342,7 @@ msgstr "" "Download-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:277 +#: apt-get.8.xml:271 msgid "" "Fix; attempt to correct a system with broken dependencies in place. This " "option, when used with install/remove, can omit any packages to permit APT " @@ -1370,7 +1370,7 @@ msgstr "" "configurazione: <literal>APT::Get::Fix-Broken</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:292 +#: apt-get.8.xml:286 msgid "" "Ignore missing packages; if packages cannot be retrieved or fail the " "integrity check after retrieval (corrupted package files), hold back those " @@ -1390,7 +1390,7 @@ msgstr "" "configurazione: <literal>APT::Get::Fix-Missing</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:303 +#: apt-get.8.xml:297 msgid "" "Disables downloading of packages. This is best used with <option>--ignore-" "missing</option> to force APT to use only the .debs it has already " @@ -1401,7 +1401,7 @@ msgstr "" "scaricato. Voce di configurazione: <literal>APT::Get::Download</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:310 +#: apt-get.8.xml:304 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quiet up to a maximum of 2. You can also use " @@ -1421,7 +1421,7 @@ msgstr "" "qualcosa di inatteso. Voce di configurazione: <literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:325 +#: apt-get.8.xml:319 msgid "" "No action; perform a simulation of events that would occur but do not " "actually change the system. Configuration Item: <literal>APT::Get::" @@ -1432,7 +1432,7 @@ msgstr "" "configurazione: <literal>APT::Get::Simulate</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:329 +#: apt-get.8.xml:323 msgid "" "Simulated runs performed as a user will automatically deactivate locking " "(<literal>Debug::NoLocking</literal>), and if the option <literal>APT::Get::" @@ -1451,7 +1451,7 @@ msgstr "" "bisogno di ulteriori avvertimenti da <literal>apt-get</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:337 +#: apt-get.8.xml:331 msgid "" "Simulated runs print out a series of lines, each representing a " "<command>dpkg</command> operation: configure (<literal>Conf</literal>), " @@ -1467,7 +1467,7 @@ msgstr "" "hanno conseguenze (rari)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:345 +#: apt-get.8.xml:339 msgid "" "Automatic yes to prompts; assume \"yes\" as answer to all prompts and run " "non-interactively. If an undesirable situation, such as changing a held " @@ -1484,7 +1484,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:353 +#: apt-get.8.xml:347 msgid "" "Automatic \"no\" to all prompts. Configuration Item: <literal>APT::Get::" "Assume-No</literal>." @@ -1493,7 +1493,7 @@ msgstr "" "<literal>APT::Get::Assume-No</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:358 +#: apt-get.8.xml:352 msgid "" "Show upgraded packages; print out a list of all packages that are to be " "upgraded. Configuration Item: <literal>APT::Get::Show-Upgraded</literal>." @@ -1503,7 +1503,7 @@ msgstr "" "Upgraded</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:364 +#: apt-get.8.xml:358 msgid "" "Show full versions for upgraded and installed packages. Configuration Item: " "<literal>APT::Get::Show-Versions</literal>." @@ -1512,7 +1512,7 @@ msgstr "" "configurazione: <literal>APT::Get::Show-Versions</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:370 +#: apt-get.8.xml:364 msgid "" "This option controls the architecture packages are built for by <command>apt-" "get source --compile</command> and how cross-builddependencies are " @@ -1529,7 +1529,7 @@ msgstr "" "di configurazione: <literal>APT::Get::Host-Architecture</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:380 +#: apt-get.8.xml:374 msgid "" "This option controls the activated build profiles for which a source package " "is built by <command>apt-get source --compile</command> and how build " @@ -1545,7 +1545,7 @@ msgstr "" "configurazione: <literal>APT::Build-Profiles</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:391 +#: apt-get.8.xml:385 msgid "" "Compile source packages after downloading them. Configuration Item: " "<literal>APT::Get::Compile</literal>." @@ -1554,7 +1554,7 @@ msgstr "" "<literal>APT::Get::Compile</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:396 +#: apt-get.8.xml:390 msgid "" "Ignore package holds; this causes <command>apt-get</command> to ignore a " "hold placed on a package. This may be useful in conjunction with " @@ -1567,7 +1567,7 @@ msgstr "" "non desiderati. Voce di configurazione: <literal>APT::Ignore-Hold</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:403 +#: apt-get.8.xml:397 msgid "" "Allow installing new packages when used in conjunction with " "<literal>upgrade</literal>. This is useful if the update of a installed " @@ -1586,7 +1586,7 @@ msgstr "" "Voce di configurazione: <literal>APT::Get::Upgrade-Allow-New</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:415 +#: apt-get.8.xml:409 msgid "" "Do not upgrade packages; when used in conjunction with <literal>install</" "literal>, <literal>no-upgrade</literal> will prevent packages on the command " @@ -1599,7 +1599,7 @@ msgstr "" "configurazione: <literal>APT::Get::Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:422 +#: apt-get.8.xml:416 msgid "" "Do not install new packages; when used in conjunction with <literal>install</" "literal>, <literal>only-upgrade</literal> will install upgrades for already " @@ -1613,7 +1613,7 @@ msgstr "" "Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:430 +#: apt-get.8.xml:424 msgid "" "Force yes; this is a dangerous option that will cause apt to continue " "without prompting if it is doing something potentially harmful. It should " @@ -1629,7 +1629,7 @@ msgstr "" "yes</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:438 +#: apt-get.8.xml:432 msgid "" "Instead of fetching the files to install their URIs are printed. Each URI " "will have the path, the destination file name, the size and the expected MD5 " @@ -1650,7 +1650,7 @@ msgstr "" "configurazione: <literal>APT::Get::Print-URIs</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:449 +#: apt-get.8.xml:443 msgid "" "Use purge instead of remove for anything that would be removed. An asterisk " "(\"*\") will be displayed next to packages which are scheduled to be purged. " @@ -1663,7 +1663,7 @@ msgstr "" "option>. Voce di configurazione: <literal>APT::Get::Purge</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:457 +#: apt-get.8.xml:451 msgid "" "Re-install packages that are already installed and at the newest version. " "Configuration Item: <literal>APT::Get::ReInstall</literal>." @@ -1672,7 +1672,7 @@ msgstr "" "configurazione: <literal>APT::Get::ReInstall</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:462 +#: apt-get.8.xml:456 msgid "" "This option is on by default; use <literal>--no-list-cleanup</literal> to " "turn it off. When it is on, <command>apt-get</command> will automatically " @@ -1689,7 +1689,7 @@ msgstr "" "fonti. Voce di configurazione: <literal>APT::Get::List-Cleanup</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:472 +#: apt-get.8.xml:466 msgid "" "This option controls the default input to the policy engine; it creates a " "default pin at priority 990 using the specified release string. This " @@ -1713,7 +1713,7 @@ msgstr "" "pagina di manuale di &apt-preferences;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:487 +#: apt-get.8.xml:481 msgid "" "Only perform operations that are 'trivial'. Logically this can be considered " "related to <option>--assume-yes</option>; where <option>--assume-yes</" @@ -1727,7 +1727,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:494 +#: apt-get.8.xml:488 msgid "" "If any packages are to be removed apt-get immediately aborts without " "prompting. Configuration Item: <literal>APT::Get::Remove</literal>." @@ -1737,7 +1737,7 @@ msgstr "" "Get::Remove</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:500 +#: apt-get.8.xml:494 msgid "" "If the command is either <literal>install</literal> or <literal>remove</" "literal>, then this option acts like running the <literal>autoremove</" @@ -1751,7 +1751,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:507 +#: apt-get.8.xml:501 msgid "" "Only has meaning for the <literal>source</literal> and <literal>build-dep</" "literal> commands. Indicates that the given source names are not to be " @@ -1770,7 +1770,7 @@ msgstr "" "configurazione: <literal>APT::Get::Only-Source</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:518 +#: apt-get.8.xml:512 msgid "" "Download only the diff, dsc, or tar file of a source archive. Configuration " "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</" @@ -1781,7 +1781,7 @@ msgstr "" "Dsc-Only</literal> e <literal>APT::Get::Tar-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:524 +#: apt-get.8.xml:518 msgid "" "Only process architecture-dependent build-dependencies. Configuration Item: " "<literal>APT::Get::Arch-Only</literal>." @@ -1790,7 +1790,7 @@ msgstr "" "Voce di configurazione: <literal>APT::Get::Arch-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:529 +#: apt-get.8.xml:523 msgid "" "Ignore if packages can't be authenticated and don't prompt about it. This " "is useful for tools like pbuilder. Configuration Item: <literal>APT::Get::" @@ -1801,7 +1801,7 @@ msgstr "" "configurazione: <literal>APT::Get::AllowUnauthenticated</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:535 +#: apt-get.8.xml:529 #, fuzzy #| msgid "" #| "Show user friendly progress information in the terminal window when " @@ -1824,13 +1824,13 @@ msgstr "" "Progress-Fancy</literal>." #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 -#: apt.conf.5.xml:1222 apt_preferences.5.xml:700 +#: apt-get.8.xml:542 apt-cache.8.xml:339 apt-key.8.xml:170 apt-mark.8.xml:121 +#: apt.conf.5.xml:1216 apt_preferences.5.xml:694 msgid "Files" msgstr "File" #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:559 +#: apt-get.8.xml:553 msgid "" "&apt-cache;, &apt-cdrom;, &dpkg;, &sources-list;, &apt-conf;, &apt-config;, " "&apt-secure;, The APT User's guide in &guidesdir;, &apt-preferences;, the " @@ -1841,7 +1841,7 @@ msgstr "" "l'APT Howto." #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:565 +#: apt-get.8.xml:559 msgid "" "<command>apt-get</command> returns zero on normal operation, decimal 100 on " "error." @@ -1850,12 +1850,12 @@ msgstr "" "e il valore decimale 100 in caso di errore." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-cache.8.xml:35 +#: apt-cache.8.xml:29 msgid "query the APT cache" msgstr "interroga la cache di APT" #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:41 +#: apt-cache.8.xml:35 msgid "" "<command>apt-cache</command> performs a variety of operations on APT's " "package cache. <command>apt-cache</command> does not manipulate the state of " @@ -1868,7 +1868,7 @@ msgstr "" "interessanti partendo dai metadati dei pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:51 +#: apt-cache.8.xml:45 msgid "" "<literal>gencaches</literal> creates APT's package cache. This is done " "implicitly by all commands needing this cache if it is missing or outdated." @@ -1878,14 +1878,14 @@ msgstr "" "essa manca o non è aggiornata." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-cache.8.xml:55 apt-cache.8.xml:144 apt-cache.8.xml:165 -#: apt-cache.8.xml:187 apt-cache.8.xml:192 apt-cache.8.xml:208 -#: apt-cache.8.xml:226 apt-cache.8.xml:238 +#: apt-cache.8.xml:49 apt-cache.8.xml:138 apt-cache.8.xml:159 +#: apt-cache.8.xml:181 apt-cache.8.xml:186 apt-cache.8.xml:202 +#: apt-cache.8.xml:220 apt-cache.8.xml:232 msgid "&synopsis-pkg;" msgstr "&synopsis-pkg;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:56 +#: apt-cache.8.xml:50 msgid "" "<literal>showpkg</literal> displays information about the packages listed on " "the command line. Remaining arguments are package names. The available " @@ -1908,7 +1908,7 @@ msgstr "" "showpkg libreadline2</command> produce un risultato simile al seguente:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> -#: apt-cache.8.xml:68 +#: apt-cache.8.xml:62 #, no-wrap msgid "" "Package: libreadline2\n" @@ -1934,7 +1934,7 @@ msgstr "" "Reverse Provides: \n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:80 +#: apt-cache.8.xml:74 msgid "" "Thus it may be seen that libreadline2, version 2.1-12, depends on libc5 and " "ncurses3.0 which must be installed for libreadline2 to work. In turn, " @@ -1953,7 +1953,7 @@ msgstr "" "consultare il codice sorgente di apt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:89 +#: apt-cache.8.xml:83 msgid "" "<literal>stats</literal> displays some statistics about the cache. No " "further arguments are expected. Statistics reported are:" @@ -1962,7 +1962,7 @@ msgstr "" "previsti ulteriori argomenti. Le statistiche riportate sono:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:92 +#: apt-cache.8.xml:86 msgid "" "<literal>Total package names</literal> is the number of package names found " "in the cache." @@ -1971,7 +1971,7 @@ msgstr "" "pacchetto trovati nella cache." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:96 +#: apt-cache.8.xml:90 msgid "" "<literal>Normal packages</literal> is the number of regular, ordinary " "package names; these are packages that bear a one-to-one correspondence " @@ -1984,7 +1984,7 @@ msgstr "" "dipendenze. La maggioranza dei pacchetti ricade in questa categoria." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:102 +#: apt-cache.8.xml:96 msgid "" "<literal>Pure virtual packages</literal> is the number of packages that " "exist only as a virtual package name; that is, packages only \"provide\" the " @@ -2001,7 +2001,7 @@ msgstr "" "agent», ma non c'è alcun pacchetto chiamato «mail-transport-agent»." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:110 +#: apt-cache.8.xml:104 msgid "" "<literal>Single virtual packages</literal> is the number of packages with " "only one package providing a particular virtual package. For example, in the " @@ -2014,7 +2014,7 @@ msgstr "" "pacchetto, xless, fornisce «X11-text-viewer»." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:116 +#: apt-cache.8.xml:110 msgid "" "<literal>Mixed virtual packages</literal> is the number of packages that " "either provide a particular virtual package or have the virtual package name " @@ -2027,7 +2027,7 @@ msgstr "" "sia un pacchetto vero e proprio, sia è fornito dal pacchetto debconf-tiny." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:123 +#: apt-cache.8.xml:117 msgid "" "<literal>Missing</literal> is the number of package names that were " "referenced in a dependency but were not provided by any package. Missing " @@ -2043,7 +2043,7 @@ msgstr "" "Conflicts o Breaks." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:130 +#: apt-cache.8.xml:124 msgid "" "<literal>Total distinct</literal> versions is the number of package versions " "found in the cache; this value is therefore at least equal to the number of " @@ -2058,7 +2058,7 @@ msgstr "" "essere decisamente più grande del numero dei nomi totali di pacchetto." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:137 +#: apt-cache.8.xml:131 msgid "" "<literal>Total dependencies</literal> is the number of dependency " "relationships claimed by all of the packages in the cache." @@ -2067,7 +2067,7 @@ msgstr "" "dichiarate da tutti i pacchetti nella cache." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:145 +#: apt-cache.8.xml:139 msgid "" "<literal>showsrc</literal> displays all the source package records that " "match the given package names. All versions are shown, as well as all " @@ -2079,7 +2079,7 @@ msgstr "" "pacchetto binario." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:151 +#: apt-cache.8.xml:145 msgid "" "<literal>dump</literal> shows a short listing of every package in the cache. " "It is primarily for debugging." @@ -2088,7 +2088,7 @@ msgstr "" "cache. Serve soprattutto a scopo di debug." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:156 +#: apt-cache.8.xml:150 msgid "" "<literal>dumpavail</literal> prints out an available list to stdout. This is " "suitable for use with &dpkg; and is used by the &dselect; method." @@ -2097,7 +2097,7 @@ msgstr "" "stdout. Questa è adatta all'uso con &dpkg; ed è usata dal metodo &dselect;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:161 +#: apt-cache.8.xml:155 msgid "" "<literal>unmet</literal> displays a summary of all unmet dependencies in the " "package cache." @@ -2106,7 +2106,7 @@ msgstr "" "soddisfatte nella cache dei pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:166 +#: apt-cache.8.xml:160 msgid "" "<literal>show</literal> performs a function similar to <command>dpkg --print-" "avail</command>; it displays the package records for the named packages." @@ -2115,12 +2115,12 @@ msgstr "" "avail</command>; mostra i record dei pacchetti per i pacchetti specificati." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-cache.8.xml:171 +#: apt-cache.8.xml:165 msgid "&synopsis-regex;" msgstr "&synopsis-regex;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:172 +#: apt-cache.8.xml:166 msgid "" "<literal>search</literal> performs a full text search on all available " "package lists for the POSIX regex pattern given, see ®ex;. It searches " @@ -2143,7 +2143,7 @@ msgstr "" "descrizione lunga." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:183 +#: apt-cache.8.xml:177 msgid "" "Separate arguments can be used to specify multiple search patterns that are " "and'ed together." @@ -2152,7 +2152,7 @@ msgstr "" "che vengono combinati con un AND." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:188 +#: apt-cache.8.xml:182 msgid "" "<literal>depends</literal> shows a listing of each dependency a package has " "and all the possible other packages that can fulfill that dependency." @@ -2162,7 +2162,7 @@ msgstr "" "dipendenza." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:193 +#: apt-cache.8.xml:187 msgid "" "<literal>rdepends</literal> shows a listing of each reverse dependency a " "package has." @@ -2171,12 +2171,12 @@ msgstr "" "di un pacchetto." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:197 +#: apt-cache.8.xml:191 msgid "<optional><replaceable>&synopsis-prefix;</replaceable></optional>" msgstr "<optional><replaceable>&synopsis-prefix;</replaceable></optional>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:198 +#: apt-cache.8.xml:192 msgid "" "This command prints the name of each package APT knows. The optional " "argument is a prefix match to filter the name list. The output is suitable " @@ -2191,7 +2191,7 @@ msgstr "" "viene usato al meglio con l'opzione <option>--generate</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:203 +#: apt-cache.8.xml:197 msgid "" "Note that a package which APT knows of is not necessarily available to " "download, installable or installed, e.g. virtual packages are also listed in " @@ -2202,7 +2202,7 @@ msgstr "" "virtuali sono anch'essi compresi nell'elenco generato." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:209 +#: apt-cache.8.xml:203 msgid "" "<literal>dotty</literal> takes a list of packages on the command line and " "generates output suitable for use by dotty from the <ulink url=\"http://www." @@ -2224,7 +2224,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:218 +#: apt-cache.8.xml:212 msgid "" "The resulting nodes will have several shapes; normal packages are boxes, " "pure virtual packages are triangles, mixed virtual packages are diamonds, " @@ -2238,14 +2238,14 @@ msgstr "" "blu sono pre-dipendenze, le linee verdi sono conflitti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:223 +#: apt-cache.8.xml:217 msgid "Caution, dotty cannot graph larger sets of packages." msgstr "" "Attenzione: dotty non può creare i grafi degli insiemi più grandi di " "pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:227 +#: apt-cache.8.xml:221 msgid "" "The same as <literal>dotty</literal>, only for xvcg from the <ulink url=" "\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG tool</ulink>." @@ -2255,12 +2255,12 @@ msgstr "" "ulink>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:231 +#: apt-cache.8.xml:225 msgid "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>" msgstr "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:232 +#: apt-cache.8.xml:226 msgid "" "<literal>policy</literal> is meant to help debug issues relating to the " "preferences file. With no arguments it will print out the priorities of each " @@ -2273,7 +2273,7 @@ msgstr "" "di priorità del pacchetto indicato." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:239 +#: apt-cache.8.xml:233 msgid "" "<literal>apt-cache</literal>'s <literal>madison</literal> command attempts " "to mimic the output format and a subset of the functionality of the Debian " @@ -2292,7 +2292,7 @@ msgstr "" "elenchi dei pacchetti (<literal>APT::Architecture</literal>)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:255 +#: apt-cache.8.xml:249 msgid "" "Select the file to store the package cache. The package cache is the primary " "cache used by all operations. Configuration Item: <literal>Dir::Cache::" @@ -2303,7 +2303,7 @@ msgstr "" "<literal>Dir::Cache::pkgcache</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:261 +#: apt-cache.8.xml:255 msgid "" "Select the file to store the source cache. The source is used only by " "<literal>gencaches</literal> and it stores a parsed version of the package " @@ -2319,7 +2319,7 @@ msgstr "" "configurazione: <literal>Dir::Cache::srcpkgcache</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:269 +#: apt-cache.8.xml:263 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quietness up to a maximum of 2. You can also use " @@ -2333,7 +2333,7 @@ msgstr "" "configurazione. Voce di configurazione: <literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:276 +#: apt-cache.8.xml:270 msgid "" "Print only important dependencies; for use with <literal>unmet</literal> and " "<literal>depends</literal>. Causes only Depends and Pre-Depends relations to " @@ -2345,7 +2345,7 @@ msgstr "" "Important</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:290 +#: apt-cache.8.xml:284 msgid "" "Per default the <literal>depends</literal> and <literal>rdepends</literal> " "print all dependencies. This can be tweaked with these flags which will omit " @@ -2360,7 +2360,7 @@ msgstr "" "literal>, ad es. <literal>APT::Cache::ShowRecommends</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:297 +#: apt-cache.8.xml:291 msgid "" "Print full package records when searching. Configuration Item: " "<literal>APT::Cache::ShowFull</literal>." @@ -2369,7 +2369,7 @@ msgstr "" "configurazione: <literal>APT::Cache::ShowFull</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:302 +#: apt-cache.8.xml:296 msgid "" "Print full records for all available versions. This is the default; to turn " "it off, use <option>--no-all-versions</option>. If <option>--no-all-" @@ -2387,7 +2387,7 @@ msgstr "" "AllVersions</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:311 +#: apt-cache.8.xml:305 msgid "" "Perform automatic package cache regeneration, rather than use the cache as " "it is. This is the default; to turn it off, use <option>--no-generate</" @@ -2399,7 +2399,7 @@ msgstr "" "<literal>APT::Cache::Generate</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:317 +#: apt-cache.8.xml:311 msgid "" "Only search on the package names, not the long descriptions. Configuration " "Item: <literal>APT::Cache::NamesOnly</literal>." @@ -2408,7 +2408,7 @@ msgstr "" "configurazione: <literal>APT::Cache::NamesOnly</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:322 +#: apt-cache.8.xml:316 msgid "" "Make <literal>pkgnames</literal> print all names, including virtual packages " "and missing dependencies. Configuration Item: <literal>APT::Cache::" @@ -2419,7 +2419,7 @@ msgstr "" "<literal>APT::Cache::AllNames</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:328 +#: apt-cache.8.xml:322 msgid "" "Make <literal>depends</literal> and <literal>rdepends</literal> recursive so " "that all packages mentioned are printed once. Configuration Item: " @@ -2430,7 +2430,7 @@ msgstr "" "configurazione: <literal>APT::Cache::RecurseDepends</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:335 +#: apt-cache.8.xml:329 msgid "" "Limit the output of <literal>depends</literal> and <literal>rdepends</" "literal> to packages which are currently installed. Configuration Item: " @@ -2441,12 +2441,12 @@ msgstr "" "Cache::Installed</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:353 +#: apt-cache.8.xml:347 msgid "&apt-conf;, &sources-list;, &apt-get;" msgstr "&apt-conf;, &sources-list;, &apt-get;" #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:358 +#: apt-cache.8.xml:352 msgid "" "<command>apt-cache</command> returns zero on normal operation, decimal 100 " "on error." @@ -2455,12 +2455,12 @@ msgstr "" "normale e il valore decimale 100 in caso di errore." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-key.8.xml:34 +#: apt-key.8.xml:28 msgid "APT key management utility" msgstr "strumento APT per la gestione delle chiavi" #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:41 +#: apt-key.8.xml:35 msgid "" "<command>apt-key</command> is used to manage the list of keys used by apt to " "authenticate packages. Packages which have been authenticated using these " @@ -2471,12 +2471,12 @@ msgstr "" "autenticati usando queste chiavi verranno considerati fidati." #. type: Content of: <refentry><refsect1><title> -#: apt-key.8.xml:47 +#: apt-key.8.xml:41 msgid "Commands" msgstr "Comandi" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:52 +#: apt-key.8.xml:46 msgid "" "Add a new key to the list of trusted keys. The key is read from the " "filename given with the parameter &synopsis-param-filename; or if the " @@ -2487,33 +2487,33 @@ msgstr "" "il nome file è <literal>-</literal>, dallo standard input." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:65 +#: apt-key.8.xml:59 msgid "Remove a key from the list of trusted keys." msgstr "Rimuove una chiave dall'elenco delle chiavi fidate." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:76 +#: apt-key.8.xml:70 msgid "Output the key &synopsis-param-keyid; to standard output." msgstr "" "Visualizza sullo standard output l'&synopsis-param-keyid; della chiave." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:87 +#: apt-key.8.xml:81 msgid "Output all trusted keys to standard output." msgstr "Visualizza sullo standard output tutte le chiavi fidate." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:98 +#: apt-key.8.xml:92 msgid "List trusted keys." msgstr "Elenca le chiavi fidate." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:109 +#: apt-key.8.xml:103 msgid "List fingerprints of trusted keys." msgstr "Elenca le impronte digitali delle chiavi fidate." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:120 +#: apt-key.8.xml:114 msgid "" "Pass advanced options to gpg. With adv --recv-key you can download the " "public key." @@ -2522,7 +2522,7 @@ msgstr "" "chiave pubblica." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:132 +#: apt-key.8.xml:126 msgid "" "Update the local keyring with the archive keyring and remove from the local " "keyring the archive keys which are no longer valid. The archive keyring is " @@ -2536,7 +2536,7 @@ msgstr "" "package; in &keyring-distro;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:146 +#: apt-key.8.xml:140 msgid "" "Perform an update working similarly to the <command>update</command> command " "above, but get the archive keyring from a URI instead and validate it " @@ -2554,12 +2554,12 @@ msgstr "" "<command>update</command>; APT in Ubuntu invece lo fa." #. type: Content of: <refentry><refsect1><title> -#: apt-key.8.xml:162 apt-cdrom.8.xml:82 +#: apt-key.8.xml:156 apt-cdrom.8.xml:76 msgid "Options" msgstr "Opzioni" #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:163 +#: apt-key.8.xml:157 msgid "" "Note that options need to be defined before the commands described in the " "previous section." @@ -2568,7 +2568,7 @@ msgstr "" "nella sezione precedente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:166 +#: apt-key.8.xml:160 msgid "" "With this option it is possible to specify a particular keyring file the " "command should operate on. The default is that a command is executed on the " @@ -2585,49 +2585,49 @@ msgstr "" "che le nuove chiavi sono aggiunte ad esso." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:181 +#: apt-key.8.xml:175 msgid "<filename>/etc/apt/trustdb.gpg</filename>" msgstr "<filename>/etc/apt/trustdb.gpg</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:182 +#: apt-key.8.xml:176 msgid "Local trust database of archive keys." msgstr "Database locale di fiducia delle chiavi archiviate." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:185 +#: apt-key.8.xml:179 msgid "&keyring-filename;" msgstr "&keyring-filename;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:186 +#: apt-key.8.xml:180 msgid "Keyring of &keyring-distro; archive trusted keys." msgstr "Portachiavi delle chiavi fidate degli archivi &keyring-distro;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:189 +#: apt-key.8.xml:183 msgid "&keyring-removed-filename;" msgstr "&keyring-removed-filename;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:190 +#: apt-key.8.xml:184 msgid "Keyring of &keyring-distro; archive removed trusted keys." msgstr "" "Portachiavi delle chiavi fidate rimosse degli archivi &keyring-distro;." #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:199 +#: apt-key.8.xml:193 msgid "&apt-get;, &apt-secure;" msgstr "&apt-get;, &apt-secure;" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-mark.8.xml:35 +#: apt-mark.8.xml:29 msgid "mark/unmark a package as being automatically-installed" msgstr "" "mette/toglie il contrassegno di automaticamente installato ai pacchetti" #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:41 +#: apt-mark.8.xml:35 msgid "" "<command>apt-mark</command> will change whether a package has been marked as " "being automatically installed." @@ -2636,7 +2636,7 @@ msgstr "" "indica se è stato installato automaticamente." #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:45 +#: apt-mark.8.xml:39 msgid "" "When you request that a package is installed, and as a result other packages " "are installed to satisfy its dependencies, the dependencies are marked as " @@ -2652,7 +2652,7 @@ msgstr "" "get</command> o <command>aptitude</command>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:54 +#: apt-mark.8.xml:48 msgid "" "<literal>auto</literal> is used to mark a package as being automatically " "installed, which will cause the package to be removed when no more manually " @@ -2664,7 +2664,7 @@ msgstr "" "esso." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:62 +#: apt-mark.8.xml:56 msgid "" "<literal>manual</literal> is used to mark a package as being manually " "installed, which will prevent the package from being automatically removed " @@ -2675,7 +2675,7 @@ msgstr "" "automaticamente se nessun altro dipende da esso." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:70 +#: apt-mark.8.xml:64 msgid "" "<literal>hold</literal> is used to mark a package as held back, which will " "prevent the package from being automatically installed, upgraded or " @@ -2690,7 +2690,7 @@ msgstr "" "&dpkg; e non è influenzato dall'opzione <option>--file</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:80 +#: apt-mark.8.xml:74 msgid "" "<literal>unhold</literal> is used to cancel a previously set hold on a " "package to allow all actions again." @@ -2699,7 +2699,7 @@ msgstr "" "precedenza, per permettere nuovamente tutte le azioni." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:86 +#: apt-mark.8.xml:80 msgid "" "<literal>showauto</literal> is used to print a list of automatically " "installed packages with each package on a new line. All automatically " @@ -2713,7 +2713,7 @@ msgstr "" "solo quelli automaticamente installati." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:94 +#: apt-mark.8.xml:88 msgid "" "<literal>showmanual</literal> can be used in the same way as " "<literal>showauto</literal> except that it will print a list of manually " @@ -2724,7 +2724,7 @@ msgstr "" "dei pacchetti installati manualmente" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:101 +#: apt-mark.8.xml:95 msgid "" "<literal>showhold</literal> is used to print a list of packages on hold in " "the same way as for the other show commands." @@ -2733,7 +2733,7 @@ msgstr "" "bloccati in modo uguale a ciò che fanno gli altri comandi «show»." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:117 +#: apt-mark.8.xml:111 msgid "" "Read/Write package stats from the filename given with the parameter " "&synopsis-param-filename; instead of from the default location, which is " @@ -2746,7 +2746,7 @@ msgstr "" "voce di configurazione <literal>Dir::State</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:138 +#: apt-mark.8.xml:132 msgid "" "<command>apt-mark</command> returns zero on normal operation, non-zero on " "error." @@ -2755,12 +2755,12 @@ msgstr "" "normale e un valore diverso da zero in caso di errore." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-secure.8.xml:49 +#: apt-secure.8.xml:43 msgid "Archive authentication support for APT" msgstr "supporto per l'autenticazione degli archivi per APT" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:54 +#: apt-secure.8.xml:48 msgid "" "Starting with version 0.6, <command>apt</command> contains code that does " "signature checking of the Release file for all archives. This ensures that " @@ -2773,7 +2773,7 @@ msgstr "" "non hanno accesso alla chiave di firma dei file Release." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:62 +#: apt-secure.8.xml:56 msgid "" "If a package comes from a archive without a signature, or with a signature " "that apt does not have a key for, that package is considered untrusted, and " @@ -2789,7 +2789,7 @@ msgstr "" "scaricare pacchetti da esse." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:71 +#: apt-secure.8.xml:65 msgid "" "The package frontends &apt-get;, &aptitude; and &synaptic; support this new " "authentication feature." @@ -2798,12 +2798,12 @@ msgstr "" "questa nuova funzionalità di autenticazione." #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:76 +#: apt-secure.8.xml:70 msgid "Trusted archives" msgstr "Archivi fidati" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:79 +#: apt-secure.8.xml:73 msgid "" "The chain of trust from an apt archive to the end user is made up of several " "steps. <command>apt-secure</command> is the last step in this chain; " @@ -2821,7 +2821,7 @@ msgstr "" "dell'archivio." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:87 +#: apt-secure.8.xml:81 msgid "" "apt-secure does not review signatures at a package level. If you require " "tools to do this you should look at <command>debsig-verify</command> and " @@ -2834,7 +2834,7 @@ msgstr "" "verify e devscripts)." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:94 +#: apt-secure.8.xml:88 msgid "" "The chain of trust in Debian starts when a maintainer uploads a new package " "or a new version of a package to the Debian archive. In order to become " @@ -2852,7 +2852,7 @@ msgstr "" "del proprietario della chiave." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:104 +#: apt-secure.8.xml:98 msgid "" "Once the uploaded package is verified and included in the archive, the " "maintainer signature is stripped off, and checksums of the package are " @@ -2874,7 +2874,7 @@ msgstr "" "&keyring-package;." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:115 +#: apt-secure.8.xml:109 msgid "" "End users can check the signature of the Release file, extract a checksum of " "a package from it and compare it with the checksum of the package they " @@ -2886,7 +2886,7 @@ msgstr "" "ad APT che lo fa automaticamente." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:120 +#: apt-secure.8.xml:114 msgid "" "Notice that this is distinct from checking signatures on a per package " "basis. It is designed to prevent two possible attacks:" @@ -2895,7 +2895,7 @@ msgstr "" "È progettato per prevenire due possibili attacchi:" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:125 +#: apt-secure.8.xml:119 msgid "" "<literal>Network \"man in the middle\" attacks</literal>. Without signature " "checking, malicious agents can introduce themselves into the package " @@ -2910,7 +2910,7 @@ msgstr "" "server cattivo (attraverso attacchi di falsificazione di DNS e ARP)." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:133 +#: apt-secure.8.xml:127 msgid "" "<literal>Mirror network compromise</literal>. Without signature checking, a " "malicious agent can compromise a mirror host and modify the files in it to " @@ -2923,7 +2923,7 @@ msgstr "" "gli utenti che scaricano i pacchetti da quell'host." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:140 +#: apt-secure.8.xml:134 msgid "" "However, it does not defend against a compromise of the Debian master server " "itself (which signs the packages) or against a compromise of the key used to " @@ -2936,12 +2936,12 @@ msgstr "" "firme a livello di singolo pacchetto." #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:146 +#: apt-secure.8.xml:140 msgid "User configuration" msgstr "Configurazione utente" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:148 +#: apt-secure.8.xml:142 msgid "" "<command>apt-key</command> is the program that manages the list of keys used " "by apt. It can be used to add or remove keys, although an installation of " @@ -2955,7 +2955,7 @@ msgstr "" "pacchetti Debian." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:155 +#: apt-secure.8.xml:149 msgid "" "In order to add a new key you need to first download it (you should make " "sure you are using a trusted communication channel when retrieving it), add " @@ -2972,12 +2972,12 @@ msgstr "" "filename> dagli archivi che sono configurati." #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:164 +#: apt-secure.8.xml:158 msgid "Archive configuration" msgstr "Configurazione dell'archivio" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:166 +#: apt-secure.8.xml:160 msgid "" "If you want to provide archive signatures in an archive under your " "maintenance you have to:" @@ -2986,7 +2986,7 @@ msgstr "" "si deve:" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:171 +#: apt-secure.8.xml:165 msgid "" "<emphasis>Create a toplevel Release file</emphasis>, if it does not exist " "already. You can do this by running <command>apt-ftparchive release</" @@ -2997,7 +2997,7 @@ msgstr "" "command> (fornito in apt-utils)." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:176 +#: apt-secure.8.xml:170 msgid "" "<emphasis>Sign it</emphasis>. You can do this by running <command>gpg --" "clearsign -o InRelease Release</command> and <command>gpg -abs -o Release." @@ -3008,7 +3008,7 @@ msgstr "" "Release</command>." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:180 +#: apt-secure.8.xml:174 msgid "" "<emphasis>Publish the key fingerprint</emphasis>, that way your users will " "know what key they need to import in order to authenticate the files in the " @@ -3019,7 +3019,7 @@ msgstr "" "i file nell'archivio." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:187 +#: apt-secure.8.xml:181 msgid "" "Whenever the contents of the archive change (new packages are added or " "removed) the archive maintainer has to follow the first two steps outlined " @@ -3030,7 +3030,7 @@ msgstr "" "primi due passi descritti sopra." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:195 +#: apt-secure.8.xml:189 msgid "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " "&debsign;, &debsig-verify;, &gpg;" @@ -3039,7 +3039,7 @@ msgstr "" "&debsign;, &debsig-verify;, &gpg;" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:199 +#: apt-secure.8.xml:193 msgid "" "For more background information you might want to review the <ulink url=" "\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7\">Debian " @@ -3056,12 +3056,12 @@ msgstr "" "Distribution HOWTO</ulink> di V. Alex Brennen." #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:212 +#: apt-secure.8.xml:206 msgid "Manpage Authors" msgstr "Autori della pagina di manuale" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:214 +#: apt-secure.8.xml:208 msgid "" "This man-page is based on the work of Javier Fernández-Sanguino Peña, Isaac " "Jones, Colin Walters, Florian Weimer and Michael Vogt." @@ -3070,12 +3070,12 @@ msgstr "" "Peña, Isaac Jones, Colin Walters, Florian Weimer e Michael Vogt." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-cdrom.8.xml:34 +#: apt-cdrom.8.xml:28 msgid "APT CD-ROM management utility" msgstr "strumento APT per la gestione dei CD-ROM" #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:40 +#: apt-cdrom.8.xml:34 msgid "" "<command>apt-cdrom</command> is used to add a new CD-ROM to APT's list of " "available sources. <command>apt-cdrom</command> takes care of determining " @@ -3088,7 +3088,7 @@ msgstr "" "possibili errori di masterizzazione e di verificare i file indice." #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:47 +#: apt-cdrom.8.xml:41 msgid "" "It is necessary to use <command>apt-cdrom</command> to add CDs to the APT " "system; it cannot be done by hand. Furthermore each disc in a multi-CD set " @@ -3100,7 +3100,7 @@ msgstr "" "tenere conto di possibili errori di masterizzazione." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:58 +#: apt-cdrom.8.xml:52 msgid "" "<literal>add</literal> is used to add a new disc to the source list. It will " "unmount the CD-ROM device, prompt for a disc to be inserted and then proceed " @@ -3115,7 +3115,7 @@ msgstr "" "descrittivo." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:66 +#: apt-cdrom.8.xml:60 msgid "" "APT uses a CD-ROM ID to track which disc is currently in the drive and " "maintains a database of these IDs in <filename>&statedir;/cdroms.list</" @@ -3126,7 +3126,7 @@ msgstr "" "file <filename>&statedir;/cdroms.list</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:74 +#: apt-cdrom.8.xml:68 msgid "" "A debugging tool to report the identity of the current disc as well as the " "stored file name" @@ -3135,7 +3135,7 @@ msgstr "" "il nome dei file memorizzato." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:87 +#: apt-cdrom.8.xml:81 msgid "" "Do not try to auto-detect the CD-ROM path. Usually combined with the " "<option>--cdrom</option> option. Configuration Item: <literal>Acquire::" @@ -3146,7 +3146,7 @@ msgstr "" "<literal>Acquire::cdrom::AutoDetect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:95 +#: apt-cdrom.8.xml:89 msgid "" "Mount point; specify the location to mount the CD-ROM. This mount point must " "be listed in <filename>/etc/fstab</filename> and properly configured. " @@ -3158,7 +3158,7 @@ msgstr "" "cdrom::mount</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:104 +#: apt-cdrom.8.xml:98 msgid "" "Rename a disc; change the label of a disc or override the disc's given " "label. This option will cause <command>apt-cdrom</command> to prompt for a " @@ -3170,7 +3170,7 @@ msgstr "" "Rename</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:113 +#: apt-cdrom.8.xml:107 msgid "" "No mounting; prevent <command>apt-cdrom</command> from mounting and " "unmounting the mount point. Configuration Item: <literal>APT::CDROM::" @@ -3181,7 +3181,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:121 +#: apt-cdrom.8.xml:115 msgid "" "Fast Copy; Assume the package files are valid and do not check every " "package. This option should be used only if <command>apt-cdrom</command> has " @@ -3194,7 +3194,7 @@ msgstr "" "errore. Voce di configurazione: <literal>APT::CDROM::Fast</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:131 +#: apt-cdrom.8.xml:125 msgid "" "Thorough Package Scan; This option may be needed with some old Debian " "1.1/1.2 discs that have Package files in strange places. It takes much " @@ -3206,7 +3206,7 @@ msgstr "" "più tempo, ma troverà tutti i file." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:142 +#: apt-cdrom.8.xml:136 msgid "" "No Changes; Do not change the &sources-list; file and do not write index " "files. Everything is still checked however. Configuration Item: " @@ -3217,12 +3217,12 @@ msgstr "" "<literal>APT::CDROM::NoAct</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:155 +#: apt-cdrom.8.xml:149 msgid "&apt-conf;, &apt-get;, &sources-list;" msgstr "&apt-conf;, &apt-get;, &sources-list;" #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:160 +#: apt-cdrom.8.xml:154 msgid "" "<command>apt-cdrom</command> returns zero on normal operation, decimal 100 " "on error." @@ -3231,12 +3231,12 @@ msgstr "" "normale e il valore decimale 100 in caso di errore." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-config.8.xml:35 +#: apt-config.8.xml:29 msgid "APT Configuration Query program" msgstr "programma di interrogazione della configurazione di APT" #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:41 +#: apt-config.8.xml:35 msgid "" "<command>apt-config</command> is an internal program used by various " "portions of the APT suite to provide consistent configurability. It accesses " @@ -3249,7 +3249,7 @@ msgstr "" "modo facile da usare da parte di applicazioni che usano script." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:53 +#: apt-config.8.xml:47 msgid "" "shell is used to access the configuration information from a shell script. " "It is given pairs of arguments, the first being a shell variable and the " @@ -3265,7 +3265,7 @@ msgstr "" "modo simile a:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> -#: apt-config.8.xml:61 +#: apt-config.8.xml:55 #, no-wrap msgid "" "OPTS=\"-f\"\n" @@ -3277,7 +3277,7 @@ msgstr "" "eval $RES\n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:66 +#: apt-config.8.xml:60 msgid "" "This will set the shell environment variable $OPTS to the value of MyApp::" "options with a default of <option>-f</option>." @@ -3287,7 +3287,7 @@ msgstr "" "option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:70 +#: apt-config.8.xml:64 msgid "" "The configuration item may be postfixed with a /[fdbi]. f returns file " "names, d returns directories, b returns true or false and i returns an " @@ -3298,12 +3298,12 @@ msgstr "" "un intero. Ogni valore restituito è normalizzato e verificato internamente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:79 +#: apt-config.8.xml:73 msgid "Just show the contents of the configuration space." msgstr "Mostra soltanto i contenuti dello spazio di configurazione." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:92 +#: apt-config.8.xml:86 msgid "" "Include options which have an empty value. This is the default, so use --no-" "empty to remove them from the output." @@ -3312,12 +3312,12 @@ msgstr "" "predefinito, perciò usare --no-empty per rimuoverle dall'output." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-config.8.xml:97 +#: apt-config.8.xml:91 msgid "%f "%v";%n" msgstr "%f "%v";%n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:98 +#: apt-config.8.xml:92 msgid "" "Defines the output of each config option. %t will be replaced with " "its individual name, %f with its full hierarchical name and %v " @@ -3336,13 +3336,13 @@ msgstr "" "%. " #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:112 apt-extracttemplates.1.xml:73 apt-sortpkgs.1.xml:66 -#: apt-ftparchive.1.xml:610 +#: apt-config.8.xml:106 apt-extracttemplates.1.xml:67 apt-sortpkgs.1.xml:60 +#: apt-ftparchive.1.xml:604 msgid "&apt-conf;" msgstr "&apt-conf;" #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:117 +#: apt-config.8.xml:111 msgid "" "<command>apt-config</command> returns zero on normal operation, decimal 100 " "on error." @@ -3351,27 +3351,27 @@ msgstr "" "normale e il valore decimale 100 in caso di errore." #. type: Content of: <refentry><refentryinfo><author><contrib> -#: apt.conf.5.xml:22 +#: apt.conf.5.xml:16 msgid "Initial documentation of Debug::*." msgstr "Documentazione iniziale di Debug::*." #. type: Content of: <refentry><refentryinfo><author><email> -#: apt.conf.5.xml:23 +#: apt.conf.5.xml:17 msgid "dburrows@debian.org" msgstr "dburrows@debian.org" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt.conf.5.xml:33 apt_preferences.5.xml:27 sources.list.5.xml:28 +#: apt.conf.5.xml:27 apt_preferences.5.xml:21 sources.list.5.xml:22 msgid "5" msgstr "5" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt.conf.5.xml:40 +#: apt.conf.5.xml:34 msgid "Configuration file for APT" msgstr "file di configurazione di APT" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:44 +#: apt.conf.5.xml:38 msgid "" "<filename>/etc/apt/apt.conf</filename> is the main configuration file shared " "by all the tools in the APT suite of tools, though it is by no means the " @@ -3385,7 +3385,7 @@ msgstr "" "ambiente uniforme." #. type: Content of: <refentry><refsect1><orderedlist><para> -#: apt.conf.5.xml:50 +#: apt.conf.5.xml:44 msgid "" "When an APT tool starts up it will read the configuration files in the " "following order:" @@ -3394,7 +3394,7 @@ msgstr "" "seguente ordine:" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:52 +#: apt.conf.5.xml:46 msgid "" "the file specified by the <envar>APT_CONFIG</envar> environment variable (if " "any)" @@ -3403,7 +3403,7 @@ msgstr "" "presente)" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:54 +#: apt.conf.5.xml:48 msgid "" "all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending " "order which have either no or \"<literal>conf</literal>\" as filename " @@ -3423,7 +3423,7 @@ msgstr "" "silenziosamente." #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:61 +#: apt.conf.5.xml:55 msgid "" "the main configuration file specified by <literal>Dir::Etc::main</literal>" msgstr "" @@ -3431,7 +3431,7 @@ msgstr "" "literal>" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:63 +#: apt.conf.5.xml:57 msgid "" "the command line options are applied to override the configuration " "directives or to load even more configuration files." @@ -3440,12 +3440,12 @@ msgstr "" "di configurazione o per caricare ulteriori file di configurazione." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:67 +#: apt.conf.5.xml:61 msgid "Syntax" msgstr "Sintassi" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:68 +#: apt.conf.5.xml:62 msgid "" "The configuration file is organized in a tree with options organized into " "functional groups. Option specification is given with a double colon " @@ -3460,7 +3460,7 @@ msgstr "" "Le opzioni non ereditano dai gruppi genitori." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:74 +#: apt.conf.5.xml:68 msgid "" "Syntactically the configuration language is modeled after what the ISC tools " "such as bind and dhcp use. Lines starting with <literal>//</literal> are " @@ -3485,7 +3485,7 @@ msgstr "" "parentesi graffe come in:" #. type: Content of: <refentry><refsect1><informalexample><programlisting> -#: apt.conf.5.xml:87 +#: apt.conf.5.xml:81 #, no-wrap msgid "" "APT {\n" @@ -3503,7 +3503,7 @@ msgstr "" "};\n" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:95 +#: apt.conf.5.xml:89 msgid "" "with newlines placed to make it more readable. Lists can be created by " "opening a scope and including a single string enclosed in quotes followed by " @@ -3515,13 +3515,13 @@ msgstr "" "voci, separate da un punto e virgola." #. type: Content of: <refentry><refsect1><informalexample><programlisting> -#: apt.conf.5.xml:100 +#: apt.conf.5.xml:94 #, no-wrap msgid "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" msgstr "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:103 +#: apt.conf.5.xml:97 msgid "" "In general the sample configuration file &configureindex; is a good guide " "for how it should look." @@ -3530,7 +3530,7 @@ msgstr "" "buona guida su come debba essere un file di configurazione." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:106 +#: apt.conf.5.xml:100 msgid "" "Case is not significant in names of configuration items, so in the previous " "example you could use <literal>dpkg::pre-install-pkgs</literal>." @@ -3540,7 +3540,7 @@ msgstr "" "<literal>dpkg::pre-install-pkgs</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:109 +#: apt.conf.5.xml:103 msgid "" "Names for the configuration items are optional if a list is defined as can " "be seen in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. If " @@ -3555,7 +3555,7 @@ msgstr "" "sovrascrivere l'opzione come per ogni altra, assegnandole un nuovo valore." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:114 +#: apt.conf.5.xml:108 msgid "" "Two special commands are defined: <literal>#include</literal> (which is " "deprecated and not supported by alternative implementations) and " @@ -3575,7 +3575,7 @@ msgstr "" "queste righe devono terminare con un punto e virgola.)" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:124 +#: apt.conf.5.xml:118 msgid "" "The <literal>#clear</literal> command is the only way to delete a list or a " "complete scope. Reopening a scope (or using the syntax described below with " @@ -3591,7 +3591,7 @@ msgstr "" "ambiti non possono essere sovrascritti, solo cancellati." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:132 +#: apt.conf.5.xml:126 msgid "" "All of the APT tools take an -o option which allows an arbitrary " "configuration directive to be specified on the command line. The syntax is a " @@ -3611,7 +3611,7 @@ msgstr "" "di comando.)" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:140 +#: apt.conf.5.xml:134 msgid "" "Note that appending items to a list using <literal>::</literal> only works " "for one item per line, and that you should not use it in combination with " @@ -3641,12 +3641,12 @@ msgstr "" "ora, quando APT ancora non si lamenta esplicitamente." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:155 +#: apt.conf.5.xml:149 msgid "The APT Group" msgstr "Il gruppo APT" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:156 +#: apt.conf.5.xml:150 msgid "" "This group of options controls general APT behavior as well as holding the " "options for all of the tools." @@ -3655,7 +3655,7 @@ msgstr "" "contenere le opzioni per tutti gli strumenti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:161 +#: apt.conf.5.xml:155 msgid "" "System Architecture; sets the architecture to use when fetching files and " "parsing package lists. The internal default is the architecture apt was " @@ -3666,7 +3666,7 @@ msgstr "" "predefinito interno è l'architettura per la quale apt è stato compilato." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:168 +#: apt.conf.5.xml:162 msgid "" "All Architectures the system supports. For instance, CPUs implementing the " "<literal>amd64</literal> (also called <literal>x86-64</literal>) " @@ -3688,7 +3688,7 @@ msgstr "" "quando sono registrate con <command>dpkg --add-architecture</command>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:182 +#: apt.conf.5.xml:176 msgid "" "List of all build profiles enabled for build-dependency resolution, without " "the \"<literal>profile.</literal>\" namespace prefix. By default this list " @@ -3702,7 +3702,7 @@ msgstr "" "precedenza sulla notazione della lista." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:190 +#: apt.conf.5.xml:184 msgid "" "Default release to install packages from if more than one version is " "available. Contains release name, codename or release version. Examples: " @@ -3716,7 +3716,7 @@ msgstr "" "preferences;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:196 +#: apt.conf.5.xml:190 msgid "" "Ignore held packages; this global option causes the problem resolver to " "ignore held packages in its decision making." @@ -3725,7 +3725,7 @@ msgstr "" "di problemi ignori i pacchetti bloccati nel suo processo decisionale." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:201 +#: apt.conf.5.xml:195 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " @@ -3739,7 +3739,7 @@ msgstr "" "reinstallarli." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:209 +#: apt.conf.5.xml:203 msgid "" "Defaults to on, which will cause APT to install essential and important " "packages as soon as possible in an install/upgrade operation, in order to " @@ -3766,7 +3766,7 @@ msgstr "" "che dipende da A, dato che la dipendenza da A non è più soddisfatta." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:221 +#: apt.conf.5.xml:215 msgid "" "The immediate configuration marker is also applied in the potentially " "problematic case of circular dependencies, since a dependency with the " @@ -3796,7 +3796,7 @@ msgstr "" "l'unico problema che può aiutare a prevenire." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:234 +#: apt.conf.5.xml:228 msgid "" "Before a big operation like <literal>dist-upgrade</literal> is run with this " "option disabled you should try to explicitly <literal>install</literal> the " @@ -3814,7 +3814,7 @@ msgstr "" "il processo di aggiornamento." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:245 +#: apt.conf.5.xml:239 msgid "" "Never enable this option unless you <emphasis>really</emphasis> know what " "you are doing. It permits APT to temporarily remove an essential package to " @@ -3835,7 +3835,7 @@ msgstr "" "<command>dash</command> o qualsiasi altro da cui dipendono tali pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:257 +#: apt.conf.5.xml:251 msgid "" "APT uses since version 0.7.26 a resizable memory mapped cache file to store " "the available information. <literal>Cache-Start</literal> acts as a hint of " @@ -3873,14 +3873,14 @@ msgstr "" "della cache è disabilitata." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:273 +#: apt.conf.5.xml:267 msgid "Defines which packages are considered essential build dependencies." msgstr "" "Definisce quali pacchetti sono considerati dipendenze di compilazione " "essenziali." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:277 +#: apt.conf.5.xml:271 msgid "" "The Get subsection controls the &apt-get; tool; please see its documentation " "for more information about the options here." @@ -3889,7 +3889,7 @@ msgstr "" "documentazione per maggiori informazioni su queste opzioni." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:282 +#: apt.conf.5.xml:276 msgid "" "The Cache subsection controls the &apt-cache; tool; please see its " "documentation for more information about the options here." @@ -3898,7 +3898,7 @@ msgstr "" "documentazione per maggiori informazioni su queste opzioni." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:287 +#: apt.conf.5.xml:281 msgid "" "The CDROM subsection controls the &apt-cdrom; tool; please see its " "documentation for more information about the options here." @@ -3907,12 +3907,12 @@ msgstr "" "documentazione per maggiori informazioni su queste opzioni." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:293 +#: apt.conf.5.xml:287 msgid "The Acquire Group" msgstr "Il gruppo Acquire" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:294 +#: apt.conf.5.xml:288 msgid "" "The <literal>Acquire</literal> group of options controls the download of " "packages as well as the various \"acquire methods\" responsible for the " @@ -3923,7 +3923,7 @@ msgstr "" "scaricamento stesso (vedere anche &sources-list;)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:301 +#: apt.conf.5.xml:295 msgid "" "Security related option defaulting to true, as giving a Release file's " "validation an expiration date prevents replay attacks over a long timescale, " @@ -3945,7 +3945,7 @@ msgstr "" "ValidTime</literal> seguente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:314 +#: apt.conf.5.xml:308 msgid "" "Maximum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -3965,7 +3965,7 @@ msgstr "" "dell'archivio in fondo al nome dell'opzione." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:326 +#: apt.conf.5.xml:320 msgid "" "Minimum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -3985,7 +3985,7 @@ msgstr "" "archivio aggiungendo l'etichetta dell'archivio in fondo al nome dell'opzione." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:338 +#: apt.conf.5.xml:332 msgid "" "Try to download deltas called <literal>PDiffs</literal> for indexes (like " "<filename>Packages</filename> files) instead of downloading whole ones. True " @@ -3996,7 +3996,7 @@ msgstr "" "interamente i nuovi. Attiva in modo predefinito." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:341 +#: apt.conf.5.xml:335 msgid "" "Two sub-options to limit the use of PDiffs are also available: " "<literal>FileLimit</literal> can be used to specify a maximum number of " @@ -4014,7 +4014,7 @@ msgstr "" "completo invece delle patch." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:351 +#: apt.conf.5.xml:345 msgid "" "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" "literal> or <literal>access</literal> which determines how APT parallelizes " @@ -4029,7 +4029,7 @@ msgstr "" "literal> significa che viene aperta una connessione per ogni tipo di URI." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:359 +#: apt.conf.5.xml:353 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." @@ -4039,7 +4039,7 @@ msgstr "" "ha avuto successo." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:364 +#: apt.conf.5.xml:358 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." @@ -4050,7 +4050,7 @@ msgstr "" "vero." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:369 +#: apt.conf.5.xml:363 msgid "" "<literal>http::Proxy</literal> sets the default proxy to use for HTTP URIs. " "It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</" @@ -4069,7 +4069,7 @@ msgstr "" "la variabile d'ambiente <envar>http_proxy</envar>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:377 +#: apt.conf.5.xml:371 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy not to use its cached " @@ -4089,7 +4089,7 @@ msgstr "" "file .deb." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:387 apt.conf.5.xml:475 +#: apt.conf.5.xml:381 apt.conf.5.xml:469 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method; this value applies to the connection as well as the data timeout." @@ -4099,7 +4099,7 @@ msgstr "" "quello per i dati." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:390 +#: apt.conf.5.xml:384 msgid "" "The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e." @@ -4119,7 +4119,7 @@ msgstr "" "con la specifica HTTP/1.1." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:397 +#: apt.conf.5.xml:391 msgid "" "<literal>Acquire::http::AllowRedirect</literal> controls whether APT will " "follow redirects, which is enabled by default." @@ -4128,7 +4128,7 @@ msgstr "" "meno le ridirezioni che sono abilitate in modo predefinito." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:400 +#: apt.conf.5.xml:394 msgid "" "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" "literal> which accepts integer values in kilobytes per second. The default " @@ -4143,7 +4143,7 @@ msgstr "" "scaricamento da più server contemporaneamente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:407 +#: apt.conf.5.xml:401 msgid "" "<literal>Acquire::http::User-Agent</literal> can be used to set a different " "User-Agent for the http download method as some proxies allow access for " @@ -4155,7 +4155,7 @@ msgstr "" "conosciuto." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:411 +#: apt.conf.5.xml:405 msgid "" "<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify " "an external command to discover the http proxy to use. Apt expects the " @@ -4178,7 +4178,7 @@ msgstr "" "sull'opzione col nome obsoleto <literal>ProxyAutoDetect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:429 +#: apt.conf.5.xml:423 msgid "" "The <literal>Cache-control</literal>, <literal>Timeout</literal>, " "<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and " @@ -4195,7 +4195,7 @@ msgstr "" "<literal>Pipeline-Depth</literal> non è ancora supportata." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:437 +#: apt.conf.5.xml:431 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is the " @@ -4236,7 +4236,7 @@ msgstr "" "literal> è la corrispondente opzione specifica per ciascun host." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:458 +#: apt.conf.5.xml:452 msgid "" "<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. " "It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</" @@ -4270,7 +4270,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:478 +#: apt.conf.5.xml:472 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on; it works in nearly every environment. However, " @@ -4286,7 +4286,7 @@ msgstr "" "uno specifico host (vedere il file di configurazione d'esempio)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:485 +#: apt.conf.5.xml:479 msgid "" "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" "envar> environment variable to an HTTP URL - see the discussion of the http " @@ -4300,7 +4300,7 @@ msgstr "" "a causa della sua bassa efficienza." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:490 +#: apt.conf.5.xml:484 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@ -4316,13 +4316,13 @@ msgstr "" "parte dei server FTP non supporta la RFC 2428." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:504 +#: apt.conf.5.xml:498 #, no-wrap msgid "/cdrom/::Mount \"foo\";" msgstr "/cdrom/::Mount \"pippo\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:499 +#: apt.conf.5.xml:493 msgid "" "For URIs using the <literal>cdrom</literal> method, the only configurable " "option is the mount point, <literal>cdrom::Mount</literal>, which must be " @@ -4344,7 +4344,7 @@ msgstr "" "comandi per lo smontaggio possono essere specificati usando UMount." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:512 +#: apt.conf.5.xml:506 msgid "" "For GPGV URIs the only configurable option is <literal>gpgv::Options</" "literal>, which passes additional parameters to gpgv." @@ -4353,13 +4353,13 @@ msgstr "" "literal>, che passa parametri aggiuntivi a gpgv." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:523 +#: apt.conf.5.xml:517 #, no-wrap msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" msgstr "Acquire::CompressionTypes::<replaceable>EstensioneFile</replaceable> \"<replaceable>NomeMetodo</replaceable>\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:518 +#: apt.conf.5.xml:512 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " @@ -4378,19 +4378,19 @@ msgstr "" "metodo usato. La sintassi è: <placeholder type=\"synopsis\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:528 +#: apt.conf.5.xml:522 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "Acquire::CompressionTypes::Order:: \"gz\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:531 +#: apt.conf.5.xml:525 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:524 +#: apt.conf.5.xml:518 msgid "" "Also, the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " @@ -4421,13 +4421,13 @@ msgstr "" "all'elenco, dato che verrà aggiunto automaticamente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:538 +#: apt.conf.5.xml:532 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:533 +#: apt.conf.5.xml:527 msgid "" "Note that the <literal>Dir::Bin::<replaceable>Methodname</replaceable></" "literal> will be checked at run time. If this option has been set, the " @@ -4453,7 +4453,7 @@ msgstr "" "definito; aggiunge solamente il tipo indicato all'inizio dell'elenco." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:543 +#: apt.conf.5.xml:537 msgid "" "The special type <literal>uncompressed</literal> can be used to give " "uncompressed files a preference, but note that most archives don't provide " @@ -4465,7 +4465,7 @@ msgstr "" "soprattutto per i mirror locali." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:550 +#: apt.conf.5.xml:544 msgid "" "When downloading <literal>gzip</literal> compressed indexes (Packages, " "Sources, or Translations), keep them gzip compressed locally instead of " @@ -4479,7 +4479,7 @@ msgstr "" "modo predefinito è disabilitato." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:558 +#: apt.conf.5.xml:552 msgid "" "The Languages subsection controls which <filename>Translation</filename> " "files are downloaded and in which order APT tries to display the description-" @@ -4498,13 +4498,13 @@ msgstr "" "codici di lingua lunghi sono particolarmente rari." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting> -#: apt.conf.5.xml:575 +#: apt.conf.5.xml:569 #, no-wrap msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" msgstr "Acquire::Languages { \"environment\"; \"it\"; \"en\"; \"none\"; \"fr\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:563 +#: apt.conf.5.xml:557 msgid "" "The default list includes \"environment\" and \"en\". " "\"<literal>environment</literal>\" has a special meaning here: it will be " @@ -4543,7 +4543,7 @@ msgstr "" "<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:576 +#: apt.conf.5.xml:570 msgid "" "Note: To prevent problems resulting from APT being executed in different " "environments (e.g. by different users or by other programs) all Translation " @@ -4557,22 +4557,22 @@ msgstr "" "implicito)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:585 +#: apt.conf.5.xml:579 msgid "When downloading, force to use only the IPv4 protocol." msgstr "Durante gli scaricamenti, forza l'uso del solo protocollo IPv4." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:591 +#: apt.conf.5.xml:585 msgid "When downloading, force to use only the IPv6 protocol." msgstr "Durante gli scaricamenti, forza l'uso del solo protocollo IPv6." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:598 +#: apt.conf.5.xml:592 msgid "Directories" msgstr "Directory" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:600 +#: apt.conf.5.xml:594 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@ -4592,7 +4592,7 @@ msgstr "" "<filename>/</filename> o <filename>./</filename>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:607 +#: apt.conf.5.xml:601 #, fuzzy #| msgid "" #| "<literal>Dir::Cache</literal> contains locations pertaining to local " @@ -4626,7 +4626,7 @@ msgstr "" "la directory predefinita è contenuta in <literal>Dir::Cache</literal>" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:617 +#: apt.conf.5.xml:611 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -4641,7 +4641,7 @@ msgstr "" "configurazione specificato da <envar>APT_CONFIG</envar>)." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:623 +#: apt.conf.5.xml:617 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -4652,7 +4652,7 @@ msgstr "" "termine viene caricato il file di configurazione principale." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:627 +#: apt.conf.5.xml:621 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@ -4669,7 +4669,7 @@ msgstr "" "specificano la posizione dei rispettivi programmi." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:635 +#: apt.conf.5.xml:629 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -4690,7 +4690,7 @@ msgstr "" "staging/var/lib/dpkg/status</filename>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:648 +#: apt.conf.5.xml:642 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -4708,12 +4708,12 @@ msgstr "" "questi modelli possono usare una sintassi con espressioni regolari." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:657 +#: apt.conf.5.xml:651 msgid "APT in DSelect" msgstr "APT in DSelect" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:659 +#: apt.conf.5.xml:653 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -4724,7 +4724,7 @@ msgstr "" "sezione <literal>DSelect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:664 +#: apt.conf.5.xml:658 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@ -4746,7 +4746,7 @@ msgstr "" "scaricare i nuovi pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:678 +#: apt.conf.5.xml:672 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." @@ -4756,7 +4756,7 @@ msgstr "" "installazione." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:683 +#: apt.conf.5.xml:677 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." @@ -4766,7 +4766,7 @@ msgstr "" "aggiornamento." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:688 +#: apt.conf.5.xml:682 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@ -4776,12 +4776,12 @@ msgstr "" "solo in caso di errore." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:694 +#: apt.conf.5.xml:688 msgid "How APT calls &dpkg;" msgstr "Come APT invoca &dpkg;" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:695 +#: apt.conf.5.xml:689 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@ -4790,7 +4790,7 @@ msgstr "" "&dpkg;; sono nella sezione <literal>DPkg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:700 +#: apt.conf.5.xml:694 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -4801,7 +4801,7 @@ msgstr "" "passata a &dpkg; come un singolo argomento." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:706 +#: apt.conf.5.xml:700 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4814,7 +4814,7 @@ msgstr "" "bin/sh</filename>; se qualcuno dei comandi fallisce APT terminerà annullando." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:713 +#: apt.conf.5.xml:707 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4832,7 +4832,7 @@ msgstr "" "lo standard input." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:720 +#: apt.conf.5.xml:714 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@ -4846,7 +4846,7 @@ msgstr "" "versione di cui viene fatto il dump." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:725 +#: apt.conf.5.xml:719 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -4863,7 +4863,7 @@ msgstr "" "l'informazione nella versione più alta per cui ha il supporto." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:732 +#: apt.conf.5.xml:726 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</" @@ -4881,7 +4881,7 @@ msgstr "" "file usato per conferma." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:742 +#: apt.conf.5.xml:736 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." @@ -4890,7 +4890,7 @@ msgstr "" "valore predefinito è <filename>/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:747 +#: apt.conf.5.xml:741 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." @@ -4900,12 +4900,12 @@ msgstr "" "binari." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:746 msgid "dpkg trigger usage (and related options)" msgstr "Uso dei trigger di dpkg (e relative opzioni)" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:753 +#: apt.conf.5.xml:747 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -4933,7 +4933,7 @@ msgstr "" "pacchetti." #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:768 +#: apt.conf.5.xml:762 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -4947,7 +4947,7 @@ msgstr "" "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:762 +#: apt.conf.5.xml:756 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -4971,7 +4971,7 @@ msgstr "" "\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:775 +#: apt.conf.5.xml:769 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -4993,7 +4993,7 @@ msgstr "" "questa opzione anche alle chiamate per lo spacchettamento e la rimozione." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:783 +#: apt.conf.5.xml:777 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@ -5023,7 +5023,7 @@ msgstr "" "potrebbe finire in uno stato non configurato e potenzialmente non avviabile." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:798 +#: apt.conf.5.xml:792 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@ -5041,7 +5041,7 @@ msgstr "" "si può disattivare questa opzione in tutte le esecuzioni tranne l'ultima." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:805 +#: apt.conf.5.xml:799 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -5057,7 +5057,7 @@ msgstr "" "necessari per configurare il pacchetto in questione." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:818 +#: apt.conf.5.xml:812 #, no-wrap msgid "" "OrderList::Score {\n" @@ -5075,7 +5075,7 @@ msgstr "" "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:811 +#: apt.conf.5.xml:805 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -5100,12 +5100,12 @@ msgstr "" "con i loro valori predefiniti. <placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:831 +#: apt.conf.5.xml:825 msgid "Periodic and Archives options" msgstr "Opzioni Periodic e Archives" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:832 +#: apt.conf.5.xml:826 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -5119,12 +5119,12 @@ msgstr "" "all'inizio dello script." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:840 +#: apt.conf.5.xml:834 msgid "Debug options" msgstr "Opzioni di debug" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:842 +#: apt.conf.5.xml:836 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -5142,7 +5142,7 @@ msgstr "" "esserlo:" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:853 +#: apt.conf.5.xml:847 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -5153,7 +5153,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:861 +#: apt.conf.5.xml:855 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -5164,7 +5164,7 @@ msgstr "" "install</literal>) come utente non root." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:870 +#: apt.conf.5.xml:864 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -5176,7 +5176,7 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:878 +#: apt.conf.5.xml:872 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." @@ -5185,37 +5185,37 @@ msgstr "" "negli ID dei CD-ROM." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:888 +#: apt.conf.5.xml:882 msgid "A full list of debugging options to apt follows." msgstr "Segue un elenco completo delle opzioni di debug per apt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:897 +#: apt.conf.5.xml:891 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" "Stampa informazioni relative all'accesso a fonti <literal>cdrom://</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:908 +#: apt.conf.5.xml:902 msgid "Print information related to downloading packages using FTP." msgstr "" "Stampa informazioni relative allo scaricamento dei pacchetti usando FTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:919 +#: apt.conf.5.xml:913 msgid "Print information related to downloading packages using HTTP." msgstr "" "Stampa informazioni relative allo scaricamento dei pacchetti usando HTTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:930 +#: apt.conf.5.xml:924 msgid "Print information related to downloading packages using HTTPS." msgstr "" "Stampa informazioni relative allo scaricamento dei pacchetti usando HTTPS." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:941 +#: apt.conf.5.xml:935 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@ -5224,7 +5224,7 @@ msgstr "" "usando <literal>gpg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:952 +#: apt.conf.5.xml:946 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." @@ -5233,14 +5233,14 @@ msgstr "" "pacchetti memorizzati su CD-ROM." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:962 +#: apt.conf.5.xml:956 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" "Descrive il processo di risoluzione delle dipendenze di compilazione in &apt-" "get;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:972 +#: apt.conf.5.xml:966 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." @@ -5249,7 +5249,7 @@ msgstr "" "<literal>apt</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:982 +#: apt.conf.5.xml:976 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -5260,7 +5260,7 @@ msgstr "" "system del CD-ROM." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:993 +#: apt.conf.5.xml:987 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." @@ -5270,14 +5270,14 @@ msgstr "" "contemporaneamente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1005 +#: apt.conf.5.xml:999 msgid "Log when items are added to or removed from the global download queue." msgstr "" "Registra nel log quando vengono aggiunte o rimosse voci dalla coda globale " "degli scaricamenti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1015 +#: apt.conf.5.xml:1009 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." @@ -5286,7 +5286,7 @@ msgstr "" "codici di controllo e delle firme di cifratura dei file scaricati." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1025 +#: apt.conf.5.xml:1019 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." @@ -5296,7 +5296,7 @@ msgstr "" "diff." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1037 +#: apt.conf.5.xml:1031 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." @@ -5306,7 +5306,7 @@ msgstr "" "invece degli indici completi." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1048 +#: apt.conf.5.xml:1042 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" @@ -5314,7 +5314,7 @@ msgstr "" "realmente gli scaricamenti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1059 +#: apt.conf.5.xml:1053 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." @@ -5323,7 +5323,7 @@ msgstr "" "installato dei pacchetti e alla rimozione dei pacchetti non utilizzati." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1069 +#: apt.conf.5.xml:1063 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -5339,7 +5339,7 @@ msgstr "" "pkgProblemResolver</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1083 +#: apt.conf.5.xml:1077 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -5371,7 +5371,7 @@ msgstr "" "sezione in cui compare il pacchetto." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1104 +#: apt.conf.5.xml:1098 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." @@ -5380,7 +5380,7 @@ msgstr "" "gli argomenti separati da un singolo carattere di spazio." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1115 +#: apt.conf.5.xml:1109 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." @@ -5389,7 +5389,7 @@ msgstr "" "di stato ed ogni errore incontrato durante la sua analisi." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1126 +#: apt.conf.5.xml:1120 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." @@ -5398,7 +5398,7 @@ msgstr "" "literal> deve passare i pacchetti a &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1138 +#: apt.conf.5.xml:1132 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" @@ -5406,12 +5406,12 @@ msgstr "" "nell'invocazione di &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1149 +#: apt.conf.5.xml:1143 msgid "Output the priority of each package list on startup." msgstr "Produce in output la priorità di ogni elenco di pacchetti all'avvio." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1159 +#: apt.conf.5.xml:1153 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." @@ -5421,7 +5421,7 @@ msgstr "" "dipendenze)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1170 +#: apt.conf.5.xml:1164 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -5432,7 +5432,7 @@ msgstr "" "la stessa descritta in <literal>Debug::pkgDepCache::Marker</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1182 +#: apt.conf.5.xml:1176 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@ -5441,7 +5441,7 @@ msgstr "" "filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1192 +#: apt.conf.5.xml:1186 msgid "" "Display the external commands that are called by apt hooks. This includes e." "g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " @@ -5449,13 +5449,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1216 apt_preferences.5.xml:547 sources.list.5.xml:239 -#: apt-ftparchive.1.xml:598 +#: apt.conf.5.xml:1210 apt_preferences.5.xml:541 sources.list.5.xml:233 +#: apt-ftparchive.1.xml:592 msgid "Examples" msgstr "Esempi" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1217 +#: apt.conf.5.xml:1211 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -5465,17 +5465,17 @@ msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1229 +#: apt.conf.5.xml:1223 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt_preferences.5.xml:34 +#: apt_preferences.5.xml:28 msgid "Preference control file for APT" msgstr "file di controllo delle preferenze per APT" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:39 +#: apt_preferences.5.xml:33 msgid "" "The APT preferences file <filename>/etc/apt/preferences</filename> and the " "fragment files in the <filename>/etc/apt/preferences.d/</filename> folder " @@ -5488,7 +5488,7 @@ msgstr "" "selezionata per l'installazione." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:44 +#: apt_preferences.5.xml:38 msgid "" "Several versions of a package may be available for installation when the " "&sources-list; file contains references to more than one distribution (for " @@ -5511,7 +5511,7 @@ msgstr "" "l'installazione." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:54 +#: apt_preferences.5.xml:48 msgid "" "Several instances of the same version of a package may be available when the " "&sources-list; file contains references to more than one source. In this " @@ -5526,7 +5526,7 @@ msgstr "" "effetto sulla scelta dell'istanza, ma solo sulla scelta della versione." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:61 +#: apt_preferences.5.xml:55 msgid "" "Preferences are a strong power in the hands of a system administrator but " "they can become also their biggest nightmare if used without care! APT will " @@ -5551,7 +5551,7 @@ msgstr "" "avvertiti." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:72 +#: apt_preferences.5.xml:66 msgid "" "Note that the files in the <filename>/etc/apt/preferences.d</filename> " "directory are parsed in alphanumeric ascending order and need to obey the " @@ -5573,24 +5573,24 @@ msgstr "" "viene ignorato in modo silenzioso." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:81 +#: apt_preferences.5.xml:75 msgid "APT's Default Priority Assignments" msgstr "Assegnazioni della priorità predefinite di APT" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:96 +#: apt_preferences.5.xml:90 #, no-wrap msgid "<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n" msgstr "<command>apt-get install -t testing <replaceable>un-pacchetto</replaceable></command>\n" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:99 +#: apt_preferences.5.xml:93 #, no-wrap msgid "APT::Default-Release \"stable\";\n" msgstr "APT::Default-Release \"stable\";\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:83 +#: apt_preferences.5.xml:77 msgid "" "If there is no preferences file or if there is no entry in the file that " "applies to a particular version then the priority assigned to that version " @@ -5618,7 +5618,7 @@ msgstr "" "\"programlisting\" id=\"0\"/> <placeholder type=\"programlisting\" id=\"1\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:103 +#: apt_preferences.5.xml:97 msgid "" "If the target release has been specified then APT uses the following " "algorithm to set the priorities of the versions of a package. Assign:" @@ -5627,12 +5627,12 @@ msgstr "" "algoritmo per impostare le priorità delle versioni di un pacchetto. Assegna:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:108 +#: apt_preferences.5.xml:102 msgid "priority 1" msgstr "priorità 1" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:109 +#: apt_preferences.5.xml:103 msgid "" "to the versions coming from archives which in their <filename>Release</" "filename> files are marked as \"NotAutomatic: yes\" but <emphasis>not</" @@ -5645,12 +5645,12 @@ msgstr "" "<literal>experimental</literal>." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:115 +#: apt_preferences.5.xml:109 msgid "priority 100" msgstr "priorità 100" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:116 +#: apt_preferences.5.xml:110 msgid "" "to the version that is already installed (if any) and to the versions coming " "from archives which in their <filename>Release</filename> files are marked " @@ -5664,12 +5664,12 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:123 +#: apt_preferences.5.xml:117 msgid "priority 500" msgstr "priorità 500" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:124 +#: apt_preferences.5.xml:118 msgid "" "to the versions that are not installed and do not belong to the target " "release." @@ -5678,19 +5678,19 @@ msgstr "" "obiettivo." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:128 +#: apt_preferences.5.xml:122 msgid "priority 990" msgstr "priorità 990" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:129 +#: apt_preferences.5.xml:123 msgid "" "to the versions that are not installed and belong to the target release." msgstr "" "alle versioni che non sono installate e appartengono al rilascio obiettivo." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:134 +#: apt_preferences.5.xml:128 msgid "" "If the target release has not been specified then APT simply assigns " "priority 100 to all installed package versions and priority 500 to all " @@ -5708,7 +5708,7 @@ msgstr "" "contrassegnate come «ButAutomaticUpgrades: yes»." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:141 +#: apt_preferences.5.xml:135 msgid "" "APT then applies the following rules, listed in order of precedence, to " "determine which version of a package to install." @@ -5717,7 +5717,7 @@ msgstr "" "seguenti regole, elencate in ordine di precedenza." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:144 +#: apt_preferences.5.xml:138 msgid "" "Never downgrade unless the priority of an available version exceeds 1000. " "(\"Downgrading\" is installing a less recent version of a package in place " @@ -5734,12 +5734,12 @@ msgstr "" "rischioso.)" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:150 +#: apt_preferences.5.xml:144 msgid "Install the highest priority version." msgstr "Installa la versione con la priorità più alta." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:151 +#: apt_preferences.5.xml:145 msgid "" "If two or more versions have the same priority, install the most recent one " "(that is, the one with the higher version number)." @@ -5748,7 +5748,7 @@ msgstr "" "recente (cioè quella con il numero di versione più alto)." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:154 +#: apt_preferences.5.xml:148 msgid "" "If two or more versions have the same priority and version number but either " "the packages differ in some of their metadata or the <literal>--reinstall</" @@ -5760,7 +5760,7 @@ msgstr "" "non installata." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:160 +#: apt_preferences.5.xml:154 msgid "" "In a typical situation, the installed version of a package (priority 100) " "is not as recent as one of the versions available from the sources listed in " @@ -5776,7 +5776,7 @@ msgstr "" "upgrade</command>." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:167 +#: apt_preferences.5.xml:161 msgid "" "More rarely, the installed version of a package is <emphasis>more</emphasis> " "recent than any of the other available versions. The package will not be " @@ -5790,7 +5790,7 @@ msgstr "" "upgrade</command>." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:172 +#: apt_preferences.5.xml:166 msgid "" "Sometimes the installed version of a package is more recent than the version " "belonging to the target release, but not as recent as a version belonging to " @@ -5809,12 +5809,12 @@ msgstr "" "priorità più alta di quella installata." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:181 +#: apt_preferences.5.xml:175 msgid "The Effect of APT Preferences" msgstr "L'effetto delle preferenze di APT" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:183 +#: apt_preferences.5.xml:177 msgid "" "The APT preferences file allows the system administrator to control the " "assignment of priorities. The file consists of one or more multi-line " @@ -5827,7 +5827,7 @@ msgstr "" "due forme: una forma specifica e una forma generica." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:189 +#: apt_preferences.5.xml:183 msgid "" "The specific form assigns a priority (a \"Pin-Priority\") to one or more " "specified packages with a specified version or version range. For example, " @@ -5844,7 +5844,7 @@ msgstr "" "spazi." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:196 +#: apt_preferences.5.xml:190 #, no-wrap msgid "" "Package: perl\n" @@ -5856,7 +5856,7 @@ msgstr "" "Pin-Priority: 1001\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:202 +#: apt_preferences.5.xml:196 msgid "" "The general form assigns a priority to all of the package versions in a " "given distribution (that is, to all the versions of packages that are listed " @@ -5871,7 +5871,7 @@ msgstr "" "identificato in base al suo nome di dominio pienamente qualificato." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:208 +#: apt_preferences.5.xml:202 msgid "" "This general-form entry in the APT preferences file applies only to groups " "of packages. For example, the following record assigns a high priority to " @@ -5882,7 +5882,7 @@ msgstr "" "priorità alta a tutte le versioni di pacchetto disponibili dal sito locale." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:213 +#: apt_preferences.5.xml:207 #, no-wrap msgid "" "Package: *\n" @@ -5894,7 +5894,7 @@ msgstr "" "Pin-Priority: 999\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:218 +#: apt_preferences.5.xml:212 msgid "" "A note of caution: the keyword used here is \"<literal>origin</literal>\" " "which can be used to match a hostname. The following record will assign a " @@ -5907,7 +5907,7 @@ msgstr "" "identificato dal nome host «ftp.de.debian.org»" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:222 +#: apt_preferences.5.xml:216 #, no-wrap msgid "" "Package: *\n" @@ -5919,7 +5919,7 @@ msgstr "" "Pin-Priority: 999\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:226 +#: apt_preferences.5.xml:220 msgid "" "This should <emphasis>not</emphasis> be confused with the Origin of a " "distribution as specified in a <filename>Release</filename> file. What " @@ -5934,7 +5934,7 @@ msgstr "" "«Ximian»." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:231 +#: apt_preferences.5.xml:225 msgid "" "The following record assigns a low priority to all package versions " "belonging to any distribution whose Archive name is \"<literal>unstable</" @@ -5945,7 +5945,7 @@ msgstr "" "archivio è «<literal>unstable</literal>»." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:235 +#: apt_preferences.5.xml:229 #, no-wrap msgid "" "Package: *\n" @@ -5957,7 +5957,7 @@ msgstr "" "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:240 +#: apt_preferences.5.xml:234 msgid "" "The following record assigns a high priority to all package versions " "belonging to any distribution whose Codename is \"<literal>&testing-codename;" @@ -5968,7 +5968,7 @@ msgstr "" "codice è «<literal>&testing-codename;</literal>»." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:244 +#: apt_preferences.5.xml:238 #, no-wrap msgid "" "Package: *\n" @@ -5980,7 +5980,7 @@ msgstr "" "Pin-Priority: 900\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:249 +#: apt_preferences.5.xml:243 msgid "" "The following record assigns a high priority to all package versions " "belonging to any release whose Archive name is \"<literal>stable</literal>\" " @@ -5992,7 +5992,7 @@ msgstr "" "«<literal>&stable-version;</literal>»." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:254 +#: apt_preferences.5.xml:248 #, no-wrap msgid "" "Package: *\n" @@ -6005,12 +6005,12 @@ msgstr "" # &glob; è rimpiazzato da "glob(7)" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:264 +#: apt_preferences.5.xml:258 msgid "Regular expressions and &glob; syntax" msgstr "Sintassi per le espressioni regolari e &glob;" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:266 +#: apt_preferences.5.xml:260 msgid "" "APT also supports pinning by &glob; expressions, and regular expressions " "surrounded by slashes. For example, the following example assigns the " @@ -6026,7 +6026,7 @@ msgstr "" "POSIX racchiusa tra sbarre)." #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:275 +#: apt_preferences.5.xml:269 #, no-wrap msgid "" "Package: gnome* /kde/\n" @@ -6038,7 +6038,7 @@ msgstr "" "Pin-Priority: 500\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:281 +#: apt_preferences.5.xml:275 msgid "" "The rule for those expressions is that they can occur anywhere where a " "string can occur. Thus, the following pin assigns the priority 990 to all " @@ -6049,7 +6049,7 @@ msgstr "" "provenienti da un rilascio il cui nome inizia con &ubuntu-codename;." #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:287 +#: apt_preferences.5.xml:281 #, no-wrap msgid "" "Package: *\n" @@ -6061,7 +6061,7 @@ msgstr "" "Pin-Priority: 990\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:293 +#: apt_preferences.5.xml:287 msgid "" "If a regular expression occurs in a <literal>Package</literal> field, the " "behavior is the same as if this regular expression were replaced with a list " @@ -6080,12 +6080,12 @@ msgstr "" "non viene considerato come un'espressione &glob;." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:309 +#: apt_preferences.5.xml:303 msgid "How APT Interprets Priorities" msgstr "Come APT interpreta le priorità" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:312 +#: apt_preferences.5.xml:306 msgid "" "Priorities (P) assigned in the APT preferences file must be positive or " "negative integers. They are interpreted as follows (roughly speaking):" @@ -6095,12 +6095,12 @@ msgstr "" "seguente (semplificando le cose):" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:317 +#: apt_preferences.5.xml:311 msgid "P >= 1000" msgstr "P >= 1000" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:318 +#: apt_preferences.5.xml:312 msgid "" "causes a version to be installed even if this constitutes a downgrade of the " "package" @@ -6109,12 +6109,12 @@ msgstr "" "retrocessione del pacchetto" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:322 +#: apt_preferences.5.xml:316 msgid "990 <= P < 1000" msgstr "990 <= P < 1000" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:323 +#: apt_preferences.5.xml:317 msgid "" "causes a version to be installed even if it does not come from the target " "release, unless the installed version is more recent" @@ -6123,12 +6123,12 @@ msgstr "" "obiettivo, a meno che la versione installata non sia più recente" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:328 +#: apt_preferences.5.xml:322 msgid "500 <= P < 990" msgstr "500 <= P < 990" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:329 +#: apt_preferences.5.xml:323 msgid "" "causes a version to be installed unless there is a version available " "belonging to the target release or the installed version is more recent" @@ -6138,12 +6138,12 @@ msgstr "" "sia più recente" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:334 +#: apt_preferences.5.xml:328 msgid "100 <= P < 500" msgstr "100 <= P < 500" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:335 +#: apt_preferences.5.xml:329 msgid "" "causes a version to be installed unless there is a version available " "belonging to some other distribution or the installed version is more recent" @@ -6153,12 +6153,12 @@ msgstr "" "installata non sia più recente" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:340 +#: apt_preferences.5.xml:334 msgid "0 < P < 100" msgstr "0 < P < 100" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:341 +#: apt_preferences.5.xml:335 msgid "" "causes a version to be installed only if there is no installed version of " "the package" @@ -6167,17 +6167,17 @@ msgstr "" "è installata" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:345 +#: apt_preferences.5.xml:339 msgid "P < 0" msgstr "P < 0" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:346 +#: apt_preferences.5.xml:340 msgid "prevents the version from being installed" msgstr "impedisce l'installazione della versione" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:351 +#: apt_preferences.5.xml:345 msgid "" "If any specific-form records match an available package version then the " "first such record determines the priority of the package version. Failing " @@ -6192,7 +6192,7 @@ msgstr "" "versione del pacchetto." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:357 +#: apt_preferences.5.xml:351 msgid "" "For example, suppose the APT preferences file contains the three records " "presented earlier:" @@ -6201,7 +6201,7 @@ msgstr "" "record descritti in precedenza:" #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:361 +#: apt_preferences.5.xml:355 #, no-wrap msgid "" "Package: perl\n" @@ -6229,12 +6229,12 @@ msgstr "" "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:374 +#: apt_preferences.5.xml:368 msgid "Then:" msgstr "Allora:" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:376 +#: apt_preferences.5.xml:370 msgid "" "The most recent available version of the <literal>perl</literal> package " "will be installed, so long as that version's version number begins with " @@ -6249,7 +6249,7 @@ msgstr "" "installata è &bad-perl;*, allora <literal>perl</literal> verrà retrocesso." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:381 +#: apt_preferences.5.xml:375 msgid "" "A version of any package other than <literal>perl</literal> that is " "available from the local system has priority over other versions, even " @@ -6260,7 +6260,7 @@ msgstr "" "versioni, incluse quelle che appartengono al rilascio obiettivo." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:385 +#: apt_preferences.5.xml:379 msgid "" "A version of a package whose origin is not the local system but some other " "site listed in &sources-list; and which belongs to an <literal>unstable</" @@ -6274,13 +6274,13 @@ msgstr "" "installata." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:395 +#: apt_preferences.5.xml:389 msgid "Determination of Package Version and Distribution Properties" msgstr "" "Determinazione delle proprietà di versione del pacchetto e di distribuzione" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:397 +#: apt_preferences.5.xml:391 msgid "" "The locations listed in the &sources-list; file should provide " "<filename>Packages</filename> and <filename>Release</filename> files to " @@ -6291,7 +6291,7 @@ msgstr "" "i pacchetti disponibili in quelle posizioni." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:401 +#: apt_preferences.5.xml:395 msgid "" "The <filename>Packages</filename> file is normally found in the directory " "<filename>.../dists/<replaceable>dist-name</replaceable>/" @@ -6310,27 +6310,27 @@ msgstr "" "righe sono rilevanti per l'impostazione delle priorità di APT:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:409 +#: apt_preferences.5.xml:403 msgid "the <literal>Package:</literal> line" msgstr "la riga <literal>Package:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:410 +#: apt_preferences.5.xml:404 msgid "gives the package name" msgstr "indica il nome del pacchetto" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:413 apt_preferences.5.xml:463 +#: apt_preferences.5.xml:407 apt_preferences.5.xml:457 msgid "the <literal>Version:</literal> line" msgstr "la riga <literal>Version:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:414 +#: apt_preferences.5.xml:408 msgid "gives the version number for the named package" msgstr "indica il numero di versione per il pacchetto indicato" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:419 +#: apt_preferences.5.xml:413 msgid "" "The <filename>Release</filename> file is normally found in the directory " "<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for " @@ -6352,12 +6352,12 @@ msgstr "" "priorità di APT:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:430 +#: apt_preferences.5.xml:424 msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" msgstr "la riga <literal>Archive:</literal> o <literal>Suite:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:431 +#: apt_preferences.5.xml:425 msgid "" "names the archive to which all the packages in the directory tree belong. " "For example, the line \"Archive: stable\" or \"Suite: stable\" specifies " @@ -6374,18 +6374,18 @@ msgstr "" "preferenze di APT si deve usare la riga:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:441 +#: apt_preferences.5.xml:435 #, no-wrap msgid "Pin: release a=stable\n" msgstr "Pin: release a=stable\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:447 +#: apt_preferences.5.xml:441 msgid "the <literal>Codename:</literal> line" msgstr "la riga <literal>Codename:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:448 +#: apt_preferences.5.xml:442 msgid "" "names the codename to which all the packages in the directory tree belong. " "For example, the line \"Codename: &testing-codename;\" specifies that all of " @@ -6402,13 +6402,13 @@ msgstr "" "valore nelle preferenze di APT si deve usare la riga:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:457 +#: apt_preferences.5.xml:451 #, no-wrap msgid "Pin: release n=&testing-codename;\n" msgstr "Pin: release n=&testing-codename;\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:464 +#: apt_preferences.5.xml:458 msgid "" "names the release version. For example, the packages in the tree might " "belong to Debian release version &stable-version;. Note that there is " @@ -6425,7 +6425,7 @@ msgstr "" "APT si deve usare una delle seguenti righe:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:473 +#: apt_preferences.5.xml:467 #, no-wrap msgid "" "Pin: release v=&stable-version;\n" @@ -6437,12 +6437,12 @@ msgstr "" "Pin: release &stable-version;\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:482 +#: apt_preferences.5.xml:476 msgid "the <literal>Component:</literal> line" msgstr "la riga<literal>Component:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:483 +#: apt_preferences.5.xml:477 msgid "" "names the licensing component associated with the packages in the directory " "tree of the <filename>Release</filename> file. For example, the line " @@ -6460,18 +6460,18 @@ msgstr "" "usare la riga:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:492 +#: apt_preferences.5.xml:486 #, no-wrap msgid "Pin: release c=main\n" msgstr "Pin: release c=main\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:498 +#: apt_preferences.5.xml:492 msgid "the <literal>Origin:</literal> line" msgstr "la riga <literal>Origin:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:499 +#: apt_preferences.5.xml:493 msgid "" "names the originator of the packages in the directory tree of the " "<filename>Release</filename> file. Most commonly, this is <literal>Debian</" @@ -6483,18 +6483,18 @@ msgstr "" "specificare questa origine nelle preferenze di APT si deve usare la riga:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:505 +#: apt_preferences.5.xml:499 #, no-wrap msgid "Pin: release o=Debian\n" msgstr "Pin: release o=Debian\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:511 +#: apt_preferences.5.xml:505 msgid "the <literal>Label:</literal> line" msgstr "la riga <literal>Label:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:512 +#: apt_preferences.5.xml:506 msgid "" "names the label of the packages in the directory tree of the " "<filename>Release</filename> file. Most commonly, this is <literal>Debian</" @@ -6506,13 +6506,13 @@ msgstr "" "specificare questa etichetta nelle preferenze di APT si deve usare la riga:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:518 +#: apt_preferences.5.xml:512 #, no-wrap msgid "Pin: release l=Debian\n" msgstr "Pin: release l=Debian\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:525 +#: apt_preferences.5.xml:519 msgid "" "All of the <filename>Packages</filename> and <filename>Release</filename> " "files retrieved from locations listed in the &sources-list; file are stored " @@ -6537,12 +6537,12 @@ msgstr "" "<literal>unstable</literal>." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:538 +#: apt_preferences.5.xml:532 msgid "Optional Lines in an APT Preferences Record" msgstr "Righe opzionali in un record delle preferenze di APT" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:540 +#: apt_preferences.5.xml:534 msgid "" "Each record in the APT preferences file can optionally begin with one or " "more lines beginning with the word <literal>Explanation:</literal>. This " @@ -6553,12 +6553,12 @@ msgstr "" "literal>. Ciò fornisce un posto dove mettere commenti." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:549 +#: apt_preferences.5.xml:543 msgid "Tracking Stable" msgstr "Seguire Stable in modo continuativo" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:557 +#: apt_preferences.5.xml:551 #, no-wrap msgid "" "Explanation: Uninstall or do not install any Debian-originated\n" @@ -6583,7 +6583,7 @@ msgstr "" "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:551 +#: apt_preferences.5.xml:545 msgid "" "The following APT preferences file will cause APT to assign a priority " "higher than the default (500) to all package versions belonging to a " @@ -6599,8 +6599,8 @@ msgstr "" "\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:574 apt_preferences.5.xml:620 -#: apt_preferences.5.xml:678 +#: apt_preferences.5.xml:568 apt_preferences.5.xml:614 +#: apt_preferences.5.xml:672 #, no-wrap msgid "" "apt-get install <replaceable>package-name</replaceable>\n" @@ -6612,7 +6612,7 @@ msgstr "" "apt-get dist-upgrade\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:569 +#: apt_preferences.5.xml:563 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest " @@ -6625,13 +6625,13 @@ msgstr "" "\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:586 +#: apt_preferences.5.xml:580 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/testing\n" msgstr "apt-get install <replaceable>pacchetto</replaceable>/testing\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:580 +#: apt_preferences.5.xml:574 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>testing</literal> distribution; the package " @@ -6644,12 +6644,12 @@ msgstr "" "nuovamente questo comando. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:592 +#: apt_preferences.5.xml:586 msgid "Tracking Testing or Unstable" msgstr "Seguire Testing o Unstable in modo continuativo" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:601 +#: apt_preferences.5.xml:595 #, no-wrap msgid "" "Package: *\n" @@ -6677,7 +6677,7 @@ msgstr "" "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:594 +#: apt_preferences.5.xml:588 msgid "" "The following APT preferences file will cause APT to assign a high priority " "to package versions from the <literal>testing</literal> distribution, a " @@ -6694,7 +6694,7 @@ msgstr "" "literal>. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:615 +#: apt_preferences.5.xml:609 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest " @@ -6707,13 +6707,13 @@ msgstr "" "\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:635 +#: apt_preferences.5.xml:629 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/unstable\n" msgstr "apt-get install <replaceable>pacchetto</replaceable>/unstable\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:626 +#: apt_preferences.5.xml:620 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>unstable</literal> distribution. " @@ -6732,12 +6732,12 @@ msgstr "" "<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:642 +#: apt_preferences.5.xml:636 msgid "Tracking the evolution of a codename release" msgstr "Seguire l'evoluzione di un rilascio in base al nome in codice" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:656 +#: apt_preferences.5.xml:650 #, no-wrap msgid "" "Explanation: Uninstall or do not install any Debian-originated package versions\n" @@ -6772,7 +6772,7 @@ msgstr "" "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:644 +#: apt_preferences.5.xml:638 msgid "" "The following APT preferences file will cause APT to assign a priority " "higher than the default (500) to all package versions belonging to a " @@ -6799,7 +6799,7 @@ msgstr "" "id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:673 +#: apt_preferences.5.xml:667 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest version(s) in " @@ -6812,13 +6812,13 @@ msgstr "" "codename;</literal>. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:693 +#: apt_preferences.5.xml:687 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/sid\n" msgstr "apt-get install <replaceable>pacchetto</replaceable>/sid\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:684 +#: apt_preferences.5.xml:678 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>sid</literal> distribution. Thereafter, " @@ -6837,17 +6837,17 @@ msgstr "" "type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:708 +#: apt_preferences.5.xml:702 msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;" msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;" #. type: Content of: <refentry><refnamediv><refpurpose> -#: sources.list.5.xml:35 +#: sources.list.5.xml:29 msgid "List of configured APT data sources" msgstr "elenco delle fonti di dati configurate per APT" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:40 +#: sources.list.5.xml:34 msgid "" "The source list <filename>/etc/apt/sources.list</filename> is designed to " "support any number of active sources and a variety of source media. The file " @@ -6864,7 +6864,7 @@ msgstr "" "interfaccia per APT)." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:47 +#: sources.list.5.xml:41 msgid "" "Each line specifying a source starts with type (e.g. <literal>deb-src</" "literal>) followed by options and arguments for this type. Individual " @@ -6879,12 +6879,12 @@ msgstr "" "punto di una riga contrassegna come commento la parte rimanente della riga." #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:55 +#: sources.list.5.xml:49 msgid "sources.list.d" msgstr "sources.list.d" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:56 +#: sources.list.5.xml:50 msgid "" "The <filename>/etc/apt/sources.list.d</filename> directory provides a way to " "add sources.list entries in separate files. The format is the same as for " @@ -6906,12 +6906,12 @@ msgstr "" "caso viene ignorato in modo silenzioso." #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:67 +#: sources.list.5.xml:61 msgid "The deb and deb-src types" msgstr "I tipi deb e deb-src" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:68 +#: sources.list.5.xml:62 msgid "" "The <literal>deb</literal> type references a typical two-level Debian " "archive, <filename>distribution/component</filename>. The " @@ -6937,7 +6937,7 @@ msgstr "" "riga <literal>deb-src</literal>." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:79 +#: sources.list.5.xml:73 msgid "" "The format for a <filename>sources.list</filename> entry using the " "<literal>deb</literal> and <literal>deb-src</literal> types is:" @@ -6946,13 +6946,13 @@ msgstr "" "<literal>deb</literal> o <literal>deb-src</literal> è:" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:82 +#: sources.list.5.xml:76 #, no-wrap msgid "deb [ options ] uri suite [component1] [component2] [...]" msgstr "deb [ opzioni ] uri suite [componente1] [componente2] [...]" #. type: Content of: <refentry><refsect1><para><literallayout> -#: sources.list.5.xml:86 +#: sources.list.5.xml:80 #, no-wrap msgid "" " Types: deb deb-src\n" @@ -6992,7 +6992,7 @@ msgstr "" " " #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:84 +#: sources.list.5.xml:78 msgid "" "Alternatively a rfc822 style format is also supported: <placeholder type=" "\"literallayout\" id=\"0\"/>" @@ -7001,7 +7001,7 @@ msgstr "" "\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:105 +#: sources.list.5.xml:99 msgid "" "The URI for the <literal>deb</literal> type must specify the base of the " "Debian distribution, from which APT will find the information it needs. " @@ -7022,7 +7022,7 @@ msgstr "" "esatto, deve essere presente almeno una <literal>componente</literal>." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:114 +#: sources.list.5.xml:108 msgid "" "<literal>suite</literal> may also contain a variable, <literal>$(ARCH)</" "literal> which expands to the Debian architecture (such as <literal>amd64</" @@ -7041,7 +7041,7 @@ msgstr "" "automaticamente un URI con l'architettura corrente." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:122 +#: sources.list.5.xml:116 msgid "" "In the traditional style sources.list format since only one distribution can " "be specified per line it may be necessary to have multiple lines for the " @@ -7070,7 +7070,7 @@ msgstr "" "larghezza di banda." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:136 +#: sources.list.5.xml:130 msgid "" "<literal>options</literal> is always optional and needs to be surrounded by " "square brackets. It can consist of multiple settings in the form " @@ -7087,7 +7087,7 @@ msgstr "" "supportate verranno ignorate in modo silenzioso):" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:142 +#: sources.list.5.xml:136 msgid "" "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</" "replaceable>,…</literal> can be used to specify for which architectures " @@ -7102,7 +7102,7 @@ msgstr "" "Architectures</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:146 +#: sources.list.5.xml:140 msgid "" "<literal>arch+=<replaceable>arch1</replaceable>,<replaceable>arch2</" "replaceable>,…</literal> and <literal>arch-=<replaceable>arch1</replaceable>," @@ -7116,7 +7116,7 @@ msgstr "" "scaricate." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:149 +#: sources.list.5.xml:143 msgid "" "<literal>trusted=yes</literal> can be set to indicate that packages from " "this source are always authenticated even if the <filename>Release</" @@ -7133,7 +7133,7 @@ msgstr "" "tratta anche le fonti correttamente autenticate come non autenticate." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:156 +#: sources.list.5.xml:150 msgid "" "It is important to list sources in order of preference, with the most " "preferred source listed first. Typically this will result in sorting by " @@ -7146,12 +7146,12 @@ msgstr "" "in una rete locale, seguiti da host Internet distanti)." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:161 +#: sources.list.5.xml:155 msgid "Some examples:" msgstr "Alcuni esempi:" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:163 +#: sources.list.5.xml:157 #, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n" @@ -7163,17 +7163,17 @@ msgstr "" " " #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:169 +#: sources.list.5.xml:163 msgid "URI specification" msgstr "Specificare URI" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:171 +#: sources.list.5.xml:165 msgid "The currently recognized URI types are:" msgstr "I tipi di URI attualmente riconosciuti sono:" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:175 +#: sources.list.5.xml:169 msgid "" "The file scheme allows an arbitrary directory in the file system to be " "considered an archive. This is useful for NFS mounts and local mirrors or " @@ -7184,7 +7184,7 @@ msgstr "" "archivi locali." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:182 +#: sources.list.5.xml:176 msgid "" "The cdrom scheme allows APT to use a local CD-ROM drive with media swapping. " "Use the &apt-cdrom; program to create cdrom entries in the source list." @@ -7194,7 +7194,7 @@ msgstr "" "delle fonti." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:189 +#: sources.list.5.xml:183 msgid "" "The http scheme specifies an HTTP server for the archive. If an environment " "variable <envar>http_proxy</envar> is set with the format http://server:" @@ -7211,7 +7211,7 @@ msgstr "" "è un metodo di autenticazione non sicuro." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:200 +#: sources.list.5.xml:194 msgid "" "The ftp scheme specifies an FTP server for the archive. APT's FTP behavior " "is highly configurable; for more information see the &apt-conf; manual page. " @@ -7231,7 +7231,7 @@ msgstr "" "HTTP specificati nel file di configurazione verranno ignorati." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:212 +#: sources.list.5.xml:206 msgid "" "The copy scheme is identical to the file scheme except that packages are " "copied into the cache directory instead of used directly at their location. " @@ -7244,7 +7244,7 @@ msgstr "" "rimovibili, per copiare i file nelle varie posizioni con APT." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:219 +#: sources.list.5.xml:213 msgid "" "The rsh/ssh method invokes RSH/SSH to connect to a remote host and access " "the files as a given user. Prior configuration of rhosts or RSA keys is " @@ -7258,12 +7258,12 @@ msgstr "" "command> e <command>dd</command>." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: sources.list.5.xml:226 +#: sources.list.5.xml:220 msgid "adding more recognizable URI types" msgstr "aggiungere ulteriori tipi di URI riconoscibili" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:228 +#: sources.list.5.xml:222 msgid "" "APT can be extended with more methods shipped in other optional packages, " "which should follow the naming scheme <package>apt-transport-" @@ -7282,7 +7282,7 @@ msgstr "" "debtorrrent; vedere &apt-transport-debtorrent;." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:240 +#: sources.list.5.xml:234 msgid "" "Uses the archive stored locally (or NFS mounted) at /home/jason/debian for " "stable/main, stable/contrib, and stable/non-free." @@ -7291,37 +7291,37 @@ msgstr "" "debian per stable/main, stable/contrib e stable/non-free." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:242 +#: sources.list.5.xml:236 #, no-wrap msgid "deb file:/home/jason/debian stable main contrib non-free" msgstr "deb file:/home/gianni/debian stable main contrib non-free" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:244 +#: sources.list.5.xml:238 msgid "As above, except this uses the unstable (development) distribution." msgstr "" "Come sopra, tranne per il fatto che usa la distribuzione unstable (di " "sviluppo)" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:245 +#: sources.list.5.xml:239 #, no-wrap msgid "deb file:/home/jason/debian unstable main contrib non-free" msgstr "deb file:/home/gianni/debian unstable main contrib non-free" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:247 +#: sources.list.5.xml:241 msgid "Source line for the above" msgstr "Riga per i sorgenti corrispondente alla precedente" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:248 +#: sources.list.5.xml:242 #, no-wrap msgid "deb-src file:/home/jason/debian unstable main contrib non-free" msgstr "deb-src file:/home/gianni/debian unstable main contrib non-free" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:250 +#: sources.list.5.xml:244 msgid "" "The first line gets package information for the architectures in " "<literal>APT::Architectures</literal> while the second always retrieves " @@ -7332,7 +7332,7 @@ msgstr "" "<literal>amd64</literal> e <literal>armel</literal>." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:252 +#: sources.list.5.xml:246 #, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main\n" @@ -7342,7 +7342,7 @@ msgstr "" "deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:255 +#: sources.list.5.xml:249 msgid "" "Uses HTTP to access the archive at archive.debian.org, and uses only the " "hamm/main area." @@ -7351,13 +7351,13 @@ msgstr "" "hamm/main." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:257 +#: sources.list.5.xml:251 #, no-wrap msgid "deb http://archive.debian.org/debian-archive hamm main" msgstr "deb http://archive.debian.org/debian-archive hamm main" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:259 +#: sources.list.5.xml:253 msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the &stable-codename;/contrib area." @@ -7366,13 +7366,13 @@ msgstr "" "e usa solo l'area &stable-codename;/contrib." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:261 +#: sources.list.5.xml:255 #, no-wrap msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib" msgstr "deb ftp://ftp.debian.org/debian &stable-codename; contrib" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:263 +#: sources.list.5.xml:257 msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the unstable/contrib area. If this line appears as " @@ -7385,19 +7385,19 @@ msgstr "" "usata una sola sessione FTP per entrambe le righe." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:267 +#: sources.list.5.xml:261 #, no-wrap msgid "deb ftp://ftp.debian.org/debian unstable contrib" msgstr "deb ftp://ftp.debian.org/debian unstable contrib" #. type: Content of: <refentry><refsect1><para><literallayout> -#: sources.list.5.xml:276 +#: sources.list.5.xml:270 #, no-wrap msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/" msgstr "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:269 +#: sources.list.5.xml:263 msgid "" "Uses HTTP to access the archive at ftp.tlh.debian.org, under the universe " "directory, and uses only files found under <filename>unstable/binary-i386</" @@ -7416,17 +7416,17 @@ msgstr "" "modo.] <placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:281 +#: sources.list.5.xml:275 msgid "&apt-cache; &apt-conf;" msgstr "&apt-cache; &apt-conf;" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt-extracttemplates.1.xml:28 apt-sortpkgs.1.xml:28 apt-ftparchive.1.xml:28 +#: apt-extracttemplates.1.xml:22 apt-sortpkgs.1.xml:22 apt-ftparchive.1.xml:22 msgid "1" msgstr "1" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-extracttemplates.1.xml:35 +#: apt-extracttemplates.1.xml:29 msgid "" "Utility to extract <command>debconf</command> config and templates from " "Debian packages" @@ -7435,7 +7435,7 @@ msgstr "" "pacchetti Debian" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:41 +#: apt-extracttemplates.1.xml:35 msgid "" "<command>apt-extracttemplates</command> will take one or more Debian package " "files as input and write out (to a temporary directory) all associated " @@ -7450,12 +7450,12 @@ msgstr "" "output nel formato:" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:46 +#: apt-extracttemplates.1.xml:40 msgid "package version template-file config-script" msgstr "pacchetto versione file-template script-di-configurazione" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:47 +#: apt-extracttemplates.1.xml:41 msgid "" "template-file and config-script are written to the temporary directory " "specified by the <option>-t</option> or <option>--tempdir</option> " @@ -7470,7 +7470,7 @@ msgstr "" "<filename>pacchetto.config.XXXXXX</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-extracttemplates.1.xml:60 +#: apt-extracttemplates.1.xml:54 msgid "" "Temporary directory in which to write extracted <command>debconf</command> " "template files and config scripts. Configuration Item: <literal>APT::" @@ -7481,7 +7481,7 @@ msgstr "" "<literal>APT::ExtractTemplates::TempDir</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:77 +#: apt-extracttemplates.1.xml:71 msgid "" "<command>apt-extracttemplates</command> returns zero on normal operation, " "decimal 100 on error." @@ -7490,12 +7490,12 @@ msgstr "" "funzionamento normale e il valore decimale 100 in caso di errore." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-sortpkgs.1.xml:35 +#: apt-sortpkgs.1.xml:29 msgid "Utility to sort package index files" msgstr "utilità per ordinare i file indice dei pacchetti" #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:41 +#: apt-sortpkgs.1.xml:35 msgid "" "<command>apt-sortpkgs</command> will take an index file (source index or " "package index) and sort the records so that they are ordered by the package " @@ -7507,7 +7507,7 @@ msgstr "" "i campi interni ad ogni record in base alle regole di ordinamento interne." #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:47 +#: apt-sortpkgs.1.xml:41 msgid "" "All output is sent to standard output; the input must be a seekable file." msgstr "" @@ -7515,7 +7515,7 @@ msgstr "" "file leggibile con seek." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-sortpkgs.1.xml:56 +#: apt-sortpkgs.1.xml:50 msgid "" "Use source index field ordering. Configuration Item: <literal>APT::" "SortPkgs::Source</literal>." @@ -7524,7 +7524,7 @@ msgstr "" "configurazione: <literal>APT::SortPkgs::Source</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:70 +#: apt-sortpkgs.1.xml:64 msgid "" "<command>apt-sortpkgs</command> returns zero on normal operation, decimal " "100 on error." @@ -7533,12 +7533,12 @@ msgstr "" "normale e il valore decimale 100 in caso di errore." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-ftparchive.1.xml:35 +#: apt-ftparchive.1.xml:29 msgid "Utility to generate index files" msgstr "strumento per generare file indice" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:41 +#: apt-ftparchive.1.xml:35 msgid "" "<command>apt-ftparchive</command> is the command line tool that generates " "the index files that APT uses to access a distribution source. The index " @@ -7551,7 +7551,7 @@ msgstr "" "di tale sito." #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:45 +#: apt-ftparchive.1.xml:39 msgid "" "<command>apt-ftparchive</command> is a superset of the &dpkg-scanpackages; " "program, incorporating its entire functionality via the <literal>packages</" @@ -7566,7 +7566,7 @@ msgstr "" "tramite script il processo di generazione per un archivio completo." #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:51 +#: apt-ftparchive.1.xml:45 msgid "" "Internally <command>apt-ftparchive</command> can make use of binary " "databases to cache the contents of a .deb file and it does not rely on any " @@ -7581,7 +7581,7 @@ msgstr "" "compressi desiderati in uscita." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:62 +#: apt-ftparchive.1.xml:56 msgid "" "The packages command generates a package file from a directory tree. It " "takes the given directory and recursively searches it for .deb files, " @@ -7594,7 +7594,7 @@ msgstr "" "equivalente a &dpkg-scanpackages;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:67 apt-ftparchive.1.xml:91 +#: apt-ftparchive.1.xml:61 apt-ftparchive.1.xml:85 msgid "" "The option <option>--db</option> can be used to specify a binary caching DB." msgstr "" @@ -7602,7 +7602,7 @@ msgstr "" "binario da usare come cache." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:72 +#: apt-ftparchive.1.xml:66 msgid "" "The <literal>sources</literal> command generates a source index file from a " "directory tree. It takes the given directory and recursively searches it " @@ -7615,7 +7615,7 @@ msgstr "" "comando è più o meno equivalente a &dpkg-scansources;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:77 +#: apt-ftparchive.1.xml:71 msgid "" "If an override file is specified then a source override file will be looked " "for with an extension of .src. The --source-override option can be used to " @@ -7626,7 +7626,7 @@ msgstr "" "per cambiare il file override sorgente da usare." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:84 +#: apt-ftparchive.1.xml:78 msgid "" "The <literal>contents</literal> command generates a contents file from a " "directory tree. It takes the given directory and recursively searches it " @@ -7643,7 +7643,7 @@ msgstr "" "stesso file, ciascun pacchetto è separato da una virgola nell'output." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:96 +#: apt-ftparchive.1.xml:90 msgid "" "The <literal>release</literal> command generates a Release file from a " "directory tree. It recursively searches the given directory for uncompressed " @@ -7668,7 +7668,7 @@ msgstr "" "filename> contenente per ogni file un digest MD5, SHA1 e SHA256." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:106 +#: apt-ftparchive.1.xml:100 msgid "" "Values for the additional metadata fields in the Release file are taken from " "the corresponding variables under <literal>APT::FTPArchive::Release</" @@ -7689,7 +7689,7 @@ msgstr "" "<literal>Description</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:119 +#: apt-ftparchive.1.xml:113 msgid "" "The <literal>generate</literal> command is designed to be runnable from a " "cron script and builds indexes according to the given config file. The " @@ -7705,7 +7705,7 @@ msgstr "" "impostazioni desiderate." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:128 +#: apt-ftparchive.1.xml:122 msgid "" "The <literal>clean</literal> command tidies the databases used by the given " "configuration file by removing any records that are no longer necessary." @@ -7714,12 +7714,12 @@ msgstr "" "configurazione dato, rimuovendo tutti i record non più necessari." #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:134 +#: apt-ftparchive.1.xml:128 msgid "The Generate Configuration" msgstr "La configurazione di generate" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:136 +#: apt-ftparchive.1.xml:130 msgid "" "The <literal>generate</literal> command uses a configuration file to " "describe the archives that are going to be generated. It follows the typical " @@ -7736,7 +7736,7 @@ msgstr "" "Ciò ha effetto soltanto sulla gestione del tag di ambito." #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:144 +#: apt-ftparchive.1.xml:138 msgid "" "The generate configuration has four separate sections, each described below." msgstr "" @@ -7744,12 +7744,12 @@ msgstr "" "quali è descritta in seguito." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:146 +#: apt-ftparchive.1.xml:140 msgid "<literal>Dir</literal> Section" msgstr "Sezione <literal>Dir</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:148 +#: apt-ftparchive.1.xml:142 msgid "" "The <literal>Dir</literal> section defines the standard directories needed " "to locate the files required during the generation process. These " @@ -7762,7 +7762,7 @@ msgstr "" "sezioni successive, per produrre un percorso assoluto completo." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:155 +#: apt-ftparchive.1.xml:149 msgid "" "Specifies the root of the FTP archive, in a standard Debian configuration " "this is the directory that contains the <filename>ls-LR</filename> and dist " @@ -7772,17 +7772,17 @@ msgstr "" "questa è la directory che contiene i nodi <filename>ls-LR</filename> e dist." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:162 +#: apt-ftparchive.1.xml:156 msgid "Specifies the location of the override files." msgstr "Specifica la posizione dei file override." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:167 +#: apt-ftparchive.1.xml:161 msgid "Specifies the location of the cache files." msgstr "Specifica la posizione dei file cache." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:172 +#: apt-ftparchive.1.xml:166 msgid "" "Specifies the location of the file list files, if the <literal>FileList</" "literal> setting is used below." @@ -7791,12 +7791,12 @@ msgstr "" "l'impostazione <literal>FileList</literal> sotto." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:178 +#: apt-ftparchive.1.xml:172 msgid "<literal>Default</literal> Section" msgstr "Sezione <literal>Default</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:180 +#: apt-ftparchive.1.xml:174 msgid "" "The <literal>Default</literal> section specifies default values, and " "settings that control the operation of the generator. Other sections may " @@ -7807,7 +7807,7 @@ msgstr "" "possono scavalcare questi valori tramite impostazioni definite per sezione." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:186 +#: apt-ftparchive.1.xml:180 msgid "" "Sets the default compression schemes to use for the package index files. It " "is a string that contains a space separated list of at least one of: '.' (no " @@ -7820,7 +7820,7 @@ msgstr "" "predefinito per tutti gli schemi di compressione è «. gzip»." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:194 +#: apt-ftparchive.1.xml:188 msgid "" "Sets the default list of file extensions that are package files. This " "defaults to '.deb'." @@ -7829,7 +7829,7 @@ msgstr "" "file dei pacchetti. Il valore predefinito è «.deb»." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:200 +#: apt-ftparchive.1.xml:194 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Sources files." @@ -7838,7 +7838,7 @@ msgstr "" "controlla la compressione dei file Sources." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:206 +#: apt-ftparchive.1.xml:200 msgid "" "Sets the default list of file extensions that are source files. This " "defaults to '.dsc'." @@ -7847,7 +7847,7 @@ msgstr "" "sorgenti. Il valore predefinito è «.dsc»." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:212 +#: apt-ftparchive.1.xml:206 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Contents files." @@ -7856,7 +7856,7 @@ msgstr "" "controlla la compressione dei file Contents." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:218 +#: apt-ftparchive.1.xml:212 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Translation-en master file." @@ -7865,7 +7865,7 @@ msgstr "" "controlla la compressione del file principale Translation-en." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:224 +#: apt-ftparchive.1.xml:218 msgid "" "Specifies the number of kilobytes to delink (and replace with hard links) " "per run. This is used in conjunction with the per-section <literal>External-" @@ -7876,7 +7876,7 @@ msgstr "" "per sezione <literal>External-Links</literal>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:231 +#: apt-ftparchive.1.xml:225 msgid "" "Specifies the mode of all created index files. It defaults to 0644. All " "index files are set to this mode with no regard to the umask." @@ -7886,7 +7886,7 @@ msgstr "" "dall'umask." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:238 apt-ftparchive.1.xml:384 +#: apt-ftparchive.1.xml:232 apt-ftparchive.1.xml:378 msgid "" "Specifies whether long descriptions should be included in the " "<filename>Packages</filename> file or split out into a master " @@ -7897,12 +7897,12 @@ msgstr "" "en</filename> principale." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:244 +#: apt-ftparchive.1.xml:238 msgid "<literal>TreeDefault</literal> Section" msgstr "Sezione <literal>TreeDefault</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:246 +#: apt-ftparchive.1.xml:240 msgid "" "Sets defaults specific to <literal>Tree</literal> sections. All of these " "variables are substitution variables and have the strings $(DIST), " @@ -7913,7 +7913,7 @@ msgstr "" "$(DIST), $(SECTION) e $(ARCH) verranno sostituite dai loro rispettivi valori." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:253 +#: apt-ftparchive.1.xml:247 msgid "" "Sets the number of kilobytes of contents files that are generated each day. " "The contents files are round-robined so that over several days they will all " @@ -7924,7 +7924,7 @@ msgstr "" "tutti nel giro di alcuni giorni." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:260 +#: apt-ftparchive.1.xml:254 msgid "" "Controls the number of days a contents file is allowed to be checked without " "changing. If this limit is passed the mtime of the contents file is updated. " @@ -7943,7 +7943,7 @@ msgstr "" "sono espressi in giorni." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:271 +#: apt-ftparchive.1.xml:265 msgid "" "Sets the top of the .deb directory tree. Defaults to <filename>$(DIST)/" "$(SECTION)/binary-$(ARCH)/</filename>" @@ -7952,7 +7952,7 @@ msgstr "" "predefinito è <filename>$(DIST)/$(SECTION)/binary-$(ARCH)/</filename>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:277 +#: apt-ftparchive.1.xml:271 msgid "" "Sets the top of the source package directory tree. Defaults to <filename>" "$(DIST)/$(SECTION)/source/</filename>" @@ -7961,7 +7961,7 @@ msgstr "" "valore predefinito è <filename>$(DIST)/$(SECTION)/source/</filename>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:283 +#: apt-ftparchive.1.xml:277 msgid "" "Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/" "binary-$(ARCH)/Packages</filename>" @@ -7970,7 +7970,7 @@ msgstr "" "$(DIST)/$(SECTION)/binary-$(ARCH)/Packages</filename>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:289 +#: apt-ftparchive.1.xml:283 msgid "" "Sets the output Sources file. Defaults to <filename>$(DIST)/$(SECTION)/" "source/Sources</filename>" @@ -7979,7 +7979,7 @@ msgstr "" "$(SECTION)/source/Sources</filename>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:295 +#: apt-ftparchive.1.xml:289 msgid "" "Sets the output Translation-en master file with the long descriptions if " "they should be not included in the Packages file. Defaults to <filename>" @@ -7990,7 +7990,7 @@ msgstr "" "predefinito è <filename>$(DIST)/$(SECTION)/i18n/Translation-en</filename>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:302 +#: apt-ftparchive.1.xml:296 msgid "" "Sets the path prefix that causes a symlink to be considered an internal link " "instead of an external link. Defaults to <filename>$(DIST)/$(SECTION)/</" @@ -8001,7 +8001,7 @@ msgstr "" "predefinito è <filename>$(DIST)/$(SECTION)/</filename>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:309 +#: apt-ftparchive.1.xml:303 msgid "" "Sets the output Contents file. Defaults to <filename>$(DIST)/$(SECTION)/" "Contents-$(ARCH)</filename>. If this setting causes multiple Packages files " @@ -8016,12 +8016,12 @@ msgstr "" "automaticamente insieme questi file dei pacchetti." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:318 +#: apt-ftparchive.1.xml:312 msgid "Sets header file to prepend to the contents output." msgstr "Imposta il file di intestazione da anteporre all'output dei contenuti." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:323 +#: apt-ftparchive.1.xml:317 msgid "" "Sets the binary cache database to use for this section. Multiple sections " "can share the same database." @@ -8030,7 +8030,7 @@ msgstr "" "stesso database può essere condiviso da più sezioni." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:329 +#: apt-ftparchive.1.xml:323 msgid "" "Specifies that instead of walking the directory tree, <command>apt-" "ftparchive</command> should read the list of files from the given file. " @@ -8041,7 +8041,7 @@ msgstr "" "relativi dei file vengono fatti precedere dalla directory archivio." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:336 +#: apt-ftparchive.1.xml:330 msgid "" "Specifies that instead of walking the directory tree, <command>apt-" "ftparchive</command> should read the list of files from the given file. " @@ -8054,12 +8054,12 @@ msgstr "" "opzione viene usata quando si elaborano gli indici dei sorgenti." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:344 +#: apt-ftparchive.1.xml:338 msgid "<literal>Tree</literal> Section" msgstr "Sezione <literal>Tree</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:346 +#: apt-ftparchive.1.xml:340 msgid "" "The <literal>Tree</literal> section defines a standard Debian file tree " "which consists of a base directory, then multiple sections in that base " @@ -8074,7 +8074,7 @@ msgstr "" "<literal>Directory</literal>." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:351 +#: apt-ftparchive.1.xml:345 msgid "" "The <literal>Tree</literal> section takes a scope tag which sets the " "<literal>$(DIST)</literal> variable and defines the root of the tree (the " @@ -8087,7 +8087,7 @@ msgstr "" "è un'impostazione simile a <filename>dists/&stable-codename;</filename>." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:356 +#: apt-ftparchive.1.xml:350 msgid "" "All of the settings defined in the <literal>TreeDefault</literal> section " "can be used in a <literal>Tree</literal> section as well as three new " @@ -8098,7 +8098,7 @@ msgstr "" "nuove variabili." #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt-ftparchive.1.xml:362 +#: apt-ftparchive.1.xml:356 #, no-wrap msgid "" "for i in Sections do \n" @@ -8112,7 +8112,7 @@ msgstr "" " " #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:359 +#: apt-ftparchive.1.xml:353 msgid "" "When processing a <literal>Tree</literal> section <command>apt-ftparchive</" "command> performs an operation similar to: <placeholder type=\"programlisting" @@ -8123,7 +8123,7 @@ msgstr "" "id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:370 +#: apt-ftparchive.1.xml:364 msgid "" "This is a space separated list of sections which appear under the " "distribution; typically this is something like <literal>main contrib non-" @@ -8133,7 +8133,7 @@ msgstr "" "da spazi; tipicamente è simile a <literal>main contrib non-free</literal>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:377 +#: apt-ftparchive.1.xml:371 msgid "" "This is a space separated list of all the architectures that appear under " "search section. The special architecture 'source' is used to indicate that " @@ -8144,7 +8144,7 @@ msgstr "" "questo albero ha un archivio sorgente." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:390 +#: apt-ftparchive.1.xml:384 msgid "" "Sets the binary override file. The override file contains section, priority " "and maintainer address information." @@ -8153,7 +8153,7 @@ msgstr "" "sulla sezione, la priorità e l'indirizzo del manutentore." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:396 +#: apt-ftparchive.1.xml:390 msgid "" "Sets the source override file. The override file contains section " "information." @@ -8162,22 +8162,22 @@ msgstr "" "sulla sezione." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:402 apt-ftparchive.1.xml:448 +#: apt-ftparchive.1.xml:396 apt-ftparchive.1.xml:442 msgid "Sets the binary extra override file." msgstr "Imposta il file override binario extra." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:407 apt-ftparchive.1.xml:453 +#: apt-ftparchive.1.xml:401 apt-ftparchive.1.xml:447 msgid "Sets the source extra override file." msgstr "Imposta il file override sorgente extra." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:412 +#: apt-ftparchive.1.xml:406 msgid "<literal>BinDirectory</literal> Section" msgstr "Sezione <literal>BinDirectory</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:414 +#: apt-ftparchive.1.xml:408 msgid "" "The <literal>bindirectory</literal> section defines a binary directory tree " "with no special structure. The scope tag specifies the location of the " @@ -8192,12 +8192,12 @@ msgstr "" "impostazioni <literal>Section</literal><literal>Architecture</literal>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:422 +#: apt-ftparchive.1.xml:416 msgid "Sets the Packages file output." msgstr "Imposta l'output del file Packages." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:427 +#: apt-ftparchive.1.xml:421 msgid "" "Sets the Sources file output. At least one of <literal>Packages</literal> or " "<literal>Sources</literal> is required." @@ -8206,42 +8206,42 @@ msgstr "" "<literal>Packages</literal> e <literal>Sources</literal>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:433 +#: apt-ftparchive.1.xml:427 msgid "Sets the Contents file output (optional)." msgstr "Imposta l'output del file Contents (opzionale)." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:438 +#: apt-ftparchive.1.xml:432 msgid "Sets the binary override file." msgstr "Imposta il file override binario." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:443 +#: apt-ftparchive.1.xml:437 msgid "Sets the source override file." msgstr "Imposta il file override sorgente." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:458 +#: apt-ftparchive.1.xml:452 msgid "Sets the cache DB." msgstr "Imposta il DB della cache." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:463 +#: apt-ftparchive.1.xml:457 msgid "Appends a path to all the output paths." msgstr "Aggiunge un percorso a tutti i percorsi di uscita." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:468 +#: apt-ftparchive.1.xml:462 msgid "Specifies the file list file." msgstr "Specifica il file con l'elenco dei file." #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:475 +#: apt-ftparchive.1.xml:469 msgid "The Binary Override File" msgstr "Il file override binario" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:476 +#: apt-ftparchive.1.xml:470 msgid "" "The binary override file is fully compatible with &dpkg-scanpackages;. It " "contains four fields separated by spaces. The first field is the package " @@ -8256,19 +8256,19 @@ msgstr "" "campo di permutazione del manutentore." #. type: Content of: <refentry><refsect1><para><literallayout> -#: apt-ftparchive.1.xml:482 +#: apt-ftparchive.1.xml:476 #, no-wrap msgid "old [// oldn]* => new" msgstr "vecchio [// vecchio...]* => nuovo" #. type: Content of: <refentry><refsect1><para><literallayout> -#: apt-ftparchive.1.xml:484 +#: apt-ftparchive.1.xml:478 #, no-wrap msgid "new" msgstr "nuovo" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:481 +#: apt-ftparchive.1.xml:475 msgid "" "The general form of the maintainer field is: <placeholder type=" "\"literallayout\" id=\"0\"/> or simply, <placeholder type=\"literallayout\" " @@ -8285,12 +8285,12 @@ msgstr "" "seconda forma sostituisce invariabilmente il campo manutentore." #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:492 +#: apt-ftparchive.1.xml:486 msgid "The Source Override File" msgstr "Il file override sorgente" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:494 +#: apt-ftparchive.1.xml:488 msgid "" "The source override file is fully compatible with &dpkg-scansources;. It " "contains two fields separated by spaces. The first field is the source " @@ -8301,12 +8301,12 @@ msgstr "" "del pacchetto sorgente, il secondo è la sezione a cui assegnarlo." #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:499 +#: apt-ftparchive.1.xml:493 msgid "The Extra Override File" msgstr "Il file override extra" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:501 +#: apt-ftparchive.1.xml:495 msgid "" "The extra override file allows any arbitrary tag to be added or replaced in " "the output. It has three columns, the first is the package, the second is " @@ -8317,7 +8317,7 @@ msgstr "" "tag e il resto della riga è il nuovo valore." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:512 +#: apt-ftparchive.1.xml:506 msgid "" "Generate the given checksum. These options default to on, when turned off " "the generated index files will not have the checksum fields where possible. " @@ -8342,7 +8342,7 @@ msgstr "" "<literal>SHA256</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:523 +#: apt-ftparchive.1.xml:517 msgid "" "Use a binary caching DB. This has no effect on the generate command. " "Configuration Item: <literal>APT::FTPArchive::DB</literal>." @@ -8351,7 +8351,7 @@ msgstr "" "Voce di configurazione: <literal>APT::FTPArchive::DB</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:529 +#: apt-ftparchive.1.xml:523 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quiet up to a maximum of 2. You can also use " @@ -8365,7 +8365,7 @@ msgstr "" "configurazione. Voce di configurazione: <literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:537 +#: apt-ftparchive.1.xml:531 msgid "" "Perform Delinking. If the <literal>External-Links</literal> setting is used " "then this option actually enables delinking of the files. It defaults to on " @@ -8379,7 +8379,7 @@ msgstr "" "FTPArchive::DeLinkAct</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:545 +#: apt-ftparchive.1.xml:539 msgid "" "Perform contents generation. When this option is set and package indexes are " "being generated with a cache DB then the file listing will also be extracted " @@ -8395,7 +8395,7 @@ msgstr "" "configurazione: <literal>APT::FTPArchive::Contents</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:555 +#: apt-ftparchive.1.xml:549 msgid "" "Select the source override file to use with the <literal>sources</literal> " "command. Configuration Item: <literal>APT::FTPArchive::SourceOverride</" @@ -8406,7 +8406,7 @@ msgstr "" "SourceOverride</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:561 +#: apt-ftparchive.1.xml:555 msgid "" "Make the caching databases read only. Configuration Item: <literal>APT::" "FTPArchive::ReadOnlyDB</literal>." @@ -8415,7 +8415,7 @@ msgstr "" "<literal>APT::FTPArchive::ReadOnlyDB</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:566 +#: apt-ftparchive.1.xml:560 msgid "" "Accept in the <literal>packages</literal> and <literal>contents</literal> " "commands only package files matching <literal>*_arch.deb</literal> or " @@ -8429,7 +8429,7 @@ msgstr "" "Architecture</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:574 +#: apt-ftparchive.1.xml:568 msgid "" "&apt-ftparchive; caches as much as possible of metadata in a cachedb. If " "packages are recompiled and/or republished with the same version again, this " @@ -8452,7 +8452,7 @@ msgstr "" "tutti questi controlli aggiuntivi sono inutili." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:586 +#: apt-ftparchive.1.xml:580 msgid "" "This configuration option defaults to \"<literal>true</literal>\" and should " "only be set to <literal>\"false\"</literal> if the Archive generated with " @@ -8468,13 +8468,13 @@ msgstr "" "comando generate." #. type: Content of: <refentry><refsect1><para><programlisting> -#: apt-ftparchive.1.xml:604 +#: apt-ftparchive.1.xml:598 #, no-wrap msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" msgstr "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:600 +#: apt-ftparchive.1.xml:594 msgid "" "To create a compressed Packages file for a directory containing binary " "packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>" @@ -8483,7 +8483,7 @@ msgstr "" "binari (.deb): <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:614 +#: apt-ftparchive.1.xml:608 msgid "" "<command>apt-ftparchive</command> returns zero on normal operation, decimal " "100 on error." @@ -8492,32 +8492,32 @@ msgstr "" "normale e il valore decimale 100 in caso di errore." #. type: Attribute 'lang' of: <book> -#: guide.dbk:8 offline.dbk:8 +#: guide.dbk:9 offline.dbk:9 msgid "en" msgstr "it" #. type: Content of: <book><title> -#: guide.dbk:10 +#: guide.dbk:11 msgid "APT User's Guide" msgstr "Guida dell'utente di APT" #. type: Content of: <book><bookinfo><authorgroup><author><personname> -#: guide.dbk:16 offline.dbk:16 +#: guide.dbk:17 offline.dbk:17 msgid "Jason Gunthorpe" msgstr "Jason Gunthorpe" #. type: Content of: <book><bookinfo><authorgroup><author><email> -#: guide.dbk:16 offline.dbk:16 +#: guide.dbk:17 offline.dbk:17 msgid "jgg@debian.org" msgstr "jgg@debian.org" #. type: Content of: <book><bookinfo><releaseinfo> -#: guide.dbk:20 offline.dbk:20 +#: guide.dbk:21 offline.dbk:21 msgid "Version &apt-product-version;" msgstr "" #. type: Content of: <book><bookinfo><abstract><para> -#: guide.dbk:24 +#: guide.dbk:25 msgid "" "This document provides an overview of how to use the the APT package manager." msgstr "" @@ -8525,19 +8525,19 @@ msgstr "" "pacchetti APT." #. type: Content of: <book><bookinfo> -#: guide.dbk:28 +#: guide.dbk:29 msgid "" "<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" msgstr "" "<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" #. type: Content of: <book><bookinfo><legalnotice><title> -#: guide.dbk:31 offline.dbk:32 +#: guide.dbk:32 offline.dbk:33 msgid "License Notice" msgstr "" #. type: Content of: <book><bookinfo><legalnotice><para> -#: guide.dbk:33 offline.dbk:34 +#: guide.dbk:34 offline.dbk:35 msgid "" "\"APT\" and this document are free software; you can redistribute them and/" "or modify them under the terms of the GNU General Public License as " @@ -8550,7 +8550,7 @@ msgstr "" "scelta) qualsiasi versione successiva." #. type: Content of: <book><bookinfo><legalnotice><para> -#: guide.dbk:42 offline.dbk:40 +#: guide.dbk:43 offline.dbk:41 msgid "" "For more details, on Debian systems, see the file /usr/share/common-licenses/" "GPL for the full license." @@ -8559,12 +8559,12 @@ msgstr "" "licenza nel file /usr/share/common-licenses/GPL." #. type: Content of: <book><chapter><title> -#: guide.dbk:49 +#: guide.dbk:50 msgid "General" msgstr "Descrizione generale" #. type: Content of: <book><chapter><para> -#: guide.dbk:51 +#: guide.dbk:52 msgid "" "The APT package currently contains two sections, the APT <command>dselect</" "command> method and the <command>apt-get</command> command line user " @@ -8577,12 +8577,12 @@ msgstr "" "rimuovere pacchetti, così come per scaricarne di nuovi da Internet." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:57 +#: guide.dbk:58 msgid "Anatomy of the Package System" msgstr "Anatomia del sistema dei pacchetti" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:59 +#: guide.dbk:60 msgid "" "The Debian packaging system has a large amount of information associated " "with each package to help assure that it integrates cleanly and easily into " @@ -8594,7 +8594,7 @@ msgstr "" "sistema di dipendenze." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:64 +#: guide.dbk:65 msgid "" "The dependency system allows individual programs to make use of shared " "elements in the system such as libraries. It simplifies placing infrequently " @@ -8610,7 +8610,7 @@ msgstr "" "trasferimento della posta elettronica, i server X e così via." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:71 +#: guide.dbk:72 msgid "" "The first step to understanding the dependency system is to grasp the " "concept of a simple dependency. The meaning of a simple dependency is that a " @@ -8622,7 +8622,7 @@ msgstr "" "installato insieme ad esso per poter funzionare." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:76 +#: guide.dbk:77 msgid "" "For instance, mailcrypt is an emacs extension that aids in encrypting email " "with GPG. Without GPGP installed mailcrypt is useless, so mailcrypt has a " @@ -8636,7 +8636,7 @@ msgstr "" "semplice da emacs, senza il quale è totalmente inutile." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:82 +#: guide.dbk:83 msgid "" "The other important dependency to understand is a conflicting dependency. It " "means that a package, when installed with another package, will not work and " @@ -8658,7 +8658,7 @@ msgstr "" "una dipendenza di conflitto verso tutti gli altri." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:92 +#: guide.dbk:93 msgid "" "As an added complication there is the possibility for a package to pretend " "to be another package. Consider that exim and sendmail for many intents are " @@ -8680,7 +8680,7 @@ msgstr "" "pacchetti, questo può portare a moltissima confusione." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:102 +#: guide.dbk:103 msgid "" "At any given time a single dependency may be met by packages that are " "already installed or it may not be. APT attempts to help resolve dependency " @@ -8693,12 +8693,12 @@ msgstr "" "selezionare i pacchetti da installare." #. type: Content of: <book><chapter><title> -#: guide.dbk:111 +#: guide.dbk:112 msgid "apt-get" msgstr "apt-get" #. type: Content of: <book><chapter><para> -#: guide.dbk:113 +#: guide.dbk:114 msgid "" "<command>apt-get</command> provides a simple way to install packages from " "the command line. Unlike <command>dpkg</command>, <command>apt-get</command> " @@ -8712,7 +8712,7 @@ msgstr "" "emphasis>." #. type: Content of: <book><chapter><para><footnote><para> -#: guide.dbk:119 +#: guide.dbk:120 msgid "" "If you are using an http proxy server you must set the http_proxy " "environment variable first, see sources.list(5)" @@ -8721,7 +8721,7 @@ msgstr "" "variabile d'ambiente http_proxy; vedere sources.list(5)." #. type: Content of: <book><chapter><para> -#: guide.dbk:119 +#: guide.dbk:120 msgid "" "The first <placeholder type=\"footnote\" id=\"0\"/> thing that should be " "done before using <command>apt-get</command> is to fetch the package lists " @@ -8734,7 +8734,7 @@ msgstr "" "sono disponibili. Lo si fa con <literal>apt-get update</literal>. Ad esempio," #. type: Content of: <book><chapter><screen> -#: guide.dbk:127 +#: guide.dbk:128 #, no-wrap msgid "" "# apt-get update\n" @@ -8750,17 +8750,17 @@ msgstr "" "Generazione albero delle dipendenze... Fatto\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:134 +#: guide.dbk:135 msgid "Once updated there are several commands that can be used:" msgstr "Una volta aggiornato l'elenco, si possono usare svariati comandi:" #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:138 +#: guide.dbk:139 msgid "upgrade" msgstr "upgrade" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:141 +#: guide.dbk:142 msgid "" "Upgrade will attempt to gently upgrade the whole system. Upgrade will never " "install a new package or remove an existing package, nor will it ever " @@ -8781,12 +8781,12 @@ msgstr "" "<command>dselect</command> o <literal>apt-get install</literal>." #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:153 +#: guide.dbk:154 msgid "install" msgstr "install" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:156 +#: guide.dbk:157 msgid "" "Install is used to install packages by name. The package is automatically " "fetched and installed. This can be useful if you already know the name of " @@ -8806,12 +8806,12 @@ msgstr "" "comando." #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:167 +#: guide.dbk:168 msgid "dist-upgrade" msgstr "dist-upgrade" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:170 +#: guide.dbk:171 msgid "" "Dist-upgrade is a complete upgrader designed to simplify upgrading between " "releases of Debian. It uses a sophisticated algorithm to determine the best " @@ -8833,7 +8833,7 @@ msgstr "" "eventuali pacchetti che sono stati tralasciati." #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:180 +#: guide.dbk:181 msgid "" "It is important to closely look at what dist-upgrade is going to do, its " "decisions may sometimes be quite surprising." @@ -8842,7 +8842,7 @@ msgstr "" "che le sue decisioni a volte possono essere abbastanza sorprendenti." #. type: Content of: <book><chapter><para> -#: guide.dbk:187 +#: guide.dbk:188 #, fuzzy #| msgid "" #| "<command>apt-get</command> has several command line options that are " @@ -8874,12 +8874,12 @@ msgstr "" "lo stesso comando senza l'opzione <literal>-d</literal>." #. type: Content of: <book><chapter><title> -#: guide.dbk:199 +#: guide.dbk:200 msgid "DSelect" msgstr "DSelect" #. type: Content of: <book><chapter><para> -#: guide.dbk:201 +#: guide.dbk:202 msgid "" "The APT <command>dselect</command> method provides the complete APT system " "with the <command>dselect</command> package selection GUI. <command>dselect</" @@ -8893,7 +8893,7 @@ msgstr "" "installazione." #. type: Content of: <book><chapter><para> -#: guide.dbk:207 +#: guide.dbk:208 msgid "" "To enable the APT method you need to select [A]ccess in <command>dselect</" "command> and then choose the APT method. You will be prompted for a set of " @@ -8917,7 +8917,7 @@ msgstr "" "i pacchetti sul CD-ROM prima di scaricarli da Internet." #. type: Content of: <book><chapter><screen> -#: guide.dbk:218 +#: guide.dbk:219 #, no-wrap msgid "" " Set up a list of distribution source locations\n" @@ -8947,7 +8947,7 @@ msgstr "" " URL [http://llug.sep.bnl.gov/debian]:\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:232 +#: guide.dbk:233 msgid "" "The <emphasis>Sources</emphasis> setup starts by asking for the base of the " "Debian archive, defaulting to a HTTP mirror. Next it asks for the " @@ -8958,7 +8958,7 @@ msgstr "" "successivamente viene chiesta la distribuzione da scaricare." #. type: Content of: <book><chapter><screen> -#: guide.dbk:237 +#: guide.dbk:238 #, no-wrap msgid "" " Please give the distribution tag to get or a path to the\n" @@ -8974,7 +8974,7 @@ msgstr "" " Distribution [stable]:\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:244 +#: guide.dbk:245 msgid "" "The distribution refers to the Debian version in the archive, " "<emphasis>stable</emphasis> refers to the latest released version and " @@ -8992,7 +8992,7 @@ msgstr "" "importare questi pacchetti negli USA è però legale." #. type: Content of: <book><chapter><screen> -#: guide.dbk:253 +#: guide.dbk:254 #, no-wrap msgid "" " Please give the components to get\n" @@ -9006,7 +9006,7 @@ msgstr "" " Components [main contrib non-free]:\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:259 +#: guide.dbk:260 msgid "" "The components list refers to the list of sub distributions to fetch. The " "distribution is split up based on software licenses, main being DFSG free " @@ -9020,7 +9020,7 @@ msgstr "" "sull'uso e sulla distribuzione." #. type: Content of: <book><chapter><para> -#: guide.dbk:265 +#: guide.dbk:266 msgid "" "Any number of sources can be added, the setup script will continue to prompt " "until you have specified all that you want." @@ -9030,7 +9030,7 @@ msgstr "" "tutte quelle desiderate." #. type: Content of: <book><chapter><para> -#: guide.dbk:269 +#: guide.dbk:270 msgid "" "Before starting to use <command>dselect</command> it is necessary to update " "the available list by selecting [U]pdate from the menu. This is a superset " @@ -9046,7 +9046,7 @@ msgstr "" "stato eseguito <literal>apt-get update</literal>." #. type: Content of: <book><chapter><para> -#: guide.dbk:276 +#: guide.dbk:277 msgid "" "You can then go on and make your selections using [S]elect and then perform " "the installation using [I]nstall. When using the APT method the [C]onfig and " @@ -9059,7 +9059,7 @@ msgstr "" "contenute in [I]nstall." #. type: Content of: <book><chapter><para> -#: guide.dbk:282 +#: guide.dbk:283 msgid "" "By default APT will automatically remove the package (.deb) files once they " "have been successfully installed. To change this behavior place " @@ -9071,12 +9071,12 @@ msgstr "" "etc/apt/apt.conf." #. type: Content of: <book><chapter><title> -#: guide.dbk:288 +#: guide.dbk:289 msgid "The Interface" msgstr "L'interfaccia" #. type: Content of: <book><chapter><para><footnote><para> -#: guide.dbk:292 +#: guide.dbk:293 msgid "" "The <command>dselect</command> method actually is a set of wrapper scripts " "to <command>apt-get</command>. The method actually provides more " @@ -9084,7 +9084,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:290 +#: guide.dbk:291 #, fuzzy #| msgid "" #| "Both that APT <command>dselect</command> method and <command>apt-get</" @@ -9115,12 +9115,12 @@ msgstr "" "del punto a cui arrivato e di quanto ci sia ancora da fare." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:301 +#: guide.dbk:302 msgid "Startup" msgstr "Avvio" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:303 +#: guide.dbk:304 msgid "" "Before all operations except update, APT performs a number of actions to " "prepare its internal state. It also does some checks of the system's state. " @@ -9133,7 +9133,7 @@ msgstr "" "<literal>apt-get check</literal>." #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:309 +#: guide.dbk:310 #, no-wrap msgid "" "# apt-get check\n" @@ -9145,7 +9145,7 @@ msgstr "" "Generazione albero delle dipendenze... Fatto\n" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:314 +#: guide.dbk:315 msgid "" "The first thing it does is read all the package files into memory. APT uses " "a caching scheme so this operation will be faster the second time it is run. " @@ -9159,7 +9159,7 @@ msgstr "" "get." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:320 +#: guide.dbk:321 msgid "" "The final operation performs a detailed analysis of the system's " "dependencies. It checks every dependency of every installed or unpacked " @@ -9173,7 +9173,7 @@ msgstr "" "senza eseguire alcuna operazione." #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:326 +#: guide.dbk:327 #, no-wrap msgid "" "# apt-get check\n" @@ -9209,7 +9209,7 @@ msgstr "" " libreadlineg2: Va in conflitto: libreadline2 (<< 2.1-2.1)\n" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:343 +#: guide.dbk:344 msgid "" "In this example the system has many problems, including a serious problem " "with libreadlineg2. For each package that has unmet dependencies a line is " @@ -9224,14 +9224,14 @@ msgstr "" "del perché il pacchetto ha un problema di dipendenze." #. type: Content of: <book><chapter><section><para><footnote><para> -#: guide.dbk:352 +#: guide.dbk:353 msgid "" "APT however considers all known dependencies and attempts to prevent broken " "packages" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:350 +#: guide.dbk:351 #, fuzzy #| msgid "" #| "There are two ways a system can get into a broken state like this. The " @@ -9259,7 +9259,7 @@ msgstr "" "dipende siano stati installati." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:359 +#: guide.dbk:360 msgid "" "The second situation is much less serious than the first because APT places " "certain constraints on the order that packages are installed. In both cases " @@ -9278,7 +9278,7 @@ msgstr "" "manutentori errati." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:368 +#: guide.dbk:369 msgid "" "However, if the <literal>-f</literal> option is used to correct a seriously " "broken system caused by the first case then it is possible that it will " @@ -9294,12 +9294,12 @@ msgstr "" "basta per poter fare continuare APT." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:376 +#: guide.dbk:377 msgid "The Status Report" msgstr "Il resoconto sullo stato" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:378 +#: guide.dbk:379 msgid "" "Before proceeding <command>apt-get</command> will present a report on what " "will happen. Generally the report reflects the type of operation being " @@ -9316,12 +9316,12 @@ msgstr "" "eseguire." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:385 +#: guide.dbk:386 msgid "The Extra Package list" msgstr "L'elenco dei pacchetti extra" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:387 +#: guide.dbk:388 #, no-wrap msgid "" "The following extra packages will be installed:\n" @@ -9339,7 +9339,7 @@ msgstr "" " ssh\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:395 +#: guide.dbk:396 msgid "" "The Extra Package list shows all of the packages that will be installed or " "upgraded in excess of the ones mentioned on the command line. It is only " @@ -9353,12 +9353,12 @@ msgstr "" "automatica." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:402 +#: guide.dbk:403 msgid "The Packages to Remove" msgstr "I pacchetti da rimuovere" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:404 +#: guide.dbk:405 #, no-wrap msgid "" "The following packages will be REMOVED:\n" @@ -9374,7 +9374,7 @@ msgstr "" " nas xpilot xfig\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:411 +#: guide.dbk:412 msgid "" "The Packages to Remove list shows all of the packages that will be removed " "from the system. It can be shown for any of the operations and should be " @@ -9394,12 +9394,12 @@ msgstr "" "forse a causa di un'installazione non terminata correttamente." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:421 +#: guide.dbk:422 msgid "The New Packages list" msgstr "L'elenco dei nuovi pacchetti installati" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:423 +#: guide.dbk:424 #, no-wrap msgid "" "The following NEW packages will installed:\n" @@ -9409,7 +9409,7 @@ msgstr "" " zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:427 +#: guide.dbk:428 msgid "" "The New Packages list is simply a reminder of what will happen. The packages " "listed are not presently installed in the system but will be when APT is " @@ -9420,12 +9420,12 @@ msgstr "" "nel sistema, ma lo saranno alla fine delle operazioni di APT." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:432 +#: guide.dbk:433 msgid "The Kept Back list" msgstr "L'elenco dei pacchetti bloccati" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:434 +#: guide.dbk:435 #, no-wrap msgid "" "The following packages have been kept back\n" @@ -9437,7 +9437,7 @@ msgstr "" " gs snmp arena lynx xpat2 groff xscreensaver\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:439 +#: guide.dbk:440 msgid "" "Whenever the whole system is being upgraded there is the possibility that " "new versions of packages cannot be installed because they require new things " @@ -9457,12 +9457,12 @@ msgstr "" "problemi." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:448 +#: guide.dbk:449 msgid "Held Packages warning" msgstr "Messaggi di avvertimento sui pacchetti bloccati" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:450 +#: guide.dbk:451 #, no-wrap msgid "" "The following held packages will be changed:\n" @@ -9472,7 +9472,7 @@ msgstr "" " cvs\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:454 +#: guide.dbk:455 msgid "" "Sometimes you can ask APT to install a package that is on hold, in such a " "case it prints out a warning that the held package is going to be changed. " @@ -9484,19 +9484,19 @@ msgstr "" "di dist-upgrade o di install." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:460 +#: guide.dbk:461 msgid "Final summary" msgstr "Resoconto finale" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:462 +#: guide.dbk:463 msgid "" "Finally, APT will print out a summary of all the changes that will occur." msgstr "" "Infine, APT stamperà un riassunto di tutte le modifiche che accadranno." #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:465 +#: guide.dbk:466 #, no-wrap msgid "" "206 packages upgraded, 8 newly installed, 23 to remove and 51 not upgraded.\n" @@ -9508,7 +9508,7 @@ msgstr "" "È necessario scaricare 65.7M/66.7M di archivi. Dopo quest'operazione, verranno occupati 26.5M di spazio su disco.\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:470 +#: guide.dbk:471 msgid "" "The first line of the summary simply is a reduced version of all of the " "lists and includes the number of upgrades - that is packages already " @@ -9539,7 +9539,7 @@ msgstr "" "allora il valore può indicare lo spazio che verrà liberato." #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:484 +#: guide.dbk:485 msgid "" "Some other reports can be generated by using the -u option to show packages " "to upgrade, they are similar to the previous examples." @@ -9548,12 +9548,12 @@ msgstr "" "pacchetti da aggiornare, ma sono simili all'esempio precedente." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:491 +#: guide.dbk:492 msgid "The Status Display" msgstr "La visualizzazione dello stato" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:493 +#: guide.dbk:494 msgid "" "During the download of archives and package files APT prints out a series of " "status messages." @@ -9562,7 +9562,7 @@ msgstr "" "una serie di messaggi di stato." #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:497 +#: guide.dbk:498 #, no-wrap msgid "" "# apt-get update\n" @@ -9582,7 +9582,7 @@ msgstr "" "11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s\n" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:506 +#: guide.dbk:507 msgid "" "The lines starting with <emphasis>Get</emphasis> are printed out when APT " "begins to fetch a file while the last line indicates the progress of the " @@ -9599,7 +9599,7 @@ msgstr "" "get update</literal> fa una stima poco accurata." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:514 +#: guide.dbk:515 msgid "" "The next section of the status line is repeated once for each download " "thread and indicates the operation being performed and some useful " @@ -9621,7 +9621,7 @@ msgstr "" "pacchetto." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:524 +#: guide.dbk:525 msgid "" "Inside of the single quote is an informative string indicating the progress " "of the negotiation phase of the download. Typically it progresses from " @@ -9655,7 +9655,7 @@ msgstr "" "mostrata." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:539 +#: guide.dbk:540 msgid "" "The status display updates every half second to provide a constant feedback " "on the download progress while the Get lines scroll back whenever a new file " @@ -9671,12 +9671,12 @@ msgstr "" "l'opzione <literal>-q</literal>." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:547 +#: guide.dbk:548 msgid "Dpkg" msgstr "Dpkg" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:549 +#: guide.dbk:550 msgid "" "APT uses <command>dpkg</command> for installing the archives and will switch " "over to the <command>dpkg</command> interface once downloading is completed. " @@ -9694,12 +9694,12 @@ msgstr "" "discusse in maniera completa in questa occasione." #. type: Content of: <book><title> -#: offline.dbk:10 +#: offline.dbk:11 msgid "Using APT Offline" msgstr "Usare APT offline" #. type: Content of: <book><bookinfo><abstract><para> -#: offline.dbk:24 +#: offline.dbk:25 msgid "" "This document describes how to use APT in a non-networked environment, " "specifically a 'sneaker-net' approach for performing upgrades." @@ -9709,23 +9709,23 @@ msgstr "" "aggiornamenti." #. type: Content of: <book><bookinfo> -#: offline.dbk:29 +#: offline.dbk:30 msgid "" "<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" msgstr "" #. type: Content of: <book><chapter><title> -#: offline.dbk:47 +#: offline.dbk:48 msgid "Introduction" msgstr "Introduzione" #. type: Content of: <book><chapter><section><title> -#: offline.dbk:49 offline.dbk:79 offline.dbk:191 +#: offline.dbk:50 offline.dbk:80 offline.dbk:192 msgid "Overview" msgstr "Panoramica" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:51 +#: offline.dbk:52 msgid "" "Normally APT requires direct access to a Debian archive, either from a local " "media or through a network. Another common complaint is that a Debian " @@ -9738,7 +9738,7 @@ msgstr "" "connessione veloce, ma le due sono fisicamente distanti." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:57 +#: offline.dbk:58 msgid "" "The solution to this is to use large removable media such as a Zip disc or a " "SuperDisk disc. These discs are not large enough to store the entire Debian " @@ -9763,7 +9763,7 @@ msgstr "" "emphasis> è quella senza connessione o con una connessione non buona." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:68 +#: offline.dbk:69 msgid "" "This is achieved by creatively manipulating the APT configuration file. The " "essential premise to tell APT to look on a disc for it's archive files. Note " @@ -9777,12 +9777,12 @@ msgstr "" "come ext2, fat32 o vfat." #. type: Content of: <book><chapter><title> -#: offline.dbk:77 +#: offline.dbk:78 msgid "Using APT on both machines" msgstr "Usare APT su entrambe le macchine" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:81 +#: offline.dbk:82 msgid "" "APT being available on both machines gives the simplest configuration. The " "basic idea is to place a copy of the status file on the disc and use the " @@ -9796,7 +9796,7 @@ msgstr "" "disco deve essere simile a:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:87 +#: offline.dbk:88 #, no-wrap msgid "" " /disc/\n" @@ -9818,12 +9818,12 @@ msgstr "" " apt.conf\n" #. type: Content of: <book><chapter><section><title> -#: offline.dbk:98 +#: offline.dbk:99 msgid "The configuration file" msgstr "Il file di configurazione" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:100 +#: offline.dbk:101 msgid "" "The configuration file should tell APT to store its files on the disc and to " "use the configuration files on the disc as well. The sources.list should " @@ -9842,7 +9842,7 @@ msgstr "" "URI «copy» la cui sintassi è identica a quella degli URI «file»." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:108 +#: offline.dbk:109 msgid "" "<emphasis>apt.conf</emphasis> must contain the necessary information to make " "APT use the disc:" @@ -9851,7 +9851,7 @@ msgstr "" "far sì che APT usi il disco:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:112 +#: offline.dbk:113 #, no-wrap msgid "" " APT\n" @@ -9903,7 +9903,7 @@ msgstr "" " };\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:137 +#: offline.dbk:138 msgid "" "More details can be seen by examining the apt.conf man page and the sample " "configuration file in <emphasis>/usr/share/doc/apt/examples/apt.conf</" @@ -9914,7 +9914,7 @@ msgstr "" "apt/examples/apt.conf</emphasis>." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:142 +#: offline.dbk:143 msgid "" "On the target machine the first thing to do is mount the disc and copy " "<emphasis>/var/lib/dpkg/status</emphasis> to it. You will also need to " @@ -9931,7 +9931,7 @@ msgstr "" "eseguire:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:151 +#: offline.dbk:152 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" @@ -9947,7 +9947,7 @@ msgstr "" " [ APT scarica tutti i pacchetti necessari per aggiornare la macchina di destinazione ]\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:158 +#: offline.dbk:159 msgid "" "The dist-upgrade command can be replaced with any other standard APT " "commands, particularly dselect-upgrade. You can even use an APT front end " @@ -9960,7 +9960,7 @@ msgstr "" "alcuni problemi nel comunicare le selezioni fatte al computer locale." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:164 +#: offline.dbk:165 msgid "" "Now the disc contains all of the index files and archives needed to upgrade " "the target machine. Take the disc back and run:" @@ -9970,7 +9970,7 @@ msgstr "" "eseguire:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:168 +#: offline.dbk:169 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" @@ -9986,7 +9986,7 @@ msgstr "" " [ O qualsiasi altro comando APT ]\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:175 +#: offline.dbk:176 msgid "" "It is necessary for proper function to re-specify the status file to be the " "local one. This is very important!" @@ -9995,7 +9995,7 @@ msgstr "" "file di stato è quello locale. Questo è molto importante!" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:179 +#: offline.dbk:180 msgid "" "If you are using dselect you can do the very risky operation of copying disc/" "status to /var/lib/dpkg/status so that any selections you made on the remote " @@ -10010,12 +10010,12 @@ msgstr "" "il file di stato se nel frattempo sono stati eseguiti dpkg o APT!" #. type: Content of: <book><chapter><title> -#: offline.dbk:189 +#: offline.dbk:190 msgid "Using APT and wget" msgstr "Usare APT e wget" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:193 +#: offline.dbk:194 msgid "" "<emphasis>wget</emphasis> is a popular and portable download tool that can " "run on nearly any machine. Unlike the method above this requires that the " @@ -10027,7 +10027,7 @@ msgstr "" "elenco dei pacchetti disponibili." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:198 +#: offline.dbk:199 msgid "" "The basic idea is to create a disc that has only the archive files " "downloaded from the remote site. This is done by using the --print-uris " @@ -10040,12 +10040,12 @@ msgstr "" "effettivamente i pacchetti." #. type: Content of: <book><chapter><section><title> -#: offline.dbk:204 +#: offline.dbk:205 msgid "Operation" msgstr "Funzionamento" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:206 +#: offline.dbk:207 msgid "" "Unlike the previous technique no special configuration files are required. " "We merely use the standard APT commands to generate the file list." @@ -10055,7 +10055,7 @@ msgstr "" "per generare l'elenco dei file." #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:210 +#: offline.dbk:211 #, no-wrap msgid "" " # apt-get dist-upgrade\n" @@ -10069,7 +10069,7 @@ msgstr "" " # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:216 +#: offline.dbk:217 msgid "" "Any command other than dist-upgrade could be used here, including dselect-" "upgrade." @@ -10078,7 +10078,7 @@ msgstr "" "upgrade." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:220 +#: offline.dbk:221 msgid "" "The /disc/wget-script file will now contain a list of wget commands to " "execute in order to fetch the necessary archives. This script should be run " @@ -10091,12 +10091,12 @@ msgstr "" "lavoro, in modo che l'output venga salvato sul disco." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:226 +#: offline.dbk:227 msgid "The remote machine would do something like" msgstr "Nella macchina remota fare qualcosa come:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:229 +#: offline.dbk:230 #, no-wrap msgid "" " # cd /disc\n" @@ -10108,7 +10108,7 @@ msgstr "" " [ attendere... ]\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:234 +#: offline.dbk:235 msgid "" "Once the archives are downloaded and the disc returned to the Debian machine " "installation can proceed using," @@ -10117,13 +10117,13 @@ msgstr "" "alla macchina Debian, si può procedere con l'installazione usando" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:238 +#: offline.dbk:239 #, no-wrap msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:241 +#: offline.dbk:242 msgid "Which will use the already fetched archives on the disc." msgstr "che userà gli archivi già scaricati e presenti sul disco." diff --git a/doc/po/ja.po b/doc/po/ja.po index 582ff0377..0a2984d96 100644 --- a/doc/po/ja.po +++ b/doc/po/ja.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 1.0.6\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:52+0200\n" +"POT-Creation-Date: 2014-08-28 00:20+0000\n" "PO-Revision-Date: 2014-07-10 19:52+0900\n" "Last-Translator: KURASAWA Nozomu <nabetaro@debian.or.jp>\n" "Language-Team: Debian Japanese List <debian-japanese@lists.debian.org>\n" @@ -657,37 +657,37 @@ msgstr "" "473041FA --> <!ENTITY synopsis-keyid \"キーID\">" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt.8.xml:25 apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 -#: apt-mark.8.xml:28 apt-secure.8.xml:27 apt-cdrom.8.xml:27 -#: apt-config.8.xml:28 +#: apt.8.xml:21 apt-get.8.xml:22 apt-cache.8.xml:22 apt-key.8.xml:21 +#: apt-mark.8.xml:22 apt-secure.8.xml:21 apt-cdrom.8.xml:21 +#: apt-config.8.xml:22 msgid "8" msgstr "8" #. type: Content of: <refentry><refmeta><refmiscinfo> -#: apt.8.xml:26 apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 -#: apt-mark.8.xml:29 apt-secure.8.xml:28 apt-cdrom.8.xml:28 -#: apt-config.8.xml:29 apt.conf.5.xml:34 apt_preferences.5.xml:28 -#: sources.list.5.xml:29 apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 -#: apt-ftparchive.1.xml:29 +#: apt.8.xml:22 apt-get.8.xml:23 apt-cache.8.xml:23 apt-key.8.xml:22 +#: apt-mark.8.xml:23 apt-secure.8.xml:22 apt-cdrom.8.xml:22 +#: apt-config.8.xml:23 apt.conf.5.xml:28 apt_preferences.5.xml:22 +#: sources.list.5.xml:23 apt-extracttemplates.1.xml:23 apt-sortpkgs.1.xml:23 +#: apt-ftparchive.1.xml:23 msgid "APT" msgstr "APT" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt.8.xml:32 +#: apt.8.xml:28 msgid "command-line interface" msgstr "コマンドラインインターフェイス" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:37 apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 -#: apt-mark.8.xml:40 apt-secure.8.xml:52 apt-cdrom.8.xml:39 -#: apt-config.8.xml:40 apt.conf.5.xml:43 apt_preferences.5.xml:38 -#: sources.list.5.xml:38 apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 -#: apt-ftparchive.1.xml:40 +#: apt.8.xml:33 apt-get.8.xml:34 apt-cache.8.xml:34 apt-key.8.xml:33 +#: apt-mark.8.xml:34 apt-secure.8.xml:46 apt-cdrom.8.xml:33 +#: apt-config.8.xml:34 apt.conf.5.xml:37 apt_preferences.5.xml:32 +#: sources.list.5.xml:32 apt-extracttemplates.1.xml:34 apt-sortpkgs.1.xml:34 +#: apt-ftparchive.1.xml:34 msgid "Description" msgstr "説明" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:38 +#: apt.8.xml:34 msgid "" "<command>apt</command> (Advanced Package Tool) is the command-line tool for " "handling packages. It provides a commandline interface for the package " @@ -700,7 +700,7 @@ msgstr "" "は &apt-get; 及び &apt-cache; も参照してください。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:47 +#: apt.8.xml:43 msgid "" "<literal>list</literal> is used to display a list of packages. It supports " "shell pattern for matching package names and the following options: " @@ -713,7 +713,7 @@ msgstr "" "サポートしています。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:58 +#: apt.8.xml:54 msgid "" "<literal>search</literal> searches for the given term(s) and display " "matching packages." @@ -722,7 +722,7 @@ msgstr "" "ます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:64 +#: apt.8.xml:60 msgid "" "<literal>show</literal> shows the package information for the given " "package(s)." @@ -731,7 +731,7 @@ msgstr "" "します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:71 +#: apt.8.xml:67 msgid "" "<literal>install</literal> is followed by one or more package names desired " "for installation or upgrading." @@ -740,7 +740,7 @@ msgstr "" "ジの名前を指定します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:75 apt-get.8.xml:118 +#: apt.8.xml:71 apt-get.8.xml:112 msgid "" "A specific version of a package can be selected for installation by " "following the package name with an equals and the version of the package to " @@ -757,7 +757,7 @@ msgstr "" "ます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:85 apt-get.8.xml:153 +#: apt.8.xml:81 apt-get.8.xml:147 msgid "" "<literal>remove</literal> is identical to <literal>install</literal> except " "that packages are removed instead of installed. Note that removing a package " @@ -772,7 +772,7 @@ msgstr "" "トールします。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:93 +#: apt.8.xml:89 msgid "" "<literal>edit-sources</literal> lets you edit your sources.list file and " "provides basic sanity checks." @@ -781,7 +781,7 @@ msgstr "" "な健全性確認を行います。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:99 +#: apt.8.xml:95 msgid "" "<literal>update</literal> is used to resynchronize the package index files " "from their sources." @@ -790,12 +790,18 @@ msgstr "" "再同期します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:105 +#: apt.8.xml:101 +#, fuzzy +#| msgid "" +#| "<literal>upgrade</literal> is used to install the newest versions of all " +#| "packages currently installed on the system from the sources enumerated in " +#| "<filename>/etc/apt/sources.list</filename>. New package will be " +#| "installed, but existing package will never removed." msgid "" "<literal>upgrade</literal> is used to install the newest versions of all " "packages currently installed on the system from the sources enumerated in " -"<filename>/etc/apt/sources.list</filename>. New package will be installed, " -"but existing package will never removed." +"<filename>/etc/apt/sources.list</filename>. New packages will be installed, " +"but existing packages will never be removed." msgstr "" "<literal>upgrade</literal> を使うとシステムに現在インストールされている全パッ" "ケージの最新版を <filename>/etc/apt/sources.list</filename> に記載されている" @@ -803,7 +809,7 @@ msgstr "" "パッケージが削除されることはありません。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:114 +#: apt.8.xml:110 msgid "" "<literal>full-upgrade</literal> performs the function of upgrade but may " "also remove installed packages if that is required in order to resolve a " @@ -814,19 +820,19 @@ msgstr "" "除も行います。" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:124 apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 -#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 -#: apt-ftparchive.1.xml:506 +#: apt.8.xml:120 apt-get.8.xml:251 apt-cache.8.xml:244 apt-mark.8.xml:104 +#: apt-config.8.xml:80 apt-extracttemplates.1.xml:48 apt-sortpkgs.1.xml:44 +#: apt-ftparchive.1.xml:500 msgid "options" msgstr "オプション" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:134 +#: apt.8.xml:130 msgid "Script usage" msgstr "スクリプトでの利用" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:136 +#: apt.8.xml:132 msgid "" "The &apt; commandline is designed as a end-user tool and it may change the " "output between versions. While it tries to not break backward compatibility " @@ -841,12 +847,12 @@ msgstr "" "するようにしてください。" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:144 +#: apt.8.xml:140 msgid "Differences to &apt-get;" msgstr "&apt-get; との違い" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:145 +#: apt.8.xml:141 msgid "" "The <command>apt</command> command is meant to be pleasant for end users and " "does not need to be backward compatible like &apt-get;. Therefore some " @@ -857,18 +863,18 @@ msgstr "" "たがって、一部のオプションに異なる点があります:" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:151 +#: apt.8.xml:147 msgid "The option <literal>DPkg::Progress-Fancy</literal> is enabled." msgstr "" "オプション <literal>DPkg::Progress-Fancy</literal> が有効になっています。" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:155 +#: apt.8.xml:151 msgid "The option <literal>APT::Color</literal> is enabled." msgstr "オプション <literal>APT::Color</literal> が有効になっています。" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:159 +#: apt.8.xml:155 msgid "" "A new <literal>list</literal> command is available similar to <literal>dpkg " "--list</literal>." @@ -877,7 +883,7 @@ msgstr "" "じように利用できます。" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:164 +#: apt.8.xml:160 msgid "" "The option <literal>upgrade</literal> has <literal>--with-new-pkgs</literal> " "enabled by default." @@ -886,16 +892,16 @@ msgstr "" "literal> がデフォルトで有効になっています。" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 -#: apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 -#: apt-config.8.xml:111 apt.conf.5.xml:1228 apt_preferences.5.xml:707 -#: sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 -#: apt-ftparchive.1.xml:609 +#: apt.8.xml:170 apt-get.8.xml:552 apt-cache.8.xml:346 apt-key.8.xml:191 +#: apt-mark.8.xml:127 apt-secure.8.xml:187 apt-cdrom.8.xml:148 +#: apt-config.8.xml:105 apt.conf.5.xml:1222 apt_preferences.5.xml:701 +#: sources.list.5.xml:274 apt-extracttemplates.1.xml:66 apt-sortpkgs.1.xml:59 +#: apt-ftparchive.1.xml:603 msgid "See Also" msgstr "関連項目" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:175 +#: apt.8.xml:171 msgid "" "&apt-get;, &apt-cache;, &sources-list;, &apt-conf;, &apt-config;, The APT " "User's guide in &guidesdir;, &apt-preferences;, the APT Howto." @@ -904,14 +910,14 @@ msgstr "" "&guidesdir; にあるAPTユーザガイド、 &apt-preferences;、 APT Howto." #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:180 apt-get.8.xml:564 apt-cache.8.xml:357 apt-mark.8.xml:137 -#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 -#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 +#: apt.8.xml:176 apt-get.8.xml:558 apt-cache.8.xml:351 apt-mark.8.xml:131 +#: apt-cdrom.8.xml:153 apt-config.8.xml:110 apt-extracttemplates.1.xml:70 +#: apt-sortpkgs.1.xml:63 apt-ftparchive.1.xml:607 msgid "Diagnostics" msgstr "診断メッセージ" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:181 +#: apt.8.xml:177 msgid "" "<command>apt</command> returns zero on normal operation, decimal 100 on " "error." @@ -920,12 +926,12 @@ msgstr "" "返します。" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-get.8.xml:35 +#: apt-get.8.xml:29 msgid "APT package handling utility -- command-line interface" msgstr "APT パッケージ操作ユーティリティ -- コマンドラインインターフェース" #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:41 +#: apt-get.8.xml:35 msgid "" "<command>apt-get</command> is the command-line tool for handling packages, " "and may be considered the user's \"back-end\" to other tools using the APT " @@ -938,8 +944,8 @@ msgstr "" "があります。" #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:46 apt-cache.8.xml:46 apt-cdrom.8.xml:53 apt-config.8.xml:46 -#: apt-ftparchive.1.xml:56 +#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-cdrom.8.xml:47 apt-config.8.xml:40 +#: apt-ftparchive.1.xml:50 msgid "" "Unless the <option>-h</option>, or <option>--help</option> option is given, " "one of the commands below must be present." @@ -948,7 +954,7 @@ msgstr "" "下に挙げるコマンドが必要です。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:51 +#: apt-get.8.xml:45 msgid "" "<literal>update</literal> is used to resynchronize the package index files " "from their sources. The indexes of available packages are fetched from the " @@ -970,7 +976,7 @@ msgstr "" "のサイズを知ることができないため、全体の進捗メータは正しく表示されません。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:63 +#: apt-get.8.xml:57 msgid "" "<literal>upgrade</literal> is used to install the newest versions of all " "packages currently installed on the system from the sources enumerated in " @@ -994,7 +1000,7 @@ msgstr "" "ケージの新しいバージョンがあることを知らせる必要があります。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:76 +#: apt-get.8.xml:70 msgid "" "<literal>dist-upgrade</literal> in addition to performing the function of " "<literal>upgrade</literal>, also intelligently handles changing dependencies " @@ -1018,7 +1024,7 @@ msgstr "" "さい。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:89 +#: apt-get.8.xml:83 msgid "" "<literal>dselect-upgrade</literal> is used in conjunction with the " "traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</" @@ -1035,7 +1041,7 @@ msgstr "" "ど)" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:100 +#: apt-get.8.xml:94 msgid "" "<literal>install</literal> is followed by one or more packages desired for " "installation or upgrading. Each package is a package name, not a fully " @@ -1063,7 +1069,7 @@ msgstr "" "断を上書きするのに利用される可能性があります。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:125 +#: apt-get.8.xml:119 msgid "" "Both of the version selection mechanisms can downgrade packages and must be " "used with care." @@ -1072,7 +1078,7 @@ msgstr "" "なりません。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:128 +#: apt-get.8.xml:122 msgid "" "This is also the target to use if you want to upgrade one or more already-" "installed packages without upgrading every package you have on your system. " @@ -1091,7 +1097,7 @@ msgstr "" "あるパッケージ) をダウンロード・インストールします。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:139 +#: apt-get.8.xml:133 msgid "" "Finally, the &apt-preferences; mechanism allows you to create an alternative " "installation policy for individual packages." @@ -1100,7 +1106,7 @@ msgstr "" "リシーを作成できます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:143 +#: apt-get.8.xml:137 msgid "" "If no package matches the given expression and the expression contains one " "of '.', '?' or '*' then it is assumed to be a POSIX regular expression, and " @@ -1117,7 +1123,7 @@ msgstr "" "ば、'^' や '$' を付けるか、もっと詳しい正規表現を指定してください。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:161 +#: apt-get.8.xml:155 msgid "" "<literal>purge</literal> is identical to <literal>remove</literal> except " "that packages are removed and purged (any configuration files are deleted " @@ -1127,7 +1133,7 @@ msgstr "" "<literal>purge</literal> は <literal>remove</literal> と同じです。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:166 +#: apt-get.8.xml:160 msgid "" "<literal>source</literal> causes <command>apt-get</command> to fetch source " "packages. APT will examine the available packages to decide which source " @@ -1146,7 +1152,7 @@ msgstr "" "literal> 構文で指定します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:174 +#: apt-get.8.xml:168 msgid "" "Source packages are tracked separately from binary packages via <literal>deb-" "src</literal> lines in the &sources-list; file. This means that you will " @@ -1160,7 +1166,7 @@ msgstr "" "すぎ・新しすぎな) ソースバージョンを取得したり、何も取得できなくなります。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:180 +#: apt-get.8.xml:174 msgid "" "If the <option>--compile</option> option is specified then the package will " "be compiled to a binary .deb using <command>dpkg-buildpackage</command> for " @@ -1175,7 +1181,7 @@ msgstr "" "ん。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:187 +#: apt-get.8.xml:181 msgid "" "A specific source version can be retrieved by postfixing the source name " "with an equals and then the version to fetch, similar to the mechanism used " @@ -1189,7 +1195,7 @@ msgstr "" "バージョンに厳密に一致させています。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:193 +#: apt-get.8.xml:187 msgid "" "Note that source packages are not installed and tracked in the " "<command>dpkg</command> database like binary packages; they are simply " @@ -1200,7 +1206,7 @@ msgstr "" "ソースの tarball のように、単にカレントディレクトリにダウンロードします。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:199 +#: apt-get.8.xml:193 msgid "" "<literal>build-dep</literal> causes apt-get to install/remove packages in an " "attempt to satisfy the build dependencies for a source package. By default " @@ -1215,7 +1221,7 @@ msgstr "" "す。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:206 +#: apt-get.8.xml:200 msgid "" "<literal>check</literal> is a diagnostic tool; it updates the package cache " "and checks for broken dependencies." @@ -1224,7 +1230,7 @@ msgstr "" "チェックする診断ツールです。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:211 +#: apt-get.8.xml:205 msgid "" "<literal>download</literal> will download the given binary package into the " "current directory." @@ -1233,7 +1239,7 @@ msgstr "" "トリにダウンロードします。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:217 +#: apt-get.8.xml:211 msgid "" "<literal>clean</literal> clears out the local repository of retrieved " "package files. It removes everything but the lock file from " @@ -1245,7 +1251,7 @@ msgstr "" "archives/partial/</filename> からロックファイル以外すべて削除します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:224 +#: apt-get.8.xml:218 msgid "" "Like <literal>clean</literal>, <literal>autoclean</literal> clears out the " "local repository of retrieved package files. The difference is that it only " @@ -1264,7 +1270,7 @@ msgstr "" "防げます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:234 +#: apt-get.8.xml:228 msgid "" "<literal>autoremove</literal> is used to remove packages that were " "automatically installed to satisfy dependencies for other packages and are " @@ -1274,7 +1280,7 @@ msgstr "" "的にインストールされ、もう必要なくなったパッケージを削除するのに使用します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:239 +#: apt-get.8.xml:233 msgid "" "<literal>changelog</literal> downloads a package changelog and displays it " "through <command>sensible-pager</command>. The server name and base " @@ -1296,7 +1302,7 @@ msgstr "" "option> コマンドと同じオプションを使用できます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:262 +#: apt-get.8.xml:256 msgid "" "Do not consider recommended packages as a dependency for installing. " "Configuration Item: <literal>APT::Install-Recommends</literal>." @@ -1305,7 +1311,7 @@ msgstr "" "<literal>APT::Install-Recommends</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:267 +#: apt-get.8.xml:261 msgid "" "Consider suggested packages as a dependency for installing. Configuration " "Item: <literal>APT::Install-Suggests</literal>." @@ -1314,7 +1320,7 @@ msgstr "" "<literal>APT::Install-Suggests</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:272 +#: apt-get.8.xml:266 msgid "" "Download only; package files are only retrieved, not unpacked or installed. " "Configuration Item: <literal>APT::Get::Download-Only</literal>." @@ -1323,7 +1329,7 @@ msgstr "" "いません。設定項目: <literal>APT::Get::Download-Only</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:277 +#: apt-get.8.xml:271 msgid "" "Fix; attempt to correct a system with broken dependencies in place. This " "option, when used with install/remove, can omit any packages to permit APT " @@ -1349,7 +1355,7 @@ msgstr "" "Get::Fix-Broken</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:292 +#: apt-get.8.xml:286 msgid "" "Ignore missing packages; if packages cannot be retrieved or fail the " "integrity check after retrieval (corrupted package files), hold back those " @@ -1368,7 +1374,7 @@ msgstr "" "Get::Fix-Missing</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:303 +#: apt-get.8.xml:297 msgid "" "Disables downloading of packages. This is best used with <option>--ignore-" "missing</option> to force APT to use only the .debs it has already " @@ -1379,7 +1385,7 @@ msgstr "" "がよいでしょう。設定項目: <literal>APT::Get::Download</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:310 +#: apt-get.8.xml:304 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quiet up to a maximum of 2. You can also use " @@ -1398,7 +1404,7 @@ msgstr "" "literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:325 +#: apt-get.8.xml:319 msgid "" "No action; perform a simulation of events that would occur but do not " "actually change the system. Configuration Item: <literal>APT::Get::" @@ -1408,7 +1414,7 @@ msgstr "" "行いません。設定項目: <literal>APT::Get::Simulate</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:329 +#: apt-get.8.xml:323 msgid "" "Simulated runs performed as a user will automatically deactivate locking " "(<literal>Debug::NoLocking</literal>), and if the option <literal>APT::Get::" @@ -1426,7 +1432,7 @@ msgstr "" "による警告などなくても、何をしているのか知っていなければなりません)。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:337 +#: apt-get.8.xml:331 msgid "" "Simulated runs print out a series of lines, each representing a " "<command>dpkg</command> operation: configure (<literal>Conf</literal>), " @@ -1440,7 +1446,7 @@ msgstr "" "れに) 空の角カッコは大した問題ではないことを表します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:345 +#: apt-get.8.xml:339 msgid "" "Automatic yes to prompts; assume \"yes\" as answer to all prompts and run " "non-interactively. If an undesirable situation, such as changing a held " @@ -1454,7 +1460,7 @@ msgstr "" "定項目: <literal>APT::Get::Assume-Yes</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:353 +#: apt-get.8.xml:347 msgid "" "Automatic \"no\" to all prompts. Configuration Item: <literal>APT::Get::" "Assume-No</literal>." @@ -1463,7 +1469,7 @@ msgstr "" "Assume-No</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:358 +#: apt-get.8.xml:352 msgid "" "Show upgraded packages; print out a list of all packages that are to be " "upgraded. Configuration Item: <literal>APT::Get::Show-Upgraded</literal>." @@ -1472,7 +1478,7 @@ msgstr "" "<literal>APT::Get::Show-Upgraded</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:364 +#: apt-get.8.xml:358 msgid "" "Show full versions for upgraded and installed packages. Configuration Item: " "<literal>APT::Get::Show-Versions</literal>." @@ -1481,7 +1487,7 @@ msgstr "" "<literal>APT::Get::Show-Versions</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:370 +#: apt-get.8.xml:364 msgid "" "This option controls the architecture packages are built for by <command>apt-" "get source --compile</command> and how cross-builddependencies are " @@ -1497,7 +1503,7 @@ msgstr "" "ます。設定項目: <literal>APT::Get::Host-Architecture</literal>。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:380 +#: apt-get.8.xml:374 msgid "" "This option controls the activated build profiles for which a source package " "is built by <command>apt-get source --compile</command> and how build " @@ -1512,7 +1518,7 @@ msgstr "" "<literal>APT::Get::Host-Architecture</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:391 +#: apt-get.8.xml:385 msgid "" "Compile source packages after downloading them. Configuration Item: " "<literal>APT::Get::Compile</literal>." @@ -1521,7 +1527,7 @@ msgstr "" "Get::Compile</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:396 +#: apt-get.8.xml:390 msgid "" "Ignore package holds; this causes <command>apt-get</command> to ignore a " "hold placed on a package. This may be useful in conjunction with " @@ -1534,7 +1540,7 @@ msgstr "" "literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:403 +#: apt-get.8.xml:397 msgid "" "Allow installing new packages when used in conjunction with " "<literal>upgrade</literal>. This is useful if the update of a installed " @@ -1553,7 +1559,7 @@ msgstr "" "注意してください。設定項目: <literal>APT::Get::Upgrade-Allow-New</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:415 +#: apt-get.8.xml:409 msgid "" "Do not upgrade packages; when used in conjunction with <literal>install</" "literal>, <literal>no-upgrade</literal> will prevent packages on the command " @@ -1566,7 +1572,7 @@ msgstr "" "Upgrade</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:422 +#: apt-get.8.xml:416 msgid "" "Do not install new packages; when used in conjunction with <literal>install</" "literal>, <literal>only-upgrade</literal> will install upgrades for already " @@ -1579,7 +1585,7 @@ msgstr "" "定項目: <literal>APT::Get::Only-Upgrade</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:430 +#: apt-get.8.xml:424 msgid "" "Force yes; this is a dangerous option that will cause apt to continue " "without prompting if it is doing something potentially harmful. It should " @@ -1593,7 +1599,7 @@ msgstr "" "ん! 設定項目: <literal>APT::Get::force-yes</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:438 +#: apt-get.8.xml:432 msgid "" "Instead of fetching the files to install their URIs are printed. Each URI " "will have the path, the destination file name, the size and the expected MD5 " @@ -1614,7 +1620,7 @@ msgstr "" "Print-URIs</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:449 +#: apt-get.8.xml:443 msgid "" "Use purge instead of remove for anything that would be removed. An asterisk " "(\"*\") will be displayed next to packages which are scheduled to be purged. " @@ -1627,7 +1633,7 @@ msgstr "" "<literal>APT::Get::Purge</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:457 +#: apt-get.8.xml:451 msgid "" "Re-install packages that are already installed and at the newest version. " "Configuration Item: <literal>APT::Get::ReInstall</literal>." @@ -1636,7 +1642,7 @@ msgstr "" "定項目: <literal>APT::Get::ReInstall</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:462 +#: apt-get.8.xml:456 msgid "" "This option is on by default; use <literal>--no-list-cleanup</literal> to " "turn it off. When it is on, <command>apt-get</command> will automatically " @@ -1652,7 +1658,7 @@ msgstr "" "する時ぐらいでしょう。設定項目: <literal>APT::Get::List-Cleanup</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:472 +#: apt-get.8.xml:466 msgid "" "This option controls the default input to the policy engine; it creates a " "default pin at priority 990 using the specified release string. This " @@ -1675,7 +1681,7 @@ msgstr "" "さい。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:487 +#: apt-get.8.xml:481 msgid "" "Only perform operations that are 'trivial'. Logically this can be considered " "related to <option>--assume-yes</option>; where <option>--assume-yes</" @@ -1688,7 +1694,7 @@ msgstr "" "目: <literal>APT::Get::Trivial-Only</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:494 +#: apt-get.8.xml:488 msgid "" "If any packages are to be removed apt-get immediately aborts without " "prompting. Configuration Item: <literal>APT::Get::Remove</literal>." @@ -1697,7 +1703,7 @@ msgstr "" "項目: <literal>APT::Get::Remove</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:500 +#: apt-get.8.xml:494 msgid "" "If the command is either <literal>install</literal> or <literal>remove</" "literal>, then this option acts like running the <literal>autoremove</" @@ -1710,7 +1716,7 @@ msgstr "" "<literal>APT::Get::AutomaticRemove</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:507 +#: apt-get.8.xml:501 msgid "" "Only has meaning for the <literal>source</literal> and <literal>build-dep</" "literal> commands. Indicates that the given source names are not to be " @@ -1728,7 +1734,7 @@ msgstr "" "literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:518 +#: apt-get.8.xml:512 msgid "" "Download only the diff, dsc, or tar file of a source archive. Configuration " "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</" @@ -1739,7 +1745,7 @@ msgstr "" "<literal>APT::Get::Dsc-Only</literal>, <literal>APT::Get::Tar-Only</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:524 +#: apt-get.8.xml:518 msgid "" "Only process architecture-dependent build-dependencies. Configuration Item: " "<literal>APT::Get::Arch-Only</literal>." @@ -1748,7 +1754,7 @@ msgstr "" "<literal>APT::Get::Arch-Only</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:529 +#: apt-get.8.xml:523 msgid "" "Ignore if packages can't be authenticated and don't prompt about it. This " "is useful for tools like pbuilder. Configuration Item: <literal>APT::Get::" @@ -1759,7 +1765,7 @@ msgstr "" "literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:535 +#: apt-get.8.xml:529 msgid "" "Show user friendly progress information in the terminal window when packages " "are installed, upgraded or removed. For a machine parsable version of this " @@ -1774,13 +1780,13 @@ msgstr "" "<literal>Dpkg::Progress-Fancy</literal>" #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 -#: apt.conf.5.xml:1222 apt_preferences.5.xml:700 +#: apt-get.8.xml:542 apt-cache.8.xml:339 apt-key.8.xml:170 apt-mark.8.xml:121 +#: apt.conf.5.xml:1216 apt_preferences.5.xml:694 msgid "Files" msgstr "ファイル" #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:559 +#: apt-get.8.xml:553 msgid "" "&apt-cache;, &apt-cdrom;, &dpkg;, &sources-list;, &apt-conf;, &apt-config;, " "&apt-secure;, The APT User's guide in &guidesdir;, &apt-preferences;, the " @@ -1791,7 +1797,7 @@ msgstr "" "Howto" #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:565 +#: apt-get.8.xml:559 msgid "" "<command>apt-get</command> returns zero on normal operation, decimal 100 on " "error." @@ -1800,12 +1806,12 @@ msgstr "" "100 を返します。" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-cache.8.xml:35 +#: apt-cache.8.xml:29 msgid "query the APT cache" msgstr "APT キャッシュへの問い合わせ" #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:41 +#: apt-cache.8.xml:35 msgid "" "<command>apt-cache</command> performs a variety of operations on APT's " "package cache. <command>apt-cache</command> does not manipulate the state of " @@ -1818,7 +1824,7 @@ msgstr "" "操作を提供します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:51 +#: apt-cache.8.xml:45 msgid "" "<literal>gencaches</literal> creates APT's package cache. This is done " "implicitly by all commands needing this cache if it is missing or outdated." @@ -1828,14 +1834,14 @@ msgstr "" "べてのコマンドによって、暗黙で実行されます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-cache.8.xml:55 apt-cache.8.xml:144 apt-cache.8.xml:165 -#: apt-cache.8.xml:187 apt-cache.8.xml:192 apt-cache.8.xml:208 -#: apt-cache.8.xml:226 apt-cache.8.xml:238 +#: apt-cache.8.xml:49 apt-cache.8.xml:138 apt-cache.8.xml:159 +#: apt-cache.8.xml:181 apt-cache.8.xml:186 apt-cache.8.xml:202 +#: apt-cache.8.xml:220 apt-cache.8.xml:232 msgid "&synopsis-pkg;" msgstr "&synopsis-pkg;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:56 +#: apt-cache.8.xml:50 msgid "" "<literal>showpkg</literal> displays information about the packages listed on " "the command line. Remaining arguments are package names. The available " @@ -1857,7 +1863,7 @@ msgstr "" "libreadline2</command> の出力を掲げます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> -#: apt-cache.8.xml:68 +#: apt-cache.8.xml:62 #, no-wrap msgid "" "Package: libreadline2\n" @@ -1883,7 +1889,7 @@ msgstr "" "Reverse Provides: \n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:80 +#: apt-cache.8.xml:74 msgid "" "Thus it may be seen that libreadline2, version 2.1-12, depends on libc5 and " "ncurses3.0 which must be installed for libreadline2 to work. In turn, " @@ -1902,7 +1908,7 @@ msgstr "" "apt のソースコードを調べるのが最良でしょう。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:89 +#: apt-cache.8.xml:83 msgid "" "<literal>stats</literal> displays some statistics about the cache. No " "further arguments are expected. Statistics reported are:" @@ -1911,7 +1917,7 @@ msgstr "" "上、引数は必要ありません。以下の統計情報を表示します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:92 +#: apt-cache.8.xml:86 msgid "" "<literal>Total package names</literal> is the number of package names found " "in the cache." @@ -1920,7 +1926,7 @@ msgstr "" "ます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:96 +#: apt-cache.8.xml:90 msgid "" "<literal>Normal packages</literal> is the number of regular, ordinary " "package names; these are packages that bear a one-to-one correspondence " @@ -1932,7 +1938,7 @@ msgstr "" "ケージです。大多数のパッケージはこのカテゴリに入ります。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:102 +#: apt-cache.8.xml:96 msgid "" "<literal>Pure virtual packages</literal> is the number of packages that " "exist only as a virtual package name; that is, packages only \"provide\" the " @@ -1949,7 +1955,7 @@ msgstr "" "ケージはありません。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:110 +#: apt-cache.8.xml:104 msgid "" "<literal>Single virtual packages</literal> is the number of packages with " "only one package providing a particular virtual package. For example, in the " @@ -1962,7 +1968,7 @@ msgstr "" "ジは、xless パッケージのみということです。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:116 +#: apt-cache.8.xml:110 msgid "" "<literal>Mixed virtual packages</literal> is the number of packages that " "either provide a particular virtual package or have the virtual package name " @@ -1975,7 +1981,7 @@ msgstr "" "もありますが、debconf-tiny によって提供もされています。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:123 +#: apt-cache.8.xml:117 msgid "" "<literal>Missing</literal> is the number of package names that were " "referenced in a dependency but were not provided by any package. Missing " @@ -1990,7 +1996,7 @@ msgstr "" "のようになります。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:130 +#: apt-cache.8.xml:124 msgid "" "<literal>Total distinct</literal> versions is the number of package versions " "found in the cache; this value is therefore at least equal to the number of " @@ -2004,7 +2010,7 @@ msgstr "" "スする場合、この値はパッケージ名総数よりもかなり大きい数になります。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:137 +#: apt-cache.8.xml:131 msgid "" "<literal>Total dependencies</literal> is the number of dependency " "relationships claimed by all of the packages in the cache." @@ -2013,7 +2019,7 @@ msgstr "" "れた依存関係の数です。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:145 +#: apt-cache.8.xml:139 msgid "" "<literal>showsrc</literal> displays all the source package records that " "match the given package names. All versions are shown, as well as all " @@ -2024,7 +2030,7 @@ msgstr "" "ともに、すべてのバージョンについて表示します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:151 +#: apt-cache.8.xml:145 msgid "" "<literal>dump</literal> shows a short listing of every package in the cache. " "It is primarily for debugging." @@ -2033,7 +2039,7 @@ msgstr "" "覧を表示します。主にデバッグ用です。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:156 +#: apt-cache.8.xml:150 msgid "" "<literal>dumpavail</literal> prints out an available list to stdout. This is " "suitable for use with &dpkg; and is used by the &dselect; method." @@ -2042,7 +2048,7 @@ msgstr "" "す。 &dpkg; と共に使用すると便利ですし、&dselect; でも使用されます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:161 +#: apt-cache.8.xml:155 msgid "" "<literal>unmet</literal> displays a summary of all unmet dependencies in the " "package cache." @@ -2051,7 +2057,7 @@ msgstr "" "概要を表示します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:166 +#: apt-cache.8.xml:160 msgid "" "<literal>show</literal> performs a function similar to <command>dpkg --print-" "avail</command>; it displays the package records for the named packages." @@ -2060,12 +2066,12 @@ msgstr "" "能を実行します。これは、指定したパッケージのパッケージレコードの表示です。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-cache.8.xml:171 +#: apt-cache.8.xml:165 msgid "&synopsis-regex;" msgstr "&synopsis-regex;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:172 +#: apt-cache.8.xml:166 msgid "" "<literal>search</literal> performs a full text search on all available " "package lists for the POSIX regex pattern given, see ®ex;. It searches " @@ -2085,14 +2091,14 @@ msgstr "" "ケージ名に対してのみ対象とします。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:183 +#: apt-cache.8.xml:177 msgid "" "Separate arguments can be used to specify multiple search patterns that are " "and'ed together." msgstr "空白で区切った引数で、複数の検索パターンの and をとることができます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:188 +#: apt-cache.8.xml:182 msgid "" "<literal>depends</literal> shows a listing of each dependency a package has " "and all the possible other packages that can fulfill that dependency." @@ -2101,7 +2107,7 @@ msgstr "" "を満たす他のパッケージの一覧を表示します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:193 +#: apt-cache.8.xml:187 msgid "" "<literal>rdepends</literal> shows a listing of each reverse dependency a " "package has." @@ -2109,12 +2115,12 @@ msgstr "" "<literal>rdepends</literal> は、パッケージが持つ被依存関係を一覧表示します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:197 +#: apt-cache.8.xml:191 msgid "<optional><replaceable>&synopsis-prefix;</replaceable></optional>" msgstr "<optional><replaceable>&synopsis-prefix;</replaceable></optional>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:198 +#: apt-cache.8.xml:192 msgid "" "This command prints the name of each package APT knows. The optional " "argument is a prefix match to filter the name list. The output is suitable " @@ -2128,7 +2134,7 @@ msgstr "" "generate</option> オプションと共に使用すると非常に便利です。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:203 +#: apt-cache.8.xml:197 msgid "" "Note that a package which APT knows of is not necessarily available to " "download, installable or installed, e.g. virtual packages are also listed in " @@ -2139,7 +2145,7 @@ msgstr "" "た一覧にあります。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:209 +#: apt-cache.8.xml:203 msgid "" "<literal>dotty</literal> takes a list of packages on the command line and " "generates output suitable for use by dotty from the <ulink url=\"http://www." @@ -2159,7 +2165,7 @@ msgstr "" "GivenOnly</literal> をセットしてください。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:218 +#: apt-cache.8.xml:212 msgid "" "The resulting nodes will have several shapes; normal packages are boxes, " "pure virtual packages are triangles, mixed virtual packages are diamonds, " @@ -2172,12 +2178,12 @@ msgstr "" "表します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:223 +#: apt-cache.8.xml:217 msgid "Caution, dotty cannot graph larger sets of packages." msgstr "注意) dotty は、パッケージのより大きなセットのグラフは描けません。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:227 +#: apt-cache.8.xml:221 msgid "" "The same as <literal>dotty</literal>, only for xvcg from the <ulink url=" "\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG tool</ulink>." @@ -2186,12 +2192,12 @@ msgstr "" "users/sander/html/gsvcg1.html\">VCG tool</ulink> の xvcg 専用です。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:231 +#: apt-cache.8.xml:225 msgid "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>" msgstr "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:232 +#: apt-cache.8.xml:226 msgid "" "<literal>policy</literal> is meant to help debug issues relating to the " "preferences file. With no arguments it will print out the priorities of each " @@ -2203,7 +2209,7 @@ msgstr "" "す。一方、パッケージ名を指定した場合、優先順の詳細情報を表示します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:239 +#: apt-cache.8.xml:233 msgid "" "<literal>apt-cache</literal>'s <literal>madison</literal> command attempts " "to mimic the output format and a subset of the functionality of the Debian " @@ -2221,7 +2227,7 @@ msgstr "" "表示するだけです。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:255 +#: apt-cache.8.xml:249 msgid "" "Select the file to store the package cache. The package cache is the primary " "cache used by all operations. Configuration Item: <literal>Dir::Cache::" @@ -2232,7 +2238,7 @@ msgstr "" "pkgcache</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:261 +#: apt-cache.8.xml:255 msgid "" "Select the file to store the source cache. The source is used only by " "<literal>gencaches</literal> and it stores a parsed version of the package " @@ -2247,7 +2253,7 @@ msgstr "" "<literal>Dir::Cache::srcpkgcache</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:269 +#: apt-cache.8.xml:263 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quietness up to a maximum of 2. You can also use " @@ -2260,7 +2266,7 @@ msgstr "" "<literal>quiet</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:276 +#: apt-cache.8.xml:270 msgid "" "Print only important dependencies; for use with <literal>unmet</literal> and " "<literal>depends</literal>. Causes only Depends and Pre-Depends relations to " @@ -2271,7 +2277,7 @@ msgstr "" "目: <literal>APT::Cache::Important</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:290 +#: apt-cache.8.xml:284 msgid "" "Per default the <literal>depends</literal> and <literal>rdepends</literal> " "print all dependencies. This can be tweaked with these flags which will omit " @@ -2285,7 +2291,7 @@ msgstr "" "replaceable></literal> 例: <literal>APT::Cache::ShowRecommends</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:297 +#: apt-cache.8.xml:291 msgid "" "Print full package records when searching. Configuration Item: " "<literal>APT::Cache::ShowFull</literal>." @@ -2294,7 +2300,7 @@ msgstr "" "ShowFull</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:302 +#: apt-cache.8.xml:296 msgid "" "Print full records for all available versions. This is the default; to turn " "it off, use <option>--no-all-versions</option>. If <option>--no-all-" @@ -2311,7 +2317,7 @@ msgstr "" "AllVersions</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:311 +#: apt-cache.8.xml:305 msgid "" "Perform automatic package cache regeneration, rather than use the cache as " "it is. This is the default; to turn it off, use <option>--no-generate</" @@ -2322,7 +2328,7 @@ msgstr "" "option> を使用してください。設定項目: <literal>APT::Cache::Generate</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:317 +#: apt-cache.8.xml:311 msgid "" "Only search on the package names, not the long descriptions. Configuration " "Item: <literal>APT::Cache::NamesOnly</literal>." @@ -2331,7 +2337,7 @@ msgstr "" "Cache::NamesOnly</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:322 +#: apt-cache.8.xml:316 msgid "" "Make <literal>pkgnames</literal> print all names, including virtual packages " "and missing dependencies. Configuration Item: <literal>APT::Cache::" @@ -2341,7 +2347,7 @@ msgstr "" "表示します。設定項目: <literal>APT::Cache::AllNames</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:328 +#: apt-cache.8.xml:322 msgid "" "Make <literal>depends</literal> and <literal>rdepends</literal> recursive so " "that all packages mentioned are printed once. Configuration Item: " @@ -2352,7 +2358,7 @@ msgstr "" "RecurseDepends</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:335 +#: apt-cache.8.xml:329 msgid "" "Limit the output of <literal>depends</literal> and <literal>rdepends</" "literal> to packages which are currently installed. Configuration Item: " @@ -2363,12 +2369,12 @@ msgstr "" "Installed</literal>" #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:353 +#: apt-cache.8.xml:347 msgid "&apt-conf;, &sources-list;, &apt-get;" msgstr "&apt-conf;, &sources-list;, &apt-get;" #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:358 +#: apt-cache.8.xml:352 msgid "" "<command>apt-cache</command> returns zero on normal operation, decimal 100 " "on error." @@ -2377,12 +2383,12 @@ msgstr "" "100 を返します。" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-key.8.xml:34 +#: apt-key.8.xml:28 msgid "APT key management utility" msgstr "APT キー管理ユーティリティ" #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:41 +#: apt-key.8.xml:35 msgid "" "<command>apt-key</command> is used to manage the list of keys used by apt to " "authenticate packages. Packages which have been authenticated using these " @@ -2393,12 +2399,12 @@ msgstr "" "ると見なせるでしょう。" #. type: Content of: <refentry><refsect1><title> -#: apt-key.8.xml:47 +#: apt-key.8.xml:41 msgid "Commands" msgstr "コマンド" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:52 +#: apt-key.8.xml:46 msgid "" "Add a new key to the list of trusted keys. The key is read from the " "filename given with the parameter &synopsis-param-filename; or if the " @@ -2409,32 +2415,32 @@ msgstr "" "<literal>-</literal> とすると、標準入力から読み込みます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:65 +#: apt-key.8.xml:59 msgid "Remove a key from the list of trusted keys." msgstr "信頼キー一覧からキーを削除します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:76 +#: apt-key.8.xml:70 msgid "Output the key &synopsis-param-keyid; to standard output." msgstr "キー &synopsis-param-keyid; を標準出力に出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:87 +#: apt-key.8.xml:81 msgid "Output all trusted keys to standard output." msgstr "信頼するキーをすべて標準出力に出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:98 +#: apt-key.8.xml:92 msgid "List trusted keys." msgstr "信頼キーを一覧表示します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:109 +#: apt-key.8.xml:103 msgid "List fingerprints of trusted keys." msgstr "信頼キーのフィンガープリントを一覧表示します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:120 +#: apt-key.8.xml:114 msgid "" "Pass advanced options to gpg. With adv --recv-key you can download the " "public key." @@ -2443,7 +2449,7 @@ msgstr "" "できます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:132 +#: apt-key.8.xml:126 msgid "" "Update the local keyring with the archive keyring and remove from the local " "keyring the archive keys which are no longer valid. The archive keyring is " @@ -2457,7 +2463,7 @@ msgstr "" "す。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:146 +#: apt-key.8.xml:140 msgid "" "Perform an update working similarly to the <command>update</command> command " "above, but get the archive keyring from a URI instead and validate it " @@ -2474,12 +2480,12 @@ msgstr "" "有効です。" #. type: Content of: <refentry><refsect1><title> -#: apt-key.8.xml:162 apt-cdrom.8.xml:82 +#: apt-key.8.xml:156 apt-cdrom.8.xml:76 msgid "Options" msgstr "オプション" #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:163 +#: apt-key.8.xml:157 msgid "" "Note that options need to be defined before the commands described in the " "previous section." @@ -2488,7 +2494,7 @@ msgstr "" "てください。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:166 +#: apt-key.8.xml:160 msgid "" "With this option it is possible to specify a particular keyring file the " "command should operate on. The default is that a command is executed on the " @@ -2504,47 +2510,47 @@ msgstr "" "ます。つまり新しいキーはこのファイルに追加されます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:181 +#: apt-key.8.xml:175 msgid "<filename>/etc/apt/trustdb.gpg</filename>" msgstr "<filename>/etc/apt/trustdb.gpg</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:182 +#: apt-key.8.xml:176 msgid "Local trust database of archive keys." msgstr "アーカイブキーのローカル信頼データベースです。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:185 +#: apt-key.8.xml:179 msgid "&keyring-filename;" msgstr "&keyring-filename;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:186 +#: apt-key.8.xml:180 msgid "Keyring of &keyring-distro; archive trusted keys." msgstr "&keyring-distro; アーカイブ信頼キーのキーリングです。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:189 +#: apt-key.8.xml:183 msgid "&keyring-removed-filename;" msgstr "&keyring-removed-filename;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:190 +#: apt-key.8.xml:184 msgid "Keyring of &keyring-distro; archive removed trusted keys." msgstr "削除された &keyring-distro; アーカイブ信頼キーのキーリングです。" #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:199 +#: apt-key.8.xml:193 msgid "&apt-get;, &apt-secure;" msgstr "&apt-get;, &apt-secure;" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-mark.8.xml:35 +#: apt-mark.8.xml:29 msgid "mark/unmark a package as being automatically-installed" msgstr "パッケージが自動的にインストールされたかどうかのマークを変更します。" #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:41 +#: apt-mark.8.xml:35 msgid "" "<command>apt-mark</command> will change whether a package has been marked as " "being automatically installed." @@ -2553,7 +2559,7 @@ msgstr "" "かのマークを変更します。" #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:45 +#: apt-mark.8.xml:39 msgid "" "When you request that a package is installed, and as a result other packages " "are installed to satisfy its dependencies, the dependencies are marked as " @@ -2568,7 +2574,7 @@ msgstr "" "command> や <command>aptitude</command> により削除されます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:54 +#: apt-mark.8.xml:48 msgid "" "<literal>auto</literal> is used to mark a package as being automatically " "installed, which will cause the package to be removed when no more manually " @@ -2579,7 +2585,7 @@ msgstr "" "ると、このパッケージを削除します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:62 +#: apt-mark.8.xml:56 msgid "" "<literal>manual</literal> is used to mark a package as being manually " "installed, which will prevent the package from being automatically removed " @@ -2590,7 +2596,7 @@ msgstr "" "を自動的に削除するのを防ぎます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:70 +#: apt-mark.8.xml:64 msgid "" "<literal>hold</literal> is used to mark a package as held back, which will " "prevent the package from being automatically installed, upgraded or " @@ -2605,7 +2611,7 @@ msgstr "" "ありません。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:80 +#: apt-mark.8.xml:74 msgid "" "<literal>unhold</literal> is used to cancel a previously set hold on a " "package to allow all actions again." @@ -2614,7 +2620,7 @@ msgstr "" "キャンセルするのに使用します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:86 +#: apt-mark.8.xml:80 msgid "" "<literal>showauto</literal> is used to print a list of automatically " "installed packages with each package on a new line. All automatically " @@ -2627,7 +2633,7 @@ msgstr "" "ケージが自動的にインストールされている場合にのみ、表示します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:94 +#: apt-mark.8.xml:88 msgid "" "<literal>showmanual</literal> can be used in the same way as " "<literal>showauto</literal> except that it will print a list of manually " @@ -2637,7 +2643,7 @@ msgstr "" "ますが、手動でインストールしたパッケージの一覧を表示します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:101 +#: apt-mark.8.xml:95 msgid "" "<literal>showhold</literal> is used to print a list of packages on hold in " "the same way as for the other show commands." @@ -2646,7 +2652,7 @@ msgstr "" "パッケージを出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:117 +#: apt-mark.8.xml:111 msgid "" "Read/Write package stats from the filename given with the parameter " "&synopsis-param-filename; instead of from the default location, which is " @@ -2658,7 +2664,7 @@ msgstr "" "param-filename; からパッケージの状態を読み書きします。" #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:138 +#: apt-mark.8.xml:132 msgid "" "<command>apt-mark</command> returns zero on normal operation, non-zero on " "error." @@ -2667,12 +2673,12 @@ msgstr "" "を返します。" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-secure.8.xml:49 +#: apt-secure.8.xml:43 msgid "Archive authentication support for APT" msgstr "APT アーカイブ認証サポート" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:54 +#: apt-secure.8.xml:48 msgid "" "Starting with version 0.6, <command>apt</command> contains code that does " "signature checking of the Release file for all archives. This ensures that " @@ -2685,7 +2691,7 @@ msgstr "" "を保証します。" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:62 +#: apt-secure.8.xml:56 msgid "" "If a package comes from a archive without a signature, or with a signature " "that apt does not have a key for, that package is considered untrusted, and " @@ -2700,7 +2706,7 @@ msgstr "" "前に、すべてのソースに対して、強制的に検証される可能性があります。" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:71 +#: apt-secure.8.xml:65 msgid "" "The package frontends &apt-get;, &aptitude; and &synaptic; support this new " "authentication feature." @@ -2709,12 +2715,12 @@ msgstr "" "認証機能をサポートしています。" #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:76 +#: apt-secure.8.xml:70 msgid "Trusted archives" msgstr "信頼済アーカイブ" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:79 +#: apt-secure.8.xml:73 msgid "" "The chain of trust from an apt archive to the end user is made up of several " "steps. <command>apt-secure</command> is the last step in this chain; " @@ -2731,7 +2737,7 @@ msgstr "" "イブメンテナの責任だということです。" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:87 +#: apt-secure.8.xml:81 msgid "" "apt-secure does not review signatures at a package level. If you require " "tools to do this you should look at <command>debsig-verify</command> and " @@ -2744,7 +2750,7 @@ msgstr "" "を確認してください。" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:94 +#: apt-secure.8.xml:88 msgid "" "The chain of trust in Debian starts when a maintainer uploads a new package " "or a new version of a package to the Debian archive. In order to become " @@ -2761,7 +2767,7 @@ msgstr "" "ナに署名されています。" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:104 +#: apt-secure.8.xml:98 msgid "" "Once the uploaded package is verified and included in the archive, the " "maintainer signature is stripped off, and checksums of the package are " @@ -2782,7 +2788,7 @@ msgstr "" "す。" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:115 +#: apt-secure.8.xml:109 msgid "" "End users can check the signature of the Release file, extract a checksum of " "a package from it and compare it with the checksum of the package they " @@ -2793,7 +2799,7 @@ msgstr "" "す。また、APT が自動的に行うのに任せることもできます。" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:120 +#: apt-secure.8.xml:114 msgid "" "Notice that this is distinct from checking signatures on a per package " "basis. It is designed to prevent two possible attacks:" @@ -2802,7 +2808,7 @@ msgstr "" "うに考えられる 2 種類の攻撃を防ぐよう設計されています。" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:125 +#: apt-secure.8.xml:119 msgid "" "<literal>Network \"man in the middle\" attacks</literal>. Without signature " "checking, malicious agents can introduce themselves into the package " @@ -2817,7 +2823,7 @@ msgstr "" "あるソフトウェアを掴まされたりします。" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:133 +#: apt-secure.8.xml:127 msgid "" "<literal>Mirror network compromise</literal>. Without signature checking, a " "malicious agent can compromise a mirror host and modify the files in it to " @@ -2829,7 +2835,7 @@ msgstr "" "てに、悪意あるソフトウェアが伝播するようにファイルを変更できます。" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:140 +#: apt-secure.8.xml:134 msgid "" "However, it does not defend against a compromise of the Debian master server " "itself (which signs the packages) or against a compromise of the key used to " @@ -2841,12 +2847,12 @@ msgstr "" "この機構はパッケージごとの署名を補完することができます。" #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:146 +#: apt-secure.8.xml:140 msgid "User configuration" msgstr "ユーザの設定" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:148 +#: apt-secure.8.xml:142 msgid "" "<command>apt-key</command> is the program that manages the list of keys used " "by apt. It can be used to add or remove keys, although an installation of " @@ -2859,7 +2865,7 @@ msgstr "" "key</command> でキーの追加・削除が行えます。" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:155 +#: apt-secure.8.xml:149 msgid "" "In order to add a new key you need to first download it (you should make " "sure you are using a trusted communication channel when retrieving it), add " @@ -2876,12 +2882,12 @@ msgstr "" "ファイルをダウンロード・検証できるようになります。" #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:164 +#: apt-secure.8.xml:158 msgid "Archive configuration" msgstr "アーカイブの設定" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:166 +#: apt-secure.8.xml:160 msgid "" "If you want to provide archive signatures in an archive under your " "maintenance you have to:" @@ -2890,7 +2896,7 @@ msgstr "" "下のようにしてください。" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:171 +#: apt-secure.8.xml:165 msgid "" "<emphasis>Create a toplevel Release file</emphasis>, if it does not exist " "already. You can do this by running <command>apt-ftparchive release</" @@ -2901,7 +2907,7 @@ msgstr "" "供) を実行すると、作成できます。" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:176 +#: apt-secure.8.xml:170 msgid "" "<emphasis>Sign it</emphasis>. You can do this by running <command>gpg --" "clearsign -o InRelease Release</command> and <command>gpg -abs -o Release." @@ -2912,7 +2918,7 @@ msgstr "" "行して、署名してください。" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:180 +#: apt-secure.8.xml:174 msgid "" "<emphasis>Publish the key fingerprint</emphasis>, that way your users will " "know what key they need to import in order to authenticate the files in the " @@ -2923,7 +2929,7 @@ msgstr "" "ます。" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:187 +#: apt-secure.8.xml:181 msgid "" "Whenever the contents of the archive change (new packages are added or " "removed) the archive maintainer has to follow the first two steps outlined " @@ -2933,7 +2939,7 @@ msgstr "" "ンテナは前述の最初の 2 ステップに従わなければなりません。" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:195 +#: apt-secure.8.xml:189 msgid "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " "&debsign;, &debsig-verify;, &gpg;" @@ -2942,7 +2948,7 @@ msgstr "" "&debsign;, &debsig-verify;, &gpg;" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:199 +#: apt-secure.8.xml:193 msgid "" "For more background information you might want to review the <ulink url=" "\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7\">Debian " @@ -2958,12 +2964,12 @@ msgstr "" ">Strong Distribution HOWTO</ulink> をご覧ください。" #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:212 +#: apt-secure.8.xml:206 msgid "Manpage Authors" msgstr "マニュアルページ作者" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:214 +#: apt-secure.8.xml:208 msgid "" "This man-page is based on the work of Javier Fernández-Sanguino Peña, Isaac " "Jones, Colin Walters, Florian Weimer and Michael Vogt." @@ -2972,12 +2978,12 @@ msgstr "" "Walters, Florian Weimer, Michael Vogt の作業を元にしています。" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-cdrom.8.xml:34 +#: apt-cdrom.8.xml:28 msgid "APT CD-ROM management utility" msgstr "APT CD-ROM 管理ユーティリティ" #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:40 +#: apt-cdrom.8.xml:34 msgid "" "<command>apt-cdrom</command> is used to add a new CD-ROM to APT's list of " "available sources. <command>apt-cdrom</command> takes care of determining " @@ -2990,7 +2996,7 @@ msgstr "" "認を行います。" #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:47 +#: apt-cdrom.8.xml:41 msgid "" "It is necessary to use <command>apt-cdrom</command> to add CDs to the APT " "system; it cannot be done by hand. Furthermore each disc in a multi-CD set " @@ -3001,7 +3007,7 @@ msgstr "" "を補正できるか評価しなければなりません。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:58 +#: apt-cdrom.8.xml:52 msgid "" "<literal>add</literal> is used to add a new disc to the source list. It will " "unmount the CD-ROM device, prompt for a disc to be inserted and then proceed " @@ -3016,7 +3022,7 @@ msgstr "" "す。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:66 +#: apt-cdrom.8.xml:60 msgid "" "APT uses a CD-ROM ID to track which disc is currently in the drive and " "maintains a database of these IDs in <filename>&statedir;/cdroms.list</" @@ -3027,7 +3033,7 @@ msgstr "" "ベースで管理します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:74 +#: apt-cdrom.8.xml:68 msgid "" "A debugging tool to report the identity of the current disc as well as the " "stored file name" @@ -3036,7 +3042,7 @@ msgstr "" "グツールです。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:87 +#: apt-cdrom.8.xml:81 msgid "" "Do not try to auto-detect the CD-ROM path. Usually combined with the " "<option>--cdrom</option> option. Configuration Item: <literal>Acquire::" @@ -3047,7 +3053,7 @@ msgstr "" "literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:95 +#: apt-cdrom.8.xml:89 msgid "" "Mount point; specify the location to mount the CD-ROM. This mount point must " "be listed in <filename>/etc/fstab</filename> and properly configured. " @@ -3058,7 +3064,7 @@ msgstr "" "設定項目: <literal>Acquire::cdrom::mount</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:104 +#: apt-cdrom.8.xml:98 msgid "" "Rename a disc; change the label of a disc or override the disc's given " "label. This option will cause <command>apt-cdrom</command> to prompt for a " @@ -3069,7 +3075,7 @@ msgstr "" "を入力するよう促します。設定項目: <literal>APT::CDROM::Rename</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:113 +#: apt-cdrom.8.xml:107 msgid "" "No mounting; prevent <command>apt-cdrom</command> from mounting and " "unmounting the mount point. Configuration Item: <literal>APT::CDROM::" @@ -3080,7 +3086,7 @@ msgstr "" "literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:121 +#: apt-cdrom.8.xml:115 msgid "" "Fast Copy; Assume the package files are valid and do not check every " "package. This option should be used only if <command>apt-cdrom</command> has " @@ -3093,7 +3099,7 @@ msgstr "" "<literal>APT::CDROM::Fast</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:131 +#: apt-cdrom.8.xml:125 msgid "" "Thorough Package Scan; This option may be needed with some old Debian " "1.1/1.2 discs that have Package files in strange places. It takes much " @@ -3105,7 +3111,7 @@ msgstr "" "できます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:142 +#: apt-cdrom.8.xml:136 msgid "" "No Changes; Do not change the &sources-list; file and do not write index " "files. Everything is still checked however. Configuration Item: " @@ -3116,12 +3122,12 @@ msgstr "" "CDROM::NoAct</literal>" #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:155 +#: apt-cdrom.8.xml:149 msgid "&apt-conf;, &apt-get;, &sources-list;" msgstr "&apt-conf;, &apt-get;, &sources-list;" #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:160 +#: apt-cdrom.8.xml:154 msgid "" "<command>apt-cdrom</command> returns zero on normal operation, decimal 100 " "on error." @@ -3130,12 +3136,12 @@ msgstr "" "100 を返します。" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-config.8.xml:35 +#: apt-config.8.xml:29 msgid "APT Configuration Query program" msgstr "APT 設定取得プログラム" #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:41 +#: apt-config.8.xml:35 msgid "" "<command>apt-config</command> is an internal program used by various " "portions of the APT suite to provide consistent configurability. It accesses " @@ -3148,7 +3154,7 @@ msgstr "" "ます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:53 +#: apt-config.8.xml:47 msgid "" "shell is used to access the configuration information from a shell script. " "It is given pairs of arguments, the first being a shell variable and the " @@ -3162,7 +3168,7 @@ msgstr "" "してください。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> -#: apt-config.8.xml:61 +#: apt-config.8.xml:55 #, no-wrap msgid "" "OPTS=\"-f\"\n" @@ -3174,7 +3180,7 @@ msgstr "" "eval $RES\n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:66 +#: apt-config.8.xml:60 msgid "" "This will set the shell environment variable $OPTS to the value of MyApp::" "options with a default of <option>-f</option>." @@ -3183,7 +3189,7 @@ msgstr "" "値は <option>-f</option> となります。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:70 +#: apt-config.8.xml:64 msgid "" "The configuration item may be postfixed with a /[fdbi]. f returns file " "names, d returns directories, b returns true or false and i returns an " @@ -3194,12 +3200,12 @@ msgstr "" "を行います。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:79 +#: apt-config.8.xml:73 msgid "Just show the contents of the configuration space." msgstr "設定箇所の内容を表示するだけです。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:92 +#: apt-config.8.xml:86 msgid "" "Include options which have an empty value. This is the default, so use --no-" "empty to remove them from the output." @@ -3208,12 +3214,12 @@ msgstr "" "--no-empty としてください。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-config.8.xml:97 +#: apt-config.8.xml:91 msgid "%f "%v";%n" msgstr "%f "%v";%n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:98 +#: apt-config.8.xml:92 msgid "" "Defines the output of each config option. %t will be replaced with " "its individual name, %f with its full hierarchical name and %v " @@ -3230,13 +3236,13 @@ msgstr "" "さい。" #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:112 apt-extracttemplates.1.xml:73 apt-sortpkgs.1.xml:66 -#: apt-ftparchive.1.xml:610 +#: apt-config.8.xml:106 apt-extracttemplates.1.xml:67 apt-sortpkgs.1.xml:60 +#: apt-ftparchive.1.xml:604 msgid "&apt-conf;" msgstr "&apt-conf;" #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:117 +#: apt-config.8.xml:111 msgid "" "<command>apt-config</command> returns zero on normal operation, decimal 100 " "on error." @@ -3245,27 +3251,27 @@ msgstr "" "の 100 を返します。" #. type: Content of: <refentry><refentryinfo><author><contrib> -#: apt.conf.5.xml:22 +#: apt.conf.5.xml:16 msgid "Initial documentation of Debug::*." msgstr "Debug::* に関する最初のドキュメント" #. type: Content of: <refentry><refentryinfo><author><email> -#: apt.conf.5.xml:23 +#: apt.conf.5.xml:17 msgid "dburrows@debian.org" msgstr "dburrows@debian.org" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt.conf.5.xml:33 apt_preferences.5.xml:27 sources.list.5.xml:28 +#: apt.conf.5.xml:27 apt_preferences.5.xml:21 sources.list.5.xml:22 msgid "5" msgstr "5" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt.conf.5.xml:40 +#: apt.conf.5.xml:34 msgid "Configuration file for APT" msgstr "APT の設定ファイル" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:44 +#: apt.conf.5.xml:38 msgid "" "<filename>/etc/apt/apt.conf</filename> is the main configuration file shared " "by all the tools in the APT suite of tools, though it is by no means the " @@ -3278,21 +3284,21 @@ msgstr "" "ンドラインパーサを共有しています。" #. type: Content of: <refentry><refsect1><orderedlist><para> -#: apt.conf.5.xml:50 +#: apt.conf.5.xml:44 msgid "" "When an APT tool starts up it will read the configuration files in the " "following order:" msgstr "APT ツールの起動時に、設定ファイルを以下の順番で読み込みます。" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:52 +#: apt.conf.5.xml:46 msgid "" "the file specified by the <envar>APT_CONFIG</envar> environment variable (if " "any)" msgstr "<envar>APT_CONFIG</envar> 環境変数で指定したファイル (存在する場合)" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:54 +#: apt.conf.5.xml:48 msgid "" "all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending " "order which have either no or \"<literal>conf</literal>\" as filename " @@ -3310,13 +3316,13 @@ msgstr "" "力します。一致する場合は黙って無視します。" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:61 +#: apt.conf.5.xml:55 msgid "" "the main configuration file specified by <literal>Dir::Etc::main</literal>" msgstr "<literal>Dir::Etc::Main</literal> で指定される、メイン設定ファイル" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:63 +#: apt.conf.5.xml:57 msgid "" "the command line options are applied to override the configuration " "directives or to load even more configuration files." @@ -3325,12 +3331,12 @@ msgstr "" "加読み込みができます。" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:67 +#: apt.conf.5.xml:61 msgid "Syntax" msgstr "構文" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:68 +#: apt.conf.5.xml:62 msgid "" "The configuration file is organized in a tree with options organized into " "functional groups. Option specification is given with a double colon " @@ -3344,7 +3350,7 @@ msgstr "" "プションは、親グループからは継承しません。" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:74 +#: apt.conf.5.xml:68 msgid "" "Syntactically the configuration language is modeled after what the ISC tools " "such as bind and dhcp use. Lines starting with <literal>//</literal> are " @@ -3367,7 +3373,7 @@ msgstr "" "のように波カッコを使うと、新しいスコープを開くことができます。" #. type: Content of: <refentry><refsect1><informalexample><programlisting> -#: apt.conf.5.xml:87 +#: apt.conf.5.xml:81 #, no-wrap msgid "" "APT {\n" @@ -3385,7 +3391,7 @@ msgstr "" "};\n" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:95 +#: apt.conf.5.xml:89 msgid "" "with newlines placed to make it more readable. Lists can be created by " "opening a scope and including a single string enclosed in quotes followed by " @@ -3396,13 +3402,13 @@ msgstr "" "ロンで区切って、複数のエントリを表せます。" #. type: Content of: <refentry><refsect1><informalexample><programlisting> -#: apt.conf.5.xml:100 +#: apt.conf.5.xml:94 #, no-wrap msgid "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" msgstr "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:103 +#: apt.conf.5.xml:97 msgid "" "In general the sample configuration file &configureindex; is a good guide " "for how it should look." @@ -3411,7 +3417,7 @@ msgstr "" "考になるでしょう。" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:106 +#: apt.conf.5.xml:100 msgid "" "Case is not significant in names of configuration items, so in the previous " "example you could use <literal>dpkg::pre-install-pkgs</literal>." @@ -3420,7 +3426,7 @@ msgstr "" "<literal>dpkg::pre-install-pkgs</literal> とすることもできます。" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:109 +#: apt.conf.5.xml:103 msgid "" "Names for the configuration items are optional if a list is defined as can " "be seen in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. If " @@ -3435,7 +3441,7 @@ msgstr "" "できます。" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:114 +#: apt.conf.5.xml:108 msgid "" "Two special commands are defined: <literal>#include</literal> (which is " "deprecated and not supported by alternative implementations) and " @@ -3454,7 +3460,7 @@ msgstr "" "があることに注意してください)。" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:124 +#: apt.conf.5.xml:118 msgid "" "The <literal>#clear</literal> command is the only way to delete a list or a " "complete scope. Reopening a scope (or using the syntax described below with " @@ -3469,7 +3475,7 @@ msgstr "" "せん。クリアされるだけです。" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:132 +#: apt.conf.5.xml:126 msgid "" "All of the APT tools take an -o option which allows an arbitrary " "configuration directive to be specified on the command line. The syntax is a " @@ -3487,7 +3493,7 @@ msgstr "" "ん)。" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:140 +#: apt.conf.5.xml:134 msgid "" "Note that appending items to a list using <literal>::</literal> only works " "for one item per line, and that you should not use it in combination with " @@ -3515,12 +3521,12 @@ msgstr "" "かない限りは、自分でそのような構文を修正してください。" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:155 +#: apt.conf.5.xml:149 msgid "The APT Group" msgstr "APT グループ" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:156 +#: apt.conf.5.xml:150 msgid "" "This group of options controls general APT behavior as well as holding the " "options for all of the tools." @@ -3529,7 +3535,7 @@ msgstr "" "御します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:161 +#: apt.conf.5.xml:155 msgid "" "System Architecture; sets the architecture to use when fetching files and " "parsing package lists. The internal default is the architecture apt was " @@ -3540,7 +3546,7 @@ msgstr "" "ルしたアーキテクチャです。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:168 +#: apt.conf.5.xml:162 msgid "" "All Architectures the system supports. For instance, CPUs implementing the " "<literal>amd64</literal> (also called <literal>x86-64</literal>) " @@ -3561,7 +3567,7 @@ msgstr "" "加します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:182 +#: apt.conf.5.xml:176 msgid "" "List of all build profiles enabled for build-dependency resolution, without " "the \"<literal>profile.</literal>\" namespace prefix. By default this list " @@ -3574,7 +3580,7 @@ msgstr "" "<envar>DEB_BUILD_PROFILES</envar> はこの一覧よりも優先されます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:190 +#: apt.conf.5.xml:184 msgid "" "Default release to install packages from if more than one version is " "available. Contains release name, codename or release version. Examples: " @@ -3587,7 +3593,7 @@ msgstr "" "'4.0', '5.0*' となります。&apt-preferences; も参照してください。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:196 +#: apt.conf.5.xml:190 msgid "" "Ignore held packages; this global option causes the problem resolver to " "ignore held packages in its decision making." @@ -3596,7 +3602,7 @@ msgstr "" "パッケージを無視します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:201 +#: apt.conf.5.xml:195 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " @@ -3610,7 +3616,7 @@ msgstr "" "注意してください。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:209 +#: apt.conf.5.xml:203 msgid "" "Defaults to on, which will cause APT to install essential and important " "packages as soon as possible in an install/upgrade operation, in order to " @@ -3634,7 +3640,7 @@ msgstr "" "なり、A への依存関係は、もう満たせません。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:221 +#: apt.conf.5.xml:215 msgid "" "The immediate configuration marker is also applied in the potentially " "problematic case of circular dependencies, since a dependency with the " @@ -3659,7 +3665,7 @@ msgstr "" "述のシナリオを解決する方法の、1つにしかすぎないのです。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:234 +#: apt.conf.5.xml:228 msgid "" "Before a big operation like <literal>dist-upgrade</literal> is run with this " "option disabled you should try to explicitly <literal>install</literal> the " @@ -3675,7 +3681,7 @@ msgstr "" "も報告していただきたいです。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:245 +#: apt.conf.5.xml:239 msgid "" "Never enable this option unless you <emphasis>really</emphasis> know what " "you are doing. It permits APT to temporarily remove an essential package to " @@ -3696,7 +3702,7 @@ msgstr "" "それらが依存しているパッケージ以外の不可欠パッケージで動作します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:257 +#: apt.conf.5.xml:251 msgid "" "APT uses since version 0.7.26 a resizable memory mapped cache file to store " "the available information. <literal>Cache-Start</literal> acts as a hint of " @@ -3730,12 +3736,12 @@ msgstr "" "の自動増加を無効にします。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:273 +#: apt.conf.5.xml:267 msgid "Defines which packages are considered essential build dependencies." msgstr "構築依存関係で不可欠なパッケージを定義します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:277 +#: apt.conf.5.xml:271 msgid "" "The Get subsection controls the &apt-get; tool; please see its documentation " "for more information about the options here." @@ -3744,7 +3750,7 @@ msgstr "" "&apt-get; の文書を参照してください。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:282 +#: apt.conf.5.xml:276 msgid "" "The Cache subsection controls the &apt-cache; tool; please see its " "documentation for more information about the options here." @@ -3753,7 +3759,7 @@ msgstr "" "は &apt-cache; の文書を参照してください。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:287 +#: apt.conf.5.xml:281 msgid "" "The CDROM subsection controls the &apt-cdrom; tool; please see its " "documentation for more information about the options here." @@ -3762,12 +3768,12 @@ msgstr "" "は &apt-cdrom; の文書を参照してください。" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:293 +#: apt.conf.5.xml:287 msgid "The Acquire Group" msgstr "Acquire グループ" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:294 +#: apt.conf.5.xml:288 msgid "" "The <literal>Acquire</literal> group of options controls the download of " "packages as well as the various \"acquire methods\" responsible for the " @@ -3778,7 +3784,7 @@ msgstr "" "(&sources-list; も参照)。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:301 +#: apt.conf.5.xml:295 msgid "" "Security related option defaulting to true, as giving a Release file's " "validation an expiration date prevents replay attacks over a long timescale, " @@ -3798,7 +3804,7 @@ msgstr "" "下の <literal>Max-ValidTime</literal> オプションを使用できます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:314 +#: apt.conf.5.xml:308 msgid "" "Maximum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -3816,7 +3822,7 @@ msgstr "" "固有の設定を作成できます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:326 +#: apt.conf.5.xml:320 msgid "" "Minimum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -3834,7 +3840,7 @@ msgstr "" "定を作成できます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:338 +#: apt.conf.5.xml:332 msgid "" "Try to download deltas called <literal>PDiffs</literal> for indexes (like " "<filename>Packages</filename> files) instead of downloading whole ones. True " @@ -3845,7 +3851,7 @@ msgstr "" "す。デフォルトでは True です。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:341 +#: apt.conf.5.xml:335 msgid "" "Two sub-options to limit the use of PDiffs are also available: " "<literal>FileLimit</literal> can be used to specify a maximum number of " @@ -3861,7 +3867,7 @@ msgstr "" "も、パッチをダウンロードする代わりに、完全なファイルをダウンロードします。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:351 +#: apt.conf.5.xml:345 msgid "" "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" "literal> or <literal>access</literal> which determines how APT parallelizes " @@ -3875,7 +3881,7 @@ msgstr "" "<literal>access</literal> は、URI タイプごとに 1 接続を開きます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:359 +#: apt.conf.5.xml:353 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." @@ -3884,7 +3890,7 @@ msgstr "" "えられた回数だけリトライを行います。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:364 +#: apt.conf.5.xml:358 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." @@ -3894,7 +3900,7 @@ msgstr "" "す。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:369 +#: apt.conf.5.xml:363 msgid "" "<literal>http::Proxy</literal> sets the default proxy to use for HTTP URIs. " "It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</" @@ -3912,7 +3918,7 @@ msgstr "" "ないと、環境変数 <envar>http_proxy</envar> を使用します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:377 +#: apt.conf.5.xml:371 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy not to use its cached " @@ -3931,7 +3937,7 @@ msgstr "" "が汚れるのを防げます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:387 apt.conf.5.xml:475 +#: apt.conf.5.xml:381 apt.conf.5.xml:469 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method; this value applies to the connection as well as the data timeout." @@ -3941,7 +3947,7 @@ msgstr "" "す。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:390 +#: apt.conf.5.xml:384 msgid "" "The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e." @@ -3959,7 +3965,7 @@ msgstr "" "フォルト値は 0 (= 無効) です。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:397 +#: apt.conf.5.xml:391 msgid "" "<literal>Acquire::http::AllowRedirect</literal> controls whether APT will " "follow redirects, which is enabled by default." @@ -3968,7 +3974,7 @@ msgstr "" "かどうかを制御します。デフォルトでは有効です。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:400 +#: apt.conf.5.xml:394 msgid "" "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" "literal> which accepts integer values in kilobytes per second. The default " @@ -3982,7 +3988,7 @@ msgstr "" "からダウンロードしなくなることに注意してください。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:407 +#: apt.conf.5.xml:401 msgid "" "<literal>Acquire::http::User-Agent</literal> can be used to set a different " "User-Agent for the http download method as some proxies allow access for " @@ -3993,7 +3999,7 @@ msgstr "" "ロードするための、異なる User-Agent を設定できます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:411 +#: apt.conf.5.xml:405 msgid "" "<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify " "an external command to discover the http proxy to use. Apt expects the " @@ -4015,7 +4021,7 @@ msgstr "" "古い <literal>ProxyAutoDetect</literal> よりも優先されます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:429 +#: apt.conf.5.xml:423 msgid "" "The <literal>Cache-control</literal>, <literal>Timeout</literal>, " "<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and " @@ -4032,7 +4038,7 @@ msgstr "" "していません。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:437 +#: apt.conf.5.xml:431 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is the " @@ -4070,7 +4076,7 @@ msgstr "" "ごとのオプションです。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:458 +#: apt.conf.5.xml:452 msgid "" "<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. " "It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</" @@ -4102,7 +4108,7 @@ msgstr "" "literal>, <literal>$(SITE_PORT)</literal> です。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:478 +#: apt.conf.5.xml:472 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on; it works in nearly every environment. However, " @@ -4117,7 +4123,7 @@ msgstr "" "定例はサンプル設定ファイルを参照してください)。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:485 +#: apt.conf.5.xml:479 msgid "" "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" "envar> environment variable to an HTTP URL - see the discussion of the http " @@ -4130,7 +4136,7 @@ msgstr "" "FTP over HTTP を使用するのは推奨しません。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:490 +#: apt.conf.5.xml:484 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@ -4146,13 +4152,13 @@ msgstr "" "いことに注意してください。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:504 +#: apt.conf.5.xml:498 #, no-wrap msgid "/cdrom/::Mount \"foo\";" msgstr "/cdrom/::Mount \"foo\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:499 +#: apt.conf.5.xml:493 msgid "" "For URIs using the <literal>cdrom</literal> method, the only configurable " "option is the mount point, <literal>cdrom::Mount</literal>, which must be " @@ -4173,7 +4179,7 @@ msgstr "" "マンドは UMount で指定することができます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:512 +#: apt.conf.5.xml:506 msgid "" "For GPGV URIs the only configurable option is <literal>gpgv::Options</" "literal>, which passes additional parameters to gpgv." @@ -4182,13 +4188,13 @@ msgstr "" "る、<literal>gpgv::Options</literal> です。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:523 +#: apt.conf.5.xml:517 #, no-wrap msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" msgstr "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:518 +#: apt.conf.5.xml:512 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " @@ -4206,19 +4212,19 @@ msgstr "" "す。構文は以下のようになります。<placeholder type=\"synopsis\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:528 +#: apt.conf.5.xml:522 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "Acquire::CompressionTypes::Order:: \"gz\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:531 +#: apt.conf.5.xml:525 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:524 +#: apt.conf.5.xml:518 msgid "" "Also, the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " @@ -4247,13 +4253,13 @@ msgstr "" "<literal>bz2</literal> は自動的に追加されるため、明示する必要はありません。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:538 +#: apt.conf.5.xml:532 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:533 +#: apt.conf.5.xml:527 msgid "" "Note that the <literal>Dir::Bin::<replaceable>Methodname</replaceable></" "literal> will be checked at run time. If this option has been set, the " @@ -4277,7 +4283,7 @@ msgstr "" "のみ定義されます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:543 +#: apt.conf.5.xml:537 msgid "" "The special type <literal>uncompressed</literal> can be used to give " "uncompressed files a preference, but note that most archives don't provide " @@ -4288,7 +4294,7 @@ msgstr "" "んどローカルミラーでのみ有効になることに注意してください。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:550 +#: apt.conf.5.xml:544 msgid "" "When downloading <literal>gzip</literal> compressed indexes (Packages, " "Sources, or Translations), keep them gzip compressed locally instead of " @@ -4301,7 +4307,7 @@ msgstr "" "する際に、CPU の能力を余計に消費します。デフォルトでは false です。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:558 +#: apt.conf.5.xml:552 msgid "" "The Languages subsection controls which <filename>Translation</filename> " "files are downloaded and in which order APT tries to display the description-" @@ -4319,13 +4325,13 @@ msgstr "" "意してください。長い言語コードは特に見かけません。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting> -#: apt.conf.5.xml:575 +#: apt.conf.5.xml:569 #, no-wrap msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" msgstr "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:563 +#: apt.conf.5.xml:557 msgid "" "The default list includes \"environment\" and \"en\". " "\"<literal>environment</literal>\" has a special meaning here: it will be " @@ -4362,7 +4368,7 @@ msgstr "" "ことに注意してください。<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:576 +#: apt.conf.5.xml:570 msgid "" "Note: To prevent problems resulting from APT being executed in different " "environments (e.g. by different users or by other programs) all Translation " @@ -4375,22 +4381,22 @@ msgstr "" "後) に追加します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:585 +#: apt.conf.5.xml:579 msgid "When downloading, force to use only the IPv4 protocol." msgstr "ダウンロード時に IPv4 プロトコルだけを使うように強制します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:591 +#: apt.conf.5.xml:585 msgid "When downloading, force to use only the IPv6 protocol." msgstr "ダウンロード時に IPv6 プロトコルだけを使うように強制します。" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:598 +#: apt.conf.5.xml:592 msgid "Directories" msgstr "ディレクトリ" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:600 +#: apt.conf.5.xml:594 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@ -4409,7 +4415,7 @@ msgstr "" "サブアイテムすべてに、前に付加するデフォルトディレクトリを含んでいます。" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:607 +#: apt.conf.5.xml:601 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@ -4423,16 +4429,17 @@ msgid "" msgstr "" "<literal>Dir::Cache</literal> は、ローカルキャッシュ情報に関する場所を格納し" "ています。これは、ダウンロード済アーカイブの場所を示す <literal>Dir::Cache::" -"archives</literal> と同様に、<literal>srcpkgcache</literal> と <literal>" -"pkgcache</literal> のパッケージキャッシュの場所になります。<literal>pkgcache" -"</literal> や <literal>srcpkgcache</literal> に <literal>\"\"</literal> を" -"セットすることで、キャッシュの生成を無効にできます。これにより起動時に遅くな" -"りますが、ディスク容量を節約できます。おそらく、srcpkgcache よりも pkgcache " -"を無効にすることが多いと思います。<literal>Dir::State</literal> と同様、" -"<literal>Dir::Cache</literal> はデフォルトディレクトリを含んでいます。" +"archives</literal> と同様に、<literal>srcpkgcache</literal> と " +"<literal>pkgcache</literal> のパッケージキャッシュの場所になります。" +"<literal>pkgcache</literal> や <literal>srcpkgcache</literal> に <literal>" +"\"\"</literal> をセットすることで、キャッシュの生成を無効にできます。これによ" +"り起動時に遅くなりますが、ディスク容量を節約できます。おそらく、srcpkgcache " +"よりも pkgcache を無効にすることが多いと思います。<literal>Dir::State</" +"literal> と同様、<literal>Dir::Cache</literal> はデフォルトディレクトリを含ん" +"でいます。" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:617 +#: apt.conf.5.xml:611 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -4446,7 +4453,7 @@ msgstr "" "ファイルを指定された場合のみ、この設定の効果があります)" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:623 +#: apt.conf.5.xml:617 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -4457,7 +4464,7 @@ msgstr "" "します。" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:627 +#: apt.conf.5.xml:621 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@ -4474,7 +4481,7 @@ msgstr "" "プログラムの場所を指定します。" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:635 +#: apt.conf.5.xml:629 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -4494,7 +4501,7 @@ msgstr "" "<filename>/tmp/staging/var/lib/dpkg/status</filename> から探します。" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:648 +#: apt.conf.5.xml:642 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -4510,12 +4517,12 @@ msgstr "" "フォルト値を見ればわかる通り、このパターンには正規表現を使用できます。" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:657 +#: apt.conf.5.xml:651 msgid "APT in DSelect" msgstr "DSelect での APT" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:659 +#: apt.conf.5.xml:653 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -4526,7 +4533,7 @@ msgstr "" "ます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:664 +#: apt.conf.5.xml:658 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@ -4547,7 +4554,7 @@ msgstr "" "パッケージをダウンロードする直前に行います。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:678 +#: apt.conf.5.xml:672 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." @@ -4556,7 +4563,7 @@ msgstr "" "されます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:683 +#: apt.conf.5.xml:677 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." @@ -4565,7 +4572,7 @@ msgstr "" "されます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:688 +#: apt.conf.5.xml:682 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@ -4574,12 +4581,12 @@ msgstr "" "します。デフォルトはエラーが発生した場合のみです。" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:694 +#: apt.conf.5.xml:688 msgid "How APT calls &dpkg;" msgstr "APT が &dpkg; を呼ぶ方法" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:695 +#: apt.conf.5.xml:689 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@ -4588,7 +4595,7 @@ msgstr "" "<literal>DPkg</literal> セクションにあります。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:700 +#: apt.conf.5.xml:694 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -4598,7 +4605,7 @@ msgstr "" "なければなりません。また、各リストは単一の引数として &dpkg; に渡されます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:706 +#: apt.conf.5.xml:700 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4610,7 +4617,7 @@ msgstr "" "bin/sh</filename> を通して呼び出され、何か問題があれば APT が異常終了します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:713 +#: apt.conf.5.xml:707 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4627,7 +4634,7 @@ msgstr "" "ります。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:720 +#: apt.conf.5.xml:714 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@ -4640,7 +4647,7 @@ msgstr "" "<literal>MultiArch</literal> フラグが追加されています。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:725 +#: apt.conf.5.xml:719 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -4656,7 +4663,7 @@ msgstr "" "ポートしている最大のバージョンの情報を代わりに送ります。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:732 +#: apt.conf.5.xml:726 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</" @@ -4673,7 +4680,7 @@ msgstr "" "ルディスクリプタの番号が収録されています。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:742 +#: apt.conf.5.xml:736 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." @@ -4682,7 +4689,7 @@ msgstr "" "<filename>/</filename> です。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:747 +#: apt.conf.5.xml:741 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." @@ -4691,12 +4698,12 @@ msgstr "" "ます。デフォルトでは署名を無効にし、全バイナリを生成します。" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:746 msgid "dpkg trigger usage (and related options)" msgstr "dpkg トリガの使い方 (および関連オプション)" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:753 +#: apt.conf.5.xml:747 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -4720,7 +4727,7 @@ msgstr "" "(もしくはそれ以上) の時間 100% のままとなり、進捗レポートを壊してしまいます。" #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:768 +#: apt.conf.5.xml:762 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -4734,7 +4741,7 @@ msgstr "" "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:762 +#: apt.conf.5.xml:756 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -4757,7 +4764,7 @@ msgstr "" "\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:775 +#: apt.conf.5.xml:769 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -4777,7 +4784,7 @@ msgstr "" "在 APT は、このフラグを、展開呼び出しや削除呼び出しにも追加します。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:783 +#: apt.conf.5.xml:777 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@ -4804,7 +4811,7 @@ msgstr "" "能性があるからです。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:798 +#: apt.conf.5.xml:792 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@ -4821,7 +4828,7 @@ msgstr "" "では、最後以外のすべての実行で、無効にできます。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:805 +#: apt.conf.5.xml:799 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -4836,7 +4843,7 @@ msgstr "" "ことに注意してください。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:818 +#: apt.conf.5.xml:812 #, no-wrap msgid "" "OrderList::Score {\n" @@ -4854,7 +4861,7 @@ msgstr "" "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:811 +#: apt.conf.5.xml:805 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -4877,12 +4884,12 @@ msgstr "" "\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:831 +#: apt.conf.5.xml:825 msgid "Periodic and Archives options" msgstr "Periodic オプションと Archives オプション" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:832 +#: apt.conf.5.xml:826 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -4895,12 +4902,12 @@ msgstr "" "トは、このスクリプトの先頭を参照してください。" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:840 +#: apt.conf.5.xml:834 msgid "Debug options" msgstr "デバッグオプション" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:842 +#: apt.conf.5.xml:836 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -4916,7 +4923,7 @@ msgstr "" "のオプションは興味がないでしょうが、以下のものは興味を引くかもしれません。" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:853 +#: apt.conf.5.xml:847 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -4927,7 +4934,7 @@ msgstr "" "にします。" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:861 +#: apt.conf.5.xml:855 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -4938,7 +4945,7 @@ msgstr "" "literal>) を行う場合に使用します。" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:870 +#: apt.conf.5.xml:864 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -4950,7 +4957,7 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:878 +#: apt.conf.5.xml:872 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." @@ -4959,34 +4966,34 @@ msgstr "" "ないようにします。" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:888 +#: apt.conf.5.xml:882 msgid "A full list of debugging options to apt follows." msgstr "以下は apt に対するデバッグオプションのすべてです。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:897 +#: apt.conf.5.xml:891 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" "<literal>cdrom://</literal> ソースへのアクセスに関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:908 +#: apt.conf.5.xml:902 msgid "Print information related to downloading packages using FTP." msgstr "FTP を用いたパッケージのダウンロードに関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:919 +#: apt.conf.5.xml:913 msgid "Print information related to downloading packages using HTTP." msgstr "HTTP を用いたパッケージのダウンロードに関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:930 +#: apt.conf.5.xml:924 msgid "Print information related to downloading packages using HTTPS." msgstr "HTTPS を用いたパッケージのダウンロードに関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:941 +#: apt.conf.5.xml:935 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@ -4994,7 +5001,7 @@ msgstr "" "<literal>gpg</literal> を用いた暗号署名の検証に関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:952 +#: apt.conf.5.xml:946 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." @@ -5003,12 +5010,12 @@ msgstr "" "します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:962 +#: apt.conf.5.xml:956 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "&apt-get; での構築依存関係解決のプロセスを説明します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:972 +#: apt.conf.5.xml:966 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." @@ -5016,7 +5023,7 @@ msgstr "" "<literal>apt</literal> ライブラリが生成した、暗号化ハッシュを出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:982 +#: apt.conf.5.xml:976 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -5026,7 +5033,7 @@ msgstr "" "システムにある使用済・未使用ブロックの数からの情報を含めないようにします。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:993 +#: apt.conf.5.xml:987 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." @@ -5035,13 +5042,13 @@ msgstr "" "<quote><literal>apt-get update</literal></quote> を実行できるようになります。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1005 +#: apt.conf.5.xml:999 msgid "Log when items are added to or removed from the global download queue." msgstr "" "グローバルダウンロードキューに対する項目の追加・削除の際にログを出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1015 +#: apt.conf.5.xml:1009 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." @@ -5050,7 +5057,7 @@ msgstr "" "ジやエラーを出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1025 +#: apt.conf.5.xml:1019 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." @@ -5059,7 +5066,7 @@ msgstr "" "します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1037 +#: apt.conf.5.xml:1031 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." @@ -5068,14 +5075,14 @@ msgstr "" "リストへのパッチ適用に関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1048 +#: apt.conf.5.xml:1042 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" "実際のダウンロードを行う際の、サブプロセスとのやりとりをログに出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1059 +#: apt.conf.5.xml:1053 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." @@ -5084,7 +5091,7 @@ msgstr "" "に出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1069 +#: apt.conf.5.xml:1063 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -5099,7 +5106,7 @@ msgstr "" "路に対応しています。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1083 +#: apt.conf.5.xml:1077 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -5128,7 +5135,7 @@ msgstr "" "ます。<literal>section</literal> はパッケージが現れるセクション名です。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1104 +#: apt.conf.5.xml:1098 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." @@ -5137,7 +5144,7 @@ msgstr "" "切られます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1115 +#: apt.conf.5.xml:1109 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." @@ -5146,7 +5153,7 @@ msgstr "" "を解析中に発生したエラーを出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1126 +#: apt.conf.5.xml:1120 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." @@ -5155,18 +5162,18 @@ msgstr "" "のトレースを生成します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1138 +#: apt.conf.5.xml:1132 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "&dpkg; を呼び出す際に、実行手順を追跡した状態メッセージを出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1149 +#: apt.conf.5.xml:1143 msgid "Output the priority of each package list on startup." msgstr "起動時の各パッケージの優先度を表示します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1159 +#: apt.conf.5.xml:1153 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." @@ -5175,7 +5182,7 @@ msgstr "" "した場合にのみ、適用されます)。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1170 +#: apt.conf.5.xml:1164 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -5186,7 +5193,7 @@ msgstr "" "説明したものと同じです。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1182 +#: apt.conf.5.xml:1176 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@ -5195,7 +5202,7 @@ msgstr "" "します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1192 +#: apt.conf.5.xml:1186 msgid "" "Display the external commands that are called by apt hooks. This includes e." "g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " @@ -5206,13 +5213,13 @@ msgstr "" "{Pre,Post}-Invoke</literal> があります。" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1216 apt_preferences.5.xml:547 sources.list.5.xml:239 -#: apt-ftparchive.1.xml:598 +#: apt.conf.5.xml:1210 apt_preferences.5.xml:541 sources.list.5.xml:233 +#: apt-ftparchive.1.xml:592 msgid "Examples" msgstr "サンプル" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1217 +#: apt.conf.5.xml:1211 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -5222,17 +5229,17 @@ msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1229 +#: apt.conf.5.xml:1223 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt_preferences.5.xml:34 +#: apt_preferences.5.xml:28 msgid "Preference control file for APT" msgstr "APT 用選択制御ファイル" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:39 +#: apt_preferences.5.xml:33 msgid "" "The APT preferences file <filename>/etc/apt/preferences</filename> and the " "fragment files in the <filename>/etc/apt/preferences.d/</filename> folder " @@ -5244,7 +5251,7 @@ msgstr "" "ンストールするパッケージのバージョンを制御するのに使用します。" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:44 +#: apt_preferences.5.xml:38 msgid "" "Several versions of a package may be available for installation when the " "&sources-list; file contains references to more than one distribution (for " @@ -5265,7 +5272,7 @@ msgstr "" "のの選択を、ユーザが選択できるようになります。" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:54 +#: apt_preferences.5.xml:48 msgid "" "Several instances of the same version of a package may be available when the " "&sources-list; file contains references to more than one source. In this " @@ -5280,7 +5287,7 @@ msgstr "" "し、インスタンスの選択には影響しません。" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:61 +#: apt_preferences.5.xml:55 msgid "" "Preferences are a strong power in the hands of a system administrator but " "they can become also their biggest nightmare if used without care! APT will " @@ -5303,7 +5310,7 @@ msgstr "" "ん)。以上、警告しました。" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:72 +#: apt_preferences.5.xml:66 msgid "" "Note that the files in the <filename>/etc/apt/preferences.d</filename> " "directory are parsed in alphanumeric ascending order and need to obey the " @@ -5323,24 +5330,24 @@ msgstr "" "する場合は黙って無視します。" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:81 +#: apt_preferences.5.xml:75 msgid "APT's Default Priority Assignments" msgstr "APT のデフォルト優先度の割り当て" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:96 +#: apt_preferences.5.xml:90 #, no-wrap msgid "<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n" msgstr "<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:99 +#: apt_preferences.5.xml:93 #, no-wrap msgid "APT::Default-Release \"stable\";\n" msgstr "APT::Default-Release \"stable\";\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:83 +#: apt_preferences.5.xml:77 msgid "" "If there is no preferences file or if there is no entry in the file that " "applies to a particular version then the priority assigned to that version " @@ -5366,7 +5373,7 @@ msgstr "" "\"programlisting\" id=\"0\"/> <placeholder type=\"programlisting\" id=\"1\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:103 +#: apt_preferences.5.xml:97 msgid "" "If the target release has been specified then APT uses the following " "algorithm to set the priorities of the versions of a package. Assign:" @@ -5375,12 +5382,12 @@ msgstr "" "バージョンの優先度を設定します。以下のように割り当てます。" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:108 +#: apt_preferences.5.xml:102 msgid "priority 1" msgstr "優先度 1" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:109 +#: apt_preferences.5.xml:103 msgid "" "to the versions coming from archives which in their <filename>Release</" "filename> files are marked as \"NotAutomatic: yes\" but <emphasis>not</" @@ -5393,12 +5400,12 @@ msgstr "" "アーカイブ由来のバージョン。" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:115 +#: apt_preferences.5.xml:109 msgid "priority 100" msgstr "優先度 100" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:116 +#: apt_preferences.5.xml:110 msgid "" "to the version that is already installed (if any) and to the versions coming " "from archives which in their <filename>Release</filename> files are marked " @@ -5411,30 +5418,30 @@ msgstr "" "\"ButAutomaticUpgrades: yes\" とマークされているアーカイブ由来のバージョン。" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:123 +#: apt_preferences.5.xml:117 msgid "priority 500" msgstr "優先度 500" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:124 +#: apt_preferences.5.xml:118 msgid "" "to the versions that are not installed and do not belong to the target " "release." msgstr "インストールされておらず、ターゲットリリースに含まれないバージョン。" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:128 +#: apt_preferences.5.xml:122 msgid "priority 990" msgstr "優先度 990" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:129 +#: apt_preferences.5.xml:123 msgid "" "to the versions that are not installed and belong to the target release." msgstr "インストールされておらず、ターゲットリリースに含まれるバージョン。" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:134 +#: apt_preferences.5.xml:128 msgid "" "If the target release has not been specified then APT simply assigns " "priority 100 to all installed package versions and priority 500 to all " @@ -5452,7 +5459,7 @@ msgstr "" "てます。" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:141 +#: apt_preferences.5.xml:135 msgid "" "APT then applies the following rules, listed in order of precedence, to " "determine which version of a package to install." @@ -5461,7 +5468,7 @@ msgstr "" "を上から順番に適用します。" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:144 +#: apt_preferences.5.xml:138 msgid "" "Never downgrade unless the priority of an available version exceeds 1000. " "(\"Downgrading\" is installing a less recent version of a package in place " @@ -5476,12 +5483,12 @@ msgstr "" "す。また、パッケージのダウングレードは危険であることにも注意してください)" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:150 +#: apt_preferences.5.xml:144 msgid "Install the highest priority version." msgstr "最も高い優先度のバージョンをインストールします。" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:151 +#: apt_preferences.5.xml:145 msgid "" "If two or more versions have the same priority, install the most recent one " "(that is, the one with the higher version number)." @@ -5490,7 +5497,7 @@ msgstr "" "が高いもの) をインストールします。" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:154 +#: apt_preferences.5.xml:148 msgid "" "If two or more versions have the same priority and version number but either " "the packages differ in some of their metadata or the <literal>--reinstall</" @@ -5501,7 +5508,7 @@ msgstr "" "トールされていないものをインストールします。" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:160 +#: apt_preferences.5.xml:154 msgid "" "In a typical situation, the installed version of a package (priority 100) " "is not as recent as one of the versions available from the sources listed in " @@ -5516,7 +5523,7 @@ msgstr "" "get upgrade</command> を実行するとパッケージが更新されます。" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:167 +#: apt_preferences.5.xml:161 msgid "" "More rarely, the installed version of a package is <emphasis>more</emphasis> " "recent than any of the other available versions. The package will not be " @@ -5529,7 +5536,7 @@ msgstr "" "get upgrade</command> を実行しても、ダウングレードしません。" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:172 +#: apt_preferences.5.xml:166 msgid "" "Sometimes the installed version of a package is more recent than the version " "belonging to the target release, but not as recent as a version belonging to " @@ -5548,12 +5555,12 @@ msgstr "" "ケージがあるからです。" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:181 +#: apt_preferences.5.xml:175 msgid "The Effect of APT Preferences" msgstr "APT プリファレンスファイルの効果" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:183 +#: apt_preferences.5.xml:177 msgid "" "The APT preferences file allows the system administrator to control the " "assignment of priorities. The file consists of one or more multi-line " @@ -5565,7 +5572,7 @@ msgstr "" "れています。レコードは特定形式か、汎用形式のどちらかの形式をとります。" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:189 +#: apt_preferences.5.xml:183 msgid "" "The specific form assigns a priority (a \"Pin-Priority\") to one or more " "specified packages with a specified version or version range. For example, " @@ -5581,7 +5588,7 @@ msgstr "" "きます。" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:196 +#: apt_preferences.5.xml:190 #, no-wrap msgid "" "Package: perl\n" @@ -5593,7 +5600,7 @@ msgstr "" "Pin-Priority: 1001\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:202 +#: apt_preferences.5.xml:196 msgid "" "The general form assigns a priority to all of the package versions in a " "given distribution (that is, to all the versions of packages that are listed " @@ -5607,7 +5614,7 @@ msgstr "" "てます。" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:208 +#: apt_preferences.5.xml:202 msgid "" "This general-form entry in the APT preferences file applies only to groups " "of packages. For example, the following record assigns a high priority to " @@ -5618,7 +5625,7 @@ msgstr "" "全パッケージについて、高い優先度を割り当てます。" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:213 +#: apt_preferences.5.xml:207 #, no-wrap msgid "" "Package: *\n" @@ -5630,7 +5637,7 @@ msgstr "" "Pin-Priority: 999\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:218 +#: apt_preferences.5.xml:212 msgid "" "A note of caution: the keyword used here is \"<literal>origin</literal>\" " "which can be used to match a hostname. The following record will assign a " @@ -5643,7 +5650,7 @@ msgstr "" "てます。" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:222 +#: apt_preferences.5.xml:216 #, no-wrap msgid "" "Package: *\n" @@ -5655,7 +5662,7 @@ msgstr "" "Pin-Priority: 999\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:226 +#: apt_preferences.5.xml:220 msgid "" "This should <emphasis>not</emphasis> be confused with the Origin of a " "distribution as specified in a <filename>Release</filename> file. What " @@ -5669,7 +5676,7 @@ msgstr "" "トアドレスではなく、\"Debian\" や \"Ximian\" といった作者やベンダ名です。" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:231 +#: apt_preferences.5.xml:225 msgid "" "The following record assigns a low priority to all package versions " "belonging to any distribution whose Archive name is \"<literal>unstable</" @@ -5679,7 +5686,7 @@ msgstr "" "ディストリビューションに属するパッケージを、すべて低い優先度に割り当てます。" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:235 +#: apt_preferences.5.xml:229 #, no-wrap msgid "" "Package: *\n" @@ -5691,7 +5698,7 @@ msgstr "" "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:240 +#: apt_preferences.5.xml:234 msgid "" "The following record assigns a high priority to all package versions " "belonging to any distribution whose Codename is \"<literal>&testing-codename;" @@ -5702,7 +5709,7 @@ msgstr "" "り当てます。" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:244 +#: apt_preferences.5.xml:238 #, no-wrap msgid "" "Package: *\n" @@ -5714,7 +5721,7 @@ msgstr "" "Pin-Priority: 900\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:249 +#: apt_preferences.5.xml:243 msgid "" "The following record assigns a high priority to all package versions " "belonging to any release whose Archive name is \"<literal>stable</literal>\" " @@ -5725,7 +5732,7 @@ msgstr "" "に属するパッケージを、すべて高い優先度に割り当てます。" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:254 +#: apt_preferences.5.xml:248 #, no-wrap msgid "" "Package: *\n" @@ -5737,12 +5744,12 @@ msgstr "" "Pin-Priority: 500\n" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:264 +#: apt_preferences.5.xml:258 msgid "Regular expressions and &glob; syntax" msgstr "正規表現と &glob; 構文" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:266 +#: apt_preferences.5.xml:260 msgid "" "APT also supports pinning by &glob; expressions, and regular expressions " "surrounded by slashes. For example, the following example assigns the " @@ -5756,7 +5763,7 @@ msgstr "" "ケージに、優先度500を割り当てます。" #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:275 +#: apt_preferences.5.xml:269 #, no-wrap msgid "" "Package: gnome* /kde/\n" @@ -5768,7 +5775,7 @@ msgstr "" "Pin-Priority: 500\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:281 +#: apt_preferences.5.xml:275 msgid "" "The rule for those expressions is that they can occur anywhere where a " "string can occur. Thus, the following pin assigns the priority 990 to all " @@ -5779,7 +5786,7 @@ msgstr "" "パッケージに、優先度 990 を割り当てます。" #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:287 +#: apt_preferences.5.xml:281 #, no-wrap msgid "" "Package: *\n" @@ -5791,7 +5798,7 @@ msgstr "" "Pin-Priority: 990\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:293 +#: apt_preferences.5.xml:287 msgid "" "If a regular expression occurs in a <literal>Package</literal> field, the " "behavior is the same as if this regular expression were replaced with a list " @@ -5808,12 +5815,12 @@ msgstr "" "体とは見なされません。" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:309 +#: apt_preferences.5.xml:303 msgid "How APT Interprets Priorities" msgstr "APT が優先度に割り込む方法" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:312 +#: apt_preferences.5.xml:306 msgid "" "Priorities (P) assigned in the APT preferences file must be positive or " "negative integers. They are interpreted as follows (roughly speaking):" @@ -5822,12 +5829,12 @@ msgstr "" "ません。これは (おおざっぱにいうと) 以下のように解釈されます。" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:317 +#: apt_preferences.5.xml:311 msgid "P >= 1000" msgstr "P >= 1000" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:318 +#: apt_preferences.5.xml:312 msgid "" "causes a version to be installed even if this constitutes a downgrade of the " "package" @@ -5835,12 +5842,12 @@ msgstr "" "パッケージがダウングレードしても、このバージョンのパッケージをインストール" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:322 +#: apt_preferences.5.xml:316 msgid "990 <= P < 1000" msgstr "990 <= P < 1000" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:323 +#: apt_preferences.5.xml:317 msgid "" "causes a version to be installed even if it does not come from the target " "release, unless the installed version is more recent" @@ -5849,12 +5856,12 @@ msgstr "" "に含まれなくても、このバージョンのパッケージをインストール" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:328 +#: apt_preferences.5.xml:322 msgid "500 <= P < 990" msgstr "500 <= P < 990" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:329 +#: apt_preferences.5.xml:323 msgid "" "causes a version to be installed unless there is a version available " "belonging to the target release or the installed version is more recent" @@ -5863,12 +5870,12 @@ msgstr "" "ジョンの方が新しいのでなければ、このバージョンのパッケージをインストール" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:334 +#: apt_preferences.5.xml:328 msgid "100 <= P < 500" msgstr "100 <= P < 500" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:335 +#: apt_preferences.5.xml:329 msgid "" "causes a version to be installed unless there is a version available " "belonging to some other distribution or the installed version is more recent" @@ -5878,12 +5885,12 @@ msgstr "" "ル" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:340 +#: apt_preferences.5.xml:334 msgid "0 < P < 100" msgstr "0 < P < 100" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:341 +#: apt_preferences.5.xml:335 msgid "" "causes a version to be installed only if there is no installed version of " "the package" @@ -5892,17 +5899,17 @@ msgstr "" "ンストール" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:345 +#: apt_preferences.5.xml:339 msgid "P < 0" msgstr "P < 0" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:346 +#: apt_preferences.5.xml:340 msgid "prevents the version from being installed" msgstr "このバージョンのインストール禁止" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:351 +#: apt_preferences.5.xml:345 msgid "" "If any specific-form records match an available package version then the " "first such record determines the priority of the package version. Failing " @@ -5915,7 +5922,7 @@ msgstr "" "バージョンの優先度を決定します。" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:357 +#: apt_preferences.5.xml:351 msgid "" "For example, suppose the APT preferences file contains the three records " "presented earlier:" @@ -5924,7 +5931,7 @@ msgstr "" "仮定してください。" #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:361 +#: apt_preferences.5.xml:355 #, no-wrap msgid "" "Package: perl\n" @@ -5952,12 +5959,12 @@ msgstr "" "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:374 +#: apt_preferences.5.xml:368 msgid "Then:" msgstr "すると、以下のように動作します。" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:376 +#: apt_preferences.5.xml:370 msgid "" "The most recent available version of the <literal>perl</literal> package " "will be installed, so long as that version's version number begins with " @@ -5971,7 +5978,7 @@ msgstr "" "れている場合、<literal>perl</literal> はダウングレードされます。" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:381 +#: apt_preferences.5.xml:375 msgid "" "A version of any package other than <literal>perl</literal> that is " "available from the local system has priority over other versions, even " @@ -5982,7 +5989,7 @@ msgstr "" "なります。" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:385 +#: apt_preferences.5.xml:379 msgid "" "A version of a package whose origin is not the local system but some other " "site listed in &sources-list; and which belongs to an <literal>unstable</" @@ -5995,12 +6002,12 @@ msgstr "" "い場合にのみインストールされます。" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:395 +#: apt_preferences.5.xml:389 msgid "Determination of Package Version and Distribution Properties" msgstr "パッケージのバージョンとディストリビューションプロパティの決定" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:397 +#: apt_preferences.5.xml:391 msgid "" "The locations listed in the &sources-list; file should provide " "<filename>Packages</filename> and <filename>Release</filename> files to " @@ -6011,7 +6018,7 @@ msgstr "" "filename> ファイルを提供します。" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:401 +#: apt_preferences.5.xml:395 msgid "" "The <filename>Packages</filename> file is normally found in the directory " "<filename>.../dists/<replaceable>dist-name</replaceable>/" @@ -6029,27 +6036,27 @@ msgstr "" "ます。APT 優先度の設定は、レコードごとに以下の 2 行だけです。" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:409 +#: apt_preferences.5.xml:403 msgid "the <literal>Package:</literal> line" msgstr "<literal>Package:</literal> 行" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:410 +#: apt_preferences.5.xml:404 msgid "gives the package name" msgstr "パッケージ名" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:413 apt_preferences.5.xml:463 +#: apt_preferences.5.xml:407 apt_preferences.5.xml:457 msgid "the <literal>Version:</literal> line" msgstr "<literal>Version:</literal> 行" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:414 +#: apt_preferences.5.xml:408 msgid "gives the version number for the named package" msgstr "その名前のパッケージのバージョン番号" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:419 +#: apt_preferences.5.xml:413 msgid "" "The <filename>Release</filename> file is normally found in the directory " "<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for " @@ -6070,12 +6077,12 @@ msgstr "" "す。" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:430 +#: apt_preferences.5.xml:424 msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" msgstr "<literal>Archive:</literal> 行や <literal>Suite:</literal> 行" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:431 +#: apt_preferences.5.xml:425 msgid "" "names the archive to which all the packages in the directory tree belong. " "For example, the line \"Archive: stable\" or \"Suite: stable\" specifies " @@ -6091,18 +6098,18 @@ msgstr "" "ルでこの値を指定するには、以下の行が必要になります。" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:441 +#: apt_preferences.5.xml:435 #, no-wrap msgid "Pin: release a=stable\n" msgstr "Pin: release a=stable\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:447 +#: apt_preferences.5.xml:441 msgid "the <literal>Codename:</literal> line" msgstr "<literal>Codename:</literal> 行" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:448 +#: apt_preferences.5.xml:442 msgid "" "names the codename to which all the packages in the directory tree belong. " "For example, the line \"Codename: &testing-codename;\" specifies that all of " @@ -6119,13 +6126,13 @@ msgstr "" "ます。" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:457 +#: apt_preferences.5.xml:451 #, no-wrap msgid "Pin: release n=&testing-codename;\n" msgstr "Pin: release n=&testing-codename;\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:464 +#: apt_preferences.5.xml:458 msgid "" "names the release version. For example, the packages in the tree might " "belong to Debian release version &stable-version;. Note that there is " @@ -6142,7 +6149,7 @@ msgstr "" "ります。" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:473 +#: apt_preferences.5.xml:467 #, no-wrap msgid "" "Pin: release v=&stable-version;\n" @@ -6154,12 +6161,12 @@ msgstr "" "Pin: release &stable-version;\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:482 +#: apt_preferences.5.xml:476 msgid "the <literal>Component:</literal> line" msgstr "<literal>Component:</literal> 行" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:483 +#: apt_preferences.5.xml:477 msgid "" "names the licensing component associated with the packages in the directory " "tree of the <filename>Release</filename> file. For example, the line " @@ -6176,18 +6183,18 @@ msgstr "" "下の行が必要になります。" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:492 +#: apt_preferences.5.xml:486 #, no-wrap msgid "Pin: release c=main\n" msgstr "Pin: release c=main\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:498 +#: apt_preferences.5.xml:492 msgid "the <literal>Origin:</literal> line" msgstr "<literal>Origin:</literal> 行" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:499 +#: apt_preferences.5.xml:493 msgid "" "names the originator of the packages in the directory tree of the " "<filename>Release</filename> file. Most commonly, this is <literal>Debian</" @@ -6199,18 +6206,18 @@ msgstr "" "ファイルでこの提供者を指定するには、以下の行が必要になります。" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:505 +#: apt_preferences.5.xml:499 #, no-wrap msgid "Pin: release o=Debian\n" msgstr "Pin: release o=Debian\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:511 +#: apt_preferences.5.xml:505 msgid "the <literal>Label:</literal> line" msgstr "<literal>Label:</literal> 行" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:512 +#: apt_preferences.5.xml:506 msgid "" "names the label of the packages in the directory tree of the " "<filename>Release</filename> file. Most commonly, this is <literal>Debian</" @@ -6222,13 +6229,13 @@ msgstr "" "ファイルでこのラベルを指定するには、以下の行が必要になります。" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:518 +#: apt_preferences.5.xml:512 #, no-wrap msgid "Pin: release l=Debian\n" msgstr "Pin: release l=Debian\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:525 +#: apt_preferences.5.xml:519 msgid "" "All of the <filename>Packages</filename> and <filename>Release</filename> " "files retrieved from locations listed in the &sources-list; file are stored " @@ -6253,12 +6260,12 @@ msgstr "" "filename> ファイルを含んでいます。" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:538 +#: apt_preferences.5.xml:532 msgid "Optional Lines in an APT Preferences Record" msgstr "APT プリファレンスレコードのオプション行" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:540 +#: apt_preferences.5.xml:534 msgid "" "Each record in the APT preferences file can optionally begin with one or " "more lines beginning with the word <literal>Explanation:</literal>. This " @@ -6268,12 +6275,12 @@ msgstr "" "literal> で始まる行を持てます。これは、コメント用の場所を確保します。" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:549 +#: apt_preferences.5.xml:543 msgid "Tracking Stable" msgstr "安定版の追跡" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:557 +#: apt_preferences.5.xml:551 #, no-wrap msgid "" "Explanation: Uninstall or do not install any Debian-originated\n" @@ -6297,7 +6304,7 @@ msgstr "" "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:551 +#: apt_preferences.5.xml:545 msgid "" "The following APT preferences file will cause APT to assign a priority " "higher than the default (500) to all package versions belonging to a " @@ -6312,8 +6319,8 @@ msgstr "" "す。<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:574 apt_preferences.5.xml:620 -#: apt_preferences.5.xml:678 +#: apt_preferences.5.xml:568 apt_preferences.5.xml:614 +#: apt_preferences.5.xml:672 #, no-wrap msgid "" "apt-get install <replaceable>package-name</replaceable>\n" @@ -6325,7 +6332,7 @@ msgstr "" "apt-get dist-upgrade\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:569 +#: apt_preferences.5.xml:563 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest " @@ -6337,13 +6344,13 @@ msgstr "" "できます。<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:586 +#: apt_preferences.5.xml:580 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/testing\n" msgstr "apt-get install <replaceable>package</replaceable>/testing\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:580 +#: apt_preferences.5.xml:574 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>testing</literal> distribution; the package " @@ -6356,12 +6363,12 @@ msgstr "" "\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:592 +#: apt_preferences.5.xml:586 msgid "Tracking Testing or Unstable" msgstr "テスト版や不安定版の追跡" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:601 +#: apt_preferences.5.xml:595 #, no-wrap msgid "" "Package: *\n" @@ -6389,7 +6396,7 @@ msgstr "" "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:594 +#: apt_preferences.5.xml:588 msgid "" "The following APT preferences file will cause APT to assign a high priority " "to package versions from the <literal>testing</literal> distribution, a " @@ -6406,7 +6413,7 @@ msgstr "" "先度を割り当てます。<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:615 +#: apt_preferences.5.xml:609 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest " @@ -6418,13 +6425,13 @@ msgstr "" "ドできます。<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:635 +#: apt_preferences.5.xml:629 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/unstable\n" msgstr "apt-get install <replaceable>package</replaceable>/unstable\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:626 +#: apt_preferences.5.xml:620 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>unstable</literal> distribution. " @@ -6443,12 +6450,12 @@ msgstr "" "\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:642 +#: apt_preferences.5.xml:636 msgid "Tracking the evolution of a codename release" msgstr "コード名リリースの進化の追跡" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:656 +#: apt_preferences.5.xml:650 #, no-wrap msgid "" "Explanation: Uninstall or do not install any Debian-originated package versions\n" @@ -6482,7 +6489,7 @@ msgstr "" "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:644 +#: apt_preferences.5.xml:638 msgid "" "The following APT preferences file will cause APT to assign a priority " "higher than the default (500) to all package versions belonging to a " @@ -6506,7 +6513,7 @@ msgstr "" "す。<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:673 +#: apt_preferences.5.xml:667 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest version(s) in " @@ -6519,13 +6526,13 @@ msgstr "" "\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:693 +#: apt_preferences.5.xml:687 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/sid\n" msgstr "apt-get install <replaceable>package</replaceable>/sid\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:684 +#: apt_preferences.5.xml:678 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>sid</literal> distribution. Thereafter, " @@ -6544,17 +6551,17 @@ msgstr "" "\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:708 +#: apt_preferences.5.xml:702 msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;" msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;" #. type: Content of: <refentry><refnamediv><refpurpose> -#: sources.list.5.xml:35 +#: sources.list.5.xml:29 msgid "List of configured APT data sources" msgstr "APT のデータ取得元の設定リスト" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:40 +#: sources.list.5.xml:34 msgid "" "The source list <filename>/etc/apt/sources.list</filename> is designed to " "support any number of active sources and a variety of source media. The file " @@ -6570,7 +6577,7 @@ msgstr "" "のコマンド) で取得します。" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:47 +#: sources.list.5.xml:41 msgid "" "Each line specifying a source starts with type (e.g. <literal>deb-src</" "literal>) followed by options and arguments for this type. Individual " @@ -6584,12 +6591,12 @@ msgstr "" "なります。" #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:55 +#: sources.list.5.xml:49 msgid "sources.list.d" msgstr "sources.list.d" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:56 +#: sources.list.5.xml:50 msgid "" "The <filename>/etc/apt/sources.list.d</filename> directory provides a way to " "add sources.list entries in separate files. The format is the same as for " @@ -6610,12 +6617,12 @@ msgstr "" "APT が出力します。一致する場合は黙って無視します。" #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:67 +#: sources.list.5.xml:61 msgid "The deb and deb-src types" msgstr "deb タイプと deb-src タイプ" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:68 +#: sources.list.5.xml:62 msgid "" "The <literal>deb</literal> type references a typical two-level Debian " "archive, <filename>distribution/component</filename>. The " @@ -6640,7 +6647,7 @@ msgstr "" "です。" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:79 +#: sources.list.5.xml:73 msgid "" "The format for a <filename>sources.list</filename> entry using the " "<literal>deb</literal> and <literal>deb-src</literal> types is:" @@ -6650,13 +6657,13 @@ msgstr "" "ます。" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:82 +#: sources.list.5.xml:76 #, no-wrap msgid "deb [ options ] uri suite [component1] [component2] [...]" msgstr "deb [ オプション ] uri スイート [コンポーネント1] [コンポーネント2] [...]" #. type: Content of: <refentry><refsect1><para><literallayout> -#: sources.list.5.xml:86 +#: sources.list.5.xml:80 #, no-wrap msgid "" " Types: deb deb-src\n" @@ -6696,7 +6703,7 @@ msgstr "" " " #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:84 +#: sources.list.5.xml:78 msgid "" "Alternatively a rfc822 style format is also supported: <placeholder type=" "\"literallayout\" id=\"0\"/>" @@ -6705,7 +6712,7 @@ msgstr "" "\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:105 +#: sources.list.5.xml:99 msgid "" "The URI for the <literal>deb</literal> type must specify the base of the " "Debian distribution, from which APT will find the information it needs. " @@ -6726,7 +6733,7 @@ msgstr "" "なければなりません。" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:114 +#: sources.list.5.xml:108 msgid "" "<literal>suite</literal> may also contain a variable, <literal>$(ARCH)</" "literal> which expands to the Debian architecture (such as <literal>amd64</" @@ -6745,7 +6752,7 @@ msgstr "" "チャで URI を自動的に生成します。" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:122 +#: sources.list.5.xml:116 msgid "" "In the traditional style sources.list format since only one distribution can " "be specified per line it may be necessary to have multiple lines for the " @@ -6770,7 +6777,7 @@ msgstr "" "続を並行して行うようにもしています。" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:136 +#: sources.list.5.xml:130 msgid "" "<literal>options</literal> is always optional and needs to be surrounded by " "square brackets. It can consist of multiple settings in the form " @@ -6786,7 +6793,7 @@ msgstr "" "す)。" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:142 +#: sources.list.5.xml:136 msgid "" "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</" "replaceable>,…</literal> can be used to specify for which architectures " @@ -6800,7 +6807,7 @@ msgstr "" "literal> オプションに定義してある、全アーキテクチャをダウンロードします。" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:146 +#: sources.list.5.xml:140 msgid "" "<literal>arch+=<replaceable>arch1</replaceable>,<replaceable>arch2</" "replaceable>,…</literal> and <literal>arch-=<replaceable>arch1</replaceable>," @@ -6813,7 +6820,7 @@ msgstr "" "ロードするアーキテクチャを追加、削除できます。" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:149 +#: sources.list.5.xml:143 msgid "" "<literal>trusted=yes</literal> can be set to indicate that packages from " "this source are always authenticated even if the <filename>Release</" @@ -6830,7 +6837,7 @@ msgstr "" "認証として扱います。" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:156 +#: sources.list.5.xml:150 msgid "" "It is important to list sources in order of preference, with the most " "preferred source listed first. Typically this will result in sorting by " @@ -6843,12 +6850,12 @@ msgstr "" "しょう。" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:161 +#: sources.list.5.xml:155 msgid "Some examples:" msgstr "例:" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:163 +#: sources.list.5.xml:157 #, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n" @@ -6860,17 +6867,17 @@ msgstr "" " " #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:169 +#: sources.list.5.xml:163 msgid "URI specification" msgstr "URI の仕様" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:171 +#: sources.list.5.xml:165 msgid "The currently recognized URI types are:" msgstr "現在認識できる URI タイプは以下のとおりです。" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:175 +#: sources.list.5.xml:169 msgid "" "The file scheme allows an arbitrary directory in the file system to be " "considered an archive. This is useful for NFS mounts and local mirrors or " @@ -6880,7 +6887,7 @@ msgstr "" "にします。これは NFS マウントやローカルミラーで便利です。" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:182 +#: sources.list.5.xml:176 msgid "" "The cdrom scheme allows APT to use a local CD-ROM drive with media swapping. " "Use the &apt-cdrom; program to create cdrom entries in the source list." @@ -6890,7 +6897,7 @@ msgstr "" "グラムを使用してください。" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:189 +#: sources.list.5.xml:183 msgid "" "The http scheme specifies an HTTP server for the archive. If an environment " "variable <envar>http_proxy</envar> is set with the format http://server:" @@ -6906,7 +6913,7 @@ msgstr "" "指定してください。この認証方法は安全ではないことに注意してください。" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:200 +#: sources.list.5.xml:194 msgid "" "The ftp scheme specifies an FTP server for the archive. APT's FTP behavior " "is highly configurable; for more information see the &apt-conf; manual page. " @@ -6925,7 +6932,7 @@ msgstr "" "す)。設定ファイルで HTTP を利用するプロキシが指定してあっても、無視されます。" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:212 +#: sources.list.5.xml:206 msgid "" "The copy scheme is identical to the file scheme except that packages are " "copied into the cache directory instead of used directly at their location. " @@ -6937,7 +6944,7 @@ msgstr "" "用していて、APT でコピーを行う場合に便利です。" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:219 +#: sources.list.5.xml:213 msgid "" "The rsh/ssh method invokes RSH/SSH to connect to a remote host and access " "the files as a given user. Prior configuration of rhosts or RSA keys is " @@ -6951,12 +6958,12 @@ msgstr "" "す。" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: sources.list.5.xml:226 +#: sources.list.5.xml:220 msgid "adding more recognizable URI types" msgstr "さらに認識できる URI タイプの追加" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:228 +#: sources.list.5.xml:222 msgid "" "APT can be extended with more methods shipped in other optional packages, " "which should follow the naming scheme <package>apt-transport-" @@ -6974,7 +6981,7 @@ msgstr "" "transport-debtorrent; を参照してください。" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:240 +#: sources.list.5.xml:234 msgid "" "Uses the archive stored locally (or NFS mounted) at /home/jason/debian for " "stable/main, stable/contrib, and stable/non-free." @@ -6983,35 +6990,35 @@ msgstr "" "free 用のローカル (または NFS) アーカイブを使用します。" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:242 +#: sources.list.5.xml:236 #, no-wrap msgid "deb file:/home/jason/debian stable main contrib non-free" msgstr "deb file:/home/jason/debian stable main contrib non-free" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:244 +#: sources.list.5.xml:238 msgid "As above, except this uses the unstable (development) distribution." msgstr "上記と同様ですが、不安定版 (開発版) を使用します。" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:245 +#: sources.list.5.xml:239 #, no-wrap msgid "deb file:/home/jason/debian unstable main contrib non-free" msgstr "deb file:/home/jason/debian unstable main contrib non-free" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:247 +#: sources.list.5.xml:241 msgid "Source line for the above" msgstr "上記のソース行は以下のようになります。" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:248 +#: sources.list.5.xml:242 #, no-wrap msgid "deb-src file:/home/jason/debian unstable main contrib non-free" msgstr "deb-src file:/home/jason/debian unstable main contrib non-free" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:250 +#: sources.list.5.xml:244 msgid "" "The first line gets package information for the architectures in " "<literal>APT::Architectures</literal> while the second always retrieves " @@ -7022,7 +7029,7 @@ msgstr "" "<literal>armel</literal> アーキテクチャのパッケージ情報を取得します。" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:252 +#: sources.list.5.xml:246 #, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main\n" @@ -7032,7 +7039,7 @@ msgstr "" "deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:255 +#: sources.list.5.xml:249 msgid "" "Uses HTTP to access the archive at archive.debian.org, and uses only the " "hamm/main area." @@ -7041,13 +7048,13 @@ msgstr "" "す。" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:257 +#: sources.list.5.xml:251 #, no-wrap msgid "deb http://archive.debian.org/debian-archive hamm main" msgstr "deb http://archive.debian.org/debian-archive hamm main" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:259 +#: sources.list.5.xml:253 msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the &stable-codename;/contrib area." @@ -7056,13 +7063,13 @@ msgstr "" "&stable-codename;/contrib のみを使用します。" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:261 +#: sources.list.5.xml:255 #, no-wrap msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib" msgstr "deb ftp://ftp.debian.org/debian &stable-codename; contrib" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:263 +#: sources.list.5.xml:257 msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the unstable/contrib area. If this line appears as " @@ -7075,19 +7082,19 @@ msgstr "" "つだけになります。" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:267 +#: sources.list.5.xml:261 #, no-wrap msgid "deb ftp://ftp.debian.org/debian unstable contrib" msgstr "deb ftp://ftp.debian.org/debian unstable contrib" #. type: Content of: <refentry><refsect1><para><literallayout> -#: sources.list.5.xml:276 +#: sources.list.5.xml:270 #, no-wrap msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/" msgstr "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:269 +#: sources.list.5.xml:263 msgid "" "Uses HTTP to access the archive at ftp.tlh.debian.org, under the universe " "directory, and uses only files found under <filename>unstable/binary-i386</" @@ -7106,17 +7113,17 @@ msgstr "" "<placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:281 +#: sources.list.5.xml:275 msgid "&apt-cache; &apt-conf;" msgstr "&apt-cache; &apt-conf;" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt-extracttemplates.1.xml:28 apt-sortpkgs.1.xml:28 apt-ftparchive.1.xml:28 +#: apt-extracttemplates.1.xml:22 apt-sortpkgs.1.xml:22 apt-ftparchive.1.xml:22 msgid "1" msgstr "1" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-extracttemplates.1.xml:35 +#: apt-extracttemplates.1.xml:29 msgid "" "Utility to extract <command>debconf</command> config and templates from " "Debian packages" @@ -7125,7 +7132,7 @@ msgstr "" "るユーティリティ" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:41 +#: apt-extracttemplates.1.xml:35 msgid "" "<command>apt-extracttemplates</command> will take one or more Debian package " "files as input and write out (to a temporary directory) all associated " @@ -7139,12 +7146,12 @@ msgstr "" "ぞれに対し、以下の形式で 1 行ずつ出力します。" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:46 +#: apt-extracttemplates.1.xml:40 msgid "package version template-file config-script" msgstr "package version template-file config-script" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:47 +#: apt-extracttemplates.1.xml:41 msgid "" "template-file and config-script are written to the temporary directory " "specified by the <option>-t</option> or <option>--tempdir</option> " @@ -7159,7 +7166,7 @@ msgstr "" "なります。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-extracttemplates.1.xml:60 +#: apt-extracttemplates.1.xml:54 msgid "" "Temporary directory in which to write extracted <command>debconf</command> " "template files and config scripts. Configuration Item: <literal>APT::" @@ -7170,7 +7177,7 @@ msgstr "" "literal>" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:77 +#: apt-extracttemplates.1.xml:71 msgid "" "<command>apt-extracttemplates</command> returns zero on normal operation, " "decimal 100 on error." @@ -7179,12 +7186,12 @@ msgstr "" "には十進の 100 を返します。" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-sortpkgs.1.xml:35 +#: apt-sortpkgs.1.xml:29 msgid "Utility to sort package index files" msgstr "パッケージインデックスファイルのソートユーティリティ" #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:41 +#: apt-sortpkgs.1.xml:35 msgid "" "<command>apt-sortpkgs</command> will take an index file (source index or " "package index) and sort the records so that they are ordered by the package " @@ -7196,14 +7203,14 @@ msgstr "" "また、内部のソート規則に従って、内部フィールドについてもソートを行います。" #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:47 +#: apt-sortpkgs.1.xml:41 msgid "" "All output is sent to standard output; the input must be a seekable file." msgstr "" "出力はすべて標準出力に送られ、入力は検索できるファイルでなければなりません。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-sortpkgs.1.xml:56 +#: apt-sortpkgs.1.xml:50 msgid "" "Use source index field ordering. Configuration Item: <literal>APT::" "SortPkgs::Source</literal>." @@ -7212,7 +7219,7 @@ msgstr "" "<literal>APT::SortPkgs::Source</literal>" #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:70 +#: apt-sortpkgs.1.xml:64 msgid "" "<command>apt-sortpkgs</command> returns zero on normal operation, decimal " "100 on error." @@ -7221,12 +7228,12 @@ msgstr "" "の 100 を返します。" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-ftparchive.1.xml:35 +#: apt-ftparchive.1.xml:29 msgid "Utility to generate index files" msgstr "インデックスファイル生成ユーティリティ" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:41 +#: apt-ftparchive.1.xml:35 msgid "" "<command>apt-ftparchive</command> is the command line tool that generates " "the index files that APT uses to access a distribution source. The index " @@ -7238,7 +7245,7 @@ msgstr "" "は、元のサイトの内容に基づき生成されるべきです。" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:45 +#: apt-ftparchive.1.xml:39 msgid "" "<command>apt-ftparchive</command> is a superset of the &dpkg-scanpackages; " "program, incorporating its entire functionality via the <literal>packages</" @@ -7252,7 +7259,7 @@ msgstr "" "全なアーカイブの生成プロセス「スクリプト」である綿密な手段を含んでいます。" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:51 +#: apt-ftparchive.1.xml:45 msgid "" "Internally <command>apt-ftparchive</command> can make use of binary " "databases to cache the contents of a .deb file and it does not rely on any " @@ -7266,7 +7273,7 @@ msgstr "" "望した圧縮出力ファイルの作成を自動的に実行します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:62 +#: apt-ftparchive.1.xml:56 msgid "" "The packages command generates a package file from a directory tree. It " "takes the given directory and recursively searches it for .deb files, " @@ -7279,13 +7286,13 @@ msgstr "" "とほぼ同じです。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:67 apt-ftparchive.1.xml:91 +#: apt-ftparchive.1.xml:61 apt-ftparchive.1.xml:85 msgid "" "The option <option>--db</option> can be used to specify a binary caching DB." msgstr "<option>--db</option> オプションで、キャッシュ DB を指定できます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:72 +#: apt-ftparchive.1.xml:66 msgid "" "The <literal>sources</literal> command generates a source index file from a " "directory tree. It takes the given directory and recursively searches it " @@ -7298,7 +7305,7 @@ msgstr "" "は、&dpkg-scansources; とほぼ同じです。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:77 +#: apt-ftparchive.1.xml:71 msgid "" "If an override file is specified then a source override file will be looked " "for with an extension of .src. The --source-override option can be used to " @@ -7309,7 +7316,7 @@ msgstr "" "override オプションを使用します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:84 +#: apt-ftparchive.1.xml:78 msgid "" "The <literal>contents</literal> command generates a contents file from a " "directory tree. It takes the given directory and recursively searches it " @@ -7326,7 +7333,7 @@ msgstr "" "で出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:96 +#: apt-ftparchive.1.xml:90 msgid "" "The <literal>release</literal> command generates a Release file from a " "directory tree. It recursively searches the given directory for uncompressed " @@ -7352,7 +7359,7 @@ msgstr "" "出します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:106 +#: apt-ftparchive.1.xml:100 msgid "" "Values for the additional metadata fields in the Release file are taken from " "the corresponding variables under <literal>APT::FTPArchive::Release</" @@ -7372,7 +7379,7 @@ msgstr "" "<literal>Components</literal>, <literal>Description</literal> です。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:119 +#: apt-ftparchive.1.xml:113 msgid "" "The <literal>generate</literal> command is designed to be runnable from a " "cron script and builds indexes according to the given config file. The " @@ -7386,7 +7393,7 @@ msgstr "" "のディレクトリから作成するかを指定する、柔軟な方法を提供します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:128 +#: apt-ftparchive.1.xml:122 msgid "" "The <literal>clean</literal> command tidies the databases used by the given " "configuration file by removing any records that are no longer necessary." @@ -7395,12 +7402,12 @@ msgstr "" "もう必要ないレコードを削除して整理します。" #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:134 +#: apt-ftparchive.1.xml:128 msgid "The Generate Configuration" msgstr "Generate 設定" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:136 +#: apt-ftparchive.1.xml:130 msgid "" "The <literal>generate</literal> command uses a configuration file to " "describe the archives that are going to be generated. It follows the typical " @@ -7417,7 +7424,7 @@ msgstr "" "す。" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:144 +#: apt-ftparchive.1.xml:138 msgid "" "The generate configuration has four separate sections, each described below." msgstr "" @@ -7425,12 +7432,12 @@ msgstr "" "す。" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:146 +#: apt-ftparchive.1.xml:140 msgid "<literal>Dir</literal> Section" msgstr "<literal>Dir</literal> セクション" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:148 +#: apt-ftparchive.1.xml:142 msgid "" "The <literal>Dir</literal> section defines the standard directories needed " "to locate the files required during the generation process. These " @@ -7442,7 +7449,7 @@ msgstr "" "を生成するため、後のセクションで定義される相対パスの前に結合されます。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:155 +#: apt-ftparchive.1.xml:149 msgid "" "Specifies the root of the FTP archive, in a standard Debian configuration " "this is the directory that contains the <filename>ls-LR</filename> and dist " @@ -7452,17 +7459,17 @@ msgstr "" "リには <filename>ls-LR</filename> と dist ノードがあります。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:162 +#: apt-ftparchive.1.xml:156 msgid "Specifies the location of the override files." msgstr "オーバーライドファイルの場所を指定します。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:167 +#: apt-ftparchive.1.xml:161 msgid "Specifies the location of the cache files." msgstr "キャッシュファイルの場所を指定します。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:172 +#: apt-ftparchive.1.xml:166 msgid "" "Specifies the location of the file list files, if the <literal>FileList</" "literal> setting is used below." @@ -7471,12 +7478,12 @@ msgstr "" "ファイルの場所を指定します。" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:178 +#: apt-ftparchive.1.xml:172 msgid "<literal>Default</literal> Section" msgstr "<literal>Default</literal> セクション" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:180 +#: apt-ftparchive.1.xml:174 msgid "" "The <literal>Default</literal> section specifies default values, and " "settings that control the operation of the generator. Other sections may " @@ -7487,7 +7494,7 @@ msgstr "" "を、セクションごとの設定で上書きします。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:186 +#: apt-ftparchive.1.xml:180 msgid "" "Sets the default compression schemes to use for the package index files. It " "is a string that contains a space separated list of at least one of: '.' (no " @@ -7499,7 +7506,7 @@ msgstr "" "方法のデフォルトはすべて '. gzip' です。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:194 +#: apt-ftparchive.1.xml:188 msgid "" "Sets the default list of file extensions that are package files. This " "defaults to '.deb'." @@ -7508,7 +7515,7 @@ msgstr "" "deb' です。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:200 +#: apt-ftparchive.1.xml:194 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Sources files." @@ -7517,7 +7524,7 @@ msgstr "" "指定します。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:206 +#: apt-ftparchive.1.xml:200 msgid "" "Sets the default list of file extensions that are source files. This " "defaults to '.dsc'." @@ -7526,7 +7533,7 @@ msgstr "" "す。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:212 +#: apt-ftparchive.1.xml:206 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Contents files." @@ -7535,7 +7542,7 @@ msgstr "" "指定します。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:218 +#: apt-ftparchive.1.xml:212 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Translation-en master file." @@ -7544,7 +7551,7 @@ msgstr "" "ルの圧縮を制御します。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:224 +#: apt-ftparchive.1.xml:218 msgid "" "Specifies the number of kilobytes to delink (and replace with hard links) " "per run. This is used in conjunction with the per-section <literal>External-" @@ -7555,7 +7562,7 @@ msgstr "" "使います。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:231 +#: apt-ftparchive.1.xml:225 msgid "" "Specifies the mode of all created index files. It defaults to 0644. All " "index files are set to this mode with no regard to the umask." @@ -7564,7 +7571,7 @@ msgstr "" "インデックスファイルは、umask を無視してこのモードを使用します。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:238 apt-ftparchive.1.xml:384 +#: apt-ftparchive.1.xml:232 apt-ftparchive.1.xml:378 msgid "" "Specifies whether long descriptions should be included in the " "<filename>Packages</filename> file or split out into a master " @@ -7574,12 +7581,12 @@ msgstr "" "<filename>Translation-en</filename> ファイルに分割するかを指定します。" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:244 +#: apt-ftparchive.1.xml:238 msgid "<literal>TreeDefault</literal> Section" msgstr "<literal>TreeDefault</literal> セクション" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:246 +#: apt-ftparchive.1.xml:240 msgid "" "Sets defaults specific to <literal>Tree</literal> sections. All of these " "variables are substitution variables and have the strings $(DIST), " @@ -7590,7 +7597,7 @@ msgstr "" "に展開します。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:253 +#: apt-ftparchive.1.xml:247 msgid "" "Sets the number of kilobytes of contents files that are generated each day. " "The contents files are round-robined so that over several days they will all " @@ -7600,7 +7607,7 @@ msgstr "" "ルをラウンドロビンし、数日経つとすべて再生成します。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:260 +#: apt-ftparchive.1.xml:254 msgid "" "Controls the number of days a contents file is allowed to be checked without " "changing. If this limit is passed the mtime of the contents file is updated. " @@ -7616,7 +7623,7 @@ msgstr "" "き、少なくとも新しいファイルが必要です。デフォルトは 10 で、単位は日です。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:271 +#: apt-ftparchive.1.xml:265 msgid "" "Sets the top of the .deb directory tree. Defaults to <filename>$(DIST)/" "$(SECTION)/binary-$(ARCH)/</filename>" @@ -7625,7 +7632,7 @@ msgstr "" "$(SECTION)/binary-$(ARCH)/</filename> です。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:277 +#: apt-ftparchive.1.xml:271 msgid "" "Sets the top of the source package directory tree. Defaults to <filename>" "$(DIST)/$(SECTION)/source/</filename>" @@ -7634,7 +7641,7 @@ msgstr "" "$(DIST)/$(SECTION)/source/</filename> です。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:283 +#: apt-ftparchive.1.xml:277 msgid "" "Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/" "binary-$(ARCH)/Packages</filename>" @@ -7643,7 +7650,7 @@ msgstr "" "$(SECTION)/binary-$(ARCH)/Packages</filename> です。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:289 +#: apt-ftparchive.1.xml:283 msgid "" "Sets the output Sources file. Defaults to <filename>$(DIST)/$(SECTION)/" "source/Sources</filename>" @@ -7652,7 +7659,7 @@ msgstr "" "$(SECTION)/source/Sources</filename> です。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:295 +#: apt-ftparchive.1.xml:289 msgid "" "Sets the output Translation-en master file with the long descriptions if " "they should be not included in the Packages file. Defaults to <filename>" @@ -7663,7 +7670,7 @@ msgstr "" "$(SECTION)/i18n/Translation-en</filename> です。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:302 +#: apt-ftparchive.1.xml:296 msgid "" "Sets the path prefix that causes a symlink to be considered an internal link " "instead of an external link. Defaults to <filename>$(DIST)/$(SECTION)/</" @@ -7673,7 +7680,7 @@ msgstr "" "設定します。デフォルトは、<filename>$(DIST)/$(SECTION)/</filename> です。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:309 +#: apt-ftparchive.1.xml:303 msgid "" "Sets the output Contents file. Defaults to <filename>$(DIST)/$(SECTION)/" "Contents-$(ARCH)</filename>. If this setting causes multiple Packages files " @@ -7687,12 +7694,12 @@ msgstr "" "ftparchive</command> は自動でパッケージファイルをまとめます。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:318 +#: apt-ftparchive.1.xml:312 msgid "Sets header file to prepend to the contents output." msgstr "contents の出力に付けるヘッダファイルを設定します。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:323 +#: apt-ftparchive.1.xml:317 msgid "" "Sets the binary cache database to use for this section. Multiple sections " "can share the same database." @@ -7701,7 +7708,7 @@ msgstr "" "クションで同じデータベースを共有できます。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:329 +#: apt-ftparchive.1.xml:323 msgid "" "Specifies that instead of walking the directory tree, <command>apt-" "ftparchive</command> should read the list of files from the given file. " @@ -7712,7 +7719,7 @@ msgstr "" "トリが先頭につきます。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:336 +#: apt-ftparchive.1.xml:330 msgid "" "Specifies that instead of walking the directory tree, <command>apt-" "ftparchive</command> should read the list of files from the given file. " @@ -7724,12 +7731,12 @@ msgstr "" "トリが先頭につきます。ソースインデックスを処理する際に使用します。" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:344 +#: apt-ftparchive.1.xml:338 msgid "<literal>Tree</literal> Section" msgstr "<literal>Tree</literal> セクション" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:346 +#: apt-ftparchive.1.xml:340 msgid "" "The <literal>Tree</literal> section defines a standard Debian file tree " "which consists of a base directory, then multiple sections in that base " @@ -7743,7 +7750,7 @@ msgstr "" "<literal>Directory</literal> 変数で定義されます。" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:351 +#: apt-ftparchive.1.xml:345 msgid "" "The <literal>Tree</literal> section takes a scope tag which sets the " "<literal>$(DIST)</literal> variable and defines the root of the tree (the " @@ -7756,7 +7763,7 @@ msgstr "" "codename;</filename> のようになります。" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:356 +#: apt-ftparchive.1.xml:350 msgid "" "All of the settings defined in the <literal>TreeDefault</literal> section " "can be used in a <literal>Tree</literal> section as well as three new " @@ -7766,7 +7773,7 @@ msgstr "" "い変数と同様に、<literal>Tree</literal> セクションで使用できます。" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt-ftparchive.1.xml:362 +#: apt-ftparchive.1.xml:356 #, no-wrap msgid "" "for i in Sections do \n" @@ -7780,7 +7787,7 @@ msgstr "" " " #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:359 +#: apt-ftparchive.1.xml:353 msgid "" "When processing a <literal>Tree</literal> section <command>apt-ftparchive</" "command> performs an operation similar to: <placeholder type=\"programlisting" @@ -7791,7 +7798,7 @@ msgstr "" "id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:370 +#: apt-ftparchive.1.xml:364 msgid "" "This is a space separated list of sections which appear under the " "distribution; typically this is something like <literal>main contrib non-" @@ -7801,7 +7808,7 @@ msgstr "" "<literal>main contrib non-free</literal> のようになります。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:377 +#: apt-ftparchive.1.xml:371 msgid "" "This is a space separated list of all the architectures that appear under " "search section. The special architecture 'source' is used to indicate that " @@ -7812,7 +7819,7 @@ msgstr "" "ます。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:390 +#: apt-ftparchive.1.xml:384 msgid "" "Sets the binary override file. The override file contains section, priority " "and maintainer address information." @@ -7821,7 +7828,7 @@ msgstr "" "セクション、優先度、メンテナのアドレスといった情報が含まれています。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:396 +#: apt-ftparchive.1.xml:390 msgid "" "Sets the source override file. The override file contains section " "information." @@ -7830,22 +7837,22 @@ msgstr "" "クションの情報が含まれています。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:402 apt-ftparchive.1.xml:448 +#: apt-ftparchive.1.xml:396 apt-ftparchive.1.xml:442 msgid "Sets the binary extra override file." msgstr "バイナリ特別オーバーライドファイルを設定します。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:407 apt-ftparchive.1.xml:453 +#: apt-ftparchive.1.xml:401 apt-ftparchive.1.xml:447 msgid "Sets the source extra override file." msgstr "ソース特別オーバーライドファイルを設定します。" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:412 +#: apt-ftparchive.1.xml:406 msgid "<literal>BinDirectory</literal> Section" msgstr "<literal>BinDirectory</literal> セクション" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:414 +#: apt-ftparchive.1.xml:408 msgid "" "The <literal>bindirectory</literal> section defines a binary directory tree " "with no special structure. The scope tag specifies the location of the " @@ -7859,12 +7866,12 @@ msgstr "" "<literal>Section</literal><literal>Architecture</literal> 設定に似ています。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:422 +#: apt-ftparchive.1.xml:416 msgid "Sets the Packages file output." msgstr "Packages ファイルの出力先を設定します。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:427 +#: apt-ftparchive.1.xml:421 msgid "" "Sets the Sources file output. At least one of <literal>Packages</literal> or " "<literal>Sources</literal> is required." @@ -7873,42 +7880,42 @@ msgstr "" "か <literal>Sources</literal> のうち、ひとつは必要です。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:433 +#: apt-ftparchive.1.xml:427 msgid "Sets the Contents file output (optional)." msgstr "Contents ファイルの出力先を設定します (オプション)。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:438 +#: apt-ftparchive.1.xml:432 msgid "Sets the binary override file." msgstr "バイナリオーバーライドファイルを設定します。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:443 +#: apt-ftparchive.1.xml:437 msgid "Sets the source override file." msgstr "ソースオーバーライドファイルを設定します。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:458 +#: apt-ftparchive.1.xml:452 msgid "Sets the cache DB." msgstr "キャッシュ DB を設定します。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:463 +#: apt-ftparchive.1.xml:457 msgid "Appends a path to all the output paths." msgstr "全出力パスに付加するパス。" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:468 +#: apt-ftparchive.1.xml:462 msgid "Specifies the file list file." msgstr "ファイル一覧ファイルを指定します。" #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:475 +#: apt-ftparchive.1.xml:469 msgid "The Binary Override File" msgstr "バイナリオーバーライドファイル" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:476 +#: apt-ftparchive.1.xml:470 msgid "" "The binary override file is fully compatible with &dpkg-scanpackages;. It " "contains four fields separated by spaces. The first field is the package " @@ -7923,19 +7930,19 @@ msgstr "" "す。" #. type: Content of: <refentry><refsect1><para><literallayout> -#: apt-ftparchive.1.xml:482 +#: apt-ftparchive.1.xml:476 #, no-wrap msgid "old [// oldn]* => new" msgstr "old [// oldn]* => new" #. type: Content of: <refentry><refsect1><para><literallayout> -#: apt-ftparchive.1.xml:484 +#: apt-ftparchive.1.xml:478 #, no-wrap msgid "new" msgstr "new" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:481 +#: apt-ftparchive.1.xml:475 msgid "" "The general form of the maintainer field is: <placeholder type=" "\"literallayout\" id=\"0\"/> or simply, <placeholder type=\"literallayout\" " @@ -7952,12 +7959,12 @@ msgstr "" "す。" #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:492 +#: apt-ftparchive.1.xml:486 msgid "The Source Override File" msgstr "ソースオーバーライドファイル" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:494 +#: apt-ftparchive.1.xml:488 msgid "" "The source override file is fully compatible with &dpkg-scansources;. It " "contains two fields separated by spaces. The first field is the source " @@ -7968,12 +7975,12 @@ msgstr "" "ケージ名、2 番目のフィールドは割り当てるセクションです。" #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:499 +#: apt-ftparchive.1.xml:493 msgid "The Extra Override File" msgstr "特別オーバーライドファイル" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:501 +#: apt-ftparchive.1.xml:495 msgid "" "The extra override file allows any arbitrary tag to be added or replaced in " "the output. It has three columns, the first is the package, the second is " @@ -7983,7 +7990,7 @@ msgstr "" "す。3 列からなり、先頭はパッケージ、2番目はタグ、残りは新しい値です。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:512 +#: apt-ftparchive.1.xml:506 msgid "" "Generate the given checksum. These options default to on, when turned off " "the generated index files will not have the checksum fields where possible. " @@ -8006,7 +8013,7 @@ msgstr "" "literal>, <literal>SHA1</literal>, <literal>SHA256</literal> になります。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:523 +#: apt-ftparchive.1.xml:517 msgid "" "Use a binary caching DB. This has no effect on the generate command. " "Configuration Item: <literal>APT::FTPArchive::DB</literal>." @@ -8015,7 +8022,7 @@ msgstr "" "目: <literal>APT::FTPArchive::DB</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:529 +#: apt-ftparchive.1.xml:523 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quiet up to a maximum of 2. You can also use " @@ -8028,7 +8035,7 @@ msgstr "" "<literal>quiet</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:537 +#: apt-ftparchive.1.xml:531 msgid "" "Perform Delinking. If the <literal>External-Links</literal> setting is used " "then this option actually enables delinking of the files. It defaults to on " @@ -8041,7 +8048,7 @@ msgstr "" "<literal>APT::FTPArchive::DeLinkAct</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:545 +#: apt-ftparchive.1.xml:539 msgid "" "Perform contents generation. When this option is set and package indexes are " "being generated with a cache DB then the file listing will also be extracted " @@ -8056,7 +8063,7 @@ msgstr "" "<literal>APT::FTPArchive::Contents</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:555 +#: apt-ftparchive.1.xml:549 msgid "" "Select the source override file to use with the <literal>sources</literal> " "command. Configuration Item: <literal>APT::FTPArchive::SourceOverride</" @@ -8066,7 +8073,7 @@ msgstr "" "選択します。設定項目: <literal>APT::FTPArchive::SourceOverride</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:561 +#: apt-ftparchive.1.xml:555 msgid "" "Make the caching databases read only. Configuration Item: <literal>APT::" "FTPArchive::ReadOnlyDB</literal>." @@ -8075,7 +8082,7 @@ msgstr "" "FTPArchive::ReadOnlyDB</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:566 +#: apt-ftparchive.1.xml:560 msgid "" "Accept in the <literal>packages</literal> and <literal>contents</literal> " "commands only package files matching <literal>*_arch.deb</literal> or " @@ -8088,7 +8095,7 @@ msgstr "" "け付けます。設定項目: <literal>APT::FTPArchive::Architecture</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:574 +#: apt-ftparchive.1.xml:568 msgid "" "&apt-ftparchive; caches as much as possible of metadata in a cachedb. If " "packages are recompiled and/or republished with the same version again, this " @@ -8111,7 +8118,7 @@ msgstr "" "加チェックには、意味がありません。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:586 +#: apt-ftparchive.1.xml:580 msgid "" "This configuration option defaults to \"<literal>true</literal>\" and should " "only be set to <literal>\"false\"</literal> if the Archive generated with " @@ -8126,13 +8133,13 @@ msgstr "" "み生成できることに注意してください。" #. type: Content of: <refentry><refsect1><para><programlisting> -#: apt-ftparchive.1.xml:604 +#: apt-ftparchive.1.xml:598 #, no-wrap msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" msgstr "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:600 +#: apt-ftparchive.1.xml:594 msgid "" "To create a compressed Packages file for a directory containing binary " "packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>" @@ -8141,7 +8148,7 @@ msgstr "" "は、以下のようにします。<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:614 +#: apt-ftparchive.1.xml:608 msgid "" "<command>apt-ftparchive</command> returns zero on normal operation, decimal " "100 on error." @@ -8150,50 +8157,50 @@ msgstr "" "進の 100 を返します。" #. type: Attribute 'lang' of: <book> -#: guide.dbk:8 offline.dbk:8 +#: guide.dbk:9 offline.dbk:9 msgid "en" msgstr "ja" #. type: Content of: <book><title> -#: guide.dbk:10 +#: guide.dbk:11 msgid "APT User's Guide" msgstr "APT ユーザガイド" #. type: Content of: <book><bookinfo><authorgroup><author><personname> -#: guide.dbk:16 offline.dbk:16 +#: guide.dbk:17 offline.dbk:17 msgid "Jason Gunthorpe" msgstr "Jason Gunthorpe" #. type: Content of: <book><bookinfo><authorgroup><author><email> -#: guide.dbk:16 offline.dbk:16 +#: guide.dbk:17 offline.dbk:17 msgid "jgg@debian.org" msgstr "jgg@debian.org" #. type: Content of: <book><bookinfo><releaseinfo> -#: guide.dbk:20 offline.dbk:20 +#: guide.dbk:21 offline.dbk:21 msgid "Version &apt-product-version;" msgstr "バージョン &apt-product-version;" #. type: Content of: <book><bookinfo><abstract><para> -#: guide.dbk:24 +#: guide.dbk:25 msgid "" "This document provides an overview of how to use the the APT package manager." msgstr "本文書は APT パッケージマネージャの使い方の概要を提供します。" #. type: Content of: <book><bookinfo> -#: guide.dbk:28 +#: guide.dbk:29 msgid "" "<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" msgstr "" "<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" #. type: Content of: <book><bookinfo><legalnotice><title> -#: guide.dbk:31 offline.dbk:32 +#: guide.dbk:32 offline.dbk:33 msgid "License Notice" msgstr "ライセンスについて" #. type: Content of: <book><bookinfo><legalnotice><para> -#: guide.dbk:33 offline.dbk:34 +#: guide.dbk:34 offline.dbk:35 msgid "" "\"APT\" and this document are free software; you can redistribute them and/" "or modify them under the terms of the GNU General Public License as " @@ -8206,7 +8213,7 @@ msgstr "" "or (at your option) any later version." #. type: Content of: <book><bookinfo><legalnotice><para> -#: guide.dbk:42 offline.dbk:40 +#: guide.dbk:43 offline.dbk:41 msgid "" "For more details, on Debian systems, see the file /usr/share/common-licenses/" "GPL for the full license." @@ -8215,12 +8222,12 @@ msgstr "" "GPL for the full license." #. type: Content of: <book><chapter><title> -#: guide.dbk:49 +#: guide.dbk:50 msgid "General" msgstr "全般" #. type: Content of: <book><chapter><para> -#: guide.dbk:51 +#: guide.dbk:52 msgid "" "The APT package currently contains two sections, the APT <command>dselect</" "command> method and the <command>apt-get</command> command line user " @@ -8233,12 +8240,12 @@ msgstr "" "をインストール、削除する方法を提供しています。" #. type: Content of: <book><chapter><section><title> -#: guide.dbk:57 +#: guide.dbk:58 msgid "Anatomy of the Package System" msgstr "パッケージシステムの構造" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:59 +#: guide.dbk:60 msgid "" "The Debian packaging system has a large amount of information associated " "with each package to help assure that it integrates cleanly and easily into " @@ -8249,7 +8256,7 @@ msgstr "" "す。" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:64 +#: guide.dbk:65 msgid "" "The dependency system allows individual programs to make use of shared " "elements in the system such as libraries. It simplifies placing infrequently " @@ -8264,7 +8271,7 @@ msgstr "" "ます。" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:71 +#: guide.dbk:72 msgid "" "The first step to understanding the dependency system is to grasp the " "concept of a simple dependency. The meaning of a simple dependency is that a " @@ -8277,7 +8284,7 @@ msgstr "" # Translator's NOTE: maybe s/GPGP/GPG/? #. type: Content of: <book><chapter><section><para> -#: guide.dbk:76 +#: guide.dbk:77 msgid "" "For instance, mailcrypt is an emacs extension that aids in encrypting email " "with GPG. Without GPGP installed mailcrypt is useless, so mailcrypt has a " @@ -8290,7 +8297,7 @@ msgstr "" "emacs に単純に依存し、emacs がないと何の役にも立ちません。" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:82 +#: guide.dbk:83 msgid "" "The other important dependency to understand is a conflicting dependency. It " "means that a package, when installed with another package, will not work and " @@ -8311,7 +8318,7 @@ msgstr "" "と競合依存となっています。" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:92 +#: guide.dbk:93 msgid "" "As an added complication there is the possibility for a package to pretend " "to be another package. Consider that exim and sendmail for many intents are " @@ -8331,7 +8338,7 @@ msgstr "" "パッケージを修正しようとしたときに多大な混乱が生まれる可能性があります。" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:102 +#: guide.dbk:103 msgid "" "At any given time a single dependency may be met by packages that are " "already installed or it may not be. APT attempts to help resolve dependency " @@ -8344,12 +8351,12 @@ msgstr "" "す。" #. type: Content of: <book><chapter><title> -#: guide.dbk:111 +#: guide.dbk:112 msgid "apt-get" msgstr "apt-get" #. type: Content of: <book><chapter><para> -#: guide.dbk:113 +#: guide.dbk:114 msgid "" "<command>apt-get</command> provides a simple way to install packages from " "the command line. Unlike <command>dpkg</command>, <command>apt-get</command> " @@ -8362,29 +8369,29 @@ msgstr "" "ストールできるのは<emphasis>ソース</emphasis>にある .deb アーカイブだけです。" #. type: Content of: <book><chapter><para><footnote><para> -#: guide.dbk:119 +#: guide.dbk:120 msgid "" "If you are using an http proxy server you must set the http_proxy " "environment variable first, see sources.list(5)" msgstr "" -"http プロキシサーバを使っている場合はまず http_proxy 環境変数をセットする必" -"要があります。sources.list(5) を見てください" +"http プロキシサーバを使っている場合はまず http_proxy 環境変数をセットする必要" +"があります。sources.list(5) を見てください" #. type: Content of: <book><chapter><para> -#: guide.dbk:119 +#: guide.dbk:120 msgid "" "The first <placeholder type=\"footnote\" id=\"0\"/> thing that should be " "done before using <command>apt-get</command> is to fetch the package lists " "from the <emphasis>Sources</emphasis> so that it knows what packages are " "available. This is done with <literal>apt-get update</literal>. For instance," msgstr "" -"<command>apt-get</command> を使う前にまずやるべきことは<placeholder type=\"" -"footnote\" id=\"0\"/>パッケージ一覧を<emphasis>ソース</emphasis>から取得する" -"ことで、それにより利用できるパッケージがわかるようになります。これには " +"<command>apt-get</command> を使う前にまずやるべきことは<placeholder type=" +"\"footnote\" id=\"0\"/>パッケージ一覧を<emphasis>ソース</emphasis>から取得す" +"ることで、それにより利用できるパッケージがわかるようになります。これには " "<literal>apt-get update</literal> を実行します。例えば" #. type: Content of: <book><chapter><screen> -#: guide.dbk:127 +#: guide.dbk:128 #, no-wrap msgid "" "# apt-get update\n" @@ -8400,17 +8407,17 @@ msgstr "" "Building Dependency Tree... Done\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:134 +#: guide.dbk:135 msgid "Once updated there are several commands that can be used:" msgstr "更新後は複数のコマンドを使えます:" #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:138 +#: guide.dbk:139 msgid "upgrade" msgstr "upgrade" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:141 +#: guide.dbk:142 msgid "" "Upgrade will attempt to gently upgrade the whole system. Upgrade will never " "install a new package or remove an existing package, nor will it ever " @@ -8427,16 +8434,17 @@ msgstr "" "行いません。これは毎日実行してシステムを比較的安全にアップグレードできます。" "upgrade を行うとアップグレードできないパッケージがある場合にその一覧を表示し" "ます。これは通常新しいパッケージに依存しているか他のパッケージと競合している" -"ということになります。<command>dselect</command> や <literal>apt-get install" -"</literal> を使うとそういったパッケージを強制的にインストールできます。" +"ということになります。<command>dselect</command> や <literal>apt-get " +"install</literal> を使うとそういったパッケージを強制的にインストールできま" +"す。" #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:153 +#: guide.dbk:154 msgid "install" msgstr "install" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:156 +#: guide.dbk:157 msgid "" "Install is used to install packages by name. The package is automatically " "fetched and installed. This can be useful if you already know the name of " @@ -8454,12 +8462,12 @@ msgstr "" "を促します。" #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:167 +#: guide.dbk:168 msgid "dist-upgrade" msgstr "dist-upgrade" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:170 +#: guide.dbk:171 msgid "" "Dist-upgrade is a complete upgrader designed to simplify upgrading between " "releases of Debian. It uses a sophisticated algorithm to determine the best " @@ -8473,13 +8481,13 @@ msgstr "" "dist-upgrade は完全なアップグレードを行うように設計されていて、Debian のリ" "リース間のアップグレードを単純化します。洗練されたアルゴリズムを使って、シス" "テムをできるだけ最新のリリースにするためにインストール、アップグレード、削除" -"する最善のパッケージ群を決定します。状況によっては <command>dselect</command> で手" -"作業により時間を掛けて依存を解決するよりも dist-upgrade を使う方が希望には合" -"うかもしれません。dist-upgrade 完了後は <command>dselect</command> を使って、残って" -"いるパッケージがあればインストールできます。" +"する最善のパッケージ群を決定します。状況によっては <command>dselect</" +"command> で手作業により時間を掛けて依存を解決するよりも dist-upgrade を使う方" +"が希望には合うかもしれません。dist-upgrade 完了後は <command>dselect</" +"command> を使って、残っているパッケージがあればインストールできます。" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:180 +#: guide.dbk:181 msgid "" "It is important to closely look at what dist-upgrade is going to do, its " "decisions may sometimes be quite surprising." @@ -8488,7 +8496,7 @@ msgstr "" "なされることもあります。" #. type: Content of: <book><chapter><para> -#: guide.dbk:187 +#: guide.dbk:188 msgid "" "<command>apt-get</command> has several command line options that are " "detailed in its man page, <citerefentry><refentrytitle>apt-get</" @@ -8504,18 +8512,18 @@ msgstr "" "の <citerefentry><refentrytitle>apt-get</refentrytitle><manvolnum>8</" "manvolnum></citerefentry> で詳細に説明されています。最も有用なオプションは取" "得したファイルをインストールしない <literal>-d</literal> です。システムが大量" -"のパッケージをダウンロードする必要がある場合、何かうまくいかなかったときに" -"インストールを開始するのは望ましくはないでしょう。<literal>-d</literal> を指" -"定すると、ダウンロードしたときのコマンドを単純に再び、<literal>-d</literal> " -"を付けずに実行することでダウンロードしたアーカイブをインストールできます。" +"のパッケージをダウンロードする必要がある場合、何かうまくいかなかったときにイ" +"ンストールを開始するのは望ましくはないでしょう。<literal>-d</literal> を指定" +"すると、ダウンロードしたときのコマンドを単純に再び、<literal>-d</literal> を" +"付けずに実行することでダウンロードしたアーカイブをインストールできます。" #. type: Content of: <book><chapter><title> -#: guide.dbk:199 +#: guide.dbk:200 msgid "DSelect" msgstr "DSelect" #. type: Content of: <book><chapter><para> -#: guide.dbk:201 +#: guide.dbk:202 msgid "" "The APT <command>dselect</command> method provides the complete APT system " "with the <command>dselect</command> package selection GUI. <command>dselect</" @@ -8528,7 +8536,7 @@ msgstr "" "は APT が行います。" #. type: Content of: <book><chapter><para> -#: guide.dbk:207 +#: guide.dbk:208 msgid "" "To enable the APT method you need to select [A]ccess in <command>dselect</" "command> and then choose the APT method. You will be prompted for a set of " @@ -8542,16 +8550,16 @@ msgid "" msgstr "" "APT メソッドを有効にするには、<command>dselect</command> でアクセス(a) を選択" "し、それから APT メソッドを選択する必要があります。そうするとアーカイブの取得" -"先の場所となる<emphasis>ソース</emphasis>群を聞かれます。これにはリモートの" -"インターネットサイトやローカルの Debian ミラー、CD-ROM を指定できます。各ソー" -"スで Debian アーカイブ全体のうちの一部を提供でき、APT は自動的に組み合わせて" +"先の場所となる<emphasis>ソース</emphasis>群を聞かれます。これにはリモートのイ" +"ンターネットサイトやローカルの Debian ミラー、CD-ROM を指定できます。各ソース" +"で Debian アーカイブ全体のうちの一部を提供でき、APT は自動的に組み合わせて" "パッケージ群一式を構成します。CD-ROM がある場合はまずそれを指定し、それからミ" "ラーを指定するのが良い方法で、そうすることで最新のバグ修正にアクセスできるよ" "うになります。APT はインターネットからダウンロードする前に CD-ROM にあるパッ" "ケージを自動的に利用します。" #. type: Content of: <book><chapter><screen> -#: guide.dbk:218 +#: guide.dbk:219 #, no-wrap msgid "" " Set up a list of distribution source locations\n" @@ -8581,18 +8589,18 @@ msgstr "" " URL [http://llug.sep.bnl.gov/debian]:\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:232 +#: guide.dbk:233 msgid "" "The <emphasis>Sources</emphasis> setup starts by asking for the base of the " "Debian archive, defaulting to a HTTP mirror. Next it asks for the " "distribution to get." msgstr "" -"<emphasis>ソース</emphasis>の準備は基礎となる Debian アーカイブの質問から始まり、デフォル" -"トは HTTP ミラーとなっています。その次は取得するディストリビューションを質問" -"します。" +"<emphasis>ソース</emphasis>の準備は基礎となる Debian アーカイブの質問から始ま" +"り、デフォルトは HTTP ミラーとなっています。その次は取得するディストリビュー" +"ションを質問します。" #. type: Content of: <book><chapter><screen> -#: guide.dbk:237 +#: guide.dbk:238 #, no-wrap msgid "" " Please give the distribution tag to get or a path to the\n" @@ -8608,7 +8616,7 @@ msgstr "" " ディストリビューション [stable]:\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:244 +#: guide.dbk:245 msgid "" "The distribution refers to the Debian version in the archive, " "<emphasis>stable</emphasis> refers to the latest released version and " @@ -8618,14 +8626,15 @@ msgid "" "exported from the United States. Importing these packages into the US is " "legal however." msgstr "" -"ディストリビューションはアーカイブ中の Debian バージョンを参照し、<emphasis>" -"stable</emphasis> は最新のリリース版を、<emphasis>unstable</emphasis> は開発" -"版を参照します。<emphasis>non-US</emphasis> は一部のミラーでのみ利用可能で、" -"合衆国からの輸出ができない暗号化技術その他のものを収録するパッケージを参照し" -"ます。ただしこういったパッケージの合衆国への輸入は合法です。" +"ディストリビューションはアーカイブ中の Debian バージョンを参照し、" +"<emphasis>stable</emphasis> は最新のリリース版を、<emphasis>unstable</" +"emphasis> は開発版を参照します。<emphasis>non-US</emphasis> は一部のミラーで" +"のみ利用可能で、合衆国からの輸出ができない暗号化技術その他のものを収録する" +"パッケージを参照します。ただしこういったパッケージの合衆国への輸入は合法で" +"す。" #. type: Content of: <book><chapter><screen> -#: guide.dbk:253 +#: guide.dbk:254 #, no-wrap msgid "" " Please give the components to get\n" @@ -8639,7 +8648,7 @@ msgstr "" " コンポーネント [main contrib non-free]:\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:259 +#: guide.dbk:260 msgid "" "The components list refers to the list of sub distributions to fetch. The " "distribution is split up based on software licenses, main being DFSG free " @@ -8652,7 +8661,7 @@ msgstr "" "用目的や配布形態に様々な制限を課せられているものが収録されています。" #. type: Content of: <book><chapter><para> -#: guide.dbk:265 +#: guide.dbk:266 msgid "" "Any number of sources can be added, the setup script will continue to prompt " "until you have specified all that you want." @@ -8661,7 +8670,7 @@ msgstr "" "で聞き続けます。" #. type: Content of: <book><chapter><para> -#: guide.dbk:269 +#: guide.dbk:270 msgid "" "Before starting to use <command>dselect</command> it is necessary to update " "the available list by selecting [U]pdate from the menu. This is a superset " @@ -8676,7 +8685,7 @@ msgstr "" "(u)を実行する必要があります。" #. type: Content of: <book><chapter><para> -#: guide.dbk:276 +#: guide.dbk:277 msgid "" "You can then go on and make your selections using [S]elect and then perform " "the installation using [I]nstall. When using the APT method the [C]onfig and " @@ -8688,7 +8697,7 @@ msgstr "" "の両方を実行します。" #. type: Content of: <book><chapter><para> -#: guide.dbk:282 +#: guide.dbk:283 msgid "" "By default APT will automatically remove the package (.deb) files once they " "have been successfully installed. To change this behavior place " @@ -8699,23 +8708,23 @@ msgstr "" "clean \"prompt\";</literal> と記述します。" #. type: Content of: <book><chapter><title> -#: guide.dbk:288 +#: guide.dbk:289 msgid "The Interface" msgstr "インターフェース" #. type: Content of: <book><chapter><para><footnote><para> -#: guide.dbk:292 +#: guide.dbk:293 msgid "" "The <command>dselect</command> method actually is a set of wrapper scripts " "to <command>apt-get</command>. The method actually provides more " "functionality than is present in <command>apt-get</command> alone." msgstr "" -"<command>dselect</command> メソッドは実際に <command>apt-get</command> に対" -"するラッパースクリプト群です。このメソッドでは <command>apt-get</command> 単" -"体に存在している以上の機能を実際に提供しています。" +"<command>dselect</command> メソッドは実際に <command>apt-get</command> に対す" +"るラッパースクリプト群です。このメソッドでは <command>apt-get</command> 単体" +"に存在している以上の機能を実際に提供しています。" #. type: Content of: <book><chapter><para> -#: guide.dbk:290 +#: guide.dbk:291 msgid "" "Both that APT <command>dselect</command> method and <command>apt-get</" "command> share the same interface. It is a simple system that generally " @@ -8727,17 +8736,17 @@ msgstr "" "APT の <command>dselect</command> メソッドと <command>apt-get</command> は共" "に同一のインターフェイスを共有しています。通常は行う内容を告知して実行する簡" "単なシステムです。<placeholder type=\"footnote\" id=\"0\"/> 実行内容のまとめ" -"を告知した後 APT が参考になる状態メッセージをいくらか表示するため、どれくら" -"い進んでいるのか、あるいは残り作業がどれくらいあるのか見積もることができるよ" -"うになっています。" +"を告知した後 APT が参考になる状態メッセージをいくらか表示するため、どれくらい" +"進んでいるのか、あるいは残り作業がどれくらいあるのか見積もることができるよう" +"になっています。" #. type: Content of: <book><chapter><section><title> -#: guide.dbk:301 +#: guide.dbk:302 msgid "Startup" msgstr "スタートアップ" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:303 +#: guide.dbk:304 msgid "" "Before all operations except update, APT performs a number of actions to " "prepare its internal state. It also does some checks of the system's state. " @@ -8749,7 +8758,7 @@ msgstr "" "check</literal> によりいつでも実行できます。" #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:309 +#: guide.dbk:310 #, no-wrap msgid "" "# apt-get check\n" @@ -8761,7 +8770,7 @@ msgstr "" "Building Dependency Tree... Done\n" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:314 +#: guide.dbk:315 msgid "" "The first thing it does is read all the package files into memory. APT uses " "a caching scheme so this operation will be faster the second time it is run. " @@ -8774,7 +8783,7 @@ msgstr "" "に注意を表示します。" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:320 +#: guide.dbk:321 msgid "" "The final operation performs a detailed analysis of the system's " "dependencies. It checks every dependency of every installed or unpacked " @@ -8786,7 +8795,7 @@ msgstr "" "場合は報告し、<command>apt-get</command> の実行を拒否します。" #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:326 +#: guide.dbk:327 #, no-wrap msgid "" "# apt-get check\n" @@ -8822,7 +8831,7 @@ msgstr "" " libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1)\n" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:343 +#: guide.dbk:344 msgid "" "In this example the system has many problems, including a serious problem " "with libreadlineg2. For each package that has unmet dependencies a line is " @@ -8836,7 +8845,7 @@ msgstr "" "理由について簡潔な説明も添えられます。" #. type: Content of: <book><chapter><section><para><footnote><para> -#: guide.dbk:352 +#: guide.dbk:353 msgid "" "APT however considers all known dependencies and attempts to prevent broken " "packages" @@ -8845,7 +8854,7 @@ msgstr "" "回避しようとします。" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:350 +#: guide.dbk:351 msgid "" "There are two ways a system can get into a broken state like this. The first " "is caused by <command>dpkg</command> missing some subtle relationships " @@ -8855,13 +8864,13 @@ msgid "" "being installed." msgstr "" "システムがこのように壊れた状態となる原因は2つあります。1つ目はアップグレード" -"実行時にパッケージ間の難解な依存関係を <command>dpkg</command> がいくらか欠" -"いていることによります。<placeholder type=\"footnote\" id=\"0\"/>2つ目はパッ" +"実行時にパッケージ間の難解な依存関係を <command>dpkg</command> がいくらか欠い" +"ていることによります。<placeholder type=\"footnote\" id=\"0\"/>2つ目はパッ" "ケージのインストール処理中に何か失敗した場合です。この状況では依存するパッ" "ケージがインストールされないままパッケージが展開されている可能性があります。" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:359 +#: guide.dbk:360 msgid "" "The second situation is much less serious than the first because APT places " "certain constraints on the order that packages are installed. In both cases " @@ -8879,7 +8888,7 @@ msgstr "" "起きた場合でも簡単に処理を継続できるようにしています。" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:368 +#: guide.dbk:369 msgid "" "However, if the <literal>-f</literal> option is used to correct a seriously " "broken system caused by the first case then it is possible that it will " @@ -8894,12 +8903,12 @@ msgstr "" "定して) 状況を修正する必要があります。" #. type: Content of: <book><chapter><section><title> -#: guide.dbk:376 +#: guide.dbk:377 msgid "The Status Report" msgstr "状態レポート" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:378 +#: guide.dbk:379 msgid "" "Before proceeding <command>apt-get</command> will present a report on what " "will happen. Generally the report reflects the type of operation being " @@ -8915,12 +8924,12 @@ msgstr "" "慮したものとなります。" #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:385 +#: guide.dbk:386 msgid "The Extra Package list" msgstr "追加パッケージリスト" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:387 +#: guide.dbk:388 #, no-wrap msgid "" "The following extra packages will be installed:\n" @@ -8938,7 +8947,7 @@ msgstr "" " ssh\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:395 +#: guide.dbk:396 msgid "" "The Extra Package list shows all of the packages that will be installed or " "upgraded in excess of the ones mentioned on the command line. It is only " @@ -8951,12 +8960,12 @@ msgstr "" "の結果による場合が多くなります。" #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:402 +#: guide.dbk:403 msgid "The Packages to Remove" msgstr "削除するパッケージ" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:404 +#: guide.dbk:405 #, no-wrap msgid "" "The following packages will be REMOVED:\n" @@ -8972,7 +8981,7 @@ msgstr "" " nas xpilot xfig\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:411 +#: guide.dbk:412 msgid "" "The Packages to Remove list shows all of the packages that will be removed " "from the system. It can be shown for any of the operations and should be " @@ -8990,12 +8999,12 @@ msgstr "" "トールされているために削除されるパッケージが含まれることがあります。" #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:421 +#: guide.dbk:422 msgid "The New Packages list" msgstr "新規パッケージリスト" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:423 +#: guide.dbk:424 #, no-wrap msgid "" "The following NEW packages will installed:\n" @@ -9005,7 +9014,7 @@ msgstr "" " zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:427 +#: guide.dbk:428 msgid "" "The New Packages list is simply a reminder of what will happen. The packages " "listed are not presently installed in the system but will be when APT is " @@ -9016,12 +9025,12 @@ msgstr "" "なります。" #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:432 +#: guide.dbk:433 msgid "The Kept Back list" msgstr "一時固定リスト" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:434 +#: guide.dbk:435 #, no-wrap msgid "" "The following packages have been kept back\n" @@ -9033,7 +9042,7 @@ msgstr "" " gs snmp arena lynx xpat2 groff xscreensaver\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:439 +#: guide.dbk:440 msgid "" "Whenever the whole system is being upgraded there is the possibility that " "new versions of packages cannot be installed because they require new things " @@ -9050,12 +9059,12 @@ msgstr "" "を使ってその問題を解決することです。" #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:448 +#: guide.dbk:449 msgid "Held Packages warning" msgstr "保留パッケージの警告" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:450 +#: guide.dbk:451 #, no-wrap msgid "" "The following held packages will be changed:\n" @@ -9065,7 +9074,7 @@ msgstr "" " cvs\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:454 +#: guide.dbk:455 msgid "" "Sometimes you can ask APT to install a package that is on hold, in such a " "case it prints out a warning that the held package is going to be changed. " @@ -9076,18 +9085,18 @@ msgstr "" "dist-upgrade または install を指示したときにしか起きないはずです。" #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:460 +#: guide.dbk:461 msgid "Final summary" msgstr "最後のまとめ" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:462 +#: guide.dbk:463 msgid "" "Finally, APT will print out a summary of all the changes that will occur." msgstr "最後に、APT は発生する全変更のまとめを表示します。" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:465 +#: guide.dbk:466 #, no-wrap msgid "" "206 packages upgraded, 8 newly installed, 23 to remove and 51 not upgraded.\n" @@ -9099,7 +9108,7 @@ msgstr "" "Need to get 65.7M/66.7M of archives. After unpacking 26.5M will be used.\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:470 +#: guide.dbk:471 msgid "" "The first line of the summary simply is a reduced version of all of the " "lists and includes the number of upgrades - that is packages already " @@ -9127,7 +9136,7 @@ msgstr "" "大量に削除する場合は解放される容量を示すこともあります。" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:484 +#: guide.dbk:485 msgid "" "Some other reports can be generated by using the -u option to show packages " "to upgrade, they are similar to the previous examples." @@ -9136,12 +9145,12 @@ msgstr "" "す。これは前に示した例と似たものです。" #. type: Content of: <book><chapter><section><title> -#: guide.dbk:491 +#: guide.dbk:492 msgid "The Status Display" msgstr "状態表示" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:493 +#: guide.dbk:494 msgid "" "During the download of archives and package files APT prints out a series of " "status messages." @@ -9150,7 +9159,7 @@ msgstr "" "セージを表示します。" #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:497 +#: guide.dbk:498 #, no-wrap msgid "" "# apt-get update\n" @@ -9170,7 +9179,7 @@ msgstr "" "11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s\n" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:506 +#: guide.dbk:507 msgid "" "The lines starting with <emphasis>Get</emphasis> are printed out when APT " "begins to fetch a file while the last line indicates the progress of the " @@ -9186,7 +9195,7 @@ msgstr "" "う可能性があります。" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:514 +#: guide.dbk:515 msgid "" "The next section of the status line is repeated once for each download " "thread and indicates the operation being performed and some useful " @@ -9198,14 +9207,14 @@ msgid "" "being fetched." msgstr "" "状態を示す行の次の節は各ダウンロードスレッドごとに1度ずつ繰り返され、進行中の" -"操作や処理についての有用な情報をいくらか示します。この節は単純に <emphasis>" -"Forking</emphasis> となっていることもあり、その場合は OS がダウンロード用のモ" -"ジュールを読み込んでいることを示します。[ の後の最初の語は履歴に表示されてい" -"る取得番号です。その次の語はダウンロード対象の名前の短縮形です。アーカイブの" -"場合は取得中のパッケージの名前が入ります。" +"操作や処理についての有用な情報をいくらか示します。この節は単純に " +"<emphasis>Forking</emphasis> となっていることもあり、その場合は OS がダウン" +"ロード用のモジュールを読み込んでいることを示します。[ の後の最初の語は履歴に" +"表示されている取得番号です。その次の語はダウンロード対象の名前の短縮形です。" +"アーカイブの場合は取得中のパッケージの名前が入ります。" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:524 +#: guide.dbk:525 msgid "" "Inside of the single quote is an informative string indicating the progress " "of the negotiation phase of the download. Typically it progresses from " @@ -9225,16 +9234,17 @@ msgstr "" "<emphasis>...へ接続しています</emphasis>から<emphasis>ファイルを待っています" "</emphasis>へ、それから<emphasis>...をダウンロードしています</emphasis>または" "<emphasis>...を再開しています</emphasis>へと進みます。最後の値はリモートサイ" -"トからダウンロードしたバイト数です。ダウンロードが始まるとこれは <literal>" -"102/10.2k</literal> のように表示され、この場合10.2キロバイトのうち102バイトが" -"取得済みであることを示します。合計サイズは常に4ケタで表示され、表示空間を保つ" -"ようになっています。サイズ表示の後はそのファイル自体の進捗状況を百分率で示し" -"たものです。その2つ後は瞬間的な平均速度です。この値は5秒ごとに更新され、その" -"間のデータ転送速度を反映します。最後は推定転送時間を表示しています。これは定" -"期的に更新され、表示している転送速度で全て完了する時間を表示します。" +"トからダウンロードしたバイト数です。ダウンロードが始まるとこれは " +"<literal>102/10.2k</literal> のように表示され、この場合10.2キロバイトのうち" +"102バイトが取得済みであることを示します。合計サイズは常に4ケタで表示され、表" +"示空間を保つようになっています。サイズ表示の後はそのファイル自体の進捗状況を" +"百分率で示したものです。その2つ後は瞬間的な平均速度です。この値は5秒ごとに更" +"新され、その間のデータ転送速度を反映します。最後は推定転送時間を表示していま" +"す。これは定期的に更新され、表示している転送速度で全て完了する時間を表示しま" +"す。" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:539 +#: guide.dbk:540 msgid "" "The status display updates every half second to provide a constant feedback " "on the download progress while the Get lines scroll back whenever a new file " @@ -9248,12 +9258,12 @@ msgstr "" "態を表示しないようにできます。" #. type: Content of: <book><chapter><section><title> -#: guide.dbk:547 +#: guide.dbk:548 msgid "Dpkg" msgstr "Dpkg" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:549 +#: guide.dbk:550 msgid "" "APT uses <command>dpkg</command> for installing the archives and will switch " "over to the <command>dpkg</command> interface once downloading is completed. " @@ -9270,12 +9280,12 @@ msgstr "" "は全くありません。" #. type: Content of: <book><title> -#: offline.dbk:10 +#: offline.dbk:11 msgid "Using APT Offline" msgstr "オフラインでの APT の使用法" #. type: Content of: <book><bookinfo><abstract><para> -#: offline.dbk:24 +#: offline.dbk:25 msgid "" "This document describes how to use APT in a non-networked environment, " "specifically a 'sneaker-net' approach for performing upgrades." @@ -9284,24 +9294,24 @@ msgstr "" "具体的には、アップグレード時の「スニーカーネット」アプローチです。" #. type: Content of: <book><bookinfo> -#: offline.dbk:29 +#: offline.dbk:30 msgid "" "<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" msgstr "" "<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" #. type: Content of: <book><chapter><title> -#: offline.dbk:47 +#: offline.dbk:48 msgid "Introduction" msgstr "はじめに" #. type: Content of: <book><chapter><section><title> -#: offline.dbk:49 offline.dbk:79 offline.dbk:191 +#: offline.dbk:50 offline.dbk:80 offline.dbk:192 msgid "Overview" msgstr "概要" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:51 +#: offline.dbk:52 msgid "" "Normally APT requires direct access to a Debian archive, either from a local " "media or through a network. Another common complaint is that a Debian " @@ -9314,7 +9324,7 @@ msgstr "" "ども物理的に遠い、といったことがあります。" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:57 +#: offline.dbk:58 msgid "" "The solution to this is to use large removable media such as a Zip disc or a " "SuperDisk disc. These discs are not large enough to store the entire Debian " @@ -9337,7 +9347,7 @@ msgstr "" "考えてください。" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:68 +#: offline.dbk:69 msgid "" "This is achieved by creatively manipulating the APT configuration file. The " "essential premise to tell APT to look on a disc for it's archive files. Note " @@ -9350,12 +9360,12 @@ msgstr "" "vfat でフォーマットする必要があることに注意してください。" #. type: Content of: <book><chapter><title> -#: offline.dbk:77 +#: offline.dbk:78 msgid "Using APT on both machines" msgstr "両方のマシンでの APT の使用法" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:81 +#: offline.dbk:82 msgid "" "APT being available on both machines gives the simplest configuration. The " "basic idea is to place a copy of the status file on the disc and use the " @@ -9368,7 +9378,7 @@ msgstr "" "ディスクのディレクトリ構造は次のようになります:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:87 +#: offline.dbk:88 #, no-wrap msgid "" " /disc/\n" @@ -9390,12 +9400,12 @@ msgstr "" " apt.conf\n" #. type: Content of: <book><chapter><section><title> -#: offline.dbk:98 +#: offline.dbk:99 msgid "The configuration file" msgstr "設定ファイル" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:100 +#: offline.dbk:101 msgid "" "The configuration file should tell APT to store its files on the disc and to " "use the configuration files on the disc as well. The sources.list should " @@ -9413,7 +9423,7 @@ msgstr "" "けないことに注意してください。書式はファイルの URI と同一です。" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:108 +#: offline.dbk:109 msgid "" "<emphasis>apt.conf</emphasis> must contain the necessary information to make " "APT use the disc:" @@ -9422,7 +9432,7 @@ msgstr "" "な情報を記述しないといけません:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:112 +#: offline.dbk:113 #, no-wrap msgid "" " APT\n" @@ -9474,7 +9484,7 @@ msgstr "" " };\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:137 +#: offline.dbk:138 msgid "" "More details can be seen by examining the apt.conf man page and the sample " "configuration file in <emphasis>/usr/share/doc/apt/examples/apt.conf</" @@ -9484,7 +9494,7 @@ msgstr "" "emphasis> にある見本の設定ファイルを調べるとさらなる詳細があります。" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:142 +#: offline.dbk:143 msgid "" "On the target machine the first thing to do is mount the disc and copy " "<emphasis>/var/lib/dpkg/status</emphasis> to it. You will also need to " @@ -9495,13 +9505,13 @@ msgid "" msgstr "" "対象のマシンでまず行うことはディスクをマウントしてそのディスクに <emphasis>/" "var/lib/dpkg/status</emphasis> をコピーすることです。概要にまとめられているよ" -"うに、ディレクトリ <emphasis>archives/partial/</emphasis> 及び <emphasis>" -"lists/partial/</emphasis> を作成する必要もあるでしょう。それからディスクをリ" -"モートマシンに移動して sources.list を設定します。リモートマシンでは以下の手" -"順を実行します:" +"うに、ディレクトリ <emphasis>archives/partial/</emphasis> 及び " +"<emphasis>lists/partial/</emphasis> を作成する必要もあるでしょう。それから" +"ディスクをリモートマシンに移動して sources.list を設定します。リモートマシン" +"では以下の手順を実行します:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:151 +#: offline.dbk:152 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" @@ -9517,7 +9527,7 @@ msgstr "" " [ 対象マシンをアップグレードするのに必要なパッケージを、APT が取得します ]\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:158 +#: offline.dbk:159 msgid "" "The dist-upgrade command can be replaced with any other standard APT " "commands, particularly dselect-upgrade. You can even use an APT front end " @@ -9525,12 +9535,12 @@ msgid "" "communicating your selections back to the local computer." msgstr "" "dist-upgrade コマンドは他の任意の標準的な APT コマンド、特に dselect-upgrade " -"に置き換えることができます。<emphasis>dselect</emphasis> 等の APT フロント" -"エンドを使うこともできます。しかし、それには選択したときにローカルコンピュー" -"タとやりとりしてしまうという問題があります。" +"に置き換えることができます。<emphasis>dselect</emphasis> 等の APT フロントエ" +"ンドを使うこともできます。しかし、それには選択したときにローカルコンピュータ" +"とやりとりしてしまうという問題があります。" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:164 +#: offline.dbk:165 msgid "" "Now the disc contains all of the index files and archives needed to upgrade " "the target machine. Take the disc back and run:" @@ -9539,7 +9549,7 @@ msgstr "" "全てこのディスクに収録されたということになります。ディスクを戻して実行します:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:168 +#: offline.dbk:169 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" @@ -9555,7 +9565,7 @@ msgstr "" " [ もしくはその他の APT コマンド ]\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:175 +#: offline.dbk:176 msgid "" "It is necessary for proper function to re-specify the status file to be the " "local one. This is very important!" @@ -9564,7 +9574,7 @@ msgstr "" "あります。これは非常に重要です!" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:179 +#: offline.dbk:180 msgid "" "If you are using dselect you can do the very risky operation of copying disc/" "status to /var/lib/dpkg/status so that any selections you made on the remote " @@ -9578,12 +9588,12 @@ msgstr "" "dpkg や APT を実行している間は status ファイルをコピー *しないでください* !!" #. type: Content of: <book><chapter><title> -#: offline.dbk:189 +#: offline.dbk:190 msgid "Using APT and wget" msgstr "APT と wget の使用" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:193 +#: offline.dbk:194 msgid "" "<emphasis>wget</emphasis> is a popular and portable download tool that can " "run on nearly any machine. Unlike the method above this requires that the " @@ -9594,7 +9604,7 @@ msgstr "" "ケージの一覧を Debian マシンで用意しておく必要があります。" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:198 +#: offline.dbk:199 msgid "" "The basic idea is to create a disc that has only the archive files " "downloaded from the remote site. This is done by using the --print-uris " @@ -9607,12 +9617,12 @@ msgstr "" "します。" #. type: Content of: <book><chapter><section><title> -#: offline.dbk:204 +#: offline.dbk:205 msgid "Operation" msgstr "操作" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:206 +#: offline.dbk:207 msgid "" "Unlike the previous technique no special configuration files are required. " "We merely use the standard APT commands to generate the file list." @@ -9621,7 +9631,7 @@ msgstr "" "単純に使ってファイル一覧を生成します。" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:210 +#: offline.dbk:211 #, no-wrap msgid "" " # apt-get dist-upgrade\n" @@ -9635,7 +9645,7 @@ msgstr "" " # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:216 +#: offline.dbk:217 msgid "" "Any command other than dist-upgrade could be used here, including dselect-" "upgrade." @@ -9644,7 +9654,7 @@ msgstr "" "す。" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:220 +#: offline.dbk:221 msgid "" "The /disc/wget-script file will now contain a list of wget commands to " "execute in order to fetch the necessary archives. This script should be run " @@ -9657,12 +9667,12 @@ msgstr "" "実行するようにしてください。" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:226 +#: offline.dbk:227 msgid "The remote machine would do something like" msgstr "リモートマシンでは以下のようにします。" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:229 +#: offline.dbk:230 #, no-wrap msgid "" " # cd /disc\n" @@ -9674,7 +9684,7 @@ msgstr "" " [ お待ちください... ]\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:234 +#: offline.dbk:235 msgid "" "Once the archives are downloaded and the disc returned to the Debian machine " "installation can proceed using," @@ -9683,12 +9693,12 @@ msgstr "" "ストールを続けられるようになります。" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:238 +#: offline.dbk:239 #, no-wrap msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:241 +#: offline.dbk:242 msgid "Which will use the already fetched archives on the disc." msgstr "これで、ディスクにある取得済みのアーカイブを使用するようになります。" diff --git a/doc/po/pl.po b/doc/po/pl.po index 0eb144f5a..b0a6514b9 100644 --- a/doc/po/pl.po +++ b/doc/po/pl.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.3\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:52+0200\n" +"POT-Creation-Date: 2014-08-28 00:20+0000\n" "PO-Revision-Date: 2014-07-04 02:13+0200\n" "Last-Translator: Robert Luberda <robert@debian.org>\n" "Language-Team: Polish <manpages-pl-list@lists.sourceforge.net>\n" @@ -657,37 +657,37 @@ msgstr "" "473041FA --> <!ENTITY synopsis-keyid \"id_klucza\">" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt.8.xml:25 apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 -#: apt-mark.8.xml:28 apt-secure.8.xml:27 apt-cdrom.8.xml:27 -#: apt-config.8.xml:28 +#: apt.8.xml:21 apt-get.8.xml:22 apt-cache.8.xml:22 apt-key.8.xml:21 +#: apt-mark.8.xml:22 apt-secure.8.xml:21 apt-cdrom.8.xml:21 +#: apt-config.8.xml:22 msgid "8" msgstr "8" #. type: Content of: <refentry><refmeta><refmiscinfo> -#: apt.8.xml:26 apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 -#: apt-mark.8.xml:29 apt-secure.8.xml:28 apt-cdrom.8.xml:28 -#: apt-config.8.xml:29 apt.conf.5.xml:34 apt_preferences.5.xml:28 -#: sources.list.5.xml:29 apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 -#: apt-ftparchive.1.xml:29 +#: apt.8.xml:22 apt-get.8.xml:23 apt-cache.8.xml:23 apt-key.8.xml:22 +#: apt-mark.8.xml:23 apt-secure.8.xml:22 apt-cdrom.8.xml:22 +#: apt-config.8.xml:23 apt.conf.5.xml:28 apt_preferences.5.xml:22 +#: sources.list.5.xml:23 apt-extracttemplates.1.xml:23 apt-sortpkgs.1.xml:23 +#: apt-ftparchive.1.xml:23 msgid "APT" msgstr "APT" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt.8.xml:32 +#: apt.8.xml:28 msgid "command-line interface" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:37 apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 -#: apt-mark.8.xml:40 apt-secure.8.xml:52 apt-cdrom.8.xml:39 -#: apt-config.8.xml:40 apt.conf.5.xml:43 apt_preferences.5.xml:38 -#: sources.list.5.xml:38 apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 -#: apt-ftparchive.1.xml:40 +#: apt.8.xml:33 apt-get.8.xml:34 apt-cache.8.xml:34 apt-key.8.xml:33 +#: apt-mark.8.xml:34 apt-secure.8.xml:46 apt-cdrom.8.xml:33 +#: apt-config.8.xml:34 apt.conf.5.xml:37 apt_preferences.5.xml:32 +#: sources.list.5.xml:32 apt-extracttemplates.1.xml:34 apt-sortpkgs.1.xml:34 +#: apt-ftparchive.1.xml:34 msgid "Description" msgstr "Opis" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:38 +#: apt.8.xml:34 msgid "" "<command>apt</command> (Advanced Package Tool) is the command-line tool for " "handling packages. It provides a commandline interface for the package " @@ -696,7 +696,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:47 +#: apt.8.xml:43 msgid "" "<literal>list</literal> is used to display a list of packages. It supports " "shell pattern for matching package names and the following options: " @@ -705,7 +705,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:58 +#: apt.8.xml:54 msgid "" "<literal>search</literal> searches for the given term(s) and display " "matching packages." @@ -713,7 +713,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:64 +#: apt.8.xml:60 #, fuzzy #| msgid "" #| "<literal>rdepends</literal> shows a listing of each reverse dependency a " @@ -726,7 +726,7 @@ msgstr "" "danego pakietu." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:71 +#: apt.8.xml:67 msgid "" "<literal>install</literal> is followed by one or more package names desired " "for installation or upgrading." @@ -734,7 +734,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:75 apt-get.8.xml:118 +#: apt.8.xml:71 apt-get.8.xml:112 msgid "" "A specific version of a package can be selected for installation by " "following the package name with an equals and the version of the package to " @@ -752,7 +752,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:85 apt-get.8.xml:153 +#: apt.8.xml:81 apt-get.8.xml:147 msgid "" "<literal>remove</literal> is identical to <literal>install</literal> except " "that packages are removed instead of installed. Note that removing a package " @@ -766,14 +766,14 @@ msgstr "" "pakiet zostanie zainstalowany zamiast zostać usunięty." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:93 +#: apt.8.xml:89 msgid "" "<literal>edit-sources</literal> lets you edit your sources.list file and " "provides basic sanity checks." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:99 +#: apt.8.xml:95 #, fuzzy #| msgid "" #| "<literal>showhold</literal> is used to print a list of packages on hold " @@ -786,16 +786,16 @@ msgstr "" "pakietów wstrzymanych, w taki sam sposób jak pozostałe polecenia \"show\"." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:105 +#: apt.8.xml:101 msgid "" "<literal>upgrade</literal> is used to install the newest versions of all " "packages currently installed on the system from the sources enumerated in " -"<filename>/etc/apt/sources.list</filename>. New package will be installed, " -"but existing package will never removed." +"<filename>/etc/apt/sources.list</filename>. New packages will be installed, " +"but existing packages will never be removed." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:114 +#: apt.8.xml:110 msgid "" "<literal>full-upgrade</literal> performs the function of upgrade but may " "also remove installed packages if that is required in order to resolve a " @@ -803,19 +803,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:124 apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 -#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 -#: apt-ftparchive.1.xml:506 +#: apt.8.xml:120 apt-get.8.xml:251 apt-cache.8.xml:244 apt-mark.8.xml:104 +#: apt-config.8.xml:80 apt-extracttemplates.1.xml:48 apt-sortpkgs.1.xml:44 +#: apt-ftparchive.1.xml:500 msgid "options" msgstr "opcje" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:134 +#: apt.8.xml:130 msgid "Script usage" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:136 +#: apt.8.xml:132 msgid "" "The &apt; commandline is designed as a end-user tool and it may change the " "output between versions. While it tries to not break backward compatibility " @@ -825,12 +825,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:144 +#: apt.8.xml:140 msgid "Differences to &apt-get;" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:145 +#: apt.8.xml:141 msgid "" "The <command>apt</command> command is meant to be pleasant for end users and " "does not need to be backward compatible like &apt-get;. Therefore some " @@ -838,28 +838,28 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:151 +#: apt.8.xml:147 #, fuzzy #| msgid "the <literal>Package:</literal> line" msgid "The option <literal>DPkg::Progress-Fancy</literal> is enabled." msgstr "linia <literal>Package:</literal>" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:155 +#: apt.8.xml:151 #, fuzzy #| msgid "the <literal>Component:</literal> line" msgid "The option <literal>APT::Color</literal> is enabled." msgstr "linia <literal>Component:</literal>" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:159 +#: apt.8.xml:155 msgid "" "A new <literal>list</literal> command is available similar to <literal>dpkg " "--list</literal>." msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:164 +#: apt.8.xml:160 #, fuzzy #| msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" msgid "" @@ -868,17 +868,17 @@ msgid "" msgstr "linia <literal>Archive:</literal> lub <literal>Suite:</literal>" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 -#: apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 -#: apt-config.8.xml:111 apt.conf.5.xml:1228 apt_preferences.5.xml:707 -#: sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 -#: apt-ftparchive.1.xml:609 +#: apt.8.xml:170 apt-get.8.xml:552 apt-cache.8.xml:346 apt-key.8.xml:191 +#: apt-mark.8.xml:127 apt-secure.8.xml:187 apt-cdrom.8.xml:148 +#: apt-config.8.xml:105 apt.conf.5.xml:1222 apt_preferences.5.xml:701 +#: sources.list.5.xml:274 apt-extracttemplates.1.xml:66 apt-sortpkgs.1.xml:59 +#: apt-ftparchive.1.xml:603 msgid "See Also" msgstr "Zobacz także" # #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:175 +#: apt.8.xml:171 #, fuzzy #| msgid "" #| "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " @@ -893,15 +893,15 @@ msgstr "" "&apt-preferences;, APT Howto." #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:180 apt-get.8.xml:564 apt-cache.8.xml:357 apt-mark.8.xml:137 -#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 -#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 +#: apt.8.xml:176 apt-get.8.xml:558 apt-cache.8.xml:351 apt-mark.8.xml:131 +#: apt-cdrom.8.xml:153 apt-config.8.xml:110 apt-extracttemplates.1.xml:70 +#: apt-sortpkgs.1.xml:63 apt-ftparchive.1.xml:607 msgid "Diagnostics" msgstr "Diagnostyka" # #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:181 +#: apt.8.xml:177 #, fuzzy #| msgid "" #| "<command>apt-get</command> returns zero on normal operation, decimal 100 " @@ -915,12 +915,12 @@ msgstr "" # #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-get.8.xml:35 +#: apt-get.8.xml:29 msgid "APT package handling utility -- command-line interface" msgstr "Narzędzie zarządzania pakietami APT -- interfejs linii poleceń" #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:41 +#: apt-get.8.xml:35 #, fuzzy #| msgid "" #| "<command>apt-get</command> is the command-line tool for handling " @@ -940,8 +940,8 @@ msgstr "" # #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:46 apt-cache.8.xml:46 apt-cdrom.8.xml:53 apt-config.8.xml:46 -#: apt-ftparchive.1.xml:56 +#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-cdrom.8.xml:47 apt-config.8.xml:40 +#: apt-ftparchive.1.xml:50 msgid "" "Unless the <option>-h</option>, or <option>--help</option> option is given, " "one of the commands below must be present." @@ -951,7 +951,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:51 +#: apt-get.8.xml:45 msgid "" "<literal>update</literal> is used to resynchronize the package index files " "from their sources. The indexes of available packages are fetched from the " @@ -976,7 +976,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:63 +#: apt-get.8.xml:57 msgid "" "<literal>upgrade</literal> is used to install the newest versions of all " "packages currently installed on the system from the sources enumerated in " @@ -1002,7 +1002,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:76 +#: apt-get.8.xml:70 msgid "" "<literal>dist-upgrade</literal> in addition to performing the function of " "<literal>upgrade</literal>, also intelligently handles changing dependencies " @@ -1028,7 +1028,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:89 +#: apt-get.8.xml:83 msgid "" "<literal>dselect-upgrade</literal> is used in conjunction with the " "traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</" @@ -1046,7 +1046,7 @@ msgstr "" "nowych)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:100 +#: apt-get.8.xml:94 msgid "" "<literal>install</literal> is followed by one or more packages desired for " "installation or upgrading. Each package is a package name, not a fully " @@ -1077,7 +1077,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:125 +#: apt-get.8.xml:119 msgid "" "Both of the version selection mechanisms can downgrade packages and must be " "used with care." @@ -1087,7 +1087,7 @@ msgstr "" "ostrożnie." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:128 +#: apt-get.8.xml:122 msgid "" "This is also the target to use if you want to upgrade one or more already-" "installed packages without upgrading every package you have on your system. " @@ -1108,7 +1108,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:139 +#: apt-get.8.xml:133 msgid "" "Finally, the &apt-preferences; mechanism allows you to create an alternative " "installation policy for individual packages." @@ -1118,7 +1118,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:143 +#: apt-get.8.xml:137 msgid "" "If no package matches the given expression and the expression contains one " "of '.', '?' or '*' then it is assumed to be a POSIX regular expression, and " @@ -1139,7 +1139,7 @@ msgstr "" "lub \"$\", można też stworzyć bardziej specyficzne wyrażenie regularne." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:161 +#: apt-get.8.xml:155 msgid "" "<literal>purge</literal> is identical to <literal>remove</literal> except " "that packages are removed and purged (any configuration files are deleted " @@ -1151,7 +1151,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:166 +#: apt-get.8.xml:160 msgid "" "<literal>source</literal> causes <command>apt-get</command> to fetch source " "packages. APT will examine the available packages to decide which source " @@ -1171,7 +1171,7 @@ msgstr "" "wydanie</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:174 +#: apt-get.8.xml:168 msgid "" "Source packages are tracked separately from binary packages via <literal>deb-" "src</literal> lines in the &sources-list; file. This means that you will " @@ -1187,7 +1187,7 @@ msgstr "" "możliwe pobranie jakiejkolwiek wersji pakietu." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:180 +#: apt-get.8.xml:174 msgid "" "If the <option>--compile</option> option is specified then the package will " "be compiled to a binary .deb using <command>dpkg-buildpackage</command> for " @@ -1203,7 +1203,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:187 +#: apt-get.8.xml:181 msgid "" "A specific source version can be retrieved by postfixing the source name " "with an equals and then the version to fetch, similar to the mechanism used " @@ -1218,7 +1218,7 @@ msgstr "" "włączona zostaje opcja <literal>APT::Get::Only-Source</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:193 +#: apt-get.8.xml:187 msgid "" "Note that source packages are not installed and tracked in the " "<command>dpkg</command> database like binary packages; they are simply " @@ -1230,7 +1230,7 @@ msgstr "" "<command>tar</command>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:199 +#: apt-get.8.xml:193 msgid "" "<literal>build-dep</literal> causes apt-get to install/remove packages in an " "attempt to satisfy the build dependencies for a source package. By default " @@ -1244,7 +1244,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:206 +#: apt-get.8.xml:200 msgid "" "<literal>check</literal> is a diagnostic tool; it updates the package cache " "and checks for broken dependencies." @@ -1253,7 +1253,7 @@ msgstr "" "bufor (cache) pakietów i szuka zepsutych pakietów." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:211 +#: apt-get.8.xml:205 msgid "" "<literal>download</literal> will download the given binary package into the " "current directory." @@ -1263,7 +1263,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:217 +#: apt-get.8.xml:211 #, fuzzy #| msgid "" #| "<literal>clean</literal> clears out the local repository of retrieved " @@ -1289,7 +1289,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:224 +#: apt-get.8.xml:218 msgid "" "Like <literal>clean</literal>, <literal>autoclean</literal> clears out the " "local repository of retrieved package files. The difference is that it only " @@ -1309,7 +1309,7 @@ msgstr "" "zawierających zainstalowane pakiety." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:234 +#: apt-get.8.xml:228 msgid "" "<literal>autoremove</literal> is used to remove packages that were " "automatically installed to satisfy dependencies for other packages and are " @@ -1320,7 +1320,7 @@ msgstr "" "pakietach, i nie są już potrzebne." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:239 +#: apt-get.8.xml:233 msgid "" "<literal>changelog</literal> downloads a package changelog and displays it " "through <command>sensible-pager</command>. The server name and base " @@ -1343,7 +1343,7 @@ msgstr "" "te dla polecenia <option>install</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:262 +#: apt-get.8.xml:256 msgid "" "Do not consider recommended packages as a dependency for installing. " "Configuration Item: <literal>APT::Install-Recommends</literal>." @@ -1352,7 +1352,7 @@ msgstr "" "Pozycja w pliku konfiguracyjnym: <literal>APT::Install-Recommends</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:267 +#: apt-get.8.xml:261 msgid "" "Consider suggested packages as a dependency for installing. Configuration " "Item: <literal>APT::Install-Suggests</literal>." @@ -1362,7 +1362,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:272 +#: apt-get.8.xml:266 msgid "" "Download only; package files are only retrieved, not unpacked or installed. " "Configuration Item: <literal>APT::Get::Download-Only</literal>." @@ -1373,7 +1373,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:277 +#: apt-get.8.xml:271 #, fuzzy #| msgid "" #| "Fix; attempt to correct a system with broken dependencies in place. This " @@ -1414,7 +1414,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:292 +#: apt-get.8.xml:286 msgid "" "Ignore missing packages; if packages cannot be retrieved or fail the " "integrity check after retrieval (corrupted package files), hold back those " @@ -1434,7 +1434,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:303 +#: apt-get.8.xml:297 msgid "" "Disables downloading of packages. This is best used with <option>--ignore-" "missing</option> to force APT to use only the .debs it has already " @@ -1446,7 +1446,7 @@ msgstr "" "Download</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:310 +#: apt-get.8.xml:304 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quiet up to a maximum of 2. You can also use " @@ -1467,7 +1467,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:325 +#: apt-get.8.xml:319 msgid "" "No action; perform a simulation of events that would occur but do not " "actually change the system. Configuration Item: <literal>APT::Get::" @@ -1478,7 +1478,7 @@ msgstr "" "Get::Simulate</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:329 +#: apt-get.8.xml:323 msgid "" "Simulated runs performed as a user will automatically deactivate locking " "(<literal>Debug::NoLocking</literal>), and if the option <literal>APT::Get::" @@ -1498,7 +1498,7 @@ msgstr "" "strony <literal>apt-get</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:337 +#: apt-get.8.xml:331 msgid "" "Simulated runs print out a series of lines, each representing a " "<command>dpkg</command> operation: configure (<literal>Conf</literal>), " @@ -1515,7 +1515,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:345 +#: apt-get.8.xml:339 msgid "" "Automatic yes to prompts; assume \"yes\" as answer to all prompts and run " "non-interactively. If an undesirable situation, such as changing a held " @@ -1531,7 +1531,7 @@ msgstr "" "Assume-Yes</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:353 +#: apt-get.8.xml:347 msgid "" "Automatic \"no\" to all prompts. Configuration Item: <literal>APT::Get::" "Assume-No</literal>." @@ -1541,7 +1541,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:358 +#: apt-get.8.xml:352 msgid "" "Show upgraded packages; print out a list of all packages that are to be " "upgraded. Configuration Item: <literal>APT::Get::Show-Upgraded</literal>." @@ -1552,7 +1552,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:364 +#: apt-get.8.xml:358 msgid "" "Show full versions for upgraded and installed packages. Configuration Item: " "<literal>APT::Get::Show-Versions</literal>." @@ -1561,7 +1561,7 @@ msgstr "" "konfiguracyjnym: <literal>APT::Get::Show-Versions</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:370 +#: apt-get.8.xml:364 #, fuzzy #| msgid "" #| "This option controls the architecture packages are built for by " @@ -1587,7 +1587,7 @@ msgstr "" "Host-Architecture</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:380 +#: apt-get.8.xml:374 #, fuzzy #| msgid "" #| "This option controls the architecture packages are built for by " @@ -1613,7 +1613,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:391 +#: apt-get.8.xml:385 msgid "" "Compile source packages after downloading them. Configuration Item: " "<literal>APT::Get::Compile</literal>." @@ -1623,7 +1623,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:396 +#: apt-get.8.xml:390 msgid "" "Ignore package holds; this causes <command>apt-get</command> to ignore a " "hold placed on a package. This may be useful in conjunction with " @@ -1637,7 +1637,7 @@ msgstr "" "<literal>APT::Ignore-Hold</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:403 +#: apt-get.8.xml:397 msgid "" "Allow installing new packages when used in conjunction with " "<literal>upgrade</literal>. This is useful if the update of a installed " @@ -1650,7 +1650,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:415 +#: apt-get.8.xml:409 msgid "" "Do not upgrade packages; when used in conjunction with <literal>install</" "literal>, <literal>no-upgrade</literal> will prevent packages on the command " @@ -1663,7 +1663,7 @@ msgstr "" "<literal>APT::Get::Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:422 +#: apt-get.8.xml:416 msgid "" "Do not install new packages; when used in conjunction with <literal>install</" "literal>, <literal>only-upgrade</literal> will install upgrades for already " @@ -1677,7 +1677,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:430 +#: apt-get.8.xml:424 msgid "" "Force yes; this is a dangerous option that will cause apt to continue " "without prompting if it is doing something potentially harmful. It should " @@ -1694,7 +1694,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:438 +#: apt-get.8.xml:432 msgid "" "Instead of fetching the files to install their URIs are printed. Each URI " "will have the path, the destination file name, the size and the expected MD5 " @@ -1717,7 +1717,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:449 +#: apt-get.8.xml:443 msgid "" "Use purge instead of remove for anything that would be removed. An asterisk " "(\"*\") will be displayed next to packages which are scheduled to be purged. " @@ -1732,7 +1732,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:457 +#: apt-get.8.xml:451 msgid "" "Re-install packages that are already installed and at the newest version. " "Configuration Item: <literal>APT::Get::ReInstall</literal>." @@ -1741,7 +1741,7 @@ msgstr "" "Pozycja w pliku konfiguracyjnym: <literal>APT::Get::ReInstall</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:462 +#: apt-get.8.xml:456 msgid "" "This option is on by default; use <literal>--no-list-cleanup</literal> to " "turn it off. When it is on, <command>apt-get</command> will automatically " @@ -1759,7 +1759,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:472 +#: apt-get.8.xml:466 msgid "" "This option controls the default input to the policy engine; it creates a " "default pin at priority 990 using the specified release string. This " @@ -1783,7 +1783,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:487 +#: apt-get.8.xml:481 msgid "" "Only perform operations that are 'trivial'. Logically this can be considered " "related to <option>--assume-yes</option>; where <option>--assume-yes</" @@ -1798,7 +1798,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:494 +#: apt-get.8.xml:488 msgid "" "If any packages are to be removed apt-get immediately aborts without " "prompting. Configuration Item: <literal>APT::Get::Remove</literal>." @@ -1808,7 +1808,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:500 +#: apt-get.8.xml:494 msgid "" "If the command is either <literal>install</literal> or <literal>remove</" "literal>, then this option acts like running the <literal>autoremove</" @@ -1823,7 +1823,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:507 +#: apt-get.8.xml:501 msgid "" "Only has meaning for the <literal>source</literal> and <literal>build-dep</" "literal> commands. Indicates that the given source names are not to be " @@ -1843,7 +1843,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:518 +#: apt-get.8.xml:512 msgid "" "Download only the diff, dsc, or tar file of a source archive. Configuration " "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</" @@ -1855,7 +1855,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:524 +#: apt-get.8.xml:518 msgid "" "Only process architecture-dependent build-dependencies. Configuration Item: " "<literal>APT::Get::Arch-Only</literal>." @@ -1866,7 +1866,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:529 +#: apt-get.8.xml:523 msgid "" "Ignore if packages can't be authenticated and don't prompt about it. This " "is useful for tools like pbuilder. Configuration Item: <literal>APT::Get::" @@ -1877,7 +1877,7 @@ msgstr "" "w pliku konfiguracyjnym: <literal>APT::Get::AllowUnauthenticated</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:535 +#: apt-get.8.xml:529 msgid "" "Show user friendly progress information in the terminal window when packages " "are installed, upgraded or removed. For a machine parsable version of this " @@ -1887,14 +1887,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 -#: apt.conf.5.xml:1222 apt_preferences.5.xml:700 +#: apt-get.8.xml:542 apt-cache.8.xml:339 apt-key.8.xml:170 apt-mark.8.xml:121 +#: apt.conf.5.xml:1216 apt_preferences.5.xml:694 msgid "Files" msgstr "Pliki" # #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:559 +#: apt-get.8.xml:553 #, fuzzy #| msgid "" #| "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " @@ -1911,7 +1911,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:565 +#: apt-get.8.xml:559 msgid "" "<command>apt-get</command> returns zero on normal operation, decimal 100 on " "error." @@ -1920,13 +1920,13 @@ msgstr "" "w przypadku błędu." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-cache.8.xml:35 +#: apt-cache.8.xml:29 msgid "query the APT cache" msgstr "odpytanie bufora APT" # #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:41 +#: apt-cache.8.xml:35 msgid "" "<command>apt-cache</command> performs a variety of operations on APT's " "package cache. <command>apt-cache</command> does not manipulate the state of " @@ -1939,7 +1939,7 @@ msgstr "" "generowania interesującego wyjścia." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:51 +#: apt-cache.8.xml:45 msgid "" "<literal>gencaches</literal> creates APT's package cache. This is done " "implicitly by all commands needing this cache if it is missing or outdated." @@ -1949,15 +1949,15 @@ msgstr "" "istnieje lub jest przestarzały." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-cache.8.xml:55 apt-cache.8.xml:144 apt-cache.8.xml:165 -#: apt-cache.8.xml:187 apt-cache.8.xml:192 apt-cache.8.xml:208 -#: apt-cache.8.xml:226 apt-cache.8.xml:238 +#: apt-cache.8.xml:49 apt-cache.8.xml:138 apt-cache.8.xml:159 +#: apt-cache.8.xml:181 apt-cache.8.xml:186 apt-cache.8.xml:202 +#: apt-cache.8.xml:220 apt-cache.8.xml:232 msgid "&synopsis-pkg;" msgstr "&synopsis-pkg;" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:56 +#: apt-cache.8.xml:50 msgid "" "<literal>showpkg</literal> displays information about the packages listed on " "the command line. Remaining arguments are package names. The available " @@ -1980,7 +1980,7 @@ msgstr "" "poniższego:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> -#: apt-cache.8.xml:68 +#: apt-cache.8.xml:62 #, no-wrap msgid "" "Package: libreadline2\n" @@ -2007,7 +2007,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:80 +#: apt-cache.8.xml:74 msgid "" "Thus it may be seen that libreadline2, version 2.1-12, depends on libc5 and " "ncurses3.0 which must be installed for libreadline2 to work. In turn, " @@ -2027,7 +2027,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:89 +#: apt-cache.8.xml:83 msgid "" "<literal>stats</literal> displays some statistics about the cache. No " "further arguments are expected. Statistics reported are:" @@ -2037,7 +2037,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:92 +#: apt-cache.8.xml:86 msgid "" "<literal>Total package names</literal> is the number of package names found " "in the cache." @@ -2047,7 +2047,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:96 +#: apt-cache.8.xml:90 msgid "" "<literal>Normal packages</literal> is the number of regular, ordinary " "package names; these are packages that bear a one-to-one correspondence " @@ -2060,7 +2060,7 @@ msgstr "" "pakiety jako zależności. Większość pakietów należy do tej kategorii." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:102 +#: apt-cache.8.xml:96 msgid "" "<literal>Pure virtual packages</literal> is the number of packages that " "exist only as a virtual package name; that is, packages only \"provide\" the " @@ -2077,7 +2077,7 @@ msgstr "" "agenta\", ale żaden pakiet nie nazywa się \"mail-transport-agent\"." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:110 +#: apt-cache.8.xml:104 msgid "" "<literal>Single virtual packages</literal> is the number of packages with " "only one package providing a particular virtual package. For example, in the " @@ -2091,7 +2091,7 @@ msgstr "" "dostarcza \"X11-text-viewer\"." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:116 +#: apt-cache.8.xml:110 msgid "" "<literal>Mixed virtual packages</literal> is the number of packages that " "either provide a particular virtual package or have the virtual package name " @@ -2106,7 +2106,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:123 +#: apt-cache.8.xml:117 msgid "" "<literal>Missing</literal> is the number of package names that were " "referenced in a dependency but were not provided by any package. Missing " @@ -2122,7 +2122,7 @@ msgstr "" "zależnościach typu \"Conflicts\" lub \"Breaks\"." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:130 +#: apt-cache.8.xml:124 msgid "" "<literal>Total distinct</literal> versions is the number of package versions " "found in the cache; this value is therefore at least equal to the number of " @@ -2139,7 +2139,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:137 +#: apt-cache.8.xml:131 msgid "" "<literal>Total dependencies</literal> is the number of dependency " "relationships claimed by all of the packages in the cache." @@ -2148,7 +2148,7 @@ msgstr "" "więzów zależności wymaganych przez wszystkie pakiety w buforze." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:145 +#: apt-cache.8.xml:139 msgid "" "<literal>showsrc</literal> displays all the source package records that " "match the given package names. All versions are shown, as well as all " @@ -2161,7 +2161,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:151 +#: apt-cache.8.xml:145 msgid "" "<literal>dump</literal> shows a short listing of every package in the cache. " "It is primarily for debugging." @@ -2171,7 +2171,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:156 +#: apt-cache.8.xml:150 msgid "" "<literal>dumpavail</literal> prints out an available list to stdout. This is " "suitable for use with &dpkg; and is used by the &dselect; method." @@ -2182,7 +2182,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:161 +#: apt-cache.8.xml:155 msgid "" "<literal>unmet</literal> displays a summary of all unmet dependencies in the " "package cache." @@ -2192,7 +2192,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:166 +#: apt-cache.8.xml:160 msgid "" "<literal>show</literal> performs a function similar to <command>dpkg --print-" "avail</command>; it displays the package records for the named packages." @@ -2201,12 +2201,12 @@ msgstr "" "avail</command>; pokazuje szczegółowe informacje o podanych pakietach." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-cache.8.xml:171 +#: apt-cache.8.xml:165 msgid "&synopsis-regex;" msgstr "&synopsis-regex;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:172 +#: apt-cache.8.xml:166 msgid "" "<literal>search</literal> performs a full text search on all available " "package lists for the POSIX regex pattern given, see ®ex;. It searches " @@ -2229,7 +2229,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:183 +#: apt-cache.8.xml:177 msgid "" "Separate arguments can be used to specify multiple search patterns that are " "and'ed together." @@ -2239,7 +2239,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:188 +#: apt-cache.8.xml:182 msgid "" "<literal>depends</literal> shows a listing of each dependency a package has " "and all the possible other packages that can fulfill that dependency." @@ -2249,7 +2249,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:193 +#: apt-cache.8.xml:187 msgid "" "<literal>rdepends</literal> shows a listing of each reverse dependency a " "package has." @@ -2258,13 +2258,13 @@ msgstr "" "danego pakietu." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:197 +#: apt-cache.8.xml:191 msgid "<optional><replaceable>&synopsis-prefix;</replaceable></optional>" msgstr "<optional><replaceable>&synopsis-prefix;</replaceable></optional>" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:198 +#: apt-cache.8.xml:192 msgid "" "This command prints the name of each package APT knows. The optional " "argument is a prefix match to filter the name list. The output is suitable " @@ -2279,7 +2279,7 @@ msgstr "" "używać z opcją <option>--generate</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:203 +#: apt-cache.8.xml:197 msgid "" "Note that a package which APT knows of is not necessarily available to " "download, installable or installed, e.g. virtual packages are also listed in " @@ -2292,7 +2292,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:209 +#: apt-cache.8.xml:203 msgid "" "<literal>dotty</literal> takes a list of packages on the command line and " "generates output suitable for use by dotty from the <ulink url=\"http://www." @@ -2313,7 +2313,7 @@ msgstr "" "Cache::GivenOnly</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:218 +#: apt-cache.8.xml:212 msgid "" "The resulting nodes will have several shapes; normal packages are boxes, " "pure virtual packages are triangles, mixed virtual packages are diamonds, " @@ -2328,12 +2328,12 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:223 +#: apt-cache.8.xml:217 msgid "Caution, dotty cannot graph larger sets of packages." msgstr "Uwaga: dotty nie potrafi narysować większego zbioru pakietów." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:227 +#: apt-cache.8.xml:221 msgid "" "The same as <literal>dotty</literal>, only for xvcg from the <ulink url=" "\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG tool</ulink>." @@ -2343,13 +2343,13 @@ msgstr "" "ulink>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:231 +#: apt-cache.8.xml:225 msgid "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>" msgstr "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:232 +#: apt-cache.8.xml:226 msgid "" "<literal>policy</literal> is meant to help debug issues relating to the " "preferences file. With no arguments it will print out the priorities of each " @@ -2363,7 +2363,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:239 +#: apt-cache.8.xml:233 msgid "" "<literal>apt-cache</literal>'s <literal>madison</literal> command attempts " "to mimic the output format and a subset of the functionality of the Debian " @@ -2382,7 +2382,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:255 +#: apt-cache.8.xml:249 msgid "" "Select the file to store the package cache. The package cache is the primary " "cache used by all operations. Configuration Item: <literal>Dir::Cache::" @@ -2394,7 +2394,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:261 +#: apt-cache.8.xml:255 msgid "" "Select the file to store the source cache. The source is used only by " "<literal>gencaches</literal> and it stores a parsed version of the package " @@ -2411,7 +2411,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:269 +#: apt-cache.8.xml:263 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quietness up to a maximum of 2. You can also use " @@ -2425,7 +2425,7 @@ msgstr "" "pliku konfiguracyjnym: <literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:276 +#: apt-cache.8.xml:270 msgid "" "Print only important dependencies; for use with <literal>unmet</literal> and " "<literal>depends</literal>. Causes only Depends and Pre-Depends relations to " @@ -2437,7 +2437,7 @@ msgstr "" "Cache::Important</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:290 +#: apt-cache.8.xml:284 msgid "" "Per default the <literal>depends</literal> and <literal>rdepends</literal> " "print all dependencies. This can be tweaked with these flags which will omit " @@ -2453,7 +2453,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:297 +#: apt-cache.8.xml:291 msgid "" "Print full package records when searching. Configuration Item: " "<literal>APT::Cache::ShowFull</literal>." @@ -2462,7 +2462,7 @@ msgstr "" "konfiguracyjnym: <literal>APT::Cache::ShowFull</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:302 +#: apt-cache.8.xml:296 msgid "" "Print full records for all available versions. This is the default; to turn " "it off, use <option>--no-all-versions</option>. If <option>--no-all-" @@ -2481,7 +2481,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:311 +#: apt-cache.8.xml:305 msgid "" "Perform automatic package cache regeneration, rather than use the cache as " "it is. This is the default; to turn it off, use <option>--no-generate</" @@ -2494,7 +2494,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:317 +#: apt-cache.8.xml:311 msgid "" "Only search on the package names, not the long descriptions. Configuration " "Item: <literal>APT::Cache::NamesOnly</literal>." @@ -2504,7 +2504,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:322 +#: apt-cache.8.xml:316 msgid "" "Make <literal>pkgnames</literal> print all names, including virtual packages " "and missing dependencies. Configuration Item: <literal>APT::Cache::" @@ -2517,7 +2517,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:328 +#: apt-cache.8.xml:322 msgid "" "Make <literal>depends</literal> and <literal>rdepends</literal> recursive so " "that all packages mentioned are printed once. Configuration Item: " @@ -2530,7 +2530,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:335 +#: apt-cache.8.xml:329 msgid "" "Limit the output of <literal>depends</literal> and <literal>rdepends</" "literal> to packages which are currently installed. Configuration Item: " @@ -2542,13 +2542,13 @@ msgstr "" # #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:353 +#: apt-cache.8.xml:347 msgid "&apt-conf;, &sources-list;, &apt-get;" msgstr "&apt-conf;, &sources-list;, &apt-get;" # #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:358 +#: apt-cache.8.xml:352 msgid "" "<command>apt-cache</command> returns zero on normal operation, decimal 100 " "on error." @@ -2558,12 +2558,12 @@ msgstr "" # #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-key.8.xml:34 +#: apt-key.8.xml:28 msgid "APT key management utility" msgstr "Narzędzie zarządzanie kluczami APT" #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:41 +#: apt-key.8.xml:35 msgid "" "<command>apt-key</command> is used to manage the list of keys used by apt to " "authenticate packages. Packages which have been authenticated using these " @@ -2575,12 +2575,12 @@ msgstr "" "zaufane." #. type: Content of: <refentry><refsect1><title> -#: apt-key.8.xml:47 +#: apt-key.8.xml:41 msgid "Commands" msgstr "Polecenia" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:52 +#: apt-key.8.xml:46 msgid "" "Add a new key to the list of trusted keys. The key is read from the " "filename given with the parameter &synopsis-param-filename; or if the " @@ -2591,32 +2591,32 @@ msgstr "" "wejścia, jeśli zamiast nazwy pliku podano <literal>-</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:65 +#: apt-key.8.xml:59 msgid "Remove a key from the list of trusted keys." msgstr "Usuwa klucz z listy zaufanych kluczy." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:76 +#: apt-key.8.xml:70 msgid "Output the key &synopsis-param-keyid; to standard output." msgstr "Wyświetla klucz &synopsis-param-keyid; na standardowym wyjściu." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:87 +#: apt-key.8.xml:81 msgid "Output all trusted keys to standard output." msgstr "Wypisuje na standardowe wyjście wszystkie zaufane klucze." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:98 +#: apt-key.8.xml:92 msgid "List trusted keys." msgstr "Wyświetla listę zaufanych kluczy." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:109 +#: apt-key.8.xml:103 msgid "List fingerprints of trusted keys." msgstr "Wyświetla listę odcisków zaufanych kluczy." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:120 +#: apt-key.8.xml:114 msgid "" "Pass advanced options to gpg. With adv --recv-key you can download the " "public key." @@ -2625,7 +2625,7 @@ msgstr "" "pobranie klucza publicznego." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:132 +#: apt-key.8.xml:126 msgid "" "Update the local keyring with the archive keyring and remove from the local " "keyring the archive keys which are no longer valid. The archive keyring is " @@ -2639,7 +2639,7 @@ msgstr "" "distro;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:146 +#: apt-key.8.xml:140 msgid "" "Perform an update working similarly to the <command>update</command> command " "above, but get the archive keyring from a URI instead and validate it " @@ -2657,12 +2657,12 @@ msgstr "" "command>, ale APT w Ubuntu je obsługuje." #. type: Content of: <refentry><refsect1><title> -#: apt-key.8.xml:162 apt-cdrom.8.xml:82 +#: apt-key.8.xml:156 apt-cdrom.8.xml:76 msgid "Options" msgstr "Opcje" #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:163 +#: apt-key.8.xml:157 msgid "" "Note that options need to be defined before the commands described in the " "previous section." @@ -2671,7 +2671,7 @@ msgstr "" "opisanymi w poprzednim rozdziale." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:166 +#: apt-key.8.xml:160 msgid "" "With this option it is possible to specify a particular keyring file the " "command should operate on. The default is that a command is executed on the " @@ -2688,47 +2688,47 @@ msgstr "" "właśnie tam." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:181 +#: apt-key.8.xml:175 msgid "<filename>/etc/apt/trustdb.gpg</filename>" msgstr "<filename>/etc/apt/trustdb.gpg</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:182 +#: apt-key.8.xml:176 msgid "Local trust database of archive keys." msgstr "Lokalna składnica zaufanych kluczy archiwum." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:185 +#: apt-key.8.xml:179 msgid "&keyring-filename;" msgstr "&keyring-filename;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:186 +#: apt-key.8.xml:180 msgid "Keyring of &keyring-distro; archive trusted keys." msgstr "Składnica zaufanych kluczy archiwum &keyring-distro;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:189 +#: apt-key.8.xml:183 msgid "&keyring-removed-filename;" msgstr "&keyring-removed-filename;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:190 +#: apt-key.8.xml:184 msgid "Keyring of &keyring-distro; archive removed trusted keys." msgstr "Składnica usuniętych zaufanych kluczy archiwum &keyring-distro;." #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:199 +#: apt-key.8.xml:193 msgid "&apt-get;, &apt-secure;" msgstr "&apt-get;, &apt-secure;" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-mark.8.xml:35 +#: apt-mark.8.xml:29 msgid "mark/unmark a package as being automatically-installed" msgstr "Zaznaczanie/odznaczanie pakietu jako zainstalowanego automatycznie." #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:41 +#: apt-mark.8.xml:35 msgid "" "<command>apt-mark</command> will change whether a package has been marked as " "being automatically installed." @@ -2737,7 +2737,7 @@ msgstr "" "zainstalowany automatycznie." #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:45 +#: apt-mark.8.xml:39 msgid "" "When you request that a package is installed, and as a result other packages " "are installed to satisfy its dependencies, the dependencies are marked as " @@ -2753,7 +2753,7 @@ msgstr "" "lub <command>aptitude</command>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:54 +#: apt-mark.8.xml:48 msgid "" "<literal>auto</literal> is used to mark a package as being automatically " "installed, which will cause the package to be removed when no more manually " @@ -2764,7 +2764,7 @@ msgstr "" "żaden inny ręcznie zainstalowany pakiet nie będzie od niego zależał." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:62 +#: apt-mark.8.xml:56 msgid "" "<literal>manual</literal> is used to mark a package as being manually " "installed, which will prevent the package from being automatically removed " @@ -2775,7 +2775,7 @@ msgstr "" "sytuacji gdy żaden inny pakiet nie będzie od niego zależał." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:70 +#: apt-mark.8.xml:64 msgid "" "<literal>hold</literal> is used to mark a package as held back, which will " "prevent the package from being automatically installed, upgraded or " @@ -2790,7 +2790,7 @@ msgstr "" "działanie tego polecenia." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:80 +#: apt-mark.8.xml:74 msgid "" "<literal>unhold</literal> is used to cancel a previously set hold on a " "package to allow all actions again." @@ -2800,7 +2800,7 @@ msgstr "" "na tym pakiecie." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:86 +#: apt-mark.8.xml:80 msgid "" "<literal>showauto</literal> is used to print a list of automatically " "installed packages with each package on a new line. All automatically " @@ -2814,7 +2814,7 @@ msgstr "" "to zostaną wypisane tylko te z nich, które są automatycznie zainstalowane." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:94 +#: apt-mark.8.xml:88 msgid "" "<literal>showmanual</literal> can be used in the same way as " "<literal>showauto</literal> except that it will print a list of manually " @@ -2825,7 +2825,7 @@ msgstr "" "zainstalowanych pakietów." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:101 +#: apt-mark.8.xml:95 msgid "" "<literal>showhold</literal> is used to print a list of packages on hold in " "the same way as for the other show commands." @@ -2834,7 +2834,7 @@ msgstr "" "pakietów wstrzymanych, w taki sam sposób jak pozostałe polecenia \"show\"." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:117 +#: apt-mark.8.xml:111 msgid "" "Read/Write package stats from the filename given with the parameter " "&synopsis-param-filename; instead of from the default location, which is " @@ -2848,7 +2848,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:138 +#: apt-mark.8.xml:132 msgid "" "<command>apt-mark</command> returns zero on normal operation, non-zero on " "error." @@ -2857,12 +2857,12 @@ msgstr "" "wartość niezerową - w przypadku błędu." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-secure.8.xml:49 +#: apt-secure.8.xml:43 msgid "Archive authentication support for APT" msgstr "Wsparcie APT dla autentykacji archiwum." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:54 +#: apt-secure.8.xml:48 msgid "" "Starting with version 0.6, <command>apt</command> contains code that does " "signature checking of the Release file for all archives. This ensures that " @@ -2875,7 +2875,7 @@ msgstr "" "używanego do podpisywania plików \"Release\"." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:62 +#: apt-secure.8.xml:56 msgid "" "If a package comes from a archive without a signature, or with a signature " "that apt does not have a key for, that package is considered untrusted, and " @@ -2891,7 +2891,7 @@ msgstr "" "zweryfikowane, zanim w ogóle APT spróbuje z nich pobrać pakiety." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:71 +#: apt-secure.8.xml:65 msgid "" "The package frontends &apt-get;, &aptitude; and &synaptic; support this new " "authentication feature." @@ -2900,12 +2900,12 @@ msgstr "" "sposób autoryzacji pakietów." #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:76 +#: apt-secure.8.xml:70 msgid "Trusted archives" msgstr "Zaufane archiwa" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:79 +#: apt-secure.8.xml:73 msgid "" "The chain of trust from an apt archive to the end user is made up of several " "steps. <command>apt-secure</command> is the last step in this chain; " @@ -2921,7 +2921,7 @@ msgstr "" "opiekuna archiwum jest zapewnienie poprawności integralności archiwum." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:87 +#: apt-secure.8.xml:81 msgid "" "apt-secure does not review signatures at a package level. If you require " "tools to do this you should look at <command>debsig-verify</command> and " @@ -2934,7 +2934,7 @@ msgstr "" "verify i devscripts)." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:94 +#: apt-secure.8.xml:88 msgid "" "The chain of trust in Debian starts when a maintainer uploads a new package " "or a new version of a package to the Debian archive. In order to become " @@ -2951,7 +2951,7 @@ msgstr "" "odpowiednie procedury używane w Debianie do identyfikacji posiadacza klucza." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:104 +#: apt-secure.8.xml:98 msgid "" "Once the uploaded package is verified and included in the archive, the " "maintainer signature is stripped off, and checksums of the package are " @@ -2973,7 +2973,7 @@ msgstr "" "&keyring-package;." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:115 +#: apt-secure.8.xml:109 msgid "" "End users can check the signature of the Release file, extract a checksum of " "a package from it and compare it with the checksum of the package they " @@ -2984,7 +2984,7 @@ msgstr "" "pakietu. Mogą też polegać na tym, że APT zrobi to automatycznie." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:120 +#: apt-secure.8.xml:114 msgid "" "Notice that this is distinct from checking signatures on a per package " "basis. It is designed to prevent two possible attacks:" @@ -2994,7 +2994,7 @@ msgstr "" "dwoma możliwymi typami ataków:" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:125 +#: apt-secure.8.xml:119 msgid "" "<literal>Network \"man in the middle\" attacks</literal>. Without signature " "checking, malicious agents can introduce themselves into the package " @@ -3011,7 +3011,7 @@ msgstr "" "\"ARP (DNS) spoofing\")." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:133 +#: apt-secure.8.xml:127 msgid "" "<literal>Mirror network compromise</literal>. Without signature checking, a " "malicious agent can compromise a mirror host and modify the files in it to " @@ -3025,7 +3025,7 @@ msgstr "" "pobierającym pakiety z tego serwera." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:140 +#: apt-secure.8.xml:134 msgid "" "However, it does not defend against a compromise of the Debian master server " "itself (which signs the packages) or against a compromise of the key used to " @@ -3038,12 +3038,12 @@ msgstr "" "dla sprawdzania sygnatur poszczególnych pakietów." #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:146 +#: apt-secure.8.xml:140 msgid "User configuration" msgstr "Konfiguracja użytkownika" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:148 +#: apt-secure.8.xml:142 msgid "" "<command>apt-key</command> is the program that manages the list of keys used " "by apt. It can be used to add or remove keys, although an installation of " @@ -3057,7 +3057,7 @@ msgstr "" "Debiana." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:155 +#: apt-secure.8.xml:149 msgid "" "In order to add a new key you need to first download it (you should make " "sure you are using a trusted communication channel when retrieving it), add " @@ -3073,19 +3073,19 @@ msgstr "" "<filename>Release.gpg</filename> ze skonfigurowanych archiwów." #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:164 +#: apt-secure.8.xml:158 msgid "Archive configuration" msgstr "Konfiguracja archiwum" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:166 +#: apt-secure.8.xml:160 msgid "" "If you want to provide archive signatures in an archive under your " "maintenance you have to:" msgstr "Aby dołączyć sygnatury do archiwum, którym się opiekujesz, należy:" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:171 +#: apt-secure.8.xml:165 msgid "" "<emphasis>Create a toplevel Release file</emphasis>, if it does not exist " "already. You can do this by running <command>apt-ftparchive release</" @@ -3096,7 +3096,7 @@ msgstr "" "release</command> (dostarczanego w pakiecie apt-utils)." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:176 +#: apt-secure.8.xml:170 msgid "" "<emphasis>Sign it</emphasis>. You can do this by running <command>gpg --" "clearsign -o InRelease Release</command> and <command>gpg -abs -o Release." @@ -3107,7 +3107,7 @@ msgstr "" "o Release.gpg Release</command>." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:180 +#: apt-secure.8.xml:174 msgid "" "<emphasis>Publish the key fingerprint</emphasis>, that way your users will " "know what key they need to import in order to authenticate the files in the " @@ -3118,7 +3118,7 @@ msgstr "" "autoryzować plików w archiwum." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:187 +#: apt-secure.8.xml:181 msgid "" "Whenever the contents of the archive change (new packages are added or " "removed) the archive maintainer has to follow the first two steps outlined " @@ -3128,7 +3128,7 @@ msgstr "" "opiekun archiwum musi wykonać pierwsze dwa z wymienionych powyżej kroków." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:195 +#: apt-secure.8.xml:189 msgid "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " "&debsign;, &debsig-verify;, &gpg;" @@ -3137,7 +3137,7 @@ msgstr "" "&debsign;, &debsig-verify;, &gpg;" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:199 +#: apt-secure.8.xml:193 msgid "" "For more background information you might want to review the <ulink url=" "\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7\">Debian " @@ -3153,12 +3153,12 @@ msgstr "" "Distribution HOWTO</ulink>\" napisanym przez V. Alexa Brennena." #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:212 +#: apt-secure.8.xml:206 msgid "Manpage Authors" msgstr "Autorzy strony podręcznika" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:214 +#: apt-secure.8.xml:208 msgid "" "This man-page is based on the work of Javier Fernández-Sanguino Peña, Isaac " "Jones, Colin Walters, Florian Weimer and Michael Vogt." @@ -3169,13 +3169,13 @@ msgstr "" # #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-cdrom.8.xml:34 +#: apt-cdrom.8.xml:28 msgid "APT CD-ROM management utility" msgstr "Narzędzie APT do zarządzania źródłami typu CD-ROM" # #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:40 +#: apt-cdrom.8.xml:34 msgid "" "<command>apt-cdrom</command> is used to add a new CD-ROM to APT's list of " "available sources. <command>apt-cdrom</command> takes care of determining " @@ -3189,7 +3189,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:47 +#: apt-cdrom.8.xml:41 msgid "" "It is necessary to use <command>apt-cdrom</command> to add CDs to the APT " "system; it cannot be done by hand. Furthermore each disc in a multi-CD set " @@ -3200,7 +3200,7 @@ msgstr "" "w wielodyskowym archiwum musi być włożony i zeskanowany oddzielnie." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:58 +#: apt-cdrom.8.xml:52 msgid "" "<literal>add</literal> is used to add a new disc to the source list. It will " "unmount the CD-ROM device, prompt for a disc to be inserted and then proceed " @@ -3216,7 +3216,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:66 +#: apt-cdrom.8.xml:60 msgid "" "APT uses a CD-ROM ID to track which disc is currently in the drive and " "maintains a database of these IDs in <filename>&statedir;/cdroms.list</" @@ -3228,7 +3228,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:74 +#: apt-cdrom.8.xml:68 msgid "" "A debugging tool to report the identity of the current disc as well as the " "stored file name" @@ -3238,7 +3238,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:87 +#: apt-cdrom.8.xml:81 #, fuzzy #| msgid "" #| "Mount point; specify the location to mount the CD-ROM. This mount point " @@ -3256,7 +3256,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:95 +#: apt-cdrom.8.xml:89 msgid "" "Mount point; specify the location to mount the CD-ROM. This mount point must " "be listed in <filename>/etc/fstab</filename> and properly configured. " @@ -3269,7 +3269,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:104 +#: apt-cdrom.8.xml:98 msgid "" "Rename a disc; change the label of a disc or override the disc's given " "label. This option will cause <command>apt-cdrom</command> to prompt for a " @@ -3282,7 +3282,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:113 +#: apt-cdrom.8.xml:107 msgid "" "No mounting; prevent <command>apt-cdrom</command> from mounting and " "unmounting the mount point. Configuration Item: <literal>APT::CDROM::" @@ -3294,7 +3294,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:121 +#: apt-cdrom.8.xml:115 msgid "" "Fast Copy; Assume the package files are valid and do not check every " "package. This option should be used only if <command>apt-cdrom</command> has " @@ -3309,7 +3309,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:131 +#: apt-cdrom.8.xml:125 msgid "" "Thorough Package Scan; This option may be needed with some old Debian " "1.1/1.2 discs that have Package files in strange places. It takes much " @@ -3322,7 +3322,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:142 +#: apt-cdrom.8.xml:136 msgid "" "No Changes; Do not change the &sources-list; file and do not write index " "files. Everything is still checked however. Configuration Item: " @@ -3334,13 +3334,13 @@ msgstr "" # #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:155 +#: apt-cdrom.8.xml:149 msgid "&apt-conf;, &apt-get;, &sources-list;" msgstr "&apt-conf;, &apt-get;, &sources-list;" # #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:160 +#: apt-cdrom.8.xml:154 msgid "" "<command>apt-cdrom</command> returns zero on normal operation, decimal 100 " "on error." @@ -3349,12 +3349,12 @@ msgstr "" "- w przypadku błędu." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-config.8.xml:35 +#: apt-config.8.xml:29 msgid "APT Configuration Query program" msgstr "Program odpytywania konfiguracji APT" #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:41 +#: apt-config.8.xml:35 msgid "" "<command>apt-config</command> is an internal program used by various " "portions of the APT suite to provide consistent configurability. It accesses " @@ -3367,7 +3367,7 @@ msgstr "" "filename> w sposób łatwy do użycia w programach skryptowych." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:53 +#: apt-config.8.xml:47 msgid "" "shell is used to access the configuration information from a shell script. " "It is given pairs of arguments, the first being a shell variable and the " @@ -3382,7 +3382,7 @@ msgstr "" "Przykład użycia w skrypcie powłoki:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> -#: apt-config.8.xml:61 +#: apt-config.8.xml:55 #, no-wrap msgid "" "OPTS=\"-f\"\n" @@ -3394,7 +3394,7 @@ msgstr "" "eval $RES\n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:66 +#: apt-config.8.xml:60 msgid "" "This will set the shell environment variable $OPTS to the value of MyApp::" "options with a default of <option>-f</option>." @@ -3403,7 +3403,7 @@ msgstr "" "zmiennej MojaAplikacja::opcje, z domyślną wartością <option>-f</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:70 +#: apt-config.8.xml:64 msgid "" "The configuration item may be postfixed with a /[fdbi]. f returns file " "names, d returns directories, b returns true or false and i returns an " @@ -3414,12 +3414,12 @@ msgstr "" "jest ujednolicana i weryfikowana." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:79 +#: apt-config.8.xml:73 msgid "Just show the contents of the configuration space." msgstr "Wyświetla zawartość przestrzeni konfiguracji." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:92 +#: apt-config.8.xml:86 msgid "" "Include options which have an empty value. This is the default, so use --no-" "empty to remove them from the output." @@ -3428,12 +3428,12 @@ msgstr "" "użyć <literal>--no-empty</literal>, aby usunąć takie opcje z wyjścia." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-config.8.xml:97 +#: apt-config.8.xml:91 msgid "%f "%v";%n" msgstr "%f "%v";%n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:98 +#: apt-config.8.xml:92 msgid "" "Defines the output of each config option. %t will be replaced with " "its individual name, %f with its full hierarchical name and %v " @@ -3452,14 +3452,14 @@ msgstr "" "używając %%." #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:112 apt-extracttemplates.1.xml:73 apt-sortpkgs.1.xml:66 -#: apt-ftparchive.1.xml:610 +#: apt-config.8.xml:106 apt-extracttemplates.1.xml:67 apt-sortpkgs.1.xml:60 +#: apt-ftparchive.1.xml:604 msgid "&apt-conf;" msgstr "&apt-conf;" # #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:117 +#: apt-config.8.xml:111 msgid "" "<command>apt-config</command> returns zero on normal operation, decimal 100 " "on error." @@ -3468,27 +3468,27 @@ msgstr "" "- w przypadku błędu." #. type: Content of: <refentry><refentryinfo><author><contrib> -#: apt.conf.5.xml:22 +#: apt.conf.5.xml:16 msgid "Initial documentation of Debug::*." msgstr "Wstępna dokumentacja hierarchii Debug::*." #. type: Content of: <refentry><refentryinfo><author><email> -#: apt.conf.5.xml:23 +#: apt.conf.5.xml:17 msgid "dburrows@debian.org" msgstr "dburrows@debian.org" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt.conf.5.xml:33 apt_preferences.5.xml:27 sources.list.5.xml:28 +#: apt.conf.5.xml:27 apt_preferences.5.xml:21 sources.list.5.xml:22 msgid "5" msgstr "5" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt.conf.5.xml:40 +#: apt.conf.5.xml:34 msgid "Configuration file for APT" msgstr "Plik konfiguracyjny dla APT" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:44 +#: apt.conf.5.xml:38 msgid "" "<filename>/etc/apt/apt.conf</filename> is the main configuration file shared " "by all the tools in the APT suite of tools, though it is by no means the " @@ -3502,7 +3502,7 @@ msgstr "" "jednolite środowisko pracy." #. type: Content of: <refentry><refsect1><orderedlist><para> -#: apt.conf.5.xml:50 +#: apt.conf.5.xml:44 msgid "" "When an APT tool starts up it will read the configuration files in the " "following order:" @@ -3511,7 +3511,7 @@ msgstr "" "następującym porządku:" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:52 +#: apt.conf.5.xml:46 msgid "" "the file specified by the <envar>APT_CONFIG</envar> environment variable (if " "any)" @@ -3520,7 +3520,7 @@ msgstr "" "ustawiona)." #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:54 +#: apt.conf.5.xml:48 msgid "" "all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending " "order which have either no or \"<literal>conf</literal>\" as filename " @@ -3540,14 +3540,14 @@ msgstr "" "żadnych informacji." #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:61 +#: apt.conf.5.xml:55 msgid "" "the main configuration file specified by <literal>Dir::Etc::main</literal>" msgstr "" "główny plik konfiguracyjny określony przez <literal>Dir::Etc::main</literal>." #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:63 +#: apt.conf.5.xml:57 msgid "" "the command line options are applied to override the configuration " "directives or to load even more configuration files." @@ -3556,12 +3556,12 @@ msgstr "" "załadowania kolejnych plików konfiguracyjnych." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:67 +#: apt.conf.5.xml:61 msgid "Syntax" msgstr "Składnia" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:68 +#: apt.conf.5.xml:62 msgid "" "The configuration file is organized in a tree with options organized into " "functional groups. Option specification is given with a double colon " @@ -3576,7 +3576,7 @@ msgstr "" "dziedziczą ustawień od swoich przodków." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:74 +#: apt.conf.5.xml:68 msgid "" "Syntactically the configuration language is modeled after what the ISC tools " "such as bind and dhcp use. Lines starting with <literal>//</literal> are " @@ -3591,7 +3591,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><informalexample><programlisting> -#: apt.conf.5.xml:87 +#: apt.conf.5.xml:81 #, no-wrap msgid "" "APT {\n" @@ -3609,7 +3609,7 @@ msgstr "" "};\n" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:95 +#: apt.conf.5.xml:89 msgid "" "with newlines placed to make it more readable. Lists can be created by " "opening a scope and including a single string enclosed in quotes followed by " @@ -3617,27 +3617,27 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><informalexample><programlisting> -#: apt.conf.5.xml:100 +#: apt.conf.5.xml:94 #, no-wrap msgid "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" msgstr "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:103 +#: apt.conf.5.xml:97 msgid "" "In general the sample configuration file &configureindex; is a good guide " "for how it should look." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:106 +#: apt.conf.5.xml:100 msgid "" "Case is not significant in names of configuration items, so in the previous " "example you could use <literal>dpkg::pre-install-pkgs</literal>." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:109 +#: apt.conf.5.xml:103 msgid "" "Names for the configuration items are optional if a list is defined as can " "be seen in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. If " @@ -3647,7 +3647,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:114 +#: apt.conf.5.xml:108 msgid "" "Two special commands are defined: <literal>#include</literal> (which is " "deprecated and not supported by alternative implementations) and " @@ -3659,7 +3659,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:124 +#: apt.conf.5.xml:118 msgid "" "The <literal>#clear</literal> command is the only way to delete a list or a " "complete scope. Reopening a scope (or using the syntax described below with " @@ -3669,7 +3669,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:132 +#: apt.conf.5.xml:126 msgid "" "All of the APT tools take an -o option which allows an arbitrary " "configuration directive to be specified on the command line. The syntax is a " @@ -3681,7 +3681,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:140 +#: apt.conf.5.xml:134 msgid "" "Note that appending items to a list using <literal>::</literal> only works " "for one item per line, and that you should not use it in combination with " @@ -3698,19 +3698,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:155 +#: apt.conf.5.xml:149 msgid "The APT Group" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:156 +#: apt.conf.5.xml:150 msgid "" "This group of options controls general APT behavior as well as holding the " "options for all of the tools." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:161 +#: apt.conf.5.xml:155 msgid "" "System Architecture; sets the architecture to use when fetching files and " "parsing package lists. The internal default is the architecture apt was " @@ -3718,7 +3718,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:168 +#: apt.conf.5.xml:162 msgid "" "All Architectures the system supports. For instance, CPUs implementing the " "<literal>amd64</literal> (also called <literal>x86-64</literal>) " @@ -3731,7 +3731,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:182 +#: apt.conf.5.xml:176 msgid "" "List of all build profiles enabled for build-dependency resolution, without " "the \"<literal>profile.</literal>\" namespace prefix. By default this list " @@ -3740,7 +3740,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:190 +#: apt.conf.5.xml:184 msgid "" "Default release to install packages from if more than one version is " "available. Contains release name, codename or release version. Examples: " @@ -3749,14 +3749,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:196 +#: apt.conf.5.xml:190 msgid "" "Ignore held packages; this global option causes the problem resolver to " "ignore held packages in its decision making." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:201 +#: apt.conf.5.xml:195 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " @@ -3765,7 +3765,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:209 +#: apt.conf.5.xml:203 msgid "" "Defaults to on, which will cause APT to install essential and important " "packages as soon as possible in an install/upgrade operation, in order to " @@ -3780,7 +3780,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:221 +#: apt.conf.5.xml:215 msgid "" "The immediate configuration marker is also applied in the potentially " "problematic case of circular dependencies, since a dependency with the " @@ -3797,7 +3797,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:234 +#: apt.conf.5.xml:228 msgid "" "Before a big operation like <literal>dist-upgrade</literal> is run with this " "option disabled you should try to explicitly <literal>install</literal> the " @@ -3808,7 +3808,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:245 +#: apt.conf.5.xml:239 msgid "" "Never enable this option unless you <emphasis>really</emphasis> know what " "you are doing. It permits APT to temporarily remove an essential package to " @@ -3821,7 +3821,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:257 +#: apt.conf.5.xml:251 msgid "" "APT uses since version 0.7.26 a resizable memory mapped cache file to store " "the available information. <literal>Cache-Start</literal> acts as a hint of " @@ -3841,38 +3841,38 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:273 +#: apt.conf.5.xml:267 msgid "Defines which packages are considered essential build dependencies." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:277 +#: apt.conf.5.xml:271 msgid "" "The Get subsection controls the &apt-get; tool; please see its documentation " "for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:282 +#: apt.conf.5.xml:276 msgid "" "The Cache subsection controls the &apt-cache; tool; please see its " "documentation for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:287 +#: apt.conf.5.xml:281 msgid "" "The CDROM subsection controls the &apt-cdrom; tool; please see its " "documentation for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:293 +#: apt.conf.5.xml:287 msgid "The Acquire Group" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:294 +#: apt.conf.5.xml:288 msgid "" "The <literal>Acquire</literal> group of options controls the download of " "packages as well as the various \"acquire methods\" responsible for the " @@ -3880,7 +3880,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:301 +#: apt.conf.5.xml:295 msgid "" "Security related option defaulting to true, as giving a Release file's " "validation an expiration date prevents replay attacks over a long timescale, " @@ -3893,7 +3893,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:314 +#: apt.conf.5.xml:308 msgid "" "Maximum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -3905,7 +3905,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:326 +#: apt.conf.5.xml:320 msgid "" "Minimum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -3917,7 +3917,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:338 +#: apt.conf.5.xml:332 msgid "" "Try to download deltas called <literal>PDiffs</literal> for indexes (like " "<filename>Packages</filename> files) instead of downloading whole ones. True " @@ -3925,7 +3925,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:341 +#: apt.conf.5.xml:335 msgid "" "Two sub-options to limit the use of PDiffs are also available: " "<literal>FileLimit</literal> can be used to specify a maximum number of " @@ -3936,7 +3936,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:351 +#: apt.conf.5.xml:345 msgid "" "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" "literal> or <literal>access</literal> which determines how APT parallelizes " @@ -3946,21 +3946,21 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:359 +#: apt.conf.5.xml:353 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:364 +#: apt.conf.5.xml:358 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:369 +#: apt.conf.5.xml:363 msgid "" "<literal>http::Proxy</literal> sets the default proxy to use for HTTP URIs. " "It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</" @@ -3972,7 +3972,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:377 +#: apt.conf.5.xml:371 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy not to use its cached " @@ -3984,14 +3984,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:387 apt.conf.5.xml:475 +#: apt.conf.5.xml:381 apt.conf.5.xml:469 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method; this value applies to the connection as well as the data timeout." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:390 +#: apt.conf.5.xml:384 msgid "" "The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e." @@ -4003,14 +4003,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:397 +#: apt.conf.5.xml:391 msgid "" "<literal>Acquire::http::AllowRedirect</literal> controls whether APT will " "follow redirects, which is enabled by default." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:400 +#: apt.conf.5.xml:394 msgid "" "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" "literal> which accepts integer values in kilobytes per second. The default " @@ -4020,7 +4020,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:407 +#: apt.conf.5.xml:401 msgid "" "<literal>Acquire::http::User-Agent</literal> can be used to set a different " "User-Agent for the http download method as some proxies allow access for " @@ -4028,7 +4028,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:411 +#: apt.conf.5.xml:405 msgid "" "<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify " "an external command to discover the http proxy to use. Apt expects the " @@ -4042,7 +4042,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:429 +#: apt.conf.5.xml:423 msgid "" "The <literal>Cache-control</literal>, <literal>Timeout</literal>, " "<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and " @@ -4053,7 +4053,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:437 +#: apt.conf.5.xml:431 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is the " @@ -4075,7 +4075,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:458 +#: apt.conf.5.xml:452 msgid "" "<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. " "It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</" @@ -4094,7 +4094,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:478 +#: apt.conf.5.xml:472 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on; it works in nearly every environment. However, " @@ -4104,7 +4104,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:485 +#: apt.conf.5.xml:479 msgid "" "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" "envar> environment variable to an HTTP URL - see the discussion of the http " @@ -4113,7 +4113,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:490 +#: apt.conf.5.xml:484 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@ -4123,13 +4123,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:504 +#: apt.conf.5.xml:498 #, no-wrap msgid "/cdrom/::Mount \"foo\";" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:499 +#: apt.conf.5.xml:493 msgid "" "For URIs using the <literal>cdrom</literal> method, the only configurable " "option is the mount point, <literal>cdrom::Mount</literal>, which must be " @@ -4142,20 +4142,20 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:512 +#: apt.conf.5.xml:506 msgid "" "For GPGV URIs the only configurable option is <literal>gpgv::Options</" "literal>, which passes additional parameters to gpgv." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:523 +#: apt.conf.5.xml:517 #, no-wrap msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:518 +#: apt.conf.5.xml:512 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " @@ -4167,19 +4167,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:528 +#: apt.conf.5.xml:522 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "Acquire::CompressionTypes::Order:: \"gz\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:531 +#: apt.conf.5.xml:525 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:524 +#: apt.conf.5.xml:518 msgid "" "Also, the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " @@ -4197,13 +4197,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:538 +#: apt.conf.5.xml:532 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:533 +#: apt.conf.5.xml:527 msgid "" "Note that the <literal>Dir::Bin::<replaceable>Methodname</replaceable></" "literal> will be checked at run time. If this option has been set, the " @@ -4218,7 +4218,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:543 +#: apt.conf.5.xml:537 msgid "" "The special type <literal>uncompressed</literal> can be used to give " "uncompressed files a preference, but note that most archives don't provide " @@ -4226,7 +4226,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:550 +#: apt.conf.5.xml:544 msgid "" "When downloading <literal>gzip</literal> compressed indexes (Packages, " "Sources, or Translations), keep them gzip compressed locally instead of " @@ -4235,7 +4235,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:558 +#: apt.conf.5.xml:552 msgid "" "The Languages subsection controls which <filename>Translation</filename> " "files are downloaded and in which order APT tries to display the description-" @@ -4247,13 +4247,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting> -#: apt.conf.5.xml:575 +#: apt.conf.5.xml:569 #, no-wrap msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:563 +#: apt.conf.5.xml:557 msgid "" "The default list includes \"environment\" and \"en\". " "\"<literal>environment</literal>\" has a special meaning here: it will be " @@ -4275,7 +4275,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:576 +#: apt.conf.5.xml:570 msgid "" "Note: To prevent problems resulting from APT being executed in different " "environments (e.g. by different users or by other programs) all Translation " @@ -4284,22 +4284,22 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:585 +#: apt.conf.5.xml:579 msgid "When downloading, force to use only the IPv4 protocol." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:591 +#: apt.conf.5.xml:585 msgid "When downloading, force to use only the IPv6 protocol." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:598 +#: apt.conf.5.xml:592 msgid "Directories" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:600 +#: apt.conf.5.xml:594 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@ -4311,7 +4311,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:607 +#: apt.conf.5.xml:601 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@ -4325,7 +4325,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:617 +#: apt.conf.5.xml:611 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -4335,7 +4335,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:623 +#: apt.conf.5.xml:617 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -4343,7 +4343,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:627 +#: apt.conf.5.xml:621 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@ -4354,7 +4354,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:635 +#: apt.conf.5.xml:629 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -4367,7 +4367,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:648 +#: apt.conf.5.xml:642 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -4378,12 +4378,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:657 +#: apt.conf.5.xml:651 msgid "APT in DSelect" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:659 +#: apt.conf.5.xml:653 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -4391,7 +4391,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:664 +#: apt.conf.5.xml:658 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@ -4404,40 +4404,40 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:678 +#: apt.conf.5.xml:672 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:683 +#: apt.conf.5.xml:677 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:688 +#: apt.conf.5.xml:682 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:694 +#: apt.conf.5.xml:688 msgid "How APT calls &dpkg;" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:695 +#: apt.conf.5.xml:689 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:700 +#: apt.conf.5.xml:694 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -4445,7 +4445,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:706 +#: apt.conf.5.xml:700 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4454,7 +4454,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:713 +#: apt.conf.5.xml:707 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4465,7 +4465,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:720 +#: apt.conf.5.xml:714 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@ -4474,7 +4474,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:725 +#: apt.conf.5.xml:719 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -4485,7 +4485,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:732 +#: apt.conf.5.xml:726 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</" @@ -4496,26 +4496,26 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:742 +#: apt.conf.5.xml:736 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:747 +#: apt.conf.5.xml:741 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:746 msgid "dpkg trigger usage (and related options)" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:753 +#: apt.conf.5.xml:747 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -4530,7 +4530,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:768 +#: apt.conf.5.xml:762 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -4544,7 +4544,7 @@ msgstr "" "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:762 +#: apt.conf.5.xml:756 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -4558,7 +4558,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:775 +#: apt.conf.5.xml:769 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -4571,7 +4571,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:783 +#: apt.conf.5.xml:777 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@ -4588,7 +4588,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:798 +#: apt.conf.5.xml:792 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@ -4599,7 +4599,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:805 +#: apt.conf.5.xml:799 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -4609,7 +4609,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:818 +#: apt.conf.5.xml:812 #, no-wrap msgid "" "OrderList::Score {\n" @@ -4627,7 +4627,7 @@ msgstr "" "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:811 +#: apt.conf.5.xml:805 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -4641,12 +4641,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:831 +#: apt.conf.5.xml:825 msgid "Periodic and Archives options" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:832 +#: apt.conf.5.xml:826 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -4655,13 +4655,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:840 +#: apt.conf.5.xml:834 #, fuzzy msgid "Debug options" msgstr "opcje" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:842 +#: apt.conf.5.xml:836 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -4672,7 +4672,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:853 +#: apt.conf.5.xml:847 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -4680,7 +4680,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:861 +#: apt.conf.5.xml:855 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -4688,7 +4688,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:870 +#: apt.conf.5.xml:864 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -4698,7 +4698,7 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:878 +#: apt.conf.5.xml:872 #, fuzzy msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " @@ -4708,59 +4708,59 @@ msgstr "" "in CDROM IDs." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:888 +#: apt.conf.5.xml:882 msgid "A full list of debugging options to apt follows." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:897 +#: apt.conf.5.xml:891 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:908 +#: apt.conf.5.xml:902 msgid "Print information related to downloading packages using FTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:919 +#: apt.conf.5.xml:913 msgid "Print information related to downloading packages using HTTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:930 +#: apt.conf.5.xml:924 msgid "Print information related to downloading packages using HTTPS." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:941 +#: apt.conf.5.xml:935 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:952 +#: apt.conf.5.xml:946 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:962 +#: apt.conf.5.xml:956 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:972 +#: apt.conf.5.xml:966 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:982 +#: apt.conf.5.xml:976 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -4768,53 +4768,53 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:993 +#: apt.conf.5.xml:987 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1005 +#: apt.conf.5.xml:999 msgid "Log when items are added to or removed from the global download queue." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1015 +#: apt.conf.5.xml:1009 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1025 +#: apt.conf.5.xml:1019 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1037 +#: apt.conf.5.xml:1031 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1048 +#: apt.conf.5.xml:1042 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1059 +#: apt.conf.5.xml:1053 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1069 +#: apt.conf.5.xml:1063 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -4824,7 +4824,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1083 +#: apt.conf.5.xml:1077 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -4842,46 +4842,46 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1104 +#: apt.conf.5.xml:1098 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1115 +#: apt.conf.5.xml:1109 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1126 +#: apt.conf.5.xml:1120 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1138 +#: apt.conf.5.xml:1132 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1149 +#: apt.conf.5.xml:1143 msgid "Output the priority of each package list on startup." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1159 +#: apt.conf.5.xml:1153 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1170 +#: apt.conf.5.xml:1164 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -4889,14 +4889,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1182 +#: apt.conf.5.xml:1176 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1192 +#: apt.conf.5.xml:1186 msgid "" "Display the external commands that are called by apt hooks. This includes e." "g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " @@ -4904,13 +4904,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1216 apt_preferences.5.xml:547 sources.list.5.xml:239 -#: apt-ftparchive.1.xml:598 +#: apt.conf.5.xml:1210 apt_preferences.5.xml:541 sources.list.5.xml:233 +#: apt-ftparchive.1.xml:592 msgid "Examples" msgstr "Przykłady" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1217 +#: apt.conf.5.xml:1211 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -4918,17 +4918,17 @@ msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1229 +#: apt.conf.5.xml:1223 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt_preferences.5.xml:34 +#: apt_preferences.5.xml:28 msgid "Preference control file for APT" msgstr "Plik kontrolny preferencji APT" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:39 +#: apt_preferences.5.xml:33 msgid "" "The APT preferences file <filename>/etc/apt/preferences</filename> and the " "fragment files in the <filename>/etc/apt/preferences.d/</filename> folder " @@ -4940,7 +4940,7 @@ msgstr "" "do określania wersji pakietów wybieranych do instalacji." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:44 +#: apt_preferences.5.xml:38 msgid "" "Several versions of a package may be available for installation when the " "&sources-list; file contains references to more than one distribution (for " @@ -4962,7 +4962,7 @@ msgstr "" "zainstalowania." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:54 +#: apt_preferences.5.xml:48 msgid "" "Several instances of the same version of a package may be available when the " "&sources-list; file contains references to more than one source. In this " @@ -4977,7 +4977,7 @@ msgstr "" "wybór instancji, ale na wybór wersji." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:61 +#: apt_preferences.5.xml:55 msgid "" "Preferences are a strong power in the hands of a system administrator but " "they can become also their biggest nightmare if used without care! APT will " @@ -5002,7 +5002,7 @@ msgstr "" "oczekiwało. Ostrzegamy!" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:72 +#: apt_preferences.5.xml:66 msgid "" "Note that the files in the <filename>/etc/apt/preferences.d</filename> " "directory are parsed in alphanumeric ascending order and need to obey the " @@ -5025,24 +5025,24 @@ msgstr "" "komunikat." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:81 +#: apt_preferences.5.xml:75 msgid "APT's Default Priority Assignments" msgstr "Domyślne przypisania priorytetów APT" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:96 +#: apt_preferences.5.xml:90 #, no-wrap msgid "<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n" msgstr "<command>apt-get install -t testing <replaceable>jakiś-pakiet</replaceable></command>\n" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:99 +#: apt_preferences.5.xml:93 #, no-wrap msgid "APT::Default-Release \"stable\";\n" msgstr "APT::Default-Release \"stable\";\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:83 +#: apt_preferences.5.xml:77 msgid "" "If there is no preferences file or if there is no entry in the file that " "applies to a particular version then the priority assigned to that version " @@ -5070,7 +5070,7 @@ msgstr "" "\"0\"/> <placeholder type=\"programlisting\" id=\"1\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:103 +#: apt_preferences.5.xml:97 msgid "" "If the target release has been specified then APT uses the following " "algorithm to set the priorities of the versions of a package. Assign:" @@ -5079,12 +5079,12 @@ msgstr "" "do ustawiania priorytetów wersjom pakietu. Przypisuje:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:108 +#: apt_preferences.5.xml:102 msgid "priority 1" msgstr "priorytet 1" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:109 +#: apt_preferences.5.xml:103 msgid "" "to the versions coming from archives which in their <filename>Release</" "filename> files are marked as \"NotAutomatic: yes\" but <emphasis>not</" @@ -5097,12 +5097,12 @@ msgstr "" "<literal>experimental</literal> Debiana." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:115 +#: apt_preferences.5.xml:109 msgid "priority 100" msgstr "priorytet 100" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:116 +#: apt_preferences.5.xml:110 msgid "" "to the version that is already installed (if any) and to the versions coming " "from archives which in their <filename>Release</filename> files are marked " @@ -5116,30 +5116,30 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:123 +#: apt_preferences.5.xml:117 msgid "priority 500" msgstr "priorytet 500" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:124 +#: apt_preferences.5.xml:118 msgid "" "to the versions that are not installed and do not belong to the target " "release." msgstr "wersjom niezainstalowanym i nienależącym do wydania docelowego." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:128 +#: apt_preferences.5.xml:122 msgid "priority 990" msgstr "priorytet 990" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:129 +#: apt_preferences.5.xml:123 msgid "" "to the versions that are not installed and belong to the target release." msgstr "wersjom niezainstalowanym i należącym do wydania docelowego." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:134 +#: apt_preferences.5.xml:128 msgid "" "If the target release has not been specified then APT simply assigns " "priority 100 to all installed package versions and priority 500 to all " @@ -5156,7 +5156,7 @@ msgstr "" "100, jeśli dodatkowo są oznaczone jako \"ButAutomaticUpgrades: yes\"." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:141 +#: apt_preferences.5.xml:135 msgid "" "APT then applies the following rules, listed in order of precedence, to " "determine which version of a package to install." @@ -5165,7 +5165,7 @@ msgstr "" "następujące reguły wymienione w kolejności, w jakiej są stosowane." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:144 +#: apt_preferences.5.xml:138 msgid "" "Never downgrade unless the priority of an available version exceeds 1000. " "(\"Downgrading\" is installing a less recent version of a package in place " @@ -5180,12 +5180,12 @@ msgstr "" "Instalowanie wcześniejszych wersji pakietów może być ryzykowną operacją)." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:150 +#: apt_preferences.5.xml:144 msgid "Install the highest priority version." msgstr "Instaluje wersję o najwyższym priorytecie." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:151 +#: apt_preferences.5.xml:145 msgid "" "If two or more versions have the same priority, install the most recent one " "(that is, the one with the higher version number)." @@ -5194,7 +5194,7 @@ msgstr "" "wersja nowsza (czyli z większym numerem wersji)." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:154 +#: apt_preferences.5.xml:148 msgid "" "If two or more versions have the same priority and version number but either " "the packages differ in some of their metadata or the <literal>--reinstall</" @@ -5206,7 +5206,7 @@ msgstr "" "niezainstalowany." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:160 +#: apt_preferences.5.xml:154 msgid "" "In a typical situation, the installed version of a package (priority 100) " "is not as recent as one of the versions available from the sources listed in " @@ -5221,7 +5221,7 @@ msgstr "" "upgrade</command> zaktualizują ten pakiet." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:167 +#: apt_preferences.5.xml:161 msgid "" "More rarely, the installed version of a package is <emphasis>more</emphasis> " "recent than any of the other available versions. The package will not be " @@ -5235,7 +5235,7 @@ msgstr "" "wersją." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:172 +#: apt_preferences.5.xml:166 msgid "" "Sometimes the installed version of a package is more recent than the version " "belonging to the target release, but not as recent as a version belonging to " @@ -5253,12 +5253,12 @@ msgstr "" "wersji ma większy priorytet niż wersja zainstalowana." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:181 +#: apt_preferences.5.xml:175 msgid "The Effect of APT Preferences" msgstr "Efekt stosowania preferencji APT" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:183 +#: apt_preferences.5.xml:177 msgid "" "The APT preferences file allows the system administrator to control the " "assignment of priorities. The file consists of one or more multi-line " @@ -5271,7 +5271,7 @@ msgstr "" "przyjmować jedną z dwóch postaci: szczegółową i ogólną." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:189 +#: apt_preferences.5.xml:183 msgid "" "The specific form assigns a priority (a \"Pin-Priority\") to one or more " "specified packages with a specified version or version range. For example, " @@ -5288,7 +5288,7 @@ msgstr "" "rozdzielając je od siebie spacjami." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:196 +#: apt_preferences.5.xml:190 #, no-wrap msgid "" "Package: perl\n" @@ -5300,7 +5300,7 @@ msgstr "" "Pin-Priority: 1001\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:202 +#: apt_preferences.5.xml:196 msgid "" "The general form assigns a priority to all of the package versions in a " "given distribution (that is, to all the versions of packages that are listed " @@ -5314,7 +5314,7 @@ msgstr "" "strony internetowej identyfikowanej przez pełną nazwę domenową strony." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:208 +#: apt_preferences.5.xml:202 msgid "" "This general-form entry in the APT preferences file applies only to groups " "of packages. For example, the following record assigns a high priority to " @@ -5325,7 +5325,7 @@ msgstr "" "wszystkim wersjom pakietów dostępnych na lokalnym komputerze." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:213 +#: apt_preferences.5.xml:207 #, no-wrap msgid "" "Package: *\n" @@ -5337,7 +5337,7 @@ msgstr "" "Pin-Priority: 999\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:218 +#: apt_preferences.5.xml:212 msgid "" "A note of caution: the keyword used here is \"<literal>origin</literal>\" " "which can be used to match a hostname. The following record will assign a " @@ -5350,7 +5350,7 @@ msgstr "" "identyfikowanym przez nazwę komputera \"ftp.de.debian.org\"." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:222 +#: apt_preferences.5.xml:216 #, no-wrap msgid "" "Package: *\n" @@ -5362,7 +5362,7 @@ msgstr "" "Pin-Priority: 999\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:226 +#: apt_preferences.5.xml:220 msgid "" "This should <emphasis>not</emphasis> be confused with the Origin of a " "distribution as specified in a <filename>Release</filename> file. What " @@ -5377,7 +5377,7 @@ msgstr "" "lub \"Ximian\"." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:231 +#: apt_preferences.5.xml:225 msgid "" "The following record assigns a low priority to all package versions " "belonging to any distribution whose Archive name is \"<literal>unstable</" @@ -5388,7 +5388,7 @@ msgstr "" "\"<literal>unstable</literal>\"." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:235 +#: apt_preferences.5.xml:229 #, no-wrap msgid "" "Package: *\n" @@ -5400,7 +5400,7 @@ msgstr "" "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:240 +#: apt_preferences.5.xml:234 msgid "" "The following record assigns a high priority to all package versions " "belonging to any distribution whose Codename is \"<literal>&testing-codename;" @@ -5411,7 +5411,7 @@ msgstr "" "\"<literal>&testing-codename;</literal>\"." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:244 +#: apt_preferences.5.xml:238 #, no-wrap msgid "" "Package: *\n" @@ -5423,7 +5423,7 @@ msgstr "" "Pin-Priority: 900\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:249 +#: apt_preferences.5.xml:243 msgid "" "The following record assigns a high priority to all package versions " "belonging to any release whose Archive name is \"<literal>stable</literal>\" " @@ -5436,7 +5436,7 @@ msgstr "" "\"<literal>&stable-version;</literal>\"." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:254 +#: apt_preferences.5.xml:248 #, no-wrap msgid "" "Package: *\n" @@ -5448,12 +5448,12 @@ msgstr "" "Pin-Priority: 500\n" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:264 +#: apt_preferences.5.xml:258 msgid "Regular expressions and &glob; syntax" msgstr "Składnia wyrażeń regularnych i &glob;" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:266 +#: apt_preferences.5.xml:260 msgid "" "APT also supports pinning by &glob; expressions, and regular expressions " "surrounded by slashes. For example, the following example assigns the " @@ -5469,7 +5469,7 @@ msgstr "" "POSIX otoczone ukośnikami)." #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:275 +#: apt_preferences.5.xml:269 #, no-wrap msgid "" "Package: gnome* /kde/\n" @@ -5481,7 +5481,7 @@ msgstr "" "Pin-Priority: 500\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:281 +#: apt_preferences.5.xml:275 msgid "" "The rule for those expressions is that they can occur anywhere where a " "string can occur. Thus, the following pin assigns the priority 990 to all " @@ -5492,7 +5492,7 @@ msgstr "" "pakietom z wydania o nazwie zaczynającej się od &ubuntu-codename;." #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:287 +#: apt_preferences.5.xml:281 #, no-wrap msgid "" "Package: *\n" @@ -5504,7 +5504,7 @@ msgstr "" "Pin-Priority: 990\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:293 +#: apt_preferences.5.xml:287 msgid "" "If a regular expression occurs in a <literal>Package</literal> field, the " "behavior is the same as if this regular expression were replaced with a list " @@ -5523,12 +5523,12 @@ msgstr "" "<literal>Package</literal> nie jest uznawany za wyrażenie &glob;." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:309 +#: apt_preferences.5.xml:303 msgid "How APT Interprets Priorities" msgstr "Jak APT interpretuje priorytety" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:312 +#: apt_preferences.5.xml:306 msgid "" "Priorities (P) assigned in the APT preferences file must be positive or " "negative integers. They are interpreted as follows (roughly speaking):" @@ -5538,12 +5538,12 @@ msgstr "" "rzecz biorąc):" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:317 +#: apt_preferences.5.xml:311 msgid "P >= 1000" msgstr "P >= 1000" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:318 +#: apt_preferences.5.xml:312 msgid "" "causes a version to be installed even if this constitutes a downgrade of the " "package" @@ -5552,12 +5552,12 @@ msgstr "" "zastąpienie pakietu jego wcześniejszą wersją." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:322 +#: apt_preferences.5.xml:316 msgid "990 <= P < 1000" msgstr "990 <= P < 1000" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:323 +#: apt_preferences.5.xml:317 msgid "" "causes a version to be installed even if it does not come from the target " "release, unless the installed version is more recent" @@ -5566,12 +5566,12 @@ msgstr "" "wydania docelowego, chyba że zainstalowana wersja jest nowsza." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:328 +#: apt_preferences.5.xml:322 msgid "500 <= P < 990" msgstr "500 <= P < 990" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:329 +#: apt_preferences.5.xml:323 msgid "" "causes a version to be installed unless there is a version available " "belonging to the target release or the installed version is more recent" @@ -5581,12 +5581,12 @@ msgstr "" "zainstalowana." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:334 +#: apt_preferences.5.xml:328 msgid "100 <= P < 500" msgstr "100 <= P < 500" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:335 +#: apt_preferences.5.xml:329 msgid "" "causes a version to be installed unless there is a version available " "belonging to some other distribution or the installed version is more recent" @@ -5595,12 +5595,12 @@ msgstr "" "należąca do innej dystrybucji lub nowsza wersja jest zainstalowana" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:340 +#: apt_preferences.5.xml:334 msgid "0 < P < 100" msgstr "0 < P < 100" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:341 +#: apt_preferences.5.xml:335 msgid "" "causes a version to be installed only if there is no installed version of " "the package" @@ -5609,17 +5609,17 @@ msgstr "" "pakietu nie jest jeszcze zainstalowana" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:345 +#: apt_preferences.5.xml:339 msgid "P < 0" msgstr "P < 0" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:346 +#: apt_preferences.5.xml:340 msgid "prevents the version from being installed" msgstr "zapobiega instalowaniu wersji" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:351 +#: apt_preferences.5.xml:345 msgid "" "If any specific-form records match an available package version then the " "first such record determines the priority of the package version. Failing " @@ -5633,7 +5633,7 @@ msgstr "" "określany na podstawie pierwszego z takich rekordów." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:357 +#: apt_preferences.5.xml:351 msgid "" "For example, suppose the APT preferences file contains the three records " "presented earlier:" @@ -5642,7 +5642,7 @@ msgstr "" "wcześniej rekordy:" #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:361 +#: apt_preferences.5.xml:355 #, no-wrap msgid "" "Package: perl\n" @@ -5670,12 +5670,12 @@ msgstr "" "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:374 +#: apt_preferences.5.xml:368 msgid "Then:" msgstr "Wtedy:" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:376 +#: apt_preferences.5.xml:370 msgid "" "The most recent available version of the <literal>perl</literal> package " "will be installed, so long as that version's version number begins with " @@ -5691,7 +5691,7 @@ msgstr "" "&good-perl;*." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:381 +#: apt_preferences.5.xml:375 msgid "" "A version of any package other than <literal>perl</literal> that is " "available from the local system has priority over other versions, even " @@ -5702,7 +5702,7 @@ msgstr "" "pakietu, włączając w to wersję należącą do wydania docelowego." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:385 +#: apt_preferences.5.xml:379 msgid "" "A version of a package whose origin is not the local system but some other " "site listed in &sources-list; and which belongs to an <literal>unstable</" @@ -5716,12 +5716,12 @@ msgstr "" "nie jest jeszcze zainstalowana." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:395 +#: apt_preferences.5.xml:389 msgid "Determination of Package Version and Distribution Properties" msgstr "Określanie wersji pakietu i właściwości dystrybucji" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:397 +#: apt_preferences.5.xml:391 msgid "" "The locations listed in the &sources-list; file should provide " "<filename>Packages</filename> and <filename>Release</filename> files to " @@ -5732,7 +5732,7 @@ msgstr "" "pakiety dostępne w danej lokalizacji." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:401 +#: apt_preferences.5.xml:395 msgid "" "The <filename>Packages</filename> file is normally found in the directory " "<filename>.../dists/<replaceable>dist-name</replaceable>/" @@ -5751,27 +5751,27 @@ msgstr "" "priorytetów APT bierze pod uwagę tylko dwie linie z każdego rekordu:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:409 +#: apt_preferences.5.xml:403 msgid "the <literal>Package:</literal> line" msgstr "linia <literal>Package:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:410 +#: apt_preferences.5.xml:404 msgid "gives the package name" msgstr "podaje nazwę pakietu" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:413 apt_preferences.5.xml:463 +#: apt_preferences.5.xml:407 apt_preferences.5.xml:457 msgid "the <literal>Version:</literal> line" msgstr "linia <literal>Version:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:414 +#: apt_preferences.5.xml:408 msgid "gives the version number for the named package" msgstr "podaje numer wersji danego pakietu" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:419 +#: apt_preferences.5.xml:413 msgid "" "The <filename>Release</filename> file is normally found in the directory " "<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for " @@ -5794,12 +5794,12 @@ msgstr "" "priorytetów APT:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:430 +#: apt_preferences.5.xml:424 msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" msgstr "linia <literal>Archive:</literal> lub <literal>Suite:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:431 +#: apt_preferences.5.xml:425 msgid "" "names the archive to which all the packages in the directory tree belong. " "For example, the line \"Archive: stable\" or \"Suite: stable\" specifies " @@ -5816,18 +5816,18 @@ msgstr "" "następujący sposób:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:441 +#: apt_preferences.5.xml:435 #, no-wrap msgid "Pin: release a=stable\n" msgstr "Pin: release a=stable\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:447 +#: apt_preferences.5.xml:441 msgid "the <literal>Codename:</literal> line" msgstr "linia <literal>Codename:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:448 +#: apt_preferences.5.xml:442 msgid "" "names the codename to which all the packages in the directory tree belong. " "For example, the line \"Codename: &testing-codename;\" specifies that all of " @@ -5844,13 +5844,13 @@ msgstr "" "następujący sposób:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:457 +#: apt_preferences.5.xml:451 #, no-wrap msgid "Pin: release n=&testing-codename;\n" msgstr "Pin: release n=&testing-codename;\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:464 +#: apt_preferences.5.xml:458 msgid "" "names the release version. For example, the packages in the tree might " "belong to Debian release version &stable-version;. Note that there is " @@ -5867,7 +5867,7 @@ msgstr "" "sposób:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:473 +#: apt_preferences.5.xml:467 #, no-wrap msgid "" "Pin: release v=&stable-version;\n" @@ -5879,12 +5879,12 @@ msgstr "" "Pin: release &stable-version;\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:482 +#: apt_preferences.5.xml:476 msgid "the <literal>Component:</literal> line" msgstr "linia <literal>Component:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:483 +#: apt_preferences.5.xml:477 msgid "" "names the licensing component associated with the packages in the directory " "tree of the <filename>Release</filename> file. For example, the line " @@ -5902,18 +5902,18 @@ msgstr "" "następujący sposób:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:492 +#: apt_preferences.5.xml:486 #, no-wrap msgid "Pin: release c=main\n" msgstr "Pin: release c=main\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:498 +#: apt_preferences.5.xml:492 msgid "the <literal>Origin:</literal> line" msgstr "linia <literal>Origin:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:499 +#: apt_preferences.5.xml:493 msgid "" "names the originator of the packages in the directory tree of the " "<filename>Release</filename> file. Most commonly, this is <literal>Debian</" @@ -5925,18 +5925,18 @@ msgstr "" "można podać w pliku preferencji APT w następujący sposób:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:505 +#: apt_preferences.5.xml:499 #, no-wrap msgid "Pin: release o=Debian\n" msgstr "Pin: release o=Debian\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:511 +#: apt_preferences.5.xml:505 msgid "the <literal>Label:</literal> line" msgstr "linia <literal>Label:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:512 +#: apt_preferences.5.xml:506 msgid "" "names the label of the packages in the directory tree of the " "<filename>Release</filename> file. Most commonly, this is <literal>Debian</" @@ -5948,13 +5948,13 @@ msgstr "" "podać w pliku preferencji APT w następujący sposób:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:518 +#: apt_preferences.5.xml:512 #, no-wrap msgid "Pin: release l=Debian\n" msgstr "Pin: release l=Debian\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:525 +#: apt_preferences.5.xml:519 msgid "" "All of the <filename>Packages</filename> and <filename>Release</filename> " "files retrieved from locations listed in the &sources-list; file are stored " @@ -5979,12 +5979,12 @@ msgstr "" "dystrybucji <literal>unstable</literal> ." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:538 +#: apt_preferences.5.xml:532 msgid "Optional Lines in an APT Preferences Record" msgstr "Opcjonalne linie w rekordzie preferencji APT" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:540 +#: apt_preferences.5.xml:534 msgid "" "Each record in the APT preferences file can optionally begin with one or " "more lines beginning with the word <literal>Explanation:</literal>. This " @@ -5995,12 +5995,12 @@ msgstr "" "literal> (tj. objaśnienie). Pozwala to na dodawanie komentarzy do rekordów." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:549 +#: apt_preferences.5.xml:543 msgid "Tracking Stable" msgstr "Śledzenie dystrybucji stabilnej" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:557 +#: apt_preferences.5.xml:551 #, no-wrap msgid "" "Explanation: Uninstall or do not install any Debian-originated\n" @@ -6024,7 +6024,7 @@ msgstr "" "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:551 +#: apt_preferences.5.xml:545 msgid "" "The following APT preferences file will cause APT to assign a priority " "higher than the default (500) to all package versions belonging to a " @@ -6039,8 +6039,8 @@ msgstr "" "type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:574 apt_preferences.5.xml:620 -#: apt_preferences.5.xml:678 +#: apt_preferences.5.xml:568 apt_preferences.5.xml:614 +#: apt_preferences.5.xml:672 #, no-wrap msgid "" "apt-get install <replaceable>package-name</replaceable>\n" @@ -6052,7 +6052,7 @@ msgstr "" "apt-get dist-upgrade\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:569 +#: apt_preferences.5.xml:563 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest " @@ -6065,13 +6065,13 @@ msgstr "" "type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:586 +#: apt_preferences.5.xml:580 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/testing\n" msgstr "apt-get install <replaceable>pakiet</replaceable>/testing\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:580 +#: apt_preferences.5.xml:574 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>testing</literal> distribution; the package " @@ -6084,12 +6084,12 @@ msgstr "" "<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:592 +#: apt_preferences.5.xml:586 msgid "Tracking Testing or Unstable" msgstr "Śledzenie dystrybucji testowej lub niestabilnej" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:601 +#: apt_preferences.5.xml:595 #, no-wrap msgid "" "Package: *\n" @@ -6117,7 +6117,7 @@ msgstr "" "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:594 +#: apt_preferences.5.xml:588 msgid "" "The following APT preferences file will cause APT to assign a high priority " "to package versions from the <literal>testing</literal> distribution, a " @@ -6134,7 +6134,7 @@ msgstr "" "id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:615 +#: apt_preferences.5.xml:609 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest " @@ -6147,13 +6147,13 @@ msgstr "" "type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:635 +#: apt_preferences.5.xml:629 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/unstable\n" msgstr "apt-get install <replaceable>pakiet</replaceable>/unstable\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:626 +#: apt_preferences.5.xml:620 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>unstable</literal> distribution. " @@ -6173,12 +6173,12 @@ msgstr "" "\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:642 +#: apt_preferences.5.xml:636 msgid "Tracking the evolution of a codename release" msgstr "Śledzenie ewolucji wydania o danej nazwie kodowej" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:656 +#: apt_preferences.5.xml:650 #, no-wrap msgid "" "Explanation: Uninstall or do not install any Debian-originated package versions\n" @@ -6212,7 +6212,7 @@ msgstr "" "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:644 +#: apt_preferences.5.xml:638 msgid "" "The following APT preferences file will cause APT to assign a priority " "higher than the default (500) to all package versions belonging to a " @@ -6238,7 +6238,7 @@ msgstr "" "\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:673 +#: apt_preferences.5.xml:667 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest version(s) in " @@ -6251,13 +6251,13 @@ msgstr "" "literal>. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:693 +#: apt_preferences.5.xml:687 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/sid\n" msgstr "apt-get install <replaceable>pakiet</replaceable>/sid\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:684 +#: apt_preferences.5.xml:678 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>sid</literal> distribution. Thereafter, " @@ -6277,17 +6277,17 @@ msgstr "" "id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:708 +#: apt_preferences.5.xml:702 msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;" msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;" #. type: Content of: <refentry><refnamediv><refpurpose> -#: sources.list.5.xml:35 +#: sources.list.5.xml:29 msgid "List of configured APT data sources" msgstr "Lista skonfigurowanych źródeł danych APT" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:40 +#: sources.list.5.xml:34 msgid "" "The source list <filename>/etc/apt/sources.list</filename> is designed to " "support any number of active sources and a variety of source media. The file " @@ -6305,7 +6305,7 @@ msgstr "" "programu użytkowego będącego interfejsem do systemu APT)." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:47 +#: sources.list.5.xml:41 msgid "" "Each line specifying a source starts with type (e.g. <literal>deb-src</" "literal>) followed by options and arguments for this type. Individual " @@ -6320,12 +6320,12 @@ msgstr "" "dalsza część linii stanowi komentarz." #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:55 +#: sources.list.5.xml:49 msgid "sources.list.d" msgstr "sources.list.d" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:56 +#: sources.list.5.xml:50 msgid "" "The <filename>/etc/apt/sources.list.d</filename> directory provides a way to " "add sources.list entries in separate files. The format is the same as for " @@ -6347,12 +6347,12 @@ msgstr "" "wypisze odpowiedni komunikat." #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:67 +#: sources.list.5.xml:61 msgid "The deb and deb-src types" msgstr "Typy deb i deb-src" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:68 +#: sources.list.5.xml:62 msgid "" "The <literal>deb</literal> type references a typical two-level Debian " "archive, <filename>distribution/component</filename>. The " @@ -6378,7 +6378,7 @@ msgstr "" "źródłowych." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:79 +#: sources.list.5.xml:73 msgid "" "The format for a <filename>sources.list</filename> entry using the " "<literal>deb</literal> and <literal>deb-src</literal> types is:" @@ -6387,14 +6387,14 @@ msgstr "" "<literal>deb</literal> i <literal>deb-src</literal> jest następujący:" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:82 +#: sources.list.5.xml:76 #, fuzzy, no-wrap #| msgid "deb [ options ] uri distribution [component1] [component2] [...]" msgid "deb [ options ] uri suite [component1] [component2] [...]" msgstr "deb [ opcje ] uri dystrybucja [komponent1] [komponent2] [...]" #. type: Content of: <refentry><refsect1><para><literallayout> -#: sources.list.5.xml:86 +#: sources.list.5.xml:80 #, no-wrap msgid "" " Types: deb deb-src\n" @@ -6417,14 +6417,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:84 +#: sources.list.5.xml:78 msgid "" "Alternatively a rfc822 style format is also supported: <placeholder type=" "\"literallayout\" id=\"0\"/>" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:105 +#: sources.list.5.xml:99 #, fuzzy #| msgid "" #| "The URI for the <literal>deb</literal> type must specify the base of the " @@ -6455,7 +6455,7 @@ msgstr "" "<literal>komponent</literal>." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:114 +#: sources.list.5.xml:108 #, fuzzy #| msgid "" #| "<literal>distribution</literal> may also contain a variable, <literal>" @@ -6484,7 +6484,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:122 +#: sources.list.5.xml:116 #, fuzzy #| msgid "" #| "Since only one distribution can be specified per line it may be necessary " @@ -6525,7 +6525,7 @@ msgstr "" "sieciach o niskiej przepustowości łączy." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:136 +#: sources.list.5.xml:130 msgid "" "<literal>options</literal> is always optional and needs to be surrounded by " "square brackets. It can consist of multiple settings in the form " @@ -6542,7 +6542,7 @@ msgstr "" "wypisywania żadnego ostrzeżenia):" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:142 +#: sources.list.5.xml:136 msgid "" "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</" "replaceable>,…</literal> can be used to specify for which architectures " @@ -6557,7 +6557,7 @@ msgstr "" "w opcji konfiguracji <literal>APT::Architectures</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:146 +#: sources.list.5.xml:140 #, fuzzy #| msgid "" #| "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</" @@ -6578,7 +6578,7 @@ msgstr "" "w opcji konfiguracji <literal>APT::Architectures</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:149 +#: sources.list.5.xml:143 msgid "" "<literal>trusted=yes</literal> can be set to indicate that packages from " "this source are always authenticated even if the <filename>Release</" @@ -6596,7 +6596,7 @@ msgstr "" "niezautentykowane." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:156 +#: sources.list.5.xml:150 msgid "" "It is important to list sources in order of preference, with the most " "preferred source listed first. Typically this will result in sorting by " @@ -6610,12 +6610,12 @@ msgstr "" "komputerami w Internecie)." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:161 +#: sources.list.5.xml:155 msgid "Some examples:" msgstr "Kilka przykładów:" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:163 +#: sources.list.5.xml:157 #, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n" @@ -6627,17 +6627,17 @@ msgstr "" " " #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:169 +#: sources.list.5.xml:163 msgid "URI specification" msgstr "Określanie URI" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:171 +#: sources.list.5.xml:165 msgid "The currently recognized URI types are:" msgstr "Obecnie rozpoznawane są następujące typy URI:" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:175 +#: sources.list.5.xml:169 msgid "" "The file scheme allows an arbitrary directory in the file system to be " "considered an archive. This is useful for NFS mounts and local mirrors or " @@ -6648,7 +6648,7 @@ msgstr "" "archiwów." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:182 +#: sources.list.5.xml:176 msgid "" "The cdrom scheme allows APT to use a local CD-ROM drive with media swapping. " "Use the &apt-cdrom; program to create cdrom entries in the source list." @@ -6658,7 +6658,7 @@ msgstr "" "list." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:189 +#: sources.list.5.xml:183 msgid "" "The http scheme specifies an HTTP server for the archive. If an environment " "variable <envar>http_proxy</envar> is set with the format http://server:" @@ -6675,7 +6675,7 @@ msgstr "" "bezpieczny." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:200 +#: sources.list.5.xml:194 msgid "" "The ftp scheme specifies an FTP server for the archive. APT's FTP behavior " "is highly configurable; for more information see the &apt-conf; manual page. " @@ -6695,7 +6695,7 @@ msgstr "" "konfiguracyjnym serwery proxy używające HTTP zostaną zignorowane." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:212 +#: sources.list.5.xml:206 msgid "" "The copy scheme is identical to the file scheme except that packages are " "copied into the cache directory instead of used directly at their location. " @@ -6708,7 +6708,7 @@ msgstr "" "do skopiowania plików przy użyciu APT." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:219 +#: sources.list.5.xml:213 msgid "" "The rsh/ssh method invokes RSH/SSH to connect to a remote host and access " "the files as a given user. Prior configuration of rhosts or RSA keys is " @@ -6722,12 +6722,12 @@ msgstr "" "przetransferowania plików ze zdalnego komputera." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: sources.list.5.xml:226 +#: sources.list.5.xml:220 msgid "adding more recognizable URI types" msgstr "dodawanie innych rozpoznawanych typów URI" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:228 +#: sources.list.5.xml:222 msgid "" "APT can be extended with more methods shipped in other optional packages, " "which should follow the naming scheme <package>apt-transport-" @@ -6746,7 +6746,7 @@ msgstr "" "zobaczyć &apt-transport-debtorrent;." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:240 +#: sources.list.5.xml:234 msgid "" "Uses the archive stored locally (or NFS mounted) at /home/jason/debian for " "stable/main, stable/contrib, and stable/non-free." @@ -6755,36 +6755,36 @@ msgstr "" "debian dla zasobów stable/main, stable/contrib i stable/non-free." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:242 +#: sources.list.5.xml:236 #, no-wrap msgid "deb file:/home/jason/debian stable main contrib non-free" msgstr "deb file:/home/jason/debian stable main contrib non-free" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:244 +#: sources.list.5.xml:238 msgid "As above, except this uses the unstable (development) distribution." msgstr "" "Jak wyżej, z tą różnicą że używa dystrybucji niestabilnej (deweloperskiej)." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:245 +#: sources.list.5.xml:239 #, no-wrap msgid "deb file:/home/jason/debian unstable main contrib non-free" msgstr "deb file:/home/jason/debian unstable main contrib non-free" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:247 +#: sources.list.5.xml:241 msgid "Source line for the above" msgstr "Linie źródeł dla powyższego przykładu" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:248 +#: sources.list.5.xml:242 #, no-wrap msgid "deb-src file:/home/jason/debian unstable main contrib non-free" msgstr "deb-src file:/home/jason/debian unstable main contrib non-free" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:250 +#: sources.list.5.xml:244 msgid "" "The first line gets package information for the architectures in " "<literal>APT::Architectures</literal> while the second always retrieves " @@ -6795,7 +6795,7 @@ msgstr "" "literal> i <literal>armel</literal>." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:252 +#: sources.list.5.xml:246 #, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main\n" @@ -6805,7 +6805,7 @@ msgstr "" "deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:255 +#: sources.list.5.xml:249 msgid "" "Uses HTTP to access the archive at archive.debian.org, and uses only the " "hamm/main area." @@ -6814,13 +6814,13 @@ msgstr "" "org i dystrybucji hamm/main." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:257 +#: sources.list.5.xml:251 #, no-wrap msgid "deb http://archive.debian.org/debian-archive hamm main" msgstr "deb http://archive.debian.org/debian-archive hamm main" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:259 +#: sources.list.5.xml:253 msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the &stable-codename;/contrib area." @@ -6829,13 +6829,13 @@ msgstr "" "katalogu debian i używa tylko dystrybucji &stable-codename;/contrib." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:261 +#: sources.list.5.xml:255 #, no-wrap msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib" msgstr "deb ftp://ftp.debian.org/debian &stable-codename; contrib" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:263 +#: sources.list.5.xml:257 msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the unstable/contrib area. If this line appears as " @@ -6848,19 +6848,19 @@ msgstr "" "to pojedyncza sesja FTP będzie użyta w celu uzyskania dostępu do obu zasobów." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:267 +#: sources.list.5.xml:261 #, no-wrap msgid "deb ftp://ftp.debian.org/debian unstable contrib" msgstr "deb ftp://ftp.debian.org/debian unstable contrib" #. type: Content of: <refentry><refsect1><para><literallayout> -#: sources.list.5.xml:276 +#: sources.list.5.xml:270 #, no-wrap msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/" msgstr "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:269 +#: sources.list.5.xml:263 msgid "" "Uses HTTP to access the archive at ftp.tlh.debian.org, under the universe " "directory, and uses only files found under <filename>unstable/binary-i386</" @@ -6879,17 +6879,17 @@ msgstr "" "nie zawiera takiej struktury). <placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:281 +#: sources.list.5.xml:275 msgid "&apt-cache; &apt-conf;" msgstr "&apt-cache;, &apt-conf;" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt-extracttemplates.1.xml:28 apt-sortpkgs.1.xml:28 apt-ftparchive.1.xml:28 +#: apt-extracttemplates.1.xml:22 apt-sortpkgs.1.xml:22 apt-ftparchive.1.xml:22 msgid "1" msgstr "1" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-extracttemplates.1.xml:35 +#: apt-extracttemplates.1.xml:29 msgid "" "Utility to extract <command>debconf</command> config and templates from " "Debian packages" @@ -6898,7 +6898,7 @@ msgstr "" "<command>debconf</command>" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:41 +#: apt-extracttemplates.1.xml:35 msgid "" "<command>apt-extracttemplates</command> will take one or more Debian package " "files as input and write out (to a temporary directory) all associated " @@ -6912,12 +6912,12 @@ msgstr "" "te skrypty i szablony, zostanie wypisana linia w następującym formacie:" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:46 +#: apt-extracttemplates.1.xml:40 msgid "package version template-file config-script" msgstr "pakiet wersja plik-template skrypt-config" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:47 +#: apt-extracttemplates.1.xml:41 msgid "" "template-file and config-script are written to the temporary directory " "specified by the <option>-t</option> or <option>--tempdir</option> " @@ -6932,7 +6932,7 @@ msgstr "" "config.XXXXXX</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-extracttemplates.1.xml:60 +#: apt-extracttemplates.1.xml:54 msgid "" "Temporary directory in which to write extracted <command>debconf</command> " "template files and config scripts. Configuration Item: <literal>APT::" @@ -6944,7 +6944,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:77 +#: apt-extracttemplates.1.xml:71 msgid "" "<command>apt-extracttemplates</command> returns zero on normal operation, " "decimal 100 on error." @@ -6954,12 +6954,12 @@ msgstr "" # #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-sortpkgs.1.xml:35 +#: apt-sortpkgs.1.xml:29 msgid "Utility to sort package index files" msgstr "Narzędzie użytkowe do sortowania plików indeksu" #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:41 +#: apt-sortpkgs.1.xml:35 msgid "" "<command>apt-sortpkgs</command> will take an index file (source index or " "package index) and sort the records so that they are ordered by the package " @@ -6971,7 +6971,7 @@ msgstr "" "zgodnie z wewnętrznymi zasadami sortowania." #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:47 +#: apt-sortpkgs.1.xml:41 msgid "" "All output is sent to standard output; the input must be a seekable file." msgstr "" @@ -6980,7 +6980,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-sortpkgs.1.xml:56 +#: apt-sortpkgs.1.xml:50 msgid "" "Use source index field ordering. Configuration Item: <literal>APT::" "SortPkgs::Source</literal>." @@ -6990,7 +6990,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:70 +#: apt-sortpkgs.1.xml:64 msgid "" "<command>apt-sortpkgs</command> returns zero on normal operation, decimal " "100 on error." @@ -6999,12 +6999,12 @@ msgstr "" "100 - w przypadku błędu." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-ftparchive.1.xml:35 +#: apt-ftparchive.1.xml:29 msgid "Utility to generate index files" msgstr "Narzędzie użytkowe do generowania plików indeksu" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:41 +#: apt-ftparchive.1.xml:35 msgid "" "<command>apt-ftparchive</command> is the command line tool that generates " "the index files that APT uses to access a distribution source. The index " @@ -7017,7 +7017,7 @@ msgstr "" "on the content of that site." #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:45 +#: apt-ftparchive.1.xml:39 msgid "" "<command>apt-ftparchive</command> is a superset of the &dpkg-scanpackages; " "program, incorporating its entire functionality via the <literal>packages</" @@ -7027,7 +7027,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:51 +#: apt-ftparchive.1.xml:45 msgid "" "Internally <command>apt-ftparchive</command> can make use of binary " "databases to cache the contents of a .deb file and it does not rely on any " @@ -7037,7 +7037,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:62 +#: apt-ftparchive.1.xml:56 msgid "" "The packages command generates a package file from a directory tree. It " "takes the given directory and recursively searches it for .deb files, " @@ -7046,13 +7046,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:67 apt-ftparchive.1.xml:91 +#: apt-ftparchive.1.xml:61 apt-ftparchive.1.xml:85 msgid "" "The option <option>--db</option> can be used to specify a binary caching DB." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:72 +#: apt-ftparchive.1.xml:66 msgid "" "The <literal>sources</literal> command generates a source index file from a " "directory tree. It takes the given directory and recursively searches it " @@ -7061,7 +7061,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:77 +#: apt-ftparchive.1.xml:71 msgid "" "If an override file is specified then a source override file will be looked " "for with an extension of .src. The --source-override option can be used to " @@ -7069,7 +7069,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:84 +#: apt-ftparchive.1.xml:78 msgid "" "The <literal>contents</literal> command generates a contents file from a " "directory tree. It takes the given directory and recursively searches it " @@ -7080,7 +7080,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:96 +#: apt-ftparchive.1.xml:90 msgid "" "The <literal>release</literal> command generates a Release file from a " "directory tree. It recursively searches the given directory for uncompressed " @@ -7095,7 +7095,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:106 +#: apt-ftparchive.1.xml:100 msgid "" "Values for the additional metadata fields in the Release file are taken from " "the corresponding variables under <literal>APT::FTPArchive::Release</" @@ -7108,7 +7108,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:119 +#: apt-ftparchive.1.xml:113 msgid "" "The <literal>generate</literal> command is designed to be runnable from a " "cron script and builds indexes according to the given config file. The " @@ -7118,20 +7118,20 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:128 +#: apt-ftparchive.1.xml:122 msgid "" "The <literal>clean</literal> command tidies the databases used by the given " "configuration file by removing any records that are no longer necessary." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:134 +#: apt-ftparchive.1.xml:128 #, fuzzy msgid "The Generate Configuration" msgstr "Plik konfiguracyjny" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:136 +#: apt-ftparchive.1.xml:130 msgid "" "The <literal>generate</literal> command uses a configuration file to " "describe the archives that are going to be generated. It follows the typical " @@ -7142,20 +7142,20 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:144 +#: apt-ftparchive.1.xml:138 msgid "" "The generate configuration has four separate sections, each described below." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:146 +#: apt-ftparchive.1.xml:140 #, fuzzy #| msgid "the <literal>Origin:</literal> line" msgid "<literal>Dir</literal> Section" msgstr "linia <literal>Origin:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:148 +#: apt-ftparchive.1.xml:142 msgid "" "The <literal>Dir</literal> section defines the standard directories needed " "to locate the files required during the generation process. These " @@ -7164,7 +7164,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:155 +#: apt-ftparchive.1.xml:149 msgid "" "Specifies the root of the FTP archive, in a standard Debian configuration " "this is the directory that contains the <filename>ls-LR</filename> and dist " @@ -7172,31 +7172,31 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:162 +#: apt-ftparchive.1.xml:156 msgid "Specifies the location of the override files." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:167 +#: apt-ftparchive.1.xml:161 msgid "Specifies the location of the cache files." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:172 +#: apt-ftparchive.1.xml:166 msgid "" "Specifies the location of the file list files, if the <literal>FileList</" "literal> setting is used below." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:178 +#: apt-ftparchive.1.xml:172 #, fuzzy #| msgid "the <literal>Label:</literal> line" msgid "<literal>Default</literal> Section" msgstr "linia <literal>Label:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:180 +#: apt-ftparchive.1.xml:174 msgid "" "The <literal>Default</literal> section specifies default values, and " "settings that control the operation of the generator. Other sections may " @@ -7204,7 +7204,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:186 +#: apt-ftparchive.1.xml:180 msgid "" "Sets the default compression schemes to use for the package index files. It " "is a string that contains a space separated list of at least one of: '.' (no " @@ -7213,42 +7213,42 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:194 +#: apt-ftparchive.1.xml:188 msgid "" "Sets the default list of file extensions that are package files. This " "defaults to '.deb'." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:200 +#: apt-ftparchive.1.xml:194 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Sources files." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:206 +#: apt-ftparchive.1.xml:200 msgid "" "Sets the default list of file extensions that are source files. This " "defaults to '.dsc'." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:212 +#: apt-ftparchive.1.xml:206 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Contents files." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:218 +#: apt-ftparchive.1.xml:212 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Translation-en master file." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:224 +#: apt-ftparchive.1.xml:218 msgid "" "Specifies the number of kilobytes to delink (and replace with hard links) " "per run. This is used in conjunction with the per-section <literal>External-" @@ -7256,14 +7256,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:231 +#: apt-ftparchive.1.xml:225 msgid "" "Specifies the mode of all created index files. It defaults to 0644. All " "index files are set to this mode with no regard to the umask." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:238 apt-ftparchive.1.xml:384 +#: apt-ftparchive.1.xml:232 apt-ftparchive.1.xml:378 msgid "" "Specifies whether long descriptions should be included in the " "<filename>Packages</filename> file or split out into a master " @@ -7271,14 +7271,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:244 +#: apt-ftparchive.1.xml:238 #, fuzzy #| msgid "the <literal>Label:</literal> line" msgid "<literal>TreeDefault</literal> Section" msgstr "linia <literal>Label:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:246 +#: apt-ftparchive.1.xml:240 msgid "" "Sets defaults specific to <literal>Tree</literal> sections. All of these " "variables are substitution variables and have the strings $(DIST), " @@ -7286,7 +7286,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:253 +#: apt-ftparchive.1.xml:247 msgid "" "Sets the number of kilobytes of contents files that are generated each day. " "The contents files are round-robined so that over several days they will all " @@ -7294,7 +7294,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:260 +#: apt-ftparchive.1.xml:254 msgid "" "Controls the number of days a contents file is allowed to be checked without " "changing. If this limit is passed the mtime of the contents file is updated. " @@ -7305,35 +7305,35 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:271 +#: apt-ftparchive.1.xml:265 msgid "" "Sets the top of the .deb directory tree. Defaults to <filename>$(DIST)/" "$(SECTION)/binary-$(ARCH)/</filename>" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:277 +#: apt-ftparchive.1.xml:271 msgid "" "Sets the top of the source package directory tree. Defaults to <filename>" "$(DIST)/$(SECTION)/source/</filename>" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:283 +#: apt-ftparchive.1.xml:277 msgid "" "Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/" "binary-$(ARCH)/Packages</filename>" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:289 +#: apt-ftparchive.1.xml:283 msgid "" "Sets the output Sources file. Defaults to <filename>$(DIST)/$(SECTION)/" "source/Sources</filename>" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:295 +#: apt-ftparchive.1.xml:289 msgid "" "Sets the output Translation-en master file with the long descriptions if " "they should be not included in the Packages file. Defaults to <filename>" @@ -7341,7 +7341,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:302 +#: apt-ftparchive.1.xml:296 msgid "" "Sets the path prefix that causes a symlink to be considered an internal link " "instead of an external link. Defaults to <filename>$(DIST)/$(SECTION)/</" @@ -7349,7 +7349,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:309 +#: apt-ftparchive.1.xml:303 msgid "" "Sets the output Contents file. Defaults to <filename>$(DIST)/$(SECTION)/" "Contents-$(ARCH)</filename>. If this setting causes multiple Packages files " @@ -7359,19 +7359,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:318 +#: apt-ftparchive.1.xml:312 msgid "Sets header file to prepend to the contents output." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:323 +#: apt-ftparchive.1.xml:317 msgid "" "Sets the binary cache database to use for this section. Multiple sections " "can share the same database." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:329 +#: apt-ftparchive.1.xml:323 msgid "" "Specifies that instead of walking the directory tree, <command>apt-" "ftparchive</command> should read the list of files from the given file. " @@ -7379,7 +7379,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:336 +#: apt-ftparchive.1.xml:330 msgid "" "Specifies that instead of walking the directory tree, <command>apt-" "ftparchive</command> should read the list of files from the given file. " @@ -7388,14 +7388,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:344 +#: apt-ftparchive.1.xml:338 #, fuzzy #| msgid "the <literal>Label:</literal> line" msgid "<literal>Tree</literal> Section" msgstr "linia <literal>Label:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:346 +#: apt-ftparchive.1.xml:340 msgid "" "The <literal>Tree</literal> section defines a standard Debian file tree " "which consists of a base directory, then multiple sections in that base " @@ -7405,7 +7405,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:351 +#: apt-ftparchive.1.xml:345 msgid "" "The <literal>Tree</literal> section takes a scope tag which sets the " "<literal>$(DIST)</literal> variable and defines the root of the tree (the " @@ -7414,7 +7414,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:356 +#: apt-ftparchive.1.xml:350 msgid "" "All of the settings defined in the <literal>TreeDefault</literal> section " "can be used in a <literal>Tree</literal> section as well as three new " @@ -7422,7 +7422,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt-ftparchive.1.xml:362 +#: apt-ftparchive.1.xml:356 #, no-wrap msgid "" "for i in Sections do \n" @@ -7436,7 +7436,7 @@ msgstr "" " " #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:359 +#: apt-ftparchive.1.xml:353 msgid "" "When processing a <literal>Tree</literal> section <command>apt-ftparchive</" "command> performs an operation similar to: <placeholder type=\"programlisting" @@ -7444,7 +7444,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:370 +#: apt-ftparchive.1.xml:364 msgid "" "This is a space separated list of sections which appear under the " "distribution; typically this is something like <literal>main contrib non-" @@ -7452,7 +7452,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:377 +#: apt-ftparchive.1.xml:371 msgid "" "This is a space separated list of all the architectures that appear under " "search section. The special architecture 'source' is used to indicate that " @@ -7460,38 +7460,38 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:390 +#: apt-ftparchive.1.xml:384 msgid "" "Sets the binary override file. The override file contains section, priority " "and maintainer address information." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:396 +#: apt-ftparchive.1.xml:390 msgid "" "Sets the source override file. The override file contains section " "information." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:402 apt-ftparchive.1.xml:448 +#: apt-ftparchive.1.xml:396 apt-ftparchive.1.xml:442 msgid "Sets the binary extra override file." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:407 apt-ftparchive.1.xml:453 +#: apt-ftparchive.1.xml:401 apt-ftparchive.1.xml:447 msgid "Sets the source extra override file." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:412 +#: apt-ftparchive.1.xml:406 #, fuzzy #| msgid "the <literal>Component:</literal> line" msgid "<literal>BinDirectory</literal> Section" msgstr "linia <literal>Component:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:414 +#: apt-ftparchive.1.xml:408 msgid "" "The <literal>bindirectory</literal> section defines a binary directory tree " "with no special structure. The scope tag specifies the location of the " @@ -7501,55 +7501,55 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:422 +#: apt-ftparchive.1.xml:416 msgid "Sets the Packages file output." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:427 +#: apt-ftparchive.1.xml:421 msgid "" "Sets the Sources file output. At least one of <literal>Packages</literal> or " "<literal>Sources</literal> is required." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:433 +#: apt-ftparchive.1.xml:427 msgid "Sets the Contents file output (optional)." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:438 +#: apt-ftparchive.1.xml:432 msgid "Sets the binary override file." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:443 +#: apt-ftparchive.1.xml:437 msgid "Sets the source override file." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:458 +#: apt-ftparchive.1.xml:452 msgid "Sets the cache DB." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:463 +#: apt-ftparchive.1.xml:457 msgid "Appends a path to all the output paths." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:468 +#: apt-ftparchive.1.xml:462 msgid "Specifies the file list file." msgstr "Określa plik zawierający listę plików." #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:475 +#: apt-ftparchive.1.xml:469 #, fuzzy msgid "The Binary Override File" msgstr "Wprowadzenie" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:476 +#: apt-ftparchive.1.xml:470 msgid "" "The binary override file is fully compatible with &dpkg-scanpackages;. It " "contains four fields separated by spaces. The first field is the package " @@ -7559,19 +7559,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><literallayout> -#: apt-ftparchive.1.xml:482 +#: apt-ftparchive.1.xml:476 #, no-wrap msgid "old [// oldn]* => new" msgstr "old [// oldn]* => new" #. type: Content of: <refentry><refsect1><para><literallayout> -#: apt-ftparchive.1.xml:484 +#: apt-ftparchive.1.xml:478 #, no-wrap msgid "new" msgstr "new" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:481 +#: apt-ftparchive.1.xml:475 msgid "" "The general form of the maintainer field is: <placeholder type=" "\"literallayout\" id=\"0\"/> or simply, <placeholder type=\"literallayout\" " @@ -7582,13 +7582,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:492 +#: apt-ftparchive.1.xml:486 #, fuzzy msgid "The Source Override File" msgstr "Wprowadzenie" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:494 +#: apt-ftparchive.1.xml:488 msgid "" "The source override file is fully compatible with &dpkg-scansources;. It " "contains two fields separated by spaces. The first field is the source " @@ -7596,12 +7596,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:499 +#: apt-ftparchive.1.xml:493 msgid "The Extra Override File" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:501 +#: apt-ftparchive.1.xml:495 msgid "" "The extra override file allows any arbitrary tag to be added or replaced in " "the output. It has three columns, the first is the package, the second is " @@ -7609,7 +7609,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:512 +#: apt-ftparchive.1.xml:506 msgid "" "Generate the given checksum. These options default to on, when turned off " "the generated index files will not have the checksum fields where possible. " @@ -7624,7 +7624,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:523 +#: apt-ftparchive.1.xml:517 #, fuzzy msgid "" "Use a binary caching DB. This has no effect on the generate command. " @@ -7635,7 +7635,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:529 +#: apt-ftparchive.1.xml:523 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quiet up to a maximum of 2. You can also use " @@ -7650,7 +7650,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:537 +#: apt-ftparchive.1.xml:531 #, fuzzy msgid "" "Perform Delinking. If the <literal>External-Links</literal> setting is used " @@ -7664,7 +7664,7 @@ msgstr "" "<literal>APT::Cache::Generate</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:545 +#: apt-ftparchive.1.xml:539 msgid "" "Perform contents generation. When this option is set and package indexes are " "being generated with a cache DB then the file listing will also be extracted " @@ -7675,7 +7675,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:555 +#: apt-ftparchive.1.xml:549 #, fuzzy msgid "" "Select the source override file to use with the <literal>sources</literal> " @@ -7688,7 +7688,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:561 +#: apt-ftparchive.1.xml:555 #, fuzzy msgid "" "Make the caching databases read only. Configuration Item: <literal>APT::" @@ -7698,7 +7698,7 @@ msgstr "" "pliku konfiguracyjnym: <literal>APT::Cache::NamesOnly</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:566 +#: apt-ftparchive.1.xml:560 #, fuzzy #| msgid "" #| "If the command is either <literal>install</literal> or <literal>remove</" @@ -7718,7 +7718,7 @@ msgstr "" "AutomaticRemove</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:574 +#: apt-ftparchive.1.xml:568 msgid "" "&apt-ftparchive; caches as much as possible of metadata in a cachedb. If " "packages are recompiled and/or republished with the same version again, this " @@ -7732,7 +7732,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:586 +#: apt-ftparchive.1.xml:580 msgid "" "This configuration option defaults to \"<literal>true</literal>\" and should " "only be set to <literal>\"false\"</literal> if the Archive generated with " @@ -7742,13 +7742,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><programlisting> -#: apt-ftparchive.1.xml:604 +#: apt-ftparchive.1.xml:598 #, no-wrap msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" msgstr "<command>apt-ftparchive</command> packages <replaceable>katalog</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:600 +#: apt-ftparchive.1.xml:594 msgid "" "To create a compressed Packages file for a directory containing binary " "packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>" @@ -7756,7 +7756,7 @@ msgstr "" # #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:614 +#: apt-ftparchive.1.xml:608 msgid "" "<command>apt-ftparchive</command> returns zero on normal operation, decimal " "100 on error." @@ -7765,50 +7765,50 @@ msgstr "" "100 - w przypadku błędu." #. type: Attribute 'lang' of: <book> -#: guide.dbk:8 offline.dbk:8 +#: guide.dbk:9 offline.dbk:9 msgid "en" msgstr "pl" #. type: Content of: <book><title> -#: guide.dbk:10 +#: guide.dbk:11 msgid "APT User's Guide" msgstr "Podręcznik użytkownika APT" #. type: Content of: <book><bookinfo><authorgroup><author><personname> -#: guide.dbk:16 offline.dbk:16 +#: guide.dbk:17 offline.dbk:17 msgid "Jason Gunthorpe" msgstr "Jason Gunthorpe" #. type: Content of: <book><bookinfo><authorgroup><author><email> -#: guide.dbk:16 offline.dbk:16 +#: guide.dbk:17 offline.dbk:17 msgid "jgg@debian.org" msgstr "jgg@debian.org" #. type: Content of: <book><bookinfo><releaseinfo> -#: guide.dbk:20 offline.dbk:20 +#: guide.dbk:21 offline.dbk:21 msgid "Version &apt-product-version;" msgstr "" #. type: Content of: <book><bookinfo><abstract><para> -#: guide.dbk:24 +#: guide.dbk:25 msgid "" "This document provides an overview of how to use the the APT package manager." msgstr "Dokument zawiera opis używania menadżera pakietów APT." #. type: Content of: <book><bookinfo> -#: guide.dbk:28 +#: guide.dbk:29 msgid "" "<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" msgstr "" "<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" #. type: Content of: <book><bookinfo><legalnotice><title> -#: guide.dbk:31 offline.dbk:32 +#: guide.dbk:32 offline.dbk:33 msgid "License Notice" msgstr "" #. type: Content of: <book><bookinfo><legalnotice><para> -#: guide.dbk:33 offline.dbk:34 +#: guide.dbk:34 offline.dbk:35 msgid "" "\"APT\" and this document are free software; you can redistribute them and/" "or modify them under the terms of the GNU General Public License as " @@ -7822,7 +7822,7 @@ msgstr "" "Oprogramowania (Free Software Foundation)." #. type: Content of: <book><bookinfo><legalnotice><para> -#: guide.dbk:42 offline.dbk:40 +#: guide.dbk:43 offline.dbk:41 msgid "" "For more details, on Debian systems, see the file /usr/share/common-licenses/" "GPL for the full license." @@ -7831,12 +7831,12 @@ msgstr "" "licencji (w systemach Debian jest to plik /usr/share/common-licenses/GPL)." #. type: Content of: <book><chapter><title> -#: guide.dbk:49 +#: guide.dbk:50 msgid "General" msgstr "Ogólne" #. type: Content of: <book><chapter><para> -#: guide.dbk:51 +#: guide.dbk:52 msgid "" "The APT package currently contains two sections, the APT <command>dselect</" "command> method and the <command>apt-get</command> command line user " @@ -7849,12 +7849,12 @@ msgstr "" "usuwanie pakietów oraz na pobieranie nowych pakietów z Internetu." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:57 +#: guide.dbk:58 msgid "Anatomy of the Package System" msgstr "Budowa systemu pakietów" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:59 +#: guide.dbk:60 msgid "" "The Debian packaging system has a large amount of information associated " "with each package to help assure that it integrates cleanly and easily into " @@ -7865,7 +7865,7 @@ msgstr "" "widoczną cechą systemu pakietów jest system zależności." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:64 +#: guide.dbk:65 msgid "" "The dependency system allows individual programs to make use of shared " "elements in the system such as libraries. It simplifies placing infrequently " @@ -7880,7 +7880,7 @@ msgstr "" "wybierać programy odpowiedzialne za dostarczanie poczty, serwery X-ów itp." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:71 +#: guide.dbk:72 msgid "" "The first step to understanding the dependency system is to grasp the " "concept of a simple dependency. The meaning of a simple dependency is that a " @@ -7892,7 +7892,7 @@ msgstr "" "pakiet do poprawnego działania wymaga zainstalowania innego pakietu." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:76 +#: guide.dbk:77 msgid "" "For instance, mailcrypt is an emacs extension that aids in encrypting email " "with GPG. Without GPGP installed mailcrypt is useless, so mailcrypt has a " @@ -7906,7 +7906,7 @@ msgstr "" "emacsa, więc i bez emacsa jest równie bezużyteczny." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:82 +#: guide.dbk:83 msgid "" "The other important dependency to understand is a conflicting dependency. It " "means that a package, when installed with another package, will not work and " @@ -7929,7 +7929,7 @@ msgstr "" "poczty." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:92 +#: guide.dbk:93 msgid "" "As an added complication there is the possibility for a package to pretend " "to be another package. Consider that exim and sendmail for many intents are " @@ -7951,7 +7951,7 @@ msgstr "" "zależności pakietów." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:102 +#: guide.dbk:103 msgid "" "At any given time a single dependency may be met by packages that are " "already installed or it may not be. APT attempts to help resolve dependency " @@ -7963,12 +7963,12 @@ msgstr "" "pewnej liczby algorytmów pomagających w wyborze pakietów do zainstalowania." #. type: Content of: <book><chapter><title> -#: guide.dbk:111 +#: guide.dbk:112 msgid "apt-get" msgstr "apt-get" #. type: Content of: <book><chapter><para> -#: guide.dbk:113 +#: guide.dbk:114 msgid "" "<command>apt-get</command> provides a simple way to install packages from " "the command line. Unlike <command>dpkg</command>, <command>apt-get</command> " @@ -7982,7 +7982,7 @@ msgstr "" "skonfigurowanych <emphasis>źródeł</emphasis>." #. type: Content of: <book><chapter><para><footnote><para> -#: guide.dbk:119 +#: guide.dbk:120 msgid "" "If you are using an http proxy server you must set the http_proxy " "environment variable first, see sources.list(5)" @@ -7991,7 +7991,7 @@ msgstr "" "http_proxy, proszę przeczytać sources.list(5)" #. type: Content of: <book><chapter><para> -#: guide.dbk:119 +#: guide.dbk:120 msgid "" "The first <placeholder type=\"footnote\" id=\"0\"/> thing that should be " "done before using <command>apt-get</command> is to fetch the package lists " @@ -8005,7 +8005,7 @@ msgstr "" "polecenia <literal>apt-get update</literal>. Na przykład:" #. type: Content of: <book><chapter><screen> -#: guide.dbk:127 +#: guide.dbk:128 #, no-wrap msgid "" "# apt-get update\n" @@ -8021,17 +8021,17 @@ msgstr "" "Budowanie drzewa zależności... Gotowe\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:134 +#: guide.dbk:135 msgid "Once updated there are several commands that can be used:" msgstr "Po zaktualizowaniu można użyć następnych poleceń:" #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:138 +#: guide.dbk:139 msgid "upgrade" msgstr "upgrade" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:141 +#: guide.dbk:142 msgid "" "Upgrade will attempt to gently upgrade the whole system. Upgrade will never " "install a new package or remove an existing package, nor will it ever " @@ -8053,12 +8053,12 @@ msgstr "" "literal>." #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:153 +#: guide.dbk:154 msgid "install" msgstr "install" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:156 +#: guide.dbk:157 msgid "" "Install is used to install packages by name. The package is automatically " "fetched and installed. This can be useful if you already know the name of " @@ -8078,12 +8078,12 @@ msgstr "" "cokolwiek innego niż pakiety podane jako jego argumenty." #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:167 +#: guide.dbk:168 msgid "dist-upgrade" msgstr "dist-upgrade" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:170 +#: guide.dbk:171 msgid "" "Dist-upgrade is a complete upgrader designed to simplify upgrading between " "releases of Debian. It uses a sophisticated algorithm to determine the best " @@ -8105,7 +8105,7 @@ msgstr "" "pakietów." #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:180 +#: guide.dbk:181 msgid "" "It is important to closely look at what dist-upgrade is going to do, its " "decisions may sometimes be quite surprising." @@ -8114,7 +8114,7 @@ msgstr "" "zrobić, gdyż jego decyzje mogą czasami zdumiewać." #. type: Content of: <book><chapter><para> -#: guide.dbk:187 +#: guide.dbk:188 msgid "" "<command>apt-get</command> has several command line options that are " "detailed in its man page, <citerefentry><refentrytitle>apt-get</" @@ -8137,12 +8137,12 @@ msgstr "" "pobranie, tym razem bez opcji <literal>-d</literal>." #. type: Content of: <book><chapter><title> -#: guide.dbk:199 +#: guide.dbk:200 msgid "DSelect" msgstr "DSelect" #. type: Content of: <book><chapter><para> -#: guide.dbk:201 +#: guide.dbk:202 msgid "" "The APT <command>dselect</command> method provides the complete APT system " "with the <command>dselect</command> package selection GUI. <command>dselect</" @@ -8156,7 +8156,7 @@ msgstr "" "te pakiety." #. type: Content of: <book><chapter><para> -#: guide.dbk:207 +#: guide.dbk:208 msgid "" "To enable the APT method you need to select [A]ccess in <command>dselect</" "command> and then choose the APT method. You will be prompted for a set of " @@ -8181,7 +8181,7 @@ msgstr "" "pakiety z Internetu." #. type: Content of: <book><chapter><screen> -#: guide.dbk:218 +#: guide.dbk:219 #, no-wrap msgid "" " Set up a list of distribution source locations\n" @@ -8211,7 +8211,7 @@ msgstr "" " URL [http://llug.sep.bnl.gov/debian]:\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:232 +#: guide.dbk:233 msgid "" "The <emphasis>Sources</emphasis> setup starts by asking for the base of the " "Debian archive, defaulting to a HTTP mirror. Next it asks for the " @@ -8222,7 +8222,7 @@ msgstr "" "dystrybucję do pobrania." #. type: Content of: <book><chapter><screen> -#: guide.dbk:237 +#: guide.dbk:238 #, no-wrap msgid "" " Please give the distribution tag to get or a path to the\n" @@ -8238,7 +8238,7 @@ msgstr "" " Dystrybucja [stable]:\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:244 +#: guide.dbk:245 msgid "" "The distribution refers to the Debian version in the archive, " "<emphasis>stable</emphasis> refers to the latest released version and " @@ -8257,7 +8257,7 @@ msgstr "" "Importowanie tych pakietów do Stanów Zjednoczonych jest jednakże legalne." #. type: Content of: <book><chapter><screen> -#: guide.dbk:253 +#: guide.dbk:254 #, no-wrap msgid "" " Please give the components to get\n" @@ -8271,7 +8271,7 @@ msgstr "" " Komponenty [main contrib non-free]:\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:259 +#: guide.dbk:260 msgid "" "The components list refers to the list of sub distributions to fetch. The " "distribution is split up based on software licenses, main being DFSG free " @@ -8285,7 +8285,7 @@ msgstr "" "związane z ich używaniem lub rozpowszechnianiem." #. type: Content of: <book><chapter><para> -#: guide.dbk:265 +#: guide.dbk:266 msgid "" "Any number of sources can be added, the setup script will continue to prompt " "until you have specified all that you want." @@ -8295,7 +8295,7 @@ msgstr "" "chciał skonfigurować." #. type: Content of: <book><chapter><para> -#: guide.dbk:269 +#: guide.dbk:270 msgid "" "Before starting to use <command>dselect</command> it is necessary to update " "the available list by selecting [U]pdate from the menu. This is a superset " @@ -8311,7 +8311,7 @@ msgstr "" "nawet jeśli wcześniej uruchomiono <literal>apt-get update</literal>." #. type: Content of: <book><chapter><para> -#: guide.dbk:276 +#: guide.dbk:277 msgid "" "You can then go on and make your selections using [S]elect and then perform " "the installation using [I]nstall. When using the APT method the [C]onfig and " @@ -8325,7 +8325,7 @@ msgstr "" "operacje." #. type: Content of: <book><chapter><para> -#: guide.dbk:282 +#: guide.dbk:283 msgid "" "By default APT will automatically remove the package (.deb) files once they " "have been successfully installed. To change this behavior place " @@ -8336,12 +8336,12 @@ msgstr "" "clean \"prompt\";</literal> w /etc/apt/apt.conf." #. type: Content of: <book><chapter><title> -#: guide.dbk:288 +#: guide.dbk:289 msgid "The Interface" msgstr "Interfejs" #. type: Content of: <book><chapter><para><footnote><para> -#: guide.dbk:292 +#: guide.dbk:293 msgid "" "The <command>dselect</command> method actually is a set of wrapper scripts " "to <command>apt-get</command>. The method actually provides more " @@ -8352,7 +8352,7 @@ msgstr "" "większą funkcjonalność niż sam program <command>apt-get</command>." #. type: Content of: <book><chapter><para> -#: guide.dbk:290 +#: guide.dbk:291 msgid "" "Both that APT <command>dselect</command> method and <command>apt-get</" "command> share the same interface. It is a simple system that generally " @@ -8370,12 +8370,12 @@ msgstr "" "ich zakończenia." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:301 +#: guide.dbk:302 msgid "Startup" msgstr "Uruchamianie" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:303 +#: guide.dbk:304 msgid "" "Before all operations except update, APT performs a number of actions to " "prepare its internal state. It also does some checks of the system's state. " @@ -8388,7 +8388,7 @@ msgstr "" "get check</literal>." #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:309 +#: guide.dbk:310 #, no-wrap msgid "" "# apt-get check\n" @@ -8400,7 +8400,7 @@ msgstr "" "Budowanie drzewa zależności... Gotowe\n" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:314 +#: guide.dbk:315 msgid "" "The first thing it does is read all the package files into memory. APT uses " "a caching scheme so this operation will be faster the second time it is run. " @@ -8413,7 +8413,7 @@ msgstr "" "wypisze ostrzeżenie, a te pakiety zignoruje." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:320 +#: guide.dbk:321 msgid "" "The final operation performs a detailed analysis of the system's " "dependencies. It checks every dependency of every installed or unpacked " @@ -8426,7 +8426,7 @@ msgstr "" "odpowiedni komunikat i odmówi dalszego działania." #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:326 +#: guide.dbk:327 #, no-wrap msgid "" "# apt-get check\n" @@ -8462,7 +8462,7 @@ msgstr "" " libreadlineg2: Jest w konflikcie z: libreadline2 (<< 2.1-2.1)\n" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:343 +#: guide.dbk:344 msgid "" "In this example the system has many problems, including a serious problem " "with libreadlineg2. For each package that has unmet dependencies a line is " @@ -8476,7 +8476,7 @@ msgstr "" "jest również krótkie wyjaśnienie dotyczące przyczyny problemu." #. type: Content of: <book><chapter><section><para><footnote><para> -#: guide.dbk:352 +#: guide.dbk:353 msgid "" "APT however considers all known dependencies and attempts to prevent broken " "packages" @@ -8485,7 +8485,7 @@ msgstr "" "pakietów." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:350 +#: guide.dbk:351 msgid "" "There are two ways a system can get into a broken state like this. The first " "is caused by <command>dpkg</command> missing some subtle relationships " @@ -8502,7 +8502,7 @@ msgstr "" "mimo że pakiety od niego zależące nie są zainstalowane." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:359 +#: guide.dbk:360 msgid "" "The second situation is much less serious than the first because APT places " "certain constraints on the order that packages are installed. In both cases " @@ -8521,7 +8521,7 @@ msgstr "" "aby móc kontynuować po wystąpieniu błędu w skryptach opiekunów pakietów." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:368 +#: guide.dbk:369 msgid "" "However, if the <literal>-f</literal> option is used to correct a seriously " "broken system caused by the first case then it is possible that it will " @@ -8538,12 +8538,12 @@ msgstr "" "systemowi APT." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:376 +#: guide.dbk:377 msgid "The Status Report" msgstr "Raport stanu" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:378 +#: guide.dbk:379 msgid "" "Before proceeding <command>apt-get</command> will present a report on what " "will happen. Generally the report reflects the type of operation being " @@ -8561,12 +8561,12 @@ msgstr "" "polecenia." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:385 +#: guide.dbk:386 msgid "The Extra Package list" msgstr "Lista dodatkowych pakietów" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:387 +#: guide.dbk:388 #, no-wrap msgid "" "The following extra packages will be installed:\n" @@ -8584,7 +8584,7 @@ msgstr "" " ssh\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:395 +#: guide.dbk:396 msgid "" "The Extra Package list shows all of the packages that will be installed or " "upgraded in excess of the ones mentioned on the command line. It is only " @@ -8597,12 +8597,12 @@ msgstr "" "pakiety są najczęściej wynikiem automatycznej instalacji." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:402 +#: guide.dbk:403 msgid "The Packages to Remove" msgstr "Pakiety przeznaczone do usunięcia" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:404 +#: guide.dbk:405 #, no-wrap msgid "" "The following packages will be REMOVED:\n" @@ -8618,7 +8618,7 @@ msgstr "" " nas xpilot xfig\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:411 +#: guide.dbk:412 msgid "" "The Packages to Remove list shows all of the packages that will be removed " "from the system. It can be shown for any of the operations and should be " @@ -8638,12 +8638,12 @@ msgstr "" "być może z przerwania wcześniejszej instalacji." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:421 +#: guide.dbk:422 msgid "The New Packages list" msgstr "Lista nowych pakietów" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:423 +#: guide.dbk:424 #, no-wrap msgid "" "The following NEW packages will installed:\n" @@ -8653,7 +8653,7 @@ msgstr "" " zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:427 +#: guide.dbk:428 msgid "" "The New Packages list is simply a reminder of what will happen. The packages " "listed are not presently installed in the system but will be when APT is " @@ -8664,12 +8664,12 @@ msgstr "" "działanie." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:432 +#: guide.dbk:433 msgid "The Kept Back list" msgstr "Lista zatrzymanych pakietów" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:434 +#: guide.dbk:435 #, no-wrap msgid "" "The following packages have been kept back\n" @@ -8681,7 +8681,7 @@ msgstr "" " gs snmp arena lynx xpat2 groff xscreensaver\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:439 +#: guide.dbk:440 msgid "" "Whenever the whole system is being upgraded there is the possibility that " "new versions of packages cannot be installed because they require new things " @@ -8699,12 +8699,12 @@ msgstr "" "<command>dselect</command>." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:448 +#: guide.dbk:449 msgid "Held Packages warning" msgstr "Ostrzeżenie o zmianie zatrzymanych pakietów" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:450 +#: guide.dbk:451 #, no-wrap msgid "" "The following held packages will be changed:\n" @@ -8714,7 +8714,7 @@ msgstr "" " cvs\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:454 +#: guide.dbk:455 msgid "" "Sometimes you can ask APT to install a package that is on hold, in such a " "case it prints out a warning that the held package is going to be changed. " @@ -8725,19 +8725,19 @@ msgstr "" "pakietu. Może się to zdarzyć tylko podczas dist-upgrade lub install." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:460 +#: guide.dbk:461 msgid "Final summary" msgstr "Podsumowanie" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:462 +#: guide.dbk:463 msgid "" "Finally, APT will print out a summary of all the changes that will occur." msgstr "" "APT zakończy raport podsumowaniem wszystkich zmian, które przeprowadzi." #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:465 +#: guide.dbk:466 #, no-wrap msgid "" "206 packages upgraded, 8 newly installed, 23 to remove and 51 not upgraded.\n" @@ -8749,7 +8749,7 @@ msgstr "" "Konieczne pobranie 65.7M/66.7M archiwów. Po rozpakowaniu zostanie użyte 26.5M.\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:470 +#: guide.dbk:471 msgid "" "The first line of the summary simply is a reduced version of all of the " "lists and includes the number of upgrades - that is packages already " @@ -8779,7 +8779,7 @@ msgstr "" "zwolnienie miejsca na dysku, jeśli usuwana jest duża liczba pakietów." #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:484 +#: guide.dbk:485 msgid "" "Some other reports can be generated by using the -u option to show packages " "to upgrade, they are similar to the previous examples." @@ -8788,12 +8788,12 @@ msgstr "" "do aktualizacji, podobny do tego pokazanego w poprzednim przykładzie." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:491 +#: guide.dbk:492 msgid "The Status Display" msgstr "Wyświetlanie stanu przetwarzania" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:493 +#: guide.dbk:494 msgid "" "During the download of archives and package files APT prints out a series of " "status messages." @@ -8802,7 +8802,7 @@ msgstr "" "komunikatów o stanie." #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:497 +#: guide.dbk:498 #, no-wrap msgid "" "# apt-get update\n" @@ -8822,7 +8822,7 @@ msgstr "" "11% [5 testing/non-free `Oczekiwane na nagłówki' 0/32.1k 0%] 2203b/s 1m52s\n" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:506 +#: guide.dbk:507 msgid "" "The lines starting with <emphasis>Get</emphasis> are printed out when APT " "begins to fetch a file while the last line indicates the progress of the " @@ -8839,7 +8839,7 @@ msgstr "" "powoduje pewne nieścisłości." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:514 +#: guide.dbk:515 msgid "" "The next section of the status line is repeated once for each download " "thread and indicates the operation being performed and some useful " @@ -8861,7 +8861,7 @@ msgstr "" "pakietu." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:524 +#: guide.dbk:525 msgid "" "Inside of the single quote is an informative string indicating the progress " "of the negotiation phase of the download. Typically it progresses from " @@ -8895,7 +8895,7 @@ msgstr "" "utrzymania się pokazanego tempa pobierania." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:539 +#: guide.dbk:540 msgid "" "The status display updates every half second to provide a constant feedback " "on the download progress while the Get lines scroll back whenever a new file " @@ -8911,12 +8911,12 @@ msgstr "" "q</literal>." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:547 +#: guide.dbk:548 msgid "Dpkg" msgstr "Dpkg" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:549 +#: guide.dbk:550 msgid "" "APT uses <command>dpkg</command> for installing the archives and will switch " "over to the <command>dpkg</command> interface once downloading is completed. " @@ -8933,12 +8933,12 @@ msgstr "" "zróżnicowane, by je tutaj opisać." #. type: Content of: <book><title> -#: offline.dbk:10 +#: offline.dbk:11 msgid "Using APT Offline" msgstr "Używanie APT w trybie offline" #. type: Content of: <book><bookinfo><abstract><para> -#: offline.dbk:24 +#: offline.dbk:25 msgid "" "This document describes how to use APT in a non-networked environment, " "specifically a 'sneaker-net' approach for performing upgrades." @@ -8948,23 +8948,23 @@ msgstr "" "aktualizacji systemu." #. type: Content of: <book><bookinfo> -#: offline.dbk:29 +#: offline.dbk:30 msgid "" "<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" msgstr "" #. type: Content of: <book><chapter><title> -#: offline.dbk:47 +#: offline.dbk:48 msgid "Introduction" msgstr "Wstęp" #. type: Content of: <book><chapter><section><title> -#: offline.dbk:49 offline.dbk:79 offline.dbk:191 +#: offline.dbk:50 offline.dbk:80 offline.dbk:192 msgid "Overview" msgstr "Wprowadzenie" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:51 +#: offline.dbk:52 msgid "" "Normally APT requires direct access to a Debian archive, either from a local " "media or through a network. Another common complaint is that a Debian " @@ -8977,7 +8977,7 @@ msgstr "" "znacznie oddalony od innego komputera z szybkim łączem." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:57 +#: offline.dbk:58 msgid "" "The solution to this is to use large removable media such as a Zip disc or a " "SuperDisk disc. These discs are not large enough to store the entire Debian " @@ -9001,7 +9001,7 @@ msgstr "" "takim jak wget." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:68 +#: offline.dbk:69 msgid "" "This is achieved by creatively manipulating the APT configuration file. The " "essential premise to tell APT to look on a disc for it's archive files. Note " @@ -9015,12 +9015,12 @@ msgstr "" "nazwami plików (np. ext2, fat32 albo vfat)." #. type: Content of: <book><chapter><title> -#: offline.dbk:77 +#: offline.dbk:78 msgid "Using APT on both machines" msgstr "Używanie programu APT na obu komputerach" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:81 +#: offline.dbk:82 msgid "" "APT being available on both machines gives the simplest configuration. The " "basic idea is to place a copy of the status file on the disc and use the " @@ -9034,7 +9034,7 @@ msgstr "" "następująco:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:87 +#: offline.dbk:88 #, no-wrap msgid "" " /disc/\n" @@ -9056,12 +9056,12 @@ msgstr "" " apt.conf\n" #. type: Content of: <book><chapter><section><title> -#: offline.dbk:98 +#: offline.dbk:99 msgid "The configuration file" msgstr "Plik konfiguracyjny" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:100 +#: offline.dbk:101 msgid "" "The configuration file should tell APT to store its files on the disc and to " "use the configuration files on the disc as well. The sources.list should " @@ -9079,7 +9079,7 @@ msgstr "" "użyć tych samych odnośników o identycznej składni." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:108 +#: offline.dbk:109 msgid "" "<emphasis>apt.conf</emphasis> must contain the necessary information to make " "APT use the disc:" @@ -9088,7 +9088,7 @@ msgstr "" "korzystał z dysku:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:112 +#: offline.dbk:113 #, no-wrap msgid "" " APT\n" @@ -9140,7 +9140,7 @@ msgstr "" " };\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:137 +#: offline.dbk:138 msgid "" "More details can be seen by examining the apt.conf man page and the sample " "configuration file in <emphasis>/usr/share/doc/apt/examples/apt.conf</" @@ -9151,7 +9151,7 @@ msgstr "" "conf</emphasis>." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:142 +#: offline.dbk:143 msgid "" "On the target machine the first thing to do is mount the disc and copy " "<emphasis>/var/lib/dpkg/status</emphasis> to it. You will also need to " @@ -9169,7 +9169,7 @@ msgstr "" "wykonujemy kolejno:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:151 +#: offline.dbk:152 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" @@ -9185,7 +9185,7 @@ msgstr "" " [ APT pobiera wszystkie pakiety potrzebne do aktualizacji Twojego systemu ]\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:158 +#: offline.dbk:159 msgid "" "The dist-upgrade command can be replaced with any other standard APT " "commands, particularly dselect-upgrade. You can even use an APT front end " @@ -9198,7 +9198,7 @@ msgstr "" "przeniesieniu Twoich operacji wyborów z powrotem na lokalny komputer." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:164 +#: offline.dbk:165 msgid "" "Now the disc contains all of the index files and archives needed to upgrade " "the target machine. Take the disc back and run:" @@ -9208,7 +9208,7 @@ msgstr "" "siebie i wpisujemy:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:168 +#: offline.dbk:169 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" @@ -9224,7 +9224,7 @@ msgstr "" " [ Może też być inne polecenie programu APT ]\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:175 +#: offline.dbk:176 msgid "" "It is necessary for proper function to re-specify the status file to be the " "local one. This is very important!" @@ -9233,7 +9233,7 @@ msgstr "" "maszyny. To jest bardzo ważne!" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:179 +#: offline.dbk:180 msgid "" "If you are using dselect you can do the very risky operation of copying disc/" "status to /var/lib/dpkg/status so that any selections you made on the remote " @@ -9249,12 +9249,12 @@ msgstr "" "w międzyczasie!" #. type: Content of: <book><chapter><title> -#: offline.dbk:189 +#: offline.dbk:190 msgid "Using APT and wget" msgstr "Używanie programów APT i wget" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:193 +#: offline.dbk:194 msgid "" "<emphasis>wget</emphasis> is a popular and portable download tool that can " "run on nearly any machine. Unlike the method above this requires that the " @@ -9266,7 +9266,7 @@ msgstr "" "komputerze była aktualna lista dostępnych pakietów." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:198 +#: offline.dbk:199 msgid "" "The basic idea is to create a disc that has only the archive files " "downloaded from the remote site. This is done by using the --print-uris " @@ -9279,12 +9279,12 @@ msgstr "" "pakiety." #. type: Content of: <book><chapter><section><title> -#: offline.dbk:204 +#: offline.dbk:205 msgid "Operation" msgstr "Kolejne kroki" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:206 +#: offline.dbk:207 msgid "" "Unlike the previous technique no special configuration files are required. " "We merely use the standard APT commands to generate the file list." @@ -9294,7 +9294,7 @@ msgstr "" "wygenerować listę plików." #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:210 +#: offline.dbk:211 #, no-wrap msgid "" " # apt-get dist-upgrade\n" @@ -9308,7 +9308,7 @@ msgstr "" " # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:216 +#: offline.dbk:217 msgid "" "Any command other than dist-upgrade could be used here, including dselect-" "upgrade." @@ -9317,7 +9317,7 @@ msgstr "" "upgrade." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:220 +#: offline.dbk:221 msgid "" "The /disc/wget-script file will now contain a list of wget commands to " "execute in order to fetch the necessary archives. This script should be run " @@ -9330,12 +9330,12 @@ msgstr "" "dane na tym dysku." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:226 +#: offline.dbk:227 msgid "The remote machine would do something like" msgstr "Na oddalonym komputerze należy wykonać coś takiego" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:229 +#: offline.dbk:230 #, no-wrap msgid "" " # cd /disc\n" @@ -9347,7 +9347,7 @@ msgstr "" " [ czekaj.. ]\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:234 +#: offline.dbk:235 msgid "" "Once the archives are downloaded and the disc returned to the Debian machine " "installation can proceed using," @@ -9356,13 +9356,13 @@ msgstr "" "instalowanie można prowadzić dalej poleceniem:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:238 +#: offline.dbk:239 #, no-wrap msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:241 +#: offline.dbk:242 msgid "Which will use the already fetched archives on the disc." msgstr "Które użyje pobranych uprzednio archiwów z dysku." diff --git a/doc/po/pt.po b/doc/po/pt.po index cb082ab82..5ed25f73a 100644 --- a/doc/po/pt.po +++ b/doc/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 1.0.6\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:52+0200\n" +"POT-Creation-Date: 2014-08-28 00:20+0000\n" "PO-Revision-Date: 2014-07-27 14:14+0100\n" "Last-Translator: Américo Monteiro <a_monteiro@gmx.com>\n" "Language-Team: Portuguese <traduz@debianpt.org>\n" @@ -70,8 +70,7 @@ msgstr "" "<!-- Boiler plate Bug reporting section -->\n" "<!ENTITY manbugs \"\n" " <refsect1><title>Bugs\n" -" página de bugs do APT<" -"/ulink>. \n" +" página de bugs do APT. \n" " Se deseja reportar um bug no APT, por favor veja\n" " /usr/share/doc/debian/bug-reporting.txt ou o\n" " comando &reportbug;.\n" @@ -86,8 +85,7 @@ msgid "" "\n" "Author\n" -" APT was written by the APT team apt@packages.debian.org<" -"/email>.\n" +" APT was written by the APT team apt@packages.debian.org.\n" " \n" " \n" "\">\n" @@ -95,8 +93,7 @@ msgstr "" "\n" "Autor\n" -" APT foi escrito pela equipa do APT apt@packages.debian.org<" -"/email>.\n" +" APT foi escrito pela equipa do APT apt@packages.debian.org.\n" " \n" " \n" "\">\n" @@ -152,12 +149,10 @@ msgid "" " \n" " \n" " \n" -" Configuration File; Specify a configuration file to use. " -"\n" +" Configuration File; Specify a configuration file to use. \n" " The program will read the default configuration file and then this \n" " configuration file. If configuration settings need to be set before the\n" -" default configuration files are parsed specify a file with the " -"APT_CONFIG\n" +" default configuration files are parsed specify a file with the APT_CONFIG\n" " environment variable. See &apt-conf; for syntax information.\n" " \n" " \n" @@ -168,10 +163,8 @@ msgstr "" " \n" " Ficheiro de Configuração; Especifica o ficheiro de \n" " configuração a usar. \n" -" O programa irá ler o ficheiro de configuração predefinido e depois este " -"\n" -" ficheiro de configuração. Se as definições de configuração precisarem de " -"\n" +" O programa irá ler o ficheiro de configuração predefinido e depois este \n" +" ficheiro de configuração. Se as definições de configuração precisarem de \n" " ser definidas antes, os ficheiros de configuração predefinidos são \n" " analisados especificando um ficheiro com a variável de ambiente \n" " APT_CONFIG. Veja &apt-conf; para informação de sintaxe.\n" @@ -198,12 +191,9 @@ msgstr "" " \n" " \n" " \n" -" Define uma Opção de Configuração; Isto irá definir uma " -"opção\n" -" de configuração arbitrária. A sintaxe é " -".\n" -" e podem ser usadas " -"várias\n" +" Define uma Opção de Configuração; Isto irá definir uma opção\n" +" de configuração arbitrária. A sintaxe é .\n" +" e podem ser usadas várias\n" " vezes para definir opções diferentes.\n" " \n" " \n" @@ -217,8 +207,7 @@ msgid "" "\n" "All command line options may be set using the configuration file, " -"the\n" +" All command line options may be set using the configuration file, the\n" " descriptions indicate the configuration option to set. For boolean\n" " options you can override the config file by using something like \n" " ,, \n" @@ -229,11 +218,9 @@ msgstr "" "\n" "Todas as opções de linha de comandos podem ser definidas usando o " -"ficheiro de configuração, as\n" +" Todas as opções de linha de comandos podem ser definidas usando o ficheiro de configuração, as\n" " descrições indicam a opção de configuração a definir. Para opções\n" -" booleanas você pode sobre por o ficheiro de configuração usando algo como " -"\n" +" booleanas você pode sobre por o ficheiro de configuração usando algo como \n" " ,, \n" " ou várias outras variantes.\n" " \n" @@ -246,15 +233,13 @@ msgid "" "/etc/apt/apt.conf\n" " APT configuration file.\n" -" Configuration Item: Dir::Etc::Main." -"\n" +" Configuration Item: Dir::Etc::Main.\n" " \n" msgstr "" "/etc/apt/apt.conf\n" " Ficheiro de configuração do APT.\n" -" Item de Configuração: Dir::Etc::Main.<" -"/listitem>\n" +" Item de Configuração: Dir::Etc::Main.\n" " \n" #. type: Plain text @@ -263,15 +248,13 @@ msgstr "" msgid "" " /etc/apt/apt.conf.d/\n" " APT configuration file fragments.\n" -" Configuration Item: Dir::Etc::Parts." -"\n" +" Configuration Item: Dir::Etc::Parts.\n" " \n" "\">\n" msgstr "" " /etc/apt/apt.conf.d/\n" " Ficheiros de configuração fragmentados do APT.\n" -" Item de Configuração: Dir::Etc::Parts.<" -"/listitem>\n" +" Item de Configuração: Dir::Etc::Parts.\n" " \n" "\">\n" @@ -282,36 +265,28 @@ msgid "" "&cachedir;/archives/\n" " Storage area for retrieved package files.\n" -" Configuration Item: Dir::Cache::Archives.<" -"/listitem>\n" +" Configuration Item: Dir::Cache::Archives.\n" " \n" msgstr "" "&cachedir;/archives/\n" -" Área de armazenamento para ficheiros de pacotes " -"obtidos.\n" -" Item de Configuração: Dir::Cache::Archives.<" -"/listitem>\n" +" Área de armazenamento para ficheiros de pacotes obtidos.\n" +" Item de Configuração: Dir::Cache::Archives.\n" " \n" #. type: Plain text #: apt.ent:109 #, no-wrap msgid "" -" &cachedir;/archives/partial/<" -"/term>\n" +" &cachedir;/archives/partial/\n" " Storage area for package files in transit.\n" -" Configuration Item: Dir::Cache::Archives (" -"partial will be implicitly appended)\n" +" Configuration Item: Dir::Cache::Archives (partial will be implicitly appended)\n" " \n" "\">\n" msgstr "" -" &cachedir;/archives/partial/<" -"/term>\n" -" Área de armazenamento para ficheiros de pacotes em " -"curso.\n" -" Item de Configuração: Dir::Cache::Archives será " -"implicitamente acrescentado (partial)\n" +" &cachedir;/archives/partial/\n" +" Área de armazenamento para ficheiros de pacotes em curso.\n" +" Item de Configuração: Dir::Cache::Archives será implicitamente acrescentado (partial)\n" " \n" "\">\n" @@ -326,8 +301,7 @@ msgid "" " i.e. a preference to get certain packages\n" " from a separate source\n" " or from a different version of a distribution.\n" -" Configuration Item: Dir::Etc::Preferences.<" -"/listitem>\n" +" Configuration Item: Dir::Etc::Preferences.\n" " \n" msgstr "" "Dir::Etc::Preferences.<" -"/listitem>\n" +" Item de Configuração: Dir::Etc::Preferences.\n" " \n" #. type: Plain text @@ -347,15 +320,13 @@ msgstr "" msgid "" " /etc/apt/preferences.d/\n" " File fragments for the version preferences.\n" -" Configuration Item: Dir::Etc::PreferencesParts." -"\n" +" Configuration Item: Dir::Etc::PreferencesParts.\n" " \n" "\">\n" msgstr "" " /etc/apt/preferences.d/\n" " Ficheiros fragmentados para as preferências de versão.\n" -" Item de Configuração: Dir::Etc::PreferencesParts.<" -"/para>\n" +" Item de Configuração: Dir::Etc::PreferencesParts.\n" " \n" "\">\n" @@ -366,35 +337,28 @@ msgid "" "/etc/apt/sources.list\n" " Locations to fetch packages from.\n" -" Configuration Item: Dir::Etc::SourceList.<" -"/listitem>\n" +" Configuration Item: Dir::Etc::SourceList.\n" " \n" msgstr "" "/etc/apt/sources.list\n" " Localizações de onde obter pacotes.\n" -" Item de Configuração: Dir::Etc::SourceList.<" -"/listitem>\n" +" Item de Configuração: Dir::Etc::SourceList.\n" " \n" #. type: Plain text #: apt.ent:137 #, no-wrap msgid "" -" /etc/apt/sources.list.d/" -"\n" +" /etc/apt/sources.list.d/\n" " File fragments for locations to fetch packages from.\n" -" Configuration Item: Dir::Etc::SourceParts.<" -"/listitem>\n" +" Configuration Item: Dir::Etc::SourceParts.\n" " \n" "\">\n" msgstr "" -" /etc/apt/sources.list.d/" -"\n" -" Ficheiros fragmentados para localizações de onde obter " -"pacotes.\n" -" Item de Configuração: Dir::Etc::SourceParts.<" -"/listitem>\n" +" /etc/apt/sources.list.d/\n" +" Ficheiros fragmentados para localizações de onde obter pacotes.\n" +" Item de Configuração: Dir::Etc::SourceParts.\n" " \n" "\">\n" @@ -404,40 +368,31 @@ msgstr "" msgid "" "&statedir;/lists/\n" -" Storage area for state information for each package " -"resource specified in\n" +" Storage area for state information for each package resource specified in\n" " &sources-list;\n" -" Configuration Item: Dir::State::Lists.<" -"/listitem>\n" +" Configuration Item: Dir::State::Lists.\n" " \n" msgstr "" "&statedir;/lists/\n" -" Área de armazenamento para informação de estado para " -"cada recurso de pacote especificado em\n" +" Área de armazenamento para informação de estado para cada recurso de pacote especificado em\n" " &sources-list;\n" -" Tem de Configuração: Dir::State::Lists.<" -"/listitem>\n" +" Tem de Configuração: Dir::State::Lists.\n" " \n" #. type: Plain text #: apt.ent:150 #, no-wrap msgid "" -" &statedir;/lists/partial/" -"\n" +" &statedir;/lists/partial/\n" " Storage area for state information in transit.\n" -" Configuration Item: Dir::State::Lists (" -"partial will be implicitly appended)\n" +" Configuration Item: Dir::State::Lists (partial will be implicitly appended)\n" " \n" "\">\n" msgstr "" -" &statedir;/lists/partial/" -"\n" -" Área de armazenamento para informação de estado em " -"trânsito.\n" -" Item de Configuração: Dir::State::Lists será " -"implicitamente acrescentado (partial)\n" +" &statedir;/lists/partial/\n" +" Área de armazenamento para informação de estado em trânsito.\n" +" Item de Configuração: Dir::State::Lists será implicitamente acrescentado (partial)\n" " \n" "\">\n" @@ -447,18 +402,14 @@ msgstr "" msgid "" "/etc/apt/trusted.gpg\n" -" Keyring of local trusted keys, new keys will be added " -"here.\n" -" Configuration Item: Dir::Etc::Trusted.<" -"/listitem>\n" +" Keyring of local trusted keys, new keys will be added here.\n" +" Configuration Item: Dir::Etc::Trusted.\n" " \n" msgstr "" "/etc/apt/trusted.gpg\n" -" Chaveiro de chaves de confiança locais, as novas chaves " -"serão adicionadas aqui.\n" -" Item de Configuração: Dir::Etc::Trusted.<" -"/listitem>\n" +" Chaveiro de chaves de confiança locais, as novas chaves serão adicionadas aqui.\n" +" Item de Configuração: Dir::Etc::Trusted.\n" " \n" #. type: Plain text @@ -466,20 +417,16 @@ msgstr "" #, no-wrap msgid "" " /etc/apt/trusted.gpg.d/\n" -" File fragments for the trusted keys, additional keyrings " -"can\n" +" File fragments for the trusted keys, additional keyrings can\n" " be stored here (by other packages or the administrator).\n" -" Configuration Item Dir::Etc::TrustedParts.<" -"/listitem>\n" +" Configuration Item Dir::Etc::TrustedParts.\n" " \n" "\">\n" msgstr "" " /etc/apt/trusted.gpg.d/\n" -" Fragmentos de ficheiro para as chaves de confiança, " -"chaveiros adicionais podem\n" +" Fragmentos de ficheiro para as chaves de confiança, chaveiros adicionais podem\n" " ser armazenados aqui (por outros pacotes ou pelo administrador).\n" -" Item de Configuração Dir::Etc::TrustedParts.<" -"/listitem>\n" +" Item de Configuração Dir::Etc::TrustedParts.\n" " \n" "\">\n" @@ -488,8 +435,7 @@ msgstr "" #, no-wrap msgid "" "/var/lib/apt/extended_states<" -"/term>\n" +" /var/lib/apt/extended_states\n" " Status list of auto-installed packages.\n" " Configuration Item: Dir::State::extended_states.\n" " \n" @@ -497,8 +443,7 @@ msgid "" "\">\n" msgstr "" "/var/lib/apt/extended_states<" -"/term>\n" +" /var/lib/apt/extended_states\n" " Lista de estado de pacotes auto-instalados.\n" " Item de Configuração: Dir::State::extended_states.\n" " \n" @@ -509,55 +454,40 @@ msgstr "" #: apt.ent:175 #, no-wrap msgid "" -"\n" +"\n" "\n" msgstr "" -"\n" +"\n" "\n" #. type: Plain text #: apt.ent:184 #, no-wrap msgid "" -"\n" "john@doe.org " -"in 2009,\n" -" 2010 and Daniela Acme daniela@acme.us in 2010 together " -"with the\n" -" Debian Dummy l10n Team debian-l10n-dummy@lists.debian.org" -".\n" +" The english translation was done by John Doe john@doe.org in 2009,\n" +" 2010 and Daniela Acme daniela@acme.us in 2010 together with the\n" +" Debian Dummy l10n Team debian-l10n-dummy@lists.debian.org.\n" "\">\n" msgstr "" "" -"a_monteiro@netcabo.pt de 2009 a 2012.\n" -" A tradução foi revista pela equipa de traduções portuguesas da Debian <" -"email>traduz@debianpt.org.\n" +" A tradução Portuguesa foi feita por Américo Monteiro a_monteiro@netcabo.pt de 2009 a 2012.\n" +" A tradução foi revista pela equipa de traduções portuguesas da Debian traduz@debianpt.org.\n" "\">\n" #. type: Plain text #: apt.ent:195 #, no-wrap msgid "" -"\n" "\n" msgstr "" -"\n" " " #. type: Content of: -#: apt.8.xml:25 apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 -#: apt-mark.8.xml:28 apt-secure.8.xml:27 apt-cdrom.8.xml:27 -#: apt-config.8.xml:28 +#: apt.8.xml:21 apt-get.8.xml:22 apt-cache.8.xml:22 apt-key.8.xml:21 +#: apt-mark.8.xml:22 apt-secure.8.xml:21 apt-cdrom.8.xml:21 +#: apt-config.8.xml:22 msgid "8" msgstr "8" #. type: Content of: -#: apt.8.xml:26 apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 -#: apt-mark.8.xml:29 apt-secure.8.xml:28 apt-cdrom.8.xml:28 -#: apt-config.8.xml:29 apt.conf.5.xml:34 apt_preferences.5.xml:28 -#: sources.list.5.xml:29 apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 -#: apt-ftparchive.1.xml:29 +#: apt.8.xml:22 apt-get.8.xml:23 apt-cache.8.xml:23 apt-key.8.xml:22 +#: apt-mark.8.xml:23 apt-secure.8.xml:22 apt-cdrom.8.xml:22 +#: apt-config.8.xml:23 apt.conf.5.xml:28 apt_preferences.5.xml:22 +#: sources.list.5.xml:23 apt-extracttemplates.1.xml:23 apt-sortpkgs.1.xml:23 +#: apt-ftparchive.1.xml:23 msgid "APT" msgstr "APT" #. type: Content of: -#: apt.8.xml:32 +#: apt.8.xml:28 msgid "command-line interface" msgstr "interface de linha de comandos" #. type: Content of: -#: apt.8.xml:37 apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 -#: apt-mark.8.xml:40 apt-secure.8.xml:52 apt-cdrom.8.xml:39 -#: apt-config.8.xml:40 apt.conf.5.xml:43 apt_preferences.5.xml:38 -#: sources.list.5.xml:38 apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 -#: apt-ftparchive.1.xml:40 +#: apt.8.xml:33 apt-get.8.xml:34 apt-cache.8.xml:34 apt-key.8.xml:33 +#: apt-mark.8.xml:34 apt-secure.8.xml:46 apt-cdrom.8.xml:33 +#: apt-config.8.xml:34 apt.conf.5.xml:37 apt_preferences.5.xml:32 +#: sources.list.5.xml:32 apt-extracttemplates.1.xml:34 apt-sortpkgs.1.xml:34 +#: apt-ftparchive.1.xml:34 msgid "Description" msgstr "Descrição" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:38 +#: apt.8.xml:34 msgid "" "<command>apt</command> (Advanced Package Tool) is the command-line tool for " "handling packages. It provides a commandline interface for the package " "management of the system. See also &apt-get; and &apt-cache; for more low-" "level command options." msgstr "" -"<command>apt</command> (Advanced Package Tool) é uma ferramenta de linha " -"de comandos para manuseamento de pacotes. Disponibiliza uma interface de " -"linha de comandos para a gestão de pacotes do sistema. Veja também " -"&apt-get; e &apt-cache; para mais opções de baixo nível dos comandos." +"<command>apt</command> (Advanced Package Tool) é uma ferramenta de linha de " +"comandos para manuseamento de pacotes. Disponibiliza uma interface de linha " +"de comandos para a gestão de pacotes do sistema. Veja também &apt-get; e " +"&apt-cache; para mais opções de baixo nível dos comandos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:47 +#: apt.8.xml:43 msgid "" "<literal>list</literal> is used to display a list of packages. It supports " "shell pattern for matching package names and the following options: " @@ -784,24 +711,21 @@ msgid "" "versions</option> are supported." msgstr "" "<literal>list</literal> é usado para mostrar uma lista de pacotes. Suporta " -"padrões da shell para corresponder aos nomes de pacotes e são suportadas " -"as seguintes opções <option>--installed</option>, " -"<option>--upgradable</option>, <option>--all-versions</option>." +"padrões da shell para corresponder aos nomes de pacotes e são suportadas as " +"seguintes opções <option>--installed</option>, <option>--upgradable</" +"option>, <option>--all-versions</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:58 +#: apt.8.xml:54 msgid "" "<literal>search</literal> searches for the given term(s) and display " "matching packages." msgstr "" -"<literal>search</literal> procura por termo(s) determinado(s) e mostra " -"os pacotes correspondentes." +"<literal>search</literal> procura por termo(s) determinado(s) e mostra os " +"pacotes correspondentes." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:64 -#| msgid "" -#| "<literal>rdepends</literal> shows a listing of each reverse dependency a " -#| "package has." +#: apt.8.xml:60 msgid "" "<literal>show</literal> shows the package information for the given " "package(s)." @@ -810,16 +734,16 @@ msgstr "" "determinado(s)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:71 +#: apt.8.xml:67 msgid "" "<literal>install</literal> is followed by one or more package names desired " "for installation or upgrading." msgstr "" -"<literal>install</literal> é seguido por um ou mais nomes de pacotes que " -"se deseja instalar ou actualizar." +"<literal>install</literal> é seguido por um ou mais nomes de pacotes que se " +"deseja instalar ou actualizar." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:75 apt-get.8.xml:118 +#: apt.8.xml:71 apt-get.8.xml:112 msgid "" "A specific version of a package can be selected for installation by " "following the package name with an equals and the version of the package to " @@ -836,7 +760,7 @@ msgstr "" "versão da distribuição ou o nome de Arquivo (stable, testing, unstable)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:85 apt-get.8.xml:153 +#: apt.8.xml:81 apt-get.8.xml:147 msgid "" "<literal>remove</literal> is identical to <literal>install</literal> except " "that packages are removed instead of installed. Note that removing a package " @@ -851,64 +775,67 @@ msgstr "" "pacote identificado será instalado em vez de removido." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:93 +#: apt.8.xml:89 msgid "" "<literal>edit-sources</literal> lets you edit your sources.list file and " "provides basic sanity checks." msgstr "" -"<literal>edit-sources</literal> permite-lhe editar o seu ficheiro " -"sources.list e disponibiliza verificações de sanidade básicas." +"<literal>edit-sources</literal> permite-lhe editar o seu ficheiro sources." +"list e disponibiliza verificações de sanidade básicas." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:99 -#| msgid "" -#| "<literal>showhold</literal> is used to print a list of packages on hold " -#| "in the same way as for the other show commands." +#: apt.8.xml:95 msgid "" "<literal>update</literal> is used to resynchronize the package index files " "from their sources." msgstr "" -"<literal>update</literal> é usado para re-sincronizar o índice dos pacotes " -"a partir das suas fontes." +"<literal>update</literal> é usado para re-sincronizar o índice dos pacotes a " +"partir das suas fontes." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:105 +#: apt.8.xml:101 +#, fuzzy +#| msgid "" +#| "<literal>upgrade</literal> is used to install the newest versions of all " +#| "packages currently installed on the system from the sources enumerated in " +#| "<filename>/etc/apt/sources.list</filename>. New package will be " +#| "installed, but existing package will never removed." msgid "" "<literal>upgrade</literal> is used to install the newest versions of all " "packages currently installed on the system from the sources enumerated in " -"<filename>/etc/apt/sources.list</filename>. New package will be installed, " -"but existing package will never removed." +"<filename>/etc/apt/sources.list</filename>. New packages will be installed, " +"but existing packages will never be removed." msgstr "" -"<literal>upgrade</literal> é usado para instalar as versões mais recentes " -"de todos os pacotes actualmente instalados no sistema a partir das fontes " +"<literal>upgrade</literal> é usado para instalar as versões mais recentes de " +"todos os pacotes actualmente instalados no sistema a partir das fontes " "enumeradas em <filename>/etc/apt/sources.list</filename>. Serão instalados " "novos pacotes, mas pacotes existentes nunca serão removidos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:114 +#: apt.8.xml:110 msgid "" "<literal>full-upgrade</literal> performs the function of upgrade but may " "also remove installed packages if that is required in order to resolve a " "package conflict." msgstr "" -"<literal>full-upgrade</literal> executa a função de upgrade mas pode " -"também remover pacotes instalados se tal for necessário de modo a resolver " -"um conflito de pacotes." +"<literal>full-upgrade</literal> executa a função de upgrade mas pode também " +"remover pacotes instalados se tal for necessário de modo a resolver um " +"conflito de pacotes." #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:124 apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 -#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 -#: apt-ftparchive.1.xml:506 +#: apt.8.xml:120 apt-get.8.xml:251 apt-cache.8.xml:244 apt-mark.8.xml:104 +#: apt-config.8.xml:80 apt-extracttemplates.1.xml:48 apt-sortpkgs.1.xml:44 +#: apt-ftparchive.1.xml:500 msgid "options" msgstr "opções" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:134 +#: apt.8.xml:130 msgid "Script usage" msgstr "Utilização de script" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:136 +#: apt.8.xml:132 msgid "" "The &apt; commandline is designed as a end-user tool and it may change the " "output between versions. While it tries to not break backward compatibility " @@ -917,19 +844,19 @@ msgid "" "commands in your scripts." msgstr "" "A linha de comandos do &apt; foi desenhada como ferramenta de utilizador " -"final e pode variar os textos mostrados entre versões. Apesar de tentar " -"não perder a compatibilidade com versões anteriores, não há garantia disso. " -"Todas as funcionalidades do &apt; estão disponíveis em &apt-cache; e " -"&apt-get; via opções do APT. Por favor dê preferência a usar estes comandos " -"nos seus scripts." +"final e pode variar os textos mostrados entre versões. Apesar de tentar não " +"perder a compatibilidade com versões anteriores, não há garantia disso. " +"Todas as funcionalidades do &apt; estão disponíveis em &apt-cache; e &apt-" +"get; via opções do APT. Por favor dê preferência a usar estes comandos nos " +"seus scripts." #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:144 +#: apt.8.xml:140 msgid "Differences to &apt-get;" msgstr "Diferenças para o &apt-get;" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:145 +#: apt.8.xml:141 msgid "" "The <command>apt</command> command is meant to be pleasant for end users and " "does not need to be backward compatible like &apt-get;. Therefore some " @@ -940,29 +867,26 @@ msgstr "" "anteriores como o &apt-get;. Por isso algumas opções são diferentes." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:151 -#| msgid "the <literal>Package:</literal> line" +#: apt.8.xml:147 msgid "The option <literal>DPkg::Progress-Fancy</literal> is enabled." msgstr "A opção <literal>DPkg::Progress-Fancy</literal> está activada." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:155 -#| msgid "the <literal>Component:</literal> line" +#: apt.8.xml:151 msgid "The option <literal>APT::Color</literal> is enabled." msgstr "A opção <literal>APT::Color</literal> está activada." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:159 +#: apt.8.xml:155 msgid "" "A new <literal>list</literal> command is available similar to <literal>dpkg " "--list</literal>." msgstr "" -"Está disponível um novo comando <literal>list</literal> de modo " -"semelhante a <literal>dpkg --list</literal>." +"Está disponível um novo comando <literal>list</literal> de modo semelhante a " +"<literal>dpkg --list</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:164 -#| msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" +#: apt.8.xml:160 msgid "" "The option <literal>upgrade</literal> has <literal>--with-new-pkgs</literal> " "enabled by default." @@ -971,20 +895,16 @@ msgstr "" "activado por predefinição." #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 -#: apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 -#: apt-config.8.xml:111 apt.conf.5.xml:1228 apt_preferences.5.xml:707 -#: sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 -#: apt-ftparchive.1.xml:609 +#: apt.8.xml:170 apt-get.8.xml:552 apt-cache.8.xml:346 apt-key.8.xml:191 +#: apt-mark.8.xml:127 apt-secure.8.xml:187 apt-cdrom.8.xml:148 +#: apt-config.8.xml:105 apt.conf.5.xml:1222 apt_preferences.5.xml:701 +#: sources.list.5.xml:274 apt-extracttemplates.1.xml:66 apt-sortpkgs.1.xml:59 +#: apt-ftparchive.1.xml:603 msgid "See Also" msgstr "Veja também" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:175 -#| msgid "" -#| "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " -#| "&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-" -#| "preferences;, the APT Howto." +#: apt.8.xml:171 msgid "" "&apt-get;, &apt-cache;, &sources-list;, &apt-conf;, &apt-config;, The APT " "User's guide in &guidesdir;, &apt-preferences;, the APT Howto." @@ -993,38 +913,29 @@ msgstr "" "utilizadores do The APT em &guidesdir;, &apt-preferences;, o Howto do APT." #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:180 apt-get.8.xml:564 apt-cache.8.xml:357 apt-mark.8.xml:137 -#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 -#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 +#: apt.8.xml:176 apt-get.8.xml:558 apt-cache.8.xml:351 apt-mark.8.xml:131 +#: apt-cdrom.8.xml:153 apt-config.8.xml:110 apt-extracttemplates.1.xml:70 +#: apt-sortpkgs.1.xml:63 apt-ftparchive.1.xml:607 msgid "Diagnostics" msgstr "Diagnóstico" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:181 -#| msgid "" -#| "<command>apt-get</command> returns zero on normal operation, decimal 100 " -#| "on error." +#: apt.8.xml:177 msgid "" "<command>apt</command> returns zero on normal operation, decimal 100 on " "error." msgstr "" -"<command>apt</command> devolve zero na operação normal, 100 decimal em " -"erro." +"<command>apt</command> devolve zero na operação normal, 100 decimal em erro." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-get.8.xml:35 +#: apt-get.8.xml:29 msgid "APT package handling utility -- command-line interface" msgstr "" "Utilitário de manuseamento de pacotes do APT -- interface de linha de " "comandos" #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:41 -#| msgid "" -#| "<command>apt-get</command> is the command-line tool for handling " -#| "packages, and may be considered the user's \"back-end\" to other tools " -#| "using the APT library. Several \"front-end\" interfaces exist, such as " -#| "&dselect;, &aptitude;, &synaptic; and &wajig;." +#: apt-get.8.xml:35 msgid "" "<command>apt-get</command> is the command-line tool for handling packages, " "and may be considered the user's \"back-end\" to other tools using the APT " @@ -1037,8 +948,8 @@ msgstr "" "\"front-end\" como o &aptitude;, &synaptic; e &wajig;." #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:46 apt-cache.8.xml:46 apt-cdrom.8.xml:53 apt-config.8.xml:46 -#: apt-ftparchive.1.xml:56 +#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-cdrom.8.xml:47 apt-config.8.xml:40 +#: apt-ftparchive.1.xml:50 msgid "" "Unless the <option>-h</option>, or <option>--help</option> option is given, " "one of the commands below must be present." @@ -1047,7 +958,7 @@ msgstr "" "fornecida, um dos comandos abaixo têm que estar presentes." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:51 +#: apt-get.8.xml:45 msgid "" "<literal>update</literal> is used to resynchronize the package index files " "from their sources. The indexes of available packages are fetched from the " @@ -1071,7 +982,7 @@ msgstr "" "ficheiros de pacotes não pode ser conhecido com antecedência." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:63 +#: apt-get.8.xml:57 msgid "" "<literal>upgrade</literal> is used to install the newest versions of all " "packages currently installed on the system from the sources enumerated in " @@ -1097,7 +1008,7 @@ msgstr "" "novas versões de pacotes." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:76 +#: apt-get.8.xml:70 msgid "" "<literal>dist-upgrade</literal> in addition to performing the function of " "<literal>upgrade</literal>, also intelligently handles changing dependencies " @@ -1122,7 +1033,7 @@ msgstr "" "sobrepor as definições gerais em pacotes individuais." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:89 +#: apt-get.8.xml:83 msgid "" "<literal>dselect-upgrade</literal> is used in conjunction with the " "traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</" @@ -1138,7 +1049,7 @@ msgstr "" "estado (por exemplo, a remoção de pacotes antigos e a instalação de novos)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:100 +#: apt-get.8.xml:94 msgid "" "<literal>install</literal> is followed by one or more packages desired for " "installation or upgrading. Each package is a package name, not a fully " @@ -1168,7 +1079,7 @@ msgstr "" "de resolução de conflitos do apt-get." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:125 +#: apt-get.8.xml:119 msgid "" "Both of the version selection mechanisms can downgrade packages and must be " "used with care." @@ -1177,7 +1088,7 @@ msgstr "" "e devem ser usados com cuidado." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:128 +#: apt-get.8.xml:122 msgid "" "This is also the target to use if you want to upgrade one or more already-" "installed packages without upgrading every package you have on your system. " @@ -1197,7 +1108,7 @@ msgstr "" "descarregadas e instaladas." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:139 +#: apt-get.8.xml:133 msgid "" "Finally, the &apt-preferences; mechanism allows you to create an alternative " "installation policy for individual packages." @@ -1206,7 +1117,7 @@ msgstr "" "instalação alternativa para pacotes individuais." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:143 +#: apt-get.8.xml:137 msgid "" "If no package matches the given expression and the expression contains one " "of '.', '?' or '*' then it is assumed to be a POSIX regular expression, and " @@ -1225,7 +1136,7 @@ msgstr "" "caractere '^' ou '$', para criar uma expressão regular mais específica." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:161 +#: apt-get.8.xml:155 msgid "" "<literal>purge</literal> is identical to <literal>remove</literal> except " "that packages are removed and purged (any configuration files are deleted " @@ -1236,7 +1147,7 @@ msgstr "" "configuração são também apagados)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:166 +#: apt-get.8.xml:160 msgid "" "<literal>source</literal> causes <command>apt-get</command> to fetch source " "packages. APT will examine the available packages to decide which source " @@ -1255,7 +1166,7 @@ msgstr "" "<literal>pkg/release</literal>, se possível." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:174 +#: apt-get.8.xml:168 msgid "" "Source packages are tracked separately from binary packages via <literal>deb-" "src</literal> lines in the &sources-list; file. This means that you will " @@ -1270,7 +1181,7 @@ msgstr "" "de fonte erradas (muito antigas/muito novas) ou mesmo nenhuma." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:180 +#: apt-get.8.xml:174 msgid "" "If the <option>--compile</option> option is specified then the package will " "be compiled to a binary .deb using <command>dpkg-buildpackage</command> for " @@ -1285,7 +1196,7 @@ msgstr "" "então o pacote fonte não será desempacotado." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:187 +#: apt-get.8.xml:181 msgid "" "A specific source version can be retrieved by postfixing the source name " "with an equals and then the version to fetch, similar to the mechanism used " @@ -1300,7 +1211,7 @@ msgstr "" "Only-Source</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:193 +#: apt-get.8.xml:187 msgid "" "Note that source packages are not installed and tracked in the " "<command>dpkg</command> database like binary packages; they are simply " @@ -1311,7 +1222,7 @@ msgstr "" "descarregados para o directório actual, como tarballs fonte." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:199 +#: apt-get.8.xml:193 msgid "" "<literal>build-dep</literal> causes apt-get to install/remove packages in an " "attempt to satisfy the build dependencies for a source package. By default " @@ -1326,7 +1237,7 @@ msgstr "" "arquitectura-anfitriã com a opção <option>--host-architecture</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:206 +#: apt-get.8.xml:200 msgid "" "<literal>check</literal> is a diagnostic tool; it updates the package cache " "and checks for broken dependencies." @@ -1335,7 +1246,7 @@ msgstr "" "de pacotes e verifica por dependências quebradas." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:211 +#: apt-get.8.xml:205 msgid "" "<literal>download</literal> will download the given binary package into the " "current directory." @@ -1344,15 +1255,7 @@ msgstr "" "directório actual." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:217 -#| msgid "" -#| "<literal>clean</literal> clears out the local repository of retrieved " -#| "package files. It removes everything but the lock file from " -#| "<filename>&cachedir;/archives/</filename> and <filename>&cachedir;/" -#| "archives/partial/</filename>. When APT is used as a &dselect; method, " -#| "<literal>clean</literal> is run automatically. Those who do not use " -#| "dselect will likely want to run <literal>apt-get clean</literal> from " -#| "time to time to free up disk space." +#: apt-get.8.xml:211 msgid "" "<literal>clean</literal> clears out the local repository of retrieved " "package files. It removes everything but the lock file from " @@ -1364,7 +1267,7 @@ msgstr "" "archives/</filename> e <filename>&cachedir;/archives/partial/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:224 +#: apt-get.8.xml:218 msgid "" "Like <literal>clean</literal>, <literal>autoclean</literal> clears out the " "local repository of retrieved package files. The difference is that it only " @@ -1383,7 +1286,7 @@ msgstr "" "pacotes instalados sejam apagados se estiver definida para 'off'." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:234 +#: apt-get.8.xml:228 msgid "" "<literal>autoremove</literal> is used to remove packages that were " "automatically installed to satisfy dependencies for other packages and are " @@ -1394,7 +1297,7 @@ msgstr "" "que já não são necessários." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:239 +#: apt-get.8.xml:233 msgid "" "<literal>changelog</literal> downloads a package changelog and displays it " "through <command>sensible-pager</command>. The server name and base " @@ -1417,7 +1320,7 @@ msgstr "" "para o comando <option>install</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:262 +#: apt-get.8.xml:256 msgid "" "Do not consider recommended packages as a dependency for installing. " "Configuration Item: <literal>APT::Install-Recommends</literal>." @@ -1426,7 +1329,7 @@ msgstr "" "de Configuração: <literal>APT::Install-Recommends</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:267 +#: apt-get.8.xml:261 msgid "" "Consider suggested packages as a dependency for installing. Configuration " "Item: <literal>APT::Install-Suggests</literal>." @@ -1435,7 +1338,7 @@ msgstr "" "Configuração: <literal>APT::Install-Suggests</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:272 +#: apt-get.8.xml:266 msgid "" "Download only; package files are only retrieved, not unpacked or installed. " "Configuration Item: <literal>APT::Get::Download-Only</literal>." @@ -1445,19 +1348,7 @@ msgstr "" "Download-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:277 -#| msgid "" -#| "Fix; attempt to correct a system with broken dependencies in place. This " -#| "option, when used with install/remove, can omit any packages to permit " -#| "APT to deduce a likely solution. If packages are specified, these have to " -#| "completely correct the problem. The option is sometimes necessary when " -#| "running APT for the first time; APT itself does not allow broken package " -#| "dependencies to exist on a system. It is possible that a system's " -#| "dependency structure can be so corrupt as to require manual intervention " -#| "(which usually means using &dselect; or <command>dpkg --remove</command> " -#| "to eliminate some of the offending packages). Use of this option together " -#| "with <option>-m</option> may produce an error in some situations. " -#| "Configuration Item: <literal>APT::Get::Fix-Broken</literal>." +#: apt-get.8.xml:271 msgid "" "Fix; attempt to correct a system with broken dependencies in place. This " "option, when used with install/remove, can omit any packages to permit APT " @@ -1485,7 +1376,7 @@ msgstr "" "<literal>APT::Get::Fix-Broken</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:292 +#: apt-get.8.xml:286 msgid "" "Ignore missing packages; if packages cannot be retrieved or fail the " "integrity check after retrieval (corrupted package files), hold back those " @@ -1504,7 +1395,7 @@ msgstr "" "de Configuração: <literal>APT::Get::Fix-Missing</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:303 +#: apt-get.8.xml:297 msgid "" "Disables downloading of packages. This is best used with <option>--ignore-" "missing</option> to force APT to use only the .debs it has already " @@ -1515,7 +1406,7 @@ msgstr "" "descarregados. Item de Configuração: <literal>APT::Get::Download</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:310 +#: apt-get.8.xml:304 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quiet up to a maximum of 2. You can also use " @@ -1535,7 +1426,7 @@ msgstr "" "<literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:325 +#: apt-get.8.xml:319 msgid "" "No action; perform a simulation of events that would occur but do not " "actually change the system. Configuration Item: <literal>APT::Get::" @@ -1546,7 +1437,7 @@ msgstr "" "Simulate</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:329 +#: apt-get.8.xml:323 msgid "" "Simulated runs performed as a user will automatically deactivate locking " "(<literal>Debug::NoLocking</literal>), and if the option <literal>APT::Get::" @@ -1565,7 +1456,7 @@ msgstr "" "avisos do <literal>apt-get</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:337 +#: apt-get.8.xml:331 msgid "" "Simulated runs print out a series of lines, each representing a " "<command>dpkg</command> operation: configure (<literal>Conf</literal>), " @@ -1580,7 +1471,7 @@ msgstr "" "indicam quebras que não têm consequência (raro)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:345 +#: apt-get.8.xml:339 msgid "" "Automatic yes to prompts; assume \"yes\" as answer to all prompts and run " "non-interactively. If an undesirable situation, such as changing a held " @@ -1596,7 +1487,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:353 +#: apt-get.8.xml:347 msgid "" "Automatic \"no\" to all prompts. Configuration Item: <literal>APT::Get::" "Assume-No</literal>." @@ -1605,7 +1496,7 @@ msgstr "" "<literal>APT::Get::Assume-No</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:358 +#: apt-get.8.xml:352 msgid "" "Show upgraded packages; print out a list of all packages that are to be " "upgraded. Configuration Item: <literal>APT::Get::Show-Upgraded</literal>." @@ -1615,7 +1506,7 @@ msgstr "" "Upgraded</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:364 +#: apt-get.8.xml:358 msgid "" "Show full versions for upgraded and installed packages. Configuration Item: " "<literal>APT::Get::Show-Versions</literal>." @@ -1624,14 +1515,7 @@ msgstr "" "Configuração: <literal>APT::Get::Show-Versions</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:370 -#| msgid "" -#| "This option controls the architecture packages are built for by " -#| "<command>apt-get source --compile</command> and how cross-" -#| "builddependencies are satisfied. By default is it not set which means " -#| "that the host architecture is the same as the build architecture (which " -#| "is defined by <literal>APT::Architecture</literal>). Configuration Item: " -#| "<literal>APT::Get::Host-Architecture</literal>" +#: apt-get.8.xml:364 msgid "" "This option controls the architecture packages are built for by <command>apt-" "get source --compile</command> and how cross-builddependencies are " @@ -1648,14 +1532,7 @@ msgstr "" "item de Configuração: <literal>APT::Get::Host-Architecture</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:380 -#| msgid "" -#| "This option controls the architecture packages are built for by " -#| "<command>apt-get source --compile</command> and how cross-" -#| "builddependencies are satisfied. By default is it not set which means " -#| "that the host architecture is the same as the build architecture (which " -#| "is defined by <literal>APT::Architecture</literal>). Configuration Item: " -#| "<literal>APT::Get::Host-Architecture</literal>" +#: apt-get.8.xml:374 msgid "" "This option controls the activated build profiles for which a source package " "is built by <command>apt-get source --compile</command> and how build " @@ -1664,14 +1541,14 @@ msgid "" "a comma. Configuration Item: <literal>APT::Build-Profiles</literal>." msgstr "" "Esta opção controla perfis de compilação activados pelos quais um pacote " -"fonte é compilado por <command>apt-get source --compile</command> e como " -"as dependências de compilação são satisfeitas. Por predefinição, nenhum " -"perfil de compilação está activo. Podem ser activados ao mesmo tempo mais " -"do que um perfil de compilação ao concatená-los com uma vírgula. Item de " -"configuração: <literal>APT::Build-Profiles</literal>." +"fonte é compilado por <command>apt-get source --compile</command> e como as " +"dependências de compilação são satisfeitas. Por predefinição, nenhum perfil " +"de compilação está activo. Podem ser activados ao mesmo tempo mais do que um " +"perfil de compilação ao concatená-los com uma vírgula. Item de configuração: " +"<literal>APT::Build-Profiles</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:391 +#: apt-get.8.xml:385 msgid "" "Compile source packages after downloading them. Configuration Item: " "<literal>APT::Get::Compile</literal>." @@ -1680,7 +1557,7 @@ msgstr "" "<literal>APT::Get::Compile</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:396 +#: apt-get.8.xml:390 msgid "" "Ignore package holds; this causes <command>apt-get</command> to ignore a " "hold placed on a package. This may be useful in conjunction with " @@ -1693,7 +1570,7 @@ msgstr "" "Item de Configuração: <literal>APT::Ignore-Hold</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:403 +#: apt-get.8.xml:397 msgid "" "Allow installing new packages when used in conjunction with " "<literal>upgrade</literal>. This is useful if the update of a installed " @@ -1705,14 +1582,14 @@ msgid "" msgstr "" "Permite a instalação de novos pacotes quando usado em conjunto com " "<literal>upgrade</literal>. Isto é útil se a actualização de um pacote " -"instalado requerer que sejam instaladas novas dependências. Em vez de " -"reter o pacote, o <literal>upgrade</literal>irá actualizar o pacote e " -"instalar as novas dependências. Note que <literal>upgrade</literal> com " -"esta opção nunca irá remover pacotes, apenas permitir adicionar novos. " -"Item de configuração: <literal>APT::Get::Upgrade-Allow-New</literal>." +"instalado requerer que sejam instaladas novas dependências. Em vez de reter " +"o pacote, o <literal>upgrade</literal>irá actualizar o pacote e instalar as " +"novas dependências. Note que <literal>upgrade</literal> com esta opção nunca " +"irá remover pacotes, apenas permitir adicionar novos. Item de configuração: " +"<literal>APT::Get::Upgrade-Allow-New</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:415 +#: apt-get.8.xml:409 msgid "" "Do not upgrade packages; when used in conjunction with <literal>install</" "literal>, <literal>no-upgrade</literal> will prevent packages on the command " @@ -1725,7 +1602,7 @@ msgstr "" "Configuração: <literal>APT::Get::Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:422 +#: apt-get.8.xml:416 msgid "" "Do not install new packages; when used in conjunction with <literal>install</" "literal>, <literal>only-upgrade</literal> will install upgrades for already " @@ -1738,7 +1615,7 @@ msgstr "" "Item de Configuração: <literal>APT::Get::Only-Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:430 +#: apt-get.8.xml:424 msgid "" "Force yes; this is a dangerous option that will cause apt to continue " "without prompting if it is doing something potentially harmful. It should " @@ -1753,7 +1630,7 @@ msgstr "" "<literal>APT::Get::force-yes</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:438 +#: apt-get.8.xml:432 msgid "" "Instead of fetching the files to install their URIs are printed. Each URI " "will have the path, the destination file name, the size and the expected MD5 " @@ -1774,7 +1651,7 @@ msgstr "" "Configuração: <literal>APT::Get::Print-URIs</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:449 +#: apt-get.8.xml:443 msgid "" "Use purge instead of remove for anything that would be removed. An asterisk " "(\"*\") will be displayed next to packages which are scheduled to be purged. " @@ -1787,7 +1664,7 @@ msgstr "" "option>. Item de Configuração: <literal>APT::Get::Purge</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:457 +#: apt-get.8.xml:451 msgid "" "Re-install packages that are already installed and at the newest version. " "Configuration Item: <literal>APT::Get::ReInstall</literal>." @@ -1796,7 +1673,7 @@ msgstr "" "Configuração: <literal>APT::Get::ReInstall</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:462 +#: apt-get.8.xml:456 msgid "" "This option is on by default; use <literal>--no-list-cleanup</literal> to " "turn it off. When it is on, <command>apt-get</command> will automatically " @@ -1813,7 +1690,7 @@ msgstr "" "fontes. Item de Configuração: <literal>APT::Get::List-Cleanup</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:472 +#: apt-get.8.xml:466 msgid "" "This option controls the default input to the policy engine; it creates a " "default pin at priority 990 using the specified release string. This " @@ -1836,7 +1713,7 @@ msgstr "" "Release</literal>; veja também o manual &apt-preferences;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:487 +#: apt-get.8.xml:481 msgid "" "Only perform operations that are 'trivial'. Logically this can be considered " "related to <option>--assume-yes</option>; where <option>--assume-yes</" @@ -1850,7 +1727,7 @@ msgstr "" "Trivial-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:494 +#: apt-get.8.xml:488 msgid "" "If any packages are to be removed apt-get immediately aborts without " "prompting. Configuration Item: <literal>APT::Get::Remove</literal>." @@ -1860,7 +1737,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:500 +#: apt-get.8.xml:494 msgid "" "If the command is either <literal>install</literal> or <literal>remove</" "literal>, then this option acts like running the <literal>autoremove</" @@ -1873,7 +1750,7 @@ msgstr "" "Configuração: <literal>APT::Get::AutomaticRemove</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:507 +#: apt-get.8.xml:501 msgid "" "Only has meaning for the <literal>source</literal> and <literal>build-dep</" "literal> commands. Indicates that the given source names are not to be " @@ -1892,7 +1769,7 @@ msgstr "" "<literal>APT::Get::Only-Source</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:518 +#: apt-get.8.xml:512 msgid "" "Download only the diff, dsc, or tar file of a source archive. Configuration " "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</" @@ -1903,7 +1780,7 @@ msgstr "" "Only</literal>, e <literal>APT::Get::Tar-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:524 +#: apt-get.8.xml:518 msgid "" "Only process architecture-dependent build-dependencies. Configuration Item: " "<literal>APT::Get::Arch-Only</literal>." @@ -1912,7 +1789,7 @@ msgstr "" "de Configuração: <literal>APT::Get::Arch-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:529 +#: apt-get.8.xml:523 msgid "" "Ignore if packages can't be authenticated and don't prompt about it. This " "is useful for tools like pbuilder. Configuration Item: <literal>APT::Get::" @@ -1923,7 +1800,7 @@ msgstr "" "Get::AllowUnauthenticated</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:535 +#: apt-get.8.xml:529 msgid "" "Show user friendly progress information in the terminal window when packages " "are installed, upgraded or removed. For a machine parsable version of this " @@ -1931,35 +1808,31 @@ msgid "" "Item: <literal>Dpkg::Progress</literal> and <literal>Dpkg::Progress-Fancy</" "literal>." msgstr "" -"Mostra informação de progresso compreensível para o utilizador na janela " -"de terminal quando os pacotes são instalados, actualizados ou removidos. " -"Para uma versão \"analisável por máquina\" destes dados veja o " -" README.progress-reporting no directório doc do apt. Item de Configuração: " -" <literal>Dpkg::Progress</literal> e <literal>Dpkg::Progress-Fancy</literal>." +"Mostra informação de progresso compreensível para o utilizador na janela de " +"terminal quando os pacotes são instalados, actualizados ou removidos. Para " +"uma versão \"analisável por máquina\" destes dados veja o README.progress-" +"reporting no directório doc do apt. Item de Configuração: <literal>Dpkg::" +"Progress</literal> e <literal>Dpkg::Progress-Fancy</literal>." #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 -#: apt.conf.5.xml:1222 apt_preferences.5.xml:700 +#: apt-get.8.xml:542 apt-cache.8.xml:339 apt-key.8.xml:170 apt-mark.8.xml:121 +#: apt.conf.5.xml:1216 apt_preferences.5.xml:694 msgid "Files" msgstr "Ficheiros" #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:559 -#| msgid "" -#| "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " -#| "&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-" -#| "preferences;, the APT Howto." +#: apt-get.8.xml:553 msgid "" "&apt-cache;, &apt-cdrom;, &dpkg;, &sources-list;, &apt-conf;, &apt-config;, " "&apt-secure;, The APT User's guide in &guidesdir;, &apt-preferences;, the " "APT Howto." msgstr "" "&apt-cache;, &apt-cdrom;, &dpkg;, &sources-list;, &apt-conf;, &apt-config;, " -"&apt-secure;, O guia de utilizadores do The APT em &guidesdir;, " -"&apt-preferences;, o Howto do APT." +"&apt-secure;, O guia de utilizadores do The APT em &guidesdir;, &apt-" +"preferences;, o Howto do APT." #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:565 +#: apt-get.8.xml:559 msgid "" "<command>apt-get</command> returns zero on normal operation, decimal 100 on " "error." @@ -1968,12 +1841,12 @@ msgstr "" "erro." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-cache.8.xml:35 +#: apt-cache.8.xml:29 msgid "query the APT cache" msgstr "pesquisa a cache do APT" #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:41 +#: apt-cache.8.xml:35 msgid "" "<command>apt-cache</command> performs a variety of operations on APT's " "package cache. <command>apt-cache</command> does not manipulate the state of " @@ -1986,7 +1859,7 @@ msgstr "" "a partir dos metadados do pacote." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:51 +#: apt-cache.8.xml:45 msgid "" "<literal>gencaches</literal> creates APT's package cache. This is done " "implicitly by all commands needing this cache if it is missing or outdated." @@ -1996,14 +1869,14 @@ msgstr "" "estiver em falta ou desactualizada." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-cache.8.xml:55 apt-cache.8.xml:144 apt-cache.8.xml:165 -#: apt-cache.8.xml:187 apt-cache.8.xml:192 apt-cache.8.xml:208 -#: apt-cache.8.xml:226 apt-cache.8.xml:238 +#: apt-cache.8.xml:49 apt-cache.8.xml:138 apt-cache.8.xml:159 +#: apt-cache.8.xml:181 apt-cache.8.xml:186 apt-cache.8.xml:202 +#: apt-cache.8.xml:220 apt-cache.8.xml:232 msgid "&synopsis-pkg;" msgstr "&synopsis-pkg;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:56 +#: apt-cache.8.xml:50 msgid "" "<literal>showpkg</literal> displays information about the packages listed on " "the command line. Remaining arguments are package names. The available " @@ -2027,7 +1900,7 @@ msgstr "" "ao seguinte:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> -#: apt-cache.8.xml:68 +#: apt-cache.8.xml:62 #, no-wrap msgid "" "Package: libreadline2\n" @@ -2053,7 +1926,7 @@ msgstr "" "Fornecimentos Reversos: \n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:80 +#: apt-cache.8.xml:74 msgid "" "Thus it may be seen that libreadline2, version 2.1-12, depends on libc5 and " "ncurses3.0 which must be installed for libreadline2 to work. In turn, " @@ -2072,7 +1945,7 @@ msgstr "" "consultar o código fonte do apt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:89 +#: apt-cache.8.xml:83 msgid "" "<literal>stats</literal> displays some statistics about the cache. No " "further arguments are expected. Statistics reported are:" @@ -2081,7 +1954,7 @@ msgstr "" "são esperados mais argumentos. As estatísticas reportadas são:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:92 +#: apt-cache.8.xml:86 msgid "" "<literal>Total package names</literal> is the number of package names found " "in the cache." @@ -2090,7 +1963,7 @@ msgstr "" "encontrados na cache." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:96 +#: apt-cache.8.xml:90 msgid "" "<literal>Normal packages</literal> is the number of regular, ordinary " "package names; these are packages that bear a one-to-one correspondence " @@ -2103,7 +1976,7 @@ msgstr "" "dependências. A maioria dos pacotes caem nesta categoria." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:102 +#: apt-cache.8.xml:96 msgid "" "<literal>Pure virtual packages</literal> is the number of packages that " "exist only as a virtual package name; that is, packages only \"provide\" the " @@ -2120,7 +1993,7 @@ msgstr "" "mas não existe um existe um pacote chamado \"mail-transport-agent\"." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:110 +#: apt-cache.8.xml:104 msgid "" "<literal>Single virtual packages</literal> is the number of packages with " "only one package providing a particular virtual package. For example, in the " @@ -2133,7 +2006,7 @@ msgstr "" "pacote, xless, disponibiliza \"X11-text-viewer\"." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:116 +#: apt-cache.8.xml:110 msgid "" "<literal>Mixed virtual packages</literal> is the number of packages that " "either provide a particular virtual package or have the virtual package name " @@ -2146,7 +2019,7 @@ msgstr "" "um pacote real, como também disponibilizado pelo pacote debconf-tiny." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:123 +#: apt-cache.8.xml:117 msgid "" "<literal>Missing</literal> is the number of package names that were " "referenced in a dependency but were not provided by any package. Missing " @@ -2162,7 +2035,7 @@ msgstr "" "declarações de Conflitos ou Breaks." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:130 +#: apt-cache.8.xml:124 msgid "" "<literal>Total distinct</literal> versions is the number of package versions " "found in the cache; this value is therefore at least equal to the number of " @@ -2177,7 +2050,7 @@ msgstr "" "consideravelmente maior que o número do total de nomes de pacotes." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:137 +#: apt-cache.8.xml:131 msgid "" "<literal>Total dependencies</literal> is the number of dependency " "relationships claimed by all of the packages in the cache." @@ -2186,7 +2059,7 @@ msgstr "" "dependências reivindicadas por todos os pacotes na cache." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:145 +#: apt-cache.8.xml:139 msgid "" "<literal>showsrc</literal> displays all the source package records that " "match the given package names. All versions are shown, as well as all " @@ -2198,7 +2071,7 @@ msgstr "" "pacote binário." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:151 +#: apt-cache.8.xml:145 msgid "" "<literal>dump</literal> shows a short listing of every package in the cache. " "It is primarily for debugging." @@ -2207,7 +2080,7 @@ msgstr "" "cache. É principalmente para depuração." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:156 +#: apt-cache.8.xml:150 msgid "" "<literal>dumpavail</literal> prints out an available list to stdout. This is " "suitable for use with &dpkg; and is used by the &dselect; method." @@ -2217,7 +2090,7 @@ msgstr "" "&dselect;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:161 +#: apt-cache.8.xml:155 msgid "" "<literal>unmet</literal> displays a summary of all unmet dependencies in the " "package cache." @@ -2226,7 +2099,7 @@ msgstr "" "insatisfeitas na cache do pacote." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:166 +#: apt-cache.8.xml:160 msgid "" "<literal>show</literal> performs a function similar to <command>dpkg --print-" "avail</command>; it displays the package records for the named packages." @@ -2235,12 +2108,12 @@ msgstr "" "print-avail</command>; mostra os registos do pacote para os pacotes nomeados." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-cache.8.xml:171 +#: apt-cache.8.xml:165 msgid "&synopsis-regex;" msgstr "&synopsis-regex;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:172 +#: apt-cache.8.xml:166 msgid "" "<literal>search</literal> performs a full text search on all available " "package lists for the POSIX regex pattern given, see ®ex;. It searches " @@ -2261,7 +2134,7 @@ msgstr "" "então não há procura na descrição longa, apenas no nome do pacote." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:183 +#: apt-cache.8.xml:177 msgid "" "Separate arguments can be used to specify multiple search patterns that are " "and'ed together." @@ -2270,7 +2143,7 @@ msgstr "" "busca os quais são lidados em conjunto." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:188 +#: apt-cache.8.xml:182 msgid "" "<literal>depends</literal> shows a listing of each dependency a package has " "and all the possible other packages that can fulfill that dependency." @@ -2280,7 +2153,7 @@ msgstr "" "dependência." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:193 +#: apt-cache.8.xml:187 msgid "" "<literal>rdepends</literal> shows a listing of each reverse dependency a " "package has." @@ -2289,12 +2162,12 @@ msgstr "" "que um pacote tem." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:197 +#: apt-cache.8.xml:191 msgid "<optional><replaceable>&synopsis-prefix;</replaceable></optional>" msgstr "<optional><replaceable>&synopsis-prefix;</replaceable></optional>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:198 +#: apt-cache.8.xml:192 msgid "" "This command prints the name of each package APT knows. The optional " "argument is a prefix match to filter the name list. The output is suitable " @@ -2309,7 +2182,7 @@ msgstr "" "opção <option>--generate</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:203 +#: apt-cache.8.xml:197 msgid "" "Note that a package which APT knows of is not necessarily available to " "download, installable or installed, e.g. virtual packages are also listed in " @@ -2320,7 +2193,7 @@ msgstr "" "também são listados na lista gerada." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:209 +#: apt-cache.8.xml:203 msgid "" "<literal>dotty</literal> takes a list of packages on the command line and " "generates output suitable for use by dotty from the <ulink url=\"http://www." @@ -2341,7 +2214,7 @@ msgstr "" "defina a opção <literal>APT::Cache::GivenOnly</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:218 +#: apt-cache.8.xml:212 msgid "" "The resulting nodes will have several shapes; normal packages are boxes, " "pure virtual packages are triangles, mixed virtual packages are diamonds, " @@ -2355,14 +2228,14 @@ msgstr "" "dependências, linhas verdes são conflitos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:223 +#: apt-cache.8.xml:217 msgid "Caution, dotty cannot graph larger sets of packages." msgstr "" "Atenção, o dotty não consegue fazer gráficos com grandes conjuntos de " "pacotes." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:227 +#: apt-cache.8.xml:221 msgid "" "The same as <literal>dotty</literal>, only for xvcg from the <ulink url=" "\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG tool</ulink>." @@ -2372,12 +2245,12 @@ msgstr "" "VCG</ulink>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:231 +#: apt-cache.8.xml:225 msgid "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>" msgstr "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:232 +#: apt-cache.8.xml:226 msgid "" "<literal>policy</literal> is meant to help debug issues relating to the " "preferences file. With no arguments it will print out the priorities of each " @@ -2390,7 +2263,7 @@ msgstr "" "acerca da selecção de prioridade do pacote nomeado." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:239 +#: apt-cache.8.xml:233 msgid "" "<literal>apt-cache</literal>'s <literal>madison</literal> command attempts " "to mimic the output format and a subset of the functionality of the Debian " @@ -2409,7 +2282,7 @@ msgstr "" "Architecture</literal>)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:255 +#: apt-cache.8.xml:249 msgid "" "Select the file to store the package cache. The package cache is the primary " "cache used by all operations. Configuration Item: <literal>Dir::Cache::" @@ -2420,7 +2293,7 @@ msgstr "" "<literal>Dir::Cache::pkgcache</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:261 +#: apt-cache.8.xml:255 msgid "" "Select the file to store the source cache. The source is used only by " "<literal>gencaches</literal> and it stores a parsed version of the package " @@ -2435,7 +2308,7 @@ msgstr "" "pacote. Item de Configuração: <literal>Dir::Cache::srcpkgcache</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:269 +#: apt-cache.8.xml:263 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quietness up to a maximum of 2. You can also use " @@ -2449,7 +2322,7 @@ msgstr "" "Configuração: <literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:276 +#: apt-cache.8.xml:270 msgid "" "Print only important dependencies; for use with <literal>unmet</literal> and " "<literal>depends</literal>. Causes only Depends and Pre-Depends relations to " @@ -2461,7 +2334,7 @@ msgstr "" "Important</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:290 +#: apt-cache.8.xml:284 msgid "" "Per default the <literal>depends</literal> and <literal>rdepends</literal> " "print all dependencies. This can be tweaked with these flags which will omit " @@ -2476,7 +2349,7 @@ msgstr "" "replaceable></literal> ex. <literal>APT::Cache::ShowRecommends</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:297 +#: apt-cache.8.xml:291 msgid "" "Print full package records when searching. Configuration Item: " "<literal>APT::Cache::ShowFull</literal>." @@ -2485,7 +2358,7 @@ msgstr "" "<literal>APT::Cache::ShowFull</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:302 +#: apt-cache.8.xml:296 msgid "" "Print full records for all available versions. This is the default; to turn " "it off, use <option>--no-all-versions</option>. If <option>--no-all-" @@ -2502,7 +2375,7 @@ msgstr "" "Configuração: <literal>APT::Cache::AllVersions</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:311 +#: apt-cache.8.xml:305 msgid "" "Perform automatic package cache regeneration, rather than use the cache as " "it is. This is the default; to turn it off, use <option>--no-generate</" @@ -2514,7 +2387,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:317 +#: apt-cache.8.xml:311 msgid "" "Only search on the package names, not the long descriptions. Configuration " "Item: <literal>APT::Cache::NamesOnly</literal>." @@ -2523,7 +2396,7 @@ msgstr "" "Configuração: <literal>APT::Cache::NamesOnly</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:322 +#: apt-cache.8.xml:316 msgid "" "Make <literal>pkgnames</literal> print all names, including virtual packages " "and missing dependencies. Configuration Item: <literal>APT::Cache::" @@ -2534,7 +2407,7 @@ msgstr "" "<literal>APT::Cache::AllNames</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:328 +#: apt-cache.8.xml:322 msgid "" "Make <literal>depends</literal> and <literal>rdepends</literal> recursive so " "that all packages mentioned are printed once. Configuration Item: " @@ -2545,7 +2418,7 @@ msgstr "" "Configuração <literal>APT::Cache::RecurseDepends</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:335 +#: apt-cache.8.xml:329 msgid "" "Limit the output of <literal>depends</literal> and <literal>rdepends</" "literal> to packages which are currently installed. Configuration Item: " @@ -2556,12 +2429,12 @@ msgstr "" "<literal>APT::Cache::Installed</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:353 +#: apt-cache.8.xml:347 msgid "&apt-conf;, &sources-list;, &apt-get;" msgstr "&apt-conf;, &sources-list;, &apt-get;" #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:358 +#: apt-cache.8.xml:352 msgid "" "<command>apt-cache</command> returns zero on normal operation, decimal 100 " "on error." @@ -2570,12 +2443,12 @@ msgstr "" "erro." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-key.8.xml:34 +#: apt-key.8.xml:28 msgid "APT key management utility" msgstr "Utilitário de gestão de chaves do APT" #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:41 +#: apt-key.8.xml:35 msgid "" "<command>apt-key</command> is used to manage the list of keys used by apt to " "authenticate packages. Packages which have been authenticated using these " @@ -2586,12 +2459,12 @@ msgstr "" "estas chaves serão considerados de confiança." #. type: Content of: <refentry><refsect1><title> -#: apt-key.8.xml:47 +#: apt-key.8.xml:41 msgid "Commands" msgstr "Comandos" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:52 +#: apt-key.8.xml:46 msgid "" "Add a new key to the list of trusted keys. The key is read from the " "filename given with the parameter &synopsis-param-filename; or if the " @@ -2602,32 +2475,32 @@ msgstr "" "se o nome do ficheiro for <literal>-</literal> a partir da entrada standard." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:65 +#: apt-key.8.xml:59 msgid "Remove a key from the list of trusted keys." msgstr "Remove uma chave da lista de chaves de confiança." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:76 +#: apt-key.8.xml:70 msgid "Output the key &synopsis-param-keyid; to standard output." msgstr "Escreve o &synopsis-param-keyid; da chave na saída standard." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:87 +#: apt-key.8.xml:81 msgid "Output all trusted keys to standard output." msgstr "Escreve todas as chaves de confiança na saída standard." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:98 +#: apt-key.8.xml:92 msgid "List trusted keys." msgstr "Lista as chaves de confiança." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:109 +#: apt-key.8.xml:103 msgid "List fingerprints of trusted keys." msgstr "Lista as fingerprints das chaves de confiança." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:120 +#: apt-key.8.xml:114 msgid "" "Pass advanced options to gpg. With adv --recv-key you can download the " "public key." @@ -2636,7 +2509,7 @@ msgstr "" "chave pública." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:132 +#: apt-key.8.xml:126 msgid "" "Update the local keyring with the archive keyring and remove from the local " "keyring the archive keys which are no longer valid. The archive keyring is " @@ -2649,7 +2522,7 @@ msgstr "" "por exemplo o pacote &keyring-package; em &keyring-distro;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:146 +#: apt-key.8.xml:140 msgid "" "Perform an update working similarly to the <command>update</command> command " "above, but get the archive keyring from a URI instead and validate it " @@ -2667,12 +2540,12 @@ msgstr "" "lo." #. type: Content of: <refentry><refsect1><title> -#: apt-key.8.xml:162 apt-cdrom.8.xml:82 +#: apt-key.8.xml:156 apt-cdrom.8.xml:76 msgid "Options" msgstr "Opções" #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:163 +#: apt-key.8.xml:157 msgid "" "Note that options need to be defined before the commands described in the " "previous section." @@ -2681,7 +2554,7 @@ msgstr "" "secção prévia." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:166 +#: apt-key.8.xml:160 msgid "" "With this option it is possible to specify a particular keyring file the " "command should operate on. The default is that a command is executed on the " @@ -2698,48 +2571,48 @@ msgstr "" "chaves são adicionadas a este." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:181 +#: apt-key.8.xml:175 msgid "<filename>/etc/apt/trustdb.gpg</filename>" msgstr "<filename>/etc/apt/trustdb.gpg</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:182 +#: apt-key.8.xml:176 msgid "Local trust database of archive keys." msgstr "Base de dados local de confiança de chaves de arquivos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:185 +#: apt-key.8.xml:179 msgid "&keyring-filename;" msgstr "&keyring-filename;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:186 +#: apt-key.8.xml:180 msgid "Keyring of &keyring-distro; archive trusted keys." msgstr "Chaveiro das chaves de confiança dos arquivos &keyring-distro;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:189 +#: apt-key.8.xml:183 msgid "&keyring-removed-filename;" msgstr "&keyring-removed-filename;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:190 +#: apt-key.8.xml:184 msgid "Keyring of &keyring-distro; archive removed trusted keys." msgstr "" "Chaveiro das chaves de confiança removidas dos arquivos &keyring-distro;." #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:199 +#: apt-key.8.xml:193 msgid "&apt-get;, &apt-secure;" msgstr "&apt-get;, &apt-secure;" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-mark.8.xml:35 +#: apt-mark.8.xml:29 msgid "mark/unmark a package as being automatically-installed" msgstr "marca/desmarca um pacote como sendo instalado automaticamente" #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:41 +#: apt-mark.8.xml:35 msgid "" "<command>apt-mark</command> will change whether a package has been marked as " "being automatically installed." @@ -2748,7 +2621,7 @@ msgstr "" "sendo instalado automaticamente." #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:45 +#: apt-mark.8.xml:39 msgid "" "When you request that a package is installed, and as a result other packages " "are installed to satisfy its dependencies, the dependencies are marked as " @@ -2764,7 +2637,7 @@ msgstr "" "command> ou <command>aptitude</command> (exemplos)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:54 +#: apt-mark.8.xml:48 msgid "" "<literal>auto</literal> is used to mark a package as being automatically " "installed, which will cause the package to be removed when no more manually " @@ -2775,7 +2648,7 @@ msgstr "" "pacote instalado manualmente depender deste pacote." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:62 +#: apt-mark.8.xml:56 msgid "" "<literal>manual</literal> is used to mark a package as being manually " "installed, which will prevent the package from being automatically removed " @@ -2786,7 +2659,7 @@ msgstr "" "se nenhum outro pacote depender dele." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:70 +#: apt-mark.8.xml:64 msgid "" "<literal>hold</literal> is used to mark a package as held back, which will " "prevent the package from being automatically installed, upgraded or " @@ -2801,7 +2674,7 @@ msgstr "" "pela opção <option>--file</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:80 +#: apt-mark.8.xml:74 msgid "" "<literal>unhold</literal> is used to cancel a previously set hold on a " "package to allow all actions again." @@ -2810,7 +2683,7 @@ msgstr "" "definido num pacote para permitir de novo todas as acções." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:86 +#: apt-mark.8.xml:80 msgid "" "<literal>showauto</literal> is used to print a list of automatically " "installed packages with each package on a new line. All automatically " @@ -2824,7 +2697,7 @@ msgstr "" "automaticamente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:94 +#: apt-mark.8.xml:88 msgid "" "<literal>showmanual</literal> can be used in the same way as " "<literal>showauto</literal> except that it will print a list of manually " @@ -2835,7 +2708,7 @@ msgstr "" "instalados manualmente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:101 +#: apt-mark.8.xml:95 msgid "" "<literal>showhold</literal> is used to print a list of packages on hold in " "the same way as for the other show commands." @@ -2844,7 +2717,7 @@ msgstr "" "retenção do mesmo modo que os outros comandos show." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:117 +#: apt-mark.8.xml:111 msgid "" "Read/Write package stats from the filename given with the parameter " "&synopsis-param-filename; instead of from the default location, which is " @@ -2857,7 +2730,7 @@ msgstr "" "directório definido pelo Item de Configuração: <literal>Dir::State</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:138 +#: apt-mark.8.xml:132 msgid "" "<command>apt-mark</command> returns zero on normal operation, non-zero on " "error." @@ -2866,12 +2739,12 @@ msgstr "" "erro." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-secure.8.xml:49 +#: apt-secure.8.xml:43 msgid "Archive authentication support for APT" msgstr "Suporte de autenticação de arquivos para o APT" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:54 +#: apt-secure.8.xml:48 msgid "" "Starting with version 0.6, <command>apt</command> contains code that does " "signature checking of the Release file for all archives. This ensures that " @@ -2884,7 +2757,7 @@ msgstr "" "não têm acesso à chave de assinatura do ficheiro Release." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:62 +#: apt-secure.8.xml:56 msgid "" "If a package comes from a archive without a signature, or with a signature " "that apt does not have a key for, that package is considered untrusted, and " @@ -2900,7 +2773,7 @@ msgstr "" "verificadas antes de descarregar pacotes delas." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:71 +#: apt-secure.8.xml:65 msgid "" "The package frontends &apt-get;, &aptitude; and &synaptic; support this new " "authentication feature." @@ -2909,12 +2782,12 @@ msgstr "" "nova funcionalidade de autenticação." #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:76 +#: apt-secure.8.xml:70 msgid "Trusted archives" msgstr "Arquivos de confiança" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:79 +#: apt-secure.8.xml:73 msgid "" "The chain of trust from an apt archive to the end user is made up of several " "steps. <command>apt-secure</command> is the last step in this chain; " @@ -2931,7 +2804,7 @@ msgstr "" "assegurar que a integridade do arquivo está correcta." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:87 +#: apt-secure.8.xml:81 msgid "" "apt-secure does not review signatures at a package level. If you require " "tools to do this you should look at <command>debsig-verify</command> and " @@ -2944,7 +2817,7 @@ msgstr "" "verify e devscripts respectivamente)." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:94 +#: apt-secure.8.xml:88 msgid "" "The chain of trust in Debian starts when a maintainer uploads a new package " "or a new version of a package to the Debian archive. In order to become " @@ -2962,7 +2835,7 @@ msgstr "" "para assegurar a identidade do dono da chave." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:104 +#: apt-secure.8.xml:98 msgid "" "Once the uploaded package is verified and included in the archive, the " "maintainer signature is stripped off, and checksums of the package are " @@ -2984,7 +2857,7 @@ msgstr "" "package;." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:115 +#: apt-secure.8.xml:109 msgid "" "End users can check the signature of the Release file, extract a checksum of " "a package from it and compare it with the checksum of the package they " @@ -2996,7 +2869,7 @@ msgstr "" "confiar no APT que faz isto automaticamente." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:120 +#: apt-secure.8.xml:114 msgid "" "Notice that this is distinct from checking signatures on a per package " "basis. It is designed to prevent two possible attacks:" @@ -3005,7 +2878,7 @@ msgstr "" "desenhado para prevenir dois ataques possíveis:" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:125 +#: apt-secure.8.xml:119 msgid "" "<literal>Network \"man in the middle\" attacks</literal>. Without signature " "checking, malicious agents can introduce themselves into the package " @@ -3020,7 +2893,7 @@ msgstr "" "um servidor impostor (através de ataques de fraude de ARP ou DNS)." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:133 +#: apt-secure.8.xml:127 msgid "" "<literal>Mirror network compromise</literal>. Without signature checking, a " "malicious agent can compromise a mirror host and modify the files in it to " @@ -3033,7 +2906,7 @@ msgstr "" "descarregam pacotes a partir dessa máquina." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:140 +#: apt-secure.8.xml:134 msgid "" "However, it does not defend against a compromise of the Debian master server " "itself (which signs the packages) or against a compromise of the key used to " @@ -3046,12 +2919,12 @@ msgstr "" "mecanismo pode complementar uma assinatura por-pacote." #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:146 +#: apt-secure.8.xml:140 msgid "User configuration" msgstr "Configuração do utilizador" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:148 +#: apt-secure.8.xml:142 msgid "" "<command>apt-key</command> is the program that manages the list of keys used " "by apt. It can be used to add or remove keys, although an installation of " @@ -3065,7 +2938,7 @@ msgstr "" "pacotes Debian." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:155 +#: apt-secure.8.xml:149 msgid "" "In order to add a new key you need to first download it (you should make " "sure you are using a trusted communication channel when retrieving it), add " @@ -3082,12 +2955,12 @@ msgstr "" "<filename>Release.gpg</filename> dos arquivos que você configurou." #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:164 +#: apt-secure.8.xml:158 msgid "Archive configuration" msgstr "Configuração de arquivos" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:166 +#: apt-secure.8.xml:160 msgid "" "If you want to provide archive signatures in an archive under your " "maintenance you have to:" @@ -3096,7 +2969,7 @@ msgstr "" "manutenção, você tem que:" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:171 +#: apt-secure.8.xml:165 msgid "" "<emphasis>Create a toplevel Release file</emphasis>, if it does not exist " "already. You can do this by running <command>apt-ftparchive release</" @@ -3107,7 +2980,7 @@ msgstr "" "command> (disponibilizado no apt-utils)." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:176 +#: apt-secure.8.xml:170 msgid "" "<emphasis>Sign it</emphasis>. You can do this by running <command>gpg --" "clearsign -o InRelease Release</command> and <command>gpg -abs -o Release." @@ -3118,7 +2991,7 @@ msgstr "" "gpg Release</command>." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:180 +#: apt-secure.8.xml:174 msgid "" "<emphasis>Publish the key fingerprint</emphasis>, that way your users will " "know what key they need to import in order to authenticate the files in the " @@ -3129,7 +3002,7 @@ msgstr "" "autenticar os ficheiros no arquivo." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:187 +#: apt-secure.8.xml:181 msgid "" "Whenever the contents of the archive change (new packages are added or " "removed) the archive maintainer has to follow the first two steps outlined " @@ -3140,7 +3013,7 @@ msgstr "" "previamente delineados." #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:195 +#: apt-secure.8.xml:189 msgid "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " "&debsign;, &debsig-verify;, &gpg;" @@ -3149,7 +3022,7 @@ msgstr "" "&debsign;, &debsig-verify;, &gpg;" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:199 +#: apt-secure.8.xml:193 msgid "" "For more background information you might want to review the <ulink url=" "\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7\">Debian " @@ -3166,12 +3039,12 @@ msgstr "" "ulink> de V. Alex Brennen." #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:212 +#: apt-secure.8.xml:206 msgid "Manpage Authors" msgstr "Autores do manual" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:214 +#: apt-secure.8.xml:208 msgid "" "This man-page is based on the work of Javier Fernández-Sanguino Peña, Isaac " "Jones, Colin Walters, Florian Weimer and Michael Vogt." @@ -3180,12 +3053,12 @@ msgstr "" "Jones, Colin Walters, Florian Weimer e Michael Vogt." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-cdrom.8.xml:34 +#: apt-cdrom.8.xml:28 msgid "APT CD-ROM management utility" msgstr "Utilitário de gestão de CD-ROM do APT" #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:40 +#: apt-cdrom.8.xml:34 msgid "" "<command>apt-cdrom</command> is used to add a new CD-ROM to APT's list of " "available sources. <command>apt-cdrom</command> takes care of determining " @@ -3198,7 +3071,7 @@ msgstr "" "e verificar os ficheiros de índice." #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:47 +#: apt-cdrom.8.xml:41 msgid "" "It is necessary to use <command>apt-cdrom</command> to add CDs to the APT " "system; it cannot be done by hand. Furthermore each disc in a multi-CD set " @@ -3210,7 +3083,7 @@ msgstr "" "conta possíveis falhas." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:58 +#: apt-cdrom.8.xml:52 msgid "" "<literal>add</literal> is used to add a new disc to the source list. It will " "unmount the CD-ROM device, prompt for a disc to be inserted and then proceed " @@ -3225,7 +3098,7 @@ msgstr "" "lhe-à pedido um título descritivo." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:66 +#: apt-cdrom.8.xml:60 msgid "" "APT uses a CD-ROM ID to track which disc is currently in the drive and " "maintains a database of these IDs in <filename>&statedir;/cdroms.list</" @@ -3236,7 +3109,7 @@ msgstr "" "list</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:74 +#: apt-cdrom.8.xml:68 msgid "" "A debugging tool to report the identity of the current disc as well as the " "stored file name" @@ -3245,22 +3118,18 @@ msgstr "" "assim como o nome de ficheiro armazenado" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:87 -#| msgid "" -#| "Mount point; specify the location to mount the CD-ROM. This mount point " -#| "must be listed in <filename>/etc/fstab</filename> and properly " -#| "configured. Configuration Item: <literal>Acquire::cdrom::mount</literal>." +#: apt-cdrom.8.xml:81 msgid "" "Do not try to auto-detect the CD-ROM path. Usually combined with the " "<option>--cdrom</option> option. Configuration Item: <literal>Acquire::" "cdrom::AutoDetect</literal>." msgstr "" -"Não tente a auto-detecção do caminho do CD-ROM. Normalmente combinada " -"com a opção <option>--cdrom</option>. Item de Configuração: " -"<literal>Acquire::cdrom::AutoDetect</literal>." +"Não tente a auto-detecção do caminho do CD-ROM. Normalmente combinada com a " +"opção <option>--cdrom</option>. Item de Configuração: <literal>Acquire::" +"cdrom::AutoDetect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:95 +#: apt-cdrom.8.xml:89 msgid "" "Mount point; specify the location to mount the CD-ROM. This mount point must " "be listed in <filename>/etc/fstab</filename> and properly configured. " @@ -3272,7 +3141,7 @@ msgstr "" "mount</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:104 +#: apt-cdrom.8.xml:98 msgid "" "Rename a disc; change the label of a disc or override the disc's given " "label. This option will cause <command>apt-cdrom</command> to prompt for a " @@ -3284,7 +3153,7 @@ msgstr "" "CDROM::Rename</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:113 +#: apt-cdrom.8.xml:107 msgid "" "No mounting; prevent <command>apt-cdrom</command> from mounting and " "unmounting the mount point. Configuration Item: <literal>APT::CDROM::" @@ -3295,7 +3164,7 @@ msgstr "" "NoMount</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:121 +#: apt-cdrom.8.xml:115 msgid "" "Fast Copy; Assume the package files are valid and do not check every " "package. This option should be used only if <command>apt-cdrom</command> has " @@ -3308,7 +3177,7 @@ msgstr "" "configuração: <literal>APT::CDROM::Fast</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:131 +#: apt-cdrom.8.xml:125 msgid "" "Thorough Package Scan; This option may be needed with some old Debian " "1.1/1.2 discs that have Package files in strange places. It takes much " @@ -3319,7 +3188,7 @@ msgstr "" "estranhos. Demora muito mais tempo a sondar o CD mas irá apanhá-los a todos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:142 +#: apt-cdrom.8.xml:136 msgid "" "No Changes; Do not change the &sources-list; file and do not write index " "files. Everything is still checked however. Configuration Item: " @@ -3330,12 +3199,12 @@ msgstr "" "configuração: <literal>APT::CDROM::NoAct</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:155 +#: apt-cdrom.8.xml:149 msgid "&apt-conf;, &apt-get;, &sources-list;" msgstr "&apt-conf;, &apt-get;, &sources-list;" #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:160 +#: apt-cdrom.8.xml:154 msgid "" "<command>apt-cdrom</command> returns zero on normal operation, decimal 100 " "on error." @@ -3344,12 +3213,12 @@ msgstr "" "erro." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-config.8.xml:35 +#: apt-config.8.xml:29 msgid "APT Configuration Query program" msgstr "Programa de Consulta de Configuração do APT" #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:41 +#: apt-config.8.xml:35 msgid "" "<command>apt-config</command> is an internal program used by various " "portions of the APT suite to provide consistent configurability. It accesses " @@ -3362,7 +3231,7 @@ msgstr "" "um modo que é fácil de usar para aplicações em script." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:53 +#: apt-config.8.xml:47 msgid "" "shell is used to access the configuration information from a shell script. " "It is given pairs of arguments, the first being a shell variable and the " @@ -3377,7 +3246,7 @@ msgstr "" "script shell deverá ser usado como se segue:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> -#: apt-config.8.xml:61 +#: apt-config.8.xml:55 #, no-wrap msgid "" "OPTS=\"-f\"\n" @@ -3389,7 +3258,7 @@ msgstr "" "eval $RES\n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:66 +#: apt-config.8.xml:60 msgid "" "This will set the shell environment variable $OPTS to the value of MyApp::" "options with a default of <option>-f</option>." @@ -3398,7 +3267,7 @@ msgstr "" "options com uma predefinição de <option>-f</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:70 +#: apt-config.8.xml:64 msgid "" "The configuration item may be postfixed with a /[fdbi]. f returns file " "names, d returns directories, b returns true or false and i returns an " @@ -3410,12 +3279,12 @@ msgstr "" "verificado internamente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:79 +#: apt-config.8.xml:73 msgid "Just show the contents of the configuration space." msgstr "Apenas mostra o conteúdo do espaço de configuração." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:92 +#: apt-config.8.xml:86 msgid "" "Include options which have an empty value. This is the default, so use --no-" "empty to remove them from the output." @@ -3424,12 +3293,12 @@ msgstr "" "empty para removê-las dos resultados." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-config.8.xml:97 +#: apt-config.8.xml:91 msgid "%f "%v";%n" msgstr "%f "%v";%n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:98 +#: apt-config.8.xml:92 msgid "" "Defines the output of each config option. %t will be replaced with " "its individual name, %f with its full hierarchical name and %v " @@ -3447,13 +3316,13 @@ msgstr "" "pode ser escrito ao usar %%." #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:112 apt-extracttemplates.1.xml:73 apt-sortpkgs.1.xml:66 -#: apt-ftparchive.1.xml:610 +#: apt-config.8.xml:106 apt-extracttemplates.1.xml:67 apt-sortpkgs.1.xml:60 +#: apt-ftparchive.1.xml:604 msgid "&apt-conf;" msgstr "&apt-conf;" #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:117 +#: apt-config.8.xml:111 msgid "" "<command>apt-config</command> returns zero on normal operation, decimal 100 " "on error." @@ -3462,27 +3331,27 @@ msgstr "" "em erro." #. type: Content of: <refentry><refentryinfo><author><contrib> -#: apt.conf.5.xml:22 +#: apt.conf.5.xml:16 msgid "Initial documentation of Debug::*." msgstr "Documentação inicial do Debug::*." #. type: Content of: <refentry><refentryinfo><author><email> -#: apt.conf.5.xml:23 +#: apt.conf.5.xml:17 msgid "dburrows@debian.org" msgstr "dburrows@debian.org" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt.conf.5.xml:33 apt_preferences.5.xml:27 sources.list.5.xml:28 +#: apt.conf.5.xml:27 apt_preferences.5.xml:21 sources.list.5.xml:22 msgid "5" msgstr "5" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt.conf.5.xml:40 +#: apt.conf.5.xml:34 msgid "Configuration file for APT" msgstr "Ficheiro de configuração para o APT" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:44 +#: apt.conf.5.xml:38 msgid "" "<filename>/etc/apt/apt.conf</filename> is the main configuration file shared " "by all the tools in the APT suite of tools, though it is by no means the " @@ -3496,7 +3365,7 @@ msgstr "" "para disponibilizar um ambiente uniforme." #. type: Content of: <refentry><refsect1><orderedlist><para> -#: apt.conf.5.xml:50 +#: apt.conf.5.xml:44 msgid "" "When an APT tool starts up it will read the configuration files in the " "following order:" @@ -3505,7 +3374,7 @@ msgstr "" "seguinte ordem:" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:52 +#: apt.conf.5.xml:46 msgid "" "the file specified by the <envar>APT_CONFIG</envar> environment variable (if " "any)" @@ -3514,7 +3383,7 @@ msgstr "" "(se existir)" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:54 +#: apt.conf.5.xml:48 msgid "" "all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending " "order which have either no or \"<literal>conf</literal>\" as filename " @@ -3533,7 +3402,7 @@ msgstr "" "literal> - que então nesse caso será ignorado em silêncio." #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:61 +#: apt.conf.5.xml:55 msgid "" "the main configuration file specified by <literal>Dir::Etc::main</literal>" msgstr "" @@ -3541,7 +3410,7 @@ msgstr "" "main</literal>" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:63 +#: apt.conf.5.xml:57 msgid "" "the command line options are applied to override the configuration " "directives or to load even more configuration files." @@ -3550,12 +3419,12 @@ msgstr "" "configuração ou para carregar mais ficheiros de configuração." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:67 +#: apt.conf.5.xml:61 msgid "Syntax" msgstr "Sintaxe" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:68 +#: apt.conf.5.xml:62 msgid "" "The configuration file is organized in a tree with options organized into " "functional groups. Option specification is given with a double colon " @@ -3570,7 +3439,7 @@ msgstr "" "ferramenta Get. A opções não herdam dos seus grupos parentes." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:74 +#: apt.conf.5.xml:68 msgid "" "Syntactically the configuration language is modeled after what the ISC tools " "such as bind and dhcp use. Lines starting with <literal>//</literal> are " @@ -3595,7 +3464,7 @@ msgstr "" "\"/-:._+\". Um novo scope pode ser aberto com chavetas, assim:" #. type: Content of: <refentry><refsect1><informalexample><programlisting> -#: apt.conf.5.xml:87 +#: apt.conf.5.xml:81 #, no-wrap msgid "" "APT {\n" @@ -3613,7 +3482,7 @@ msgstr "" "};\n" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:95 +#: apt.conf.5.xml:89 msgid "" "with newlines placed to make it more readable. Lists can be created by " "opening a scope and including a single string enclosed in quotes followed by " @@ -3625,13 +3494,13 @@ msgstr "" "por um ponto e vírgula (;)." #. type: Content of: <refentry><refsect1><informalexample><programlisting> -#: apt.conf.5.xml:100 +#: apt.conf.5.xml:94 #, no-wrap msgid "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" msgstr "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:103 +#: apt.conf.5.xml:97 msgid "" "In general the sample configuration file &configureindex; is a good guide " "for how it should look." @@ -3640,7 +3509,7 @@ msgstr "" "guia de como deve ficar." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:106 +#: apt.conf.5.xml:100 msgid "" "Case is not significant in names of configuration items, so in the previous " "example you could use <literal>dpkg::pre-install-pkgs</literal>." @@ -3650,7 +3519,7 @@ msgstr "" "pre-install-pkgs</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:109 +#: apt.conf.5.xml:103 msgid "" "Names for the configuration items are optional if a list is defined as can " "be seen in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. If " @@ -3666,7 +3535,7 @@ msgstr "" "opção." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:114 +#: apt.conf.5.xml:108 msgid "" "Two special commands are defined: <literal>#include</literal> (which is " "deprecated and not supported by alternative implementations) and " @@ -3686,7 +3555,7 @@ msgstr "" "acabar com um 'ponto e vírgula' (;) .)" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:124 +#: apt.conf.5.xml:118 msgid "" "The <literal>#clear</literal> command is the only way to delete a list or a " "complete scope. Reopening a scope (or using the syntax described below with " @@ -3702,7 +3571,7 @@ msgstr "" "sobrepostos, apenas limpos." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:132 +#: apt.conf.5.xml:126 msgid "" "All of the APT tools take an -o option which allows an arbitrary " "configuration directive to be specified on the command line. The syntax is a " @@ -3721,7 +3590,7 @@ msgstr "" "ser usada na linha de comandos.)" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:140 +#: apt.conf.5.xml:134 msgid "" "Note that appending items to a list using <literal>::</literal> only works " "for one item per line, and that you should not use it in combination with " @@ -3751,12 +3620,12 @@ msgstr "" "explicitamente delas." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:155 +#: apt.conf.5.xml:149 msgid "The APT Group" msgstr "O Grupo APT" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:156 +#: apt.conf.5.xml:150 msgid "" "This group of options controls general APT behavior as well as holding the " "options for all of the tools." @@ -3765,7 +3634,7 @@ msgstr "" "as opções para todas as ferramentas." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:161 +#: apt.conf.5.xml:155 msgid "" "System Architecture; sets the architecture to use when fetching files and " "parsing package lists. The internal default is the architecture apt was " @@ -3776,7 +3645,7 @@ msgstr "" "qual o APT foi compilado." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:168 +#: apt.conf.5.xml:162 msgid "" "All Architectures the system supports. For instance, CPUs implementing the " "<literal>amd64</literal> (also called <literal>x86-64</literal>) " @@ -3798,7 +3667,7 @@ msgstr "" "<command>dpkg --add-architecture</command>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:182 +#: apt.conf.5.xml:176 msgid "" "List of all build profiles enabled for build-dependency resolution, without " "the \"<literal>profile.</literal>\" namespace prefix. By default this list " @@ -3807,12 +3676,11 @@ msgid "" msgstr "" "Lista todos os perfis de compilação activos para resolução de dependências " "de compilação, sem o prefixo \"<literal>profile.</literal>\" no espaço do " -"nome. Por predefinição esta lista está vazia. " -"O <envar>DEB_BUILD_PROFILES</envar> usado pelo &dpkg-buildpackage; " -"sobrepõe a notação da lista." +"nome. Por predefinição esta lista está vazia. O <envar>DEB_BUILD_PROFILES</" +"envar> usado pelo &dpkg-buildpackage; sobrepõe a notação da lista." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:190 +#: apt.conf.5.xml:184 msgid "" "Default release to install packages from if more than one version is " "available. Contains release name, codename or release version. Examples: " @@ -3825,7 +3693,7 @@ msgstr "" "'&testing-codename;', '4.0', '5.0*'. Veja também &apt-preferences;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:196 +#: apt.conf.5.xml:190 msgid "" "Ignore held packages; this global option causes the problem resolver to " "ignore held packages in its decision making." @@ -3834,7 +3702,7 @@ msgstr "" "os pacotes segurados sejam ignorados na sua decisão de marcação." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:201 +#: apt.conf.5.xml:195 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " @@ -3848,7 +3716,7 @@ msgstr "" "directo de os reinstalar." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:209 +#: apt.conf.5.xml:203 msgid "" "Defaults to on, which will cause APT to install essential and important " "packages as soon as possible in an install/upgrade operation, in order to " @@ -3875,7 +3743,7 @@ msgstr "" "de A não está mais satisfeita." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:221 +#: apt.conf.5.xml:215 msgid "" "The immediate configuration marker is also applied in the potentially " "problematic case of circular dependencies, since a dependency with the " @@ -3904,7 +3772,7 @@ msgstr "" "que pode ajudar a prevenir." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:234 +#: apt.conf.5.xml:228 msgid "" "Before a big operation like <literal>dist-upgrade</literal> is run with this " "option disabled you should try to explicitly <literal>install</literal> the " @@ -3921,7 +3789,7 @@ msgstr "" "eles possa trabalhar em melhorar ou corrigir o processo de actualização." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:245 +#: apt.conf.5.xml:239 msgid "" "Never enable this option unless you <emphasis>really</emphasis> know what " "you are doing. It permits APT to temporarily remove an essential package to " @@ -3942,7 +3810,7 @@ msgstr "" "command> ou nada de que esses pacotes dependam." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:257 +#: apt.conf.5.xml:251 msgid "" "APT uses since version 0.7.26 a resizable memory mapped cache file to store " "the available information. <literal>Cache-Start</literal> acts as a hint of " @@ -3979,13 +3847,13 @@ msgstr "" "da cache é desactivado." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:273 +#: apt.conf.5.xml:267 msgid "Defines which packages are considered essential build dependencies." msgstr "" "Define quais pacotes são considerados dependências essenciais de compilação." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:277 +#: apt.conf.5.xml:271 msgid "" "The Get subsection controls the &apt-get; tool; please see its documentation " "for more information about the options here." @@ -3994,7 +3862,7 @@ msgstr "" "documentação para mais informação acerca das opções daqui." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:282 +#: apt.conf.5.xml:276 msgid "" "The Cache subsection controls the &apt-cache; tool; please see its " "documentation for more information about the options here." @@ -4003,7 +3871,7 @@ msgstr "" "documentação para mais informação acerca das opções daqui." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:287 +#: apt.conf.5.xml:281 msgid "" "The CDROM subsection controls the &apt-cdrom; tool; please see its " "documentation for more information about the options here." @@ -4012,12 +3880,12 @@ msgstr "" "documentação para mais informação acerca das opções de aqui." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:293 +#: apt.conf.5.xml:287 msgid "The Acquire Group" msgstr "O Grupo Acquire" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:294 +#: apt.conf.5.xml:288 msgid "" "The <literal>Acquire</literal> group of options controls the download of " "packages as well as the various \"acquire methods\" responsible for the " @@ -4028,7 +3896,7 @@ msgstr "" "descarga (veja também &sources-list;)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:301 +#: apt.conf.5.xml:295 msgid "" "Security related option defaulting to true, as giving a Release file's " "validation an expiration date prevents replay attacks over a long timescale, " @@ -4050,7 +3918,7 @@ msgstr "" "seguinte." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:314 +#: apt.conf.5.xml:308 msgid "" "Maximum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -4070,7 +3938,7 @@ msgstr "" "nome da opção." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:326 +#: apt.conf.5.xml:320 msgid "" "Minimum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -4090,7 +3958,7 @@ msgstr "" "arquivo ao nome da opção." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:338 +#: apt.conf.5.xml:332 msgid "" "Try to download deltas called <literal>PDiffs</literal> for indexes (like " "<filename>Packages</filename> files) instead of downloading whole ones. True " @@ -4101,7 +3969,7 @@ msgstr "" "por inteiro. Verdadeiro por predefinição." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:341 +#: apt.conf.5.xml:335 msgid "" "Two sub-options to limit the use of PDiffs are also available: " "<literal>FileLimit</literal> can be used to specify a maximum number of " @@ -4119,7 +3987,7 @@ msgstr "" "completo em vez das patches." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:351 +#: apt.conf.5.xml:345 msgid "" "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" "literal> or <literal>access</literal> which determines how APT parallelizes " @@ -4134,7 +4002,7 @@ msgstr "" "aberta uma ligação por tipo de URI." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:359 +#: apt.conf.5.xml:353 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." @@ -4143,7 +4011,7 @@ msgstr "" "tentar, no número fornecido de vezes, obter ficheiros falhados." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:364 +#: apt.conf.5.xml:358 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." @@ -4153,7 +4021,7 @@ msgstr "" "A predefinição é verdadeiro." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:369 +#: apt.conf.5.xml:363 msgid "" "<literal>http::Proxy</literal> sets the default proxy to use for HTTP URIs. " "It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</" @@ -4172,7 +4040,7 @@ msgstr "" "variável de ambiente <envar>http_proxy</envar>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:377 +#: apt.conf.5.xml:371 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy not to use its cached " @@ -4192,7 +4060,7 @@ msgstr "" "(grandes) ficheiros .deb." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:387 apt.conf.5.xml:475 +#: apt.conf.5.xml:381 apt.conf.5.xml:469 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method; this value applies to the connection as well as the data timeout." @@ -4202,7 +4070,7 @@ msgstr "" "dados." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:390 +#: apt.conf.5.xml:384 msgid "" "The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e." @@ -4221,7 +4089,7 @@ msgstr "" "web e proxies que escolheram não respeitar a especificação HTTP/1.1." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:397 +#: apt.conf.5.xml:391 msgid "" "<literal>Acquire::http::AllowRedirect</literal> controls whether APT will " "follow redirects, which is enabled by default." @@ -4230,13 +4098,7 @@ msgstr "" "os redireccionamentos, o que está activo por predefinição." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:400 -#| msgid "" -#| "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" -#| "literal> which accepts integer values in kilobytes. The default value is " -#| "0 which deactivates the limit and tries to use all available bandwidth " -#| "(note that this option implicitly disables downloading from multiple " -#| "servers at the same time.)" +#: apt.conf.5.xml:394 msgid "" "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" "literal> which accepts integer values in kilobytes per second. The default " @@ -4247,11 +4109,11 @@ msgstr "" "A largura de banda usada pode ser limitada com <literal>Acquire::http::Dl-" "Limit</literal> que aceita valores inteiros em kilobytes por segundo. O " "valor predefinido é 0 que desactiva o limite e tenta usar toda a largura de " -"banda disponível. Note que esta opção implicitamente desactiva a descarga " -"a partir de múltiplos servidores ao mesmo tempo." +"banda disponível. Note que esta opção implicitamente desactiva a descarga a " +"partir de múltiplos servidores ao mesmo tempo." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:407 +#: apt.conf.5.xml:401 msgid "" "<literal>Acquire::http::User-Agent</literal> can be used to set a different " "User-Agent for the http download method as some proxies allow access for " @@ -4263,7 +4125,7 @@ msgstr "" "identificador conhecido." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:411 +#: apt.conf.5.xml:405 msgid "" "<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify " "an external command to discover the http proxy to use. Apt expects the " @@ -4279,14 +4141,14 @@ msgstr "" "especificar um comando externo para descobrir o proxy http a usar. O apt " "espera que o comando forneça o resultado do proxy no stdout ao estilo " "<literal>http://proxy:port/</literal>. Isto irá sobrepor o <literal>Acquire::" -"http::Proxy</literal> genérico mas não qualquer configuração especifica " -"da máquina proxy definida via <literal>Acquire::http::Proxy::$HOST</" -"literal>. Veja o pacote &squid-deb-proxy-client; para um exemplo de " -"implementação que usa avahi. Esta opção toma precedência sobre " -"o nome de opção antigo <literal>ProxyAutoDetect</literal>." +"http::Proxy</literal> genérico mas não qualquer configuração especifica da " +"máquina proxy definida via <literal>Acquire::http::Proxy::$HOST</literal>. " +"Veja o pacote &squid-deb-proxy-client; para um exemplo de implementação que " +"usa avahi. Esta opção toma precedência sobre o nome de opção antigo " +"<literal>ProxyAutoDetect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:429 +#: apt.conf.5.xml:423 msgid "" "The <literal>Cache-control</literal>, <literal>Timeout</literal>, " "<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and " @@ -4303,7 +4165,7 @@ msgstr "" "literal> ainda não é suportada." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:437 +#: apt.conf.5.xml:431 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is the " @@ -4342,7 +4204,7 @@ msgstr "" "host>::SslForceVersion</literal> é a opção 'por máquina' correspondente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:458 +#: apt.conf.5.xml:452 msgid "" "<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. " "It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</" @@ -4376,7 +4238,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:478 +#: apt.conf.5.xml:472 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on; it works in nearly every environment. However, " @@ -4392,7 +4254,7 @@ msgstr "" "específica (veja a amostra de ficheiro de configuração para exemplos)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:485 +#: apt.conf.5.xml:479 msgid "" "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" "envar> environment variable to an HTTP URL - see the discussion of the http " @@ -4406,7 +4268,7 @@ msgstr "" "eficiência." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:490 +#: apt.conf.5.xml:484 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@ -4421,13 +4283,13 @@ msgstr "" "ligações IPv4. Note que a maioria dos servidores FTP não suporta RFC2428." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:504 +#: apt.conf.5.xml:498 #, no-wrap msgid "/cdrom/::Mount \"foo\";" msgstr "/cdrom/::Mount \"foo\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:499 +#: apt.conf.5.xml:493 msgid "" "For URIs using the <literal>cdrom</literal> method, the only configurable " "option is the mount point, <literal>cdrom::Mount</literal>, which must be " @@ -4448,7 +4310,7 @@ msgstr "" "barra final. Comandos para desmontar podem ser especificados usando o UMount." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:512 +#: apt.conf.5.xml:506 msgid "" "For GPGV URIs the only configurable option is <literal>gpgv::Options</" "literal>, which passes additional parameters to gpgv." @@ -4457,17 +4319,13 @@ msgstr "" "literal>, a qual passa parâmetros adicionais ao gpgv." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:523 +#: apt.conf.5.xml:517 #, no-wrap -msgid "" -"Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<" -"replaceable>Methodname</replaceable>\";" -msgstr "" -"Acquire::CompressionTypes::<replaceable>Extensão de Ficheiro</replaceable> " -"\"<replaceable>Nome de método</replaceable>\";" +msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" +msgstr "Acquire::CompressionTypes::<replaceable>Extensão de Ficheiro</replaceable> \"<replaceable>Nome de método</replaceable>\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:518 +#: apt.conf.5.xml:512 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " @@ -4486,19 +4344,19 @@ msgstr "" "alterado. A sintaxe para isto é: <placeholder type=\"synopsis\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:528 +#: apt.conf.5.xml:522 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "Acquire::CompressionTypes::Order:: \"gz\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:531 +#: apt.conf.5.xml:525 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:524 +#: apt.conf.5.xml:518 msgid "" "Also, the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " @@ -4530,13 +4388,13 @@ msgstr "" "automaticamente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:538 +#: apt.conf.5.xml:532 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:533 +#: apt.conf.5.xml:527 msgid "" "Note that the <literal>Dir::Bin::<replaceable>Methodname</replaceable></" "literal> will be checked at run time. If this option has been set, the " @@ -4562,7 +4420,7 @@ msgstr "" "prefixar a lista com este tipo." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:543 +#: apt.conf.5.xml:537 msgid "" "The special type <literal>uncompressed</literal> can be used to give " "uncompressed files a preference, but note that most archives don't provide " @@ -4574,7 +4432,7 @@ msgstr "" "maioritariamente apenas para mirrors locais." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:550 +#: apt.conf.5.xml:544 msgid "" "When downloading <literal>gzip</literal> compressed indexes (Packages, " "Sources, or Translations), keep them gzip compressed locally instead of " @@ -4587,7 +4445,7 @@ msgstr "" "CPU quando constrói as caches de pacotes locais. Falso por predefinição." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:558 +#: apt.conf.5.xml:552 msgid "" "The Languages subsection controls which <filename>Translation</filename> " "files are downloaded and in which order APT tries to display the description-" @@ -4607,15 +4465,13 @@ msgstr "" "especialmenteraros." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting> -#: apt.conf.5.xml:575 +#: apt.conf.5.xml:569 #, no-wrap -msgid "" -"Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" -msgstr "" -"Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" +msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" +msgstr "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:563 +#: apt.conf.5.xml:557 msgid "" "The default list includes \"environment\" and \"en\". " "\"<literal>environment</literal>\" has a special meaning here: it will be " @@ -4654,7 +4510,7 @@ msgstr "" "\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:576 +#: apt.conf.5.xml:570 msgid "" "Note: To prevent problems resulting from APT being executed in different " "environments (e.g. by different users or by other programs) all Translation " @@ -4668,22 +4524,22 @@ msgstr "" "literal>\" implícito)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:585 +#: apt.conf.5.xml:579 msgid "When downloading, force to use only the IPv4 protocol." msgstr "Ao descarregar, força o uso exclusivo do protocolo IPv4." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:591 +#: apt.conf.5.xml:585 msgid "When downloading, force to use only the IPv6 protocol." msgstr "Ao descarregar, força o uso exclusivo do protocolo IPv6." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:598 +#: apt.conf.5.xml:592 msgid "Directories" msgstr "Directórios" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:600 +#: apt.conf.5.xml:594 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@ -4702,17 +4558,7 @@ msgstr "" "items que não começam com <filename>/</filename> ou <filename>./</filename>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:607 -#| msgid "" -#| "<literal>Dir::Cache</literal> contains locations pertaining to local " -#| "cache information, such as the two package caches <literal>srcpkgcache</" -#| "literal> and <literal>pkgcache</literal> as well as the location to place " -#| "downloaded archives, <literal>Dir::Cache::archives</literal>. Generation " -#| "of caches can be turned off by setting their names to the empty string. " -#| "This will slow down startup but save disk space. It is probably " -#| "preferable to turn off the pkgcache rather than the srcpkgcache. Like " -#| "<literal>Dir::State</literal> the default directory is contained in " -#| "<literal>Dir::Cache</literal>" +#: apt.conf.5.xml:601 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@ -4730,13 +4576,12 @@ msgstr "" "arquivos descarregados, <literal>Dir::Cache::archives</literal>. A geração " "de caches pode ser desligada ao definir <literal>pkgcache</literal> ou " "<literal>srcpkgcache</literal> para <literal>\"\"</literal>. Isto irá " -"abrandar " -"o arranque mas poupar espaço em disco. Provavelmente é preferível desligar " -"o pkgcache em vez do srcpkgcache. Tal como <literal>Dir::State</literal> o " -"directório predefinido é contido em <literal>Dir::Cache</literal>" +"abrandar o arranque mas poupar espaço em disco. Provavelmente é preferível " +"desligar o pkgcache em vez do srcpkgcache. Tal como <literal>Dir::State</" +"literal> o directório predefinido é contido em <literal>Dir::Cache</literal>" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:617 +#: apt.conf.5.xml:611 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -4751,7 +4596,7 @@ msgstr "" "ficheiro de configuração especificado por <envar>APT_CONFIG</envar>)." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:623 +#: apt.conf.5.xml:617 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -4762,7 +4607,7 @@ msgstr "" "estar feito então é carregado o ficheiro de configuração principal." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:627 +#: apt.conf.5.xml:621 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@ -4780,7 +4625,7 @@ msgstr "" "respectivos programas." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:635 +#: apt.conf.5.xml:629 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -4801,7 +4646,7 @@ msgstr "" "procurado em <filename>/tmp/staging/var/lib/dpkg/status</filename>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:648 +#: apt.conf.5.xml:642 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -4819,12 +4664,12 @@ msgstr "" "expressão regular." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:657 +#: apt.conf.5.xml:651 msgid "APT in DSelect" msgstr "APT em DSelect" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:659 +#: apt.conf.5.xml:653 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -4835,7 +4680,7 @@ msgstr "" "<literal>DSelect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:664 +#: apt.conf.5.xml:658 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@ -4857,7 +4702,7 @@ msgstr "" "pacotes." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:678 +#: apt.conf.5.xml:672 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." @@ -4866,7 +4711,7 @@ msgstr "" "comandos quando é corrido para a fase de instalação." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:683 +#: apt.conf.5.xml:677 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." @@ -4875,7 +4720,7 @@ msgstr "" "comandos quando é executado para a fase de actualização." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:688 +#: apt.conf.5.xml:682 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@ -4884,12 +4729,12 @@ msgstr "" "continuar. A predefinição é avisar apenas em caso de erro." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:694 +#: apt.conf.5.xml:688 msgid "How APT calls &dpkg;" msgstr "Como o APT chama o &dpkg;" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:695 +#: apt.conf.5.xml:689 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@ -4898,7 +4743,7 @@ msgstr "" "&dpkg;. Estas estão na secção <literal>DPkg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:700 +#: apt.conf.5.xml:694 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -4909,7 +4754,7 @@ msgstr "" "um argumento único ao &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:706 +#: apt.conf.5.xml:700 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4922,13 +4767,7 @@ msgstr "" "bin/sh</filename>, caso algum deles falhe, o APT irá abortar." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:713 -#| msgid "" -#| "This is a list of shell commands to run before invoking &dpkg;. Like " -#| "<literal>options</literal> this must be specified in list notation. The " -#| "commands are invoked in order using <filename>/bin/sh</filename>; should " -#| "any fail APT will abort. APT will pass the filenames of all .deb files it " -#| "is going to install to the commands, one per line on standard input." +#: apt.conf.5.xml:707 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4942,17 +4781,11 @@ msgstr "" "notação listada. Os comandos são invocados em ordem usando <filename>/bin/" "sh</filename>, caso algum deles falhe, o APT irá abortar. O APT irá passar " "para os comandos os nomes de ficheiros de todos os ficheiros .deb que vai " -"instalar, um por cada linha no descritor de ficheiro requisitado, usando " -"por predefinição a entrada standard." +"instalar, um por cada linha no descritor de ficheiro requisitado, usando por " +"predefinição a entrada standard." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:720 -#| msgid "" -#| "Version 2 of this protocol dumps more information, including the protocol " -#| "version, the APT configuration space and the packages, files and versions " -#| "being changed. Version 2 is enabled by setting <literal>DPkg::Tools::" -#| "options::cmd::Version</literal> to 2. <literal>cmd</literal> is a command " -#| "given to <literal>Pre-Install-Pkgs</literal>." +#: apt.conf.5.xml:714 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@ -4965,7 +4798,7 @@ msgstr "" "<literal>MultiArch</literal> a cada versão a ser despejada." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:725 +#: apt.conf.5.xml:719 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -4981,7 +4814,7 @@ msgstr "" "irá então enviar a informação na versão mais alta que suporta." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:732 +#: apt.conf.5.xml:726 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</" @@ -4993,13 +4826,13 @@ msgstr "" "O descritor de ficheiro a ser usado para enviar a informação pode ser " "requisitado com <literal>DPkg::Tools::options::<replaceable>cmd</" "replaceable>::InfoFD</literal> o qual usa <literal>0</literal> por " -"predefinição para a saída standard e está disponível desde a versão " -"0.9.11. como confirmação pode ser detectado o suporte para a opção ao " -"observar a variável de ambiente <envar>APT_HOOK_INFO_FD</envar> que " -"contém o número do descritor de ficheiro usado." +"predefinição para a saída standard e está disponível desde a versão 0.9.11. " +"como confirmação pode ser detectado o suporte para a opção ao observar a " +"variável de ambiente <envar>APT_HOOK_INFO_FD</envar> que contém o número do " +"descritor de ficheiro usado." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:742 +#: apt.conf.5.xml:736 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." @@ -5008,7 +4841,7 @@ msgstr "" "predefinição é <filename>/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:747 +#: apt.conf.5.xml:741 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." @@ -5017,12 +4850,12 @@ msgstr "" "predefinição é desactivar a assinatura e produzir todos os binários." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:746 msgid "dpkg trigger usage (and related options)" msgstr "Utilização trigger do dpkg (e opções relacionadas)" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:753 +#: apt.conf.5.xml:747 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -5048,7 +4881,7 @@ msgstr "" "100% enquanto na realidade está a configurar todos os pacotes." #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:768 +#: apt.conf.5.xml:762 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -5062,7 +4895,7 @@ msgstr "" "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:762 +#: apt.conf.5.xml:756 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -5086,7 +4919,7 @@ msgstr "" "\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:775 +#: apt.conf.5.xml:769 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -5108,7 +4941,7 @@ msgstr "" "chamadas unpack e remove." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:783 +#: apt.conf.5.xml:777 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@ -5138,7 +4971,7 @@ msgstr "" "arrancar." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:798 +#: apt.conf.5.xml:792 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@ -5156,7 +4989,7 @@ msgstr "" "esta opção em todas excepto na última execução." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:805 +#: apt.conf.5.xml:799 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -5172,7 +5005,7 @@ msgstr "" "configurar este pacote." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:818 +#: apt.conf.5.xml:812 #, no-wrap msgid "" "OrderList::Score {\n" @@ -5190,7 +5023,7 @@ msgstr "" "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:811 +#: apt.conf.5.xml:805 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -5214,12 +5047,12 @@ msgstr "" "predefinidos. <placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:831 +#: apt.conf.5.xml:825 msgid "Periodic and Archives options" msgstr "Opções Periodic e Archives" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:832 +#: apt.conf.5.xml:826 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -5232,12 +5065,12 @@ msgstr "" "Veja o cabeçalho deste script para uma breve documentação das suas opções." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:840 +#: apt.conf.5.xml:834 msgid "Debug options" msgstr "Opções de depuração" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:842 +#: apt.conf.5.xml:836 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -5254,7 +5087,7 @@ msgstr "" "interesse para o utilizador normal, mas algumas podem ter:" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:853 +#: apt.conf.5.xml:847 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -5265,7 +5098,7 @@ msgstr "" "remove, purge</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:861 +#: apt.conf.5.xml:855 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -5276,7 +5109,7 @@ msgstr "" "<literal>apt-get -s install</literal>) como um utilizador não root." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:870 +#: apt.conf.5.xml:864 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -5286,9 +5119,9 @@ msgstr "" #. TODO: provide a #. motivating example, except I haven't a clue why you'd want -#. to do this. +#. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:878 +#: apt.conf.5.xml:872 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." @@ -5297,12 +5130,12 @@ msgstr "" "IDs de CD-ROM." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:888 +#: apt.conf.5.xml:882 msgid "A full list of debugging options to apt follows." msgstr "Segue-se uma lista completa de opções de depuração para o apt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:897 +#: apt.conf.5.xml:891 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" @@ -5310,25 +5143,25 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:908 +#: apt.conf.5.xml:902 msgid "Print information related to downloading packages using FTP." msgstr "" "Escreve informação relacionada com o descarregamento de pacotes usando FTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:919 +#: apt.conf.5.xml:913 msgid "Print information related to downloading packages using HTTP." msgstr "" "Escreve informação relacionada com o descarregamento de pacotes usando HTTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:930 +#: apt.conf.5.xml:924 msgid "Print information related to downloading packages using HTTPS." msgstr "" "Escreve informação relacionada com o descarregamento de pacotes usando HTTPS." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:941 +#: apt.conf.5.xml:935 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@ -5337,7 +5170,7 @@ msgstr "" "criptográficas usando <literal>gpg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:952 +#: apt.conf.5.xml:946 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." @@ -5346,13 +5179,13 @@ msgstr "" "armazenados em CD-ROMs." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:962 +#: apt.conf.5.xml:956 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" "Descreve os processos de resolver dependências de compilação no &apt-get;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:972 +#: apt.conf.5.xml:966 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." @@ -5361,7 +5194,7 @@ msgstr "" "<literal>apt</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:982 +#: apt.conf.5.xml:976 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -5372,7 +5205,7 @@ msgstr "" "para um CD-ROM." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:993 +#: apt.conf.5.xml:987 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." @@ -5382,14 +5215,14 @@ msgstr "" "literal></quote> ao mesmo tempo." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1005 +#: apt.conf.5.xml:999 msgid "Log when items are added to or removed from the global download queue." msgstr "" "Regista no log quando os items são adicionados ou removidos da fila de " "download global." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1015 +#: apt.conf.5.xml:1009 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." @@ -5398,7 +5231,7 @@ msgstr "" "checksums e assinaturas criptográficas dos ficheiros descarregados." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1025 +#: apt.conf.5.xml:1019 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." @@ -5408,7 +5241,7 @@ msgstr "" "pacote." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1037 +#: apt.conf.5.xml:1031 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." @@ -5417,7 +5250,7 @@ msgstr "" "do apt quando se descarrega diffs de índice em vez de índices completos." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1048 +#: apt.conf.5.xml:1042 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" @@ -5425,7 +5258,7 @@ msgstr "" "downloads." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1059 +#: apt.conf.5.xml:1053 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." @@ -5434,7 +5267,7 @@ msgstr "" "de pacotes e com a remoção de pacotes não utilizados." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1069 +#: apt.conf.5.xml:1063 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -5449,7 +5282,7 @@ msgstr "" "literal>; veja <literal>Debug::pkgProblemResolver</literal> para isso." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1083 +#: apt.conf.5.xml:1077 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -5480,7 +5313,7 @@ msgstr "" "pacote aparece." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1104 +#: apt.conf.5.xml:1098 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." @@ -5490,7 +5323,7 @@ msgstr "" "único." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1115 +#: apt.conf.5.xml:1109 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." @@ -5499,7 +5332,7 @@ msgstr "" "estado e quaisquer erros encontrados enquanto os analisa." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1126 +#: apt.conf.5.xml:1120 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." @@ -5508,7 +5341,7 @@ msgstr "" "literal> deve passar os pacotes ao &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1138 +#: apt.conf.5.xml:1132 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" @@ -5516,12 +5349,12 @@ msgstr "" "&dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1149 +#: apt.conf.5.xml:1143 msgid "Output the priority of each package list on startup." msgstr "Escreve a prioridade da cada lista de pacote no arranque." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1159 +#: apt.conf.5.xml:1153 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." @@ -5530,7 +5363,7 @@ msgstr "" "acontece quando é encontrado um problema de dependências complexo)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1170 +#: apt.conf.5.xml:1164 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -5541,7 +5374,7 @@ msgstr "" "mesma que é descrita em <literal>Debug::pkgDepCache::Marker</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1182 +#: apt.conf.5.xml:1176 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@ -5550,24 +5383,24 @@ msgstr "" "vendors.list</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1192 +#: apt.conf.5.xml:1186 msgid "" "Display the external commands that are called by apt hooks. This includes e." "g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " "<literal>APT::Update::{Pre,Post}-Invoke</literal>." msgstr "" -"Mostra os comandos externos que são chamados por hooks do apt. Isto " -"inclui por exemplo as opções de configuração <literal>DPkg::{Pre,Post}" -"-Invoke</literal> ou <literal>APT::Update::{Pre,Post}-Invoke</literal>." +"Mostra os comandos externos que são chamados por hooks do apt. Isto inclui " +"por exemplo as opções de configuração <literal>DPkg::{Pre,Post}-Invoke</" +"literal> ou <literal>APT::Update::{Pre,Post}-Invoke</literal>." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1216 apt_preferences.5.xml:547 sources.list.5.xml:239 -#: apt-ftparchive.1.xml:598 +#: apt.conf.5.xml:1210 apt_preferences.5.xml:541 sources.list.5.xml:233 +#: apt-ftparchive.1.xml:592 msgid "Examples" msgstr "Exemplos" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1217 +#: apt.conf.5.xml:1211 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -5575,19 +5408,19 @@ msgstr "" "&configureindex; é um ficheiro de configuração que mostra valores exemplo " "para todas as opções possíveis." -#. ? reading apt.conf +#. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1229 +#: apt.conf.5.xml:1223 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt_preferences.5.xml:34 +#: apt_preferences.5.xml:28 msgid "Preference control file for APT" msgstr "Ficheiro de controle de preferências para o APT" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:39 +#: apt_preferences.5.xml:33 msgid "" "The APT preferences file <filename>/etc/apt/preferences</filename> and the " "fragment files in the <filename>/etc/apt/preferences.d/</filename> folder " @@ -5600,7 +5433,7 @@ msgstr "" "ser seleccionadas para instalação." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:44 +#: apt_preferences.5.xml:38 msgid "" "Several versions of a package may be available for installation when the " "&sources-list; file contains references to more than one distribution (for " @@ -5622,7 +5455,7 @@ msgstr "" "para instalação." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:54 +#: apt_preferences.5.xml:48 msgid "" "Several instances of the same version of a package may be available when the " "&sources-list; file contains references to more than one source. In this " @@ -5637,7 +5470,7 @@ msgstr "" "escolha da instância, apenas a escolha da versão." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:61 +#: apt_preferences.5.xml:55 msgid "" "Preferences are a strong power in the hands of a system administrator but " "they can become also their biggest nightmare if used without care! APT will " @@ -5661,7 +5494,7 @@ msgstr "" "foi avisado." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:72 +#: apt_preferences.5.xml:66 msgid "" "Note that the files in the <filename>/etc/apt/preferences.d</filename> " "directory are parsed in alphanumeric ascending order and need to obey the " @@ -5683,28 +5516,24 @@ msgstr "" "em silêncio." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:81 +#: apt_preferences.5.xml:75 msgid "APT's Default Priority Assignments" msgstr "Atribuições de Prioridade Predefinidas do APT" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:96 +#: apt_preferences.5.xml:90 #, no-wrap -msgid "" -"<command>apt-get install -t testing <replaceable>some-package</replaceable><" -"/command>\n" -msgstr "" -"<command>apt-get install -t testing <replaceable>algum-pacote</replaceable><" -"/command>\n" +msgid "<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n" +msgstr "<command>apt-get install -t testing <replaceable>algum-pacote</replaceable></command>\n" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:99 +#: apt_preferences.5.xml:93 #, no-wrap msgid "APT::Default-Release \"stable\";\n" msgstr "APT::Default-Release \"stable\";\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:83 +#: apt_preferences.5.xml:77 msgid "" "If there is no preferences file or if there is no entry in the file that " "applies to a particular version then the priority assigned to that version " @@ -5732,7 +5561,7 @@ msgstr "" "\" id=\"0\"/> <placeholder type=\"programlisting\" id=\"1\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:103 +#: apt_preferences.5.xml:97 msgid "" "If the target release has been specified then APT uses the following " "algorithm to set the priorities of the versions of a package. Assign:" @@ -5741,12 +5570,12 @@ msgstr "" "algoritmo para definir as prioridades das versões de um pacote. Atribuir:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:108 +#: apt_preferences.5.xml:102 msgid "priority 1" msgstr "priority 1" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:109 +#: apt_preferences.5.xml:103 msgid "" "to the versions coming from archives which in their <filename>Release</" "filename> files are marked as \"NotAutomatic: yes\" but <emphasis>not</" @@ -5759,12 +5588,12 @@ msgstr "" "<literal>experimental</literal> da Debian." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:115 +#: apt_preferences.5.xml:109 msgid "priority 100" msgstr "priority 100" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:116 +#: apt_preferences.5.xml:110 msgid "" "to the version that is already installed (if any) and to the versions coming " "from archives which in their <filename>Release</filename> files are marked " @@ -5777,12 +5606,12 @@ msgstr "" "backports da Debian desde <literal>squeeze-backports</literal>." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:123 +#: apt_preferences.5.xml:117 msgid "priority 500" msgstr "priority 500" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:124 +#: apt_preferences.5.xml:118 msgid "" "to the versions that are not installed and do not belong to the target " "release." @@ -5791,19 +5620,19 @@ msgstr "" "destinado." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:128 +#: apt_preferences.5.xml:122 msgid "priority 990" msgstr "priority 990" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:129 +#: apt_preferences.5.xml:123 msgid "" "to the versions that are not installed and belong to the target release." msgstr "" "para as versões que não estão instaladas e pertencem ao lançamento destinado." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:134 +#: apt_preferences.5.xml:128 msgid "" "If the target release has not been specified then APT simply assigns " "priority 100 to all installed package versions and priority 500 to all " @@ -5821,7 +5650,7 @@ msgstr "" "yes\"." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:141 +#: apt_preferences.5.xml:135 msgid "" "APT then applies the following rules, listed in order of precedence, to " "determine which version of a package to install." @@ -5830,7 +5659,7 @@ msgstr "" "para determinar qual versão de um pacote deve instalar." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:144 +#: apt_preferences.5.xml:138 msgid "" "Never downgrade unless the priority of an available version exceeds 1000. " "(\"Downgrading\" is installing a less recent version of a package in place " @@ -5846,12 +5675,12 @@ msgstr "" "arriscado.)" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:150 +#: apt_preferences.5.xml:144 msgid "Install the highest priority version." msgstr "Instala a versão de prioridade mais alta." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:151 +#: apt_preferences.5.xml:145 msgid "" "If two or more versions have the same priority, install the most recent one " "(that is, the one with the higher version number)." @@ -5860,7 +5689,7 @@ msgstr "" "(isto é, aquela com o número de versão mais alto)." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:154 +#: apt_preferences.5.xml:148 msgid "" "If two or more versions have the same priority and version number but either " "the packages differ in some of their metadata or the <literal>--reinstall</" @@ -5871,7 +5700,7 @@ msgstr "" "reinstall</literal> é fornecida, instala a que foi desinstalada." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:160 +#: apt_preferences.5.xml:154 msgid "" "In a typical situation, the installed version of a package (priority 100) " "is not as recent as one of the versions available from the sources listed in " @@ -5886,7 +5715,7 @@ msgstr "" "replaceable></command> ou <command>apt-get upgrade</command>." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:167 +#: apt_preferences.5.xml:161 msgid "" "More rarely, the installed version of a package is <emphasis>more</emphasis> " "recent than any of the other available versions. The package will not be " @@ -5900,7 +5729,7 @@ msgstr "" "get upgrade</command>." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:172 +#: apt_preferences.5.xml:166 msgid "" "Sometimes the installed version of a package is more recent than the version " "belonging to the target release, but not as recent as a version belonging to " @@ -5919,12 +5748,12 @@ msgstr "" "prioridade mais alta que a versão instalada." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:181 +#: apt_preferences.5.xml:175 msgid "The Effect of APT Preferences" msgstr "O Efeito das Preferências do APT" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:183 +#: apt_preferences.5.xml:177 msgid "" "The APT preferences file allows the system administrator to control the " "assignment of priorities. The file consists of one or more multi-line " @@ -5937,7 +5766,7 @@ msgstr "" "um ou dois formatos, um formato específico e um formato geral." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:189 +#: apt_preferences.5.xml:183 msgid "" "The specific form assigns a priority (a \"Pin-Priority\") to one or more " "specified packages with a specified version or version range. For example, " @@ -5954,7 +5783,7 @@ msgstr "" "por espaços." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:196 +#: apt_preferences.5.xml:190 #, no-wrap msgid "" "Package: perl\n" @@ -5966,7 +5795,7 @@ msgstr "" "Pin-Priority: 1001\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:202 +#: apt_preferences.5.xml:196 msgid "" "The general form assigns a priority to all of the package versions in a " "given distribution (that is, to all the versions of packages that are listed " @@ -5981,7 +5810,7 @@ msgstr "" "nome de domínio totalmente qualificado do site." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:208 +#: apt_preferences.5.xml:202 msgid "" "This general-form entry in the APT preferences file applies only to groups " "of packages. For example, the following record assigns a high priority to " @@ -5993,7 +5822,7 @@ msgstr "" "local." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:213 +#: apt_preferences.5.xml:207 #, no-wrap msgid "" "Package: *\n" @@ -6005,7 +5834,7 @@ msgstr "" "Pin-Priority: 999\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:218 +#: apt_preferences.5.xml:212 msgid "" "A note of caution: the keyword used here is \"<literal>origin</literal>\" " "which can be used to match a hostname. The following record will assign a " @@ -6018,7 +5847,7 @@ msgstr "" "servidor identificadas pelo nome de máquina \"ftp.de.debian.org\"" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:222 +#: apt_preferences.5.xml:216 #, no-wrap msgid "" "Package: *\n" @@ -6030,7 +5859,7 @@ msgstr "" "Pin-Priority: 999\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:226 +#: apt_preferences.5.xml:220 msgid "" "This should <emphasis>not</emphasis> be confused with the Origin of a " "distribution as specified in a <filename>Release</filename> file. What " @@ -6045,7 +5874,7 @@ msgstr "" "como \"Debian\" ou \"Ximian\"." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:231 +#: apt_preferences.5.xml:225 msgid "" "The following record assigns a low priority to all package versions " "belonging to any distribution whose Archive name is \"<literal>unstable</" @@ -6056,7 +5885,7 @@ msgstr "" "\"<literal>unstable</literal>\"." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:235 +#: apt_preferences.5.xml:229 #, no-wrap msgid "" "Package: *\n" @@ -6068,7 +5897,7 @@ msgstr "" "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:240 +#: apt_preferences.5.xml:234 msgid "" "The following record assigns a high priority to all package versions " "belonging to any distribution whose Codename is \"<literal>&testing-codename;" @@ -6079,7 +5908,7 @@ msgstr "" "\"<literal>&testing-codename;</literal>\"." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:244 +#: apt_preferences.5.xml:238 #, no-wrap msgid "" "Package: *\n" @@ -6091,7 +5920,7 @@ msgstr "" "Pin-Priority: 900\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:249 +#: apt_preferences.5.xml:243 msgid "" "The following record assigns a high priority to all package versions " "belonging to any release whose Archive name is \"<literal>stable</literal>\" " @@ -6103,7 +5932,7 @@ msgstr "" "version;</literal>\"." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:254 +#: apt_preferences.5.xml:248 #, no-wrap msgid "" "Package: *\n" @@ -6115,12 +5944,12 @@ msgstr "" "Pin-Priority: 500\n" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:264 +#: apt_preferences.5.xml:258 msgid "Regular expressions and &glob; syntax" msgstr "Expressões regulares e sintaxe &glob;" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:266 +#: apt_preferences.5.xml:260 msgid "" "APT also supports pinning by &glob; expressions, and regular expressions " "surrounded by slashes. For example, the following example assigns the " @@ -6135,7 +5964,7 @@ msgstr "" "regular extensa do POSIX rodeada de barras)." #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:275 +#: apt_preferences.5.xml:269 #, no-wrap msgid "" "Package: gnome* /kde/\n" @@ -6147,7 +5976,7 @@ msgstr "" "Pin-Priority: 500\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:281 +#: apt_preferences.5.xml:275 msgid "" "The rule for those expressions is that they can occur anywhere where a " "string can occur. Thus, the following pin assigns the priority 990 to all " @@ -6158,7 +5987,7 @@ msgstr "" "a todos os pacotes de um lançamento que começa com &ubuntu-codename;." #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:287 +#: apt_preferences.5.xml:281 #, no-wrap msgid "" "Package: *\n" @@ -6170,7 +5999,7 @@ msgstr "" "Pin-Priority: 990\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:293 +#: apt_preferences.5.xml:287 msgid "" "If a regular expression occurs in a <literal>Package</literal> field, the " "behavior is the same as if this regular expression were replaced with a list " @@ -6188,12 +6017,12 @@ msgstr "" "considerado uma expressão &glob; em si próprio." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:309 +#: apt_preferences.5.xml:303 msgid "How APT Interprets Priorities" msgstr "Como o APT Interpreta as Prioridades" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:312 +#: apt_preferences.5.xml:306 msgid "" "Priorities (P) assigned in the APT preferences file must be positive or " "negative integers. They are interpreted as follows (roughly speaking):" @@ -6203,12 +6032,12 @@ msgstr "" "(falando grosso):" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:317 +#: apt_preferences.5.xml:311 msgid "P >= 1000" msgstr "P >= 1000" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:318 +#: apt_preferences.5.xml:312 msgid "" "causes a version to be installed even if this constitutes a downgrade of the " "package" @@ -6217,12 +6046,12 @@ msgstr "" "na versão do pacote (downgrade)" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:322 +#: apt_preferences.5.xml:316 msgid "990 <= P < 1000" msgstr "990 <= P < 1000" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:323 +#: apt_preferences.5.xml:317 msgid "" "causes a version to be installed even if it does not come from the target " "release, unless the installed version is more recent" @@ -6231,12 +6060,12 @@ msgstr "" "destino, a menos que a versão instalada seja mais recente" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:328 +#: apt_preferences.5.xml:322 msgid "500 <= P < 990" msgstr "500 <= P < 990" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:329 +#: apt_preferences.5.xml:323 msgid "" "causes a version to be installed unless there is a version available " "belonging to the target release or the installed version is more recent" @@ -6246,12 +6075,12 @@ msgstr "" "mais recente" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:334 +#: apt_preferences.5.xml:328 msgid "100 <= P < 500" msgstr "100 <= P < 500" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:335 +#: apt_preferences.5.xml:329 msgid "" "causes a version to be installed unless there is a version available " "belonging to some other distribution or the installed version is more recent" @@ -6261,12 +6090,12 @@ msgstr "" "recente" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:340 +#: apt_preferences.5.xml:334 msgid "0 < P < 100" msgstr "0 < P < 100" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:341 +#: apt_preferences.5.xml:335 msgid "" "causes a version to be installed only if there is no installed version of " "the package" @@ -6275,17 +6104,17 @@ msgstr "" "instalada do pacote" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:345 +#: apt_preferences.5.xml:339 msgid "P < 0" msgstr "P < 0" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:346 +#: apt_preferences.5.xml:340 msgid "prevents the version from being installed" msgstr "previne a instalação da versão" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:351 +#: apt_preferences.5.xml:345 msgid "" "If any specific-form records match an available package version then the " "first such record determines the priority of the package version. Failing " @@ -6299,7 +6128,7 @@ msgstr "" "determina a prioridade da versão de pacote." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:357 +#: apt_preferences.5.xml:351 msgid "" "For example, suppose the APT preferences file contains the three records " "presented earlier:" @@ -6308,7 +6137,7 @@ msgstr "" "registos apresentados atrás:" #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:361 +#: apt_preferences.5.xml:355 #, no-wrap msgid "" "Package: perl\n" @@ -6336,12 +6165,12 @@ msgstr "" "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:374 +#: apt_preferences.5.xml:368 msgid "Then:" msgstr "Então:" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:376 +#: apt_preferences.5.xml:370 msgid "" "The most recent available version of the <literal>perl</literal> package " "will be installed, so long as that version's version number begins with " @@ -6356,7 +6185,7 @@ msgstr "" "perl;*, então será feito um downgrade ao <literal>perl</literal>." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:381 +#: apt_preferences.5.xml:375 msgid "" "A version of any package other than <literal>perl</literal> that is " "available from the local system has priority over other versions, even " @@ -6367,7 +6196,7 @@ msgstr "" "versões, mesmo versões que pertencem ao lançamento de destino." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:385 +#: apt_preferences.5.xml:379 msgid "" "A version of a package whose origin is not the local system but some other " "site listed in &sources-list; and which belongs to an <literal>unstable</" @@ -6380,12 +6209,12 @@ msgstr "" "instalação e se nenhuma versão do pacote já estiver instalada." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:395 +#: apt_preferences.5.xml:389 msgid "Determination of Package Version and Distribution Properties" msgstr "Determinação da Versão do Pacote e Propriedades da Distribuição" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:397 +#: apt_preferences.5.xml:391 msgid "" "The locations listed in the &sources-list; file should provide " "<filename>Packages</filename> and <filename>Release</filename> files to " @@ -6396,7 +6225,7 @@ msgstr "" "descrever os pacotes disponíveis nessa localização." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:401 +#: apt_preferences.5.xml:395 msgid "" "The <filename>Packages</filename> file is normally found in the directory " "<filename>.../dists/<replaceable>dist-name</replaceable>/" @@ -6416,27 +6245,27 @@ msgstr "" "definir prioridades do APT:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:409 +#: apt_preferences.5.xml:403 msgid "the <literal>Package:</literal> line" msgstr "a linha <literal>Package:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:410 +#: apt_preferences.5.xml:404 msgid "gives the package name" msgstr "fornece o nome do pacote" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:413 apt_preferences.5.xml:463 +#: apt_preferences.5.xml:407 apt_preferences.5.xml:457 msgid "the <literal>Version:</literal> line" msgstr "a linha <literal>Version:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:414 +#: apt_preferences.5.xml:408 msgid "gives the version number for the named package" msgstr "fornece o número de versão do pacote nomeado" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:419 +#: apt_preferences.5.xml:413 msgid "" "The <filename>Release</filename> file is normally found in the directory " "<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for " @@ -6458,12 +6287,12 @@ msgstr "" "APT:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:430 +#: apt_preferences.5.xml:424 msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" msgstr "a linha <literal>Archive:</literal> ou <literal>Suite:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:431 +#: apt_preferences.5.xml:425 msgid "" "names the archive to which all the packages in the directory tree belong. " "For example, the line \"Archive: stable\" or \"Suite: stable\" specifies " @@ -6480,18 +6309,18 @@ msgstr "" "requerer a linha:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:441 +#: apt_preferences.5.xml:435 #, no-wrap msgid "Pin: release a=stable\n" msgstr "Pin: release a=stable\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:447 +#: apt_preferences.5.xml:441 msgid "the <literal>Codename:</literal> line" msgstr "a linha <literal>Codename:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:448 +#: apt_preferences.5.xml:442 msgid "" "names the codename to which all the packages in the directory tree belong. " "For example, the line \"Codename: &testing-codename;\" specifies that all of " @@ -6508,13 +6337,13 @@ msgstr "" "preferências do APT requer a linha:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:457 +#: apt_preferences.5.xml:451 #, no-wrap msgid "Pin: release n=&testing-codename;\n" msgstr "Pin: release n=&testing-codename;\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:464 +#: apt_preferences.5.xml:458 msgid "" "names the release version. For example, the packages in the tree might " "belong to Debian release version &stable-version;. Note that there is " @@ -6531,7 +6360,7 @@ msgstr "" "seguintes linhas:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:473 +#: apt_preferences.5.xml:467 #, no-wrap msgid "" "Pin: release v=&stable-version;\n" @@ -6543,12 +6372,12 @@ msgstr "" "Pin: release &stable-version;\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:482 +#: apt_preferences.5.xml:476 msgid "the <literal>Component:</literal> line" msgstr "a linha <literal>Component:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:483 +#: apt_preferences.5.xml:477 msgid "" "names the licensing component associated with the packages in the directory " "tree of the <filename>Release</filename> file. For example, the line " @@ -6566,18 +6395,18 @@ msgstr "" "a linha:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:492 +#: apt_preferences.5.xml:486 #, no-wrap msgid "Pin: release c=main\n" msgstr "Pin: release c=main\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:498 +#: apt_preferences.5.xml:492 msgid "the <literal>Origin:</literal> line" msgstr "a linha <literal>Origin:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:499 +#: apt_preferences.5.xml:493 msgid "" "names the originator of the packages in the directory tree of the " "<filename>Release</filename> file. Most commonly, this is <literal>Debian</" @@ -6590,18 +6419,18 @@ msgstr "" "linha:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:505 +#: apt_preferences.5.xml:499 #, no-wrap msgid "Pin: release o=Debian\n" msgstr "Pin: release o=Debian\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:511 +#: apt_preferences.5.xml:505 msgid "the <literal>Label:</literal> line" msgstr "a linha <literal>Label:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:512 +#: apt_preferences.5.xml:506 msgid "" "names the label of the packages in the directory tree of the " "<filename>Release</filename> file. Most commonly, this is <literal>Debian</" @@ -6614,13 +6443,13 @@ msgstr "" "linha:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:518 +#: apt_preferences.5.xml:512 #, no-wrap msgid "Pin: release l=Debian\n" msgstr "Pin: release l=Debian\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:525 +#: apt_preferences.5.xml:519 msgid "" "All of the <filename>Packages</filename> and <filename>Release</filename> " "files retrieved from locations listed in the &sources-list; file are stored " @@ -6645,12 +6474,12 @@ msgstr "" "literal> da distribuição <literal>unstable</literal>." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:538 +#: apt_preferences.5.xml:532 msgid "Optional Lines in an APT Preferences Record" msgstr "Linhas Opcionais num Registo de Preferências do APT" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:540 +#: apt_preferences.5.xml:534 msgid "" "Each record in the APT preferences file can optionally begin with one or " "more lines beginning with the word <literal>Explanation:</literal>. This " @@ -6661,12 +6490,12 @@ msgstr "" "literal>. Isto disponibiliza um espaço para comentários." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:549 +#: apt_preferences.5.xml:543 msgid "Tracking Stable" msgstr "Acompanhando Stable" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:557 +#: apt_preferences.5.xml:551 #, no-wrap msgid "" "Explanation: Uninstall or do not install any Debian-originated\n" @@ -6690,7 +6519,7 @@ msgstr "" "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:551 +#: apt_preferences.5.xml:545 msgid "" "The following APT preferences file will cause APT to assign a priority " "higher than the default (500) to all package versions belonging to a " @@ -6706,8 +6535,8 @@ msgstr "" "\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:574 apt_preferences.5.xml:620 -#: apt_preferences.5.xml:678 +#: apt_preferences.5.xml:568 apt_preferences.5.xml:614 +#: apt_preferences.5.xml:672 #, no-wrap msgid "" "apt-get install <replaceable>package-name</replaceable>\n" @@ -6719,7 +6548,7 @@ msgstr "" "apt-get dist-upgrade\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:569 +#: apt_preferences.5.xml:563 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest " @@ -6732,13 +6561,13 @@ msgstr "" "\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:586 +#: apt_preferences.5.xml:580 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/testing\n" msgstr "apt-get install <replaceable>pacote</replaceable>/testing\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:580 +#: apt_preferences.5.xml:574 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>testing</literal> distribution; the package " @@ -6751,12 +6580,12 @@ msgstr "" "outra vez. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:592 +#: apt_preferences.5.xml:586 msgid "Tracking Testing or Unstable" msgstr "Acompanhando Testing ou Unstable" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:601 +#: apt_preferences.5.xml:595 #, no-wrap msgid "" "Package: *\n" @@ -6784,7 +6613,7 @@ msgstr "" "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:594 +#: apt_preferences.5.xml:588 msgid "" "The following APT preferences file will cause APT to assign a high priority " "to package versions from the <literal>testing</literal> distribution, a " @@ -6801,7 +6630,7 @@ msgstr "" "<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:615 +#: apt_preferences.5.xml:609 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest " @@ -6814,13 +6643,13 @@ msgstr "" "\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:635 +#: apt_preferences.5.xml:629 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/unstable\n" msgstr "apt-get install <replaceable>pacote</replaceable>/unstable\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:626 +#: apt_preferences.5.xml:620 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>unstable</literal> distribution. " @@ -6839,18 +6668,16 @@ msgstr "" "versão instalada. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:642 +#: apt_preferences.5.xml:636 msgid "Tracking the evolution of a codename release" msgstr "Acompanhando a evolução de um nome de código de lançamento" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:656 +#: apt_preferences.5.xml:650 #, no-wrap msgid "" -"Explanation: Uninstall or do not install any Debian-originated package " -"versions\n" -"Explanation: other than those in the distribution codenamed with " -"&testing-codename; or sid\n" +"Explanation: Uninstall or do not install any Debian-originated package versions\n" +"Explanation: other than those in the distribution codenamed with &testing-codename; or sid\n" "Package: *\n" "Pin: release n=&testing-codename;\n" "Pin-Priority: 900\n" @@ -6864,10 +6691,8 @@ msgid "" "Pin: release o=Debian\n" "Pin-Priority: -10\n" msgstr "" -"Explicação: Desinstala ou não instala nenhumas versões de pacotes originais " -"Debian\n" -"Explicação: para além daquelas da distribuição com nome de código " -"&testing-codename; ou sid\n" +"Explicação: Desinstala ou não instala nenhumas versões de pacotes originais Debian\n" +"Explicação: para além daquelas da distribuição com nome de código &testing-codename; ou sid\n" "Package: *\n" "Pin: release n=&testing-codename;\n" "Pin-Priority: 900\n" @@ -6882,7 +6707,7 @@ msgstr "" "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:644 +#: apt_preferences.5.xml:638 msgid "" "The following APT preferences file will cause APT to assign a priority " "higher than the default (500) to all package versions belonging to a " @@ -6908,7 +6733,7 @@ msgstr "" "<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:673 +#: apt_preferences.5.xml:667 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest version(s) in " @@ -6921,13 +6746,13 @@ msgstr "" "codename;</literal>. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:693 +#: apt_preferences.5.xml:687 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/sid\n" msgstr "apt-get install <replaceable>pacote</replaceable>/sid\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:684 +#: apt_preferences.5.xml:678 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>sid</literal> distribution. Thereafter, " @@ -6946,17 +6771,17 @@ msgstr "" "instalada. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:708 +#: apt_preferences.5.xml:702 msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;" msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;" #. type: Content of: <refentry><refnamediv><refpurpose> -#: sources.list.5.xml:35 +#: sources.list.5.xml:29 msgid "List of configured APT data sources" msgstr "Lista das fontes de dados APT configuradas" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:40 +#: sources.list.5.xml:34 msgid "" "The source list <filename>/etc/apt/sources.list</filename> is designed to " "support any number of active sources and a variety of source media. The file " @@ -6973,7 +6798,7 @@ msgstr "" "comando equivalente de outra interface \"front-end\" do APT)." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:47 +#: sources.list.5.xml:41 msgid "" "Each line specifying a source starts with type (e.g. <literal>deb-src</" "literal>) followed by options and arguments for this type. Individual " @@ -6988,12 +6813,12 @@ msgstr "" "numa linha marca o restante dessa linha como um comentário." #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:55 +#: sources.list.5.xml:49 msgid "sources.list.d" msgstr "sources.list.d" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:56 +#: sources.list.5.xml:50 msgid "" "The <filename>/etc/apt/sources.list.d</filename> directory provides a way to " "add sources.list entries in separate files. The format is the same as for " @@ -7015,12 +6840,12 @@ msgstr "" "neste caso serão ignorados em silêncio." #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:67 +#: sources.list.5.xml:61 msgid "The deb and deb-src types" msgstr "Os tipos deb e deb-src" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:68 +#: sources.list.5.xml:62 msgid "" "The <literal>deb</literal> type references a typical two-level Debian " "archive, <filename>distribution/component</filename>. The " @@ -7045,7 +6870,7 @@ msgstr "" "linha <literal>deb-src</literal> para obter índices das fontes." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:79 +#: sources.list.5.xml:73 msgid "" "The format for a <filename>sources.list</filename> entry using the " "<literal>deb</literal> and <literal>deb-src</literal> types is:" @@ -7054,14 +6879,13 @@ msgstr "" "tipos <literal>deb</literal> e <literal>deb-src</literal> é:" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:82 +#: sources.list.5.xml:76 #, no-wrap -#| msgid "deb [ options ] uri distribution [component1] [component2] [...]" msgid "deb [ options ] uri suite [component1] [component2] [...]" msgstr "deb [ opções ] uri suite [componente1] [componente2] [...]" #. type: Content of: <refentry><refsect1><para><literallayout> -#: sources.list.5.xml:86 +#: sources.list.5.xml:80 #, no-wrap msgid "" " Types: deb deb-src\n" @@ -7101,7 +6925,7 @@ msgstr "" " " #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:84 +#: sources.list.5.xml:78 msgid "" "Alternatively a rfc822 style format is also supported: <placeholder type=" "\"literallayout\" id=\"0\"/>" @@ -7110,16 +6934,7 @@ msgstr "" "type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:105 -#| msgid "" -#| "The URI for the <literal>deb</literal> type must specify the base of the " -#| "Debian distribution, from which APT will find the information it needs. " -#| "<literal>distribution</literal> can specify an exact path, in which case " -#| "the components must be omitted and <literal>distribution</literal> must " -#| "end with a slash (<literal>/</literal>). This is useful for the case when " -#| "only a particular sub-section of the archive denoted by the URI is of " -#| "interest. If <literal>distribution</literal> does not specify an exact " -#| "path, at least one <literal>component</literal> must be present." +#: sources.list.5.xml:99 msgid "" "The URI for the <literal>deb</literal> type must specify the base of the " "Debian distribution, from which APT will find the information it needs. " @@ -7132,23 +6947,15 @@ msgid "" msgstr "" "O URI para o tipo <literal>deb</literal> tem de especificar a base da " "distribuição Debian, a partir do qual o APT irá encontrar a informação que " -"precisa. <literal>suite</literal> pode especificar um caminho exacto, " -"que no caso os componente têm de ser omitidos e <literal>suite</literal> " -"deve terminar com uma barra (<literal>/</literal>). Isto é útil para o caso " -"de apenas ser de interesse uma sub-secção particular do arquivo denotado " -"pelo URI. Se <literal>suite</literal> não especificar um caminho exacto, " -"pelo menos um <literal>component</literal> tem de estar presente." +"precisa. <literal>suite</literal> pode especificar um caminho exacto, que no " +"caso os componente têm de ser omitidos e <literal>suite</literal> deve " +"terminar com uma barra (<literal>/</literal>). Isto é útil para o caso de " +"apenas ser de interesse uma sub-secção particular do arquivo denotado pelo " +"URI. Se <literal>suite</literal> não especificar um caminho exacto, pelo " +"menos um <literal>component</literal> tem de estar presente." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:114 -#| msgid "" -#| "<literal>distribution</literal> may also contain a variable, <literal>" -#| "$(ARCH)</literal> which expands to the Debian architecture (such as " -#| "<literal>amd64</literal> or <literal>armel</literal>) used on the system. " -#| "This permits architecture-independent <filename>sources.list</filename> " -#| "files to be used. In general this is only of interest when specifying an " -#| "exact path, <literal>APT</literal> will automatically generate a URI with " -#| "the current architecture otherwise." +#: sources.list.5.xml:108 msgid "" "<literal>suite</literal> may also contain a variable, <literal>$(ARCH)</" "literal> which expands to the Debian architecture (such as <literal>amd64</" @@ -7158,28 +6965,16 @@ msgid "" "<literal>APT</literal> will automatically generate a URI with the current " "architecture otherwise." msgstr "" -"<literal>suite</literal> também pode conter uma variável. <literal>" -"$(ARCH)</literal> a qual se expande à arquitectura Debian (tal como " -"<literal>amd64</literal> ou <literal>armel</literal>) usada no sistema. Isto " -"permite que seja usados ficheiros <filename>sources.list</filename> " -"independentes da arquitectura. Em geral, isto é apenas de interesse quando " -"se especifica um caminho exacto. De outro modo o <literal>APT</literal> irá " -"gerar automaticamente um URI com a arquitectura actual." +"<literal>suite</literal> também pode conter uma variável. <literal>$(ARCH)</" +"literal> a qual se expande à arquitectura Debian (tal como <literal>amd64</" +"literal> ou <literal>armel</literal>) usada no sistema. Isto permite que " +"seja usados ficheiros <filename>sources.list</filename> independentes da " +"arquitectura. Em geral, isto é apenas de interesse quando se especifica um " +"caminho exacto. De outro modo o <literal>APT</literal> irá gerar " +"automaticamente um URI com a arquitectura actual." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:122 -#| msgid "" -#| "Since only one distribution can be specified per line it may be necessary " -#| "to have multiple lines for the same URI, if a subset of all available " -#| "distributions or components at that location is desired. APT will sort " -#| "the URI list after it has generated a complete set internally, and will " -#| "collapse multiple references to the same Internet host, for instance, " -#| "into a single connection, so that it does not inefficiently establish an " -#| "FTP connection, close it, do something else, and then re-establish a " -#| "connection to that same host. This feature is useful for accessing busy " -#| "FTP sites with limits on the number of simultaneous anonymous users. APT " -#| "also parallelizes connections to different hosts to more effectively deal " -#| "with sites with low bandwidth." +#: sources.list.5.xml:116 msgid "" "In the traditional style sources.list format since only one distribution can " "be specified per line it may be necessary to have multiple lines for the " @@ -7202,12 +6997,12 @@ msgstr "" "ligação, para que não estabeleça uma ligação FTP ineficiente, a feche, faça " "outra coisa, e depois volte a estabelecer ligação à mesma máquina. Esta " "funcionalidade é útil para aceder a sites FTP ocupados que limitam o número " -"de utilizadores anónimos em simultâneo. O APT também paraleliza ligações " -"a máquinas diferentes para lidar mais eficientemente com sites com largura " -"de banda baixa." +"de utilizadores anónimos em simultâneo. O APT também paraleliza ligações a " +"máquinas diferentes para lidar mais eficientemente com sites com largura de " +"banda baixa." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:136 +#: sources.list.5.xml:130 msgid "" "<literal>options</literal> is always optional and needs to be surrounded by " "square brackets. It can consist of multiple settings in the form " @@ -7224,7 +7019,7 @@ msgstr "" "definições não suportadas serão ignoradas em silêncio):" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:142 +#: sources.list.5.xml:136 msgid "" "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</" "replaceable>,…</literal> can be used to specify for which architectures " @@ -7239,13 +7034,7 @@ msgstr "" "<literal>APT::Architectures</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:146 -#| msgid "" -#| "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</" -#| "replaceable>,…</literal> can be used to specify for which architectures " -#| "information should be downloaded. If this option is not set all " -#| "architectures defined by the <literal>APT::Architectures</literal> option " -#| "will be downloaded." +#: sources.list.5.xml:140 msgid "" "<literal>arch+=<replaceable>arch1</replaceable>,<replaceable>arch2</" "replaceable>,…</literal> and <literal>arch-=<replaceable>arch1</replaceable>," @@ -7258,7 +7047,7 @@ msgstr "" "adicionar/remover arquitecturas do conjunto que será descarregado." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:149 +#: sources.list.5.xml:143 msgid "" "<literal>trusted=yes</literal> can be set to indicate that packages from " "this source are always authenticated even if the <filename>Release</" @@ -7275,7 +7064,7 @@ msgstr "" "lida com fontes mesmo actualmente autenticadas como não sendo autênticas." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:156 +#: sources.list.5.xml:150 msgid "" "It is important to list sources in order of preference, with the most " "preferred source listed first. Typically this will result in sorting by " @@ -7289,36 +7078,34 @@ msgstr "" "Internet, por exemplo)." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:161 +#: sources.list.5.xml:155 msgid "Some examples:" msgstr "Alguns exemplos:" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:163 +#: sources.list.5.xml:157 #, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n" -"deb http://security.debian.org/ &stable-codename;/updates main contrib " -"non-free\n" +"deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n" " " msgstr "" "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n" -"deb http://security.debian.org/ &stable-codename;/updates main contrib " -"non-free\n" +"deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n" " " #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:169 +#: sources.list.5.xml:163 msgid "URI specification" msgstr "Especificação da URI" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:171 +#: sources.list.5.xml:165 msgid "The currently recognized URI types are:" msgstr "Os tipos de URI actualmente reconhecidos são:" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:175 +#: sources.list.5.xml:169 msgid "" "The file scheme allows an arbitrary directory in the file system to be " "considered an archive. This is useful for NFS mounts and local mirrors or " @@ -7329,7 +7116,7 @@ msgstr "" "arquivos locais." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:182 +#: sources.list.5.xml:176 msgid "" "The cdrom scheme allows APT to use a local CD-ROM drive with media swapping. " "Use the &apt-cdrom; program to create cdrom entries in the source list." @@ -7339,7 +7126,7 @@ msgstr "" "fontes." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:189 +#: sources.list.5.xml:183 msgid "" "The http scheme specifies an HTTP server for the archive. If an environment " "variable <envar>http_proxy</envar> is set with the format http://server:" @@ -7356,7 +7143,7 @@ msgstr "" "método de autenticação seguro." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:200 +#: sources.list.5.xml:194 msgid "" "The ftp scheme specifies an FTP server for the archive. APT's FTP behavior " "is highly configurable; for more information see the &apt-conf; manual page. " @@ -7377,7 +7164,7 @@ msgstr "" "configuração serão ignorados." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:212 +#: sources.list.5.xml:206 msgid "" "The copy scheme is identical to the file scheme except that packages are " "copied into the cache directory instead of used directly at their location. " @@ -7390,7 +7177,7 @@ msgstr "" "ficheiros com o APT." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:219 +#: sources.list.5.xml:213 msgid "" "The rsh/ssh method invokes RSH/SSH to connect to a remote host and access " "the files as a given user. Prior configuration of rhosts or RSA keys is " @@ -7404,12 +7191,12 @@ msgstr "" "ficheiros a partir da máquina remota." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: sources.list.5.xml:226 +#: sources.list.5.xml:220 msgid "adding more recognizable URI types" msgstr "adicionando mais tipos de URI reconhecíveis" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:228 +#: sources.list.5.xml:222 msgid "" "APT can be extended with more methods shipped in other optional packages, " "which should follow the naming scheme <package>apt-transport-" @@ -7428,7 +7215,7 @@ msgstr "" "exemplo o debtorrent - veja &apt-transport-debtorrent;." #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:240 +#: sources.list.5.xml:234 msgid "" "Uses the archive stored locally (or NFS mounted) at /home/jason/debian for " "stable/main, stable/contrib, and stable/non-free." @@ -7437,36 +7224,36 @@ msgstr "" "para stable/main, stable/contrib, e stable/non-free." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:242 +#: sources.list.5.xml:236 #, no-wrap msgid "deb file:/home/jason/debian stable main contrib non-free" msgstr "deb file:/home/jason/debian stable main contrib non-free" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:244 +#: sources.list.5.xml:238 msgid "As above, except this uses the unstable (development) distribution." msgstr "" "Como em cima, excepto que usa a distribuição unstable (de desenvolvimento)." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:245 +#: sources.list.5.xml:239 #, no-wrap msgid "deb file:/home/jason/debian unstable main contrib non-free" msgstr "deb file:/home/jason/debian unstable main contrib non-free" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:247 +#: sources.list.5.xml:241 msgid "Source line for the above" msgstr "Linha de fonte para o referido acima" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:248 +#: sources.list.5.xml:242 #, no-wrap msgid "deb-src file:/home/jason/debian unstable main contrib non-free" msgstr "deb-src file:/home/jason/debian unstable main contrib non-free" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:250 +#: sources.list.5.xml:244 msgid "" "The first line gets package information for the architectures in " "<literal>APT::Architectures</literal> while the second always retrieves " @@ -7477,7 +7264,7 @@ msgstr "" "<literal>amd64</literal> e <literal>armel</literal>." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:252 +#: sources.list.5.xml:246 #, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main\n" @@ -7487,7 +7274,7 @@ msgstr "" "deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:255 +#: sources.list.5.xml:249 msgid "" "Uses HTTP to access the archive at archive.debian.org, and uses only the " "hamm/main area." @@ -7496,13 +7283,13 @@ msgstr "" "hamm/main." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:257 +#: sources.list.5.xml:251 #, no-wrap msgid "deb http://archive.debian.org/debian-archive hamm main" msgstr "deb http://archive.debian.org/debian-archive hamm main" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:259 +#: sources.list.5.xml:253 msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the &stable-codename;/contrib area." @@ -7511,13 +7298,13 @@ msgstr "" "usa apenas a área &stable-codename;/contrib." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:261 +#: sources.list.5.xml:255 #, no-wrap msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib" msgstr "deb ftp://ftp.debian.org/debian &stable-codename; contrib" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:263 +#: sources.list.5.xml:257 msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the unstable/contrib area. If this line appears as " @@ -7530,19 +7317,19 @@ msgstr "" "uma única sessão FTP para ambas linhas de recurso." #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:267 +#: sources.list.5.xml:261 #, no-wrap msgid "deb ftp://ftp.debian.org/debian unstable contrib" msgstr "deb ftp://ftp.debian.org/debian unstable contrib" #. type: Content of: <refentry><refsect1><para><literallayout> -#: sources.list.5.xml:276 +#: sources.list.5.xml:270 #, no-wrap msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/" msgstr "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:269 +#: sources.list.5.xml:263 msgid "" "Uses HTTP to access the archive at ftp.tlh.debian.org, under the universe " "directory, and uses only files found under <filename>unstable/binary-i386</" @@ -7561,17 +7348,17 @@ msgstr "" "\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:281 +#: sources.list.5.xml:275 msgid "&apt-cache; &apt-conf;" msgstr "&apt-cache; &apt-conf;" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt-extracttemplates.1.xml:28 apt-sortpkgs.1.xml:28 apt-ftparchive.1.xml:28 +#: apt-extracttemplates.1.xml:22 apt-sortpkgs.1.xml:22 apt-ftparchive.1.xml:22 msgid "1" msgstr "1" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-extracttemplates.1.xml:35 +#: apt-extracttemplates.1.xml:29 msgid "" "Utility to extract <command>debconf</command> config and templates from " "Debian packages" @@ -7580,7 +7367,7 @@ msgstr "" "partir de pacotes Debian" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:41 +#: apt-extracttemplates.1.xml:35 msgid "" "<command>apt-extracttemplates</command> will take one or more Debian package " "files as input and write out (to a temporary directory) all associated " @@ -7595,12 +7382,12 @@ msgstr "" "gerada uma linha no formato:" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:46 +#: apt-extracttemplates.1.xml:40 msgid "package version template-file config-script" msgstr "pacote versão ficheiro-modelo script-de-configuração" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:47 +#: apt-extracttemplates.1.xml:41 msgid "" "template-file and config-script are written to the temporary directory " "specified by the <option>-t</option> or <option>--tempdir</option> " @@ -7615,7 +7402,7 @@ msgstr "" "<filename>pacote.configuração.XXXXXX</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-extracttemplates.1.xml:60 +#: apt-extracttemplates.1.xml:54 msgid "" "Temporary directory in which to write extracted <command>debconf</command> " "template files and config scripts. Configuration Item: <literal>APT::" @@ -7626,7 +7413,7 @@ msgstr "" "<literal>APT::ExtractTemplates::TempDir</literal>" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:77 +#: apt-extracttemplates.1.xml:71 msgid "" "<command>apt-extracttemplates</command> returns zero on normal operation, " "decimal 100 on error." @@ -7635,12 +7422,12 @@ msgstr "" "decimal em erro." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-sortpkgs.1.xml:35 +#: apt-sortpkgs.1.xml:29 msgid "Utility to sort package index files" msgstr "Utilitário para organizar ficheiros índice de pacotes" #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:41 +#: apt-sortpkgs.1.xml:35 msgid "" "<command>apt-sortpkgs</command> will take an index file (source index or " "package index) and sort the records so that they are ordered by the package " @@ -7653,7 +7440,7 @@ msgstr "" "registo de acordo com as regras de organização internas." #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:47 +#: apt-sortpkgs.1.xml:41 msgid "" "All output is sent to standard output; the input must be a seekable file." msgstr "" @@ -7661,7 +7448,7 @@ msgstr "" "ficheiro pesquisável." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-sortpkgs.1.xml:56 +#: apt-sortpkgs.1.xml:50 msgid "" "Use source index field ordering. Configuration Item: <literal>APT::" "SortPkgs::Source</literal>." @@ -7670,7 +7457,7 @@ msgstr "" "SortPkgs::Source</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:70 +#: apt-sortpkgs.1.xml:64 msgid "" "<command>apt-sortpkgs</command> returns zero on normal operation, decimal " "100 on error." @@ -7679,12 +7466,12 @@ msgstr "" "em erro." #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-ftparchive.1.xml:35 +#: apt-ftparchive.1.xml:29 msgid "Utility to generate index files" msgstr "Utilitário para gerar ficheiros de índice" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:41 +#: apt-ftparchive.1.xml:35 msgid "" "<command>apt-ftparchive</command> is the command line tool that generates " "the index files that APT uses to access a distribution source. The index " @@ -7697,7 +7484,7 @@ msgstr "" "baseados no conteúdo desse site." #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:45 +#: apt-ftparchive.1.xml:39 msgid "" "<command>apt-ftparchive</command> is a superset of the &dpkg-scanpackages; " "program, incorporating its entire functionality via the <literal>packages</" @@ -7712,7 +7499,7 @@ msgstr "" "script o processo de geração para um arquivo completo." #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:51 +#: apt-ftparchive.1.xml:45 msgid "" "Internally <command>apt-ftparchive</command> can make use of binary " "databases to cache the contents of a .deb file and it does not rely on any " @@ -7727,7 +7514,7 @@ msgstr "" "ficheiros e constrói os ficheiros comprimidos desejados." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:62 +#: apt-ftparchive.1.xml:56 msgid "" "The packages command generates a package file from a directory tree. It " "takes the given directory and recursively searches it for .deb files, " @@ -7740,7 +7527,7 @@ msgstr "" "Este comando é aproximadamente equivalente ao &dpkg-scanpackages;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:67 apt-ftparchive.1.xml:91 +#: apt-ftparchive.1.xml:61 apt-ftparchive.1.xml:85 msgid "" "The option <option>--db</option> can be used to specify a binary caching DB." msgstr "" @@ -7748,7 +7535,7 @@ msgstr "" "dados de cache binária." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:72 +#: apt-ftparchive.1.xml:66 msgid "" "The <literal>sources</literal> command generates a source index file from a " "directory tree. It takes the given directory and recursively searches it " @@ -7761,7 +7548,7 @@ msgstr "" "Este comando é aproximadamente equivalente ao &dpkg-scansources;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:77 +#: apt-ftparchive.1.xml:71 msgid "" "If an override file is specified then a source override file will be looked " "for with an extension of .src. The --source-override option can be used to " @@ -7773,7 +7560,7 @@ msgstr "" "fonte que irá ser usado." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:84 +#: apt-ftparchive.1.xml:78 msgid "" "The <literal>contents</literal> command generates a contents file from a " "directory tree. It takes the given directory and recursively searches it " @@ -7791,7 +7578,7 @@ msgstr "" "por uma vírgula na saída." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:96 +#: apt-ftparchive.1.xml:90 msgid "" "The <literal>release</literal> command generates a Release file from a " "directory tree. It recursively searches the given directory for uncompressed " @@ -7815,7 +7602,7 @@ msgstr "" "contém um resultado de MD5, SHA1 e SHA256 para cada ficheiro." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:106 +#: apt-ftparchive.1.xml:100 msgid "" "Values for the additional metadata fields in the Release file are taken from " "the corresponding variables under <literal>APT::FTPArchive::Release</" @@ -7836,7 +7623,7 @@ msgstr "" "<literal>Description</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:119 +#: apt-ftparchive.1.xml:113 msgid "" "The <literal>generate</literal> command is designed to be runnable from a " "cron script and builds indexes according to the given config file. The " @@ -7852,7 +7639,7 @@ msgstr "" "definições requeridas." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:128 +#: apt-ftparchive.1.xml:122 msgid "" "The <literal>clean</literal> command tidies the databases used by the given " "configuration file by removing any records that are no longer necessary." @@ -7862,12 +7649,12 @@ msgstr "" "são necessários." #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:134 +#: apt-ftparchive.1.xml:128 msgid "The Generate Configuration" msgstr "A Configuração do Generate" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:136 +#: apt-ftparchive.1.xml:130 msgid "" "The <literal>generate</literal> command uses a configuration file to " "describe the archives that are going to be generated. It follows the typical " @@ -7884,7 +7671,7 @@ msgstr "" "árvore. Isto apenas afecta o modo de como a etiqueta scope é manuseada." #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:144 +#: apt-ftparchive.1.xml:138 msgid "" "The generate configuration has four separate sections, each described below." msgstr "" @@ -7892,12 +7679,12 @@ msgstr "" "abaixo." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:146 +#: apt-ftparchive.1.xml:140 msgid "<literal>Dir</literal> Section" msgstr "Secção <literal>Dir</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:148 +#: apt-ftparchive.1.xml:142 msgid "" "The <literal>Dir</literal> section defines the standard directories needed " "to locate the files required during the generation process. These " @@ -7910,7 +7697,7 @@ msgstr "" "posteriores para produzir um caminho completo e absoluto." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:155 +#: apt-ftparchive.1.xml:149 msgid "" "Specifies the root of the FTP archive, in a standard Debian configuration " "this is the directory that contains the <filename>ls-LR</filename> and dist " @@ -7920,17 +7707,17 @@ msgstr "" "directório que contém o <filename>ls-LR</filename> e nós da distribuição." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:162 +#: apt-ftparchive.1.xml:156 msgid "Specifies the location of the override files." msgstr "Especifica a localização dos ficheiros de sobrepor." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:167 +#: apt-ftparchive.1.xml:161 msgid "Specifies the location of the cache files." msgstr "Especifica a localização dos ficheiros de cache" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:172 +#: apt-ftparchive.1.xml:166 msgid "" "Specifies the location of the file list files, if the <literal>FileList</" "literal> setting is used below." @@ -7939,12 +7726,12 @@ msgstr "" "definição <literal>FileList</literal> for usada mais abaixo." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:178 +#: apt-ftparchive.1.xml:172 msgid "<literal>Default</literal> Section" msgstr "Secção <literal>Default</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:180 +#: apt-ftparchive.1.xml:174 msgid "" "The <literal>Default</literal> section specifies default values, and " "settings that control the operation of the generator. Other sections may " @@ -7955,7 +7742,7 @@ msgstr "" "sobrepor estas predefinições em uma definição por-secção." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:186 +#: apt-ftparchive.1.xml:180 msgid "" "Sets the default compression schemes to use for the package index files. It " "is a string that contains a space separated list of at least one of: '.' (no " @@ -7968,7 +7755,7 @@ msgstr "" "predefinição para todos os esquemas de compressão é '. gzip'." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:194 +#: apt-ftparchive.1.xml:188 msgid "" "Sets the default list of file extensions that are package files. This " "defaults to '.deb'." @@ -7977,7 +7764,7 @@ msgstr "" "pacote. A predefinição é '.deb'." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:200 +#: apt-ftparchive.1.xml:194 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Sources files." @@ -7986,7 +7773,7 @@ msgstr "" "controla a compressão para os ficheiros das Fontes." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:206 +#: apt-ftparchive.1.xml:200 msgid "" "Sets the default list of file extensions that are source files. This " "defaults to '.dsc'." @@ -7995,7 +7782,7 @@ msgstr "" "fontes. A predefinição é '.dsc'." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:212 +#: apt-ftparchive.1.xml:206 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Contents files." @@ -8004,7 +7791,7 @@ msgstr "" "controla a compressão para os ficheiros de Conteúdos." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:218 +#: apt-ftparchive.1.xml:212 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Translation-en master file." @@ -8013,7 +7800,7 @@ msgstr "" "controla a compressão para o ficheiro mestre Translation-en." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:224 +#: apt-ftparchive.1.xml:218 msgid "" "Specifies the number of kilobytes to delink (and replace with hard links) " "per run. This is used in conjunction with the per-section <literal>External-" @@ -8024,7 +7811,7 @@ msgstr "" "Links</literal> por secção." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:231 +#: apt-ftparchive.1.xml:225 msgid "" "Specifies the mode of all created index files. It defaults to 0644. All " "index files are set to this mode with no regard to the umask." @@ -8034,7 +7821,7 @@ msgstr "" "independentemente do umask." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:238 apt-ftparchive.1.xml:384 +#: apt-ftparchive.1.xml:232 apt-ftparchive.1.xml:378 msgid "" "Specifies whether long descriptions should be included in the " "<filename>Packages</filename> file or split out into a master " @@ -8045,12 +7832,12 @@ msgstr "" "<filename>Translation-en</filename> mestre." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:244 +#: apt-ftparchive.1.xml:238 msgid "<literal>TreeDefault</literal> Section" msgstr "Secção <literal>TreeDefault</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:246 +#: apt-ftparchive.1.xml:240 msgid "" "Sets defaults specific to <literal>Tree</literal> sections. All of these " "variables are substitution variables and have the strings $(DIST), " @@ -8061,7 +7848,7 @@ msgstr "" "$(DIST), $(SECTION) e $(ARCH) substituídas pelos seus respectivos valores." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:253 +#: apt-ftparchive.1.xml:247 msgid "" "Sets the number of kilobytes of contents files that are generated each day. " "The contents files are round-robined so that over several days they will all " @@ -8072,7 +7859,7 @@ msgstr "" "alguns dias todos sejam reconstruídos." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:260 +#: apt-ftparchive.1.xml:254 msgid "" "Controls the number of days a contents file is allowed to be checked without " "changing. If this limit is passed the mtime of the contents file is updated. " @@ -8090,7 +7877,7 @@ msgstr "" "modo. A predefinição é 10, as unidades são em dias." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:271 +#: apt-ftparchive.1.xml:265 msgid "" "Sets the top of the .deb directory tree. Defaults to <filename>$(DIST)/" "$(SECTION)/binary-$(ARCH)/</filename>" @@ -8099,7 +7886,7 @@ msgstr "" "$(DIST)/$(SECTION)/binary-$(ARCH)/</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:277 +#: apt-ftparchive.1.xml:271 msgid "" "Sets the top of the source package directory tree. Defaults to <filename>" "$(DIST)/$(SECTION)/source/</filename>" @@ -8108,7 +7895,7 @@ msgstr "" "<filename>$(DIST)/$(SECTION)/source/</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:283 +#: apt-ftparchive.1.xml:277 msgid "" "Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/" "binary-$(ARCH)/Packages</filename>" @@ -8117,7 +7904,7 @@ msgstr "" "$(SECTION)/binary-$(ARCH)/Packages</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:289 +#: apt-ftparchive.1.xml:283 msgid "" "Sets the output Sources file. Defaults to <filename>$(DIST)/$(SECTION)/" "source/Sources</filename>" @@ -8126,7 +7913,7 @@ msgstr "" "$(SECTION)/source/Sources</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:295 +#: apt-ftparchive.1.xml:289 msgid "" "Sets the output Translation-en master file with the long descriptions if " "they should be not included in the Packages file. Defaults to <filename>" @@ -8137,7 +7924,7 @@ msgstr "" "$(DIST)/$(SECTION)/i18n/Translation-en</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:302 +#: apt-ftparchive.1.xml:296 msgid "" "Sets the path prefix that causes a symlink to be considered an internal link " "instead of an external link. Defaults to <filename>$(DIST)/$(SECTION)/</" @@ -8148,7 +7935,7 @@ msgstr "" "$(SECTION)/</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:309 +#: apt-ftparchive.1.xml:303 msgid "" "Sets the output Contents file. Defaults to <filename>$(DIST)/$(SECTION)/" "Contents-$(ARCH)</filename>. If this setting causes multiple Packages files " @@ -8163,12 +7950,12 @@ msgstr "" "ficheiros pacotes todos juntos." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:318 +#: apt-ftparchive.1.xml:312 msgid "Sets header file to prepend to the contents output." msgstr "Define o ficheiro cabeçalho para prefixar a saída de conteúdos." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:323 +#: apt-ftparchive.1.xml:317 msgid "" "Sets the binary cache database to use for this section. Multiple sections " "can share the same database." @@ -8177,7 +7964,7 @@ msgstr "" "secções podem partilhar a mesma base de dados." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:329 +#: apt-ftparchive.1.xml:323 msgid "" "Specifies that instead of walking the directory tree, <command>apt-" "ftparchive</command> should read the list of files from the given file. " @@ -8189,7 +7976,7 @@ msgstr "" "arquivo." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:336 +#: apt-ftparchive.1.xml:330 msgid "" "Specifies that instead of walking the directory tree, <command>apt-" "ftparchive</command> should read the list of files from the given file. " @@ -8202,12 +7989,12 @@ msgstr "" "arquivo. Isto é usado quando se processa índices de fonte." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:344 +#: apt-ftparchive.1.xml:338 msgid "<literal>Tree</literal> Section" msgstr "Secção <literal>Tree</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:346 +#: apt-ftparchive.1.xml:340 msgid "" "The <literal>Tree</literal> section defines a standard Debian file tree " "which consists of a base directory, then multiple sections in that base " @@ -8222,7 +8009,7 @@ msgstr "" "<literal>Directory</literal>." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:351 +#: apt-ftparchive.1.xml:345 msgid "" "The <literal>Tree</literal> section takes a scope tag which sets the " "<literal>$(DIST)</literal> variable and defines the root of the tree (the " @@ -8235,7 +8022,7 @@ msgstr "" "definição tal como <filename>dists/&stable-codename;</filename>." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:356 +#: apt-ftparchive.1.xml:350 msgid "" "All of the settings defined in the <literal>TreeDefault</literal> section " "can be used in a <literal>Tree</literal> section as well as three new " @@ -8246,7 +8033,7 @@ msgstr "" "variáveis." #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt-ftparchive.1.xml:362 +#: apt-ftparchive.1.xml:356 #, no-wrap msgid "" "for i in Sections do \n" @@ -8260,7 +8047,7 @@ msgstr "" " " #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:359 +#: apt-ftparchive.1.xml:353 msgid "" "When processing a <literal>Tree</literal> section <command>apt-ftparchive</" "command> performs an operation similar to: <placeholder type=\"programlisting" @@ -8271,7 +8058,7 @@ msgstr "" "\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:370 +#: apt-ftparchive.1.xml:364 msgid "" "This is a space separated list of sections which appear under the " "distribution; typically this is something like <literal>main contrib non-" @@ -8282,7 +8069,7 @@ msgstr "" "literal>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:377 +#: apt-ftparchive.1.xml:371 msgid "" "This is a space separated list of all the architectures that appear under " "search section. The special architecture 'source' is used to indicate that " @@ -8293,7 +8080,7 @@ msgstr "" "indicar que esta árvore tem um arquivo fonte." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:390 +#: apt-ftparchive.1.xml:384 msgid "" "Sets the binary override file. The override file contains section, priority " "and maintainer address information." @@ -8302,7 +8089,7 @@ msgstr "" "informação de secção, prioridade e endereço do responsável." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:396 +#: apt-ftparchive.1.xml:390 msgid "" "Sets the source override file. The override file contains section " "information." @@ -8311,22 +8098,22 @@ msgstr "" "informação de secção." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:402 apt-ftparchive.1.xml:448 +#: apt-ftparchive.1.xml:396 apt-ftparchive.1.xml:442 msgid "Sets the binary extra override file." msgstr "Define o ficheiro de sobreposição extra binário." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:407 apt-ftparchive.1.xml:453 +#: apt-ftparchive.1.xml:401 apt-ftparchive.1.xml:447 msgid "Sets the source extra override file." msgstr "Define o ficheiro de sobreposição extra fonte." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:412 +#: apt-ftparchive.1.xml:406 msgid "<literal>BinDirectory</literal> Section" msgstr "Secção <literal>BinDirectory</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:414 +#: apt-ftparchive.1.xml:408 msgid "" "The <literal>bindirectory</literal> section defines a binary directory tree " "with no special structure. The scope tag specifies the location of the " @@ -8341,12 +8128,12 @@ msgstr "" "definições <literal>Section</literal><literal>Architecture</literal>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:422 +#: apt-ftparchive.1.xml:416 msgid "Sets the Packages file output." msgstr "Define a saída do ficheiro Packages." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:427 +#: apt-ftparchive.1.xml:421 msgid "" "Sets the Sources file output. At least one of <literal>Packages</literal> or " "<literal>Sources</literal> is required." @@ -8355,42 +8142,42 @@ msgstr "" "<literal>Packages</literal> ou <literal>Sources</literal>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:433 +#: apt-ftparchive.1.xml:427 msgid "Sets the Contents file output (optional)." msgstr "Define a saída do ficheiro Contents (opcional)" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:438 +#: apt-ftparchive.1.xml:432 msgid "Sets the binary override file." msgstr "Define o ficheiro de sobreposição binário." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:443 +#: apt-ftparchive.1.xml:437 msgid "Sets the source override file." msgstr "Define o ficheiro de sobreposição fonte." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:458 +#: apt-ftparchive.1.xml:452 msgid "Sets the cache DB." msgstr "Define a base de dados de cache." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:463 +#: apt-ftparchive.1.xml:457 msgid "Appends a path to all the output paths." msgstr "Acrescenta um caminho a todos os caminhos de saída." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:468 +#: apt-ftparchive.1.xml:462 msgid "Specifies the file list file." msgstr "Especifica o ficheiro de lista de ficheiros." #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:475 +#: apt-ftparchive.1.xml:469 msgid "The Binary Override File" msgstr "O Ficheiro Binary Override" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:476 +#: apt-ftparchive.1.xml:470 msgid "" "The binary override file is fully compatible with &dpkg-scanpackages;. It " "contains four fields separated by spaces. The first field is the package " @@ -8405,19 +8192,19 @@ msgstr "" "permutação do responsável." #. type: Content of: <refentry><refsect1><para><literallayout> -#: apt-ftparchive.1.xml:482 +#: apt-ftparchive.1.xml:476 #, no-wrap msgid "old [// oldn]* => new" msgstr "old [// oldn]* => new" #. type: Content of: <refentry><refsect1><para><literallayout> -#: apt-ftparchive.1.xml:484 +#: apt-ftparchive.1.xml:478 #, no-wrap msgid "new" msgstr "new" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:481 +#: apt-ftparchive.1.xml:475 msgid "" "The general form of the maintainer field is: <placeholder type=" "\"literallayout\" id=\"0\"/> or simply, <placeholder type=\"literallayout\" " @@ -8434,12 +8221,12 @@ msgstr "" "formato substitui incondicionalmente o campo do responsável." #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:492 +#: apt-ftparchive.1.xml:486 msgid "The Source Override File" msgstr "O Ficheiro Source Override" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:494 +#: apt-ftparchive.1.xml:488 msgid "" "The source override file is fully compatible with &dpkg-scansources;. It " "contains two fields separated by spaces. The first field is the source " @@ -8450,12 +8237,12 @@ msgstr "" "nome de pacote fonte, o segundo é a secção onde o atribuir." #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:499 +#: apt-ftparchive.1.xml:493 msgid "The Extra Override File" msgstr "O Ficheiro Extra Override" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:501 +#: apt-ftparchive.1.xml:495 msgid "" "The extra override file allows any arbitrary tag to be added or replaced in " "the output. It has three columns, the first is the package, the second is " @@ -8466,7 +8253,7 @@ msgstr "" "pacote, a segunda é a etiqueta e restante da linha é o novo valor." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:512 +#: apt-ftparchive.1.xml:506 msgid "" "Generate the given checksum. These options default to on, when turned off " "the generated index files will not have the checksum fields where possible. " @@ -8490,7 +8277,7 @@ msgstr "" "<literal>MD5</literal>, <literal>SHA1</literal> ou <literal>SHA256</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:523 +#: apt-ftparchive.1.xml:517 msgid "" "Use a binary caching DB. This has no effect on the generate command. " "Configuration Item: <literal>APT::FTPArchive::DB</literal>." @@ -8499,7 +8286,7 @@ msgstr "" "generate. Item de configuração: <literal>APT::FTPArchive::DB</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:529 +#: apt-ftparchive.1.xml:523 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quiet up to a maximum of 2. You can also use " @@ -8513,7 +8300,7 @@ msgstr "" "<literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:537 +#: apt-ftparchive.1.xml:531 msgid "" "Perform Delinking. If the <literal>External-Links</literal> setting is used " "then this option actually enables delinking of the files. It defaults to on " @@ -8526,7 +8313,7 @@ msgstr "" "option>. Item de Configuração: <literal>APT::FTPArchive::DeLinkAct</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:545 +#: apt-ftparchive.1.xml:539 msgid "" "Perform contents generation. When this option is set and package indexes are " "being generated with a cache DB then the file listing will also be extracted " @@ -8542,7 +8329,7 @@ msgstr "" "de Configuração: <literal>APT::FTPArchive::Contents</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:555 +#: apt-ftparchive.1.xml:549 msgid "" "Select the source override file to use with the <literal>sources</literal> " "command. Configuration Item: <literal>APT::FTPArchive::SourceOverride</" @@ -8553,7 +8340,7 @@ msgstr "" "SourceOverride</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:561 +#: apt-ftparchive.1.xml:555 msgid "" "Make the caching databases read only. Configuration Item: <literal>APT::" "FTPArchive::ReadOnlyDB</literal>." @@ -8562,7 +8349,7 @@ msgstr "" "<literal>APT::FTPArchive::ReadOnlyDB</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:566 +#: apt-ftparchive.1.xml:560 msgid "" "Accept in the <literal>packages</literal> and <literal>contents</literal> " "commands only package files matching <literal>*_arch.deb</literal> or " @@ -8576,7 +8363,7 @@ msgstr "" "FTPArchive::Architecture</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:574 +#: apt-ftparchive.1.xml:568 msgid "" "&apt-ftparchive; caches as much as possible of metadata in a cachedb. If " "packages are recompiled and/or republished with the same version again, this " @@ -8600,7 +8387,7 @@ msgstr "" "as verificações extras serão desnecessárias." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:586 +#: apt-ftparchive.1.xml:580 msgid "" "This configuration option defaults to \"<literal>true</literal>\" and should " "only be set to <literal>\"false\"</literal> if the Archive generated with " @@ -8615,17 +8402,13 @@ msgstr "" "<filename>Translation-en</filename> só pode ser criado no comando generate." #. type: Content of: <refentry><refsect1><para><programlisting> -#: apt-ftparchive.1.xml:604 +#: apt-ftparchive.1.xml:598 #, no-wrap -msgid "" -"<command>apt-ftparchive</command> packages <replaceable>directory<" -"/replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" -msgstr "" -"<command>apt-ftparchive</command> pacotes <replaceable>directório<" -"/replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" +msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" +msgstr "<command>apt-ftparchive</command> pacotes <replaceable>directório</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:600 +#: apt-ftparchive.1.xml:594 msgid "" "To create a compressed Packages file for a directory containing binary " "packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>" @@ -8634,7 +8417,7 @@ msgstr "" "pacotes binários (.deb): <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:614 +#: apt-ftparchive.1.xml:608 msgid "" "<command>apt-ftparchive</command> returns zero on normal operation, decimal " "100 on error." @@ -8643,32 +8426,32 @@ msgstr "" "decimal em erro." #. type: Attribute 'lang' of: <book> -#: guide.dbk:8 offline.dbk:8 +#: guide.dbk:9 offline.dbk:9 msgid "en" msgstr "pt" #. type: Content of: <book><title> -#: guide.dbk:10 +#: guide.dbk:11 msgid "APT User's Guide" msgstr "Guia de Utilizador do APT" #. type: Content of: <book><bookinfo><authorgroup><author><personname> -#: guide.dbk:16 offline.dbk:16 +#: guide.dbk:17 offline.dbk:17 msgid "Jason Gunthorpe" msgstr "Jason Gunthorpe" #. type: Content of: <book><bookinfo><authorgroup><author><email> -#: guide.dbk:16 offline.dbk:16 +#: guide.dbk:17 offline.dbk:17 msgid "jgg@debian.org" msgstr "jgg@debian.org" #. type: Content of: <book><bookinfo><releaseinfo> -#: guide.dbk:20 offline.dbk:20 +#: guide.dbk:21 offline.dbk:21 msgid "Version &apt-product-version;" msgstr "Versão &apt-product-version;" #. type: Content of: <book><bookinfo><abstract><para> -#: guide.dbk:24 +#: guide.dbk:25 msgid "" "This document provides an overview of how to use the the APT package manager." msgstr "" @@ -8676,19 +8459,19 @@ msgstr "" "pacotes APT." #. type: Content of: <book><bookinfo> -#: guide.dbk:28 +#: guide.dbk:29 msgid "" "<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" msgstr "" "<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" #. type: Content of: <book><bookinfo><legalnotice><title> -#: guide.dbk:31 offline.dbk:32 +#: guide.dbk:32 offline.dbk:33 msgid "License Notice" msgstr "Aviso de Licença" #. type: Content of: <book><bookinfo><legalnotice><para> -#: guide.dbk:33 offline.dbk:34 +#: guide.dbk:34 offline.dbk:35 msgid "" "\"APT\" and this document are free software; you can redistribute them and/" "or modify them under the terms of the GNU General Public License as " @@ -8696,12 +8479,12 @@ msgid "" "or (at your option) any later version." msgstr "" "\"APT\" e este documento são software livre; você pode distribuí-lo e/ou " -"modificá-lo sob os termos da GNU General Public License como publicada " -"pela Free Software Foundation; seja na versão 2 da Licença, ou (por sua " -"opção) qualquer versão posterior." +"modificá-lo sob os termos da GNU General Public License como publicada pela " +"Free Software Foundation; seja na versão 2 da Licença, ou (por sua opção) " +"qualquer versão posterior." #. type: Content of: <book><bookinfo><legalnotice><para> -#: guide.dbk:42 offline.dbk:40 +#: guide.dbk:43 offline.dbk:41 msgid "" "For more details, on Debian systems, see the file /usr/share/common-licenses/" "GPL for the full license." @@ -8710,12 +8493,12 @@ msgstr "" "licenses/GPL para a licença completa." #. type: Content of: <book><chapter><title> -#: guide.dbk:49 +#: guide.dbk:50 msgid "General" msgstr "Geral" #. type: Content of: <book><chapter><para> -#: guide.dbk:51 +#: guide.dbk:52 msgid "" "The APT package currently contains two sections, the APT <command>dselect</" "command> method and the <command>apt-get</command> command line user " @@ -8728,12 +8511,12 @@ msgstr "" "remover pacotes assim como descarregar novos pacotes da Internet." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:57 +#: guide.dbk:58 msgid "Anatomy of the Package System" msgstr "Anatomia do Sistema de Pacotes" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:59 +#: guide.dbk:60 msgid "" "The Debian packaging system has a large amount of information associated " "with each package to help assure that it integrates cleanly and easily into " @@ -8745,7 +8528,7 @@ msgstr "" "sistema de dependências." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:64 +#: guide.dbk:65 msgid "" "The dependency system allows individual programs to make use of shared " "elements in the system such as libraries. It simplifies placing infrequently " @@ -8761,7 +8544,7 @@ msgstr "" "e mais." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:71 +#: guide.dbk:72 msgid "" "The first step to understanding the dependency system is to grasp the " "concept of a simple dependency. The meaning of a simple dependency is that a " @@ -8774,7 +8557,7 @@ msgstr "" "para funcionar correctamente." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:76 +#: guide.dbk:77 msgid "" "For instance, mailcrypt is an emacs extension that aids in encrypting email " "with GPG. Without GPGP installed mailcrypt is useless, so mailcrypt has a " @@ -8787,7 +8570,7 @@ msgstr "" "uma dependência simples do emacs, e sem o emacs é completamente inútil." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:82 +#: guide.dbk:83 msgid "" "The other important dependency to understand is a conflicting dependency. It " "means that a package, when installed with another package, will not work and " @@ -8809,7 +8592,7 @@ msgstr "" "transporte de mail." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:92 +#: guide.dbk:93 msgid "" "As an added complication there is the possibility for a package to pretend " "to be another package. Consider that exim and sendmail for many intents are " @@ -8830,7 +8613,7 @@ msgstr "" "adicionar uma grande confusão quando se tenta corrigir pacotes manualmente." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:102 +#: guide.dbk:103 msgid "" "At any given time a single dependency may be met by packages that are " "already installed or it may not be. APT attempts to help resolve dependency " @@ -8843,12 +8626,12 @@ msgstr "" "automáticos que ajudam a seleccionar os pacotes para instalação." #. type: Content of: <book><chapter><title> -#: guide.dbk:111 +#: guide.dbk:112 msgid "apt-get" msgstr "apt-get" #. type: Content of: <book><chapter><para> -#: guide.dbk:113 +#: guide.dbk:114 msgid "" "<command>apt-get</command> provides a simple way to install packages from " "the command line. Unlike <command>dpkg</command>, <command>apt-get</command> " @@ -8862,7 +8645,7 @@ msgstr "" "<emphasis>Source</emphasis>." #. type: Content of: <book><chapter><para><footnote><para> -#: guide.dbk:119 +#: guide.dbk:120 msgid "" "If you are using an http proxy server you must set the http_proxy " "environment variable first, see sources.list(5)" @@ -8871,7 +8654,7 @@ msgstr "" "de ambiente http_proxy primeiro, veja sources.list(5)" #. type: Content of: <book><chapter><para> -#: guide.dbk:119 +#: guide.dbk:120 msgid "" "The first <placeholder type=\"footnote\" id=\"0\"/> thing that should be " "done before using <command>apt-get</command> is to fetch the package lists " @@ -8885,7 +8668,7 @@ msgstr "" "exemplo," #. type: Content of: <book><chapter><screen> -#: guide.dbk:127 +#: guide.dbk:128 #, no-wrap msgid "" "# apt-get update\n" @@ -8901,17 +8684,17 @@ msgstr "" "Building Dependency Tree... Done\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:134 +#: guide.dbk:135 msgid "Once updated there are several commands that can be used:" msgstr "Uma vez actualizado existem vários comandos que podem ser usados:" #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:138 +#: guide.dbk:139 msgid "upgrade" msgstr "upgrade" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:141 +#: guide.dbk:142 msgid "" "Upgrade will attempt to gently upgrade the whole system. Upgrade will never " "install a new package or remove an existing package, nor will it ever " @@ -8932,12 +8715,12 @@ msgstr "" "literal> podem ser usados para forçar estes pacotes a instalar." #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:153 +#: guide.dbk:154 msgid "install" msgstr "install" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:156 +#: guide.dbk:157 msgid "" "Install is used to install packages by name. The package is automatically " "fetched and installed. This can be useful if you already know the name of " @@ -8956,12 +8739,12 @@ msgstr "" "algo mais que os seus argumentos serão alterados." #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:167 +#: guide.dbk:168 msgid "dist-upgrade" msgstr "dist-upgrade" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:170 +#: guide.dbk:171 msgid "" "Dist-upgrade is a complete upgrader designed to simplify upgrading between " "releases of Debian. It uses a sophisticated algorithm to determine the best " @@ -8982,7 +8765,7 @@ msgstr "" "para instalar quaisquer pacotes que tenham ficado de fora." #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:180 +#: guide.dbk:181 msgid "" "It is important to closely look at what dist-upgrade is going to do, its " "decisions may sometimes be quite surprising." @@ -8991,7 +8774,7 @@ msgstr "" "decisões podem por vezes ser bastante surpreendentes." #. type: Content of: <book><chapter><para> -#: guide.dbk:187 +#: guide.dbk:188 msgid "" "<command>apt-get</command> has several command line options that are " "detailed in its man page, <citerefentry><refentrytitle>apt-get</" @@ -9013,12 +8796,12 @@ msgstr "" "novo comando que s descarregou mas sem o <literal>-d</literal>." #. type: Content of: <book><chapter><title> -#: guide.dbk:199 +#: guide.dbk:200 msgid "DSelect" msgstr "DSelect" #. type: Content of: <book><chapter><para> -#: guide.dbk:201 +#: guide.dbk:202 msgid "" "The APT <command>dselect</command> method provides the complete APT system " "with the <command>dselect</command> package selection GUI. <command>dselect</" @@ -9031,7 +8814,7 @@ msgstr "" "instalados ou removidos e o APT instala-os." #. type: Content of: <book><chapter><para> -#: guide.dbk:207 +#: guide.dbk:208 msgid "" "To enable the APT method you need to select [A]ccess in <command>dselect</" "command> and then choose the APT method. You will be prompted for a set of " @@ -9055,7 +8838,7 @@ msgstr "" "usar os pacotes no seu CD-ROM antes de descarregar da Internet." #. type: Content of: <book><chapter><screen> -#: guide.dbk:218 +#: guide.dbk:219 #, no-wrap msgid "" " Set up a list of distribution source locations\n" @@ -9085,7 +8868,7 @@ msgstr "" " URL [http://llug.sep.bnl.gov/debian]:\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:232 +#: guide.dbk:233 msgid "" "The <emphasis>Sources</emphasis> setup starts by asking for the base of the " "Debian archive, defaulting to a HTTP mirror. Next it asks for the " @@ -9096,7 +8879,7 @@ msgstr "" "pergunta qual a distribuição a obter." #. type: Content of: <book><chapter><screen> -#: guide.dbk:237 +#: guide.dbk:238 #, no-wrap msgid "" " Please give the distribution tag to get or a path to the\n" @@ -9112,7 +8895,7 @@ msgstr "" " Distribution [stable]:\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:244 +#: guide.dbk:245 msgid "" "The distribution refers to the Debian version in the archive, " "<emphasis>stable</emphasis> refers to the latest released version and " @@ -9130,7 +8913,7 @@ msgstr "" "Estados Unidos. No entanto importar estes pacotes para os US é legal." #. type: Content of: <book><chapter><screen> -#: guide.dbk:253 +#: guide.dbk:254 #, no-wrap msgid "" " Please give the components to get\n" @@ -9144,7 +8927,7 @@ msgstr "" " Componentes [main contrib non-free]:\n" #. type: Content of: <book><chapter><para> -#: guide.dbk:259 +#: guide.dbk:260 msgid "" "The components list refers to the list of sub distributions to fetch. The " "distribution is split up based on software licenses, main being DFSG free " @@ -9157,7 +8940,7 @@ msgstr "" "restrições colocadas no seu uso e distribuição." #. type: Content of: <book><chapter><para> -#: guide.dbk:265 +#: guide.dbk:266 msgid "" "Any number of sources can be added, the setup script will continue to prompt " "until you have specified all that you want." @@ -9166,7 +8949,7 @@ msgstr "" "continuar a perguntar-lhe até que tenha especificado todas as que deseja." #. type: Content of: <book><chapter><para> -#: guide.dbk:269 +#: guide.dbk:270 msgid "" "Before starting to use <command>dselect</command> it is necessary to update " "the available list by selecting [U]pdate from the menu. This is a superset " @@ -9181,7 +8964,7 @@ msgstr "" "mesmo que tenha sido feito <literal>apt-get update</literal> antes." #. type: Content of: <book><chapter><para> -#: guide.dbk:276 +#: guide.dbk:277 msgid "" "You can then go on and make your selections using [S]elect and then perform " "the installation using [I]nstall. When using the APT method the [C]onfig and " @@ -9193,7 +8976,7 @@ msgstr "" "e [R]emove não fazem sentido, o comando [I]nstall executa ambos juntamente." #. type: Content of: <book><chapter><para> -#: guide.dbk:282 +#: guide.dbk:283 msgid "" "By default APT will automatically remove the package (.deb) files once they " "have been successfully installed. To change this behavior place " @@ -9205,12 +8988,12 @@ msgstr "" "apt/apt.conf." #. type: Content of: <book><chapter><title> -#: guide.dbk:288 +#: guide.dbk:289 msgid "The Interface" msgstr "A Interface" #. type: Content of: <book><chapter><para><footnote><para> -#: guide.dbk:292 +#: guide.dbk:293 msgid "" "The <command>dselect</command> method actually is a set of wrapper scripts " "to <command>apt-get</command>. The method actually provides more " @@ -9221,7 +9004,7 @@ msgstr "" "funcionalidades que aquelas presentes no <command>apt-get</command> sozinho." #. type: Content of: <book><chapter><para> -#: guide.dbk:290 +#: guide.dbk:291 msgid "" "Both that APT <command>dselect</command> method and <command>apt-get</" "command> share the same interface. It is a simple system that generally " @@ -9238,12 +9021,12 @@ msgstr "" "quanto falta fazer." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:301 +#: guide.dbk:302 msgid "Startup" msgstr "Arranque" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:303 +#: guide.dbk:304 msgid "" "Before all operations except update, APT performs a number of actions to " "prepare its internal state. It also does some checks of the system's state. " @@ -9256,7 +9039,7 @@ msgstr "" "correndo <literal>apt-get check</literal>." #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:309 +#: guide.dbk:310 #, no-wrap msgid "" "# apt-get check\n" @@ -9268,7 +9051,7 @@ msgstr "" "Building Dependency Tree... Done\n" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:314 +#: guide.dbk:315 msgid "" "The first thing it does is read all the package files into memory. APT uses " "a caching scheme so this operation will be faster the second time it is run. " @@ -9282,7 +9065,7 @@ msgstr "" "terminar." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:320 +#: guide.dbk:321 msgid "" "The final operation performs a detailed analysis of the system's " "dependencies. It checks every dependency of every installed or unpacked " @@ -9295,7 +9078,7 @@ msgstr "" "relatório e o <command>apt-get</command> recusa-se a funcionar." #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:326 +#: guide.dbk:327 #, no-wrap msgid "" "# apt-get check\n" @@ -9331,7 +9114,7 @@ msgstr "" " libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1)\n" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:343 +#: guide.dbk:344 msgid "" "In this example the system has many problems, including a serious problem " "with libreadlineg2. For each package that has unmet dependencies a line is " @@ -9346,7 +9129,7 @@ msgstr "" "pacote tem um problema de dependência." #. type: Content of: <book><chapter><section><para><footnote><para> -#: guide.dbk:352 +#: guide.dbk:353 msgid "" "APT however considers all known dependencies and attempts to prevent broken " "packages" @@ -9355,7 +9138,7 @@ msgstr "" "pacotes quebrados" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:350 +#: guide.dbk:351 msgid "" "There are two ways a system can get into a broken state like this. The first " "is caused by <command>dpkg</command> missing some subtle relationships " @@ -9372,7 +9155,7 @@ msgstr "" "sem que as suas dependências tenham sido instaladas." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:359 +#: guide.dbk:360 msgid "" "The second situation is much less serious than the first because APT places " "certain constraints on the order that packages are installed. In both cases " @@ -9391,7 +9174,7 @@ msgstr "" "responsável com falhas." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:368 +#: guide.dbk:369 msgid "" "However, if the <literal>-f</literal> option is used to correct a seriously " "broken system caused by the first case then it is possible that it will " @@ -9406,12 +9189,12 @@ msgstr "" "forçar) para corrigir a situação o suficiente para permitir ao APT continuar." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:376 +#: guide.dbk:377 msgid "The Status Report" msgstr "O Relatório de Estado" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:378 +#: guide.dbk:379 msgid "" "Before proceeding <command>apt-get</command> will present a report on what " "will happen. Generally the report reflects the type of operation being " @@ -9428,12 +9211,12 @@ msgstr "" "executado." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:385 +#: guide.dbk:386 msgid "The Extra Package list" msgstr "A lista de Pacotes Extra" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:387 +#: guide.dbk:388 #, no-wrap msgid "" "The following extra packages will be installed:\n" @@ -9451,7 +9234,7 @@ msgstr "" " ssh\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:395 +#: guide.dbk:396 msgid "" "The Extra Package list shows all of the packages that will be installed or " "upgraded in excess of the ones mentioned on the command line. It is only " @@ -9464,12 +9247,12 @@ msgstr "" "geralmente o resultado de uma Auto instalação." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:402 +#: guide.dbk:403 msgid "The Packages to Remove" msgstr "Os Pacotes para Remover" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:404 +#: guide.dbk:405 #, no-wrap msgid "" "The following packages will be REMOVED:\n" @@ -9485,7 +9268,7 @@ msgstr "" " nas xpilot xfig\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:411 +#: guide.dbk:412 msgid "" "The Packages to Remove list shows all of the packages that will be removed " "from the system. It can be shown for any of the operations and should be " @@ -9504,12 +9287,12 @@ msgstr "" "instalados, possivelmente devido a uma instalação abortada." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:421 +#: guide.dbk:422 msgid "The New Packages list" msgstr "A lista de Novos Pacotes" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:423 +#: guide.dbk:424 #, no-wrap msgid "" "The following NEW packages will installed:\n" @@ -9519,7 +9302,7 @@ msgstr "" " zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:427 +#: guide.dbk:428 msgid "" "The New Packages list is simply a reminder of what will happen. The packages " "listed are not presently installed in the system but will be when APT is " @@ -9530,12 +9313,12 @@ msgstr "" "estar quando o APT terminar." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:432 +#: guide.dbk:433 msgid "The Kept Back list" msgstr "A lista Kept Back" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:434 +#: guide.dbk:435 #, no-wrap msgid "" "The following packages have been kept back\n" @@ -9547,7 +9330,7 @@ msgstr "" " gs snmp arena lynx xpat2 groff xscreensaver\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:439 +#: guide.dbk:440 msgid "" "Whenever the whole system is being upgraded there is the possibility that " "new versions of packages cannot be installed because they require new things " @@ -9564,12 +9347,12 @@ msgstr "" "usando o <command>dselect</command> para resolver os seus problemas." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:448 +#: guide.dbk:449 msgid "Held Packages warning" msgstr "Aviso de Pacotes Mantidos" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:450 +#: guide.dbk:451 #, no-wrap msgid "" "The following held packages will be changed:\n" @@ -9579,7 +9362,7 @@ msgstr "" " cvs\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:454 +#: guide.dbk:455 msgid "" "Sometimes you can ask APT to install a package that is on hold, in such a " "case it prints out a warning that the held package is going to be changed. " @@ -9590,12 +9373,12 @@ msgstr "" "apenas deve acontecer durante um dist-upgrade ou install." #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:460 +#: guide.dbk:461 msgid "Final summary" msgstr "Sumário final" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:462 +#: guide.dbk:463 msgid "" "Finally, APT will print out a summary of all the changes that will occur." msgstr "" @@ -9603,21 +9386,19 @@ msgstr "" "acontecer." #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:465 +#: guide.dbk:466 #, no-wrap msgid "" "206 packages upgraded, 8 newly installed, 23 to remove and 51 not upgraded.\n" "12 packages not fully installed or removed.\n" "Need to get 65.7M/66.7M of archives. After unpacking 26.5M will be used.\n" msgstr "" -"206 pacotes actualizados, 8 instalados de novo, 23 para remover e 51 não " -"actualizados.\n" +"206 pacotes actualizados, 8 instalados de novo, 23 para remover e 51 não actualizados.\n" "12 pacotes não totalmente instalados ou removidos.\n" -"É necessário obter 65.7M/66.7M de arquivos. Após desempacotamento será usado " -"26.5M.\n" +"É necessário obter 65.7M/66.7M de arquivos. Após desempacotamento será usado 26.5M.\n" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:470 +#: guide.dbk:471 msgid "" "The first line of the summary simply is a reduced version of all of the " "lists and includes the number of upgrades - that is packages already " @@ -9648,7 +9429,7 @@ msgstr "" "pode indicar a quantidade de espaço que irá ser libertado." #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:484 +#: guide.dbk:485 msgid "" "Some other reports can be generated by using the -u option to show packages " "to upgrade, they are similar to the previous examples." @@ -9657,12 +9438,12 @@ msgstr "" "pacotes a actualizar, e são semelhantes aos exemplos prévios." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:491 +#: guide.dbk:492 msgid "The Status Display" msgstr "O Mostrador de Estado" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:493 +#: guide.dbk:494 msgid "" "During the download of archives and package files APT prints out a series of " "status messages." @@ -9671,7 +9452,7 @@ msgstr "" "série de mensagens de estado." #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:497 +#: guide.dbk:498 #, no-wrap msgid "" "# apt-get update\n" @@ -9691,7 +9472,7 @@ msgstr "" "11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s\n" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:506 +#: guide.dbk:507 msgid "" "The lines starting with <emphasis>Get</emphasis> are printed out when APT " "begins to fetch a file while the last line indicates the progress of the " @@ -9708,7 +9489,7 @@ msgstr "" "literal> estima a percentagem de pronto o que causa algumas imprecisões." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:514 +#: guide.dbk:515 msgid "" "The next section of the status line is repeated once for each download " "thread and indicates the operation being performed and some useful " @@ -9729,7 +9510,7 @@ msgstr "" "pacote que está a ser descarregado." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:524 +#: guide.dbk:525 msgid "" "Inside of the single quote is an informative string indicating the progress " "of the negotiation phase of the download. Typically it progresses from " @@ -9762,7 +9543,7 @@ msgstr "" "transferência mostrado." #. type: Content of: <book><chapter><section><para> -#: guide.dbk:539 +#: guide.dbk:540 msgid "" "The status display updates every half second to provide a constant feedback " "on the download progress while the Get lines scroll back whenever a new file " @@ -9778,12 +9559,12 @@ msgstr "" "mostrador de estado." #. type: Content of: <book><chapter><section><title> -#: guide.dbk:547 +#: guide.dbk:548 msgid "Dpkg" msgstr "Dpkg" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:549 +#: guide.dbk:550 msgid "" "APT uses <command>dpkg</command> for installing the archives and will switch " "over to the <command>dpkg</command> interface once downloading is completed. " @@ -9801,12 +9582,12 @@ msgstr "" "discutidas aqui." #. type: Content of: <book><title> -#: offline.dbk:10 +#: offline.dbk:11 msgid "Using APT Offline" msgstr "Usando o APT Offline" #. type: Content of: <book><bookinfo><abstract><para> -#: offline.dbk:24 +#: offline.dbk:25 msgid "" "This document describes how to use APT in a non-networked environment, " "specifically a 'sneaker-net' approach for performing upgrades." @@ -9815,24 +9596,24 @@ msgstr "" "especificamente uma aproximação 'sneaker-net' para executar actualizações." #. type: Content of: <book><bookinfo> -#: offline.dbk:29 +#: offline.dbk:30 msgid "" "<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" msgstr "" "<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" #. type: Content of: <book><chapter><title> -#: offline.dbk:47 +#: offline.dbk:48 msgid "Introduction" msgstr "Introdução" #. type: Content of: <book><chapter><section><title> -#: offline.dbk:49 offline.dbk:79 offline.dbk:191 +#: offline.dbk:50 offline.dbk:80 offline.dbk:192 msgid "Overview" msgstr "Visão geral" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:51 +#: offline.dbk:52 msgid "" "Normally APT requires direct access to a Debian archive, either from a local " "media or through a network. Another common complaint is that a Debian " @@ -9845,7 +9626,7 @@ msgstr "" "rápida mas estão fisicamente distantes." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:57 +#: offline.dbk:58 msgid "" "The solution to this is to use large removable media such as a Zip disc or a " "SuperDisk disc. These discs are not large enough to store the entire Debian " @@ -9869,7 +9650,7 @@ msgstr "" "emphasis> aquela com má ou nenhuma ligação." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:68 +#: offline.dbk:69 msgid "" "This is achieved by creatively manipulating the APT configuration file. The " "essential premise to tell APT to look on a disc for it's archive files. Note " @@ -9883,12 +9664,12 @@ msgstr "" "ext2, fat32 ou vfat." #. type: Content of: <book><chapter><title> -#: offline.dbk:77 +#: offline.dbk:78 msgid "Using APT on both machines" msgstr "Usando o APT em ambas máquinas" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:81 +#: offline.dbk:82 msgid "" "APT being available on both machines gives the simplest configuration. The " "basic idea is to place a copy of the status file on the disc and use the " @@ -9902,7 +9683,7 @@ msgstr "" "parecer-se com:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:87 +#: offline.dbk:88 #, no-wrap msgid "" " /disc/\n" @@ -9924,12 +9705,12 @@ msgstr "" " apt.conf\n" #. type: Content of: <book><chapter><section><title> -#: offline.dbk:98 +#: offline.dbk:99 msgid "The configuration file" msgstr "O ficheiro de configuração" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:100 +#: offline.dbk:101 msgid "" "The configuration file should tell APT to store its files on the disc and to " "use the configuration files on the disc as well. The sources.list should " @@ -9948,7 +9729,7 @@ msgstr "" "a file URIs." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:108 +#: offline.dbk:109 msgid "" "<emphasis>apt.conf</emphasis> must contain the necessary information to make " "APT use the disc:" @@ -9957,7 +9738,7 @@ msgstr "" "fazer o APT usar o disco:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:112 +#: offline.dbk:113 #, no-wrap msgid "" " APT\n" @@ -9986,8 +9767,7 @@ msgid "" msgstr "" " APT\n" " {\n" -" /* Isto não é necessário se as duas máquinas forem da mesma arquitectura, " -"diz\n" +" /* Isto não é necessário se as duas máquinas forem da mesma arquitectura, diz\n" " ao APT remoto que arquitectura tem a máquina de destino */\n" " Architecture \"i386\";\n" "\n" @@ -9996,8 +9776,7 @@ msgstr "" "\n" " Dir\n" " {\n" -" /* Usa o disco para informação de estado e redirecciona o ficheiro de " -"estado a partir de\n" +" /* Usa o disco para informação de estado e redirecciona o ficheiro de estado a partir de\n" " the /var/lib/dpkg default */\n" " State \"/disc/\";\n" " State::status \"status\";\n" @@ -10011,7 +9790,7 @@ msgstr "" " };\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:137 +#: offline.dbk:138 msgid "" "More details can be seen by examining the apt.conf man page and the sample " "configuration file in <emphasis>/usr/share/doc/apt/examples/apt.conf</" @@ -10022,7 +9801,7 @@ msgstr "" "conf</emphasis>." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:142 +#: offline.dbk:143 msgid "" "On the target machine the first thing to do is mount the disc and copy " "<emphasis>/var/lib/dpkg/status</emphasis> to it. You will also need to " @@ -10039,7 +9818,7 @@ msgstr "" "seguinte:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:151 +#: offline.dbk:152 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" @@ -10052,11 +9831,10 @@ msgstr "" " # apt-get update\n" " [ APT obtém os ficheiros de pacotes ]\n" " # apt-get dist-upgrade\n" -" [ APT obtém todos os pacotes necessários para actualizar a máquina de " -"destino ]\n" +" [ APT obtém todos os pacotes necessários para actualizar a máquina de destino ]\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:158 +#: offline.dbk:159 msgid "" "The dist-upgrade command can be replaced with any other standard APT " "commands, particularly dselect-upgrade. You can even use an APT front end " @@ -10069,7 +9847,7 @@ msgstr "" "problema ao comunicar as suas selecções de volta ao computador local." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:164 +#: offline.dbk:165 msgid "" "Now the disc contains all of the index files and archives needed to upgrade " "the target machine. Take the disc back and run:" @@ -10078,7 +9856,7 @@ msgstr "" "para actualizar a máquina de destino. Devolva o disco e corra:" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:168 +#: offline.dbk:169 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" @@ -10094,7 +9872,7 @@ msgstr "" " [ Ou qualquer outro comando APT ]\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:175 +#: offline.dbk:176 msgid "" "It is necessary for proper function to re-specify the status file to be the " "local one. This is very important!" @@ -10103,7 +9881,7 @@ msgstr "" "estado seja o ficheiro local. Isto é muito importante!" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:179 +#: offline.dbk:180 msgid "" "If you are using dselect you can do the very risky operation of copying disc/" "status to /var/lib/dpkg/status so that any selections you made on the remote " @@ -10119,12 +9897,12 @@ msgstr "" "APT!!" #. type: Content of: <book><chapter><title> -#: offline.dbk:189 +#: offline.dbk:190 msgid "Using APT and wget" msgstr "Usando APT e wget" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:193 +#: offline.dbk:194 msgid "" "<emphasis>wget</emphasis> is a popular and portable download tool that can " "run on nearly any machine. Unlike the method above this requires that the " @@ -10136,7 +9914,7 @@ msgstr "" "disponíveis." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:198 +#: offline.dbk:199 msgid "" "The basic idea is to create a disc that has only the archive files " "downloaded from the remote site. This is done by using the --print-uris " @@ -10148,12 +9926,12 @@ msgstr "" "apt-get e depois preparar um script wget para realmente ir buscar os pacotes." #. type: Content of: <book><chapter><section><title> -#: offline.dbk:204 +#: offline.dbk:205 msgid "Operation" msgstr "Operação" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:206 +#: offline.dbk:207 msgid "" "Unlike the previous technique no special configuration files are required. " "We merely use the standard APT commands to generate the file list." @@ -10163,7 +9941,7 @@ msgstr "" "para gerar a lista de ficheiros." #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:210 +#: offline.dbk:211 #, no-wrap msgid "" " # apt-get dist-upgrade\n" @@ -10172,13 +9950,12 @@ msgid "" " # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script\n" msgstr "" " # apt-get dist-upgrade \n" -" [ Escolha não quando perguntado, certifique-se que está contente com as " -"acções ]\n" +" [ Escolha não quando perguntado, certifique-se que está contente com as acções ]\n" " # apt-get -qq --print-uris dist-upgrade > uris\n" " # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:216 +#: offline.dbk:217 msgid "" "Any command other than dist-upgrade could be used here, including dselect-" "upgrade." @@ -10187,7 +9964,7 @@ msgstr "" "upgrade." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:220 +#: offline.dbk:221 msgid "" "The /disc/wget-script file will now contain a list of wget commands to " "execute in order to fetch the necessary archives. This script should be run " @@ -10200,12 +9977,12 @@ msgstr "" "grave os resultados no disco." #. type: Content of: <book><chapter><section><para> -#: offline.dbk:226 +#: offline.dbk:227 msgid "The remote machine would do something like" msgstr "A máquina remota deverá fazer algo como" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:229 +#: offline.dbk:230 #, no-wrap msgid "" " # cd /disc\n" @@ -10217,7 +9994,7 @@ msgstr "" " [ wait.. ]\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:234 +#: offline.dbk:235 msgid "" "Once the archives are downloaded and the disc returned to the Debian machine " "installation can proceed using," @@ -10226,13 +10003,13 @@ msgstr "" "instalação pode prosseguir usando," #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:238 +#: offline.dbk:239 #, no-wrap msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:241 +#: offline.dbk:242 msgid "Which will use the already fetched archives on the disc." msgstr "O qual irá usar os arquivos já obtidos e que estão no disco." diff --git a/doc/po/pt_BR.po b/doc/po/pt_BR.po index fb0dde77e..d28c1e633 100644 --- a/doc/po/pt_BR.po +++ b/doc/po/pt_BR.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:52+0200\n" +"POT-Creation-Date: 2014-08-28 00:20+0000\n" "PO-Revision-Date: 2004-09-20 17:02+0000\n" "Last-Translator: André Luís Lopes <andrelop@debian.org>\n" "Language-Team: <debian-l10n-portuguese@lists.debian.org>\n" @@ -479,38 +479,38 @@ msgid "" msgstr "" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt.8.xml:25 apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 -#: apt-mark.8.xml:28 apt-secure.8.xml:27 apt-cdrom.8.xml:27 -#: apt-config.8.xml:28 +#: apt.8.xml:21 apt-get.8.xml:22 apt-cache.8.xml:22 apt-key.8.xml:21 +#: apt-mark.8.xml:22 apt-secure.8.xml:21 apt-cdrom.8.xml:21 +#: apt-config.8.xml:22 msgid "8" msgstr "" #. type: Content of: <refentry><refmeta><refmiscinfo> -#: apt.8.xml:26 apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 -#: apt-mark.8.xml:29 apt-secure.8.xml:28 apt-cdrom.8.xml:28 -#: apt-config.8.xml:29 apt.conf.5.xml:34 apt_preferences.5.xml:28 -#: sources.list.5.xml:29 apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 -#: apt-ftparchive.1.xml:29 +#: apt.8.xml:22 apt-get.8.xml:23 apt-cache.8.xml:23 apt-key.8.xml:22 +#: apt-mark.8.xml:23 apt-secure.8.xml:22 apt-cdrom.8.xml:22 +#: apt-config.8.xml:23 apt.conf.5.xml:28 apt_preferences.5.xml:22 +#: sources.list.5.xml:23 apt-extracttemplates.1.xml:23 apt-sortpkgs.1.xml:23 +#: apt-ftparchive.1.xml:23 msgid "APT" msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt.8.xml:32 +#: apt.8.xml:28 msgid "command-line interface" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:37 apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 -#: apt-mark.8.xml:40 apt-secure.8.xml:52 apt-cdrom.8.xml:39 -#: apt-config.8.xml:40 apt.conf.5.xml:43 apt_preferences.5.xml:38 -#: sources.list.5.xml:38 apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 -#: apt-ftparchive.1.xml:40 +#: apt.8.xml:33 apt-get.8.xml:34 apt-cache.8.xml:34 apt-key.8.xml:33 +#: apt-mark.8.xml:34 apt-secure.8.xml:46 apt-cdrom.8.xml:33 +#: apt-config.8.xml:34 apt.conf.5.xml:37 apt_preferences.5.xml:32 +#: sources.list.5.xml:32 apt-extracttemplates.1.xml:34 apt-sortpkgs.1.xml:34 +#: apt-ftparchive.1.xml:34 #, fuzzy msgid "Description" msgstr "Descrição" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:38 +#: apt.8.xml:34 msgid "" "<command>apt</command> (Advanced Package Tool) is the command-line tool for " "handling packages. It provides a commandline interface for the package " @@ -519,7 +519,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:47 +#: apt.8.xml:43 msgid "" "<literal>list</literal> is used to display a list of packages. It supports " "shell pattern for matching package names and the following options: " @@ -528,28 +528,28 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:58 +#: apt.8.xml:54 msgid "" "<literal>search</literal> searches for the given term(s) and display " "matching packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:64 +#: apt.8.xml:60 msgid "" "<literal>show</literal> shows the package information for the given " "package(s)." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:71 +#: apt.8.xml:67 msgid "" "<literal>install</literal> is followed by one or more package names desired " "for installation or upgrading." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:75 apt-get.8.xml:118 +#: apt.8.xml:71 apt-get.8.xml:112 msgid "" "A specific version of a package can be selected for installation by " "following the package name with an equals and the version of the package to " @@ -560,7 +560,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:85 apt-get.8.xml:153 +#: apt.8.xml:81 apt-get.8.xml:147 msgid "" "<literal>remove</literal> is identical to <literal>install</literal> except " "that packages are removed instead of installed. Note that removing a package " @@ -570,30 +570,30 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:93 +#: apt.8.xml:89 msgid "" "<literal>edit-sources</literal> lets you edit your sources.list file and " "provides basic sanity checks." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:99 +#: apt.8.xml:95 msgid "" "<literal>update</literal> is used to resynchronize the package index files " "from their sources." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:105 +#: apt.8.xml:101 msgid "" "<literal>upgrade</literal> is used to install the newest versions of all " "packages currently installed on the system from the sources enumerated in " -"<filename>/etc/apt/sources.list</filename>. New package will be installed, " -"but existing package will never removed." +"<filename>/etc/apt/sources.list</filename>. New packages will be installed, " +"but existing packages will never be removed." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.8.xml:114 +#: apt.8.xml:110 msgid "" "<literal>full-upgrade</literal> performs the function of upgrade but may " "also remove installed packages if that is required in order to resolve a " @@ -601,19 +601,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:124 apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 -#: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 -#: apt-ftparchive.1.xml:506 +#: apt.8.xml:120 apt-get.8.xml:251 apt-cache.8.xml:244 apt-mark.8.xml:104 +#: apt-config.8.xml:80 apt-extracttemplates.1.xml:48 apt-sortpkgs.1.xml:44 +#: apt-ftparchive.1.xml:500 msgid "options" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:134 +#: apt.8.xml:130 msgid "Script usage" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:136 +#: apt.8.xml:132 msgid "" "The &apt; commandline is designed as a end-user tool and it may change the " "output between versions. While it tries to not break backward compatibility " @@ -623,12 +623,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:144 +#: apt.8.xml:140 msgid "Differences to &apt-get;" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:145 +#: apt.8.xml:141 msgid "" "The <command>apt</command> command is meant to be pleasant for end users and " "does not need to be backward compatible like &apt-get;. Therefore some " @@ -636,26 +636,26 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:151 +#: apt.8.xml:147 #, fuzzy msgid "The option <literal>DPkg::Progress-Fancy</literal> is enabled." msgstr "a linha <literal>Package:</literal>" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:155 +#: apt.8.xml:151 #, fuzzy msgid "The option <literal>APT::Color</literal> is enabled." msgstr "a linha <literal>Component:</literal>" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:159 +#: apt.8.xml:155 msgid "" "A new <literal>list</literal> command is available similar to <literal>dpkg " "--list</literal>." msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.8.xml:164 +#: apt.8.xml:160 #, fuzzy msgid "" "The option <literal>upgrade</literal> has <literal>--with-new-pkgs</literal> " @@ -663,43 +663,43 @@ msgid "" msgstr "a linha <literal>Archive:</literal>" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 -#: apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 -#: apt-config.8.xml:111 apt.conf.5.xml:1228 apt_preferences.5.xml:707 -#: sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 -#: apt-ftparchive.1.xml:609 +#: apt.8.xml:170 apt-get.8.xml:552 apt-cache.8.xml:346 apt-key.8.xml:191 +#: apt-mark.8.xml:127 apt-secure.8.xml:187 apt-cdrom.8.xml:148 +#: apt-config.8.xml:105 apt.conf.5.xml:1222 apt_preferences.5.xml:701 +#: sources.list.5.xml:274 apt-extracttemplates.1.xml:66 apt-sortpkgs.1.xml:59 +#: apt-ftparchive.1.xml:603 #, fuzzy msgid "See Also" msgstr "Consulte também" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:175 +#: apt.8.xml:171 msgid "" "&apt-get;, &apt-cache;, &sources-list;, &apt-conf;, &apt-config;, The APT " "User's guide in &guidesdir;, &apt-preferences;, the APT Howto." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.8.xml:180 apt-get.8.xml:564 apt-cache.8.xml:357 apt-mark.8.xml:137 -#: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 -#: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 +#: apt.8.xml:176 apt-get.8.xml:558 apt-cache.8.xml:351 apt-mark.8.xml:131 +#: apt-cdrom.8.xml:153 apt-config.8.xml:110 apt-extracttemplates.1.xml:70 +#: apt-sortpkgs.1.xml:63 apt-ftparchive.1.xml:607 msgid "Diagnostics" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.8.xml:181 +#: apt.8.xml:177 msgid "" "<command>apt</command> returns zero on normal operation, decimal 100 on " "error." msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-get.8.xml:35 +#: apt-get.8.xml:29 msgid "APT package handling utility -- command-line interface" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:41 +#: apt-get.8.xml:35 msgid "" "<command>apt-get</command> is the command-line tool for handling packages, " "and may be considered the user's \"back-end\" to other tools using the APT " @@ -708,15 +708,15 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:46 apt-cache.8.xml:46 apt-cdrom.8.xml:53 apt-config.8.xml:46 -#: apt-ftparchive.1.xml:56 +#: apt-get.8.xml:40 apt-cache.8.xml:40 apt-cdrom.8.xml:47 apt-config.8.xml:40 +#: apt-ftparchive.1.xml:50 msgid "" "Unless the <option>-h</option>, or <option>--help</option> option is given, " "one of the commands below must be present." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:51 +#: apt-get.8.xml:45 msgid "" "<literal>update</literal> is used to resynchronize the package index files " "from their sources. The indexes of available packages are fetched from the " @@ -730,7 +730,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:63 +#: apt-get.8.xml:57 msgid "" "<literal>upgrade</literal> is used to install the newest versions of all " "packages currently installed on the system from the sources enumerated in " @@ -745,7 +745,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:76 +#: apt-get.8.xml:70 msgid "" "<literal>dist-upgrade</literal> in addition to performing the function of " "<literal>upgrade</literal>, also intelligently handles changing dependencies " @@ -760,7 +760,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:89 +#: apt-get.8.xml:83 msgid "" "<literal>dselect-upgrade</literal> is used in conjunction with the " "traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</" @@ -771,7 +771,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:100 +#: apt-get.8.xml:94 msgid "" "<literal>install</literal> is followed by one or more packages desired for " "installation or upgrading. Each package is a package name, not a fully " @@ -788,14 +788,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:125 +#: apt-get.8.xml:119 msgid "" "Both of the version selection mechanisms can downgrade packages and must be " "used with care." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:128 +#: apt-get.8.xml:122 msgid "" "This is also the target to use if you want to upgrade one or more already-" "installed packages without upgrading every package you have on your system. " @@ -807,14 +807,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:139 +#: apt-get.8.xml:133 msgid "" "Finally, the &apt-preferences; mechanism allows you to create an alternative " "installation policy for individual packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:143 +#: apt-get.8.xml:137 msgid "" "If no package matches the given expression and the expression contains one " "of '.', '?' or '*' then it is assumed to be a POSIX regular expression, and " @@ -826,7 +826,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:161 +#: apt-get.8.xml:155 msgid "" "<literal>purge</literal> is identical to <literal>remove</literal> except " "that packages are removed and purged (any configuration files are deleted " @@ -834,7 +834,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:166 +#: apt-get.8.xml:160 msgid "" "<literal>source</literal> causes <command>apt-get</command> to fetch source " "packages. APT will examine the available packages to decide which source " @@ -846,7 +846,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:174 +#: apt-get.8.xml:168 msgid "" "Source packages are tracked separately from binary packages via <literal>deb-" "src</literal> lines in the &sources-list; file. This means that you will " @@ -856,7 +856,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:180 +#: apt-get.8.xml:174 msgid "" "If the <option>--compile</option> option is specified then the package will " "be compiled to a binary .deb using <command>dpkg-buildpackage</command> for " @@ -866,7 +866,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:187 +#: apt-get.8.xml:181 msgid "" "A specific source version can be retrieved by postfixing the source name " "with an equals and then the version to fetch, similar to the mechanism used " @@ -876,7 +876,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:193 +#: apt-get.8.xml:187 msgid "" "Note that source packages are not installed and tracked in the " "<command>dpkg</command> database like binary packages; they are simply " @@ -884,7 +884,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:199 +#: apt-get.8.xml:193 msgid "" "<literal>build-dep</literal> causes apt-get to install/remove packages in an " "attempt to satisfy the build dependencies for a source package. By default " @@ -894,21 +894,21 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:206 +#: apt-get.8.xml:200 msgid "" "<literal>check</literal> is a diagnostic tool; it updates the package cache " "and checks for broken dependencies." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:211 +#: apt-get.8.xml:205 msgid "" "<literal>download</literal> will download the given binary package into the " "current directory." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:217 +#: apt-get.8.xml:211 msgid "" "<literal>clean</literal> clears out the local repository of retrieved " "package files. It removes everything but the lock file from " @@ -917,7 +917,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:224 +#: apt-get.8.xml:218 msgid "" "Like <literal>clean</literal>, <literal>autoclean</literal> clears out the " "local repository of retrieved package files. The difference is that it only " @@ -929,7 +929,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:234 +#: apt-get.8.xml:228 msgid "" "<literal>autoremove</literal> is used to remove packages that were " "automatically installed to satisfy dependencies for other packages and are " @@ -937,7 +937,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:239 +#: apt-get.8.xml:233 msgid "" "<literal>changelog</literal> downloads a package changelog and displays it " "through <command>sensible-pager</command>. The server name and base " @@ -951,28 +951,28 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:262 +#: apt-get.8.xml:256 msgid "" "Do not consider recommended packages as a dependency for installing. " "Configuration Item: <literal>APT::Install-Recommends</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:267 +#: apt-get.8.xml:261 msgid "" "Consider suggested packages as a dependency for installing. Configuration " "Item: <literal>APT::Install-Suggests</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:272 +#: apt-get.8.xml:266 msgid "" "Download only; package files are only retrieved, not unpacked or installed. " "Configuration Item: <literal>APT::Get::Download-Only</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:277 +#: apt-get.8.xml:271 msgid "" "Fix; attempt to correct a system with broken dependencies in place. This " "option, when used with install/remove, can omit any packages to permit APT " @@ -988,7 +988,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:292 +#: apt-get.8.xml:286 msgid "" "Ignore missing packages; if packages cannot be retrieved or fail the " "integrity check after retrieval (corrupted package files), hold back those " @@ -1000,7 +1000,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:303 +#: apt-get.8.xml:297 msgid "" "Disables downloading of packages. This is best used with <option>--ignore-" "missing</option> to force APT to use only the .debs it has already " @@ -1008,7 +1008,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:310 +#: apt-get.8.xml:304 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quiet up to a maximum of 2. You can also use " @@ -1020,7 +1020,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:325 +#: apt-get.8.xml:319 msgid "" "No action; perform a simulation of events that would occur but do not " "actually change the system. Configuration Item: <literal>APT::Get::" @@ -1028,7 +1028,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:329 +#: apt-get.8.xml:323 msgid "" "Simulated runs performed as a user will automatically deactivate locking " "(<literal>Debug::NoLocking</literal>), and if the option <literal>APT::Get::" @@ -1040,7 +1040,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:337 +#: apt-get.8.xml:331 msgid "" "Simulated runs print out a series of lines, each representing a " "<command>dpkg</command> operation: configure (<literal>Conf</literal>), " @@ -1050,7 +1050,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:345 +#: apt-get.8.xml:339 msgid "" "Automatic yes to prompts; assume \"yes\" as answer to all prompts and run " "non-interactively. If an undesirable situation, such as changing a held " @@ -1060,28 +1060,28 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:353 +#: apt-get.8.xml:347 msgid "" "Automatic \"no\" to all prompts. Configuration Item: <literal>APT::Get::" "Assume-No</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:358 +#: apt-get.8.xml:352 msgid "" "Show upgraded packages; print out a list of all packages that are to be " "upgraded. Configuration Item: <literal>APT::Get::Show-Upgraded</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:364 +#: apt-get.8.xml:358 msgid "" "Show full versions for upgraded and installed packages. Configuration Item: " "<literal>APT::Get::Show-Versions</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:370 +#: apt-get.8.xml:364 msgid "" "This option controls the architecture packages are built for by <command>apt-" "get source --compile</command> and how cross-builddependencies are " @@ -1092,7 +1092,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:380 +#: apt-get.8.xml:374 msgid "" "This option controls the activated build profiles for which a source package " "is built by <command>apt-get source --compile</command> and how build " @@ -1102,14 +1102,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:391 +#: apt-get.8.xml:385 msgid "" "Compile source packages after downloading them. Configuration Item: " "<literal>APT::Get::Compile</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:396 +#: apt-get.8.xml:390 msgid "" "Ignore package holds; this causes <command>apt-get</command> to ignore a " "hold placed on a package. This may be useful in conjunction with " @@ -1118,7 +1118,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:403 +#: apt-get.8.xml:397 msgid "" "Allow installing new packages when used in conjunction with " "<literal>upgrade</literal>. This is useful if the update of a installed " @@ -1130,7 +1130,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:415 +#: apt-get.8.xml:409 msgid "" "Do not upgrade packages; when used in conjunction with <literal>install</" "literal>, <literal>no-upgrade</literal> will prevent packages on the command " @@ -1139,7 +1139,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:422 +#: apt-get.8.xml:416 msgid "" "Do not install new packages; when used in conjunction with <literal>install</" "literal>, <literal>only-upgrade</literal> will install upgrades for already " @@ -1148,7 +1148,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:430 +#: apt-get.8.xml:424 msgid "" "Force yes; this is a dangerous option that will cause apt to continue " "without prompting if it is doing something potentially harmful. It should " @@ -1158,7 +1158,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:438 +#: apt-get.8.xml:432 msgid "" "Instead of fetching the files to install their URIs are printed. Each URI " "will have the path, the destination file name, the size and the expected MD5 " @@ -1171,7 +1171,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:449 +#: apt-get.8.xml:443 msgid "" "Use purge instead of remove for anything that would be removed. An asterisk " "(\"*\") will be displayed next to packages which are scheduled to be purged. " @@ -1180,14 +1180,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:457 +#: apt-get.8.xml:451 msgid "" "Re-install packages that are already installed and at the newest version. " "Configuration Item: <literal>APT::Get::ReInstall</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:462 +#: apt-get.8.xml:456 msgid "" "This option is on by default; use <literal>--no-list-cleanup</literal> to " "turn it off. When it is on, <command>apt-get</command> will automatically " @@ -1198,7 +1198,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:472 +#: apt-get.8.xml:466 msgid "" "This option controls the default input to the policy engine; it creates a " "default pin at priority 990 using the specified release string. This " @@ -1212,7 +1212,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:487 +#: apt-get.8.xml:481 msgid "" "Only perform operations that are 'trivial'. Logically this can be considered " "related to <option>--assume-yes</option>; where <option>--assume-yes</" @@ -1221,14 +1221,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:494 +#: apt-get.8.xml:488 msgid "" "If any packages are to be removed apt-get immediately aborts without " "prompting. Configuration Item: <literal>APT::Get::Remove</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:500 +#: apt-get.8.xml:494 msgid "" "If the command is either <literal>install</literal> or <literal>remove</" "literal>, then this option acts like running the <literal>autoremove</" @@ -1237,7 +1237,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:507 +#: apt-get.8.xml:501 msgid "" "Only has meaning for the <literal>source</literal> and <literal>build-dep</" "literal> commands. Indicates that the given source names are not to be " @@ -1249,7 +1249,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:518 +#: apt-get.8.xml:512 msgid "" "Download only the diff, dsc, or tar file of a source archive. Configuration " "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</" @@ -1257,14 +1257,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:524 +#: apt-get.8.xml:518 msgid "" "Only process architecture-dependent build-dependencies. Configuration Item: " "<literal>APT::Get::Arch-Only</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:529 +#: apt-get.8.xml:523 msgid "" "Ignore if packages can't be authenticated and don't prompt about it. This " "is useful for tools like pbuilder. Configuration Item: <literal>APT::Get::" @@ -1272,7 +1272,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-get.8.xml:535 +#: apt-get.8.xml:529 msgid "" "Show user friendly progress information in the terminal window when packages " "are installed, upgraded or removed. For a machine parsable version of this " @@ -1282,13 +1282,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 -#: apt.conf.5.xml:1222 apt_preferences.5.xml:700 +#: apt-get.8.xml:542 apt-cache.8.xml:339 apt-key.8.xml:170 apt-mark.8.xml:121 +#: apt.conf.5.xml:1216 apt_preferences.5.xml:694 msgid "Files" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:559 +#: apt-get.8.xml:553 msgid "" "&apt-cache;, &apt-cdrom;, &dpkg;, &sources-list;, &apt-conf;, &apt-config;, " "&apt-secure;, The APT User's guide in &guidesdir;, &apt-preferences;, the " @@ -1296,19 +1296,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-get.8.xml:565 +#: apt-get.8.xml:559 msgid "" "<command>apt-get</command> returns zero on normal operation, decimal 100 on " "error." msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-cache.8.xml:35 +#: apt-cache.8.xml:29 msgid "query the APT cache" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:41 +#: apt-cache.8.xml:35 msgid "" "<command>apt-cache</command> performs a variety of operations on APT's " "package cache. <command>apt-cache</command> does not manipulate the state of " @@ -1317,21 +1317,21 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:51 +#: apt-cache.8.xml:45 msgid "" "<literal>gencaches</literal> creates APT's package cache. This is done " "implicitly by all commands needing this cache if it is missing or outdated." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-cache.8.xml:55 apt-cache.8.xml:144 apt-cache.8.xml:165 -#: apt-cache.8.xml:187 apt-cache.8.xml:192 apt-cache.8.xml:208 -#: apt-cache.8.xml:226 apt-cache.8.xml:238 +#: apt-cache.8.xml:49 apt-cache.8.xml:138 apt-cache.8.xml:159 +#: apt-cache.8.xml:181 apt-cache.8.xml:186 apt-cache.8.xml:202 +#: apt-cache.8.xml:220 apt-cache.8.xml:232 msgid "&synopsis-pkg;" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:56 +#: apt-cache.8.xml:50 msgid "" "<literal>showpkg</literal> displays information about the packages listed on " "the command line. Remaining arguments are package names. The available " @@ -1345,7 +1345,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> -#: apt-cache.8.xml:68 +#: apt-cache.8.xml:62 #, no-wrap msgid "" "Package: libreadline2\n" @@ -1361,7 +1361,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:80 +#: apt-cache.8.xml:74 msgid "" "Thus it may be seen that libreadline2, version 2.1-12, depends on libc5 and " "ncurses3.0 which must be installed for libreadline2 to work. In turn, " @@ -1373,21 +1373,21 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:89 +#: apt-cache.8.xml:83 msgid "" "<literal>stats</literal> displays some statistics about the cache. No " "further arguments are expected. Statistics reported are:" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:92 +#: apt-cache.8.xml:86 msgid "" "<literal>Total package names</literal> is the number of package names found " "in the cache." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:96 +#: apt-cache.8.xml:90 msgid "" "<literal>Normal packages</literal> is the number of regular, ordinary " "package names; these are packages that bear a one-to-one correspondence " @@ -1396,7 +1396,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:102 +#: apt-cache.8.xml:96 msgid "" "<literal>Pure virtual packages</literal> is the number of packages that " "exist only as a virtual package name; that is, packages only \"provide\" the " @@ -1407,7 +1407,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:110 +#: apt-cache.8.xml:104 msgid "" "<literal>Single virtual packages</literal> is the number of packages with " "only one package providing a particular virtual package. For example, in the " @@ -1416,7 +1416,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:116 +#: apt-cache.8.xml:110 msgid "" "<literal>Mixed virtual packages</literal> is the number of packages that " "either provide a particular virtual package or have the virtual package name " @@ -1425,7 +1425,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:123 +#: apt-cache.8.xml:117 msgid "" "<literal>Missing</literal> is the number of package names that were " "referenced in a dependency but were not provided by any package. Missing " @@ -1435,7 +1435,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:130 +#: apt-cache.8.xml:124 msgid "" "<literal>Total distinct</literal> versions is the number of package versions " "found in the cache; this value is therefore at least equal to the number of " @@ -1445,14 +1445,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> -#: apt-cache.8.xml:137 +#: apt-cache.8.xml:131 msgid "" "<literal>Total dependencies</literal> is the number of dependency " "relationships claimed by all of the packages in the cache." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:145 +#: apt-cache.8.xml:139 msgid "" "<literal>showsrc</literal> displays all the source package records that " "match the given package names. All versions are shown, as well as all " @@ -1460,40 +1460,40 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:151 +#: apt-cache.8.xml:145 msgid "" "<literal>dump</literal> shows a short listing of every package in the cache. " "It is primarily for debugging." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:156 +#: apt-cache.8.xml:150 msgid "" "<literal>dumpavail</literal> prints out an available list to stdout. This is " "suitable for use with &dpkg; and is used by the &dselect; method." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:161 +#: apt-cache.8.xml:155 msgid "" "<literal>unmet</literal> displays a summary of all unmet dependencies in the " "package cache." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:166 +#: apt-cache.8.xml:160 msgid "" "<literal>show</literal> performs a function similar to <command>dpkg --print-" "avail</command>; it displays the package records for the named packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-cache.8.xml:171 +#: apt-cache.8.xml:165 msgid "&synopsis-regex;" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:172 +#: apt-cache.8.xml:166 msgid "" "<literal>search</literal> performs a full text search on all available " "package lists for the POSIX regex pattern given, see ®ex;. It searches " @@ -1506,28 +1506,28 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:183 +#: apt-cache.8.xml:177 msgid "" "Separate arguments can be used to specify multiple search patterns that are " "and'ed together." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:188 +#: apt-cache.8.xml:182 msgid "" "<literal>depends</literal> shows a listing of each dependency a package has " "and all the possible other packages that can fulfill that dependency." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:193 +#: apt-cache.8.xml:187 msgid "" "<literal>rdepends</literal> shows a listing of each reverse dependency a " "package has." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:197 +#: apt-cache.8.xml:191 #, fuzzy msgid "<optional><replaceable>&synopsis-prefix;</replaceable></optional>" msgstr "" @@ -1535,7 +1535,7 @@ msgstr "" "apt-get install <replaceable>pacote</replaceable>/testing\n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:198 +#: apt-cache.8.xml:192 msgid "" "This command prints the name of each package APT knows. The optional " "argument is a prefix match to filter the name list. The output is suitable " @@ -1545,7 +1545,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:203 +#: apt-cache.8.xml:197 msgid "" "Note that a package which APT knows of is not necessarily available to " "download, installable or installed, e.g. virtual packages are also listed in " @@ -1553,7 +1553,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:209 +#: apt-cache.8.xml:203 msgid "" "<literal>dotty</literal> takes a list of packages on the command line and " "generates output suitable for use by dotty from the <ulink url=\"http://www." @@ -1566,7 +1566,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:218 +#: apt-cache.8.xml:212 msgid "" "The resulting nodes will have several shapes; normal packages are boxes, " "pure virtual packages are triangles, mixed virtual packages are diamonds, " @@ -1575,19 +1575,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:223 +#: apt-cache.8.xml:217 msgid "Caution, dotty cannot graph larger sets of packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:227 +#: apt-cache.8.xml:221 msgid "" "The same as <literal>dotty</literal>, only for xvcg from the <ulink url=" "\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG tool</ulink>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:231 +#: apt-cache.8.xml:225 #, fuzzy msgid "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>" msgstr "" @@ -1595,7 +1595,7 @@ msgstr "" "apt-get install <replaceable>pacote</replaceable>/testing\n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:232 +#: apt-cache.8.xml:226 msgid "" "<literal>policy</literal> is meant to help debug issues relating to the " "preferences file. With no arguments it will print out the priorities of each " @@ -1604,7 +1604,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:239 +#: apt-cache.8.xml:233 msgid "" "<literal>apt-cache</literal>'s <literal>madison</literal> command attempts " "to mimic the output format and a subset of the functionality of the Debian " @@ -1616,7 +1616,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:255 +#: apt-cache.8.xml:249 msgid "" "Select the file to store the package cache. The package cache is the primary " "cache used by all operations. Configuration Item: <literal>Dir::Cache::" @@ -1624,7 +1624,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:261 +#: apt-cache.8.xml:255 msgid "" "Select the file to store the source cache. The source is used only by " "<literal>gencaches</literal> and it stores a parsed version of the package " @@ -1634,7 +1634,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:269 +#: apt-cache.8.xml:263 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quietness up to a maximum of 2. You can also use " @@ -1643,7 +1643,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:276 +#: apt-cache.8.xml:270 msgid "" "Print only important dependencies; for use with <literal>unmet</literal> and " "<literal>depends</literal>. Causes only Depends and Pre-Depends relations to " @@ -1651,7 +1651,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:290 +#: apt-cache.8.xml:284 msgid "" "Per default the <literal>depends</literal> and <literal>rdepends</literal> " "print all dependencies. This can be tweaked with these flags which will omit " @@ -1661,14 +1661,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:297 +#: apt-cache.8.xml:291 msgid "" "Print full package records when searching. Configuration Item: " "<literal>APT::Cache::ShowFull</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:302 +#: apt-cache.8.xml:296 msgid "" "Print full records for all available versions. This is the default; to turn " "it off, use <option>--no-all-versions</option>. If <option>--no-all-" @@ -1679,7 +1679,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:311 +#: apt-cache.8.xml:305 msgid "" "Perform automatic package cache regeneration, rather than use the cache as " "it is. This is the default; to turn it off, use <option>--no-generate</" @@ -1687,14 +1687,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:317 +#: apt-cache.8.xml:311 msgid "" "Only search on the package names, not the long descriptions. Configuration " "Item: <literal>APT::Cache::NamesOnly</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:322 +#: apt-cache.8.xml:316 msgid "" "Make <literal>pkgnames</literal> print all names, including virtual packages " "and missing dependencies. Configuration Item: <literal>APT::Cache::" @@ -1702,7 +1702,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:328 +#: apt-cache.8.xml:322 msgid "" "Make <literal>depends</literal> and <literal>rdepends</literal> recursive so " "that all packages mentioned are printed once. Configuration Item: " @@ -1710,7 +1710,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:335 +#: apt-cache.8.xml:329 msgid "" "Limit the output of <literal>depends</literal> and <literal>rdepends</" "literal> to packages which are currently installed. Configuration Item: " @@ -1718,24 +1718,24 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:353 +#: apt-cache.8.xml:347 msgid "&apt-conf;, &sources-list;, &apt-get;" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:358 +#: apt-cache.8.xml:352 msgid "" "<command>apt-cache</command> returns zero on normal operation, decimal 100 " "on error." msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-key.8.xml:34 +#: apt-key.8.xml:28 msgid "APT key management utility" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:41 +#: apt-key.8.xml:35 msgid "" "<command>apt-key</command> is used to manage the list of keys used by apt to " "authenticate packages. Packages which have been authenticated using these " @@ -1743,12 +1743,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-key.8.xml:47 +#: apt-key.8.xml:41 msgid "Commands" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:52 +#: apt-key.8.xml:46 msgid "" "Add a new key to the list of trusted keys. The key is read from the " "filename given with the parameter &synopsis-param-filename; or if the " @@ -1756,39 +1756,39 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:65 +#: apt-key.8.xml:59 msgid "Remove a key from the list of trusted keys." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:76 +#: apt-key.8.xml:70 msgid "Output the key &synopsis-param-keyid; to standard output." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:87 +#: apt-key.8.xml:81 msgid "Output all trusted keys to standard output." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:98 +#: apt-key.8.xml:92 msgid "List trusted keys." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:109 +#: apt-key.8.xml:103 msgid "List fingerprints of trusted keys." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:120 +#: apt-key.8.xml:114 msgid "" "Pass advanced options to gpg. With adv --recv-key you can download the " "public key." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:132 +#: apt-key.8.xml:126 msgid "" "Update the local keyring with the archive keyring and remove from the local " "keyring the archive keys which are no longer valid. The archive keyring is " @@ -1797,7 +1797,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:146 +#: apt-key.8.xml:140 msgid "" "Perform an update working similarly to the <command>update</command> command " "above, but get the archive keyring from a URI instead and validate it " @@ -1808,19 +1808,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-key.8.xml:162 apt-cdrom.8.xml:82 +#: apt-key.8.xml:156 apt-cdrom.8.xml:76 msgid "Options" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:163 +#: apt-key.8.xml:157 msgid "" "Note that options need to be defined before the commands described in the " "previous section." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:166 +#: apt-key.8.xml:160 msgid "" "With this option it is possible to specify a particular keyring file the " "command should operate on. The default is that a command is executed on the " @@ -1831,56 +1831,56 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:181 +#: apt-key.8.xml:175 #, fuzzy msgid "<filename>/etc/apt/trustdb.gpg</filename>" msgstr "<filename>/etc/apt.conf</>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:182 +#: apt-key.8.xml:176 msgid "Local trust database of archive keys." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:185 +#: apt-key.8.xml:179 msgid "&keyring-filename;" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:186 +#: apt-key.8.xml:180 msgid "Keyring of &keyring-distro; archive trusted keys." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-key.8.xml:189 +#: apt-key.8.xml:183 msgid "&keyring-removed-filename;" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-key.8.xml:190 +#: apt-key.8.xml:184 msgid "Keyring of &keyring-distro; archive removed trusted keys." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-key.8.xml:199 +#: apt-key.8.xml:193 #, fuzzy msgid "&apt-get;, &apt-secure;" msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-mark.8.xml:35 +#: apt-mark.8.xml:29 msgid "mark/unmark a package as being automatically-installed" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:41 +#: apt-mark.8.xml:35 msgid "" "<command>apt-mark</command> will change whether a package has been marked as " "being automatically installed." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:45 +#: apt-mark.8.xml:39 msgid "" "When you request that a package is installed, and as a result other packages " "are installed to satisfy its dependencies, the dependencies are marked as " @@ -1890,7 +1890,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:54 +#: apt-mark.8.xml:48 msgid "" "<literal>auto</literal> is used to mark a package as being automatically " "installed, which will cause the package to be removed when no more manually " @@ -1898,7 +1898,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:62 +#: apt-mark.8.xml:56 msgid "" "<literal>manual</literal> is used to mark a package as being manually " "installed, which will prevent the package from being automatically removed " @@ -1906,7 +1906,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:70 +#: apt-mark.8.xml:64 msgid "" "<literal>hold</literal> is used to mark a package as held back, which will " "prevent the package from being automatically installed, upgraded or " @@ -1916,14 +1916,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:80 +#: apt-mark.8.xml:74 msgid "" "<literal>unhold</literal> is used to cancel a previously set hold on a " "package to allow all actions again." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:86 +#: apt-mark.8.xml:80 msgid "" "<literal>showauto</literal> is used to print a list of automatically " "installed packages with each package on a new line. All automatically " @@ -1932,7 +1932,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:94 +#: apt-mark.8.xml:88 msgid "" "<literal>showmanual</literal> can be used in the same way as " "<literal>showauto</literal> except that it will print a list of manually " @@ -1940,14 +1940,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:101 +#: apt-mark.8.xml:95 msgid "" "<literal>showhold</literal> is used to print a list of packages on hold in " "the same way as for the other show commands." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-mark.8.xml:117 +#: apt-mark.8.xml:111 msgid "" "Read/Write package stats from the filename given with the parameter " "&synopsis-param-filename; instead of from the default location, which is " @@ -1956,19 +1956,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-mark.8.xml:138 +#: apt-mark.8.xml:132 msgid "" "<command>apt-mark</command> returns zero on normal operation, non-zero on " "error." msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-secure.8.xml:49 +#: apt-secure.8.xml:43 msgid "Archive authentication support for APT" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:54 +#: apt-secure.8.xml:48 msgid "" "Starting with version 0.6, <command>apt</command> contains code that does " "signature checking of the Release file for all archives. This ensures that " @@ -1977,7 +1977,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:62 +#: apt-secure.8.xml:56 msgid "" "If a package comes from a archive without a signature, or with a signature " "that apt does not have a key for, that package is considered untrusted, and " @@ -1987,19 +1987,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:71 +#: apt-secure.8.xml:65 msgid "" "The package frontends &apt-get;, &aptitude; and &synaptic; support this new " "authentication feature." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:76 +#: apt-secure.8.xml:70 msgid "Trusted archives" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:79 +#: apt-secure.8.xml:73 msgid "" "The chain of trust from an apt archive to the end user is made up of several " "steps. <command>apt-secure</command> is the last step in this chain; " @@ -2010,7 +2010,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:87 +#: apt-secure.8.xml:81 msgid "" "apt-secure does not review signatures at a package level. If you require " "tools to do this you should look at <command>debsig-verify</command> and " @@ -2019,7 +2019,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:94 +#: apt-secure.8.xml:88 msgid "" "The chain of trust in Debian starts when a maintainer uploads a new package " "or a new version of a package to the Debian archive. In order to become " @@ -2030,7 +2030,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:104 +#: apt-secure.8.xml:98 msgid "" "Once the uploaded package is verified and included in the archive, the " "maintainer signature is stripped off, and checksums of the package are " @@ -2043,7 +2043,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:115 +#: apt-secure.8.xml:109 msgid "" "End users can check the signature of the Release file, extract a checksum of " "a package from it and compare it with the checksum of the package they " @@ -2051,14 +2051,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:120 +#: apt-secure.8.xml:114 msgid "" "Notice that this is distinct from checking signatures on a per package " "basis. It is designed to prevent two possible attacks:" msgstr "" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:125 +#: apt-secure.8.xml:119 msgid "" "<literal>Network \"man in the middle\" attacks</literal>. Without signature " "checking, malicious agents can introduce themselves into the package " @@ -2068,7 +2068,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:133 +#: apt-secure.8.xml:127 msgid "" "<literal>Mirror network compromise</literal>. Without signature checking, a " "malicious agent can compromise a mirror host and modify the files in it to " @@ -2077,7 +2077,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:140 +#: apt-secure.8.xml:134 msgid "" "However, it does not defend against a compromise of the Debian master server " "itself (which signs the packages) or against a compromise of the key used to " @@ -2086,12 +2086,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:146 +#: apt-secure.8.xml:140 msgid "User configuration" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:148 +#: apt-secure.8.xml:142 msgid "" "<command>apt-key</command> is the program that manages the list of keys used " "by apt. It can be used to add or remove keys, although an installation of " @@ -2100,7 +2100,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:155 +#: apt-secure.8.xml:149 msgid "" "In order to add a new key you need to first download it (you should make " "sure you are using a trusted communication channel when retrieving it), add " @@ -2111,19 +2111,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:164 +#: apt-secure.8.xml:158 msgid "Archive configuration" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:166 +#: apt-secure.8.xml:160 msgid "" "If you want to provide archive signatures in an archive under your " "maintenance you have to:" msgstr "" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:171 +#: apt-secure.8.xml:165 msgid "" "<emphasis>Create a toplevel Release file</emphasis>, if it does not exist " "already. You can do this by running <command>apt-ftparchive release</" @@ -2131,7 +2131,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:176 +#: apt-secure.8.xml:170 msgid "" "<emphasis>Sign it</emphasis>. You can do this by running <command>gpg --" "clearsign -o InRelease Release</command> and <command>gpg -abs -o Release." @@ -2139,7 +2139,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> -#: apt-secure.8.xml:180 +#: apt-secure.8.xml:174 msgid "" "<emphasis>Publish the key fingerprint</emphasis>, that way your users will " "know what key they need to import in order to authenticate the files in the " @@ -2147,7 +2147,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:187 +#: apt-secure.8.xml:181 msgid "" "Whenever the contents of the archive change (new packages are added or " "removed) the archive maintainer has to follow the first two steps outlined " @@ -2155,14 +2155,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:195 +#: apt-secure.8.xml:189 msgid "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " "&debsign;, &debsig-verify;, &gpg;" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:199 +#: apt-secure.8.xml:193 msgid "" "For more background information you might want to review the <ulink url=" "\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7\">Debian " @@ -2173,24 +2173,24 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-secure.8.xml:212 +#: apt-secure.8.xml:206 msgid "Manpage Authors" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:214 +#: apt-secure.8.xml:208 msgid "" "This man-page is based on the work of Javier Fernández-Sanguino Peña, Isaac " "Jones, Colin Walters, Florian Weimer and Michael Vogt." msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-cdrom.8.xml:34 +#: apt-cdrom.8.xml:28 msgid "APT CD-ROM management utility" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:40 +#: apt-cdrom.8.xml:34 msgid "" "<command>apt-cdrom</command> is used to add a new CD-ROM to APT's list of " "available sources. <command>apt-cdrom</command> takes care of determining " @@ -2199,7 +2199,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:47 +#: apt-cdrom.8.xml:41 msgid "" "It is necessary to use <command>apt-cdrom</command> to add CDs to the APT " "system; it cannot be done by hand. Furthermore each disc in a multi-CD set " @@ -2207,7 +2207,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:58 +#: apt-cdrom.8.xml:52 msgid "" "<literal>add</literal> is used to add a new disc to the source list. It will " "unmount the CD-ROM device, prompt for a disc to be inserted and then proceed " @@ -2217,7 +2217,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:66 +#: apt-cdrom.8.xml:60 msgid "" "APT uses a CD-ROM ID to track which disc is currently in the drive and " "maintains a database of these IDs in <filename>&statedir;/cdroms.list</" @@ -2225,14 +2225,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:74 +#: apt-cdrom.8.xml:68 msgid "" "A debugging tool to report the identity of the current disc as well as the " "stored file name" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:87 +#: apt-cdrom.8.xml:81 msgid "" "Do not try to auto-detect the CD-ROM path. Usually combined with the " "<option>--cdrom</option> option. Configuration Item: <literal>Acquire::" @@ -2240,7 +2240,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:95 +#: apt-cdrom.8.xml:89 msgid "" "Mount point; specify the location to mount the CD-ROM. This mount point must " "be listed in <filename>/etc/fstab</filename> and properly configured. " @@ -2248,7 +2248,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:104 +#: apt-cdrom.8.xml:98 msgid "" "Rename a disc; change the label of a disc or override the disc's given " "label. This option will cause <command>apt-cdrom</command> to prompt for a " @@ -2256,7 +2256,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:113 +#: apt-cdrom.8.xml:107 msgid "" "No mounting; prevent <command>apt-cdrom</command> from mounting and " "unmounting the mount point. Configuration Item: <literal>APT::CDROM::" @@ -2264,7 +2264,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:121 +#: apt-cdrom.8.xml:115 msgid "" "Fast Copy; Assume the package files are valid and do not check every " "package. This option should be used only if <command>apt-cdrom</command> has " @@ -2273,7 +2273,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:131 +#: apt-cdrom.8.xml:125 msgid "" "Thorough Package Scan; This option may be needed with some old Debian " "1.1/1.2 discs that have Package files in strange places. It takes much " @@ -2281,7 +2281,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cdrom.8.xml:142 +#: apt-cdrom.8.xml:136 msgid "" "No Changes; Do not change the &sources-list; file and do not write index " "files. Everything is still checked however. Configuration Item: " @@ -2289,25 +2289,25 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:155 +#: apt-cdrom.8.xml:149 #, fuzzy msgid "&apt-conf;, &apt-get;, &sources-list;" msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;" #. type: Content of: <refentry><refsect1><para> -#: apt-cdrom.8.xml:160 +#: apt-cdrom.8.xml:154 msgid "" "<command>apt-cdrom</command> returns zero on normal operation, decimal 100 " "on error." msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-config.8.xml:35 +#: apt-config.8.xml:29 msgid "APT Configuration Query program" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:41 +#: apt-config.8.xml:35 msgid "" "<command>apt-config</command> is an internal program used by various " "portions of the APT suite to provide consistent configurability. It accesses " @@ -2316,7 +2316,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:53 +#: apt-config.8.xml:47 msgid "" "shell is used to access the configuration information from a shell script. " "It is given pairs of arguments, the first being a shell variable and the " @@ -2326,7 +2326,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> -#: apt-config.8.xml:61 +#: apt-config.8.xml:55 #, no-wrap msgid "" "OPTS=\"-f\"\n" @@ -2335,14 +2335,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:66 +#: apt-config.8.xml:60 msgid "" "This will set the shell environment variable $OPTS to the value of MyApp::" "options with a default of <option>-f</option>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:70 +#: apt-config.8.xml:64 msgid "" "The configuration item may be postfixed with a /[fdbi]. f returns file " "names, d returns directories, b returns true or false and i returns an " @@ -2350,24 +2350,24 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:79 +#: apt-config.8.xml:73 msgid "Just show the contents of the configuration space." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:92 +#: apt-config.8.xml:86 msgid "" "Include options which have an empty value. This is the default, so use --no-" "empty to remove them from the output." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> -#: apt-config.8.xml:97 +#: apt-config.8.xml:91 msgid "%f "%v";%n" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-config.8.xml:98 +#: apt-config.8.xml:92 msgid "" "Defines the output of each config option. %t will be replaced with " "its individual name, %f with its full hierarchical name and %v " @@ -2378,8 +2378,8 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:112 apt-extracttemplates.1.xml:73 apt-sortpkgs.1.xml:66 -#: apt-ftparchive.1.xml:610 +#: apt-config.8.xml:106 apt-extracttemplates.1.xml:67 apt-sortpkgs.1.xml:60 +#: apt-ftparchive.1.xml:604 #, fuzzy msgid "&apt-conf;" msgstr "" @@ -2388,34 +2388,34 @@ msgstr "" " " #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:117 +#: apt-config.8.xml:111 msgid "" "<command>apt-config</command> returns zero on normal operation, decimal 100 " "on error." msgstr "" #. type: Content of: <refentry><refentryinfo><author><contrib> -#: apt.conf.5.xml:22 +#: apt.conf.5.xml:16 msgid "Initial documentation of Debug::*." msgstr "" #. type: Content of: <refentry><refentryinfo><author><email> -#: apt.conf.5.xml:23 +#: apt.conf.5.xml:17 msgid "dburrows@debian.org" msgstr "" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt.conf.5.xml:33 apt_preferences.5.xml:27 sources.list.5.xml:28 +#: apt.conf.5.xml:27 apt_preferences.5.xml:21 sources.list.5.xml:22 msgid "5" msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt.conf.5.xml:40 +#: apt.conf.5.xml:34 msgid "Configuration file for APT" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:44 +#: apt.conf.5.xml:38 msgid "" "<filename>/etc/apt/apt.conf</filename> is the main configuration file shared " "by all the tools in the APT suite of tools, though it is by no means the " @@ -2424,21 +2424,21 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><orderedlist><para> -#: apt.conf.5.xml:50 +#: apt.conf.5.xml:44 msgid "" "When an APT tool starts up it will read the configuration files in the " "following order:" msgstr "" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:52 +#: apt.conf.5.xml:46 msgid "" "the file specified by the <envar>APT_CONFIG</envar> environment variable (if " "any)" msgstr "" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:54 +#: apt.conf.5.xml:48 msgid "" "all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending " "order which have either no or \"<literal>conf</literal>\" as filename " @@ -2450,25 +2450,25 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:61 +#: apt.conf.5.xml:55 msgid "" "the main configuration file specified by <literal>Dir::Etc::main</literal>" msgstr "" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> -#: apt.conf.5.xml:63 +#: apt.conf.5.xml:57 msgid "" "the command line options are applied to override the configuration " "directives or to load even more configuration files." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:67 +#: apt.conf.5.xml:61 msgid "Syntax" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:68 +#: apt.conf.5.xml:62 msgid "" "The configuration file is organized in a tree with options organized into " "functional groups. Option specification is given with a double colon " @@ -2478,7 +2478,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:74 +#: apt.conf.5.xml:68 msgid "" "Syntactically the configuration language is modeled after what the ISC tools " "such as bind and dhcp use. Lines starting with <literal>//</literal> are " @@ -2493,7 +2493,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><informalexample><programlisting> -#: apt.conf.5.xml:87 +#: apt.conf.5.xml:81 #, no-wrap msgid "" "APT {\n" @@ -2505,7 +2505,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:95 +#: apt.conf.5.xml:89 msgid "" "with newlines placed to make it more readable. Lists can be created by " "opening a scope and including a single string enclosed in quotes followed by " @@ -2513,27 +2513,27 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><informalexample><programlisting> -#: apt.conf.5.xml:100 +#: apt.conf.5.xml:94 #, no-wrap msgid "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:103 +#: apt.conf.5.xml:97 msgid "" "In general the sample configuration file &configureindex; is a good guide " "for how it should look." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:106 +#: apt.conf.5.xml:100 msgid "" "Case is not significant in names of configuration items, so in the previous " "example you could use <literal>dpkg::pre-install-pkgs</literal>." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:109 +#: apt.conf.5.xml:103 msgid "" "Names for the configuration items are optional if a list is defined as can " "be seen in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. If " @@ -2543,7 +2543,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:114 +#: apt.conf.5.xml:108 msgid "" "Two special commands are defined: <literal>#include</literal> (which is " "deprecated and not supported by alternative implementations) and " @@ -2555,7 +2555,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:124 +#: apt.conf.5.xml:118 msgid "" "The <literal>#clear</literal> command is the only way to delete a list or a " "complete scope. Reopening a scope (or using the syntax described below with " @@ -2565,7 +2565,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:132 +#: apt.conf.5.xml:126 msgid "" "All of the APT tools take an -o option which allows an arbitrary " "configuration directive to be specified on the command line. The syntax is a " @@ -2577,7 +2577,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:140 +#: apt.conf.5.xml:134 msgid "" "Note that appending items to a list using <literal>::</literal> only works " "for one item per line, and that you should not use it in combination with " @@ -2594,19 +2594,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:155 +#: apt.conf.5.xml:149 msgid "The APT Group" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:156 +#: apt.conf.5.xml:150 msgid "" "This group of options controls general APT behavior as well as holding the " "options for all of the tools." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:161 +#: apt.conf.5.xml:155 msgid "" "System Architecture; sets the architecture to use when fetching files and " "parsing package lists. The internal default is the architecture apt was " @@ -2614,7 +2614,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:168 +#: apt.conf.5.xml:162 msgid "" "All Architectures the system supports. For instance, CPUs implementing the " "<literal>amd64</literal> (also called <literal>x86-64</literal>) " @@ -2627,7 +2627,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:182 +#: apt.conf.5.xml:176 msgid "" "List of all build profiles enabled for build-dependency resolution, without " "the \"<literal>profile.</literal>\" namespace prefix. By default this list " @@ -2636,7 +2636,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:190 +#: apt.conf.5.xml:184 msgid "" "Default release to install packages from if more than one version is " "available. Contains release name, codename or release version. Examples: " @@ -2645,14 +2645,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:196 +#: apt.conf.5.xml:190 msgid "" "Ignore held packages; this global option causes the problem resolver to " "ignore held packages in its decision making." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:201 +#: apt.conf.5.xml:195 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " @@ -2661,7 +2661,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:209 +#: apt.conf.5.xml:203 msgid "" "Defaults to on, which will cause APT to install essential and important " "packages as soon as possible in an install/upgrade operation, in order to " @@ -2676,7 +2676,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:221 +#: apt.conf.5.xml:215 msgid "" "The immediate configuration marker is also applied in the potentially " "problematic case of circular dependencies, since a dependency with the " @@ -2693,7 +2693,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:234 +#: apt.conf.5.xml:228 msgid "" "Before a big operation like <literal>dist-upgrade</literal> is run with this " "option disabled you should try to explicitly <literal>install</literal> the " @@ -2704,7 +2704,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:245 +#: apt.conf.5.xml:239 msgid "" "Never enable this option unless you <emphasis>really</emphasis> know what " "you are doing. It permits APT to temporarily remove an essential package to " @@ -2717,7 +2717,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:257 +#: apt.conf.5.xml:251 msgid "" "APT uses since version 0.7.26 a resizable memory mapped cache file to store " "the available information. <literal>Cache-Start</literal> acts as a hint of " @@ -2737,38 +2737,38 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:273 +#: apt.conf.5.xml:267 msgid "Defines which packages are considered essential build dependencies." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:277 +#: apt.conf.5.xml:271 msgid "" "The Get subsection controls the &apt-get; tool; please see its documentation " "for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:282 +#: apt.conf.5.xml:276 msgid "" "The Cache subsection controls the &apt-cache; tool; please see its " "documentation for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:287 +#: apt.conf.5.xml:281 msgid "" "The CDROM subsection controls the &apt-cdrom; tool; please see its " "documentation for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:293 +#: apt.conf.5.xml:287 msgid "The Acquire Group" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:294 +#: apt.conf.5.xml:288 msgid "" "The <literal>Acquire</literal> group of options controls the download of " "packages as well as the various \"acquire methods\" responsible for the " @@ -2776,7 +2776,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:301 +#: apt.conf.5.xml:295 msgid "" "Security related option defaulting to true, as giving a Release file's " "validation an expiration date prevents replay attacks over a long timescale, " @@ -2789,7 +2789,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:314 +#: apt.conf.5.xml:308 msgid "" "Maximum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -2801,7 +2801,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:326 +#: apt.conf.5.xml:320 msgid "" "Minimum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@ -2813,7 +2813,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:338 +#: apt.conf.5.xml:332 msgid "" "Try to download deltas called <literal>PDiffs</literal> for indexes (like " "<filename>Packages</filename> files) instead of downloading whole ones. True " @@ -2821,7 +2821,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:341 +#: apt.conf.5.xml:335 msgid "" "Two sub-options to limit the use of PDiffs are also available: " "<literal>FileLimit</literal> can be used to specify a maximum number of " @@ -2832,7 +2832,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:351 +#: apt.conf.5.xml:345 msgid "" "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" "literal> or <literal>access</literal> which determines how APT parallelizes " @@ -2842,21 +2842,21 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:359 +#: apt.conf.5.xml:353 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:364 +#: apt.conf.5.xml:358 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:369 +#: apt.conf.5.xml:363 msgid "" "<literal>http::Proxy</literal> sets the default proxy to use for HTTP URIs. " "It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</" @@ -2868,7 +2868,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:377 +#: apt.conf.5.xml:371 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy not to use its cached " @@ -2880,14 +2880,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:387 apt.conf.5.xml:475 +#: apt.conf.5.xml:381 apt.conf.5.xml:469 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method; this value applies to the connection as well as the data timeout." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:390 +#: apt.conf.5.xml:384 msgid "" "The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e." @@ -2899,14 +2899,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:397 +#: apt.conf.5.xml:391 msgid "" "<literal>Acquire::http::AllowRedirect</literal> controls whether APT will " "follow redirects, which is enabled by default." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:400 +#: apt.conf.5.xml:394 msgid "" "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" "literal> which accepts integer values in kilobytes per second. The default " @@ -2916,7 +2916,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:407 +#: apt.conf.5.xml:401 msgid "" "<literal>Acquire::http::User-Agent</literal> can be used to set a different " "User-Agent for the http download method as some proxies allow access for " @@ -2924,7 +2924,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:411 +#: apt.conf.5.xml:405 msgid "" "<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify " "an external command to discover the http proxy to use. Apt expects the " @@ -2938,7 +2938,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:429 +#: apt.conf.5.xml:423 msgid "" "The <literal>Cache-control</literal>, <literal>Timeout</literal>, " "<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and " @@ -2949,7 +2949,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:437 +#: apt.conf.5.xml:431 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is the " @@ -2971,7 +2971,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:458 +#: apt.conf.5.xml:452 msgid "" "<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. " "It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</" @@ -2990,7 +2990,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:478 +#: apt.conf.5.xml:472 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on; it works in nearly every environment. However, " @@ -3000,7 +3000,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:485 +#: apt.conf.5.xml:479 msgid "" "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" "envar> environment variable to an HTTP URL - see the discussion of the http " @@ -3009,7 +3009,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:490 +#: apt.conf.5.xml:484 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@ -3019,13 +3019,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:504 +#: apt.conf.5.xml:498 #, no-wrap msgid "/cdrom/::Mount \"foo\";" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:499 +#: apt.conf.5.xml:493 msgid "" "For URIs using the <literal>cdrom</literal> method, the only configurable " "option is the mount point, <literal>cdrom::Mount</literal>, which must be " @@ -3038,20 +3038,20 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:512 +#: apt.conf.5.xml:506 msgid "" "For GPGV URIs the only configurable option is <literal>gpgv::Options</" "literal>, which passes additional parameters to gpgv." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:523 +#: apt.conf.5.xml:517 #, no-wrap msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:518 +#: apt.conf.5.xml:512 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " @@ -3063,19 +3063,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:528 +#: apt.conf.5.xml:522 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:531 +#: apt.conf.5.xml:525 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:524 +#: apt.conf.5.xml:518 msgid "" "Also, the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " @@ -3093,13 +3093,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:538 +#: apt.conf.5.xml:532 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:533 +#: apt.conf.5.xml:527 msgid "" "Note that the <literal>Dir::Bin::<replaceable>Methodname</replaceable></" "literal> will be checked at run time. If this option has been set, the " @@ -3114,7 +3114,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:543 +#: apt.conf.5.xml:537 msgid "" "The special type <literal>uncompressed</literal> can be used to give " "uncompressed files a preference, but note that most archives don't provide " @@ -3122,7 +3122,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:550 +#: apt.conf.5.xml:544 msgid "" "When downloading <literal>gzip</literal> compressed indexes (Packages, " "Sources, or Translations), keep them gzip compressed locally instead of " @@ -3131,7 +3131,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:558 +#: apt.conf.5.xml:552 msgid "" "The Languages subsection controls which <filename>Translation</filename> " "files are downloaded and in which order APT tries to display the description-" @@ -3143,13 +3143,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting> -#: apt.conf.5.xml:575 +#: apt.conf.5.xml:569 #, no-wrap msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:563 +#: apt.conf.5.xml:557 msgid "" "The default list includes \"environment\" and \"en\". " "\"<literal>environment</literal>\" has a special meaning here: it will be " @@ -3171,7 +3171,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:576 +#: apt.conf.5.xml:570 msgid "" "Note: To prevent problems resulting from APT being executed in different " "environments (e.g. by different users or by other programs) all Translation " @@ -3180,22 +3180,22 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:585 +#: apt.conf.5.xml:579 msgid "When downloading, force to use only the IPv4 protocol." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:591 +#: apt.conf.5.xml:585 msgid "When downloading, force to use only the IPv6 protocol." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:598 +#: apt.conf.5.xml:592 msgid "Directories" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:600 +#: apt.conf.5.xml:594 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@ -3207,7 +3207,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:607 +#: apt.conf.5.xml:601 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@ -3221,7 +3221,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:617 +#: apt.conf.5.xml:611 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -3231,7 +3231,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:623 +#: apt.conf.5.xml:617 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -3239,7 +3239,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:627 +#: apt.conf.5.xml:621 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@ -3250,7 +3250,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:635 +#: apt.conf.5.xml:629 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -3263,7 +3263,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:648 +#: apt.conf.5.xml:642 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@ -3274,12 +3274,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:657 +#: apt.conf.5.xml:651 msgid "APT in DSelect" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:659 +#: apt.conf.5.xml:653 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@ -3287,7 +3287,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:664 +#: apt.conf.5.xml:658 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@ -3300,40 +3300,40 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:678 +#: apt.conf.5.xml:672 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:683 +#: apt.conf.5.xml:677 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:688 +#: apt.conf.5.xml:682 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:694 +#: apt.conf.5.xml:688 msgid "How APT calls &dpkg;" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:695 +#: apt.conf.5.xml:689 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:700 +#: apt.conf.5.xml:694 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -3341,7 +3341,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:706 +#: apt.conf.5.xml:700 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -3350,7 +3350,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:713 +#: apt.conf.5.xml:707 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -3361,7 +3361,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:720 +#: apt.conf.5.xml:714 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@ -3370,7 +3370,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:725 +#: apt.conf.5.xml:719 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@ -3381,7 +3381,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:732 +#: apt.conf.5.xml:726 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</" @@ -3392,26 +3392,26 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:742 +#: apt.conf.5.xml:736 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:747 +#: apt.conf.5.xml:741 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:752 +#: apt.conf.5.xml:746 msgid "dpkg trigger usage (and related options)" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:753 +#: apt.conf.5.xml:747 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@ -3426,7 +3426,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:768 +#: apt.conf.5.xml:762 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -3436,7 +3436,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:762 +#: apt.conf.5.xml:756 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -3450,7 +3450,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:775 +#: apt.conf.5.xml:769 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -3463,7 +3463,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:783 +#: apt.conf.5.xml:777 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@ -3480,7 +3480,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:798 +#: apt.conf.5.xml:792 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@ -3491,7 +3491,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:805 +#: apt.conf.5.xml:799 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@ -3501,7 +3501,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:818 +#: apt.conf.5.xml:812 #, no-wrap msgid "" "OrderList::Score {\n" @@ -3513,7 +3513,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:811 +#: apt.conf.5.xml:805 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@ -3527,12 +3527,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:831 +#: apt.conf.5.xml:825 msgid "Periodic and Archives options" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:832 +#: apt.conf.5.xml:826 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@ -3541,12 +3541,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:840 +#: apt.conf.5.xml:834 msgid "Debug options" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:842 +#: apt.conf.5.xml:836 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -3557,7 +3557,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:853 +#: apt.conf.5.xml:847 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -3565,7 +3565,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:861 +#: apt.conf.5.xml:855 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -3573,7 +3573,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:870 +#: apt.conf.5.xml:864 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -3583,66 +3583,66 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:878 +#: apt.conf.5.xml:872 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:888 +#: apt.conf.5.xml:882 msgid "A full list of debugging options to apt follows." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:897 +#: apt.conf.5.xml:891 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:908 +#: apt.conf.5.xml:902 msgid "Print information related to downloading packages using FTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:919 +#: apt.conf.5.xml:913 msgid "Print information related to downloading packages using HTTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:930 +#: apt.conf.5.xml:924 msgid "Print information related to downloading packages using HTTPS." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:941 +#: apt.conf.5.xml:935 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:952 +#: apt.conf.5.xml:946 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:962 +#: apt.conf.5.xml:956 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:972 +#: apt.conf.5.xml:966 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:982 +#: apt.conf.5.xml:976 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -3650,53 +3650,53 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:993 +#: apt.conf.5.xml:987 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1005 +#: apt.conf.5.xml:999 msgid "Log when items are added to or removed from the global download queue." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1015 +#: apt.conf.5.xml:1009 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1025 +#: apt.conf.5.xml:1019 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1037 +#: apt.conf.5.xml:1031 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1048 +#: apt.conf.5.xml:1042 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1059 +#: apt.conf.5.xml:1053 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1069 +#: apt.conf.5.xml:1063 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -3706,7 +3706,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1083 +#: apt.conf.5.xml:1077 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -3724,46 +3724,46 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1104 +#: apt.conf.5.xml:1098 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1115 +#: apt.conf.5.xml:1109 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1126 +#: apt.conf.5.xml:1120 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1138 +#: apt.conf.5.xml:1132 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1149 +#: apt.conf.5.xml:1143 msgid "Output the priority of each package list on startup." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1159 +#: apt.conf.5.xml:1153 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1170 +#: apt.conf.5.xml:1164 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -3771,14 +3771,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1182 +#: apt.conf.5.xml:1176 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:1192 +#: apt.conf.5.xml:1186 msgid "" "Display the external commands that are called by apt hooks. This includes e." "g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " @@ -3786,14 +3786,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:1216 apt_preferences.5.xml:547 sources.list.5.xml:239 -#: apt-ftparchive.1.xml:598 +#: apt.conf.5.xml:1210 apt_preferences.5.xml:541 sources.list.5.xml:233 +#: apt-ftparchive.1.xml:592 #, fuzzy msgid "Examples" msgstr "Exemplos" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1217 +#: apt.conf.5.xml:1211 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -3801,19 +3801,19 @@ msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:1229 +#: apt.conf.5.xml:1223 #, fuzzy msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt_preferences.5.xml:34 +#: apt_preferences.5.xml:28 #, fuzzy msgid "Preference control file for APT" msgstr "Arquivo de controle de preferências para o APT" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:39 +#: apt_preferences.5.xml:33 #, fuzzy msgid "" "The APT preferences file <filename>/etc/apt/preferences</filename> and the " @@ -3826,7 +3826,7 @@ msgstr "" "para instalação." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:44 +#: apt_preferences.5.xml:38 #, fuzzy msgid "" "Several versions of a package may be available for installation when the " @@ -3849,7 +3849,7 @@ msgstr "" "selecionada para instalação." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:54 +#: apt_preferences.5.xml:48 #, fuzzy msgid "" "Several instances of the same version of a package may be available when the " @@ -3865,7 +3865,7 @@ msgstr "" "a escolha da instância." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:61 +#: apt_preferences.5.xml:55 msgid "" "Preferences are a strong power in the hands of a system administrator but " "they can become also their biggest nightmare if used without care! APT will " @@ -3879,7 +3879,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:72 +#: apt_preferences.5.xml:66 msgid "" "Note that the files in the <filename>/etc/apt/preferences.d</filename> " "directory are parsed in alphanumeric ascending order and need to obey the " @@ -3892,13 +3892,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:81 +#: apt_preferences.5.xml:75 #, fuzzy msgid "APT's Default Priority Assignments" msgstr "Atribuições de Prioridade Padrão do APT" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:96 +#: apt_preferences.5.xml:90 #, fuzzy, no-wrap msgid "<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n" msgstr "" @@ -3906,7 +3906,7 @@ msgstr "" "<command>apt-get install -t testing <replaceable>algum-pacote</replaceable></command>\n" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:99 +#: apt_preferences.5.xml:93 #, fuzzy, no-wrap msgid "APT::Default-Release \"stable\";\n" msgstr "" @@ -3914,7 +3914,7 @@ msgstr "" "APT::Default-Release \"stable\";\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:83 +#: apt_preferences.5.xml:77 #, fuzzy msgid "" "If there is no preferences file or if there is no entry in the file that " @@ -3939,7 +3939,7 @@ msgstr "" "etc/apt/apt.conf</filename>. Por exemplo," #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:103 +#: apt_preferences.5.xml:97 #, fuzzy msgid "" "If the target release has been specified then APT uses the following " @@ -3950,13 +3950,13 @@ msgstr "" "Atribuirá :" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:108 +#: apt_preferences.5.xml:102 #, fuzzy msgid "priority 1" msgstr "prioridade 100" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:109 +#: apt_preferences.5.xml:103 msgid "" "to the versions coming from archives which in their <filename>Release</" "filename> files are marked as \"NotAutomatic: yes\" but <emphasis>not</" @@ -3965,13 +3965,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:115 +#: apt_preferences.5.xml:109 #, fuzzy msgid "priority 100" msgstr "prioridade 100" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:116 +#: apt_preferences.5.xml:110 msgid "" "to the version that is already installed (if any) and to the versions coming " "from archives which in their <filename>Release</filename> files are marked " @@ -3980,13 +3980,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:123 +#: apt_preferences.5.xml:117 #, fuzzy msgid "priority 500" msgstr "prioridade 500" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:124 +#: apt_preferences.5.xml:118 #, fuzzy msgid "" "to the versions that are not installed and do not belong to the target " @@ -3995,13 +3995,13 @@ msgstr "" "para as instâncias que não estã instaladas e que não pertencem a versão alvo." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:128 +#: apt_preferences.5.xml:122 #, fuzzy msgid "priority 990" msgstr "prioridade 990" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:129 +#: apt_preferences.5.xml:123 #, fuzzy msgid "" "to the versions that are not installed and belong to the target release." @@ -4009,7 +4009,7 @@ msgstr "" "para as instâncias que não estejam instaladas e pertençam a versão alvo." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:134 +#: apt_preferences.5.xml:128 #, fuzzy msgid "" "If the target release has not been specified then APT simply assigns " @@ -4024,7 +4024,7 @@ msgstr "" "prioridade 500 para todas as instâncias de pacotes não instaladas." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:141 +#: apt_preferences.5.xml:135 #, fuzzy msgid "" "APT then applies the following rules, listed in order of precedence, to " @@ -4034,7 +4034,7 @@ msgstr "" "determinar qual instância de um pacote instalar." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:144 +#: apt_preferences.5.xml:138 #, fuzzy msgid "" "Never downgrade unless the priority of an available version exceeds 1000. " @@ -4051,13 +4051,13 @@ msgstr "" "\"downgrade\" pode ser arriscado.)" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:150 +#: apt_preferences.5.xml:144 #, fuzzy msgid "Install the highest priority version." msgstr "Instala a instância de prioridade mais alta." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:151 +#: apt_preferences.5.xml:145 #, fuzzy msgid "" "If two or more versions have the same priority, install the most recent one " @@ -4067,7 +4067,7 @@ msgstr "" "mais recente (ou seja, aquela com o maior número de versão)." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:154 +#: apt_preferences.5.xml:148 #, fuzzy msgid "" "If two or more versions have the same priority and version number but either " @@ -4079,7 +4079,7 @@ msgstr "" "<literal>--reinstall</literal> seja fornecida, instala aquela desinstalada." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:160 +#: apt_preferences.5.xml:154 #, fuzzy msgid "" "In a typical situation, the installed version of a package (priority 100) " @@ -4096,7 +4096,7 @@ msgstr "" "forem executados." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:167 +#: apt_preferences.5.xml:161 #, fuzzy msgid "" "More rarely, the installed version of a package is <emphasis>more</emphasis> " @@ -4111,7 +4111,7 @@ msgstr "" "upgrade</command> forem executados." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:172 +#: apt_preferences.5.xml:166 #, fuzzy msgid "" "Sometimes the installed version of a package is more recent than the version " @@ -4131,13 +4131,13 @@ msgstr "" "disponíveis possuir uma prioridade maior do que a versão instalada." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:181 +#: apt_preferences.5.xml:175 #, fuzzy msgid "The Effect of APT Preferences" msgstr "O Efeito das Preferências do APT" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:183 +#: apt_preferences.5.xml:177 #, fuzzy msgid "" "The APT preferences file allows the system administrator to control the " @@ -4151,7 +4151,7 @@ msgstr "" "das duas formas, uma forma específica e uma forma geral." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:189 +#: apt_preferences.5.xml:183 #, fuzzy msgid "" "The specific form assigns a priority (a \"Pin-Priority\") to one or more " @@ -4168,7 +4168,7 @@ msgstr "" "com \"<literal>5.8</literal>\"." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:196 +#: apt_preferences.5.xml:190 #, fuzzy, no-wrap msgid "" "Package: perl\n" @@ -4181,7 +4181,7 @@ msgstr "" "Pin-Priority: 1001\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:202 +#: apt_preferences.5.xml:196 #, fuzzy msgid "" "The general form assigns a priority to all of the package versions in a " @@ -4197,7 +4197,7 @@ msgstr "" "identificado pelo nome de domínio totalmente qualificado do site Internet." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:208 +#: apt_preferences.5.xml:202 #, fuzzy msgid "" "This general-form entry in the APT preferences file applies only to groups " @@ -4210,7 +4210,7 @@ msgstr "" "no site local." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:213 +#: apt_preferences.5.xml:207 #, fuzzy, no-wrap msgid "" "Package: *\n" @@ -4223,7 +4223,7 @@ msgstr "" "Pin-Priority: 999\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:218 +#: apt_preferences.5.xml:212 msgid "" "A note of caution: the keyword used here is \"<literal>origin</literal>\" " "which can be used to match a hostname. The following record will assign a " @@ -4232,7 +4232,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:222 +#: apt_preferences.5.xml:216 #, fuzzy, no-wrap msgid "" "Package: *\n" @@ -4245,7 +4245,7 @@ msgstr "" "Pin-Priority: 999\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:226 +#: apt_preferences.5.xml:220 #, fuzzy msgid "" "This should <emphasis>not</emphasis> be confused with the Origin of a " @@ -4262,7 +4262,7 @@ msgstr "" "como \"Debian\" ou \"Ximian\"." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:231 +#: apt_preferences.5.xml:225 #, fuzzy msgid "" "The following record assigns a low priority to all package versions " @@ -4274,7 +4274,7 @@ msgstr "" "\"<literal>unstable</literal>\"." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:235 +#: apt_preferences.5.xml:229 #, fuzzy, no-wrap msgid "" "Package: *\n" @@ -4287,7 +4287,7 @@ msgstr "" "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:240 +#: apt_preferences.5.xml:234 #, fuzzy msgid "" "The following record assigns a high priority to all package versions " @@ -4299,7 +4299,7 @@ msgstr "" "\"<literal>unstable</literal>\"." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:244 +#: apt_preferences.5.xml:238 #, fuzzy, no-wrap msgid "" "Package: *\n" @@ -4312,7 +4312,7 @@ msgstr "" "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:249 +#: apt_preferences.5.xml:243 #, fuzzy msgid "" "The following record assigns a high priority to all package versions " @@ -4325,7 +4325,7 @@ msgstr "" "literal>\"." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> -#: apt_preferences.5.xml:254 +#: apt_preferences.5.xml:248 #, fuzzy, no-wrap msgid "" "Package: *\n" @@ -4338,12 +4338,12 @@ msgstr "" "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:264 +#: apt_preferences.5.xml:258 msgid "Regular expressions and &glob; syntax" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:266 +#: apt_preferences.5.xml:260 msgid "" "APT also supports pinning by &glob; expressions, and regular expressions " "surrounded by slashes. For example, the following example assigns the " @@ -4353,7 +4353,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:275 +#: apt_preferences.5.xml:269 #, fuzzy, no-wrap msgid "" "Package: gnome* /kde/\n" @@ -4366,7 +4366,7 @@ msgstr "" "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:281 +#: apt_preferences.5.xml:275 msgid "" "The rule for those expressions is that they can occur anywhere where a " "string can occur. Thus, the following pin assigns the priority 990 to all " @@ -4374,7 +4374,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:287 +#: apt_preferences.5.xml:281 #, fuzzy, no-wrap msgid "" "Package: *\n" @@ -4387,7 +4387,7 @@ msgstr "" "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:293 +#: apt_preferences.5.xml:287 msgid "" "If a regular expression occurs in a <literal>Package</literal> field, the " "behavior is the same as if this regular expression were replaced with a list " @@ -4398,13 +4398,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:309 +#: apt_preferences.5.xml:303 #, fuzzy msgid "How APT Interprets Priorities" msgstr "Como o APT Interpreta Prioridades" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:312 +#: apt_preferences.5.xml:306 #, fuzzy msgid "" "Priorities (P) assigned in the APT preferences file must be positive or " @@ -4415,12 +4415,12 @@ msgstr "" "seguir (a grosso modo):" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:317 +#: apt_preferences.5.xml:311 msgid "P >= 1000" msgstr "P >= 1000" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:318 +#: apt_preferences.5.xml:312 #, fuzzy msgid "" "causes a version to be installed even if this constitutes a downgrade of the " @@ -4430,12 +4430,12 @@ msgstr "" "dowgrade do pacote" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:322 +#: apt_preferences.5.xml:316 msgid "990 <= P < 1000" msgstr "990 <= P < 1000" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:323 +#: apt_preferences.5.xml:317 #, fuzzy msgid "" "causes a version to be installed even if it does not come from the target " @@ -4445,12 +4445,12 @@ msgstr "" "versão alvo, a menos que a versão instalada seja mais recente" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:328 +#: apt_preferences.5.xml:322 msgid "500 <= P < 990" msgstr "500 <= P < 990" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:329 +#: apt_preferences.5.xml:323 #, fuzzy msgid "" "causes a version to be installed unless there is a version available " @@ -4460,12 +4460,12 @@ msgstr "" "disponível pertencente a versão alvo ou a versão instalada seja mais recente" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:334 +#: apt_preferences.5.xml:328 msgid "100 <= P < 500" msgstr "100 <= P < 500" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:335 +#: apt_preferences.5.xml:329 #, fuzzy msgid "" "causes a version to be installed unless there is a version available " @@ -4476,12 +4476,12 @@ msgstr "" "seja mais recente" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:340 +#: apt_preferences.5.xml:334 msgid "0 < P < 100" msgstr "0 < P < 100" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:341 +#: apt_preferences.5.xml:335 #, fuzzy msgid "" "causes a version to be installed only if there is no installed version of " @@ -4491,18 +4491,18 @@ msgstr "" "instalada do pacote" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:345 +#: apt_preferences.5.xml:339 msgid "P < 0" msgstr "P < 0" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:346 +#: apt_preferences.5.xml:340 #, fuzzy msgid "prevents the version from being installed" msgstr "impede a versão de ser instalada" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:351 +#: apt_preferences.5.xml:345 #, fuzzy msgid "" "If any specific-form records match an available package version then the " @@ -4518,7 +4518,7 @@ msgstr "" "determinará a prioridade da versão do pacote." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:357 +#: apt_preferences.5.xml:351 #, fuzzy msgid "" "For example, suppose the APT preferences file contains the three records " @@ -4528,7 +4528,7 @@ msgstr "" "registros apresentados anteriormente :" #. type: Content of: <refentry><refsect1><refsect2><programlisting> -#: apt_preferences.5.xml:361 +#: apt_preferences.5.xml:355 #, fuzzy, no-wrap msgid "" "Package: perl\n" @@ -4557,12 +4557,12 @@ msgstr "" "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:374 +#: apt_preferences.5.xml:368 msgid "Then:" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:376 +#: apt_preferences.5.xml:370 #, fuzzy msgid "" "The most recent available version of the <literal>perl</literal> package " @@ -4578,7 +4578,7 @@ msgstr "" "será feito um downgrade do <literal>perl</literal>." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:381 +#: apt_preferences.5.xml:375 #, fuzzy msgid "" "A version of any package other than <literal>perl</literal> that is " @@ -4590,7 +4590,7 @@ msgstr "" "mesmo versões pertencentes a versão alvo." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:385 +#: apt_preferences.5.xml:379 #, fuzzy msgid "" "A version of a package whose origin is not the local system but some other " @@ -4605,13 +4605,13 @@ msgstr "" "instalada." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:395 +#: apt_preferences.5.xml:389 #, fuzzy msgid "Determination of Package Version and Distribution Properties" msgstr "Determinação da Versão do Pacote e Propriedades da Distribuição" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:397 +#: apt_preferences.5.xml:391 #, fuzzy msgid "" "The locations listed in the &sources-list; file should provide " @@ -4623,7 +4623,7 @@ msgstr "" "os pacotes disponíveis nessas localidades." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:401 +#: apt_preferences.5.xml:395 #, fuzzy msgid "" "The <filename>Packages</filename> file is normally found in the directory " @@ -4644,31 +4644,31 @@ msgstr "" "do APT :" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:409 +#: apt_preferences.5.xml:403 #, fuzzy msgid "the <literal>Package:</literal> line" msgstr "a linha <literal>Package:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:410 +#: apt_preferences.5.xml:404 #, fuzzy msgid "gives the package name" msgstr "informa o nome do pacote" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:413 apt_preferences.5.xml:463 +#: apt_preferences.5.xml:407 apt_preferences.5.xml:457 #, fuzzy msgid "the <literal>Version:</literal> line" msgstr "a linha <literal>Version:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:414 +#: apt_preferences.5.xml:408 #, fuzzy msgid "gives the version number for the named package" msgstr "informa o número de versão do pacote" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:419 +#: apt_preferences.5.xml:413 #, fuzzy msgid "" "The <filename>Release</filename> file is normally found in the directory " @@ -4691,13 +4691,13 @@ msgstr "" "do APT :" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:430 +#: apt_preferences.5.xml:424 #, fuzzy msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" msgstr "a linha <literal>Archive:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:431 +#: apt_preferences.5.xml:425 #, fuzzy msgid "" "names the archive to which all the packages in the directory tree belong. " @@ -4715,7 +4715,7 @@ msgstr "" "requerer a linha :" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:441 +#: apt_preferences.5.xml:435 #, fuzzy, no-wrap msgid "Pin: release a=stable\n" msgstr "" @@ -4723,13 +4723,13 @@ msgstr "" "Pin: release a=stable\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:447 +#: apt_preferences.5.xml:441 #, fuzzy msgid "the <literal>Codename:</literal> line" msgstr "a linha <literal>Component:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:448 +#: apt_preferences.5.xml:442 #, fuzzy msgid "" "names the codename to which all the packages in the directory tree belong. " @@ -4747,7 +4747,7 @@ msgstr "" "requerer a linha :" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:457 +#: apt_preferences.5.xml:451 #, fuzzy, no-wrap msgid "Pin: release n=&testing-codename;\n" msgstr "" @@ -4755,7 +4755,7 @@ msgstr "" "Pin: release a=stable\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:464 +#: apt_preferences.5.xml:458 #, fuzzy msgid "" "names the release version. For example, the packages in the tree might " @@ -4773,7 +4773,7 @@ msgstr "" "linhas a seguir." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:473 +#: apt_preferences.5.xml:467 #, fuzzy, no-wrap msgid "" "Pin: release v=&stable-version;\n" @@ -4786,13 +4786,13 @@ msgstr "" "Pin: release 3.0\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:482 +#: apt_preferences.5.xml:476 #, fuzzy msgid "the <literal>Component:</literal> line" msgstr "a linha <literal>Component:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:483 +#: apt_preferences.5.xml:477 #, fuzzy msgid "" "names the licensing component associated with the packages in the directory " @@ -4811,7 +4811,7 @@ msgstr "" "requerer a linha :" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:492 +#: apt_preferences.5.xml:486 #, fuzzy, no-wrap msgid "Pin: release c=main\n" msgstr "" @@ -4819,13 +4819,13 @@ msgstr "" "Pin: release c=main\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:498 +#: apt_preferences.5.xml:492 #, fuzzy msgid "the <literal>Origin:</literal> line" msgstr "a linha <literal>Origin:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:499 +#: apt_preferences.5.xml:493 #, fuzzy msgid "" "names the originator of the packages in the directory tree of the " @@ -4839,7 +4839,7 @@ msgstr "" "requerer a linha :" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:505 +#: apt_preferences.5.xml:499 #, fuzzy, no-wrap msgid "Pin: release o=Debian\n" msgstr "" @@ -4847,13 +4847,13 @@ msgstr "" "Pin: release o=Debian\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> -#: apt_preferences.5.xml:511 +#: apt_preferences.5.xml:505 #, fuzzy msgid "the <literal>Label:</literal> line" msgstr "a linha <literal>Label:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> -#: apt_preferences.5.xml:512 +#: apt_preferences.5.xml:506 #, fuzzy msgid "" "names the label of the packages in the directory tree of the " @@ -4866,7 +4866,7 @@ msgstr "" "arquivo de preferências do APT iria requerer a linha :" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> -#: apt_preferences.5.xml:518 +#: apt_preferences.5.xml:512 #, fuzzy, no-wrap msgid "Pin: release l=Debian\n" msgstr "" @@ -4874,7 +4874,7 @@ msgstr "" "Pin: release l=Debian\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:525 +#: apt_preferences.5.xml:519 #, fuzzy msgid "" "All of the <filename>Packages</filename> and <filename>Release</filename> " @@ -4900,13 +4900,13 @@ msgstr "" "<literal>unstable</literal>." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:538 +#: apt_preferences.5.xml:532 #, fuzzy msgid "Optional Lines in an APT Preferences Record" msgstr "Linhas Opcionais em um Registro de Preferências do APT" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:540 +#: apt_preferences.5.xml:534 #, fuzzy msgid "" "Each record in the APT preferences file can optionally begin with one or " @@ -4918,13 +4918,13 @@ msgstr "" "</literal>. Isto oferece um local para inserir comentários." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:549 +#: apt_preferences.5.xml:543 #, fuzzy msgid "Tracking Stable" msgstr "Acompanhando a Stable" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:557 +#: apt_preferences.5.xml:551 #, fuzzy, no-wrap msgid "" "Explanation: Uninstall or do not install any Debian-originated\n" @@ -4949,7 +4949,7 @@ msgstr "" "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:551 +#: apt_preferences.5.xml:545 #, fuzzy msgid "" "The following APT preferences file will cause APT to assign a priority " @@ -4965,8 +4965,8 @@ msgstr "" "outras distribuições <literal>Debian</literal>." #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:574 apt_preferences.5.xml:620 -#: apt_preferences.5.xml:678 +#: apt_preferences.5.xml:568 apt_preferences.5.xml:614 +#: apt_preferences.5.xml:672 #, fuzzy, no-wrap msgid "" "apt-get install <replaceable>package-name</replaceable>\n" @@ -4979,7 +4979,7 @@ msgstr "" "apt-get dist-upgrade\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:569 +#: apt_preferences.5.xml:563 #, fuzzy msgid "" "With a suitable &sources-list; file and the above preferences file, any of " @@ -4992,7 +4992,7 @@ msgstr "" "ulítma(s) versão(ôes) <literal>stable</literal>." #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:586 +#: apt_preferences.5.xml:580 #, fuzzy, no-wrap msgid "apt-get install <replaceable>package</replaceable>/testing\n" msgstr "" @@ -5000,7 +5000,7 @@ msgstr "" "apt-get install <replaceable>pacote</replaceable>/testing\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:580 +#: apt_preferences.5.xml:574 #, fuzzy msgid "" "The following command will cause APT to upgrade the specified package to the " @@ -5013,13 +5013,13 @@ msgstr "" "atualizado novamente a menos que esse comando seja executado novamente." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:592 +#: apt_preferences.5.xml:586 #, fuzzy msgid "Tracking Testing or Unstable" msgstr "Acompanhando a Testing" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:601 +#: apt_preferences.5.xml:595 #, fuzzy, no-wrap msgid "" "Package: *\n" @@ -5048,7 +5048,7 @@ msgstr "" "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:594 +#: apt_preferences.5.xml:588 #, fuzzy msgid "" "The following APT preferences file will cause APT to assign a high priority " @@ -5065,7 +5065,7 @@ msgstr "" "versões de pacotes de outras distribuições <literal>Debian</literal>." #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:615 +#: apt_preferences.5.xml:609 #, fuzzy msgid "" "With a suitable &sources-list; file and the above preferences file, any of " @@ -5078,7 +5078,7 @@ msgstr "" "a(s) última(s) versão(ões) <literal>testing</literal>." #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:635 +#: apt_preferences.5.xml:629 #, fuzzy, no-wrap msgid "apt-get install <replaceable>package</replaceable>/unstable\n" msgstr "" @@ -5086,7 +5086,7 @@ msgstr "" "apt-get install <replaceable>pacote</replaceable>/unstable\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:626 +#: apt_preferences.5.xml:620 #, fuzzy msgid "" "The following command will cause APT to upgrade the specified package to the " @@ -5106,12 +5106,12 @@ msgstr "" "recente que a versão instalada." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt_preferences.5.xml:642 +#: apt_preferences.5.xml:636 msgid "Tracking the evolution of a codename release" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:656 +#: apt_preferences.5.xml:650 #, fuzzy, no-wrap msgid "" "Explanation: Uninstall or do not install any Debian-originated package versions\n" @@ -5141,7 +5141,7 @@ msgstr "" "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:644 +#: apt_preferences.5.xml:638 msgid "" "The following APT preferences file will cause APT to assign a priority " "higher than the default (500) to all package versions belonging to a " @@ -5156,7 +5156,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:673 +#: apt_preferences.5.xml:667 #, fuzzy msgid "" "With a suitable &sources-list; file and the above preferences file, any of " @@ -5169,7 +5169,7 @@ msgstr "" "ulítma(s) versão(ôes) <literal>stable</literal>." #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:693 +#: apt_preferences.5.xml:687 #, fuzzy, no-wrap msgid "apt-get install <replaceable>package</replaceable>/sid\n" msgstr "" @@ -5177,7 +5177,7 @@ msgstr "" "apt-get install <replaceable>pacote</replaceable>/testing\n" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:684 +#: apt_preferences.5.xml:678 #, fuzzy msgid "" "The following command will cause APT to upgrade the specified package to the " @@ -5197,18 +5197,18 @@ msgstr "" "recente que a versão instalada." #. type: Content of: <refentry><refsect1><para> -#: apt_preferences.5.xml:708 +#: apt_preferences.5.xml:702 #, fuzzy msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;" msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;" #. type: Content of: <refentry><refnamediv><refpurpose> -#: sources.list.5.xml:35 +#: sources.list.5.xml:29 msgid "List of configured APT data sources" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:40 +#: sources.list.5.xml:34 msgid "" "The source list <filename>/etc/apt/sources.list</filename> is designed to " "support any number of active sources and a variety of source media. The file " @@ -5219,7 +5219,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:47 +#: sources.list.5.xml:41 msgid "" "Each line specifying a source starts with type (e.g. <literal>deb-src</" "literal>) followed by options and arguments for this type. Individual " @@ -5229,12 +5229,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:55 +#: sources.list.5.xml:49 msgid "sources.list.d" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:56 +#: sources.list.5.xml:50 msgid "" "The <filename>/etc/apt/sources.list.d</filename> directory provides a way to " "add sources.list entries in separate files. The format is the same as for " @@ -5247,12 +5247,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:67 +#: sources.list.5.xml:61 msgid "The deb and deb-src types" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:68 +#: sources.list.5.xml:62 msgid "" "The <literal>deb</literal> type references a typical two-level Debian " "archive, <filename>distribution/component</filename>. The " @@ -5267,20 +5267,20 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:79 +#: sources.list.5.xml:73 msgid "" "The format for a <filename>sources.list</filename> entry using the " "<literal>deb</literal> and <literal>deb-src</literal> types is:" msgstr "" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:82 +#: sources.list.5.xml:76 #, no-wrap msgid "deb [ options ] uri suite [component1] [component2] [...]" msgstr "" #. type: Content of: <refentry><refsect1><para><literallayout> -#: sources.list.5.xml:86 +#: sources.list.5.xml:80 #, no-wrap msgid "" " Types: deb deb-src\n" @@ -5303,14 +5303,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:84 +#: sources.list.5.xml:78 msgid "" "Alternatively a rfc822 style format is also supported: <placeholder type=" "\"literallayout\" id=\"0\"/>" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:105 +#: sources.list.5.xml:99 msgid "" "The URI for the <literal>deb</literal> type must specify the base of the " "Debian distribution, from which APT will find the information it needs. " @@ -5323,7 +5323,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:114 +#: sources.list.5.xml:108 msgid "" "<literal>suite</literal> may also contain a variable, <literal>$(ARCH)</" "literal> which expands to the Debian architecture (such as <literal>amd64</" @@ -5335,7 +5335,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:122 +#: sources.list.5.xml:116 msgid "" "In the traditional style sources.list format since only one distribution can " "be specified per line it may be necessary to have multiple lines for the " @@ -5351,7 +5351,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:136 +#: sources.list.5.xml:130 msgid "" "<literal>options</literal> is always optional and needs to be surrounded by " "square brackets. It can consist of multiple settings in the form " @@ -5362,7 +5362,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:142 +#: sources.list.5.xml:136 msgid "" "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</" "replaceable>,…</literal> can be used to specify for which architectures " @@ -5372,7 +5372,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:146 +#: sources.list.5.xml:140 msgid "" "<literal>arch+=<replaceable>arch1</replaceable>,<replaceable>arch2</" "replaceable>,…</literal> and <literal>arch-=<replaceable>arch1</replaceable>," @@ -5381,7 +5381,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: sources.list.5.xml:149 +#: sources.list.5.xml:143 msgid "" "<literal>trusted=yes</literal> can be set to indicate that packages from " "this source are always authenticated even if the <filename>Release</" @@ -5392,7 +5392,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:156 +#: sources.list.5.xml:150 msgid "" "It is important to list sources in order of preference, with the most " "preferred source listed first. Typically this will result in sorting by " @@ -5401,13 +5401,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:161 +#: sources.list.5.xml:155 #, fuzzy msgid "Some examples:" msgstr "Exemplos" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:163 +#: sources.list.5.xml:157 #, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n" @@ -5416,17 +5416,17 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: sources.list.5.xml:169 +#: sources.list.5.xml:163 msgid "URI specification" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:171 +#: sources.list.5.xml:165 msgid "The currently recognized URI types are:" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:175 +#: sources.list.5.xml:169 msgid "" "The file scheme allows an arbitrary directory in the file system to be " "considered an archive. This is useful for NFS mounts and local mirrors or " @@ -5434,14 +5434,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:182 +#: sources.list.5.xml:176 msgid "" "The cdrom scheme allows APT to use a local CD-ROM drive with media swapping. " "Use the &apt-cdrom; program to create cdrom entries in the source list." msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:189 +#: sources.list.5.xml:183 msgid "" "The http scheme specifies an HTTP server for the archive. If an environment " "variable <envar>http_proxy</envar> is set with the format http://server:" @@ -5452,7 +5452,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:200 +#: sources.list.5.xml:194 msgid "" "The ftp scheme specifies an FTP server for the archive. APT's FTP behavior " "is highly configurable; for more information see the &apt-conf; manual page. " @@ -5465,7 +5465,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:212 +#: sources.list.5.xml:206 msgid "" "The copy scheme is identical to the file scheme except that packages are " "copied into the cache directory instead of used directly at their location. " @@ -5474,7 +5474,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:219 +#: sources.list.5.xml:213 msgid "" "The rsh/ssh method invokes RSH/SSH to connect to a remote host and access " "the files as a given user. Prior configuration of rhosts or RSA keys is " @@ -5483,12 +5483,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: sources.list.5.xml:226 +#: sources.list.5.xml:220 msgid "adding more recognizable URI types" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: sources.list.5.xml:228 +#: sources.list.5.xml:222 msgid "" "APT can be extended with more methods shipped in other optional packages, " "which should follow the naming scheme <package>apt-transport-" @@ -5500,42 +5500,42 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:240 +#: sources.list.5.xml:234 msgid "" "Uses the archive stored locally (or NFS mounted) at /home/jason/debian for " "stable/main, stable/contrib, and stable/non-free." msgstr "" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:242 +#: sources.list.5.xml:236 #, no-wrap msgid "deb file:/home/jason/debian stable main contrib non-free" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:244 +#: sources.list.5.xml:238 msgid "As above, except this uses the unstable (development) distribution." msgstr "" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:245 +#: sources.list.5.xml:239 #, no-wrap msgid "deb file:/home/jason/debian unstable main contrib non-free" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:247 +#: sources.list.5.xml:241 msgid "Source line for the above" msgstr "" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:248 +#: sources.list.5.xml:242 #, no-wrap msgid "deb-src file:/home/jason/debian unstable main contrib non-free" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:250 +#: sources.list.5.xml:244 msgid "" "The first line gets package information for the architectures in " "<literal>APT::Architectures</literal> while the second always retrieves " @@ -5543,7 +5543,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:252 +#: sources.list.5.xml:246 #, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main\n" @@ -5551,33 +5551,33 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:255 +#: sources.list.5.xml:249 msgid "" "Uses HTTP to access the archive at archive.debian.org, and uses only the " "hamm/main area." msgstr "" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:257 +#: sources.list.5.xml:251 #, no-wrap msgid "deb http://archive.debian.org/debian-archive hamm main" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:259 +#: sources.list.5.xml:253 msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the &stable-codename;/contrib area." msgstr "" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:261 +#: sources.list.5.xml:255 #, no-wrap msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:263 +#: sources.list.5.xml:257 msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the unstable/contrib area. If this line appears as " @@ -5586,19 +5586,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><literallayout> -#: sources.list.5.xml:267 +#: sources.list.5.xml:261 #, no-wrap msgid "deb ftp://ftp.debian.org/debian unstable contrib" msgstr "" #. type: Content of: <refentry><refsect1><para><literallayout> -#: sources.list.5.xml:276 +#: sources.list.5.xml:270 #, no-wrap msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:269 +#: sources.list.5.xml:263 msgid "" "Uses HTTP to access the archive at ftp.tlh.debian.org, under the universe " "directory, and uses only files found under <filename>unstable/binary-i386</" @@ -5610,25 +5610,25 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: sources.list.5.xml:281 +#: sources.list.5.xml:275 #, fuzzy msgid "&apt-cache; &apt-conf;" msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;" #. type: Content of: <refentry><refmeta><manvolnum> -#: apt-extracttemplates.1.xml:28 apt-sortpkgs.1.xml:28 apt-ftparchive.1.xml:28 +#: apt-extracttemplates.1.xml:22 apt-sortpkgs.1.xml:22 apt-ftparchive.1.xml:22 msgid "1" msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-extracttemplates.1.xml:35 +#: apt-extracttemplates.1.xml:29 msgid "" "Utility to extract <command>debconf</command> config and templates from " "Debian packages" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:41 +#: apt-extracttemplates.1.xml:35 msgid "" "<command>apt-extracttemplates</command> will take one or more Debian package " "files as input and write out (to a temporary directory) all associated " @@ -5638,12 +5638,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:46 +#: apt-extracttemplates.1.xml:40 msgid "package version template-file config-script" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:47 +#: apt-extracttemplates.1.xml:41 msgid "" "template-file and config-script are written to the temporary directory " "specified by the <option>-t</option> or <option>--tempdir</option> " @@ -5653,7 +5653,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-extracttemplates.1.xml:60 +#: apt-extracttemplates.1.xml:54 msgid "" "Temporary directory in which to write extracted <command>debconf</command> " "template files and config scripts. Configuration Item: <literal>APT::" @@ -5661,19 +5661,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-extracttemplates.1.xml:77 +#: apt-extracttemplates.1.xml:71 msgid "" "<command>apt-extracttemplates</command> returns zero on normal operation, " "decimal 100 on error." msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-sortpkgs.1.xml:35 +#: apt-sortpkgs.1.xml:29 msgid "Utility to sort package index files" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:41 +#: apt-sortpkgs.1.xml:35 msgid "" "<command>apt-sortpkgs</command> will take an index file (source index or " "package index) and sort the records so that they are ordered by the package " @@ -5682,32 +5682,32 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:47 +#: apt-sortpkgs.1.xml:41 msgid "" "All output is sent to standard output; the input must be a seekable file." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-sortpkgs.1.xml:56 +#: apt-sortpkgs.1.xml:50 msgid "" "Use source index field ordering. Configuration Item: <literal>APT::" "SortPkgs::Source</literal>." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-sortpkgs.1.xml:70 +#: apt-sortpkgs.1.xml:64 msgid "" "<command>apt-sortpkgs</command> returns zero on normal operation, decimal " "100 on error." msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> -#: apt-ftparchive.1.xml:35 +#: apt-ftparchive.1.xml:29 msgid "Utility to generate index files" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:41 +#: apt-ftparchive.1.xml:35 msgid "" "<command>apt-ftparchive</command> is the command line tool that generates " "the index files that APT uses to access a distribution source. The index " @@ -5716,7 +5716,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:45 +#: apt-ftparchive.1.xml:39 msgid "" "<command>apt-ftparchive</command> is a superset of the &dpkg-scanpackages; " "program, incorporating its entire functionality via the <literal>packages</" @@ -5726,7 +5726,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:51 +#: apt-ftparchive.1.xml:45 msgid "" "Internally <command>apt-ftparchive</command> can make use of binary " "databases to cache the contents of a .deb file and it does not rely on any " @@ -5736,7 +5736,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:62 +#: apt-ftparchive.1.xml:56 msgid "" "The packages command generates a package file from a directory tree. It " "takes the given directory and recursively searches it for .deb files, " @@ -5745,13 +5745,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:67 apt-ftparchive.1.xml:91 +#: apt-ftparchive.1.xml:61 apt-ftparchive.1.xml:85 msgid "" "The option <option>--db</option> can be used to specify a binary caching DB." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:72 +#: apt-ftparchive.1.xml:66 msgid "" "The <literal>sources</literal> command generates a source index file from a " "directory tree. It takes the given directory and recursively searches it " @@ -5760,7 +5760,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:77 +#: apt-ftparchive.1.xml:71 msgid "" "If an override file is specified then a source override file will be looked " "for with an extension of .src. The --source-override option can be used to " @@ -5768,7 +5768,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:84 +#: apt-ftparchive.1.xml:78 msgid "" "The <literal>contents</literal> command generates a contents file from a " "directory tree. It takes the given directory and recursively searches it " @@ -5779,7 +5779,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:96 +#: apt-ftparchive.1.xml:90 msgid "" "The <literal>release</literal> command generates a Release file from a " "directory tree. It recursively searches the given directory for uncompressed " @@ -5794,7 +5794,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:106 +#: apt-ftparchive.1.xml:100 msgid "" "Values for the additional metadata fields in the Release file are taken from " "the corresponding variables under <literal>APT::FTPArchive::Release</" @@ -5807,7 +5807,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:119 +#: apt-ftparchive.1.xml:113 msgid "" "The <literal>generate</literal> command is designed to be runnable from a " "cron script and builds indexes according to the given config file. The " @@ -5817,19 +5817,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:128 +#: apt-ftparchive.1.xml:122 msgid "" "The <literal>clean</literal> command tidies the databases used by the given " "configuration file by removing any records that are no longer necessary." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:134 +#: apt-ftparchive.1.xml:128 msgid "The Generate Configuration" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:136 +#: apt-ftparchive.1.xml:130 msgid "" "The <literal>generate</literal> command uses a configuration file to " "describe the archives that are going to be generated. It follows the typical " @@ -5840,19 +5840,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:144 +#: apt-ftparchive.1.xml:138 msgid "" "The generate configuration has four separate sections, each described below." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:146 +#: apt-ftparchive.1.xml:140 #, fuzzy msgid "<literal>Dir</literal> Section" msgstr "a linha <literal>Origin:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:148 +#: apt-ftparchive.1.xml:142 msgid "" "The <literal>Dir</literal> section defines the standard directories needed " "to locate the files required during the generation process. These " @@ -5861,7 +5861,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:155 +#: apt-ftparchive.1.xml:149 msgid "" "Specifies the root of the FTP archive, in a standard Debian configuration " "this is the directory that contains the <filename>ls-LR</filename> and dist " @@ -5869,30 +5869,30 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:162 +#: apt-ftparchive.1.xml:156 msgid "Specifies the location of the override files." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:167 +#: apt-ftparchive.1.xml:161 msgid "Specifies the location of the cache files." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:172 +#: apt-ftparchive.1.xml:166 msgid "" "Specifies the location of the file list files, if the <literal>FileList</" "literal> setting is used below." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:178 +#: apt-ftparchive.1.xml:172 #, fuzzy msgid "<literal>Default</literal> Section" msgstr "a linha <literal>Label:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:180 +#: apt-ftparchive.1.xml:174 msgid "" "The <literal>Default</literal> section specifies default values, and " "settings that control the operation of the generator. Other sections may " @@ -5900,7 +5900,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:186 +#: apt-ftparchive.1.xml:180 msgid "" "Sets the default compression schemes to use for the package index files. It " "is a string that contains a space separated list of at least one of: '.' (no " @@ -5909,42 +5909,42 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:194 +#: apt-ftparchive.1.xml:188 msgid "" "Sets the default list of file extensions that are package files. This " "defaults to '.deb'." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:200 +#: apt-ftparchive.1.xml:194 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Sources files." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:206 +#: apt-ftparchive.1.xml:200 msgid "" "Sets the default list of file extensions that are source files. This " "defaults to '.dsc'." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:212 +#: apt-ftparchive.1.xml:206 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Contents files." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:218 +#: apt-ftparchive.1.xml:212 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Translation-en master file." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:224 +#: apt-ftparchive.1.xml:218 msgid "" "Specifies the number of kilobytes to delink (and replace with hard links) " "per run. This is used in conjunction with the per-section <literal>External-" @@ -5952,14 +5952,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:231 +#: apt-ftparchive.1.xml:225 msgid "" "Specifies the mode of all created index files. It defaults to 0644. All " "index files are set to this mode with no regard to the umask." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:238 apt-ftparchive.1.xml:384 +#: apt-ftparchive.1.xml:232 apt-ftparchive.1.xml:378 msgid "" "Specifies whether long descriptions should be included in the " "<filename>Packages</filename> file or split out into a master " @@ -5967,13 +5967,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:244 +#: apt-ftparchive.1.xml:238 #, fuzzy msgid "<literal>TreeDefault</literal> Section" msgstr "a linha <literal>Label:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:246 +#: apt-ftparchive.1.xml:240 msgid "" "Sets defaults specific to <literal>Tree</literal> sections. All of these " "variables are substitution variables and have the strings $(DIST), " @@ -5981,7 +5981,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:253 +#: apt-ftparchive.1.xml:247 msgid "" "Sets the number of kilobytes of contents files that are generated each day. " "The contents files are round-robined so that over several days they will all " @@ -5989,7 +5989,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:260 +#: apt-ftparchive.1.xml:254 msgid "" "Controls the number of days a contents file is allowed to be checked without " "changing. If this limit is passed the mtime of the contents file is updated. " @@ -6000,35 +6000,35 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:271 +#: apt-ftparchive.1.xml:265 msgid "" "Sets the top of the .deb directory tree. Defaults to <filename>$(DIST)/" "$(SECTION)/binary-$(ARCH)/</filename>" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:277 +#: apt-ftparchive.1.xml:271 msgid "" "Sets the top of the source package directory tree. Defaults to <filename>" "$(DIST)/$(SECTION)/source/</filename>" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:283 +#: apt-ftparchive.1.xml:277 msgid "" "Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/" "binary-$(ARCH)/Packages</filename>" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:289 +#: apt-ftparchive.1.xml:283 msgid "" "Sets the output Sources file. Defaults to <filename>$(DIST)/$(SECTION)/" "source/Sources</filename>" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:295 +#: apt-ftparchive.1.xml:289 msgid "" "Sets the output Translation-en master file with the long descriptions if " "they should be not included in the Packages file. Defaults to <filename>" @@ -6036,7 +6036,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:302 +#: apt-ftparchive.1.xml:296 msgid "" "Sets the path prefix that causes a symlink to be considered an internal link " "instead of an external link. Defaults to <filename>$(DIST)/$(SECTION)/</" @@ -6044,7 +6044,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:309 +#: apt-ftparchive.1.xml:303 msgid "" "Sets the output Contents file. Defaults to <filename>$(DIST)/$(SECTION)/" "Contents-$(ARCH)</filename>. If this setting causes multiple Packages files " @@ -6054,19 +6054,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:318 +#: apt-ftparchive.1.xml:312 msgid "Sets header file to prepend to the contents output." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:323 +#: apt-ftparchive.1.xml:317 msgid "" "Sets the binary cache database to use for this section. Multiple sections " "can share the same database." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:329 +#: apt-ftparchive.1.xml:323 msgid "" "Specifies that instead of walking the directory tree, <command>apt-" "ftparchive</command> should read the list of files from the given file. " @@ -6074,7 +6074,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:336 +#: apt-ftparchive.1.xml:330 msgid "" "Specifies that instead of walking the directory tree, <command>apt-" "ftparchive</command> should read the list of files from the given file. " @@ -6083,13 +6083,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:344 +#: apt-ftparchive.1.xml:338 #, fuzzy msgid "<literal>Tree</literal> Section" msgstr "a linha <literal>Label:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:346 +#: apt-ftparchive.1.xml:340 msgid "" "The <literal>Tree</literal> section defines a standard Debian file tree " "which consists of a base directory, then multiple sections in that base " @@ -6099,7 +6099,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:351 +#: apt-ftparchive.1.xml:345 msgid "" "The <literal>Tree</literal> section takes a scope tag which sets the " "<literal>$(DIST)</literal> variable and defines the root of the tree (the " @@ -6108,7 +6108,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:356 +#: apt-ftparchive.1.xml:350 msgid "" "All of the settings defined in the <literal>TreeDefault</literal> section " "can be used in a <literal>Tree</literal> section as well as three new " @@ -6116,7 +6116,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt-ftparchive.1.xml:362 +#: apt-ftparchive.1.xml:356 #, no-wrap msgid "" "for i in Sections do \n" @@ -6126,7 +6126,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:359 +#: apt-ftparchive.1.xml:353 msgid "" "When processing a <literal>Tree</literal> section <command>apt-ftparchive</" "command> performs an operation similar to: <placeholder type=\"programlisting" @@ -6134,7 +6134,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:370 +#: apt-ftparchive.1.xml:364 msgid "" "This is a space separated list of sections which appear under the " "distribution; typically this is something like <literal>main contrib non-" @@ -6142,7 +6142,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:377 +#: apt-ftparchive.1.xml:371 msgid "" "This is a space separated list of all the architectures that appear under " "search section. The special architecture 'source' is used to indicate that " @@ -6150,37 +6150,37 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:390 +#: apt-ftparchive.1.xml:384 msgid "" "Sets the binary override file. The override file contains section, priority " "and maintainer address information." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:396 +#: apt-ftparchive.1.xml:390 msgid "" "Sets the source override file. The override file contains section " "information." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:402 apt-ftparchive.1.xml:448 +#: apt-ftparchive.1.xml:396 apt-ftparchive.1.xml:442 msgid "Sets the binary extra override file." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:407 apt-ftparchive.1.xml:453 +#: apt-ftparchive.1.xml:401 apt-ftparchive.1.xml:447 msgid "Sets the source extra override file." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt-ftparchive.1.xml:412 +#: apt-ftparchive.1.xml:406 #, fuzzy msgid "<literal>BinDirectory</literal> Section" msgstr "a linha <literal>Component:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt-ftparchive.1.xml:414 +#: apt-ftparchive.1.xml:408 msgid "" "The <literal>bindirectory</literal> section defines a binary directory tree " "with no special structure. The scope tag specifies the location of the " @@ -6190,54 +6190,54 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:422 +#: apt-ftparchive.1.xml:416 msgid "Sets the Packages file output." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:427 +#: apt-ftparchive.1.xml:421 msgid "" "Sets the Sources file output. At least one of <literal>Packages</literal> or " "<literal>Sources</literal> is required." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:433 +#: apt-ftparchive.1.xml:427 msgid "Sets the Contents file output (optional)." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:438 +#: apt-ftparchive.1.xml:432 msgid "Sets the binary override file." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:443 +#: apt-ftparchive.1.xml:437 msgid "Sets the source override file." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:458 +#: apt-ftparchive.1.xml:452 msgid "Sets the cache DB." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:463 +#: apt-ftparchive.1.xml:457 msgid "Appends a path to all the output paths." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:468 +#: apt-ftparchive.1.xml:462 msgid "Specifies the file list file." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:475 +#: apt-ftparchive.1.xml:469 msgid "The Binary Override File" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:476 +#: apt-ftparchive.1.xml:470 msgid "" "The binary override file is fully compatible with &dpkg-scanpackages;. It " "contains four fields separated by spaces. The first field is the package " @@ -6247,19 +6247,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><literallayout> -#: apt-ftparchive.1.xml:482 +#: apt-ftparchive.1.xml:476 #, no-wrap msgid "old [// oldn]* => new" msgstr "" #. type: Content of: <refentry><refsect1><para><literallayout> -#: apt-ftparchive.1.xml:484 +#: apt-ftparchive.1.xml:478 #, no-wrap msgid "new" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:481 +#: apt-ftparchive.1.xml:475 msgid "" "The general form of the maintainer field is: <placeholder type=" "\"literallayout\" id=\"0\"/> or simply, <placeholder type=\"literallayout\" " @@ -6270,12 +6270,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:492 +#: apt-ftparchive.1.xml:486 msgid "The Source Override File" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:494 +#: apt-ftparchive.1.xml:488 msgid "" "The source override file is fully compatible with &dpkg-scansources;. It " "contains two fields separated by spaces. The first field is the source " @@ -6283,12 +6283,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:499 +#: apt-ftparchive.1.xml:493 msgid "The Extra Override File" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:501 +#: apt-ftparchive.1.xml:495 msgid "" "The extra override file allows any arbitrary tag to be added or replaced in " "the output. It has three columns, the first is the package, the second is " @@ -6296,7 +6296,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:512 +#: apt-ftparchive.1.xml:506 msgid "" "Generate the given checksum. These options default to on, when turned off " "the generated index files will not have the checksum fields where possible. " @@ -6310,14 +6310,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:523 +#: apt-ftparchive.1.xml:517 msgid "" "Use a binary caching DB. This has no effect on the generate command. " "Configuration Item: <literal>APT::FTPArchive::DB</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:529 +#: apt-ftparchive.1.xml:523 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quiet up to a maximum of 2. You can also use " @@ -6326,7 +6326,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:537 +#: apt-ftparchive.1.xml:531 msgid "" "Perform Delinking. If the <literal>External-Links</literal> setting is used " "then this option actually enables delinking of the files. It defaults to on " @@ -6335,7 +6335,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:545 +#: apt-ftparchive.1.xml:539 msgid "" "Perform contents generation. When this option is set and package indexes are " "being generated with a cache DB then the file listing will also be extracted " @@ -6345,7 +6345,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:555 +#: apt-ftparchive.1.xml:549 msgid "" "Select the source override file to use with the <literal>sources</literal> " "command. Configuration Item: <literal>APT::FTPArchive::SourceOverride</" @@ -6353,14 +6353,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:561 +#: apt-ftparchive.1.xml:555 msgid "" "Make the caching databases read only. Configuration Item: <literal>APT::" "FTPArchive::ReadOnlyDB</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:566 +#: apt-ftparchive.1.xml:560 msgid "" "Accept in the <literal>packages</literal> and <literal>contents</literal> " "commands only package files matching <literal>*_arch.deb</literal> or " @@ -6369,7 +6369,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:574 +#: apt-ftparchive.1.xml:568 msgid "" "&apt-ftparchive; caches as much as possible of metadata in a cachedb. If " "packages are recompiled and/or republished with the same version again, this " @@ -6383,7 +6383,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-ftparchive.1.xml:586 +#: apt-ftparchive.1.xml:580 msgid "" "This configuration option defaults to \"<literal>true</literal>\" and should " "only be set to <literal>\"false\"</literal> if the Archive generated with " @@ -6393,69 +6393,69 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><programlisting> -#: apt-ftparchive.1.xml:604 +#: apt-ftparchive.1.xml:598 #, no-wrap msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:600 +#: apt-ftparchive.1.xml:594 msgid "" "To create a compressed Packages file for a directory containing binary " "packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-ftparchive.1.xml:614 +#: apt-ftparchive.1.xml:608 msgid "" "<command>apt-ftparchive</command> returns zero on normal operation, decimal " "100 on error." msgstr "" #. type: Attribute 'lang' of: <book> -#: guide.dbk:8 offline.dbk:8 +#: guide.dbk:9 offline.dbk:9 msgid "en" msgstr "" #. type: Content of: <book><title> -#: guide.dbk:10 +#: guide.dbk:11 msgid "APT User's Guide" msgstr "" #. type: Content of: <book><bookinfo><authorgroup><author><personname> -#: guide.dbk:16 offline.dbk:16 +#: guide.dbk:17 offline.dbk:17 msgid "Jason Gunthorpe" msgstr "" #. type: Content of: <book><bookinfo><authorgroup><author><email> -#: guide.dbk:16 offline.dbk:16 +#: guide.dbk:17 offline.dbk:17 msgid "jgg@debian.org" msgstr "" #. type: Content of: <book><bookinfo><releaseinfo> -#: guide.dbk:20 offline.dbk:20 +#: guide.dbk:21 offline.dbk:21 msgid "Version &apt-product-version;" msgstr "" #. type: Content of: <book><bookinfo><abstract><para> -#: guide.dbk:24 +#: guide.dbk:25 msgid "" "This document provides an overview of how to use the the APT package manager." msgstr "" #. type: Content of: <book><bookinfo> -#: guide.dbk:28 +#: guide.dbk:29 msgid "" "<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" msgstr "" #. type: Content of: <book><bookinfo><legalnotice><title> -#: guide.dbk:31 offline.dbk:32 +#: guide.dbk:32 offline.dbk:33 msgid "License Notice" msgstr "" #. type: Content of: <book><bookinfo><legalnotice><para> -#: guide.dbk:33 offline.dbk:34 +#: guide.dbk:34 offline.dbk:35 msgid "" "\"APT\" and this document are free software; you can redistribute them and/" "or modify them under the terms of the GNU General Public License as " @@ -6464,19 +6464,19 @@ msgid "" msgstr "" #. type: Content of: <book><bookinfo><legalnotice><para> -#: guide.dbk:42 offline.dbk:40 +#: guide.dbk:43 offline.dbk:41 msgid "" "For more details, on Debian systems, see the file /usr/share/common-licenses/" "GPL for the full license." msgstr "" #. type: Content of: <book><chapter><title> -#: guide.dbk:49 +#: guide.dbk:50 msgid "General" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:51 +#: guide.dbk:52 msgid "" "The APT package currently contains two sections, the APT <command>dselect</" "command> method and the <command>apt-get</command> command line user " @@ -6485,12 +6485,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><title> -#: guide.dbk:57 +#: guide.dbk:58 msgid "Anatomy of the Package System" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:59 +#: guide.dbk:60 msgid "" "The Debian packaging system has a large amount of information associated " "with each package to help assure that it integrates cleanly and easily into " @@ -6498,7 +6498,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:64 +#: guide.dbk:65 msgid "" "The dependency system allows individual programs to make use of shared " "elements in the system such as libraries. It simplifies placing infrequently " @@ -6508,7 +6508,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:71 +#: guide.dbk:72 msgid "" "The first step to understanding the dependency system is to grasp the " "concept of a simple dependency. The meaning of a simple dependency is that a " @@ -6517,7 +6517,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:76 +#: guide.dbk:77 msgid "" "For instance, mailcrypt is an emacs extension that aids in encrypting email " "with GPG. Without GPGP installed mailcrypt is useless, so mailcrypt has a " @@ -6526,7 +6526,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:82 +#: guide.dbk:83 msgid "" "The other important dependency to understand is a conflicting dependency. It " "means that a package, when installed with another package, will not work and " @@ -6539,7 +6539,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:92 +#: guide.dbk:93 msgid "" "As an added complication there is the possibility for a package to pretend " "to be another package. Consider that exim and sendmail for many intents are " @@ -6552,7 +6552,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:102 +#: guide.dbk:103 msgid "" "At any given time a single dependency may be met by packages that are " "already installed or it may not be. APT attempts to help resolve dependency " @@ -6561,12 +6561,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><title> -#: guide.dbk:111 +#: guide.dbk:112 msgid "apt-get" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:113 +#: guide.dbk:114 msgid "" "<command>apt-get</command> provides a simple way to install packages from " "the command line. Unlike <command>dpkg</command>, <command>apt-get</command> " @@ -6575,14 +6575,14 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><para><footnote><para> -#: guide.dbk:119 +#: guide.dbk:120 msgid "" "If you are using an http proxy server you must set the http_proxy " "environment variable first, see sources.list(5)" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:119 +#: guide.dbk:120 msgid "" "The first <placeholder type=\"footnote\" id=\"0\"/> thing that should be " "done before using <command>apt-get</command> is to fetch the package lists " @@ -6591,7 +6591,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><screen> -#: guide.dbk:127 +#: guide.dbk:128 #, no-wrap msgid "" "# apt-get update\n" @@ -6602,17 +6602,17 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:134 +#: guide.dbk:135 msgid "Once updated there are several commands that can be used:" msgstr "" #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:138 +#: guide.dbk:139 msgid "upgrade" msgstr "" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:141 +#: guide.dbk:142 msgid "" "Upgrade will attempt to gently upgrade the whole system. Upgrade will never " "install a new package or remove an existing package, nor will it ever " @@ -6625,12 +6625,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:153 +#: guide.dbk:154 msgid "install" msgstr "" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:156 +#: guide.dbk:157 msgid "" "Install is used to install packages by name. The package is automatically " "fetched and installed. This can be useful if you already know the name of " @@ -6642,12 +6642,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><variablelist><varlistentry><term> -#: guide.dbk:167 +#: guide.dbk:168 msgid "dist-upgrade" msgstr "" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:170 +#: guide.dbk:171 msgid "" "Dist-upgrade is a complete upgrader designed to simplify upgrading between " "releases of Debian. It uses a sophisticated algorithm to determine the best " @@ -6660,14 +6660,14 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> -#: guide.dbk:180 +#: guide.dbk:181 msgid "" "It is important to closely look at what dist-upgrade is going to do, its " "decisions may sometimes be quite surprising." msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:187 +#: guide.dbk:188 msgid "" "<command>apt-get</command> has several command line options that are " "detailed in its man page, <citerefentry><refentrytitle>apt-get</" @@ -6681,12 +6681,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><title> -#: guide.dbk:199 +#: guide.dbk:200 msgid "DSelect" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:201 +#: guide.dbk:202 msgid "" "The APT <command>dselect</command> method provides the complete APT system " "with the <command>dselect</command> package selection GUI. <command>dselect</" @@ -6695,7 +6695,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:207 +#: guide.dbk:208 msgid "" "To enable the APT method you need to select [A]ccess in <command>dselect</" "command> and then choose the APT method. You will be prompted for a set of " @@ -6709,7 +6709,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><screen> -#: guide.dbk:218 +#: guide.dbk:219 #, no-wrap msgid "" " Set up a list of distribution source locations\n" @@ -6727,7 +6727,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:232 +#: guide.dbk:233 msgid "" "The <emphasis>Sources</emphasis> setup starts by asking for the base of the " "Debian archive, defaulting to a HTTP mirror. Next it asks for the " @@ -6735,7 +6735,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><screen> -#: guide.dbk:237 +#: guide.dbk:238 #, no-wrap msgid "" " Please give the distribution tag to get or a path to the\n" @@ -6746,7 +6746,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:244 +#: guide.dbk:245 msgid "" "The distribution refers to the Debian version in the archive, " "<emphasis>stable</emphasis> refers to the latest released version and " @@ -6758,7 +6758,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><screen> -#: guide.dbk:253 +#: guide.dbk:254 #, no-wrap msgid "" " Please give the components to get\n" @@ -6768,7 +6768,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:259 +#: guide.dbk:260 msgid "" "The components list refers to the list of sub distributions to fetch. The " "distribution is split up based on software licenses, main being DFSG free " @@ -6777,14 +6777,14 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:265 +#: guide.dbk:266 msgid "" "Any number of sources can be added, the setup script will continue to prompt " "until you have specified all that you want." msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:269 +#: guide.dbk:270 msgid "" "Before starting to use <command>dselect</command> it is necessary to update " "the available list by selecting [U]pdate from the menu. This is a superset " @@ -6794,7 +6794,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:276 +#: guide.dbk:277 msgid "" "You can then go on and make your selections using [S]elect and then perform " "the installation using [I]nstall. When using the APT method the [C]onfig and " @@ -6803,7 +6803,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:282 +#: guide.dbk:283 msgid "" "By default APT will automatically remove the package (.deb) files once they " "have been successfully installed. To change this behavior place " @@ -6811,12 +6811,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><title> -#: guide.dbk:288 +#: guide.dbk:289 msgid "The Interface" msgstr "" #. type: Content of: <book><chapter><para><footnote><para> -#: guide.dbk:292 +#: guide.dbk:293 msgid "" "The <command>dselect</command> method actually is a set of wrapper scripts " "to <command>apt-get</command>. The method actually provides more " @@ -6824,7 +6824,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><para> -#: guide.dbk:290 +#: guide.dbk:291 msgid "" "Both that APT <command>dselect</command> method and <command>apt-get</" "command> share the same interface. It is a simple system that generally " @@ -6835,12 +6835,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><title> -#: guide.dbk:301 +#: guide.dbk:302 msgid "Startup" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:303 +#: guide.dbk:304 msgid "" "Before all operations except update, APT performs a number of actions to " "prepare its internal state. It also does some checks of the system's state. " @@ -6849,7 +6849,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:309 +#: guide.dbk:310 #, no-wrap msgid "" "# apt-get check\n" @@ -6858,7 +6858,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:314 +#: guide.dbk:315 msgid "" "The first thing it does is read all the package files into memory. APT uses " "a caching scheme so this operation will be faster the second time it is run. " @@ -6867,7 +6867,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:320 +#: guide.dbk:321 msgid "" "The final operation performs a detailed analysis of the system's " "dependencies. It checks every dependency of every installed or unpacked " @@ -6876,7 +6876,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:326 +#: guide.dbk:327 #, no-wrap msgid "" "# apt-get check\n" @@ -6897,7 +6897,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:343 +#: guide.dbk:344 msgid "" "In this example the system has many problems, including a serious problem " "with libreadlineg2. For each package that has unmet dependencies a line is " @@ -6907,14 +6907,14 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para><footnote><para> -#: guide.dbk:352 +#: guide.dbk:353 msgid "" "APT however considers all known dependencies and attempts to prevent broken " "packages" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:350 +#: guide.dbk:351 msgid "" "There are two ways a system can get into a broken state like this. The first " "is caused by <command>dpkg</command> missing some subtle relationships " @@ -6925,7 +6925,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:359 +#: guide.dbk:360 msgid "" "The second situation is much less serious than the first because APT places " "certain constraints on the order that packages are installed. In both cases " @@ -6937,7 +6937,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:368 +#: guide.dbk:369 msgid "" "However, if the <literal>-f</literal> option is used to correct a seriously " "broken system caused by the first case then it is possible that it will " @@ -6947,12 +6947,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><title> -#: guide.dbk:376 +#: guide.dbk:377 msgid "The Status Report" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:378 +#: guide.dbk:379 msgid "" "Before proceeding <command>apt-get</command> will present a report on what " "will happen. Generally the report reflects the type of operation being " @@ -6963,12 +6963,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:385 +#: guide.dbk:386 msgid "The Extra Package list" msgstr "" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:387 +#: guide.dbk:388 #, no-wrap msgid "" "The following extra packages will be installed:\n" @@ -6980,7 +6980,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:395 +#: guide.dbk:396 msgid "" "The Extra Package list shows all of the packages that will be installed or " "upgraded in excess of the ones mentioned on the command line. It is only " @@ -6989,12 +6989,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:402 +#: guide.dbk:403 msgid "The Packages to Remove" msgstr "" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:404 +#: guide.dbk:405 #, no-wrap msgid "" "The following packages will be REMOVED:\n" @@ -7005,7 +7005,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:411 +#: guide.dbk:412 msgid "" "The Packages to Remove list shows all of the packages that will be removed " "from the system. It can be shown for any of the operations and should be " @@ -7017,12 +7017,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:421 +#: guide.dbk:422 msgid "The New Packages list" msgstr "" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:423 +#: guide.dbk:424 #, no-wrap msgid "" "The following NEW packages will installed:\n" @@ -7030,7 +7030,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:427 +#: guide.dbk:428 msgid "" "The New Packages list is simply a reminder of what will happen. The packages " "listed are not presently installed in the system but will be when APT is " @@ -7038,12 +7038,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:432 +#: guide.dbk:433 msgid "The Kept Back list" msgstr "" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:434 +#: guide.dbk:435 #, no-wrap msgid "" "The following packages have been kept back\n" @@ -7052,7 +7052,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:439 +#: guide.dbk:440 msgid "" "Whenever the whole system is being upgraded there is the possibility that " "new versions of packages cannot be installed because they require new things " @@ -7063,12 +7063,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:448 +#: guide.dbk:449 msgid "Held Packages warning" msgstr "" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:450 +#: guide.dbk:451 #, no-wrap msgid "" "The following held packages will be changed:\n" @@ -7076,7 +7076,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:454 +#: guide.dbk:455 msgid "" "Sometimes you can ask APT to install a package that is on hold, in such a " "case it prints out a warning that the held package is going to be changed. " @@ -7084,18 +7084,18 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><section><title> -#: guide.dbk:460 +#: guide.dbk:461 msgid "Final summary" msgstr "" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:462 +#: guide.dbk:463 msgid "" "Finally, APT will print out a summary of all the changes that will occur." msgstr "" #. type: Content of: <book><chapter><section><section><screen> -#: guide.dbk:465 +#: guide.dbk:466 #, no-wrap msgid "" "206 packages upgraded, 8 newly installed, 23 to remove and 51 not upgraded.\n" @@ -7104,7 +7104,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:470 +#: guide.dbk:471 msgid "" "The first line of the summary simply is a reduced version of all of the " "lists and includes the number of upgrades - that is packages already " @@ -7122,26 +7122,26 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><section><para> -#: guide.dbk:484 +#: guide.dbk:485 msgid "" "Some other reports can be generated by using the -u option to show packages " "to upgrade, they are similar to the previous examples." msgstr "" #. type: Content of: <book><chapter><section><title> -#: guide.dbk:491 +#: guide.dbk:492 msgid "The Status Display" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:493 +#: guide.dbk:494 msgid "" "During the download of archives and package files APT prints out a series of " "status messages." msgstr "" #. type: Content of: <book><chapter><section><screen> -#: guide.dbk:497 +#: guide.dbk:498 #, no-wrap msgid "" "# apt-get update\n" @@ -7154,7 +7154,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:506 +#: guide.dbk:507 msgid "" "The lines starting with <emphasis>Get</emphasis> are printed out when APT " "begins to fetch a file while the last line indicates the progress of the " @@ -7165,7 +7165,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:514 +#: guide.dbk:515 msgid "" "The next section of the status line is repeated once for each download " "thread and indicates the operation being performed and some useful " @@ -7178,7 +7178,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:524 +#: guide.dbk:525 msgid "" "Inside of the single quote is an informative string indicating the progress " "of the negotiation phase of the download. Typically it progresses from " @@ -7196,7 +7196,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:539 +#: guide.dbk:540 msgid "" "The status display updates every half second to provide a constant feedback " "on the download progress while the Get lines scroll back whenever a new file " @@ -7206,12 +7206,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><title> -#: guide.dbk:547 +#: guide.dbk:548 msgid "Dpkg" msgstr "" #. type: Content of: <book><chapter><section><para> -#: guide.dbk:549 +#: guide.dbk:550 msgid "" "APT uses <command>dpkg</command> for installing the archives and will switch " "over to the <command>dpkg</command> interface once downloading is completed. " @@ -7222,35 +7222,35 @@ msgid "" msgstr "" #. type: Content of: <book><title> -#: offline.dbk:10 +#: offline.dbk:11 msgid "Using APT Offline" msgstr "" #. type: Content of: <book><bookinfo><abstract><para> -#: offline.dbk:24 +#: offline.dbk:25 msgid "" "This document describes how to use APT in a non-networked environment, " "specifically a 'sneaker-net' approach for performing upgrades." msgstr "" #. type: Content of: <book><bookinfo> -#: offline.dbk:29 +#: offline.dbk:30 msgid "" "<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" msgstr "" #. type: Content of: <book><chapter><title> -#: offline.dbk:47 +#: offline.dbk:48 msgid "Introduction" msgstr "" #. type: Content of: <book><chapter><section><title> -#: offline.dbk:49 offline.dbk:79 offline.dbk:191 +#: offline.dbk:50 offline.dbk:80 offline.dbk:192 msgid "Overview" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:51 +#: offline.dbk:52 msgid "" "Normally APT requires direct access to a Debian archive, either from a local " "media or through a network. Another common complaint is that a Debian " @@ -7259,7 +7259,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:57 +#: offline.dbk:58 msgid "" "The solution to this is to use large removable media such as a Zip disc or a " "SuperDisk disc. These discs are not large enough to store the entire Debian " @@ -7273,7 +7273,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:68 +#: offline.dbk:69 msgid "" "This is achieved by creatively manipulating the APT configuration file. The " "essential premise to tell APT to look on a disc for it's archive files. Note " @@ -7282,12 +7282,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><title> -#: offline.dbk:77 +#: offline.dbk:78 msgid "Using APT on both machines" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:81 +#: offline.dbk:82 msgid "" "APT being available on both machines gives the simplest configuration. The " "basic idea is to place a copy of the status file on the disc and use the " @@ -7296,7 +7296,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:87 +#: offline.dbk:88 #, no-wrap msgid "" " /disc/\n" @@ -7310,12 +7310,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><title> -#: offline.dbk:98 +#: offline.dbk:99 msgid "The configuration file" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:100 +#: offline.dbk:101 msgid "" "The configuration file should tell APT to store its files on the disc and to " "use the configuration files on the disc as well. The sources.list should " @@ -7327,14 +7327,14 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:108 +#: offline.dbk:109 msgid "" "<emphasis>apt.conf</emphasis> must contain the necessary information to make " "APT use the disc:" msgstr "" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:112 +#: offline.dbk:113 #, no-wrap msgid "" " APT\n" @@ -7363,7 +7363,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:137 +#: offline.dbk:138 msgid "" "More details can be seen by examining the apt.conf man page and the sample " "configuration file in <emphasis>/usr/share/doc/apt/examples/apt.conf</" @@ -7371,7 +7371,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:142 +#: offline.dbk:143 msgid "" "On the target machine the first thing to do is mount the disc and copy " "<emphasis>/var/lib/dpkg/status</emphasis> to it. You will also need to " @@ -7382,7 +7382,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:151 +#: offline.dbk:152 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" @@ -7393,7 +7393,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:158 +#: offline.dbk:159 msgid "" "The dist-upgrade command can be replaced with any other standard APT " "commands, particularly dselect-upgrade. You can even use an APT front end " @@ -7402,14 +7402,14 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:164 +#: offline.dbk:165 msgid "" "Now the disc contains all of the index files and archives needed to upgrade " "the target machine. Take the disc back and run:" msgstr "" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:168 +#: offline.dbk:169 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" @@ -7420,14 +7420,14 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:175 +#: offline.dbk:176 msgid "" "It is necessary for proper function to re-specify the status file to be the " "local one. This is very important!" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:179 +#: offline.dbk:180 msgid "" "If you are using dselect you can do the very risky operation of copying disc/" "status to /var/lib/dpkg/status so that any selections you made on the remote " @@ -7437,12 +7437,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><title> -#: offline.dbk:189 +#: offline.dbk:190 msgid "Using APT and wget" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:193 +#: offline.dbk:194 msgid "" "<emphasis>wget</emphasis> is a popular and portable download tool that can " "run on nearly any machine. Unlike the method above this requires that the " @@ -7450,7 +7450,7 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:198 +#: offline.dbk:199 msgid "" "The basic idea is to create a disc that has only the archive files " "downloaded from the remote site. This is done by using the --print-uris " @@ -7459,20 +7459,20 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><title> -#: offline.dbk:204 +#: offline.dbk:205 #, fuzzy msgid "Operation" msgstr "Descrição" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:206 +#: offline.dbk:207 msgid "" "Unlike the previous technique no special configuration files are required. " "We merely use the standard APT commands to generate the file list." msgstr "" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:210 +#: offline.dbk:211 #, no-wrap msgid "" " # apt-get dist-upgrade\n" @@ -7482,14 +7482,14 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:216 +#: offline.dbk:217 msgid "" "Any command other than dist-upgrade could be used here, including dselect-" "upgrade." msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:220 +#: offline.dbk:221 msgid "" "The /disc/wget-script file will now contain a list of wget commands to " "execute in order to fetch the necessary archives. This script should be run " @@ -7498,12 +7498,12 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:226 +#: offline.dbk:227 msgid "The remote machine would do something like" msgstr "" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:229 +#: offline.dbk:230 #, no-wrap msgid "" " # cd /disc\n" @@ -7512,20 +7512,20 @@ msgid "" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:234 +#: offline.dbk:235 msgid "" "Once the archives are downloaded and the disc returned to the Debian machine " "installation can proceed using," msgstr "" #. type: Content of: <book><chapter><section><screen> -#: offline.dbk:238 +#: offline.dbk:239 #, no-wrap msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" msgstr "" #. type: Content of: <book><chapter><section><para> -#: offline.dbk:241 +#: offline.dbk:242 msgid "Which will use the already fetched archives on the disc." msgstr "" diff --git a/po/ar.po b/po/ar.po index f0eae549e..a77bcaf28 100644 --- a/po/ar.po +++ b/po/ar.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2006-10-20 21:28+0300\n" "Last-Translator: Ossama M. Khayat <okhayat@yahoo.com>\n" "Language-Team: Arabic <support@arabeyes.org>\n" @@ -19,3014 +19,3015 @@ msgstr "" "X-Poedit-SourceCharset: utf-8\n" "X-Generator: KBabel 1.11.4\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "نظام الحزم '%s' غير مدعوم" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Unable to read %s" -msgstr "تعذرت قراءة %s" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "الحزمة %s النسخة %s لها معتمد غير مستوفى:\n" -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "أسماء الحزم الكلية :" -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "" +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "أسماء الحزم الكلية :" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " الحزم العادية:" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr "الحزمة الوهمية تماماً:" -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "نظام الحزم '%s' غير مدعوم" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " الحزمة الوهمية المفردة:" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " الحزم الوهمية المختلطة:" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " مفقودة:" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "مجموع النسخ الفريدة:" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "" +#: cmdline/apt-cache.cc:327 +#, fuzzy +msgid "Total distinct descriptions: " +msgstr "مجموع النسخ الفريدة:" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "مجموع المعتمدات:" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "مجموع علاقات النسخ/الملفات:" -#: apt-pkg/indexcopy.cc:521 -#, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "MD5Sum غير متطابقة" +#: cmdline/apt-cache.cc:334 +#, fuzzy +msgid "Total Desc/File relations: " +msgstr "مجموع علاقات النسخ/الملفات:" -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "مجموع علاقات النسخ/الملفات:" -#: apt-pkg/acquire-worker.cc:118 -#, c-format -msgid "Is the package %s installed?" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " msgstr "" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " msgstr "" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "الرجاء إدخال القرص المُسمّى '%s' في السوّاقة '%s' وضغط مفتاح الإدخال." - -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " msgstr "" -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "قد يساعدك تنفيذ الأمر apt-get update في تصحيح هذه المشاكل" - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "تعذرت قراءة قائمة المصادر." +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "مجموع المساحة المحسوب حسابها:" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." msgstr "" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "لم يُعثر على أية حزم" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "" +#: cmdline/apt-cache.cc:1254 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "يجب أن تعطي صيغة واحدة بالضبط" -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "يعتمد" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "يعتمد مسبقاً" - -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "يستحسن" - -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "يقترح" - -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "يعارض" - -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "يستبدل" - -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "يُلغي" +msgid "Unable to locate package %s" +msgstr "تعذر العثور على الحزمة %s" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "ملفات الحزم:" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" msgstr "" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "مهم" - -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "مطلوب" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "الحزم المُدبّسة:" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "قياسي" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(غير موجود)" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "اختياري" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " مُثبّت:" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "إضافي" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " مرشّح: " -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(لاشيء)" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " msgstr "" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " جدول النسخ:" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "حدث خطأ أثناء معالجة %s (NewVersion1)" - -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s لـ%s %s مُجمّع على %s %s\n" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." +#: cmdline/apt-cache.cc:1749 +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" msgstr "" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "" +#: cmdline/apt-cdrom.cc:76 +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "الرجاء كتابة اسم لهذا القرص، مثال 'Debian 2.1r1 Disk 1'" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "الرجاء إدخال قرص في السواقة وضغط الزر enter" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "" +#: cmdline/apt-cdrom.cc:139 +#, fuzzy, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "فشل تغيير اسم %s إلى %s" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "قراءة قوائم الحزم" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "كرر هذه العملية لباقي الأقراص المدمجة في المجموعة." -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" msgstr "" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "تعذرت الكتابة إلى %s" - -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "تعذر العثور على الحزمة %s" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "تعذر العثور على الحزمة %s" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "تعذر العثور على الحزمة %s" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" +#: cmdline/apt-get.cc:367 +#, c-format +msgid "Picking '%s' as source package instead of '%s'\n" msgstr "" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" +#: cmdline/apt-get.cc:423 +#, c-format +msgid "Can not find version '%s' of package '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:454 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "فشل إعادة التسمية ، %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:163 -#, fuzzy -msgid "Hash Sum mismatch" -msgstr "MD5Sum غير متطابقة" +msgid "Couldn't find package %s" +msgstr "تعذر العثور على الحزمة %s" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "الحجم غير متطابق" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, fuzzy, c-format +msgid "%s set to manually installed.\n" +msgstr "إلا أنه سيتم تثبيت %s" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "عمليّة غير صالحة %s" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "إلا أنه سيتم تثبيت %s" -#: apt-pkg/acquire-item.cc:1573 -#, c-format +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-pkg/acquire-item.cc:1589 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "تعذر فتح ملف قاعدة البيانات %s: %s" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" msgstr "" -#: apt-pkg/acquire-item.cc:1669 -#, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "تعذر قَفْل دليل التنزيل" -#: apt-pkg/acquire-item.cc:1691 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "يجب تحديد حزمة واحدة على الأقل لجلب مصدرها" -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +msgid "Unable to find a source package for %s" +msgstr "تعذر العثور على مصدر الحزمة %s" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:786 #, c-format -msgid "GPG error: %s: %s" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:791 #, c-format msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: apt-pkg/acquire-item.cc:1925 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Skipping already downloaded file '%s'\n" +msgstr "تخطي الملف '%s' المنزل مسبقاً\n" -#: apt-pkg/acquire-item.cc:1983 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" +msgid "Couldn't determine free space in %s" +msgstr "تعذر حساب المساحة الحرة في %s" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "" +msgid "You don't have enough free space in %s" +msgstr "ليس هناك مساحة كافية في %s" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "List directory %spartial is missing." -msgstr "" - -#: apt-pkg/acquire.cc:91 -#, c-format -msgid "Archives directory %spartial is missing." -msgstr "" - -#: apt-pkg/acquire.cc:99 -#, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "تعذر قفل دليل القائمة" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "يجب جلب %sب/%sب من الأرشيفات المصدرية.\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "" +msgid "Need to get %sB of source archives.\n" +msgstr "يجب جلب %sب من الأرشيفات المصدريّة.\n" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Retrieving file %li of %li" -msgstr "" +msgid "Fetch source %s\n" +msgstr "إحضار المصدر %s\n" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "فشل إحضار %s %s\n" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "فشل إحضار بعض الأرشيفات." -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "اكتمل التنزيل وفي وضع التنزيل فقط" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" +#: cmdline/apt-get.cc:950 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:963 #, c-format -msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" -msgstr "" +msgid "Unpack command '%s' failed.\n" +msgstr "أمر فك الحزمة '%s' فشل.\n" -#: apt-pkg/policy.cc:422 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" +msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Did not understand pin type %s" +msgid "Build command '%s' failed.\n" +msgstr "أمر البناء '%s' فشل.\n" + +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" msgstr "" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" msgstr "" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "فشل إغلاق الملف %s" - -#: apt-pkg/packagemanager.cc:583 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +msgid "Unable to get build-dependency information for %s" msgstr "" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Line %u too long in source list %s." +msgid "%s has no build depends.\n" msgstr "" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "فك تركيب القرص المدمج...\n" - -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1272 #, c-format -msgid "Using CD-ROM mount point %s\n" +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" msgstr "" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "بانتظار القرص...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "تركيب القرص...\n" - -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "جاري التعرف..." - -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-get.cc:1290 #, c-format -msgid "Stored label: %s\n" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" +#: cmdline/apt-get.cc:1313 +#, c-format +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: apt-pkg/cdrom.cc:734 +#: cmdline/apt-get.cc:1352 #, c-format msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" -#: apt-pkg/cdrom.cc:744 +#: cmdline/apt-get.cc:1358 +#, c-format msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -#: apt-pkg/cdrom.cc:771 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Found label '%s'\n" +msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "هذا الاسم غير صالح، حاول مجدداً.\n" - -#: apt-pkg/cdrom.cc:817 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +msgid "Build-dependencies for %s could not be satisfied." msgstr "" -"هذا القرص مسمى: \n" -"'%s'\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "نسخ قوائم الحزم..." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "كتابة لائحة المصادر الجديدة\n" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" msgstr "" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "الاتصال بـ%s (%s)" -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "الوحدات المدعومة:" + +#: cmdline/apt-get.cc:1633 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "يجب تحديد حزمة واحدة على الأقل لجلب مصدرها" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "إلا أنها غير مثبتة" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -#, fuzzy -msgid "Reading state information" -msgstr "دمج المعلومات المتوفرة" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "إلا أنه سيتم تثبيت %s" -#: apt-pkg/depcache.cc:250 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format -msgid "Failed to open StateFile %s" -msgstr "فشل فتح %s" +msgid "%s was already set to automatically installed.\n" +msgstr "إلا أنه سيتم تثبيت %s" -#: apt-pkg/depcache.cc:256 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "فشلت كتابة الملف %s" +msgid "%s was already set on hold.\n" +msgstr "%s هي النسخة الأحدث.\n" -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s هي النسخة الأحدث.\n" -#: apt-pkg/tagfile.cc:237 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Unable to parse package file %s (2)" +msgid "Waited for %s but it wasn't there" msgstr "" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "تعذر العثور على الإصدارة '%s' للحزمة '%s'" - -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "تعذر العثور على النسخة '%s' للحزمة '%s'" - -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "تعذر العثور على الحزمة %s" - -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "تعذر العثور على الحزمة %s" - -#: apt-pkg/cacheset.cc:609 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "تعذر العثور على الحزمة %s" +msgid "%s set on hold.\n" +msgstr "إلا أنه سيتم تثبيت %s" -#: apt-pkg/cacheset.cc:615 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "تعذر العثور على الحزمة %s" +msgid "Canceled hold on %s.\n" +msgstr "فشل فتح %s" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format +#: cmdline/apt-mark.cc:392 msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -#: apt-pkg/cacheset.cc:655 +#: methods/cdrom.cc:203 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +msgid "Unable to read the cdrom database %s" +msgstr "تعذرت قراءة قاعدة بيانات القرص المدمج %s" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" msgstr "" +"الرجاء استخدام apt-cdrom لتعريف APT بهذا القرص المدمج. لا يمكن استخدام apt-" +"get update لإضافة أقراص مدمجة جديدة." -#: apt-pkg/indexrecords.cc:78 -#, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "تعذر فتح ملف قاعدة البيانات %s: %s" - -#: apt-pkg/indexrecords.cc:86 -#, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "لاحظ، تحديد %s بدلاً من %s\n" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "القرص المدمج الخطأ" -#: apt-pkg/indexrecords.cc:117 +#: methods/cdrom.cc:249 #, c-format -msgid "No Hash entry in Release file %s" -msgstr "" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "تعذر فكّ القرص المدمج من %s، إذ قد يكون لا يزال قيد الاستخدام." -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "لاحظ، تحديد %s بدلاً من %s\n" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "لم يُعثر على القرص." -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "تعذر فتح ملف قاعدة البيانات %s: %s" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "لم يُعثر على الملف" -#: apt-pkg/sourcelist.cc:127 -#, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "فشيل تنفيذ stat" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "فشل تعيين وقت التعديل" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" msgstr "" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "تسجيل الدخول" + +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" msgstr "" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" msgstr "" -#: apt-pkg/sourcelist.cc:193 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" +msgid "The server refused the connection and said: %s" +msgstr "رفض الخادم اتصالنا بالرد: %s" -#: apt-pkg/sourcelist.cc:206 +#: methods/ftp.cc:225 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "" +msgid "USER failed, server said: %s" +msgstr "فشل USER، ردّ الخادم: %s" -#: apt-pkg/sourcelist.cc:208 +#: methods/ftp.cc:232 #, c-format -msgid "Malformed line %lu in source list %s (dist)" +msgid "PASS failed, server said: %s" +msgstr "فشل PASS، ردّ الخادم: %s" + +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" +"تم تحديد خادم بروكسي ولكن دون نص تسجيل دخول برمجي، Acquire::ftp::ProxyLogin " +"فارغ." -#: apt-pkg/sourcelist.cc:211 +#: methods/ftp.cc:280 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "" +msgid "Login script command '%s' failed, server said: %s" +msgstr "فشل أمر نص تسجيل الدخول البرمجي '%s'، ردّ الخادم: %s" -#: apt-pkg/sourcelist.cc:217 +#: methods/ftp.cc:306 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" +msgid "TYPE failed, server said: %s" +msgstr "فشل TYPE، ردّ الخادم: %s" + +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "انتهى وقت الاتصال" + +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "أغلق الخادم الاتصال" + +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "خطأ في القراءة" + +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." msgstr "" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" msgstr "" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "فتح %s" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "خطأ في الكتابة" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" msgstr "" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" msgstr "" -#: apt-pkg/sourcelist.cc:416 -#, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "فشل" -#: apt-pkg/deb/dpkgpm.cc:95 -#, fuzzy, c-format -msgid "Installing %s" -msgstr "تم تثبيت %s" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "تهيئة %s" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "إزالة %s" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "تمت إزالة %s بالكامل" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:100 +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "تعذر إرسال الأمر PORT" + +#: methods/ftp.cc:802 #, c-format -msgid "Running post-installation trigger %s" +msgid "Unknown address family %u (AF_*)" msgstr "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#: methods/ftp.cc:811 #, c-format -msgid "Directory '%s' missing" +msgid "EPRT failed, server said: %s" +msgstr "فشل EPRT، ردّ الخادم: %s" + +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "فشل إغلاق الملف %s" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "تعذر قبول الاتصال" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "تحضير %s" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:990 +#: methods/ftp.cc:890 #, c-format -msgid "Unpacking %s" -msgstr "فتح %s" +msgid "Unable to fetch file, server said '%s'" +msgstr "تعذر إحضار الملف، ردّ الخادم '%s'" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "التحضير لتهيئة %s" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:997 +#: methods/ftp.cc:935 #, c-format -msgid "Installed %s" -msgstr "تم تثبيت %s" +msgid "Data transfer failed, server said '%s'" +msgstr "فشل نقل البيانات، ردّ الخادم '%s'" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "التحضير لإزالة %s" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "استعلام" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "تم إزالة %s" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1009 +#: methods/connect.cc:76 #, c-format -msgid "Preparing to completely remove %s" -msgstr "التحضير لإزالة %s بالكامل" +msgid "Connecting to %s (%s)" +msgstr "الاتصال بـ%s (%s)" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: methods/connect.cc:87 #, c-format -msgid "Completely removed %s" -msgstr "تمت إزالة %s بالكامل" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: methods/connect.cc:94 +#, c-format +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "تعذرت الكتابة إلى %s" +#: methods/connect.cc:100 +#, c-format +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "تعذر تمهيد الاتصال بـ%s:%s (%s)." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: methods/connect.cc:108 +#, c-format +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "تعذر الاتصال بـ%s:%s (%s)، انتهى وقت الاتصال" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: methods/connect.cc:126 +#, c-format +msgid "Could not connect to %s:%s (%s)." +msgstr "تعذر الاتصال بـ%s:%s (%s)." -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "" +msgid "Connecting to %s" +msgstr "الاتصال بـ%s" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" +#: methods/connect.cc:180 methods/connect.cc:199 +#, c-format +msgid "Could not resolve '%s'" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" +#: methods/connect.cc:205 +#, c-format +msgid "Temporary failure resolving '%s'" msgstr "" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" +#: methods/connect.cc:209 +#, c-format +msgid "System error resolving '%s:%s'" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +#: methods/connect.cc:211 +#, c-format +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" +#: methods/connect.cc:258 +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" +msgstr "تعذر الاتصال بـ%s %s:" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: methods/gpgv.cc:168 msgid "" -"No apport report written because the error message indicates a out of memory " -"error" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -#: apt-pkg/deb/debsystem.cc:91 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/deb/debsystem.cc:94 -#, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "تعذر قفل دليل القائمة" - -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" msgstr "" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" msgstr "" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "خطأ في الكتابة إلى الملف" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "خطأ في القراءة من الخادم. أقفل الطرف الآخر الاتصال" -#: apt-pkg/contrib/strutl.cc:1243 -#, c-format -msgid "Selection %s not found" -msgstr "تعذر العثور على التحديد %s" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "خطأ في القراءة من الخادم" -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "خطأ في الكتابة إلى الملف" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "فشل التحديد" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "انتهى وقت الاتصال" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "خطأ في الكتابة إلى ملف المُخرجات" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "بانتظار الترويسات" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "سطر ترويسة سيء" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "أرسل خادم http ترويسة ردّ غير صالحة" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" -msgstr "" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "أرسل خادم http ترويسة طول محتويات (ِContent-Length) غير صالحة" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "أرسل خادم http ترويسة مدى محتويات (ِContent-Range) غير صالحة" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "خادم http له دعم مدى معطوب" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "نسق تاريخ مجهول" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "بيانات ترويسة سيئة" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "خطأ في الكتابة" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "فشل الاتصال" -#: apt-pkg/contrib/fileutl.cc:913 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "مشكلة في إغلاق الملف" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "خطأ داخلي" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "فشل إغلاق الملف %s" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "خطأ داخلي، تم طلب InstallPackages مع وجود حزم معطوبة!" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "حزم بحاجة للإزالة لكن الإزالة مُعطّلة." -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "خطأ داخلي، لم تنته عملية الترتيب" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "خطأ في القراءة" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "يا للغرابة... لم تتطابق الأحجام، الرجاء مراسلة apt@packages.debian.org" -#: apt-pkg/contrib/fileutl.cc:1514 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "read, still have %llu to read but none left" -msgstr "" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "بحاجة إلى جلب %sب/%sب من الأرشيف.\n" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "" - -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "مشكلة في إغلاق الملف" +msgid "Need to get %sB of archives.\n" +msgstr "بحاجة إلى جلب %sب من الأرشيف.\n" -#: apt-pkg/contrib/fileutl.cc:1927 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "مشكلة في مزامنة الملف" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "بعد الاستخراج %sب من المساحة الإضافيّة سيتمّ استخدامها.\n" -#: apt-pkg/contrib/fileutl.cc:1938 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "مشكلة في إغلاق الملف" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "مشكلة في مزامنة الملف" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "بعد الاستخراج %sب من المساحة ستفرّغ.\n" -#: apt-pkg/contrib/progress.cc:148 +#: apt-private/private-install.cc:200 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... خطأ!" +msgid "You don't have enough free space in %s." +msgstr "ليس هناك مساحة كافية في %s." -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... تمّ" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "هناك مشاكل وتم استخدام -y دون --force-yes" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... تمّ" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "نعم، افعل ما أقوله!" -#: apt-pkg/contrib/mmap.cc:111 +#: apt-private/private-install.cc:222 #, c-format -msgid "Couldn't duplicate file descriptor %i" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"أنت على وشك أن تقوم بشيء ضارّ جداً\n" +"كي تستمر اكتب العبارة '%s'\n" +" ؟] " -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "تعذر التغيير إلى %s" - -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "تعذر فتح %s" - -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -#, fuzzy -msgid "Unable to synchronize mmap" -msgstr "تعذر إرسال الأمر PORT" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "إجهاض." -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "هل تريد الاستمرار؟" -#: apt-pkg/contrib/mmap.cc:322 -#, fuzzy -msgid "Failed to truncate file" -msgstr "فشلت كتابة الملف %s" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "فشل تنزيل بعض الملفات" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format +#: apt-private/private-install.cc:320 msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"تعذر إحضار بعض الأرشيف، ربما يمكنك محاولة تنفيذ apt-get update أو إضافة --" +"fix-missing؟" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing وتبديل الأوساط غير مدعومة حالياً" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "تعذر تصحيح الحزم المفقودة." + +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "إجهاض التثبيت." + +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "اختصار نوع مجهول: '%c'" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "قد تساعد المعلومات التالية في حل المشكلة:" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "فتح ملف التهيئة %s" +#: apt-private/private-install.cc:506 +#, fuzzy +msgid "Internal Error, AutoRemover broke stuff" +msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء" -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "" +#: apt-private/private-install.cc:513 +#, fuzzy +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "سيتم تثبيت الحزم الجديدة التالية:" +msgstr[1] "سيتم تثبيت الحزم الجديدة التالية:" -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "" +#: apt-private/private-install.cc:517 +#, fuzzy, c-format +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "سيتم تثبيت الحزم الجديدة التالية:" +msgstr[1] "سيتم تثبيت الحزم الجديدة التالية:" -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "" +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "قد ترغب بتشغيل 'apt-get -f install' لتصحيح هذه:" -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" +"مُعتمدات غير مستوفاة. جرب 'apt-get -f install' بدون أسماء حزم (أو حدّد حلاً)." -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." msgstr "" -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "حزم معطوبة" -#: apt-pkg/contrib/configuration.cc:900 -#, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "سيتم تثبيت الحزم الإضافيّة التالية:" -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "الحزم المقترحة:" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "إجهاض التثبيت." +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "الحزم المستحسنة:" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-private/private-install.cc:825 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "خيار سطر الأمر '%c' [من %s] مجهول." +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "تخطّي %s، حيث أنها مثبتة ولم يتمّ تعيين الترقية.\n" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "خيار سطر الأمر %s غير مفهوم" +#: apt-private/private-install.cc:829 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "تخطّي %s، حيث أنها مثبتة ولم يتمّ تعيين الترقية.\n" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-private/private-install.cc:841 #, c-format -msgid "Command line option %s is not boolean" -msgstr "" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "إعادة تثبيت %s غير ممكنة، حيث أنّه لا يمكن تنزيلها.\n" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-private/private-install.cc:846 #, c-format -msgid "Option %s requires an argument." -msgstr "الخيار %s يتطلّب مُعطى." +msgid "%s is already the newest version.\n" +msgstr "%s هي النسخة الأحدث.\n" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "" +#: apt-private/private-install.cc:894 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "النسخة المحددة %s (%s) للإصدارة %s\n" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "النسخة المحددة %s (%s) للإصدارة %s\n" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "الخيار '%s' طويل جداً" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "الحزمة %s غير مُثبّتة، لذلك لن تُزال\n" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "الحزمة %s غير مُثبّتة، لذلك لن تُزال\n" -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "عمليّة غير صالحة %s" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: cmdline/apt-cache.cc:149 +#: apt-private/private-list.cc:164 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "الحزمة %s النسخة %s لها معتمد غير مستوفى:\n" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "أسماء الحزم الكلية :" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "تصحيح المعتمدات..." -#: cmdline/apt-cache.cc:279 -#, fuzzy -msgid "Total package structures: " -msgstr "أسماء الحزم الكلية :" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " فشل." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " الحزم العادية:" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "لم يمكن تصحيح المعتمدات" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr "الحزمة الوهمية تماماً:" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "لم يمكن تقليص مجموعة الترقية" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " الحزمة الوهمية المفردة:" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " تم" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " الحزم الوهمية المختلطة:" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "قد ترغب بتنفيذ الأمر 'apt-get -f install' لتصحيح هذه." -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " مفقودة:" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "مُعتمدات غير مستوفاة. حاول استخدام -f." -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "مجموع النسخ الفريدة:" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:327 +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [مُثبّتة]" + +#: apt-private/private-output.cc:238 #, fuzzy -msgid "Total distinct descriptions: " -msgstr "مجموع النسخ الفريدة:" +msgid "[installed,local]" +msgstr " [مُثبّتة]" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "مجموع المعتمدات:" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "مجموع علاقات النسخ/الملفات:" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [مُثبّتة]" -#: cmdline/apt-cache.cc:334 +#: apt-private/private-output.cc:245 #, fuzzy -msgid "Total Desc/File relations: " -msgstr "مجموع علاقات النسخ/الملفات:" +msgid "[installed]" +msgstr " [مُثبّتة]" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "مجموع علاقات النسخ/الملفات:" +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "إلا أن %s مثبت" + +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "إلا أنه سيتم تثبيت %s" + +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "إلا أنه غير قابل للتثبيت" + +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "إلا أنها حزمة وهمية" + +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "إلا أنها غير مثبتة" + +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "إلا أنه لن يتم تثبيتها" + +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " أو" + +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" msgstr "" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "سيتم تثبيت الحزم الجديدة التالية:" + +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "سيتم إزالة الحزم التالية:" + +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "سيتم الإبقاء على الحزم التالية:" + +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "ستتم ترقية الحزم التالية:" + +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "سيتم تثبيط الحزم التالية:" + +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "سيتم تغيير الحزم المبقاة التالية:" + +#: apt-private/private-output.cc:668 +#, c-format +msgid "%s (due to %s) " +msgstr "%s (بسبب %s) " + +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" +"تحذير: ستتم إزالة الحزم الأساسية التالية.\n" +"لا يجب أن تقوم بهذا إلى إن كنت تعرف تماماً ما تقوم به!" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "مجموع المساحة المحسوب حسابها:" +#: apt-private/private-output.cc:707 +#, c-format +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu سيتم ترقيتها، %lu مثبتة حديثاً، " -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 +#: apt-private/private-output.cc:711 #, c-format -msgid "Package file %s is out of sync." +msgid "%lu reinstalled, " +msgstr "%lu أعيد تثبيتها، " + +#: apt-private/private-output.cc:713 +#, c-format +msgid "%lu downgraded, " +msgstr "%lu مثبطة، " + +#: apt-private/private-output.cc:715 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu لإزالتها و %lu لم يتم ترقيتها.\n" + +#: apt-private/private-output.cc:719 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "%lu غير مثبتة بالكامل أو مزالة.\n" + +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[Y/n]" + +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[y/N]" + +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "Y" + +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" msgstr "" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "لم يُعثر على أية حزم" +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 +#, c-format +msgid "Regex compilation error - %s" +msgstr "" -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "يجب أن تعطي صيغة واحدة بالضبط" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "لا يقبل الأمر update أية مُعطيات" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-private/private-update.cc:90 +#, c-format +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "ملفات الحزم:" +#: apt-private/private-show.cc:156 +#, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" msgstr "" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "الحزم المُدبّسة:" +#: apt-private/private-main.cc:32 +msgid "" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" +msgstr "" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(غير موجود)" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "تحذير: تعذرت المصادقة على الحزم التالية!" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " مُثبّت:" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "تم غض النظر عن تحذير المصادقة.\n" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " مرشّح: " +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "تعذرت المصادقة على بعض الحزم" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(لاشيء)" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "تثبيت هذه الحزم دون التحقق منها؟" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 +#, c-format +msgid "Failed to fetch %s %s\n" +msgstr "فشل إحضار %s %s\n" + +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "فشل تغيير اسم %s إلى %s" + +#: apt-private/private-sources.cc:70 +#, c-format +msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " جدول النسخ:" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 -#, fuzzy, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s لـ%s %s مُجمّع على %s %s\n" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "حساب الترقية..." -#: cmdline/apt-cache.cc:1749 +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "تمّ" + +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "" + +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "جلب:" + +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "تجاهل" + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "خطأ" + +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "جلب %sب في %s (%sب/ث)\n" + +#: apt-private/acqprogress.cc:236 +#, c-format +msgid " [Working]" +msgstr " [يعمل]" + +#: apt-private/acqprogress.cc:297 +#, c-format msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" +"تغيير الوسط: الرجاء إدخال القرص المُسمّى\n" +" '%s'\n" +"في السوّاقة '%s' وضغط مفتاح الإدخال\n" -#: cmdline/apt-cdrom.cc:76 -#, fuzzy -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "الرجاء كتابة اسم لهذا القرص، مثال 'Debian 2.1r1 Disk 1'" +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 +#, c-format +msgid "Unable to read %s" +msgstr "تعذرت قراءة %s" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "الرجاء إدخال قرص في السواقة وضغط الزر enter" +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 +#, c-format +msgid "Unable to change to %s" +msgstr "" -#: cmdline/apt-cdrom.cc:139 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 +#, c-format +msgid "No mirror file '%s' found " +msgstr "" + +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "فشل تغيير اسم %s إلى %s" +msgid "Can not read mirror file '%s'" +msgstr "فشل إغلاق الملف %s" + +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "فشل إغلاق الملف %s" + +#: methods/mirror.cc:445 +#, c-format +msgid "[Mirror: %s]" +msgstr "" + +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "إعداد افتراضيّ سيّء!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "اضغط مفتاح الإدخال للاستمرار." + +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "" + +#: dselect/install:102 +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "حدثت بعض الأخطاء أثناء فك الحزمة. سأقوم بتهيئة " + +#: dselect/install:103 +#, fuzzy +msgid "will be configured. This may result in duplicate errors" +msgstr "الحزم التي تم تثبيتها. قد يتسبب هذا بظهر أخطاء متكررة" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "أو أخطاء سبّبتها المُعتمدات المفقودة. لا بأس بهذا، فقط الأخطاء" -#: cmdline/apt-cdrom.cc:178 +#: dselect/install:105 msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "أعلى هذه الرسالة مهمّة. الرجاء تصحيحها وتشغيل التثبيت مجدداً" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "كرر هذه العملية لباقي الأقراص المدمجة في المجموعة." +#: dselect/update:30 +msgid "Merging available information" +msgstr "دمج المعلومات المتوفرة" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" msgstr "" -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" msgstr "" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "تعذر العثور على الحزمة %s" - -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "تعذر العثور على الحزمة %s" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "تعذر العثور على الحزمة %s" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "خطأ داخلي في AddDiversion" -#: cmdline/apt-get.cc:367 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "" -#: cmdline/apt-get.cc:423 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Can not find version '%s' of package '%s'" +msgid "Double add of diversion %s -> %s" msgstr "" -#: cmdline/apt-get.cc:454 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Couldn't find package %s" -msgstr "تعذر العثور على الحزمة %s" +msgid "Duplicate conf file %s/%s" +msgstr "ملف تهيئة مُزدوج %s/%s" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, fuzzy, c-format -msgid "%s set to manually installed.\n" -msgstr "إلا أنه سيتم تثبيت %s" +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" +msgstr "المسار %s طويل جداً" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "إلا أنه سيتم تثبيت %s" +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" +msgstr "فكّ تحزيم %s أكثر من مرّة" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" msgstr "" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" msgstr "" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "تعذر قَفْل دليل التنزيل" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "يجب تحديد حزمة واحدة على الأقل لجلب مصدرها" +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 +#, c-format +msgid "Failed to stat %s" +msgstr "" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Unable to find a source package for %s" -msgstr "تعذر العثور على مصدر الحزمة %s" +msgid "Failed to rename %s to %s" +msgstr "فشل تغيير اسم %s إلى %s" -#: cmdline/apt-get.cc:786 +#: apt-inst/extract.cc:249 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +msgid "The directory %s is being replaced by a non-directory" msgstr "" -#: cmdline/apt-get.cc:791 -#, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" msgstr "" -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "تخطي الملف '%s' المنزل مسبقاً\n" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "المسار طويل جداً" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-inst/extract.cc:421 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "تعذر حساب المساحة الحرة في %s" +msgid "Overwrite package match with no version for %s" +msgstr "" -#: cmdline/apt-get.cc:882 +#: apt-inst/extract.cc:438 #, c-format -msgid "You don't have enough free space in %s" -msgstr "ليس هناك مساحة كافية في %s" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: apt-inst/extract.cc:498 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "يجب جلب %sب/%sب من الأرشيفات المصدرية.\n" +msgid "Unable to stat %s" +msgstr "" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "يجب جلب %sب من الأرشيفات المصدريّة.\n" +msgid "Failed to write file %s" +msgstr "فشلت كتابة الملف %s" -#: cmdline/apt-get.cc:902 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Fetch source %s\n" -msgstr "إحضار المصدر %s\n" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "فشل إحضار بعض الأرشيفات." - -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "اكتمل التنزيل وفي وضع التنزيل فقط" +msgid "Failed to close file %s" +msgstr "فشل إغلاق الملف %s" -#: cmdline/apt-get.cc:950 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" +msgid "This is not a valid DEB archive, missing '%s' member" msgstr "" -#: cmdline/apt-get.cc:962 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "أمر فك الحزمة '%s' فشل.\n" +msgid "Internal error, could not locate member %s" +msgstr "خطأ داخلي، تعذر العثور على العضو %s" -#: cmdline/apt-get.cc:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" msgstr "" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "أمر البناء '%s' فشل.\n" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "توقيع الأرشيف غير صالح" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" msgstr "" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "توقيع الأرشيف غير صالح" + +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" msgstr "" -#: cmdline/apt-get.cc:1054 -#, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "الأرشيف قصير جداً" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "فشلت قراءة ترويسات الأرشيف" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" msgstr "" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "فشل تنفيذ gzip" + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "أرشيف فاسد" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "فشل تحقّق Checksum لملف Tar، الأرشيف فاسد" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Unable to get build-dependency information for %s" +msgid "Unknown TAR header type %u, member %s" msgstr "" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/install-progress.cc:57 #, c-format -msgid "%s has no build depends.\n" +msgid "Progress: [%3i%%]" msgstr "" -#: cmdline/apt-get.cc:1271 -#, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" msgstr "" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/init.cc:146 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +msgid "Packaging system '%s' is not supported" +msgstr "نظام الحزم '%s' غير مدعوم" + +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" msgstr "" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "Wrote %i records.\n" msgstr "" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" +msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "Build-dependencies for %s could not be satisfied." +msgid "Can't find authentication record for: %s" msgstr "" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "MD5Sum غير متطابقة" + +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." msgstr "" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "الاتصال بـ%s (%s)" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "قد يساعدك تنفيذ الأمر apt-get update في تصحيح هذه المشاكل" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "الوحدات المدعومة:" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "تعذرت قراءة قائمة المصادر." -#: cmdline/apt-get.cc:1632 -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" msgstr "" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "يجب تحديد حزمة واحدة على الأقل لجلب مصدرها" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" msgstr "" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" msgstr "" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "إلا أنها غير مثبتة" +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "" -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "إلا أنه سيتم تثبيت %s" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "إلا أنه سيتم تثبيت %s" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "يعتمد" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s هي النسخة الأحدث.\n" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "يعتمد مسبقاً" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s هي النسخة الأحدث.\n" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "يستحسن" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "إلا أنه سيتم تثبيت %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "يقترح" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "فشل فتح %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "يعارض" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "يستبدل" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "يُلغي" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" msgstr "" -#: methods/cdrom.cc:203 -#, c-format -msgid "Unable to read the cdrom database %s" -msgstr "تعذرت قراءة قاعدة بيانات القرص المدمج %s" - -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" msgstr "" -"الرجاء استخدام apt-cdrom لتعريف APT بهذا القرص المدمج. لا يمكن استخدام apt-" -"get update لإضافة أقراص مدمجة جديدة." - -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "القرص المدمج الخطأ" - -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "تعذر فكّ القرص المدمج من %s، إذ قد يكون لا يزال قيد الاستخدام." - -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "لم يُعثر على القرص." -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "لم يُعثر على الملف" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "مهم" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "فشيل تنفيذ stat" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "مطلوب" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "فشل تعيين وقت التعديل" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "قياسي" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "اختياري" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "تسجيل الدخول" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "إضافي" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." msgstr "" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" +#: apt-pkg/acquire-worker.cc:118 +#, c-format +msgid "Is the package %s installed?" msgstr "" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "رفض الخادم اتصالنا بالرد: %s" +msgid "Method %s did not start correctly" +msgstr "" -#: methods/ftp.cc:225 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "USER failed, server said: %s" -msgstr "فشل USER، ردّ الخادم: %s" +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "الرجاء إدخال القرص المُسمّى '%s' في السوّاقة '%s' وضغط مفتاح الإدخال." -#: methods/ftp.cc:232 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "PASS failed, server said: %s" -msgstr "فشل PASS، ردّ الخادم: %s" +msgid "Index file type '%s' is not supported" +msgstr "" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" msgstr "" -"تم تحديد خادم بروكسي ولكن دون نص تسجيل دخول برمجي، Acquire::ftp::ProxyLogin " -"فارغ." -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "فشل أمر نص تسجيل الدخول البرمجي '%s'، ردّ الخادم: %s" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "" -#: methods/ftp.cc:306 -#, c-format -msgid "TYPE failed, server said: %s" -msgstr "فشل TYPE، ردّ الخادم: %s" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "انتهى وقت الاتصال" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +#, fuzzy +msgid "Reading state information" +msgstr "دمج المعلومات المتوفرة" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "أغلق الخادم الاتصال" +#: apt-pkg/depcache.cc:250 +#, fuzzy, c-format +msgid "Failed to open StateFile %s" +msgstr "فشل فتح %s" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "" +#: apt-pkg/depcache.cc:256 +#, fuzzy, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "فشلت كتابة الملف %s" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "" +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "فشل إعادة التسمية ، %s (%s -> %s)." -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "" +#: apt-pkg/acquire-item.cc:163 +#, fuzzy +msgid "Hash Sum mismatch" +msgstr "MD5Sum غير متطابقة" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "الحجم غير متطابق" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "فشل" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "عمليّة غير صالحة %s" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." +#: apt-pkg/acquire-item.cc:1573 +#, c-format +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "" +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "تعذر فتح ملف قاعدة البيانات %s: %s" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" msgstr "" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" +#: apt-pkg/acquire-item.cc:1669 +#, c-format +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "تعذر إرسال الأمر PORT" - -#: methods/ftp.cc:802 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Unknown address family %u (AF_*)" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: methods/ftp.cc:811 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "فشل EPRT، ردّ الخادم: %s" +msgid "GPG error: %s: %s" +msgstr "" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" +#: apt-pkg/acquire-item.cc:1859 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" msgstr "" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "تعذر قبول الاتصال" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" -#: methods/ftp.cc:890 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "نظام الحزم '%s' غير مدعوم" + +#: apt-pkg/clean.cc:64 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "تعذر إحضار الملف، ردّ الخادم '%s'" +msgid "Unable to stat %s." +msgstr "" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" msgstr "" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "فشل نقل البيانات، ردّ الخادم '%s'" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "حدث خطأ أثناء معالجة %s (NewVersion1)" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "استعلام" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" -#: methods/connect.cc:76 -#, c-format -msgid "Connecting to %s (%s)" -msgstr "الاتصال بـ%s (%s)" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "" -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "" -#: methods/connect.cc:94 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgid "Package %s %s was not found while processing file dependencies" msgstr "" -#: methods/connect.cc:100 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "تعذر تمهيد الاتصال بـ%s:%s (%s)." +msgid "Couldn't stat source package list %s" +msgstr "" -#: methods/connect.cc:108 -#, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "تعذر الاتصال بـ%s:%s (%s)، انتهى وقت الاتصال" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "قراءة قوائم الحزم" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "تعذر الاتصال بـ%s:%s (%s)." +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "Connecting to %s" -msgstr "الاتصال بـ%s" +msgid "Unable to write to %s" +msgstr "تعذرت الكتابة إلى %s" -#: methods/connect.cc:180 methods/connect.cc:199 -#, c-format -msgid "Could not resolve '%s'" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" msgstr "" -#: methods/connect.cc:205 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Temporary failure resolving '%s'" +msgid "Vendor block %s contains no fingerprint" msgstr "" -#: methods/connect.cc:209 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 #, c-format -msgid "System error resolving '%s:%s'" +msgid "List directory %spartial is missing." msgstr "" -#: methods/connect.cc:211 +#: apt-pkg/acquire.cc:91 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgid "Archives directory %spartial is missing." msgstr "" -#: methods/connect.cc:258 +#: apt-pkg/acquire.cc:99 #, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "تعذر الاتصال بـ%s %s:" +msgid "Unable to lock directory %s" +msgstr "تعذر قفل دليل القائمة" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" msgstr "" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" msgstr "" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "" + +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" +#: apt-pkg/policy.cc:422 +#, c-format +msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" msgstr "" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" msgstr "" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "خطأ في الكتابة إلى الملف" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "خطأ في القراءة من الخادم. أقفل الطرف الآخر الاتصال" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "خطأ في القراءة من الخادم" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "خطأ في الكتابة إلى الملف" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "فشل التحديد" - -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "انتهى وقت الاتصال" - -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "خطأ في الكتابة إلى ملف المُخرجات" - -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "بانتظار الترويسات" - -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "سطر ترويسة سيء" - -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "أرسل خادم http ترويسة ردّ غير صالحة" - -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "أرسل خادم http ترويسة طول محتويات (ِContent-Length) غير صالحة" - -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "أرسل خادم http ترويسة مدى محتويات (ِContent-Range) غير صالحة" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "فشل إغلاق الملف %s" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "خادم http له دعم مدى معطوب" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "نسق تاريخ مجهول" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "بيانات ترويسة سيئة" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "فك تركيب القرص المدمج...\n" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "فشل الاتصال" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "خطأ داخلي" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "بانتظار القرص...\n" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "حساب الترقية..." +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "تركيب القرص...\n" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "تمّ" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "جاري التعرف..." -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" msgstr "" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "تصحيح المعتمدات..." - -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " فشل." - -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "لم يمكن تصحيح المعتمدات" - -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "لم يمكن تقليص مجموعة الترقية" +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " تم" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "قد ترغب بتنفيذ الأمر 'apt-get -f install' لتصحيح هذه." +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "مُعتمدات غير مستوفاة. حاول استخدام -f." +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "هذا الاسم غير صالح، حاول مجدداً.\n" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" +"هذا القرص مسمى: \n" +"'%s'\n" -#: apt-private/private-output.cc:234 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [مُثبّتة]" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "نسخ قوائم الحزم..." -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [مُثبّتة]" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "كتابة لائحة المصادر الجديدة\n" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" msgstr "" -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [مُثبّتة]" - -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [مُثبّتة]" - -#: apt-private/private-output.cc:249 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "[upgradable from: %s]" +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -#: apt-private/private-output.cc:435 -#, c-format -msgid "but %s is installed" -msgstr "إلا أن %s مثبت" - -#: apt-private/private-output.cc:437 -#, c-format -msgid "but %s is to be installed" -msgstr "إلا أنه سيتم تثبيت %s" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "إلا أنه غير قابل للتثبيت" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "إلا أنها حزمة وهمية" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "إلا أنها غير مثبتة" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "إلا أنه لن يتم تثبيتها" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " أو" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" +#: apt-pkg/tagfile.cc:140 +#, c-format +msgid "Unable to parse package file %s (1)" msgstr "" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "سيتم تثبيت الحزم الجديدة التالية:" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "سيتم إزالة الحزم التالية:" +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "تعذر فتح ملف قاعدة البيانات %s: %s" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "سيتم الإبقاء على الحزم التالية:" +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "لاحظ، تحديد %s بدلاً من %s\n" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "ستتم ترقية الحزم التالية:" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "سيتم تثبيط الحزم التالية:" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "لاحظ، تحديد %s بدلاً من %s\n" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "سيتم تغيير الحزم المبقاة التالية:" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "تعذر فتح ملف قاعدة البيانات %s: %s" -#: apt-private/private-output.cc:668 +#: apt-pkg/sourcelist.cc:127 #, c-format -msgid "%s (due to %s) " -msgstr "%s (بسبب %s) " - -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "" -"تحذير: ستتم إزالة الحزم الأساسية التالية.\n" -"لا يجب أن تقوم بهذا إلى إن كنت تعرف تماماً ما تقوم به!" -#: apt-private/private-output.cc:707 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu سيتم ترقيتها، %lu مثبتة حديثاً، " +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "" -#: apt-private/private-output.cc:711 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu أعيد تثبيتها، " +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "" -#: apt-private/private-output.cc:713 +#: apt-pkg/sourcelist.cc:184 #, c-format -msgid "%lu downgraded, " -msgstr "%lu مثبطة، " +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "" -#: apt-private/private-output.cc:715 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu لإزالتها و %lu لم يتم ترقيتها.\n" +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "" -#: apt-private/private-output.cc:719 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu غير مثبتة بالكامل أو مزالة.\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[Y/n]" - -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[y/N]" - -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "Y" - -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "لا يقبل الأمر update أية مُعطيات" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "" -#: apt-private/private-update.cc:90 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" msgstr "" -#: apt-private/private-show.cc:156 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "خطأ داخلي، تم طلب InstallPackages مع وجود حزم معطوبة!" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "فتح %s" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "حزم بحاجة للإزالة لكن الإزالة مُعطّلة." +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "خطأ داخلي، لم تنته عملية الترتيب" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "يا للغرابة... لم تتطابق الأحجام، الرجاء مراسلة apt@packages.debian.org" +#: apt-pkg/sourcelist.cc:416 +#, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "بحاجة إلى جلب %sب/%sب من الأرشيف.\n" +msgid "Release '%s' for '%s' was not found" +msgstr "تعذر العثور على الإصدارة '%s' للحزمة '%s'" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "بحاجة إلى جلب %sب من الأرشيف.\n" +msgid "Version '%s' for '%s' was not found" +msgstr "تعذر العثور على النسخة '%s' للحزمة '%s'" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/cacheset.cc:603 #, fuzzy, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "بعد الاستخراج %sب من المساحة الإضافيّة سيتمّ استخدامها.\n" +msgid "Couldn't find task '%s'" +msgstr "تعذر العثور على الحزمة %s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/cacheset.cc:609 #, fuzzy, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "بعد الاستخراج %sب من المساحة ستفرّغ.\n" - -#: apt-private/private-install.cc:200 -#, c-format -msgid "You don't have enough free space in %s." -msgstr "ليس هناك مساحة كافية في %s." +msgid "Couldn't find any package by regex '%s'" +msgstr "تعذر العثور على الحزمة %s" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "هناك مشاكل وتم استخدام -y دون --force-yes" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "تعذر العثور على الحزمة %s" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "نعم، افعل ما أقوله!" - -#: apt-private/private-install.cc:222 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 #, c-format msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"أنت على وشك أن تقوم بشيء ضارّ جداً\n" -"كي تستمر اكتب العبارة '%s'\n" -" ؟] " -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "إجهاض." +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "هل تريد الاستمرار؟" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "فشل تنزيل بعض الملفات" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" msgstr "" -"تعذر إحضار بعض الأرشيف، ربما يمكنك محاولة تنفيذ apt-get update أو إضافة --" -"fix-missing؟" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing وتبديل الأوساط غير مدعومة حالياً" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "تعذر تصحيح الحزم المفقودة." +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "إجهاض التثبيت." +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "تعذر العثور على التحديد %s" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" msgstr "" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" msgstr "" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" msgstr "" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "قد تساعد المعلومات التالية في حل المشكلة:" - -#: apt-private/private-install.cc:506 -#, fuzzy -msgid "Internal Error, AutoRemover broke stuff" -msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء" - -#: apt-private/private-install.cc:513 -#, fuzzy -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "سيتم تثبيت الحزم الجديدة التالية:" -msgstr[1] "سيتم تثبيت الحزم الجديدة التالية:" - -#: apt-private/private-install.cc:517 -#, fuzzy, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "سيتم تثبيت الحزم الجديدة التالية:" -msgstr[1] "سيتم تثبيت الحزم الجديدة التالية:" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "" -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "قد ترغب بتشغيل 'apt-get -f install' لتصحيح هذه:" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -"مُعتمدات غير مستوفاة. جرب 'apt-get -f install' بدون أسماء حزم (أو حدّد حلاً)." -#: apt-private/private-install.cc:638 +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "حزم معطوبة" - -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "سيتم تثبيت الحزم الإضافيّة التالية:" - -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "الحزم المقترحة:" - -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "الحزم المستحسنة:" - -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "تخطّي %s، حيث أنها مثبتة ولم يتمّ تعيين الترقية.\n" +msgid "Sub-process %s received a segmentation fault." +msgstr "" -#: apt-private/private-install.cc:829 -#, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "تخطّي %s، حيث أنها مثبتة ولم يتمّ تعيين الترقية.\n" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "إعادة تثبيت %s غير ممكنة، حيث أنّه لا يمكن تنزيلها.\n" +msgid "Sub-process %s returned an error code (%u)" +msgstr "" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s هي النسخة الأحدث.\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:913 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "النسخة المحددة %s (%s) للإصدارة %s\n" +msgid "Problem closing the gzip file %s" +msgstr "مشكلة في إغلاق الملف" -#: apt-private/private-install.cc:899 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "النسخة المحددة %s (%s) للإصدارة %s\n" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "الحزمة %s غير مُثبّتة، لذلك لن تُزال\n" +msgid "Could not open file descriptor %d" +msgstr "فشل إغلاق الملف %s" -#: apt-private/private-install.cc:947 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "الحزمة %s غير مُثبّتة، لذلك لن تُزال\n" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " msgstr "" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "تحذير: تعذرت المصادقة على الحزم التالية!" +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "تم غض النظر عن تحذير المصادقة.\n" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "تعذرت المصادقة على بعض الحزم" +#: apt-pkg/contrib/fileutl.cc:1915 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "مشكلة في إغلاق الملف" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "تثبيت هذه الحزم دون التحقق منها؟" +#: apt-pkg/contrib/fileutl.cc:1927 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "مشكلة في مزامنة الملف" -#: apt-private/private-sources.cc:58 +#: apt-pkg/contrib/fileutl.cc:1938 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "فشل تغيير اسم %s إلى %s" +msgid "Problem unlinking the file %s" +msgstr "مشكلة في إغلاق الملف" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "مشكلة في مزامنة الملف" + +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +msgid "%c%s... Error!" +msgstr "%c%s... خطأ!" + +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... تمّ" + +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... تمّ" + +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" msgstr "" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "جلب:" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "تعذر التغيير إلى %s" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "تجاهل" +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "تعذر فتح %s" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "خطأ" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "تعذر إرسال الأمر PORT" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "جلب %sب في %s (%sب/ث)\n" +msgid "Couldn't make mmap of %lu bytes" +msgstr "" -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [يعمل]" +#: apt-pkg/contrib/mmap.cc:322 +#, fuzzy +msgid "Failed to truncate file" +msgstr "فشلت كتابة الملف %s" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/mmap.cc:341 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -"تغيير الوسط: الرجاء إدخال القرص المُسمّى\n" -" '%s'\n" -"في السوّاقة '%s' وضغط مفتاح الإدخال\n" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "No mirror file '%s' found " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "فشل إغلاق الملف %s" - -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "فشل إغلاق الملف %s" - -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" msgstr "" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" msgstr "" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "إعداد افتراضيّ سيّء!" +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "اختصار نوع مجهول: '%c'" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "اضغط مفتاح الإدخال للاستمرار." +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "فتح ملف التهيئة %s" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." msgstr "" -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "حدثت بعض الأخطاء أثناء فك الحزمة. سأقوم بتهيئة " - -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "الحزم التي تم تثبيتها. قد يتسبب هذا بظهر أخطاء متكررة" - -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "أو أخطاء سبّبتها المُعتمدات المفقودة. لا بأس بهذا، فقط الأخطاء" - -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "أعلى هذه الرسالة مهمّة. الرجاء تصحيحها وتشغيل التثبيت مجدداً" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "" -#: dselect/update:30 -msgid "Merging available information" -msgstr "دمج المعلومات المتوفرة" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" msgstr "" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" msgstr "" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "خطأ داخلي في AddDiversion" - -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/configuration.cc:897 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/configuration.cc:900 #, c-format -msgid "Double add of diversion %s -> %s" +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/configuration.cc:950 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "ملف تهيئة مُزدوج %s/%s" +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "إجهاض التثبيت." + +#: apt-pkg/contrib/cmndline.cc:121 #, c-format -msgid "The path %s is too long" -msgstr "المسار %s طويل جداً" +msgid "Command line option '%c' [from %s] is not known." +msgstr "خيار سطر الأمر '%c' [من %s] مجهول." -#: apt-inst/extract.cc:132 +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 #, c-format -msgid "Unpacking %s more than once" -msgstr "فكّ تحزيم %s أكثر من مرّة" +msgid "Command line option %s is not understood" +msgstr "خيار سطر الأمر %s غير مفهوم" -#: apt-inst/extract.cc:142 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format -msgid "The directory %s is diverted" +msgid "Command line option %s is not boolean" msgstr "" -#: apt-inst/extract.cc:152 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "" +msgid "Option %s requires an argument." +msgstr "الخيار %s يتطلّب مُعطى." -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Failed to stat %s" +msgid "Option %s requires an integer argument, not '%s'" msgstr "" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Failed to rename %s to %s" -msgstr "فشل تغيير اسم %s إلى %s" +msgid "Option '%s' is too long" +msgstr "الخيار '%s' طويل جداً" -#: apt-inst/extract.cc:249 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "The directory %s is being replaced by a non-directory" +msgid "Sense %s is not understood, try true or false." msgstr "" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "عمليّة غير صالحة %s" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "المسار طويل جداً" +#: apt-pkg/deb/dpkgpm.cc:95 +#, fuzzy, c-format +msgid "Installing %s" +msgstr "تم تثبيت %s" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "Overwrite package match with no version for %s" +msgid "Configuring %s" +msgstr "تهيئة %s" + +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "إزالة %s" + +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "تمت إزالة %s بالكامل" + +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" msgstr "" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "File %s/%s overwrites the one in the package %s" +msgid "Running post-installation trigger %s" msgstr "" -#: apt-inst/extract.cc:498 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "Unable to stat %s" +msgid "Directory '%s' missing" msgstr "" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "فشل إغلاق الملف %s" + +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Failed to write file %s" -msgstr "فشلت كتابة الملف %s" +msgid "Preparing %s" +msgstr "تحضير %s" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Failed to close file %s" -msgstr "فشل إغلاق الملف %s" +msgid "Unpacking %s" +msgstr "فتح %s" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "" +msgid "Preparing to configure %s" +msgstr "التحضير لتهيئة %s" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "خطأ داخلي، تعذر العثور على العضو %s" +msgid "Installed %s" +msgstr "تم تثبيت %s" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "التحضير لإزالة %s" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "توقيع الأرشيف غير صالح" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "تم إزالة %s" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "التحضير لإزالة %s بالكامل" + +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "تمت إزالة %s بالكامل" + +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-inst/contrib/arfile.cc:96 +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "توقيع الأرشيف غير صالح" +msgid "Can not write log (%s)" +msgstr "تعذرت الكتابة إلى %s" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "الأرشيف قصير جداً" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "فشلت قراءة ترويسات الأرشيف" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" msgstr "" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "فشل تنفيذ gzip" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "أرشيف فاسد" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "فشل تحقّق Checksum لملف Tar، الأرشيف فاسد" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "تعذر قفل دليل القائمة" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" msgstr "" #: cmdline/apt-extracttemplates.cc:224 diff --git a/po/ast.po b/po/ast.po index 17f833ade..441148cb7 100644 --- a/po/ast.po +++ b/po/ast.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.18\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2010-10-02 23:35+0100\n" "Last-Translator: Iñigo Varela <ivarela@softastur.org>\n" "Language-Team: Asturian (ast)\n" @@ -15,3206 +15,3207 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Virtaal 0.5.2\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "La triba de ficheru d'indiz '%s' nun ta sofitada" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "Nun ye a lleer %s" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Nun se pudo cambiar a %s" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "Nun pudo lleese %s." - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" - -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Executando dpkt" - -#: apt-pkg/init.cc:146 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "El sistema d'empaquetáu '%s' nun ta sofitáu" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Nun pudo determinase una triba de sistema d'empaquetáu afayadiza" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "El paquete %s versión %s nun cumple una dependencia:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "%i rexistros escritos.\n" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Total de nomes de paquetes: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "%i rexistros escritos con %i ficheros de menos.\n" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Total de cadarmes de paquetes: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "%i rexistros escritos con %i ficheros mal empareyaos\n" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Paquetes normales: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"Escribiéronse %i rexistros con %i ficheros perdíos y %i ficheros que nun " -"concasen\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Paquetes virtuales puros: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "Nun puede alcontrase'l rexistru d'autenticación pa: %s" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Paquetes virtuales cenciellos: " -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "El hash nun concasa pa: %s" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Paquetes virtuales amestaos: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Nun pudo alncontrase'l controlador de métodu %s." +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Falten: " -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Comprueba qu'el paquete 'dpkg-dev' ta instaláu.\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Versiones distintes en total: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "El métodu %s nun entamó correchamente" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Descripciones distintes en total: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Por favor, introduz el discu '%s' nel preséu '%s' y calca Intro." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Dependencies totales: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "" -"Nun pudieron analizase o abrise les llistes de paquetes o el ficheru d'estáu." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Rellaciones versión/ficheru en total: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Has d'executar apt-get update pa iguar estos problemes" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Rellaciones descripción/ficheru en total: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Nun pudo lleese la llista de fontes." +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Mapes de provisiones en total: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Caché de paquetes balera." +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Cadenes globalizaes en total: " -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "El ficheru de caché de paquetes ta tollíu" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Espaciu de dependencies de versión en total: " -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "El ficheru de caché de paquetes ye una versión incompatible" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Espaciu ociosu en total: " -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "El ficheru de caché de paquetes ta tollíu" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Informe del total d'espaciu: " -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Esti APT nun soporta'l sistema de versiones '%s'" +msgid "Package file %s is out of sync." +msgstr "El ficheru de paquetes %s nun ta sincronizáu." -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "La caché de paquetes creóse pa una arquitectura estremada" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Nun s'alcontraron paquetes" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Depende de" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Has de dar polo menos un patrón de gueta" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Predepende de" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Suxer" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "Nun pue alcontrase'l paquete %s" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Recomienda" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Ficheros de paquete:" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "En conflictu con" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" +"La caché nun ta sincronizada, nun puede facese x-ref a un ficheru de paquete" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Sustituye a" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Paquetes na chincheta:" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Fai obsoletu a" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(nun s'alcontró)" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Ruempe" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Instaláu: " -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Aumenta" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Candidatu: " -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "importante" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(dengún)" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "requeríu" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Chincheta de paquetes: " -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "estándar" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Tabla de versiones:" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opcional" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s pa %s compiláu en %s %s\n" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Usu: apt-cache [opciones] orde\n" +" apt-cache [opciones] add ficheru1 [ficheru2 ...]\n" +" apt-cache [opciones] showpkg paq1 [paq2 ...]\n" +" apt-cache [opciones] showsrc paq1 [paq2 ...]\n" +"\n" +"apt-cache ye una ferramienta de baxu nivel usada pa remanar\n" +"ficheros de caché binarios d'APT y consultar información d'ellos\n" +"\n" +"Ordes:\n" +" add - Amesta un ficheru de paquete a la caché fonte\n" +" gencaches - Creal dambes cachés, la de paquetes y la de fontes\n" +" showpkg - Amuesa algo d'información xeneral d'un sólu paquete\n" +" showsrc - Amuesa los rexistros de fonte\n" +" stats - Amuesa dalgunes estadístiques básiques\n" +" dump - Amuesa'l ficheru ensembre en formatu tersu\n" +" dumpavail - Imprenta un ficheru disponible na salida estándar\n" +" unmet - Amuesa dependencies nun atopáes\n" +" search - Restola na llista de paquetes por el patrón d'una espresión " +"regular\n" +" show - Amuesa un rexistru lleíble pal paquete\n" +" showauto - Amouesa una llista de paquetes instalaos automáticamente\n" +" depends - Amuesa la información de dependencies en bruto d'un paquete\n" +" rdepends - Amuesa la información de dependencies inverses d'un paquete\n" +" pkgnames - Llista los nomes de tolos paquetes nel sistema\n" +" dotty - Xenera gráfiques del paquete pa GraphViz\n" +" xvcg - Xenera gráfiques del paquete pa xvcg\n" +" policy - Amuesa los axustes de les normes\n" +"\n" +"Opciones:\n" +" -h Esti testu d'aida.\n" +" -p=? La cache de paquetes.\n" +" -s=? La cache de fontes.\n" +" -q Desactiva l'indicador de progresu.\n" +" -i Amuesa sólo les dependencies importantes de la orde incumplida.\n" +" -c=? Lleer esti ficheru de configuración\n" +" -o=? Conseña una opción de configuración arbitraria, ex -o dir::cache=/" +"tmp\n" +"Ver les páxines del manual apt-cache(8) y apt.conf(5) pa más información.\n" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "La triba de ficheru d'indiz '%s' nun ta sofitada" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Da-y un nome a esti discu, como 'Debian 5.0.3 Discu 1'" + +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Inxerta un discu nel preséu y calca intro" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Regex compilation error - %s" -msgstr "Error de compilación d'espresión regular - %s" +msgid "Failed to mount '%s' to '%s'" +msgstr "Falló al montar '%s' a '%s'" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "La caché tien un sistema de versiones incompatible" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Hebo un error al procesar %s (FindPkg)" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Repite'l procesu colos demás CDs del conxuntu." -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" -"Coime, perpasaste'l númberu de nomes de paquete qu'esti APT ye a remanar." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumentos non empareyaos" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Vaya, perpasaste'l númberu de versiones coles que puede esti APT." +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"Usu: apt-config [opciones] orde\n" +"\n" +"apt-config ye una ferramienta pa lleer el ficheru de configuración d'APT.\n" +"\n" +"Ordes:\n" +" shell - Mou shell\n" +" dump - Amuesa la configuración\n" +"\n" +"Opciones:\n" +" -h Esti testu d'aida.\n" +" -c=? Llee esti ficheru de configuración\n" +" -o=? Conseña una opción de configuración arbitraria, p. ex.\n" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Coime, perpasaste'l númberu de descripciones qu'esti APT ye a remanar." +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Nun pudo alcontrase dengún paquete por regex '%s'" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "Vaya, perpasaste'l númberu de dependencies coles que puede esti APT." +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Nun pudo alcontrase dengún paquete por regex '%s'" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "Al procesar dependencies de ficheros nun s'alcontró el paquete %s %s" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Nun pudo alcontrase dengún paquete por regex '%s'" -#: apt-pkg/pkgcachegen.cc:1211 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Nun se puede lleer la llista de paquetes d'oríxenes %s" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Tomando '%s' como paquetes d'oríxenes en llugar de '%s'\n" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Lleendo llista de paquetes" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Inorar versión non disponible de '%s' del paquete '%s'" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Recoyendo ficheros qu'apurren" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Nun pudo alcontrase'l paquete %s" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Unable to write to %s" -msgstr "Nun se pue escribir en %s" +msgid "%s set to manually installed.\n" +msgstr "%s axustáu como instaláu manualmente.\n" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Fallu de E/S al grabar caché d'oríxenes" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s axustáu como instaláu automáticamente.\n" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Error internu, l'iguador de problemes frañó coses" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Nun pue bloquiase'l direutoriu de descarga" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Has de conseñar polo menos un paquete p'algamar so fonte" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "Nun pudo alcontrase un paquete fonte pa %s" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:786 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "falló'l cambiu de nome, %s (%s -> %s)." +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"AVISU: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "La suma hash nun concasa" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "El tamañu nun concasa" - -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Operación incorreuta: %s" - -#: apt-pkg/acquire-item.cc:1573 -#, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" - -#: apt-pkg/acquire-item.cc:1589 +#: cmdline/apt-get.cc:791 #, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Nun se pudo parchear el ficheru release %s" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Nun hai clave pública denguna disponible pa les IDs de clave darréu:\n" - -#: apt-pkg/acquire-item.cc:1669 -#, c-format msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" +"Por favor, usa:\n" +"bzr get %s\n" +"pa baxar los caberos anovamientos (posiblemente tovía nun sacaos) pal " +"paquete.\n" -#: apt-pkg/acquire-item.cc:1691 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Conflictu de distribución: %s (esperábase %s pero obtúvose %s)" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Saltando'l ficheru yá descargáu '%s'\n" -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Hebo un fallu durante la verificación de la robla. El repositoriu nun ta " -"anováu y va usase un ficheru índiz. Fallu GPG: %s: %s\n" +msgid "Couldn't determine free space in %s" +msgstr "Nun pue determinase l'espaciu llibre de %s" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:882 #, c-format -msgid "GPG error: %s: %s" -msgstr "Fallu GPG: %s: %s" +msgid "You don't have enough free space in %s" +msgstr "Nun hai espaciu llibre bastante en %s" -#: apt-pkg/acquire-item.cc:1859 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"Nun pudo alcontrase un ficheru pal paquete %s. Esto puede significar que " -"necesites iguar manualmente esti paquete (por faltar una arquitectura)" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Hai falta descargar %sB/%sB d'archivos fonte.\n" -#: apt-pkg/acquire-item.cc:1925 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Need to get %sB of source archives.\n" +msgstr "Hai falta descargar %sB d'archivos fonte.\n" -#: apt-pkg/acquire-item.cc:1983 +#: cmdline/apt-get.cc:902 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Los ficheros d'indiz de paquetes tan corrompíos. Nun hai campu Filename: pal " -"paquete %s." +msgid "Fetch source %s\n" +msgstr "Fonte descargada %s\n" -#: apt-pkg/vendorlist.cc:85 -#, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "El bloque de fornidor %s nun contién una buelga dixital" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Falló la descarga de dellos archivos." -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, c-format -msgid "List directory %spartial is missing." -msgstr "Falta'l direutoriu de llistes %spartial." +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Descarga completa y en mou de sólo descarga" -#: apt-pkg/acquire.cc:91 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Falta'l direutoriu d'archivos %spartial." +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Saltando'l desempaquetáu de la fonte yá desempaquetada en %s\n" -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Unable to lock directory %s" -msgstr "Nun pudo bloquiase'l direutoriu %s" +msgid "Unpack command '%s' failed.\n" +msgstr "Falló la orde de desempaquetáu '%s'.\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Descargando ficheru %li de %li (falten %s)" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Comprueba qu'el paquete 'dpkg-dev' ta instaláu.\n" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Descargando ficheru %li de %li" +msgid "Build command '%s' failed.\n" +msgstr "Falló la orde build '%s'.\n" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Falló algamar %s %s\n" +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Falló el procesu fíu" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" msgstr "" -"Nun pudieron descargase dellos ficheros d'índiz; inoráronse o usáronse los " -"antiguos nel so llugar." - -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Has de poner delles URIs 'fonte' nel ficheru sources.list" +"Hai que conseñar polo menos un paquete pa verificar les dependencies de " +"construcción" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-pkg/policy.cc:422 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "" -"Rexistru inválidu nel ficheru de preferencies %s, nun hai cabecera Paquete" +msgid "Unable to get build-dependency information for %s" +msgstr "Nun pudo algamase información de dependencies de construcción pa %s" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Did not understand pin type %s" -msgstr "Nun s'entiende'l tipu de pin %s" +msgid "%s has no build depends.\n" +msgstr "%s nun tien dependencies de construcción.\n" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Nun hai prioridá (o ye cero) conseñada pa pin" +#: cmdline/apt-get.cc:1272 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el " +"paquete %s" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -"Nun pudó facese la configuración inmediatamente en '%s'. Por favor, mira man " -"5 apt.conf embaxo APT::Immediate-Configure for details. (%d)" +"La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el " +"paquete %s" + +#: cmdline/apt-get.cc:1313 +#, c-format +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"Nun se pudo satisfacer la dependencia %s pa %s: El paquete instaláu %s ye " +"enforma nuevu" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:1352 #, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Nun pudo abrise'l ficheru '%s'" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"La dependencia %s en %s nun puede satisfacese porque denguna versión " +"disponible del paquete %s satisfaz los requisitos de versión" -#: apt-pkg/packagemanager.cc:583 -#, c-format +#: cmdline/apt-get.cc:1358 +#, fuzzy, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -"Esta execución d'instalación va requerir desaniciar temporalmente'l paquete " -"esencial %s por un cote de Conflictos/Pre-Dependencies. Esto normalmente ye " -"malo, pero si daveres quies facelo, activa la opción APT::Force-LoopBreak." +"La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el " +"paquete %s" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Line %u too long in source list %s." -msgstr "Llinia %u enforma llarga na llista d'oríxenes %s." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Desmontando'l CD-ROM...\n" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Fallu pa satisfacer la dependencia %s pa %s: %s" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Usando el puntu de montaxe de CD-ROM %s\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Esperando'l discu...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Montando'l CD-ROM...\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Les dependencies de construcción de %s nun pudieron satisfacese." -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identificando... " +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Fallu al procesar les dependencies de construcción" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Etiqueta guardada: %s\n" +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Coneutando a %s (%s)" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Buscando nel discu ficheros d'índices...\n" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Módulos sofitaos:" -#: apt-pkg/cdrom.cc:734 -#, c-format +#: cmdline/apt-get.cc:1633 +#, fuzzy msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Atopáu %zu indices de paquete, %zu indices de fonte, %zu indices de torna y " -"%zu firmes\n" - -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"Nun s'alcuentra dengún paquete de ficheros, seique nun ye un Discu Debian o " -"hai una arquiteutura inválida?" - -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Atopóse la etiqueta: '%s'\n" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Esi nun ye un nome válidu; inténtalo otra vuelta.\n" - -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"Esti discu llámase: \n" -"'%s'\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Copiando les llistes de paquetes..." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Escribiendo llista nueva d'oríxenes\n" +"Usu: apt-get [opciones] comandu\n" +" apt-get [opciones] install|remove pkg1 [pkg2 ...]\n" +" apt-get [opciones] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get ye una interface de llínia de comandos simple pa baxar ya\n" +"instalar paquetes. L'usu más frecuente de comandos ye p'anovar\n" +"ya instalar.\n" +"\n" +"Comandos:\n" +" update - Algamar nueva llista de paquetes\n" +" upgrade - Facer una anovación\n" +" install - Instalar nuevos paquetes (pkg ye libc6 non libc6.deb)\n" +" remove - Desaniciar paquetes\n" +" autoremove - Desaniciar automáticamente tolos paquetes non usaos\n" +" purge - Quitar y desaniciar paquetes\n" +" source - Baxar fonte del ficheru\n" +" build-dep - Configurar dependencies pa los paquetes fonte\n" +" dist-upgrade - Actualización de la distribución, ver apt-get(8)\n" +" dselect-upgrade - Siguir seleiciones dselect\n" +" clean - Esborrar los ficheros de ficheros baxaos\n" +" autoclean - Esborrar ficheros de ficheros vieyos baxaos\n" +" check - Verificar que nun hai dependencies frayaes\n" +" markauto - Marcar paquetes como automáticamente instalaos\n" +" unmarkauto - Marcar paquetes como manualmente instalaos\n" +"\n" +"Opciones:\n" +" -h Esti testu d'aida.\n" +" -q Salida Log - ensín indicación de progresu\n" +" -qq Ensín salida excepto pa fallos\n" +" -d Baxar sólo - NON instalar o desempaquetar los archivos\n" +" -s Non aición. Facer una simulación ordenada\n" +" -y Asumir Yes pa toles entruges y nun visualizar la petición\n" +" -f Intentar correxir un sistema con dependencies frayaes\n" +" -m Intentar siguir si los archivos nun tan disponibles\n" +" -u Amosar una lilsta de paquetes que tan bien\n" +" -b Facer el paquete fonte dempues d'algamalu\n" +" -V Amosar númberos de versiones\n" +" -c=? Lleer esti ficheru de configuración\n" +" -o=? Afitar una opción de configuración arbitraria, p. ex. -o dir::cache=/" +"tmp\n" +"Ver lés páxines de los manuales d' apt-get(8), sources.list(5) y apt." +"conf(5)\n" +"pa más información y opciones.\n" +" Esti APT tien Poderes de Super Vaca.\n" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Les entraes de la llista d'oríxenes pa esti discu son:\n" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Has de conseñar polo menos un paquete p'algamar so fonte" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"El paquete %s necesita reinstalase, pero nun s'alcuentra un archivu pa el." -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-helper.cc:66 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Error, pkgProblemResolver::Resolve xeneró frañadures, esto puede ser pola " -"mor de paquetes reteníos." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Nun pueden iguase los problemes; tienes paquetes frañaos reteníos." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Creando árbol de dependencies" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Versiones candidates" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Xeneración de dependencies" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Lleendo información d'estáu" - -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Nun se pudo abrir el ficheru d'estáu %s" - -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Falló la escritura del ficheru temporal d'estáu %s" - -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Nun se pudo tratar el ficheru de paquetes %s (1)" - -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Nun se pudo tratar el ficheru de paquetes %s (2)" - -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Nun s'alcontró la distribución '%s' pa '%s'" - -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Nun s'alcontró la versión '%s' pa '%s'" - -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "Nun pue alcontrase'l paquete %s" - -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Nun pudo alcontrase la xera '%s'" -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Nun pudo alcontrase dengún paquete por regex '%s'" - -#: apt-pkg/cacheset.cc:615 +#: cmdline/apt-mark.cc:68 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Nun pudo alcontrase dengún paquete por regex '%s'" - -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" -"Nun pueden seleicionase versiones pal paquete'%s' como puramente virtual" - -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" -"Nun puede seleicionase l'instalador o versión candidata pal paquete '%s' " -"como non tien nengún d'ellos" - -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"Nun puede seleicionase la versión más nueva pal paquete'%s' como puramente " -"virtual" - -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" -"Nun puede seleicionase versión candidata pal paquete %s que nun tien " -"candidata" +msgid "%s can not be marked as it is not installed.\n" +msgstr "pero nun ta instaláu" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" -"Nun puede seleicionase versión instalada pal paquete %s que nun ta instalada" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s axustáu como instaláu manualmente.\n" -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "Nun se pudo parchear el ficheru release %s" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s axustáu como instaláu automáticamente.\n" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "Ensin seiciones nel ficheru release %s" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s yá ta na versión más nueva.\n" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Ensin entrada Hash nel ficheru release %s" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s yá ta na versión más nueva.\n" -#: apt-pkg/indexrecords.cc:130 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Entrada inválida pa 'Valid-Until' nel ficheru release %s" +msgid "Waited for %s but it wasn't there" +msgstr "Esperaba %s pero nun taba ellí" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Entrada inválida pa 'Date' nel ficheru release %s" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "%s axustáu como instaláu manualmente.\n" -#: apt-pkg/sourcelist.cc:127 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Llinia %lu mal formada na llista d'oríxenes %s (analís d'URI)" +msgid "Canceled hold on %s.\n" +msgstr "Nun pudo abrise %s" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Llinia %lu mal formada na llista d'oríxe %s ([opción] nun parcheable)" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" +#: cmdline/apt-mark.cc:392 +msgid "" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -"Llinia %lu mal formada na llista d'oríxenes %s ([option] enforma curtia)" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -"Llinia %lu mal formada na llista d'oríxenes %s ([%s] nun ye una asignación)" -#: apt-pkg/sourcelist.cc:190 +#: methods/cdrom.cc:203 #, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Llinia %lu mal formada na llista d'oríxenes %s ([%s] nun tien clave)" +msgid "Unable to read the cdrom database %s" +msgstr "Nun se pudo lleer la base datos %s del CD-ROM" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" msgstr "" -"Llinia %lu mal formada na llista d'oríxenes %s ([%s] clave %s nun tien valor)" +"Por favor usa apt-cdrom pa facer qu'APT reconoza esti CD. apt-get update nun " +"se puede usar p'amestar CDs nuevos" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Llinia %lu mal formada na llista d'oríxenes %s (URI)" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD-ROM malu" -#: apt-pkg/sourcelist.cc:208 +#: methods/cdrom.cc:249 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Llinia %lu mal formada na llista d'oríxenes %s (dist)" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Nun se pudo desmontar el CD-ROM de %s; puede que se tea usando entá." -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Llinia %lu mal formada na llista d'oríxenes %s (analís d'URI)" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Nun s'atopa'l discu." -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Llinia %lu mal formada na llista d'oríxenes %s (dist absoluta)" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Nun s'atopa'l ficheru." -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Llinia %lu mal formada na llista d'oríxenes %s (analís de dist)" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Falló al lleer" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Abriendo %s" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Nun se pudo afitar la hora de modificación" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Llinia %u mal formada na llista d'oríxenes %s (triba)" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI malu, los URIS llocales nun pueden entamar por //" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Triba '%s' desconocida na llinia %u de la llista d'oríxenes %s" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Entrando" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Triba '%s' desconocida na llinia %u de la llista d'oríxenes %s" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Nun se pudo determinar el nome del par" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Instalando %s" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Nun se pudo determinar el nome llocal" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Configuring %s" -msgstr "Configurando %s" +msgid "The server refused the connection and said: %s" +msgstr "El sirvidor refugó la conexón, y dixo: %s" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#: methods/ftp.cc:225 #, c-format -msgid "Removing %s" -msgstr "Desinstalando %s" +msgid "USER failed, server said: %s" +msgstr "L'usuariu (USER) falló; el sirvidor dixo: %s" -#: apt-pkg/deb/dpkgpm.cc:98 +#: methods/ftp.cc:232 #, c-format -msgid "Completely removing %s" -msgstr "Desinstalóse dafechu %s" +msgid "PASS failed, server said: %s" +msgstr "La contraseña (PASS) falló; el sirvidor dixo: %s" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "Anotando desaniciáu de %s" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"Especificóse un sirvidor proxy pero non un script d'entrada, Acquire::ftp::" +"ProxyLogin ta baleru." -#: apt-pkg/deb/dpkgpm.cc:100 +#: methods/ftp.cc:280 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Executando activador de post-instalación de %s" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Falló la orde '%s' del guión d'entrada; el sirvidor dixo: %s" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#: methods/ftp.cc:306 #, c-format -msgid "Directory '%s' missing" -msgstr "Falta'l direutoriu '%s'." +msgid "TYPE failed, server said: %s" +msgstr "La triba (TYPE) falló; el sirvidor dixo: %s" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "Nun pudo abrise'l ficheru '%s'" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Gandió'l tiempu de conexón" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "Preparando %s" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "El sirvidor zarró la conexón" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Desempaquetando %s" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Fallu de llectura" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Preparándose pa configurar %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Una rempuesta revirtió'l buffer." -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "%s instaláu" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Corrupción del protocolu" + +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Fallu d'escritura" + +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Nun se pudo crear un socket" + +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Nun se pudo coneutar el zócalu de datos; gandió'l tiempu de conexón" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "Preparándose pa desinstalar %s" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Falló" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "%s desinstaláu" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Nun se pudo coneutar un socket pasivu." -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Preparándose pa desinstalar dafechu %s" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo nun pudo obtener un zócalu oyente" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "Desinstalóse dafechu %s" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Nun se pudo enllazar con un socket" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Nun se pudo escuchar nel socket" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Nun se pue escribir en %s" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Nun se pudo determinar el nome del socket" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Nun se pudo mandar la orde PORT" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "Direición de familia %u desconocida (AF_*)" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/ftp.cc:811 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Esperaba %s pero nun taba ellí" +msgid "EPRT failed, server said: %s" +msgstr "EPRT falló; el sirvidor dixo: %s" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Gandió'l tiempu de conexón col zócalu de datos" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "Ensin informe escritu d'apport porque MaxReports llegó dafechu" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Nun se pudo aceptar la conexón" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "problemes de dependencies - déxase ensin configurar" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Hebo un problema al xenerar el hash del ficheru" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu que " -"siguió dende un fallu previu" +#: methods/ftp.cc:890 +#, c-format +msgid "Unable to fetch file, server said '%s'" +msgstr "Nun se pudo descargar el ficheru; el sirvidor dixo '%s'" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu de " -"discu llenu" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Gandió'l tiempu del zócalu de datos" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu de " -"memoria" +#: methods/ftp.cc:935 +#, c-format +msgid "Data transfer failed, server said '%s'" +msgstr "Falló la tresferencia de datos; el sirvidor dixo '%s'" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" -"Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu de " -"discu llenu" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Consulta" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" -"Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu E/S " -"dpkg" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Nun se pudo invocar " -#: apt-pkg/deb/debsystem.cc:91 +#: methods/connect.cc:76 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"Nun pudó bloquease'l direutoriu d'alministración (%s), ¿hai otru procesu " -"usándolu?" +msgid "Connecting to %s (%s)" +msgstr "Coneutando a %s (%s)" -#: apt-pkg/deb/debsystem.cc:94 +#: methods/connect.cc:87 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Nun pudo bloquiase'l direutoriu d'alministración (%s), ¿yes root?" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: methods/connect.cc:94 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" -"dpkg interrumpióse, tienes qu'executar manualmente '%s' pa iguar el " -"problema. " - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Non bloquiáu" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Nun se pudo crear un socket pa %s (f=%u t=%u p=%u)" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 +#: methods/connect.cc:100 #, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lid %lih %limin %lis" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Nun se pudo coneutar a %s:%s (%s)." -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: methods/connect.cc:108 #, c-format -msgid "%lih %limin %lis" -msgstr "%lih %limin %lis" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Nun se pudo coneutar a %s:%s (%s); expiró'l tiempu de conexón" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: methods/connect.cc:126 #, c-format -msgid "%limin %lis" -msgstr "%limin %lis" +msgid "Could not connect to %s:%s (%s)." +msgstr "Nun se pudo coneutar a %s:%s (%s)." -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "%lis" -msgstr "%lis" +msgid "Connecting to %s" +msgstr "Coneutando a %s" -#: apt-pkg/contrib/strutl.cc:1243 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Selection %s not found" -msgstr "Escoyeta %s que nun s'atopa" +msgid "Could not resolve '%s'" +msgstr "Nun se pudo resolver '%s'" -#: apt-pkg/contrib/fileutl.cc:190 +#: methods/connect.cc:205 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Nun ta usándose bloquéu pal ficheru de bloquéu de sólo llectura %s" +msgid "Temporary failure resolving '%s'" +msgstr "Fallu temporal al resolver '%s'" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Nun puede abrise'l ficheru de bloquéu %s" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Daqué raro asocedió resolviendo '%s:%s' (%i - %s)" -#: apt-pkg/contrib/fileutl.cc:218 +#: methods/connect.cc:211 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Nun ta usándose bloquéu pal ficheru de bloquéu %s montáu per nfs" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Daqué raro asocedió resolviendo '%s:%s' (%i - %s)" -#: apt-pkg/contrib/fileutl.cc:223 +#: methods/connect.cc:258 #, c-format -msgid "Could not get lock %s" -msgstr "Nun se pudo torgar %s" +msgid "Unable to connect to %s:%s:" +msgstr "Nun pudo coneutase a %s:%s:" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "" +"Fallu internu: Robla bona, pero nun se pudo determinar la so buelga dixital?!" + +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Atopóse polo menos una robla mala." + +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "Nun pudo executase 'gpgv' pa verificar la robla (¿ta instaláu gpgv?)" + +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format -msgid "List of files can't be created as '%s' is not a directory" +msgid "" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" +msgstr "" + +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Fallu desconocíu al executar gpgv" + +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Les siguientes robles nun valieron:\n" + +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" +"Les robles siguientes nun pudieron verificase porque la to llave pública nun " +"ta a mano:\n" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Fallu al escribir nel ficheru" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" -msgstr "" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Fallu al lleer nel sirvidor. El llau remotu zarró la conexón." -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "El subprocesu %s recibió un fallu de segmentación." +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Fallu al lleer nel sirvidor" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "El subprocesu %s recibió una señal %u." +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Fallu al escribir nel ficheru" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "El subprocesu %s devolvió un códigu d'error (%u)" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Falló la escoyeta" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "El subprocesu %s terminó de manera inesperada" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Gandió'l tiempu de conexón" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Fallu d'escritura" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Fallu al escribir nel ficheru de salida" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problemes zarrando'l ficheru gzip %s" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Esperando les testeres" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Nun se pudo abrir el ficheru %s" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Fallu na llinia testera" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "Nun pudo abrise un ficheru descriptor %d" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "El sirvidor HTTP mandó una testera incorreuta de rempuesta" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Nun pudo criase'l soprocesu IPC" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "El sirvidor HTTP mandó una testera incorreuta de Content-Length" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Nun pudo executase'l compresor " +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "El sirvidor HTTP mandó una testera incorreuta de Content-Range" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Fallu de llectura" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Esti sirvidor HTTP tien rotu'l soporte d'alcance" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "lleíos, entá tenía de lleer %lu pero nun queda nada" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Formatu de data desconocíu" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "escritos, entá tenía d'escribir %lu pero nun pudo facerse" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Datos de testera incorreutos" -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Problemes zarrando'l ficheru %s" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Fallo la conexón" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Hai problemes al renomar el ficheru %s a %s" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Fallu internu" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "Hai problemes desvenceyando'l ficheru %s" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Hai problemes al sincronizar el ficheru" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Error internu, ¡InstallPackages llamose con paquetes frañaos!" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... ¡Fallu!" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Fai falta desaniciar los paquetes pero desaniciar ta torgáu." -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Fecho" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Error internu, ordenar nun finó" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" +"Que raro... Los tamaños nun concasen, escribe a apt@packages.debian.org" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Fecho" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 +#, c-format +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Hai que descargar %sB/%sB d'archivos.\n" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Nun se puede facer mmap d'un ficheru baleru" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 +#, c-format +msgid "Need to get %sB of archives.\n" +msgstr "Hai que descargar %sB d'archivos.\n" -#: apt-pkg/contrib/mmap.cc:111 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Nun pudo duplicase'l ficheru descriptor %i" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Tres d'esta operación, van usase %sB d'espaciu de discu adicional.\n" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Nun se pudo facer mmap de %lu bytes" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 +#, c-format +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Tres d'esta operación, van lliberase %sB d'espaciu de discu.\n" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Nun pudo zarrase mmap" +#: apt-private/private-install.cc:200 +#, c-format +msgid "You don't have enough free space in %s." +msgstr "Nun tienes espaciu libre bastante en %s." -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Nun se pudo sincronizase mmap " +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Hai problemes y utilizose -y ensin --force-yes" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Nun se pudo facer mmap de %lu bytes" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Conseñose Trivial Only pero ésta nun ye una operación trivial." -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Falló al francer el ficheru" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Sí, ¡facer lo que digo!" -#: apt-pkg/contrib/mmap.cc:341 +#: apt-private/private-install.cc:222 #, c-format msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" -"Dynamic MMap escosó l'espaciu. Por favor aumenta'l tamañu de APT::Cache-" -"Start. El valor actual ye : %lu. (man 5 apt.conf)" +"Tas a piques de facer daqué potencialmente dañible.\n" +"Pa continuar escribe la frase '%s'\n" +" ?] " -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" -"Nun pudó incrementase'l tamañu de MMap col llímite de %lu bytes ya torgáu" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Encaboxar." -#: apt-pkg/contrib/mmap.cc:449 +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "¿Quies continuar?" + +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Dellos ficheros nun pudieron descargase" + +#: apt-private/private-install.cc:320 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -"Nun pudó incrementase'l tamañu de MMap ya que crecer automáticamente ta " -"desactivao pol usuariu." - -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Nun puede algamase información del puntu de montaxe %s" +"Nun pudieron algamase dellos archivos, ¿seique executando apt-get update o " +"tentando --fix-missing?" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Nun se pudo montar el CD-ROM" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing y cambéu de mediu nun ta sofitao actualmente" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Triba d'abreviatura que nun se reconoz: «%c»" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Nun pudieron iguase los paquetes que falten." -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Abriendo ficheros de configuración %s" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Encaboxando la instalación." -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Fallu de sintaxis %s:%u: Nun hai un nome al entamu del bloque." +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"El siguiente paquete desapareció del sistema como\n" +"tolos ficheros fueron sobroescritos por otros paquetes:" +msgstr[1] "" +"Los siguientes paquetes desaparecieron del sistema como\n" +"tolos ficheros fueron sobroescritos por otros paquetes:" -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Fallu de sintaxis %s:%u: Marca mal formada" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Nota: Esto faise automáticamente y baxo demanda por dpkg." -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Fallu de sintaxis %s:%u: Puxarra extra dempués del valor" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Suponse que nun vamos esborrar coses; nun pue entamase AutoRemover" -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Error de sintaxis %s:%u: Les directives pueden facese sólo nel nivel cimeru" +"Hmm, paez que AutoRemover destruyó daqué, lo que nun tendría\n" +"por qué pasar. Por favor, unvía un informe de fallu escontra apt." -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Fallu de sintaxis %s:%u: Demasiaes inclusiones añeraes" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "La siguiente información pue aidar a resolver la situación:" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Fallu de sintaxis %s:%u: Incluyendo dende equí" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Error internu, AutoRemover rompió coses" -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Error de sintaxis %s:%u: La directiva '%s' nun ta sofitada" +#: apt-private/private-install.cc:513 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "El siguiente paquete instalóse mou automáticu y yá nun se necesita:" +msgstr[1] "" +"Los siguientes paquetes instaláronse de manera automática y ya nun se " +"necesiten:" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-private/private-install.cc:517 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Fallu de sintaxis %s:%u: Directiva llimpia requier un tres opciones como " -"argumentos" +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "El paquete %lu instalóse de mou automáticu y yá nun se necesita.\n" +msgstr[1] "" +"Los paquetes %lu instaláronse de manera automática y ya nun se necesiten\n" -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Fallu de sintaxis %s:%u: Puxarra extra al final del ficheru" +#: apt-private/private-install.cc:519 +#, fuzzy +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Usa 'apt-get autoremove' pa desinstalalos." +msgstr[1] "Usa 'apt-get autoremove' pa desinstalalos." -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, c-format -msgid "No keyring installed in %s." -msgstr "L'aniellu de claves nun s'instaló en %s." +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Habríes d'executar 'apt-get -f install' para iguar estos:" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "La opción de llinia d'ordes '%c' [de %s] ye desconocida." +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"Dependencies ensin cubrir. Tenta 'apt-get -f install' ensin paquetes (o " +"conseña una solución)." -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "Nun s'entiende la opción %s de la llinia d'ordes" +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"Dellos paquetes nun pudieron instalase. Esto puede significar que\n" +"conseñaste una situación imposible o, si tas usando la distribución\n" +"inestable, que dellos paquetes necesarios nun se crearon o que\n" +"s'allugaron fuera d'Incoming." -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "La opción %s de la llinia d'ordes nun ye un valor booleanu" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Paquetes frañaos" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "La opción %s necesita un argumentu." +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Instalaránse los siguientes paquetes extra:" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Opción %s: L'axuste del elementu de configuración ha tener un =<val>." +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Paquetes afalaos:" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "La opción %s pide un argumentu enteru, non '%s'" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Paquetes encamentaos" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-private/private-install.cc:825 #, c-format -msgid "Option '%s' is too long" -msgstr "Opción '%s' enforma llarga" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Saltando %s, ya ta instalau y la actualización nun ta activada.\n" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-private/private-install.cc:829 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "El sentíu %s nun s'entiende, prueba con braeru o falsu." +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "Saltando %s, nun ta instaláu y namái se requieren anovamientos.\n" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-private/private-install.cc:841 #, c-format -msgid "Invalid operation %s" -msgstr "Operación incorreuta: %s" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "La reinstalación de %s nun ye dable, nun pue descargase.\n" -#: cmdline/apt-cache.cc:149 +#: apt-private/private-install.cc:846 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "El paquete %s versión %s nun cumple una dependencia:\n" - -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Total de nomes de paquetes: " - -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Total de cadarmes de paquetes: " - -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Paquetes normales: " - -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Paquetes virtuales puros: " - -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Paquetes virtuales cenciellos: " - -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Paquetes virtuales amestaos: " - -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Falten: " +msgid "%s is already the newest version.\n" +msgstr "%s yá ta na versión más nueva.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Versiones distintes en total: " +#: apt-private/private-install.cc:894 +#, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Esbillada la versión %s (%s) pa %s\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Descripciones distintes en total: " +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Esbillada la versión %s (%s) pa %s\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Dependencies totales: " +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "El paquete %s nun ta instalau, nun va desaniciase\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Rellaciones versión/ficheru en total: " +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "El paquete %s nun ta instalau, nun va desaniciase\n" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Rellaciones descripción/ficheru en total: " +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Mapes de provisiones en total: " +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Cadenes globalizaes en total: " +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Iguando dependencies..." -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Espaciu de dependencies de versión en total: " +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " falló." -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Espaciu ociosu en total: " +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Nun pudieron iguase les dependencies" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Informe del total d'espaciu: " +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Nun pue amenorgase'l conxuntu d'actualización" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "El ficheru de paquetes %s nun ta sincronizáu." +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Fecho" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Nun s'alcontraron paquetes" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Habríes d'executar 'apt-get -f install' para igualo." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Has de dar polo menos un patrón de gueta" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Dependencies incumplíes. Téntalo usando -f." -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" msgstr "" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Ficheros de paquete:" +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Instaláu]" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Instaláu]" + +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"La caché nun ta sincronizada, nun puede facese x-ref a un ficheru de paquete" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Paquetes na chincheta:" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Instaláu]" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(nun s'alcontró)" +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Instaláu]" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Instaláu: " +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidatu: " +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(dengún)" +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "pero %s ta instaláu" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Chincheta de paquetes: " +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "pero %s ta pa instalar" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabla de versiones:" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "pero nun ye instalable" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s pa %s compiláu en %s %s\n" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "pero ye un paquete virtual" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" -msgstr "" -"Usu: apt-cache [opciones] orde\n" -" apt-cache [opciones] add ficheru1 [ficheru2 ...]\n" -" apt-cache [opciones] showpkg paq1 [paq2 ...]\n" -" apt-cache [opciones] showsrc paq1 [paq2 ...]\n" -"\n" -"apt-cache ye una ferramienta de baxu nivel usada pa remanar\n" -"ficheros de caché binarios d'APT y consultar información d'ellos\n" -"\n" -"Ordes:\n" -" add - Amesta un ficheru de paquete a la caché fonte\n" -" gencaches - Creal dambes cachés, la de paquetes y la de fontes\n" -" showpkg - Amuesa algo d'información xeneral d'un sólu paquete\n" -" showsrc - Amuesa los rexistros de fonte\n" -" stats - Amuesa dalgunes estadístiques básiques\n" -" dump - Amuesa'l ficheru ensembre en formatu tersu\n" -" dumpavail - Imprenta un ficheru disponible na salida estándar\n" -" unmet - Amuesa dependencies nun atopáes\n" -" search - Restola na llista de paquetes por el patrón d'una espresión " -"regular\n" -" show - Amuesa un rexistru lleíble pal paquete\n" -" showauto - Amouesa una llista de paquetes instalaos automáticamente\n" -" depends - Amuesa la información de dependencies en bruto d'un paquete\n" -" rdepends - Amuesa la información de dependencies inverses d'un paquete\n" -" pkgnames - Llista los nomes de tolos paquetes nel sistema\n" -" dotty - Xenera gráfiques del paquete pa GraphViz\n" -" xvcg - Xenera gráfiques del paquete pa xvcg\n" -" policy - Amuesa los axustes de les normes\n" -"\n" -"Opciones:\n" -" -h Esti testu d'aida.\n" -" -p=? La cache de paquetes.\n" -" -s=? La cache de fontes.\n" -" -q Desactiva l'indicador de progresu.\n" -" -i Amuesa sólo les dependencies importantes de la orde incumplida.\n" -" -c=? Lleer esti ficheru de configuración\n" -" -o=? Conseña una opción de configuración arbitraria, ex -o dir::cache=/" -"tmp\n" -"Ver les páxines del manual apt-cache(8) y apt.conf(5) pa más información.\n" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "pero nun ta instaláu" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Da-y un nome a esti discu, como 'Debian 5.0.3 Discu 1'" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "pero nun va instalase" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Inxerta un discu nel preséu y calca intro" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " o" + +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Los siguientes paquetes nun cumplen dependencies:" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Falló al montar '%s' a '%s'" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Van instalase los siguientes paquetes NUEVOS:" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Los siguientes paquetes van DESANICIASE:" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Repite'l procesu colos demás CDs del conxuntu." +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Los siguientes paquetes tan reteníos:" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumentos non empareyaos" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Los siguientes paquetes van actualizase:" -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -msgstr "" -"Usu: apt-config [opciones] orde\n" -"\n" -"apt-config ye una ferramienta pa lleer el ficheru de configuración d'APT.\n" -"\n" -"Ordes:\n" -" shell - Mou shell\n" -" dump - Amuesa la configuración\n" -"\n" -"Opciones:\n" -" -h Esti testu d'aida.\n" -" -c=? Llee esti ficheru de configuración\n" -" -o=? Conseña una opción de configuración arbitraria, p. ex.\n" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Los siguientes paquetes van DESACTUALIZASE:" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Nun pudo alcontrase dengún paquete por regex '%s'" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Van camudase los siguientes paquetes reteníos:" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Nun pudo alcontrase dengún paquete por regex '%s'" +#: apt-private/private-output.cc:668 +#, c-format +msgid "%s (due to %s) " +msgstr "%s (por %s) " -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Nun pudo alcontrase dengún paquete por regex '%s'" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"AVISU: Los siguientes paquetes esenciales van desaniciase.\n" +"¡Esto NUN hai que facelo si nun sabes esautamente lo que faes!" -#: cmdline/apt-get.cc:367 +#: apt-private/private-output.cc:707 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Tomando '%s' como paquetes d'oríxenes en llugar de '%s'\n" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu actualizaos, %lu nuevos instalaos, " -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Inorar versión non disponible de '%s' del paquete '%s'" +#: apt-private/private-output.cc:711 +#, c-format +msgid "%lu reinstalled, " +msgstr "%lu reinstalaos, " -#: cmdline/apt-get.cc:454 +#: apt-private/private-output.cc:713 #, c-format -msgid "Couldn't find package %s" -msgstr "Nun pudo alcontrase'l paquete %s" +msgid "%lu downgraded, " +msgstr "%lu desactualizaos, " -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-private/private-output.cc:715 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s axustáu como instaláu manualmente.\n" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu para desaniciar y %lu nun actualizaos.\n" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-private/private-output.cc:719 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s axustáu como instaláu automáticamente.\n" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu nun instalaos dafechu o desaniciaos.\n" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[S/n]" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Error internu, l'iguador de problemes frañó coses" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[s/N]" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Nun pue bloquiase'l direutoriu de descarga" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "S" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Has de conseñar polo menos un paquete p'algamar so fonte" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Nun pudo alcontrase un paquete fonte pa %s" +msgid "Regex compilation error - %s" +msgstr "Error de compilación d'espresión regular - %s" -#: cmdline/apt-get.cc:786 +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "La orde update nun lleva argumentos" + +#: apt-private/private-update.cc:90 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" -"AVISU: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:791 -#, fuzzy, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -"Por favor, usa:\n" -"bzr get %s\n" -"pa baxar los caberos anovamientos (posiblemente tovía nun sacaos) pal " -"paquete.\n" - -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Saltando'l ficheru yá descargáu '%s'\n" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-private/private-show.cc:156 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Nun pue determinase l'espaciu llibre de %s" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "Nun hai espaciu llibre bastante en %s" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Hai falta descargar %sB/%sB d'archivos fonte.\n" +#: apt-private/private-main.cc:32 +msgid "" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" +msgstr "" +"NOTA: ¡Esto sólo ye una simulación!\n" +" apt-get necesita privilexos de root pa la execución real.\n" +" ¡Ten tamién en cuenta que'l bloquéu ta desactiváu,\n" +" asina que nun dependen de la pertinencia de la verdadera situación " +"actual!" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Hai falta descargar %sB d'archivos fonte.\n" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "AVISU: ¡Nun pudieron autenticase los siguientes paquetes!" -#: cmdline/apt-get.cc:902 -#, c-format -msgid "Fetch source %s\n" -msgstr "Fonte descargada %s\n" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Avisu d'autenticación saltáu.\n" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Falló la descarga de dellos archivos." +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Dellos paquetes nun pudieron autenticase" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Descarga completa y en mou de sólo descarga" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "¿Instalar esos paquetes ensin verificación?" -#: cmdline/apt-get.cc:950 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Saltando'l desempaquetáu de la fonte yá desempaquetada en %s\n" +msgid "Failed to fetch %s %s\n" +msgstr "Falló algamar %s %s\n" -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Falló la orde de desempaquetáu '%s'.\n" +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Nun pudo renomase %s como %s" -#: cmdline/apt-get.cc:963 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Comprueba qu'el paquete 'dpkg-dev' ta instaláu.\n" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "Falló la orde build '%s'.\n" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Falló el procesu fíu" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Calculando l'anovamientu... " -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "" -"Hai que conseñar polo menos un paquete pa verificar les dependencies de " -"construcción" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Fecho" -#: cmdline/apt-get.cc:1054 -#, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Oxe " + +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Des:" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Err " + +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Nun pudo algamase información de dependencies de construcción pa %s" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Descargaos %sB en %s (%sB/s)\n" -#: cmdline/apt-get.cc:1101 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s nun tien dependencies de construcción.\n" +msgid " [Working]" +msgstr " [Tresnando]" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format +#: apt-private/acqprogress.cc:297 +#, c-format msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el " -"paquete %s" +"Cambeu de mediu: Por favor meti'l discu etiquetáu\n" +" '%s'\n" +"na unidá '%s' y calca Intro\n" -#: cmdline/apt-get.cc:1289 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" -"La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el " -"paquete %s" +msgid "Unable to read %s" +msgstr "Nun ye a lleer %s" -#: cmdline/apt-get.cc:1312 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"Nun se pudo satisfacer la dependencia %s pa %s: El paquete instaláu %s ye " -"enforma nuevu" +msgid "Unable to change to %s" +msgstr "Nun se pudo cambiar a %s" + +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 +#, c-format +msgid "No mirror file '%s' found " +msgstr "Nun s'alcontró ficheru espeyu '%s'" -#: cmdline/apt-get.cc:1351 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"La dependencia %s en %s nun puede satisfacese porque denguna versión " -"disponible del paquete %s satisfaz los requisitos de versión" +msgid "Can not read mirror file '%s'" +msgstr "Nun s'alcontró ficheru espeyu '%s'" -#: cmdline/apt-get.cc:1357 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "" -"La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el " -"paquete %s" +msgid "No entry found in mirror file '%s'" +msgstr "Nun s'alcontró ficheru espeyu '%s'" -#: cmdline/apt-get.cc:1380 +#: methods/mirror.cc:445 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Fallu pa satisfacer la dependencia %s pa %s: %s" +msgid "[Mirror: %s]" +msgstr "[Espeyu: %s]" -#: cmdline/apt-get.cc:1395 -#, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Les dependencies de construcción de %s nun pudieron satisfacese." +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Falló criar un tubu IPC al soprocesu" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Fallu al procesar les dependencies de construcción" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Conexón encaboxada prematuramente" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Coneutando a %s (%s)" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "¡Mal axuste por omisión!" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Módulos sofitaos:" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Calca Intro pa continuar." -#: cmdline/apt-get.cc:1632 -#, fuzzy -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "¿Quies desaniciar los ficheros .deb descargaos previamente?" + +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" -"Usu: apt-get [opciones] comandu\n" -" apt-get [opciones] install|remove pkg1 [pkg2 ...]\n" -" apt-get [opciones] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get ye una interface de llínia de comandos simple pa baxar ya\n" -"instalar paquetes. L'usu más frecuente de comandos ye p'anovar\n" -"ya instalar.\n" -"\n" -"Comandos:\n" -" update - Algamar nueva llista de paquetes\n" -" upgrade - Facer una anovación\n" -" install - Instalar nuevos paquetes (pkg ye libc6 non libc6.deb)\n" -" remove - Desaniciar paquetes\n" -" autoremove - Desaniciar automáticamente tolos paquetes non usaos\n" -" purge - Quitar y desaniciar paquetes\n" -" source - Baxar fonte del ficheru\n" -" build-dep - Configurar dependencies pa los paquetes fonte\n" -" dist-upgrade - Actualización de la distribución, ver apt-get(8)\n" -" dselect-upgrade - Siguir seleiciones dselect\n" -" clean - Esborrar los ficheros de ficheros baxaos\n" -" autoclean - Esborrar ficheros de ficheros vieyos baxaos\n" -" check - Verificar que nun hai dependencies frayaes\n" -" markauto - Marcar paquetes como automáticamente instalaos\n" -" unmarkauto - Marcar paquetes como manualmente instalaos\n" -"\n" -"Opciones:\n" -" -h Esti testu d'aida.\n" -" -q Salida Log - ensín indicación de progresu\n" -" -qq Ensín salida excepto pa fallos\n" -" -d Baxar sólo - NON instalar o desempaquetar los archivos\n" -" -s Non aición. Facer una simulación ordenada\n" -" -y Asumir Yes pa toles entruges y nun visualizar la petición\n" -" -f Intentar correxir un sistema con dependencies frayaes\n" -" -m Intentar siguir si los archivos nun tan disponibles\n" -" -u Amosar una lilsta de paquetes que tan bien\n" -" -b Facer el paquete fonte dempues d'algamalu\n" -" -V Amosar númberos de versiones\n" -" -c=? Lleer esti ficheru de configuración\n" -" -o=? Afitar una opción de configuración arbitraria, p. ex. -o dir::cache=/" -"tmp\n" -"Ver lés páxines de los manuales d' apt-get(8), sources.list(5) y apt." -"conf(5)\n" -"pa más información y opciones.\n" -" Esti APT tien Poderes de Super Vaca.\n" +"Ocurrieron dellos errores al desempaquetar. Los paquetes que s'instalaron " +"configurarse'l" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Has de conseñar polo menos un paquete p'algamar so fonte" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "van configurase. Esto pue causar errores duplicaos" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" +"o fallos causaos por dependencies que nun tán. Esto ta BIEN, sólo los fallos" -#: cmdline/apt-helper.cc:66 +#: dselect/install:105 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" +"enriba d'esti mensaxe son importante. Por favor, íguales y executa [I]nstall " +"otra vuelta" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "pero nun ta instaláu" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Fusionando información disponible" -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s axustáu como instaláu manualmente.\n" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "Llamóse a DropNode nun nodu que ta entá enllazáu" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s axustáu como instaláu automáticamente.\n" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "¡Fallu al atopar l'elementu enllazáu!" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s yá ta na versión más nueva.\n" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Falló al allugar una desvíu" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s yá ta na versión más nueva.\n" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Fallu internu en AddDiversion" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s axustáu como instaláu manualmente.\n" +#: apt-inst/filelist.cc:477 +#, c-format +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Intentando sobrescribir un desvíu, %s -> %s and %s/%s" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Nun pudo abrise %s" +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "Doble suma de desvíu %s -> %s" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "Ficheru de configuración duplicáu %s/%s" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" +msgstr "La trayeutoria %s ye enforma llarga" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" +msgstr "Desempaquetando %s más d'una vegada" -#: methods/cdrom.cc:203 +#: apt-inst/extract.cc:142 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Nun se pudo lleer la base datos %s del CD-ROM" +msgid "The directory %s is diverted" +msgstr "El direutorio %s ta desviáu" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"Por favor usa apt-cdrom pa facer qu'APT reconoza esti CD. apt-get update nun " -"se puede usar p'amestar CDs nuevos" +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "El paquete ta tentando escribir nel oxetivu desviáu %s/%s" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD-ROM malu" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "La trayeutoria de desviación ye enforma llarga" -#: methods/cdrom.cc:249 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Nun se pudo desmontar el CD-ROM de %s; puede que se tea usando entá." +msgid "Failed to stat %s" +msgstr "Nun pudo lleese %s" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Nun s'atopa'l discu." +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Nun pudo renomase %s como %s" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Nun s'atopa'l ficheru." +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "El direutoriu %s ta reemplazándose por un non-direutoriu" + +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Fallu al atopar el nodu nel so bote d'enllaz" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "La trayeutoria ye perllarga" + +#: apt-inst/extract.cc:421 +#, c-format +msgid "Overwrite package match with no version for %s" +msgstr "Sobreescribiendo concordancia del paquete ensin versión pa %s" + +#: apt-inst/extract.cc:438 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" +msgstr "El ficheru %s/%s sobreescribe al que ta nel paquete %s" + +#: apt-inst/extract.cc:498 +#, c-format +msgid "Unable to stat %s" +msgstr "Nun ye a lleer %s" + +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, c-format +msgid "Failed to write file %s" +msgstr "Falló la escritura nel ficheru %s" + +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "Falló al pesllar el ficheru %s" + +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Esti nun ye un ficheru DEB válidu, falta'l miembru '%s'" + +#: apt-inst/deb/debfile.cc:132 +#, c-format +msgid "Internal error, could not locate member %s" +msgstr "Error internu, nun se pue atopar el miembru %s" + +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Ficheru de control inanalizable" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Robla del ficheru inválida" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Fallu al lleer la testera de miembru del ficheru" + +#: apt-inst/contrib/arfile.cc:96 +#, c-format +msgid "Invalid archive member header %s" +msgstr "Testera de miembru del archivu %s inválida" + +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Testera de miembru del ficheru inválida" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "El ficheru ye perpequeñu" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Falló al lleer les testeres del ficheru" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Fallu al crear les tuberíes" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Fallu al executar gzip " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Ficheru tollíu" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Falló al lleer" +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Falló la suma de control de tar, ficheru tollíu" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Nun se pudo afitar la hora de modificación" +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Testera del TAR triba %u desconocida, miembru %s" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI malu, los URIS llocales nun pueden entamar por //" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Entrando" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Executando dpkt" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Nun se pudo determinar el nome del par" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "El sistema d'empaquetáu '%s' nun ta sofitáu" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Nun se pudo determinar el nome llocal" +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Nun pudo determinase una triba de sistema d'empaquetáu afayadiza" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "El sirvidor refugó la conexón, y dixo: %s" +msgid "Wrote %i records.\n" +msgstr "%i rexistros escritos.\n" -#: methods/ftp.cc:225 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "USER failed, server said: %s" -msgstr "L'usuariu (USER) falló; el sirvidor dixo: %s" +msgid "Wrote %i records with %i missing files.\n" +msgstr "%i rexistros escritos con %i ficheros de menos.\n" -#: methods/ftp.cc:232 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "PASS failed, server said: %s" -msgstr "La contraseña (PASS) falló; el sirvidor dixo: %s" +msgid "Wrote %i records with %i mismatched files\n" +msgstr "%i rexistros escritos con %i ficheros mal empareyaos\n" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" -"Especificóse un sirvidor proxy pero non un script d'entrada, Acquire::ftp::" -"ProxyLogin ta baleru." +"Escribiéronse %i rexistros con %i ficheros perdíos y %i ficheros que nun " +"concasen\n" -#: methods/ftp.cc:280 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Falló la orde '%s' del guión d'entrada; el sirvidor dixo: %s" +msgid "Can't find authentication record for: %s" +msgstr "Nun puede alcontrase'l rexistru d'autenticación pa: %s" -#: methods/ftp.cc:306 +#: apt-pkg/indexcopy.cc:521 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "La triba (TYPE) falló; el sirvidor dixo: %s" +msgid "Hash mismatch for: %s" +msgstr "El hash nun concasa pa: %s" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Gandió'l tiempu de conexón" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"Nun pudieron analizase o abrise les llistes de paquetes o el ficheru d'estáu." -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "El sirvidor zarró la conexón" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Has d'executar apt-get update pa iguar estos problemes" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Una rempuesta revirtió'l buffer." +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Nun pudo lleese la llista de fontes." -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Corrupción del protocolu" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Caché de paquetes balera." -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Nun se pudo crear un socket" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "El ficheru de caché de paquetes ta tollíu" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Nun se pudo coneutar el zócalu de datos; gandió'l tiempu de conexón" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "El ficheru de caché de paquetes ye una versión incompatible" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Falló" +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "El ficheru de caché de paquetes ta tollíu" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Nun se pudo coneutar un socket pasivu." +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "Esti APT nun soporta'l sistema de versiones '%s'" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo nun pudo obtener un zócalu oyente" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "La caché de paquetes creóse pa una arquitectura estremada" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Nun se pudo enllazar con un socket" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Depende de" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Nun se pudo escuchar nel socket" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Predepende de" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Nun se pudo determinar el nome del socket" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Suxer" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Nun se pudo mandar la orde PORT" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Recomienda" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Direición de familia %u desconocida (AF_*)" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "En conflictu con" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT falló; el sirvidor dixo: %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Sustituye a" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Gandió'l tiempu de conexón col zócalu de datos" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Fai obsoletu a" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Nun se pudo aceptar la conexón" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Ruempe" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Hebo un problema al xenerar el hash del ficheru" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Aumenta" -#: methods/ftp.cc:890 +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "importante" + +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "requeríu" + +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "estándar" + +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "opcional" + +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" + +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Nun se pudo descargar el ficheru; el sirvidor dixo '%s'" +msgid "The method driver %s could not be found." +msgstr "Nun pudo alncontrase'l controlador de métodu %s." -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Gandió'l tiempu del zócalu de datos" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Comprueba qu'el paquete 'dpkg-dev' ta instaláu.\n" -#: methods/ftp.cc:935 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Falló la tresferencia de datos; el sirvidor dixo '%s'" +msgid "Method %s did not start correctly" +msgstr "El métodu %s nun entamó correchamente" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Consulta" +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Por favor, introduz el discu '%s' nel preséu '%s' y calca Intro." -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Nun se pudo invocar " +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "La triba de ficheru d'indiz '%s' nun ta sofitada" + +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Creando árbol de dependencies" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Versiones candidates" -#: methods/connect.cc:76 -#, c-format -msgid "Connecting to %s (%s)" -msgstr "Coneutando a %s (%s)" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Xeneración de dependencies" -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Lleendo información d'estáu" -#: methods/connect.cc:94 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Nun se pudo crear un socket pa %s (f=%u t=%u p=%u)" +msgid "Failed to open StateFile %s" +msgstr "Nun se pudo abrir el ficheru d'estáu %s" -#: methods/connect.cc:100 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Nun se pudo coneutar a %s:%s (%s)." +msgid "Failed to write temporary StateFile %s" +msgstr "Falló la escritura del ficheru temporal d'estáu %s" -#: methods/connect.cc:108 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Nun se pudo coneutar a %s:%s (%s); expiró'l tiempu de conexón" +msgid "rename failed, %s (%s -> %s)." +msgstr "falló'l cambiu de nome, %s (%s -> %s)." -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Nun se pudo coneutar a %s:%s (%s)." +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "La suma hash nun concasa" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 -#, c-format -msgid "Connecting to %s" -msgstr "Coneutando a %s" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "El tamañu nun concasa" -#: methods/connect.cc:180 methods/connect.cc:199 -#, c-format -msgid "Could not resolve '%s'" -msgstr "Nun se pudo resolver '%s'" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Operación incorreuta: %s" -#: methods/connect.cc:205 +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Fallu temporal al resolver '%s'" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#: methods/connect.cc:209 +#: apt-pkg/acquire-item.cc:1589 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Daqué raro asocedió resolviendo '%s:%s' (%i - %s)" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Nun se pudo parchear el ficheru release %s" -#: methods/connect.cc:211 +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Nun hai clave pública denguna disponible pa les IDs de clave darréu:\n" + +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Daqué raro asocedió resolviendo '%s:%s' (%i - %s)" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: methods/connect.cc:258 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Nun pudo coneutase a %s:%s:" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Conflictu de distribución: %s (esperábase %s pero obtúvose %s)" -#: methods/gpgv.cc:168 +#: apt-pkg/acquire-item.cc:1721 +#, c-format msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -"Fallu internu: Robla bona, pero nun se pudo determinar la so buelga dixital?!" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Atopóse polo menos una robla mala." +"Hebo un fallu durante la verificación de la robla. El repositoriu nun ta " +"anováu y va usase un ficheru índiz. Fallu GPG: %s: %s\n" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "Nun pudo executase 'gpgv' pa verificar la robla (¿ta instaláu gpgv?)" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "Fallu GPG: %s: %s" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1859 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" msgstr "" +"Nun pudo alcontrase un ficheru pal paquete %s. Esto puede significar que " +"necesites iguar manualmente esti paquete (por faltar una arquitectura)" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Fallu desconocíu al executar gpgv" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Les siguientes robles nun valieron:\n" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1983 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" -"Les robles siguientes nun pudieron verificase porque la to llave pública nun " -"ta a mano:\n" +"Los ficheros d'indiz de paquetes tan corrompíos. Nun hai campu Filename: pal " +"paquete %s." -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "La triba de ficheru d'indiz '%s' nun ta sofitada" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Fallu al escribir nel ficheru" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Nun pudo lleese %s." -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Fallu al lleer nel sirvidor. El llau remotu zarró la conexón." +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "La caché tien un sistema de versiones incompatible" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Fallu al lleer nel sirvidor" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Hebo un error al procesar %s (FindPkg)" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Fallu al escribir nel ficheru" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "" +"Coime, perpasaste'l númberu de nomes de paquete qu'esti APT ye a remanar." -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Falló la escoyeta" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Vaya, perpasaste'l númberu de versiones coles que puede esti APT." -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Gandió'l tiempu de conexón" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Coime, perpasaste'l númberu de descripciones qu'esti APT ye a remanar." -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Fallu al escribir nel ficheru de salida" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "Vaya, perpasaste'l númberu de dependencies coles que puede esti APT." -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Esperando les testeres" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Al procesar dependencies de ficheros nun s'alcontró el paquete %s %s" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Fallu na llinia testera" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Nun se puede lleer la llista de paquetes d'oríxenes %s" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "El sirvidor HTTP mandó una testera incorreuta de rempuesta" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Lleendo llista de paquetes" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "El sirvidor HTTP mandó una testera incorreuta de Content-Length" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Recoyendo ficheros qu'apurren" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "El sirvidor HTTP mandó una testera incorreuta de Content-Range" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Nun se pue escribir en %s" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Esti sirvidor HTTP tien rotu'l soporte d'alcance" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Fallu de E/S al grabar caché d'oríxenes" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Formatu de data desconocíu" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "El bloque de fornidor %s nun contién una buelga dixital" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Datos de testera incorreutos" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Falta'l direutoriu de llistes %spartial." -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Fallo la conexón" +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Falta'l direutoriu d'archivos %spartial." -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Fallu internu" +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "Nun pudo bloquiase'l direutoriu %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Calculando l'anovamientu... " +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Descargando ficheru %li de %li (falten %s)" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Fecho" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Descargando ficheru %li de %li" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" +"Nun pudieron descargase dellos ficheros d'índiz; inoráronse o usáronse los " +"antiguos nel so llugar." -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Has de poner delles URIs 'fonte' nel ficheru sources.list" + +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/policy.cc:422 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "" +"Rexistru inválidu nel ficheru de preferencies %s, nun hai cabecera Paquete" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Iguando dependencies..." +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Nun s'entiende'l tipu de pin %s" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " falló." +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Nun hai prioridá (o ye cero) conseñada pa pin" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Nun pudieron iguase les dependencies" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" +"Nun pudó facese la configuración inmediatamente en '%s'. Por favor, mira man " +"5 apt.conf embaxo APT::Immediate-Configure for details. (%d)" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Nun pue amenorgase'l conxuntu d'actualización" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Nun pudo abrise'l ficheru '%s'" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Fecho" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"Esta execución d'instalación va requerir desaniciar temporalmente'l paquete " +"esencial %s por un cote de Conflictos/Pre-Dependencies. Esto normalmente ye " +"malo, pero si daveres quies facelo, activa la opción APT::Force-LoopBreak." -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Habríes d'executar 'apt-get -f install' para igualo." +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "Llinia %u enforma llarga na llista d'oríxenes %s." -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dependencies incumplíes. Téntalo usando -f." +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Desmontando'l CD-ROM...\n" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "Usando el puntu de montaxe de CD-ROM %s\n" -#: apt-private/private-output.cc:234 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Instaláu]" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Esperando'l discu...\n" -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [Instaláu]" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Montando'l CD-ROM...\n" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identificando... " -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Instaláu]" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Etiqueta guardada: %s\n" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Instaláu]" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Buscando nel discu ficheros d'índices...\n" -#: apt-private/private-output.cc:249 +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "[upgradable from: %s]" +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"Atopáu %zu indices de paquete, %zu indices de fonte, %zu indices de torna y " +"%zu firmes\n" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" +"Nun s'alcuentra dengún paquete de ficheros, seique nun ye un Discu Debian o " +"hai una arquiteutura inválida?" -#: apt-private/private-output.cc:435 -#, c-format -msgid "but %s is installed" -msgstr "pero %s ta instaláu" - -#: apt-private/private-output.cc:437 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "but %s is to be installed" -msgstr "pero %s ta pa instalar" - -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "pero nun ye instalable" +msgid "Found label '%s'\n" +msgstr "Atopóse la etiqueta: '%s'\n" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "pero ye un paquete virtual" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Esi nun ye un nome válidu; inténtalo otra vuelta.\n" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "pero nun ta instaláu" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Esti discu llámase: \n" +"'%s'\n" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "pero nun va instalase" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Copiando les llistes de paquetes..." -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " o" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Escribiendo llista nueva d'oríxenes\n" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Los siguientes paquetes nun cumplen dependencies:" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Les entraes de la llista d'oríxenes pa esti discu son:\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Van instalase los siguientes paquetes NUEVOS:" +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"El paquete %s necesita reinstalase, pero nun s'alcuentra un archivu pa el." -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Los siguientes paquetes van DESANICIASE:" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Error, pkgProblemResolver::Resolve xeneró frañadures, esto puede ser pola " +"mor de paquetes reteníos." -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Los siguientes paquetes tan reteníos:" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Nun pueden iguase los problemes; tienes paquetes frañaos reteníos." -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Los siguientes paquetes van actualizase:" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Los siguientes paquetes van DESACTUALIZASE:" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Van camudase los siguientes paquetes reteníos:" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: apt-private/private-output.cc:668 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (por %s) " +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" msgstr "" -"AVISU: Los siguientes paquetes esenciales van desaniciase.\n" -"¡Esto NUN hai que facelo si nun sabes esautamente lo que faes!" -#: apt-private/private-output.cc:707 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu actualizaos, %lu nuevos instalaos, " +msgid "Unable to parse package file %s (1)" +msgstr "Nun se pudo tratar el ficheru de paquetes %s (1)" -#: apt-private/private-output.cc:711 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinstalaos, " +msgid "Unable to parse package file %s (2)" +msgstr "Nun se pudo tratar el ficheru de paquetes %s (2)" -#: apt-private/private-output.cc:713 +#: apt-pkg/indexrecords.cc:78 #, c-format -msgid "%lu downgraded, " -msgstr "%lu desactualizaos, " +msgid "Unable to parse Release file %s" +msgstr "Nun se pudo parchear el ficheru release %s" -#: apt-private/private-output.cc:715 +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu para desaniciar y %lu nun actualizaos.\n" +msgid "No sections in Release file %s" +msgstr "Ensin seiciones nel ficheru release %s" -#: apt-private/private-output.cc:719 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu nun instalaos dafechu o desaniciaos.\n" +msgid "No Hash entry in Release file %s" +msgstr "Ensin entrada Hash nel ficheru release %s" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[S/n]" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Entrada inválida pa 'Valid-Until' nel ficheru release %s" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[s/N]" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Entrada inválida pa 'Date' nel ficheru release %s" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "S" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Llinia %lu mal formada na llista d'oríxenes %s (analís d'URI)" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Llinia %lu mal formada na llista d'oríxe %s ([opción] nun parcheable)" + +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" +"Llinia %lu mal formada na llista d'oríxenes %s ([option] enforma curtia)" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "La orde update nun lleva argumentos" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "" +"Llinia %lu mal formada na llista d'oríxenes %s ([%s] nun ye una asignación)" -#: apt-private/private-update.cc:90 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Llinia %lu mal formada na llista d'oríxenes %s ([%s] nun tien clave)" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" +"Llinia %lu mal formada na llista d'oríxenes %s ([%s] clave %s nun tien valor)" -#: apt-private/private-show.cc:156 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Llinia %lu mal formada na llista d'oríxenes %s (URI)" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Llinia %lu mal formada na llista d'oríxenes %s (dist)" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Error internu, ¡InstallPackages llamose con paquetes frañaos!" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Llinia %lu mal formada na llista d'oríxenes %s (analís d'URI)" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Fai falta desaniciar los paquetes pero desaniciar ta torgáu." +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Llinia %lu mal formada na llista d'oríxenes %s (dist absoluta)" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Error internu, ordenar nun finó" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Llinia %lu mal formada na llista d'oríxenes %s (analís de dist)" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Que raro... Los tamaños nun concasen, escribe a apt@packages.debian.org" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Abriendo %s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Hai que descargar %sB/%sB d'archivos.\n" +msgid "Malformed line %u in source list %s (type)" +msgstr "Llinia %u mal formada na llista d'oríxenes %s (triba)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Hai que descargar %sB d'archivos.\n" +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Triba '%s' desconocida na llinia %u de la llista d'oríxenes %s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Triba '%s' desconocida na llinia %u de la llista d'oríxenes %s" + +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Tres d'esta operación, van usase %sB d'espaciu de discu adicional.\n" +msgid "Release '%s' for '%s' was not found" +msgstr "Nun s'alcontró la distribución '%s' pa '%s'" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Tres d'esta operación, van lliberase %sB d'espaciu de discu.\n" +msgid "Version '%s' for '%s' was not found" +msgstr "Nun s'alcontró la versión '%s' pa '%s'" -#: apt-private/private-install.cc:200 +#: apt-pkg/cacheset.cc:603 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Nun tienes espaciu libre bastante en %s." +msgid "Couldn't find task '%s'" +msgstr "Nun pudo alcontrase la xera '%s'" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Hai problemes y utilizose -y ensin --force-yes" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Nun pudo alcontrase dengún paquete por regex '%s'" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Conseñose Trivial Only pero ésta nun ye una operación trivial." +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Nun pudo alcontrase dengún paquete por regex '%s'" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Sí, ¡facer lo que digo!" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" +"Nun pueden seleicionase versiones pal paquete'%s' como puramente virtual" -#: apt-private/private-install.cc:222 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 #, c-format msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Tas a piques de facer daqué potencialmente dañible.\n" -"Pa continuar escribe la frase '%s'\n" -" ?] " - -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Encaboxar." - -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "¿Quies continuar?" - -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Dellos ficheros nun pudieron descargase" +"Nun puede seleicionase l'instalador o versión candidata pal paquete '%s' " +"como non tien nengún d'ellos" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -"Nun pudieron algamase dellos archivos, ¿seique executando apt-get update o " -"tentando --fix-missing?" +"Nun puede seleicionase la versión más nueva pal paquete'%s' como puramente " +"virtual" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing y cambéu de mediu nun ta sofitao actualmente" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" +"Nun puede seleicionase versión candidata pal paquete %s que nun tien " +"candidata" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Nun pudieron iguase los paquetes que falten." +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"Nun puede seleicionase versión instalada pal paquete %s que nun ta instalada" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Encaboxando la instalación." +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%lid %lih %limin %lis" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -"El siguiente paquete desapareció del sistema como\n" -"tolos ficheros fueron sobroescritos por otros paquetes:" -msgstr[1] "" -"Los siguientes paquetes desaparecieron del sistema como\n" -"tolos ficheros fueron sobroescritos por otros paquetes:" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%lih %limin %lis" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Nota: Esto faise automáticamente y baxo demanda por dpkg." +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Suponse que nun vamos esborrar coses; nun pue entamase AutoRemover" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Hmm, paez que AutoRemover destruyó daqué, lo que nun tendría\n" -"por qué pasar. Por favor, unvía un informe de fallu escontra apt." +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "Escoyeta %s que nun s'atopa" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "La siguiente información pue aidar a resolver la situación:" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Nun ta usándose bloquéu pal ficheru de bloquéu de sólo llectura %s" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Error internu, AutoRemover rompió coses" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Nun puede abrise'l ficheru de bloquéu %s" -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "El siguiente paquete instalóse mou automáticu y yá nun se necesita:" -msgstr[1] "" -"Los siguientes paquetes instaláronse de manera automática y ya nun se " -"necesiten:" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Nun ta usándose bloquéu pal ficheru de bloquéu %s montáu per nfs" -#: apt-private/private-install.cc:517 +#: apt-pkg/contrib/fileutl.cc:223 #, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "El paquete %lu instalóse de mou automáticu y yá nun se necesita.\n" -msgstr[1] "" -"Los paquetes %lu instaláronse de manera automática y ya nun se necesiten\n" +msgid "Could not get lock %s" +msgstr "Nun se pudo torgar %s" -#: apt-private/private-install.cc:519 -#, fuzzy -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Usa 'apt-get autoremove' pa desinstalalos." -msgstr[1] "Usa 'apt-get autoremove' pa desinstalalos." +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Habríes d'executar 'apt-get -f install' para iguar estos:" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -"Dependencies ensin cubrir. Tenta 'apt-get -f install' ensin paquetes (o " -"conseña una solución)." -#: apt-private/private-install.cc:638 +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"Dellos paquetes nun pudieron instalase. Esto puede significar que\n" -"conseñaste una situación imposible o, si tas usando la distribución\n" -"inestable, que dellos paquetes necesarios nun se crearon o que\n" -"s'allugaron fuera d'Incoming." - -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Paquetes frañaos" - -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Instalaránse los siguientes paquetes extra:" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Paquetes afalaos:" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "El subprocesu %s recibió un fallu de segmentación." -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Paquetes encamentaos" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "El subprocesu %s recibió una señal %u." -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Saltando %s, ya ta instalau y la actualización nun ta activada.\n" +msgid "Sub-process %s returned an error code (%u)" +msgstr "El subprocesu %s devolvió un códigu d'error (%u)" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "Saltando %s, nun ta instaláu y namái se requieren anovamientos.\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "El subprocesu %s terminó de manera inesperada" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "La reinstalación de %s nun ye dable, nun pue descargase.\n" +msgid "Problem closing the gzip file %s" +msgstr "Problemes zarrando'l ficheru gzip %s" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s yá ta na versión más nueva.\n" +msgid "Could not open file %s" +msgstr "Nun se pudo abrir el ficheru %s" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Esbillada la versión %s (%s) pa %s\n" +msgid "Could not open file descriptor %d" +msgstr "Nun pudo abrise un ficheru descriptor %d" -#: apt-private/private-install.cc:899 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Esbillada la versión %s (%s) pa %s\n" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Nun pudo criase'l soprocesu IPC" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "El paquete %s nun ta instalau, nun va desaniciase\n" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Nun pudo executase'l compresor " -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/fileutl.cc:1514 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "El paquete %s nun ta instalau, nun va desaniciase\n" +msgid "read, still have %llu to read but none left" +msgstr "lleíos, entá tenía de lleer %lu pero nun queda nada" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" -"NOTA: ¡Esto sólo ye una simulación!\n" -" apt-get necesita privilexos de root pa la execución real.\n" -" ¡Ten tamién en cuenta que'l bloquéu ta desactiváu,\n" -" asina que nun dependen de la pertinencia de la verdadera situación " -"actual!" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "escritos, entá tenía d'escribir %lu pero nun pudo facerse" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "AVISU: ¡Nun pudieron autenticase los siguientes paquetes!" +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Problemes zarrando'l ficheru %s" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Avisu d'autenticación saltáu.\n" +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Hai problemes al renomar el ficheru %s a %s" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Dellos paquetes nun pudieron autenticase" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Hai problemes desvenceyando'l ficheru %s" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "¿Instalar esos paquetes ensin verificación?" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Hai problemes al sincronizar el ficheru" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Nun pudo renomase %s como %s" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... ¡Fallu!" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%c%s... Done" +msgstr "%c%s... Fecho" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Oxe " +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Fecho" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Des:" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Nun se puede facer mmap d'un ficheru baleru" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Nun pudo duplicase'l ficheru descriptor %i" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Nun se pudo facer mmap de %lu bytes" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Nun pudo zarrase mmap" + +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Nun se pudo sincronizase mmap " + +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Descargaos %sB en %s (%sB/s)\n" +msgid "Couldn't make mmap of %lu bytes" +msgstr "Nun se pudo facer mmap de %lu bytes" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Falló al francer el ficheru" + +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid " [Working]" -msgstr " [Tresnando]" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" +"Dynamic MMap escosó l'espaciu. Por favor aumenta'l tamañu de APT::Cache-" +"Start. El valor actual ye : %lu. (man 5 apt.conf)" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/mmap.cc:446 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -"Cambeu de mediu: Por favor meti'l discu etiquetáu\n" -" '%s'\n" -"na unidá '%s' y calca Intro\n" +"Nun pudó incrementase'l tamañu de MMap col llímite de %lu bytes ya torgáu" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"Nun pudó incrementase'l tamañu de MMap ya que crecer automáticamente ta " +"desactivao pol usuariu." + +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "No mirror file '%s' found " -msgstr "Nun s'alcontró ficheru espeyu '%s'" +msgid "Unable to stat the mount point %s" +msgstr "Nun puede algamase información del puntu de montaxe %s" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Nun s'alcontró ficheru espeyu '%s'" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Nun se pudo montar el CD-ROM" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Nun s'alcontró ficheru espeyu '%s'" +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Triba d'abreviatura que nun se reconoz: «%c»" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "[Mirror: %s]" -msgstr "[Espeyu: %s]" +msgid "Opening configuration file %s" +msgstr "Abriendo ficheros de configuración %s" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Falló criar un tubu IPC al soprocesu" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Fallu de sintaxis %s:%u: Nun hai un nome al entamu del bloque." -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Conexón encaboxada prematuramente" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Fallu de sintaxis %s:%u: Marca mal formada" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "¡Mal axuste por omisión!" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Fallu de sintaxis %s:%u: Puxarra extra dempués del valor" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Calca Intro pa continuar." +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "" +"Error de sintaxis %s:%u: Les directives pueden facese sólo nel nivel cimeru" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "¿Quies desaniciar los ficheros .deb descargaos previamente?" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Fallu de sintaxis %s:%u: Demasiaes inclusiones añeraes" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "" -"Ocurrieron dellos errores al desempaquetar. Los paquetes que s'instalaron " -"configurarse'l" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Fallu de sintaxis %s:%u: Incluyendo dende equí" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "van configurase. Esto pue causar errores duplicaos" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Error de sintaxis %s:%u: La directiva '%s' nun ta sofitada" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"o fallos causaos por dependencies que nun tán. Esto ta BIEN, sólo los fallos" +"Fallu de sintaxis %s:%u: Directiva llimpia requier un tres opciones como " +"argumentos" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "" -"enriba d'esti mensaxe son importante. Por favor, íguales y executa [I]nstall " -"otra vuelta" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Fallu de sintaxis %s:%u: Puxarra extra al final del ficheru" -#: dselect/update:30 -msgid "Merging available information" -msgstr "Fusionando información disponible" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "L'aniellu de claves nun s'instaló en %s." -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "Llamóse a DropNode nun nodu que ta entá enllazáu" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "La opción de llinia d'ordes '%c' [de %s] ye desconocida." -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "¡Fallu al atopar l'elementu enllazáu!" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Nun s'entiende la opción %s de la llinia d'ordes" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Falló al allugar una desvíu" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "La opción %s de la llinia d'ordes nun ye un valor booleanu" + +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "La opción %s necesita un argumentu." -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Fallu internu en AddDiversion" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Opción %s: L'axuste del elementu de configuración ha tener un =<val>." -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Intentando sobrescribir un desvíu, %s -> %s and %s/%s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "La opción %s pide un argumentu enteru, non '%s'" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Doble suma de desvíu %s -> %s" +msgid "Option '%s' is too long" +msgstr "Opción '%s' enforma llarga" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Ficheru de configuración duplicáu %s/%s" +msgid "Sense %s is not understood, try true or false." +msgstr "El sentíu %s nun s'entiende, prueba con braeru o falsu." -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The path %s is too long" -msgstr "La trayeutoria %s ye enforma llarga" +msgid "Invalid operation %s" +msgstr "Operación incorreuta: %s" -#: apt-inst/extract.cc:132 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unpacking %s more than once" -msgstr "Desempaquetando %s más d'una vegada" +msgid "Installing %s" +msgstr "Instalando %s" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The directory %s is diverted" -msgstr "El direutorio %s ta desviáu" +msgid "Configuring %s" +msgstr "Configurando %s" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "El paquete ta tentando escribir nel oxetivu desviáu %s/%s" +msgid "Removing %s" +msgstr "Desinstalando %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "La trayeutoria de desviación ye enforma llarga" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "Desinstalóse dafechu %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to stat %s" -msgstr "Nun pudo lleese %s" +msgid "Noting disappearance of %s" +msgstr "Anotando desaniciáu de %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Nun pudo renomase %s como %s" +msgid "Running post-installation trigger %s" +msgstr "Executando activador de post-instalación de %s" -#: apt-inst/extract.cc:249 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "El direutoriu %s ta reemplazándose por un non-direutoriu" +msgid "Directory '%s' missing" +msgstr "Falta'l direutoriu '%s'." -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Fallu al atopar el nodu nel so bote d'enllaz" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Nun pudo abrise'l ficheru '%s'" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "La trayeutoria ye perllarga" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Preparando %s" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Sobreescribiendo concordancia del paquete ensin versión pa %s" +msgid "Unpacking %s" +msgstr "Desempaquetando %s" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "El ficheru %s/%s sobreescribe al que ta nel paquete %s" +msgid "Preparing to configure %s" +msgstr "Preparándose pa configurar %s" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Unable to stat %s" -msgstr "Nun ye a lleer %s" +msgid "Installed %s" +msgstr "%s instaláu" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to write file %s" -msgstr "Falló la escritura nel ficheru %s" +msgid "Preparing for removal of %s" +msgstr "Preparándose pa desinstalar %s" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Failed to close file %s" -msgstr "Falló al pesllar el ficheru %s" +msgid "Removed %s" +msgstr "%s desinstaláu" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Esti nun ye un ficheru DEB válidu, falta'l miembru '%s'" +msgid "Preparing to completely remove %s" +msgstr "Preparándose pa desinstalar dafechu %s" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Error internu, nun se pue atopar el miembru %s" +msgid "Completely removed %s" +msgstr "Desinstalóse dafechu %s" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Ficheru de control inanalizable" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Robla del ficheru inválida" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Nun se pue escribir en %s" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Fallu al lleer la testera de miembru del ficheru" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Testera de miembru del archivu %s inválida" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Testera de miembru del ficheru inválida" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "El ficheru ye perpequeñu" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "Ensin informe escritu d'apport porque MaxReports llegó dafechu" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Falló al lleer les testeres del ficheru" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "problemes de dependencies - déxase ensin configurar" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Fallu al crear les tuberíes" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu que " +"siguió dende un fallu previu" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Fallu al executar gzip " +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu de " +"discu llenu" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Ficheru tollíu" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu de " +"memoria" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Falló la suma de control de tar, ficheru tollíu" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu de " +"discu llenu" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu E/S " +"dpkg" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Testera del TAR triba %u desconocida, miembru %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Nun pudó bloquease'l direutoriu d'alministración (%s), ¿hai otru procesu " +"usándolu?" + +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Nun pudo bloquiase'l direutoriu d'alministración (%s), ¿yes root?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"dpkg interrumpióse, tienes qu'executar manualmente '%s' pa iguar el " +"problema. " + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Non bloquiáu" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/bg.po b/po/bg.po index d91def5f9..44c47a862 100644 --- a/po/bg.po +++ b/po/bg.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.21\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2012-06-25 17:23+0300\n" "Last-Translator: Damyan Ivanov <dmn@debian.org>\n" "Language-Team: Bulgarian <dict@fsa-bg.org>\n" @@ -21,3257 +21,3258 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1)\n" "X-Generator: KBabel 1.11.4\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "Не се поддържа индексен файл от типа „%s“" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "Неуспех при четенето на %s" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Неуспех при преминаването в %s" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "Неуспех при получаването на атрибути на %s." - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" - -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Изпълняване на dpkg" - -#: apt-pkg/init.cc:146 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Пакетната система „%s“ не е поддържана" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Неуспех при определянето на подходяща пакетна система" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Пакетът %s версия %s има неудовлетворена зависимост:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Записани са %i записа.\n" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Общо имена на пакети : " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Записани са %i записа с %i липсващи файла.\n" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Общо пакетни структури: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Записани са %i записа с %i несъответстващи файла\n" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Нормални пакети: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "Записани са %i записа с %i липсващи и %i несъответстващи файла\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Чисти виртуални пакети: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "Не е намерен oторизационен запис за: %s" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Единични виртуални пакети: " -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "Несъответствие на контролната сума за: %s" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Смесени виртуални пакети: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Неуспех при намирането на драйвер за метод %s." +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Липсващи: " -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Проверете дали имате инсталиран пакета „dpkg-dev“.\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Общо уникални версии: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Методът %s не стартира правилно" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Общо уникални описания: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Сложете диска, озаглавен „%s“ в устройство „%s“ и натиснете „Enter“." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Общо зависимости: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "" -"Списъците с пакети или файлът за състояние не можаха да бъдат анализирани " -"или отворени." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Общо отношения версия/файл: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "" -"Може да искате да изпълните „apt-get update“, за да коригирате тези проблеми" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Общо отношения описание/файл: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Списъкът с източници не можа да бъде прочетен." +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Общо отношения „Осигурява“: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Празен кеш на пакети" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Общо разгърнати низове: " -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Файлът за кеш на пакети е повреден" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Общо пространство за зависимости по версии: " -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Файлът за кеш на пакети е несъвместима версия" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Общо празно пространство: " -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Файлът за кеш на пакети е повреден, твърде малък е" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Общо отчетено пространство: " -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Тази версия на APT не поддържа система за версии „%s“" +msgid "Package file %s is out of sync." +msgstr "Пакетният файл %s не е синхронизиран." -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Кешът на пакети е бил направен за различна архитектура" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Няма намерени пакети" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Зависи от" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Трябва да въведете поне един шаблон за търсене" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Предварително зависи от" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "Тази командата е остаряла. Използвайте „apt-mark showauto“ вместо нея." -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Предлага се" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "Пакетът %s не може да бъде намерен" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Препоръчва се" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Пакетни файлове:" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "В конфликт с" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" +"Кешът не е синхронизиран, не може да се изпълни „x-ref“ на пакетен файл" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Заменя" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Отбити пакети:" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Изважда от употреба" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(не са намерени)" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Чупи" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Инсталирана: " -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Подобрява" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Кандидат: " -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "важен" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(няма)" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "изискван" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Отбиване на пакета: " -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "стандартен" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Таблица с версиите:" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "незадължителен" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s за %s компилиран на %s %s\n" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "допълнителен" - -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Не се поддържа индексен файл от типа „%s“" +#: cmdline/apt-cache.cc:1749 +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Употреба: apt-cache [опции] команда\n" +" apt-cache [опции] showpkg пакет1 [пакет2 ...]\n" +" apt-cache [опции] showsrc пакет1 [пакет2 ...]\n" +"\n" +"apt-cache е инструмент на ниско ниво за извличане на информация от\n" +"двоичните кеш файлове на APT\n" +"\n" +"Команди:\n" +" gencaches - Генериране на кеша на пакети и пакети с изходен код\n" +" showpkg - Показване на обща информация за даден пакет\n" +" showsrc - Показване на записите за пакети с изходен код\n" +" stats - Показване на някои общи статистики\n" +" dump - Показване на целия файл в сбит вид\n" +" dumpavail - Извеждане на достъпните пакети на стандартния изход\n" +" unmet - Показване на неудовлетворените зависимости\n" +" search - Търсене в списъка с пакети за регулярен израз\n" +" show - Показване на записа за пакет\n" +" depends - Необработена информация за зависимостите на даден пакет\n" +" rdepends - Информация за обратните зависимости на даден пакет\n" +" pkgnames - Списък с имената на всички пакети, за които има информация\n" +" dotty - Генериране на графики на пакети за GraphViz\n" +" xvcg - Генериране на графики на пакети за xvcg\n" +" policy - Показване на настройките на политиката\n" +"\n" +"Опции:\n" +" -h Този помощен текст.\n" +" -p=? Кешът за пакети.\n" +" -s=? Кешът за пакети с изходен код.\n" +" -q Премахване на индикатора за напредък.\n" +" -i Показване само на важни зависимости при командата „unmet“.\n" +" -c=? Указване на файл с настройки.\n" +" -o=? Настройване на произволна конфигурационна опция, например -o dir::" +"cache=/tmp\n" +"За повече информация вижте наръчниците apt-cache(8) и apt.conf(5).\n" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Грешка при компилирането на регулярния израз - %s" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Укажете име за този диск, например „Debian 5.0.3 Disk1“" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Кешът има несъвместима система за версии" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Сложете диск в устройството и натиснете „Enter“" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Възникна грешка при обработката на %s (%s%d)" +msgid "Failed to mount '%s' to '%s'" +msgstr "Неуспех при монтиране на %s на %s" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"Еха, надхвърлихте броя имена на пакети, на който е способна тази версия на " -"APT." -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Еха, надхвърлихте броя версии, на който е способна тази версия на APT." +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Повторете този процес за останалите дискове от комплекта." -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "" -"Еха, надхвърлихте броя описания, на който е способна тази версия на APT." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Аргументите не са по двойки" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -"Еха, надхвърлихте броя зависимости, на който е способна тази версия на APT." +"Употреба: apt-config [опции] команда\n" +"\n" +"apt-config е опростен инструмент за четене на конфигурационния файл на APT\n" +"\n" +"Команди:\n" +" shell - Режим с обвивка\n" +" dump - Показва конфигурацията\n" +"\n" +"Опции:\n" +" -h Този помощен текст.\n" +" -c=? Четене на този конфигурационен файл.\n" +" -o=? Настройване на произволна конфигурационна опция, т.е. -o dir::cache=/" +"tmp\n" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "Пакетът %s %s не беше открит при обработката на файла със зависимости" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Не са намерен пакети, отговарящ на регулярния израз „%s“" -#: apt-pkg/pkgcachegen.cc:1211 +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Не са намерен пакети, отговарящ на регулярния израз „%s“" + +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Не са намерен пакети, отговарящ на регулярния израз „%s“" + +#: cmdline/apt-get.cc:367 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "" -"Неуспех при получаването на атрибути на списъка с пакети с изходен код %s" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Използване на пакет източник „%s“ вместо „%s“\n" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Четене на списъците с пакети" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Игнориране на несъществуваща версия „%s“ на пакета „%s“" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Събиране на информация за „Осигурява“" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Неуспех при намирането на пакет %s" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Unable to write to %s" -msgstr "Неуспех при записа на %s" +msgid "%s set to manually installed.\n" +msgstr "%s е отбелязан като ръчно инсталиран.\n" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Входно/изходна грешка при запазването на кеша на пакети с изходен код" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s е отбелязан като автоматично инсталиран.\n" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "Изпращане на сценарий към програмата за удовлетворяване на зависимости" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" +"Тази команда е остаряла. Вместо нея използвайте „apt-mark auto“ и „apt-mark " +"manual“." -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "Изпращане на заявка към програмата за удовлетворяване на зависимости" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Вътрешна грешка, „problem resolver“ счупи нещо в системата" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "Подготовка за приемане на решение" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Неуспех при заключването на директорията за изтегляне" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Трябва да укажете поне един пакет за изтегляне на изходния му код" + +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "Неуспех при намирането на изходен код на пакет %s" + +#: cmdline/apt-get.cc:786 +#, c-format +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"Външната програма за удовлетворяване на зависимости се провали без да изведе " -"съобщение за грешка" +"Пакетирането на „%s“ се разработва в система за контрол на версиите „%s“ на " +"адрес:\n" +"%s\n" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "Изпълняване на външна програма за удовлетворяване на зависимости" +#: cmdline/apt-get.cc:791 +#, c-format +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"Използвайте:\n" +"bzr branch %s\n" +"за да изтеглите последните промени в пакета (евентуално в процес на " +"разработка).\n" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:843 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "преименуването се провали, %s (%s -> %s)." +msgid "Skipping already downloaded file '%s'\n" +msgstr "Пропускане на вече изтегления файл „%s“\n" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Несъответствие на контролната сума" +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#, c-format +msgid "Couldn't determine free space in %s" +msgstr "Неуспех при определянето на свободното пространство в %s" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Несъответствие на размера" +#: cmdline/apt-get.cc:882 +#, c-format +msgid "You don't have enough free space in %s" +msgstr "Нямате достатъчно свободно пространство в %s" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Невалидна операция %s" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 +#, c-format +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Необходимо е да се изтеглят %sB/%sB архиви изходен код.\n" -#: apt-pkg/acquire-item.cc:1573 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +msgid "Need to get %sB of source archives.\n" +msgstr "Необходимо е да се изтеглят %sB архиви изходен код.\n" + +#: cmdline/apt-get.cc:902 +#, c-format +msgid "Fetch source %s\n" +msgstr "Изтегляне на изходен код %s\n" + +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Неуспех при изтеглянето на някои архиви." + +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Изтеглянето завърши в режим само на изтегляне" + +#: cmdline/apt-get.cc:950 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -"Не може да се открие елемент „%s“ във файла Release (объркан ред в sources." -"list или повреден файл)" +"Пропускане на разпакетирането на вече разпакетирания изходен код в %s\n" -#: apt-pkg/acquire-item.cc:1589 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Не е открита контролна сума за „%s“ във файла Release" +msgid "Unpack command '%s' failed.\n" +msgstr "Командата за разпакетиране „%s“ пропадна.\n" -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Няма налични публични ключове за следните идентификатори на ключове:\n" +#: cmdline/apt-get.cc:964 +#, c-format +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Проверете дали имате инсталиран пакета „dpkg-dev“.\n" -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:992 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +msgid "Build command '%s' failed.\n" +msgstr "Командата за компилиране „%s“ пропадна.\n" + +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Процесът-потомък пропадна" + +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" msgstr "" -"Файлът със служебна информация за „%s“ е остарял (валиден до %s). Няма да се " -"прилагат обновявания от това хранилище." +"Трябва да укажете поне един пакет за проверка на зависимости за компилиране" -#: apt-pkg/acquire-item.cc:1691 +#: cmdline/apt-get.cc:1055 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Конфликт в дистрибуцията: %s (очаквана: %s, намерена: %s)" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" +"Липсва информация за архитектурата %s. Прегледайте информацията за APT::" +"Architectures в apt.conf(5)." -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" +msgid "Unable to get build-dependency information for %s" msgstr "" -"Грешка при проверка на цифровия подпис. Хранилището не е обновено и ще се " -"използват старите индексни файлове. Грешка от GPG: %s: %s\n" +"Неуспех при получаването на информация за зависимостите за компилиране на %s" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "GPG error: %s: %s" -msgstr "Грешка от GPG: %s: %s" +msgid "%s has no build depends.\n" +msgstr "%s няма зависимости за компилиране.\n" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:1272 #, c-format msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" msgstr "" -"Неуспех при намирането на файл за пакет %s. Това може да означава, че трябва " -"ръчно да оправите този пакет (поради пропусната архитектура)." - -#: apt-pkg/acquire-item.cc:1925 -#, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "Не е открит източник, от който да се изтегли версия „%s“ на „%s“" +"Зависимост %s за пакета %s не може да бъде удовлетворена, %s не се позволява " +"за пакети „%s“" -#: apt-pkg/acquire-item.cc:1983 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"The package index files are corrupted. No Filename: field for package %s." +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -"Индексните файлове на пакета са повредени. Няма поле Filename: за пакет %s." +"Зависимост %s за пакета %s не може да бъде удовлетворена, понеже пакета %s " +"не може да бъде намерен" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Блокът на производителя %s не съдържа отпечатък" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"Неуспех при удовлетворяването на зависимост %s за пакета %s: Инсталираният " +"пакет %s е твърде нов" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: cmdline/apt-get.cc:1352 #, c-format -msgid "List directory %spartial is missing." -msgstr "Директорията със списъци %spartial липсва." +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"Зависимост %s за пакета %s не може да бъде удовлетворена, понеже версията " +"кандидат на пакета %s не може да удовлетвори изискването за версия" -#: apt-pkg/acquire.cc:91 +#: cmdline/apt-get.cc:1358 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Директорията за архиви %spartial липсва." +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"Зависимост %s за пакета %s не може да бъде удовлетворена, понеже пакета %s " +"няма подходящи версии" -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Unable to lock directory %s" -msgstr "Неуспех при заключване на директорията %s" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Неуспех при удовлетворяването на зависимост %s за пакета %s: %s" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Изтегляне на файл %li от %li (остават %s)" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Зависимостите за компилиране на %s не можаха да бъдат удовлетворени." -#: apt-pkg/acquire.cc:904 -#, c-format -msgid "Retrieving file %li of %li" -msgstr "Изтегляне на файл %li от %li" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Неуспех при обработката на зависимостите за компилиране" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Неуспех при изтеглянето на %s %s\n" - -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Някои индексни файлове не можаха да бъдат изтеглени. Те са пренебрегнати или " -"са използвани по-стари." +msgid "Changelog for %s (%s)" +msgstr "Журнал на промените в %s (%s)" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Трябва да добавите адреси-URI от тип „source“ в sources.list" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Поддържани модули:" -#: apt-pkg/policy.cc:83 -#, c-format +#: cmdline/apt-get.cc:1633 msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"Стойността „%s“ на APT::Default-Release не е правилна, понеже в източниците " -"няма такова издание" - -#: apt-pkg/policy.cc:422 -#, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Невалиден запис във файла с настройки %s, липсва заглавна част Package" +"Употреба: apt-get [опции] команда\n" +" apt-get [опции] install|remove пакет1 [пакет2 ...]\n" +" apt-get [опции] source пакет1 [пакет2 ...]\n" +"\n" +"apt-get е опростен интерфейс за командния ред за изтегляне и\n" +"инсталиране на пакети. Най-често използваните команди са „update“\n" +"и „install“.\n" +"\n" +"Команди:\n" +" update - Изтегляне на нови списъци с пакети\n" +" upgrade - Обновяване на системата\n" +" install - Инсталиране на нови пакети (пакет е libc6, а не libc6.deb)\n" +" remove - Премахване на пакети\n" +" autoremove - Автоматично премахване на всички неизползвани пакети\n" +" purge - Премахване на пакети, включително файловете им с настройки\n" +" source - Изтегляне на изходен код на пакети\n" +" build-dep - Конфигуриране на зависимостите за компилиране на пакети от\n" +" изходен код\n" +" dist-upgrade - Обновяване на дистрибуцията, вж. apt-get(8)\n" +" dselect-upgrade - Следване на избора на dselect\n" +" clean - Изтриване на изтеглените файлове\n" +" autoclean - Изтриване на стари изтеглени файлове\n" +" check - Проверка за неудовлетворени зависимости\n" +" changelog - Изтегляне и показване на журнала с промени в даден пакет\n" +" download - Изтегляне на двоичен пакет в текущата директория\n" +"\n" +"Опции:\n" +" -h Този помощен текст.\n" +" -q Изход на съобщения, подходящи за журнал - без индикатор на напредъка\n" +" -qq Без извеждане на съобщения, освен при грешки\n" +" -d Само изтегляне - БЕЗ инсталиране или разпакетиране на архивите\n" +" -s Без действие. Симулиране на действията.\n" +" -y Отговаряне с „Да“ на всички въпроси, без питане\n" +" -f Опит за поправяне на неудовлетворени зависимости\n" +" -m Опит за продължаване дори и ако архивите са неоткриваеми\n" +" -u Показване и на списък с пакетите за актуализиране\n" +" -b Компилиране на изходния код на пакета след изтеглянето му\n" +" -V Показване на подробна информация за версиите\n" +" -c=? Четене на този конфигурационен файл\n" +" -o=? Настройване на произволна конфигурационна опция,\n" +" напр. -o dir::cache=/tmp\n" +"Вижте наръчниците за apt-get(8), sources.list(5) и apt.conf(5) за повече\n" +"информация и опции.\n" +" Това APT има Върховни Сили.\n" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Неизвестен тип за отбиване %s" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Трябва да укажете поне един пакет за изтегляне на изходния му код" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Няма указан приоритет (или е нула) на отбиването" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: cmdline/apt-helper.cc:66 msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Неуспех при незабавната настройка на „%s“. За повече информация вижте " -"информацията за APT::Immediate-Configure в „man 5 apt.conf“. (%d)" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Could not configure '%s'. " -msgstr "Неуспех при конфигуриране на „%s“. " +msgid "%s can not be marked as it is not installed.\n" +msgstr "Пакетът „%s“ не може да бъде маркиран, защото не е инсталиран.\n" -#: apt-pkg/packagemanager.cc:583 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." -msgstr "" -"В следствие на циклични зависимости от типа „В конфликт с/Предварително " -"зависи от“, за да се продължи инсталацията трябва да се премахне необходимия " -"пакет %s. Това често е лошо, но ако наистина искате да го направите, " -"активирайте опцията APT::Force-LoopBreak." +msgid "%s was already set to manually installed.\n" +msgstr "Пакетът „%s“ вече е отбелязан като ръчно инсталиран.\n" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "Line %u too long in source list %s." -msgstr "Ред %u в списъка с източници %s е твърде дълъг." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Демонтиране на CD-ROM...\n" +msgid "%s was already set to automatically installed.\n" +msgstr "Пакетът „%s“ вече е отбелязан като автоматично инсталиран.\n" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Използване на точка за монтиране на CD-ROM %s\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Чакане за диск...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Монтиране на CD-ROM...\n" - -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Идентифициране..." +msgid "%s was already set on hold.\n" +msgstr "Пакетът „%s“ вече е задуржан.\n" -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Stored label: %s\n" -msgstr "Запазен етикет: %s \n" - -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Сканиране на диска за индексни файлове...\n" +msgid "%s was already not hold.\n" +msgstr "Пакетът „%s“ вече е задържан.\n" -#: apt-pkg/cdrom.cc:734 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Намерени са %zu индекса на пакети, %zu индекса на пакети с изходен код, %zu " -"индекса с преводи и %zu подписа.\n" - -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"Не са намерени файлове с пакети. Мое би дискът не е с Дебиан или е за " -"погрешна компютърна архитектура." +msgid "Waited for %s but it wasn't there" +msgstr "Изчака се завършването на %s, но той не беше пуснат" -#: apt-pkg/cdrom.cc:771 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Found label '%s'\n" -msgstr "Намерен е етикет „%s“\n" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Това не е валидно име, опитайте отново.\n" +msgid "%s set on hold.\n" +msgstr "Пакетът „%s“ е задържан.\n" -#: apt-pkg/cdrom.cc:817 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Наименование на този диск: \n" -"„%s“\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Копиране на списъците с пакети..." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Запазване на новия списък с източници\n" +msgid "Canceled hold on %s.\n" +msgstr "Отмяна на задържането на пакета „%s“.\n" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Записите в списъка с източници за този диск са:\n" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "Неуспех при изпълняване на dpkg. Имате ли административни права?" -#: apt-pkg/algorithms.cc:265 -#, c-format +#: cmdline/apt-mark.cc:392 +#, fuzzy msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -"Пакетът %s трябва да бъде преинсталиран, но не може да се намери архив за " -"него." +"Употреба: apt-mark [опции] {auto|manual} пкт1 [пкт2 …]\n" +"\n" +"apt-mark предоставя команден интерфейс за маркиране на пакети\n" +"като инсталирани ръчно или автоматично. Предлага се и показване\n" +"на текущата маркировка.\n" +"\n" +"Команди:\n" +" auto — Маркиране на пакети като инсталирани автоматично\n" +" manual — Маркиране на пакети като инсталирани ръчно\n" +"\n" +"Опции:\n" +" -h Тази помощна информация\n" +" -q Изход без информация за напредъка, подходящ за съхраняване\n" +" -qq Без изход, освен при грешки\n" +" -s Симулация. Само се извежда какво би било направено\n" +" -f Четене/запис на информацията за маркировката от указания файл\n" +" -c=? Указване на файл с настройки\n" +" -o=? Указване на произволна настройка, напр. -o dir::cache=/tmp\n" +"За повече информация прегледайте ръководствата apt-mark(8) и apt.conf(5)." -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt.cc:47 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Грешка, pkgProblemResolver::Resolve генерира повреди, това може да е " -"причинено от задържани пакети." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -"Неуспех при коригирането на проблемите, имате задържани счупени пакети." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Изграждане на дървото със зависимости" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Версии кандидати" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Генериране на зависимости" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Неуспех при четенето на базата %s със CD-ROM" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Четене на информацията за състоянието" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" +msgstr "" +"Използвайте „apt-cdrom“, за да може този CD-ROM да се разпознава от APT. " +"„apt-get update“ не може да се използва за добавяне на нови дискове" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Неуспех при отварянето на StateFile %s" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Грешен CD-ROM" -#: apt-pkg/depcache.cc:256 +#: methods/cdrom.cc:249 #, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Неуспех при запис на временен StateFile %s" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Неуспех при демонтирането на CD-ROM в %s, може все още да се използва." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Неуспех при анализирането на пакетен файл %s (1)" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Дискът не е намерен." -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Неуспех при анализирането на пакетен файл %s (2)" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Файлът не е намерен" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Не е намерено издание „%s“ на „%s“" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Неуспех при получаването на атрибути" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Не е намерена версия „%s“ на „%s“" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Неуспех при задаването на време на промяна" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "Пакетът %s не може да бъде намерен" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Невалиден адрес-URI, локалните адреси-URI не трябва да започват с „//“" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Неуспех при намиране на задача „%s“" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Влизане" -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Не са намерен пакети, отговарящ на регулярния израз „%s“" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Неуспех при установяването на името на отдалечения сървър" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Не са намерен пакети, отговарящ на регулярния израз „%s“" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Неуспех при установяването на локалното име" -#: apt-pkg/cacheset.cc:626 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "Не е възможно избиране на версия за пакета „%s“ понеже е виртуален" +msgid "The server refused the connection and said: %s" +msgstr "Сървърът отказа свързване и съобщи: %s" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: methods/ftp.cc:225 #, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" -"Не е възможно избиране на инсталирана или кандидат версия за пакета „%s“ " -"понеже той няма нито едната" +msgid "USER failed, server said: %s" +msgstr "USER се провали, сървърът съобщи: %s" -#: apt-pkg/cacheset.cc:647 +#: methods/ftp.cc:232 #, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"Не е възможно избиране на на последната версия за пакета „%s“, защото е " -"виртуален" +msgid "PASS failed, server said: %s" +msgstr "PASS се провали, сървърът съобщи: %s" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -"Не е възможно избиране на кандидат-версия за пакета „%s“, защото няма " -"подходящ кандидати" +"Беше указан сървър-посредник, но няма скрипт за влизане, Acquire::ftp::" +"ProxyLogin е празен." -#: apt-pkg/cacheset.cc:663 +#: methods/ftp.cc:280 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" -"Не е възможно избиране на инсталирана версия на пакета „%s“, защото не е " -"инсталиран" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Командата „%s“ на скрипта за влизане се провали, сървърът съобщи: %s" -#: apt-pkg/indexrecords.cc:78 +#: methods/ftp.cc:306 #, c-format -msgid "Unable to parse Release file %s" -msgstr "Неуспех при анализиране на файл Release %s" +msgid "TYPE failed, server said: %s" +msgstr "TYPE се провали, сървърът съобщи: %s" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "Във файла Release %s липсват раздели" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Допустимото време за свързването изтече" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Във файла Release %s липсва контролна сума" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Сървърът разпадна връзката" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Неправилна стойност за „Valid-Until“ във файла Release %s" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Грешка при четене" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Неправилна стойност за „Date“ във файла Release %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Отговорът препълни буфера." -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Лошо форматиран ред %lu в списъка с източници %s (анализ на адрес-URI)" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Развален протокол" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"Лошо форматиран ред %lu в списъка с източници %s (неразбираема [опция])" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Грешка при запис" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "" -"Лошо форматиран ред %lu в списъка с източници %s (твърде кратка [опция])" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Неуспех при създаването на гнездо" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" msgstr "" -"Лошо форматиран ред %lu в списъка с източници %s ([%s] не е присвояване)" - -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Лошо форматиран ред %lu в списъка с източници %s (липсва ключ в [%s])" +"Неуспех при свързването на гнездо за данни, допустимото време за свързване " +"изтече" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Лошо форматиран ред %lu в списъка с източници %s ([%s] ключът %s няма " -"стойност)" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Неуспех" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Лошо форматиран ред %lu в списъка с източници %s (адрес-URI)" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Неуспех при свързването на пасивно гнездо." -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Лошо форматиран ред %lu в списъка с източници %s (дистрибуция)" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo не успя да се добере до слушащо гнездо" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Лошо форматиран ред %lu в списъка с източници %s (анализ на адрес-URI)" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Неуспех при свързването на гнездо" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "" -"Лошо форматиран ред %lu в списъка с източници %s (неограничена дистрибуция)" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Неуспех при слушането на гнездото" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "" -"Лошо форматиран ред %lu в списъка с източници %s (анализ на дистрибуция)" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Неуспех при определянето на името на гнездото" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Отваряне на %s" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Неуспех при изпращането на командата PORT" -#: apt-pkg/sourcelist.cc:371 +#: methods/ftp.cc:802 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Лошо форматиран ред %u в списъка с източници %s (тип)" +msgid "Unknown address family %u (AF_*)" +msgstr "Неизвестно семейство адреси %u (AF_*)" -#: apt-pkg/sourcelist.cc:375 +#: methods/ftp.cc:811 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Типът „%s“ на ред %u в списъка с източници %s е неизвестен." - -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Типът „%s“ на ред %u в списъка с източници %s е неизвестен." +msgid "EPRT failed, server said: %s" +msgstr "EPRT се провали, сървърът съобщи: %s" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Инсталиране на %s" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Времето за установяване на връзка с гнездо за данни изтече" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Конфигуриране на %s" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Невъзможно е да се приеме свързването" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Премахване на %s" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Проблем при хеширане на файла" -#: apt-pkg/deb/dpkgpm.cc:98 +#: methods/ftp.cc:890 #, c-format -msgid "Completely removing %s" -msgstr "Окончателно премахване на %s" +msgid "Unable to fetch file, server said '%s'" +msgstr "Неуспех при изтеглянето на файла, сървърът съобщи „%s“" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "Отбелязване на изчезването на %s" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Времето за връзка с гнездо за данни изтече" -#: apt-pkg/deb/dpkgpm.cc:100 +#: methods/ftp.cc:935 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Изпълнение на тригер след инсталиране %s" +msgid "Data transfer failed, server said '%s'" +msgstr "Неуспех при прехвърлянето на данни, сървърът съобщи: „%s“" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Директорията „%s“ липсва" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Запитване" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "Неуспех при отваряне на файла „%s“" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Неуспех при извикването на " -#: apt-pkg/deb/dpkgpm.cc:989 +#: methods/connect.cc:76 #, c-format -msgid "Preparing %s" -msgstr "Подготвяне на %s" +msgid "Connecting to %s (%s)" +msgstr "Свързване с %s (%s)" -#: apt-pkg/deb/dpkgpm.cc:990 +#: methods/connect.cc:87 #, c-format -msgid "Unpacking %s" -msgstr "Разпакетиране на %s" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/deb/dpkgpm.cc:995 +#: methods/connect.cc:94 #, c-format -msgid "Preparing to configure %s" -msgstr "Подготвяне на %s за конфигуриране" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Неуспех при създаването на гнездо за %s (f=%u t=%u p=%u)" -#: apt-pkg/deb/dpkgpm.cc:997 +#: methods/connect.cc:100 #, c-format -msgid "Installed %s" -msgstr "%s е инсталиран" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Не може да се започне свързване с %s:%s (%s)." -#: apt-pkg/deb/dpkgpm.cc:1002 +#: methods/connect.cc:108 #, c-format -msgid "Preparing for removal of %s" -msgstr "Подготвяне за премахване на %s" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Неуспех при свързване с %s:%s (%s), допустимото време изтече" -#: apt-pkg/deb/dpkgpm.cc:1004 +#: methods/connect.cc:126 #, c-format -msgid "Removed %s" -msgstr "%s е премахнат" +msgid "Could not connect to %s:%s (%s)." +msgstr "Неуспех при свързване с %s:%s (%s)." -#: apt-pkg/deb/dpkgpm.cc:1009 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Подготовка за пълно премахване на %s" +msgid "Connecting to %s" +msgstr "Свързване с %s" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Completely removed %s" -msgstr "%s е напълно премахнат" +msgid "Could not resolve '%s'" +msgstr "Неуспех при намирането на IP адреса на „%s“" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: methods/connect.cc:205 +#, c-format +msgid "Temporary failure resolving '%s'" +msgstr "Временен неуспех при намирането на IP адреса на „%s“" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#: methods/connect.cc:209 #, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Неуспех при записа на %s" - -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +msgid "System error resolving '%s:%s'" +msgstr "Нещо лошо се случи при намирането на IP адреса на „%s:%s“ (%i - %s)" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/connect.cc:211 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Изчака се завършването на %s, но той не беше пуснат" - -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "Операцията е прекъсната" - -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" -"Поради достигане на максималния брой доклади (MaxReports) не е записан нов " -"доклад за зависимостите." - -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "отлагане на настройката поради неудовлетворени зависимости" - -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"Доклад за зависимостите не е записан защото съобщението за грешка е породено " -"от друга грешка." +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Нещо лошо се случи при намирането на IP адреса на „%s:%s“ (%i - %s)" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Доклад за зависимостите не е записан защото грешката е причинена от " -"недостатъчно дисково пространство" +#: methods/connect.cc:258 +#, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Неуспех при свързване с %s:%s:" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: methods/gpgv.cc:168 msgid "" -"No apport report written because the error message indicates a out of memory " -"error" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Доклад за зависимостите не е записан защото грешката е причинена от " -"недостатъчна оперативна памет" +"Вътрешна грешка: Валиден подпис, но не може да се провери отпечатъка на " +"ключа?!" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" -"Доклад за зависимостите не е записан защото грешката е причинена от " -"недостатъчно дисково пространство" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Намерен е поне един невалиден подпис." -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"Доклад за зависимостите не е записан поради входно-изходна грешка с dpkg" +"Неуспех при изпълнение на „gpgv“ за проверка на подписа (инсталиран ли е " +"gpgv?)" -#: apt-pkg/deb/debsystem.cc:91 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"Неуспех при заключване на административната директория (%s). Може би се " -"използва от друг процес?" -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "" -"Неуспех при заключване на административната директория (%s). Може би липсват " -"административни права?" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Неизвестна грешка при изпълнението на gpgv" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Следните подписи са невалидни:\n" + +#: methods/gpgv.cc:231 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -"Процесът dpkg е беше прекъснат. Проблемът трябва да се коригира чрез ръчно " -"изпълнение на „%s“." - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Без заключване" - -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%liд %liч %liм %liс" - -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%liч %liм %liс" +"Следните подписи не можаха да бъдат проверени, защото публичния ключ не е " +"наличен:\n" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%liм %liс" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Празни файлове не могат да бъдат валидни архиви" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%liс" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Грешка при записа на файла" -#: apt-pkg/contrib/strutl.cc:1243 -#, c-format -msgid "Selection %s not found" -msgstr "Изборът %s не е намерен" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Грешка при четене от сървъра. Отдалеченият сървър прекъсна връзката" -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "" -"Не се използва заключване за файл за заключване %s, който е само за четене" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Грешка при четене от сървъра" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Неуспех при отварянето на файл за заключване %s" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Грешка при записа на файл" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "" -"Не се използва заключване за файл за заключване %s, който е монтиран по NFS" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Неуспех на избора" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Неуспех при достъпа до заключване %s" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Допустимото време за свързване изтече" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "Не може да се създаде списък от файлове, защото „%s“ не е директория" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Грешка при записа на изходен файл" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "Пропускане на „%s“ в директорията „%s“, понеже не е обикновен файл" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Чакане на заглавни части" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "Пропускане на файла „%s“ в директорията „%s“, понеже няма разширение" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Невалиден ред на заглавна част" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" -msgstr "" -"Пропускане на файла „%s“ в директорията „%s“, понеже разширението му е грешно" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "HTTP сървърът изпрати невалидна заглавна част като отговор" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Нарушение на защитата на паметта (segmentation fault) в подпроцеса %s." +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "HTTP сървърът изпрати невалидна заглавна част „Content-Length“" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "Под-процесът %s получи сигнал %u." +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "HTTP сървърът изпрати невалидна заглавна част „Content-Range“" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Подпроцесът %s върна код за грешка (%u)" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "HTTP сървърът няма поддръжка за прехвърляне на фрагменти на файлове" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Подпроцесът %s завърши неочаквано" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Неизвестен формат на дата" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Грешка при запис" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Невалидни данни на заглавната част" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Проблем при затваряне на компресираният файл %s (gzip)" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Неуспех при свързването" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Неуспех при отварянето на файла %s" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Вътрешна грешка" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "Неуспех при отварянето на файлов манипулатор %d" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Неуспех при създаването на подпроцес IPC" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Вътрешна грешка, „InstallPackages“ е предизвикано при счупени пакети!" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Неуспех при изпълнението на компресиращата програма " +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Трябва да бъдат премахнати пакети, но премахването е изключено." -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Грешка при четене" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Вътрешна грешка, „Ordering“ не завърши" -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" -"грешка при четене, все още има %llu за четене, но няма нито един останал" - -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "грешка при запис, все още име %llu за запис, но не успя" +"Странно... Размерите не съвпадат, изпратете е-поща на apt@packages.debian.org" -#: apt-pkg/contrib/fileutl.cc:1915 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Problem closing the file %s" -msgstr "Проблем при затваряне на файла %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Необходимо е да се изтеглят %sB/%sB архиви.\n" -#: apt-pkg/contrib/fileutl.cc:1927 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Проблем при преименуване на файла %s на %s" +msgid "Need to get %sB of archives.\n" +msgstr "Необходимо е да се изтеглят %sB архиви.\n" -#: apt-pkg/contrib/fileutl.cc:1938 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "Problem unlinking the file %s" -msgstr "Проблем при изтриване на файла %s" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Проблем при синхронизиране на файла" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "" +"След тази операция ще бъде използвано %sB допълнително дисково " +"пространство.\n" -#: apt-pkg/contrib/progress.cc:148 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Грешка!" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "След тази операция ще бъде освободено %sB дисково пространство.\n" -#: apt-pkg/contrib/progress.cc:150 +#: apt-private/private-install.cc:200 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Готово" +msgid "You don't have enough free space in %s." +msgstr "Нямате достатъчно свободно пространство в %s." -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Има проблеми и „-y“ е използвано без „--force-yes“" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Готово" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Указано е „Trivial Only“, но това не е тривиална операция." -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Невъзможно е да се прехвърли в паметта празен файл" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Да, прави каквото казвам!" -#: apt-pkg/contrib/mmap.cc:111 +#: apt-private/private-install.cc:222 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Неуспех при дублиране на файлов манипулатор %i" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"На път сте да направите нещо потенциално опасно.\n" +"За да продължите, въведете фразата „%s“\n" +" ?] " -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Неуспех при прехвърлянето в паметта на %llu байта" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Прекъсване." -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Неуспех при затваряне на mmap" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Искате ли да продължите?" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Неуспех при синхронизирането на mmap" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Някои файлове не можаха да бъдат изтеглени" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Неуспех при прехвърлянето в паметта на %lu байта" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"Неуспех при изтеглянето на някои архиви, може да изпълните „apt-get update“ " +"или да опитате с „--fix-missing“?" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Неуспех при отрязване на края на файла" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "„--fix-missing“ и превключване на носители не се поддържа все още" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Неуспех при коригирането на липсващите пакети." + +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Прекъсване на инсталирането." + +#: apt-private/private-install.cc:366 msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" -msgstr "" -"Недостатъчна памет за MMap. Увеличете стойността на променливата APT::Cache-" -"Start. Текуща стойност: %lu (man 5 apt.conf)" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"Следният пакет е отстранен от системата поради препокриване на всичките му " +"файлове от други пакети:" +msgstr[1] "" +"Следните пакети са отстранени от системата поради препокриване на всичките " +"им файлове от други пакети:" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Това се прави автоматично от dpkg." + +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Не би трябвало да се изтрива. AutoRemover няма да бъде стартиран" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format +#: apt-private/private-install.cc:499 msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Неуспех при увеличаване на паметта за MMap. Достигнато е текущото " -"ограничение от %lu байта." +"Хм, изглежда AutoRemover скапа нещо, а това не би трябвало\n" +"да се случва. Съобщете за грешка в пакета apt." -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" msgstr "" -"Неуспех при увеличаване на паметта за MMap. Автоматичното увеличаване е " -"забранено от потребителя." - -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Неуспех при намирането на атрибутите на точка за монтиране %s" - -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Неуспех при намирането на атрибутите на cdrom" +"Следната информация може да помогне за намиране на изход от ситуацията:" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Неизвестен тип на абревиатура: „%c“" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Вътрешна грешка, AutoRemover счупи нещо в системата" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Отваряне на конфигурационен файл %s" +#: apt-private/private-install.cc:513 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "Следният пакет е бил инсталиран автоматично и вече не е необходим:" +msgstr[1] "" +"Следните пакети са били инсталирани автоматично и вече не са необходими:" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-private/private-install.cc:517 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Синтактична грешка %s:%u: В началото на блока няма име." +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "%lu пакет е бил инсталиран автоматично и вече не е необходим:\n" +msgstr[1] "" +"%lu пакета са били инсталирани автоматично и вече не са необходими:\n" -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Синтактична грешка %s:%u: Лошо форматиран таг" +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Използвайте „apt-get autoremove“ за да го премахнете." +msgstr[1] "Използвайте „apt-get autoremove“ за да ги премахнете." -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Синтактична грешка %s:%u: Излишни символи след стойността" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Възможно е да изпълните „apt-get -f install“, за да коригирате:" -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"Синтактична грешка %s:%u: Директиви могат да се задават само в най-горното " -"ниво" - -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Синтактична грешка %s:%u: Твърде много вложени „include“" - -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Синтактична грешка %s:%u: Извикан „include“ оттук" - -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Синтактична грешка %s:%u: Неподдържана директива „%s“" +"Неудовлетворени зависимости. Опитайте „apt-get -f install“ без пакети (или " +"укажете разрешение)." -#: apt-pkg/contrib/configuration.cc:900 -#, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." msgstr "" -"Синтактична грешка %s:%u: директивата clear изисква аргумент дърво от опции" +"Някои пакети не можаха да бъдат инсталирани. Това може да означава,\n" +"че сте изискали невъзможна ситуация или ако използвате нестабилната\n" +"дистрибуция, че някои необходими пакети още не са създадени или пък\n" +"са били преместени от Incoming." -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Синтактична грешка %s:%u: Излишни символи в края на файла" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Счупени пакети" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, c-format -msgid "No keyring installed in %s." -msgstr "В %s няма инсталиран ключодържател." +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Следните допълнителни пакети ще бъдат инсталирани:" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Неизвестна опция за команден ред „%c“ [от %s]." +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Предложени пакети:" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "Опцията за команден ред %s не е разпозната" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Препоръчвани пакети:" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-private/private-install.cc:825 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Опцията за команден ред %s не е булева" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Пропускане на %s, вече е инсталиран и не е маркиран за актуализация.\n" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-private/private-install.cc:829 #, c-format -msgid "Option %s requires an argument." -msgstr "Опция %s изисква аргумент." +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"Пропускане на %s, който не е инсталиран при заявени само обновявания.\n" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-private/private-install.cc:841 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Опция %s: Значението трябва да има =<val>." +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Преинсталацията на %s не е възможна, не може да бъде изтеглен.\n" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-private/private-install.cc:846 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Опция %s изисква аргумент цяло число, не „%s“" +msgid "%s is already the newest version.\n" +msgstr "%s вече е най-новата версия.\n" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-private/private-install.cc:894 #, c-format -msgid "Option '%s' is too long" -msgstr "Опция „%s“ е твърде дълга" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Избрана е версия %s (%s) за %s\n" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-private/private-install.cc:899 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Смисълът %s не е ясен, опитайте true или false." +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Избрана е версия „%s“ (%s) за „%s“ заради „%s“\n" -#: apt-pkg/contrib/cmndline.cc:391 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Invalid operation %s" -msgstr "Невалидна операция %s" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "" +"Пакетът „%s“ не е инсталиран, така че не е премахнат. Може би имахте предвид " +"„%s“?\n" -#: cmdline/apt-cache.cc:149 +#: apt-private/private-install.cc:947 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Пакетът %s версия %s има неудовлетворена зависимост:\n" - -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Общо имена на пакети : " - -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Общо пакетни структури: " - -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Нормални пакети: " - -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Чисти виртуални пакети: " - -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Единични виртуални пакети: " - -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Смесени виртуални пакети: " - -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Липсващи: " +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Пакетът „%s“ не е инсталиран, така че не е премахнат\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Общо уникални версии: " +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Общо уникални описания: " +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Общо зависимости: " +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Коригиране на зависимостите..." -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Общо отношения версия/файл: " +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " пропадна." -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Общо отношения описание/файл: " +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Неуспех при коригирането на зависимостите" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Общо отношения „Осигурява“: " +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Неуспех при минимизирането на набора актуализации" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Общо разгърнати низове: " +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Готово" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Общо пространство за зависимости по версии: " +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "" +"Възможно е да изпълните „apt-get -f install“, за да коригирате тези " +"неизправности." -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Общо празно пространство: " +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Неудовлетворени зависимости. Опитайте с „-f“." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Общо отчетено пространство: " +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Пакетният файл %s не е синхронизиран." +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Инсталиран]" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Няма намерени пакети" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Инсталиран]" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Трябва да въведете поне един шаблон за търсене" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "Тази командата е остаряла. Използвайте „apt-mark showauto“ вместо нея." +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Инсталиран]" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Пакетни файлове:" +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Инсталиран]" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" msgstr "" -"Кешът не е синхронизиран, не може да се изпълни „x-ref“ на пакетен файл" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Отбити пакети:" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(не са намерени)" +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "но е инсталиран %s" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Инсталирана: " +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "но ще бъде инсталиран %s" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Кандидат: " +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "но той не може да бъде инсталиран" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(няма)" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "но той е виртуален пакет" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Отбиване на пакета: " +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "но той не е инсталиран" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Таблица с версиите:" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "но той няма да бъде инсталиран" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s за %s компилиран на %s %s\n" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " или" -#: cmdline/apt-cache.cc:1749 -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" -msgstr "" -"Употреба: apt-cache [опции] команда\n" -" apt-cache [опции] showpkg пакет1 [пакет2 ...]\n" -" apt-cache [опции] showsrc пакет1 [пакет2 ...]\n" -"\n" -"apt-cache е инструмент на ниско ниво за извличане на информация от\n" -"двоичните кеш файлове на APT\n" -"\n" -"Команди:\n" -" gencaches - Генериране на кеша на пакети и пакети с изходен код\n" -" showpkg - Показване на обща информация за даден пакет\n" -" showsrc - Показване на записите за пакети с изходен код\n" -" stats - Показване на някои общи статистики\n" -" dump - Показване на целия файл в сбит вид\n" -" dumpavail - Извеждане на достъпните пакети на стандартния изход\n" -" unmet - Показване на неудовлетворените зависимости\n" -" search - Търсене в списъка с пакети за регулярен израз\n" -" show - Показване на записа за пакет\n" -" depends - Необработена информация за зависимостите на даден пакет\n" -" rdepends - Информация за обратните зависимости на даден пакет\n" -" pkgnames - Списък с имената на всички пакети, за които има информация\n" -" dotty - Генериране на графики на пакети за GraphViz\n" -" xvcg - Генериране на графики на пакети за xvcg\n" -" policy - Показване на настройките на политиката\n" -"\n" -"Опции:\n" -" -h Този помощен текст.\n" -" -p=? Кешът за пакети.\n" -" -s=? Кешът за пакети с изходен код.\n" -" -q Премахване на индикатора за напредък.\n" -" -i Показване само на важни зависимости при командата „unmet“.\n" -" -c=? Указване на файл с настройки.\n" -" -o=? Настройване на произволна конфигурационна опция, например -o dir::" -"cache=/tmp\n" -"За повече информация вижте наръчниците apt-cache(8) и apt.conf(5).\n" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Следните пакети имат неудовлетворени зависимости:" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Укажете име за този диск, например „Debian 5.0.3 Disk1“" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Следните НОВИ пакети ще бъдат инсталирани:" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Сложете диск в устройството и натиснете „Enter“" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Следните пакети ще бъдат ПРЕМАХНАТИ:" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Неуспех при монтиране на %s на %s" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Следните пакети няма да бъдат променени:" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Следните пакети ще бъдат актуализирани:" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Повторете този процес за останалите дискове от комплекта." +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Следните пакети ще бъдат ВЪРНАТИ КЪМ ПО-СТАРА ВЕРСИЯ:" + +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Следните задържани пакети ще бъдат променени:" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Аргументите не са по двойки" +#: apt-private/private-output.cc:668 +#, c-format +msgid "%s (due to %s) " +msgstr "%s (поради %s) " -#: cmdline/apt-config.cc:89 +#: apt-private/private-output.cc:676 msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Употреба: apt-config [опции] команда\n" -"\n" -"apt-config е опростен инструмент за четене на конфигурационния файл на APT\n" -"\n" -"Команди:\n" -" shell - Режим с обвивка\n" -" dump - Показва конфигурацията\n" -"\n" -"Опции:\n" -" -h Този помощен текст.\n" -" -c=? Четене на този конфигурационен файл.\n" -" -o=? Настройване на произволна конфигурационна опция, т.е. -o dir::cache=/" -"tmp\n" - -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Не са намерен пакети, отговарящ на регулярния израз „%s“" - -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Не са намерен пакети, отговарящ на регулярния израз „%s“" - -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Не са намерен пакети, отговарящ на регулярния израз „%s“" +"ПРЕДУПРЕЖДЕНИЕ: Следните необходими пакети ще бъдат премахнати.\n" +"Това НЕ би трябвало да става освен ако знаете точно какво правите!" -#: cmdline/apt-get.cc:367 +#: apt-private/private-output.cc:707 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Използване на пакет източник „%s“ вместо „%s“\n" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu актуализирани, %lu нови инсталирани, " -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Игнориране на несъществуваща версия „%s“ на пакета „%s“" +#: apt-private/private-output.cc:711 +#, c-format +msgid "%lu reinstalled, " +msgstr "%lu преинсталирани, " -#: cmdline/apt-get.cc:454 +#: apt-private/private-output.cc:713 #, c-format -msgid "Couldn't find package %s" -msgstr "Неуспех при намирането на пакет %s" +msgid "%lu downgraded, " +msgstr "%lu върнати към по-стара версия, " -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-private/private-output.cc:715 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s е отбелязан като ръчно инсталиран.\n" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu за премахване и %lu без промяна.\n" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-private/private-output.cc:719 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s е отбелязан като автоматично инсталиран.\n" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu не са напълно инсталирани или премахнати.\n" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"Тази команда е остаряла. Вместо нея използвайте „apt-mark auto“ и „apt-mark " -"manual“." +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[Y/n]" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Вътрешна грешка, „problem resolver“ счупи нещо в системата" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[y/N]" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Неуспех при заключването на директорията за изтегляне" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "Y" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Трябва да укажете поне един пакет за изтегляне на изходния му код" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Неуспех при намирането на изходен код на пакет %s" +msgid "Regex compilation error - %s" +msgstr "Грешка при компилирането на регулярния израз - %s" -#: cmdline/apt-get.cc:786 +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Командата „update“ не възприема аргументи" + +#: apt-private/private-update.cc:90 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -"Пакетирането на „%s“ се разработва в система за контрол на версиите „%s“ на " -"адрес:\n" -"%s\n" -#: cmdline/apt-get.cc:791 +#: apt-private/private-show.cc:156 #, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" + +#: apt-private/private-main.cc:32 msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -"Използвайте:\n" -"bzr branch %s\n" -"за да изтеглите последните промени в пакета (евентуално в процес на " -"разработка).\n" +"Забележка: това е само симулация!\n" +" apt-get има нужда от административни права за да работи.\n" +" Заключването е деактивирано, така че не разчитайте\n" +" на повтаряемост в реална ситуация." -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Пропускане на вече изтегления файл „%s“\n" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "ПРЕДУПРЕЖДЕНИЕ: Следните пакети не могат да бъдат удостоверени!" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "Неуспех при определянето на свободното пространство в %s" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Предупреждението за удостоверяването е пренебрегнато.\n" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "Нямате достатъчно свободно пространство в %s" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Някои пакети не можаха да бъдат удостоверени" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Необходимо е да се изтеглят %sB/%sB архиви изходен код.\n" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Инсталиране на тези пакети без проверка?" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Необходимо е да се изтеглят %sB архиви изходен код.\n" +msgid "Failed to fetch %s %s\n" +msgstr "Неуспех при изтеглянето на %s %s\n" -#: cmdline/apt-get.cc:902 +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Неуспех при преименуването на %s на %s" + +#: apt-private/private-sources.cc:70 #, c-format -msgid "Fetch source %s\n" -msgstr "Изтегляне на изходен код %s\n" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Неуспех при изтеглянето на някои архиви." +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Изтеглянето завърши в режим само на изтегляне" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Изчисляване на актуализацията..." -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "" -"Пропускане на разпакетирането на вече разпакетирания изходен код в %s\n" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Готово" + +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Поп " + +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Изт:" + +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Игн " -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Командата за разпакетиране „%s“ пропадна.\n" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Грш " -#: cmdline/apt-get.cc:963 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Проверете дали имате инсталиран пакета „dpkg-dev“.\n" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Изтеглени %sB за %s (%sB/сек)\n" -#: cmdline/apt-get.cc:991 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Командата за компилиране „%s“ пропадна.\n" - -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Процесът-потомък пропадна" - -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "" -"Трябва да укажете поне един пакет за проверка на зависимости за компилиране" +msgid " [Working]" +msgstr " [В процес на работа]" -#: cmdline/apt-get.cc:1054 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"Липсва информация за архитектурата %s. Прегледайте информацията за APT::" -"Architectures в apt.conf(5)." +"Смяна на носител: сложете диска с етикет\n" +" „%s“\n" +"в устройството „%s“ и натиснете „Enter“\n" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "" -"Неуспех при получаването на информация за зависимостите за компилиране на %s" +msgid "Unable to read %s" +msgstr "Неуспех при четенето на %s" -#: cmdline/apt-get.cc:1101 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s няма зависимости за компилиране.\n" +msgid "Unable to change to %s" +msgstr "Неуспех при преминаването в %s" -#: cmdline/apt-get.cc:1271 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"Зависимост %s за пакета %s не може да бъде удовлетворена, %s не се позволява " -"за пакети „%s“" +msgid "No mirror file '%s' found " +msgstr "Файлът „%s“ на огледалния сървър не е намерен " -#: cmdline/apt-get.cc:1289 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" -"Зависимост %s за пакета %s не може да бъде удовлетворена, понеже пакета %s " -"не може да бъде намерен" +msgid "Can not read mirror file '%s'" +msgstr "Грешка при четене файла „%s“ от огледалния сървър" -#: cmdline/apt-get.cc:1312 -#, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"Неуспех при удовлетворяването на зависимост %s за пакета %s: Инсталираният " -"пакет %s е твърде нов" +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Грешка при четене файла „%s“ от огледалния сървър" -#: cmdline/apt-get.cc:1351 +#: methods/mirror.cc:445 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +msgid "[Mirror: %s]" +msgstr "[Огледален сървър: %s]" + +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Неуспех при създаването на IPC pipe към подпроцеса" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Връзката прекъсна преждевременно" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Лоша стандартна настройка!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Натиснете „Enter“, за да продължите." + +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Желаете ли да изтриете изтеглените пакетни файлове?" + +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Възникнаха някои грешки при разпакетирането. инсталираните пакети" + +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "ще бъдат конфигурирани. Това може да доведе до дублирани грешки" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -"Зависимост %s за пакета %s не може да бъде удовлетворена, понеже версията " -"кандидат на пакета %s не може да удовлетвори изискването за версия" +"или грешки, причинени от липсващи зависимости. Това е нормално, само грешките" -#: cmdline/apt-get.cc:1357 -#, c-format +#: dselect/install:105 msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"Зависимост %s за пакета %s не може да бъде удовлетворена, понеже пакета %s " -"няма подходящи версии" +"над това съобщение за важни. Коригирайте ги и изпълнете [I]nstall наново" -#: cmdline/apt-get.cc:1380 -#, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Неуспех при удовлетворяването на зависимост %s за пакета %s: %s" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Смесване на наличната информация" -#: cmdline/apt-get.cc:1395 -#, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Зависимостите за компилиране на %s не можаха да бъдат удовлетворени." +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "Извикан е DropNode за все още използван възел" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Неуспех при обработката на зависимостите за компилиране" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Грешка при намирането на хеш-елемента!" + +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Неуспех при установяване на отклонението" + +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Вътрешна грешка в AddDiversion" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Журнал на промените в %s (%s)" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Опит за изменение на отклонение, %s -> %s и %s/%s" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Поддържани модули:" +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "Двойно добавяне на отклонение %s -> %s" -#: cmdline/apt-get.cc:1632 -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -msgstr "" -"Употреба: apt-get [опции] команда\n" -" apt-get [опции] install|remove пакет1 [пакет2 ...]\n" -" apt-get [опции] source пакет1 [пакет2 ...]\n" -"\n" -"apt-get е опростен интерфейс за командния ред за изтегляне и\n" -"инсталиране на пакети. Най-често използваните команди са „update“\n" -"и „install“.\n" -"\n" -"Команди:\n" -" update - Изтегляне на нови списъци с пакети\n" -" upgrade - Обновяване на системата\n" -" install - Инсталиране на нови пакети (пакет е libc6, а не libc6.deb)\n" -" remove - Премахване на пакети\n" -" autoremove - Автоматично премахване на всички неизползвани пакети\n" -" purge - Премахване на пакети, включително файловете им с настройки\n" -" source - Изтегляне на изходен код на пакети\n" -" build-dep - Конфигуриране на зависимостите за компилиране на пакети от\n" -" изходен код\n" -" dist-upgrade - Обновяване на дистрибуцията, вж. apt-get(8)\n" -" dselect-upgrade - Следване на избора на dselect\n" -" clean - Изтриване на изтеглените файлове\n" -" autoclean - Изтриване на стари изтеглени файлове\n" -" check - Проверка за неудовлетворени зависимости\n" -" changelog - Изтегляне и показване на журнала с промени в даден пакет\n" -" download - Изтегляне на двоичен пакет в текущата директория\n" -"\n" -"Опции:\n" -" -h Този помощен текст.\n" -" -q Изход на съобщения, подходящи за журнал - без индикатор на напредъка\n" -" -qq Без извеждане на съобщения, освен при грешки\n" -" -d Само изтегляне - БЕЗ инсталиране или разпакетиране на архивите\n" -" -s Без действие. Симулиране на действията.\n" -" -y Отговаряне с „Да“ на всички въпроси, без питане\n" -" -f Опит за поправяне на неудовлетворени зависимости\n" -" -m Опит за продължаване дори и ако архивите са неоткриваеми\n" -" -u Показване и на списък с пакетите за актуализиране\n" -" -b Компилиране на изходния код на пакета след изтеглянето му\n" -" -V Показване на подробна информация за версиите\n" -" -c=? Четене на този конфигурационен файл\n" -" -o=? Настройване на произволна конфигурационна опция,\n" -" напр. -o dir::cache=/tmp\n" -"Вижте наръчниците за apt-get(8), sources.list(5) и apt.conf(5) за повече\n" -"информация и опции.\n" -" Това APT има Върховни Сили.\n" +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "Дублиран конфигурационен файл %s/%s" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Трябва да укажете поне един пакет за изтегляне на изходния му код" +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" +msgstr "Пътят %s е твърде дълъг" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" +msgstr "Разпакетиране на %s повече от веднъж" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "Директорията %s е отклонена" -#: cmdline/apt-mark.cc:68 +#: apt-inst/extract.cc:152 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "Пакетът „%s“ не може да бъде маркиран, защото не е инсталиран.\n" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Пакетът се опитва да пише в целта за отклонение %s/%s" -#: cmdline/apt-mark.cc:74 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Пътят за отклонение е твърде дълъг" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "Пакетът „%s“ вече е отбелязан като ръчно инсталиран.\n" +msgid "Failed to stat %s" +msgstr "Грешка при получаването на атрибути за %s" -#: cmdline/apt-mark.cc:76 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "Пакетът „%s“ вече е отбелязан като автоматично инсталиран.\n" +msgid "Failed to rename %s to %s" +msgstr "Неуспех при преименуването на %s на %s" -#: cmdline/apt-mark.cc:241 +#: apt-inst/extract.cc:249 #, c-format -msgid "%s was already set on hold.\n" -msgstr "Пакетът „%s“ вече е задуржан.\n" +msgid "The directory %s is being replaced by a non-directory" +msgstr "Директорията %s се заменя с не-директория" -#: cmdline/apt-mark.cc:243 +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Неуспех при намирането на възел в неговия хеш" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Пътят е твърде дълъг" + +#: apt-inst/extract.cc:421 #, c-format -msgid "%s was already not hold.\n" -msgstr "Пакетът „%s“ вече е задържан.\n" +msgid "Overwrite package match with no version for %s" +msgstr "Файловете се заменят със съдържанието на пакета %s без версия" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-inst/extract.cc:438 #, c-format -msgid "%s set on hold.\n" -msgstr "Пакетът „%s“ е задържан.\n" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Файл %s/%s заменя този в пакет %s" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-inst/extract.cc:498 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Отмяна на задържането на пакета „%s“.\n" +msgid "Unable to stat %s" +msgstr "Неуспех при получаването на атрибути за %s" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "Неуспех при изпълняване на dpkg. Имате ли административни права?" +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, c-format +msgid "Failed to write file %s" +msgstr "Неуспех при запис на файл %s" -#: cmdline/apt-mark.cc:392 -#, fuzzy -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" -"Употреба: apt-mark [опции] {auto|manual} пкт1 [пкт2 …]\n" -"\n" -"apt-mark предоставя команден интерфейс за маркиране на пакети\n" -"като инсталирани ръчно или автоматично. Предлага се и показване\n" -"на текущата маркировка.\n" -"\n" -"Команди:\n" -" auto — Маркиране на пакети като инсталирани автоматично\n" -" manual — Маркиране на пакети като инсталирани ръчно\n" -"\n" -"Опции:\n" -" -h Тази помощна информация\n" -" -q Изход без информация за напредъка, подходящ за съхраняване\n" -" -qq Без изход, освен при грешки\n" -" -s Симулация. Само се извежда какво би било направено\n" -" -f Четене/запис на информацията за маркировката от указания файл\n" -" -c=? Указване на файл с настройки\n" -" -o=? Указване на произволна настройка, напр. -o dir::cache=/tmp\n" -"За повече информация прегледайте ръководствата apt-mark(8) и apt.conf(5)." +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "Неуспех при затварянето на файл %s" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Това не е валиден DEB архив, липсва елемент „%s“" -#: methods/cdrom.cc:203 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Неуспех при четенето на базата %s със CD-ROM" +msgid "Internal error, could not locate member %s" +msgstr "Вътрешна грешка, неуспех при намирането на съставна част %s" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"Използвайте „apt-cdrom“, за да може този CD-ROM да се разпознава от APT. " -"„apt-get update“ не може да се използва за добавяне на нови дискове" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Контролен файл, невъзможен за анализ" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Грешен CD-ROM" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Невалиден подпис на архива" -#: methods/cdrom.cc:249 +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Грешка при четене на заглавната част на елемента на архива" + +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Неуспех при демонтирането на CD-ROM в %s, може все още да се използва." +msgid "Invalid archive member header %s" +msgstr "Невалидна заглавна част %s на елемента на архива" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Дискът не е намерен." +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Невалидна заглавна част на елемента на архива" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Файлът не е намерен" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Архивът е твърде кратък" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Неуспех при получаването на атрибути" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Неуспех при четенето на заглавните части на архива" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Неуспех при задаването на време на промяна" +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Неуспех при създаването на програмни канали" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Невалиден адрес-URI, локалните адреси-URI не трябва да започват с „//“" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Неуспех при изпълнението на gzip" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Влизане" +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Развален архив" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Невярна контролна сума на tar, развален архив" + +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Непозната заглавна част на TAR тип %u, елемент %s" + +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" + +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Изпълняване на dpkg" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Неуспех при установяването на името на отдалечения сървър" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Пакетната система „%s“ не е поддържана" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Неуспех при установяването на локалното име" +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Неуспех при определянето на подходяща пакетна система" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Сървърът отказа свързване и съобщи: %s" +msgid "Wrote %i records.\n" +msgstr "Записани са %i записа.\n" -#: methods/ftp.cc:225 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER се провали, сървърът съобщи: %s" +msgid "Wrote %i records with %i missing files.\n" +msgstr "Записани са %i записа с %i липсващи файла.\n" -#: methods/ftp.cc:232 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS се провали, сървърът съобщи: %s" +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Записани са %i записа с %i несъответстващи файла\n" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"Беше указан сървър-посредник, но няма скрипт за влизане, Acquire::ftp::" -"ProxyLogin е празен." +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "Записани са %i записа с %i липсващи и %i несъответстващи файла\n" -#: methods/ftp.cc:280 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Командата „%s“ на скрипта за влизане се провали, сървърът съобщи: %s" +msgid "Can't find authentication record for: %s" +msgstr "Не е намерен oторизационен запис за: %s" -#: methods/ftp.cc:306 +#: apt-pkg/indexcopy.cc:521 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE се провали, сървърът съобщи: %s" +msgid "Hash mismatch for: %s" +msgstr "Несъответствие на контролната сума за: %s" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Допустимото време за свързването изтече" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"Списъците с пакети или файлът за състояние не можаха да бъдат анализирани " +"или отворени." -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Сървърът разпадна връзката" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "" +"Може да искате да изпълните „apt-get update“, за да коригирате тези проблеми" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Отговорът препълни буфера." +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Списъкът с източници не можа да бъде прочетен." -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Развален протокол" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Празен кеш на пакети" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Неуспех при създаването на гнездо" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Файлът за кеш на пакети е повреден" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "" -"Неуспех при свързването на гнездо за данни, допустимото време за свързване " -"изтече" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Файлът за кеш на пакети е несъвместима версия" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Неуспех" +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "Файлът за кеш на пакети е повреден, твърде малък е" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Неуспех при свързването на пасивно гнездо." +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "Тази версия на APT не поддържа система за версии „%s“" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo не успя да се добере до слушащо гнездо" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Кешът на пакети е бил направен за различна архитектура" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Неуспех при свързването на гнездо" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Зависи от" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Неуспех при слушането на гнездото" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Предварително зависи от" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Неуспех при определянето на името на гнездото" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Предлага се" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Неуспех при изпращането на командата PORT" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Препоръчва се" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Неизвестно семейство адреси %u (AF_*)" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "В конфликт с" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT се провали, сървърът съобщи: %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Заменя" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Времето за установяване на връзка с гнездо за данни изтече" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Изважда от употреба" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Невъзможно е да се приеме свързването" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Чупи" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Проблем при хеширане на файла" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Подобрява" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Неуспех при изтеглянето на файла, сървърът съобщи „%s“" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "важен" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Времето за връзка с гнездо за данни изтече" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "изискван" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Неуспех при прехвърлянето на данни, сървърът съобщи: „%s“" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "стандартен" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Запитване" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "незадължителен" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Неуспех при извикването на " +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "допълнителен" -#: methods/connect.cc:76 +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Свързване с %s (%s)" +msgid "The method driver %s could not be found." +msgstr "Неуспех при намирането на драйвер за метод %s." -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Проверете дали имате инсталиран пакета „dpkg-dev“.\n" -#: methods/connect.cc:94 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Неуспех при създаването на гнездо за %s (f=%u t=%u p=%u)" +msgid "Method %s did not start correctly" +msgstr "Методът %s не стартира правилно" -#: methods/connect.cc:100 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Не може да се започне свързване с %s:%s (%s)." +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Сложете диска, озаглавен „%s“ в устройство „%s“ и натиснете „Enter“." -#: methods/connect.cc:108 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Неуспех при свързване с %s:%s (%s), допустимото време изтече" +msgid "Index file type '%s' is not supported" +msgstr "Не се поддържа индексен файл от типа „%s“" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Неуспех при свързване с %s:%s (%s)." +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Изграждане на дървото със зависимости" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Версии кандидати" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Генериране на зависимости" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Четене на информацията за състоянието" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Connecting to %s" -msgstr "Свързване с %s" +msgid "Failed to open StateFile %s" +msgstr "Неуспех при отварянето на StateFile %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Could not resolve '%s'" -msgstr "Неуспех при намирането на IP адреса на „%s“" +msgid "Failed to write temporary StateFile %s" +msgstr "Неуспех при запис на временен StateFile %s" -#: methods/connect.cc:205 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Временен неуспех при намирането на IP адреса на „%s“" +msgid "rename failed, %s (%s -> %s)." +msgstr "преименуването се провали, %s (%s -> %s)." -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Нещо лошо се случи при намирането на IP адреса на „%s:%s“ (%i - %s)" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Несъответствие на контролната сума" -#: methods/connect.cc:211 +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Несъответствие на размера" + +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Невалидна операция %s" + +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Нещо лошо се случи при намирането на IP адреса на „%s:%s“ (%i - %s)" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" +"Не може да се открие елемент „%s“ във файла Release (объркан ред в sources." +"list или повреден файл)" -#: methods/connect.cc:258 +#: apt-pkg/acquire-item.cc:1589 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Неуспех при свързване с %s:%s:" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Не е открита контролна сума за „%s“ във файла Release" -#: methods/gpgv.cc:168 +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Няма налични публични ключове за следните идентификатори на ключове:\n" + +#: apt-pkg/acquire-item.cc:1669 +#, c-format msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -"Вътрешна грешка: Валиден подпис, но не може да се провери отпечатъка на " -"ключа?!" +"Файлът със служебна информация за „%s“ е остарял (валиден до %s). Няма да се " +"прилагат обновявания от това хранилище." -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Намерен е поне един невалиден подпис." +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Конфликт в дистрибуцията: %s (очаквана: %s, намерена: %s)" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -"Неуспех при изпълнение на „gpgv“ за проверка на подписа (инсталиран ли е " -"gpgv?)" +"Грешка при проверка на цифровия подпис. Хранилището не е обновено и ще се " +"използват старите индексни файлове. Грешка от GPG: %s: %s\n" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "Грешка от GPG: %s: %s" + +#: apt-pkg/acquire-item.cc:1859 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" msgstr "" +"Неуспех при намирането на файл за пакет %s. Това може да означава, че трябва " +"ръчно да оправите този пакет (поради пропусната архитектура)." -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Неизвестна грешка при изпълнението на gpgv" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Следните подписи са невалидни:\n" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "Не е открит източник, от който да се изтегли версия „%s“ на „%s“" -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1983 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" -"Следните подписи не можаха да бъдат проверени, защото публичния ключ не е " -"наличен:\n" +"Индексните файлове на пакета са повредени. Няма поле Filename: за пакет %s." -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Празни файлове не могат да бъдат валидни архиви" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Не се поддържа индексен файл от типа „%s“" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Грешка при записа на файла" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Неуспех при получаването на атрибути на %s." -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Грешка при четене от сървъра. Отдалеченият сървър прекъсна връзката" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Кешът има несъвместима система за версии" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Грешка при четене от сървъра" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Възникна грешка при обработката на %s (%s%d)" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Грешка при записа на файл" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "" +"Еха, надхвърлихте броя имена на пакети, на който е способна тази версия на " +"APT." -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Неуспех на избора" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Еха, надхвърлихте броя версии, на който е способна тази версия на APT." -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Допустимото време за свързване изтече" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "" +"Еха, надхвърлихте броя описания, на който е способна тази версия на APT." -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Грешка при записа на изходен файл" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "" +"Еха, надхвърлихте броя зависимости, на който е способна тази версия на APT." -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Чакане на заглавни части" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Пакетът %s %s не беше открит при обработката на файла със зависимости" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Невалиден ред на заглавна част" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "" +"Неуспех при получаването на атрибути на списъка с пакети с изходен код %s" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP сървърът изпрати невалидна заглавна част като отговор" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Четене на списъците с пакети" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP сървърът изпрати невалидна заглавна част „Content-Length“" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Събиране на информация за „Осигурява“" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP сървърът изпрати невалидна заглавна част „Content-Range“" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Неуспех при записа на %s" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "HTTP сървърът няма поддръжка за прехвърляне на фрагменти на файлове" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Входно/изходна грешка при запазването на кеша на пакети с изходен код" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Неизвестен формат на дата" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Блокът на производителя %s не съдържа отпечатък" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Невалидни данни на заглавната част" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Директорията със списъци %spartial липсва." -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Неуспех при свързването" +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Директорията за архиви %spartial липсва." -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Вътрешна грешка" +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "Неуспех при заключване на директорията %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Изчисляване на актуализацията..." +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Изтегляне на файл %li от %li (остават %s)" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Готово" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Изтегляне на файл %li от %li" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" +"Някои индексни файлове не можаха да бъдат изтеглени. Те са пренебрегнати или " +"са използвани по-стари." -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Трябва да добавите адреси-URI от тип „source“ в sources.list" -#: apt-private/private-list.cc:164 +#: apt-pkg/policy.cc:83 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" +"Стойността „%s“ на APT::Default-Release не е правилна, понеже в източниците " +"няма такова издание" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Коригиране на зависимостите..." +#: apt-pkg/policy.cc:422 +#, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Невалиден запис във файла с настройки %s, липсва заглавна част Package" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " пропадна." +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Неизвестен тип за отбиване %s" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Неуспех при коригирането на зависимостите" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Няма указан приоритет (или е нула) на отбиването" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Неуспех при минимизирането на набора актуализации" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" +"Неуспех при незабавната настройка на „%s“. За повече информация вижте " +"информацията за APT::Immediate-Configure в „man 5 apt.conf“. (%d)" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Готово" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Неуспех при конфигуриране на „%s“. " -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." msgstr "" -"Възможно е да изпълните „apt-get -f install“, за да коригирате тези " -"неизправности." +"В следствие на циклични зависимости от типа „В конфликт с/Предварително " +"зависи от“, за да се продължи инсталацията трябва да се премахне необходимия " +"пакет %s. Това често е лошо, но ако наистина искате да го направите, " +"активирайте опцията APT::Force-LoopBreak." -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Неудовлетворени зависимости. Опитайте с „-f“." +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "Ред %u в списъка с източници %s е твърде дълъг." -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Демонтиране на CD-ROM...\n" -#: apt-private/private-output.cc:234 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Инсталиран]" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "Използване на точка за монтиране на CD-ROM %s\n" -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [Инсталиран]" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Чакане за диск...\n" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Монтиране на CD-ROM...\n" -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Инсталиран]" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Идентифициране..." -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Инсталиран]" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Запазен етикет: %s \n" -#: apt-private/private-output.cc:249 +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Сканиране на диска за индексни файлове...\n" + +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "[upgradable from: %s]" +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"Намерени са %zu индекса на пакети, %zu индекса на пакети с изходен код, %zu " +"индекса с преводи и %zu подписа.\n" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" +"Не са намерени файлове с пакети. Мое би дискът не е с Дебиан или е за " +"погрешна компютърна архитектура." -#: apt-private/private-output.cc:435 -#, c-format -msgid "but %s is installed" -msgstr "но е инсталиран %s" - -#: apt-private/private-output.cc:437 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "but %s is to be installed" -msgstr "но ще бъде инсталиран %s" - -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "но той не може да бъде инсталиран" - -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "но той е виртуален пакет" +msgid "Found label '%s'\n" +msgstr "Намерен е етикет „%s“\n" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "но той не е инсталиран" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Това не е валидно име, опитайте отново.\n" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "но той няма да бъде инсталиран" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Наименование на този диск: \n" +"„%s“\n" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " или" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Копиране на списъците с пакети..." -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Следните пакети имат неудовлетворени зависимости:" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Запазване на новия списък с източници\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Следните НОВИ пакети ще бъдат инсталирани:" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Записите в списъка с източници за този диск са:\n" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Следните пакети ще бъдат ПРЕМАХНАТИ:" +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"Пакетът %s трябва да бъде преинсталиран, но не може да се намери архив за " +"него." -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Следните пакети няма да бъдат променени:" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Грешка, pkgProblemResolver::Resolve генерира повреди, това може да е " +"причинено от задържани пакети." -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Следните пакети ще бъдат актуализирани:" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "" +"Неуспех при коригирането на проблемите, имате задържани счупени пакети." -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Следните пакети ще бъдат ВЪРНАТИ КЪМ ПО-СТАРА ВЕРСИЯ:" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Изпращане на сценарий към програмата за удовлетворяване на зависимости" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Следните задържани пакети ще бъдат променени:" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Изпращане на заявка към програмата за удовлетворяване на зависимости" -#: apt-private/private-output.cc:668 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (поради %s) " +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Подготовка за приемане на решение" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -"ПРЕДУПРЕЖДЕНИЕ: Следните необходими пакети ще бъдат премахнати.\n" -"Това НЕ би трябвало да става освен ако знаете точно какво правите!" +"Външната програма за удовлетворяване на зависимости се провали без да изведе " +"съобщение за грешка" -#: apt-private/private-output.cc:707 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu актуализирани, %lu нови инсталирани, " +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Изпълняване на външна програма за удовлетворяване на зависимости" -#: apt-private/private-output.cc:711 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu преинсталирани, " +msgid "Unable to parse package file %s (1)" +msgstr "Неуспех при анализирането на пакетен файл %s (1)" -#: apt-private/private-output.cc:713 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%lu downgraded, " -msgstr "%lu върнати към по-стара версия, " +msgid "Unable to parse package file %s (2)" +msgstr "Неуспех при анализирането на пакетен файл %s (2)" -#: apt-private/private-output.cc:715 +#: apt-pkg/indexrecords.cc:78 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu за премахване и %lu без промяна.\n" +msgid "Unable to parse Release file %s" +msgstr "Неуспех при анализиране на файл Release %s" -#: apt-private/private-output.cc:719 +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu не са напълно инсталирани или премахнати.\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[Y/n]" +msgid "No sections in Release file %s" +msgstr "Във файла Release %s липсват раздели" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[y/N]" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Във файла Release %s липсва контролна сума" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "Y" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Неправилна стойност за „Valid-Until“ във файла Release %s" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "N" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Неправилна стойност за „Date“ във файла Release %s" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Командата „update“ не възприема аргументи" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Лошо форматиран ред %lu в списъка с източници %s (анализ на адрес-URI)" -#: apt-private/private-update.cc:90 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" +"Лошо форматиран ред %lu в списъка с източници %s (неразбираема [опция])" -#: apt-private/private-show.cc:156 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" +"Лошо форматиран ред %lu в списъка с източници %s (твърде кратка [опция])" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Вътрешна грешка, „InstallPackages“ е предизвикано при счупени пакети!" - -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Трябва да бъдат премахнати пакети, но премахването е изключено." +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "" +"Лошо форматиран ред %lu в списъка с източници %s ([%s] не е присвояване)" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Вътрешна грешка, „Ordering“ не завърши" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Лошо форматиран ред %lu в списъка с източници %s (липсва ключ в [%s])" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -"Странно... Размерите не съвпадат, изпратете е-поща на apt@packages.debian.org" +"Лошо форматиран ред %lu в списъка с източници %s ([%s] ключът %s няма " +"стойност)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Необходимо е да се изтеглят %sB/%sB архиви.\n" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Лошо форматиран ред %lu в списъка с източници %s (адрес-URI)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Необходимо е да се изтеглят %sB архиви.\n" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Лошо форматиран ред %lu в списъка с източници %s (дистрибуция)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "" -"След тази операция ще бъде използвано %sB допълнително дисково " -"пространство.\n" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Лошо форматиран ред %lu в списъка с източници %s (анализ на адрес-URI)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "След тази операция ще бъде освободено %sB дисково пространство.\n" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "" +"Лошо форматиран ред %lu в списъка с източници %s (неограничена дистрибуция)" -#: apt-private/private-install.cc:200 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Нямате достатъчно свободно пространство в %s." - -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Има проблеми и „-y“ е използвано без „--force-yes“" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "" +"Лошо форматиран ред %lu в списъка с източници %s (анализ на дистрибуция)" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Указано е „Trivial Only“, но това не е тривиална операция." +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Отваряне на %s" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Да, прави каквото казвам!" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Лошо форматиран ред %u в списъка с източници %s (тип)" -#: apt-private/private-install.cc:222 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"На път сте да направите нещо потенциално опасно.\n" -"За да продължите, въведете фразата „%s“\n" -" ?] " +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Типът „%s“ на ред %u в списъка с източници %s е неизвестен." -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Прекъсване." +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Типът „%s“ на ред %u в списъка с източници %s е неизвестен." -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Искате ли да продължите?" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Не е намерено издание „%s“ на „%s“" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Някои файлове не можаха да бъдат изтеглени" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Не е намерена версия „%s“ на „%s“" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Неуспех при изтеглянето на някои архиви, може да изпълните „apt-get update“ " -"или да опитате с „--fix-missing“?" +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Неуспех при намиране на задача „%s“" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "„--fix-missing“ и превключване на носители не се поддържа все още" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Не са намерен пакети, отговарящ на регулярния израз „%s“" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Неуспех при коригирането на липсващите пакети." +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Не са намерен пакети, отговарящ на регулярния израз „%s“" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Прекъсване на инсталирането." +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "Не е възможно избиране на версия за пакета „%s“ понеже е виртуален" -#: apt-private/private-install.cc:366 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -"Следният пакет е отстранен от системата поради препокриване на всичките му " -"файлове от други пакети:" -msgstr[1] "" -"Следните пакети са отстранени от системата поради препокриване на всичките " -"им файлове от други пакети:" - -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Това се прави автоматично от dpkg." +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" +"Не е възможно избиране на инсталирана или кандидат версия за пакета „%s“ " +"понеже той няма нито едната" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Не би трябвало да се изтрива. AutoRemover няма да бъде стартиран" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"Не е възможно избиране на на последната версия за пакета „%s“, защото е " +"виртуален" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -"Хм, изглежда AutoRemover скапа нещо, а това не би трябвало\n" -"да се случва. Съобщете за грешка в пакета apt." +"Не е възможно избиране на кандидат-версия за пакета „%s“, защото няма " +"подходящ кандидати" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" msgstr "" -"Следната информация може да помогне за намиране на изход от ситуацията:" +"Не е възможно избиране на инсталирана версия на пакета „%s“, защото не е " +"инсталиран" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Вътрешна грешка, AutoRemover счупи нещо в системата" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%liд %liч %liм %liс" -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "Следният пакет е бил инсталиран автоматично и вече не е необходим:" -msgstr[1] "" -"Следните пакети са били инсталирани автоматично и вече не са необходими:" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%liч %liм %liс" -#: apt-private/private-install.cc:517 +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 #, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "%lu пакет е бил инсталиран автоматично и вече не е необходим:\n" -msgstr[1] "" -"%lu пакета са били инсталирани автоматично и вече не са необходими:\n" +msgid "%limin %lis" +msgstr "%liм %liс" -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Използвайте „apt-get autoremove“ за да го премахнете." -msgstr[1] "Използвайте „apt-get autoremove“ за да ги премахнете." +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%liс" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Възможно е да изпълните „apt-get -f install“, за да коригирате:" +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "Изборът %s не е намерен" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" msgstr "" -"Неудовлетворени зависимости. Опитайте „apt-get -f install“ без пакети (или " -"укажете разрешение)." +"Не се използва заключване за файл за заключване %s, който е само за четене" -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." -msgstr "" -"Някои пакети не можаха да бъдат инсталирани. Това може да означава,\n" -"че сте изискали невъзможна ситуация или ако използвате нестабилната\n" -"дистрибуция, че някои необходими пакети още не са създадени или пък\n" -"са били преместени от Incoming." +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Неуспех при отварянето на файл за заключване %s" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Счупени пакети" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "" +"Не се използва заключване за файл за заключване %s, който е монтиран по NFS" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Следните допълнителни пакети ще бъдат инсталирани:" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Неуспех при достъпа до заключване %s" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Предложени пакети:" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "Не може да се създаде списък от файлове, защото „%s“ не е директория" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Препоръчвани пакети:" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "Пропускане на „%s“ в директорията „%s“, понеже не е обикновен файл" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:412 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Пропускане на %s, вече е инсталиран и не е маркиран за актуализация.\n" +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "Пропускане на файла „%s“ в директорията „%s“, понеже няма разширение" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:421 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"Пропускане на %s, който не е инсталиран при заявени само обновявания.\n" +"Пропускане на файла „%s“ в директорията „%s“, понеже разширението му е грешно" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Преинсталацията на %s не е възможна, не може да бъде изтеглен.\n" +msgid "Sub-process %s received a segmentation fault." +msgstr "Нарушение на защитата на паметта (segmentation fault) в подпроцеса %s." -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/fileutl.cc:826 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s вече е най-новата версия.\n" +msgid "Sub-process %s received signal %u." +msgstr "Под-процесът %s получи сигнал %u." -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Избрана е версия %s (%s) за %s\n" +msgid "Sub-process %s returned an error code (%u)" +msgstr "Подпроцесът %s върна код за грешка (%u)" -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Избрана е версия „%s“ (%s) за „%s“ заради „%s“\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "Подпроцесът %s завърши неочаквано" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" -"Пакетът „%s“ не е инсталиран, така че не е премахнат. Може би имахте предвид " -"„%s“?\n" +msgid "Problem closing the gzip file %s" +msgstr "Проблем при затваряне на компресираният файл %s (gzip)" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Пакетът „%s“ не е инсталиран, така че не е премахнат\n" +msgid "Could not open file %s" +msgstr "Неуспех при отварянето на файла %s" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Неуспех при отварянето на файлов манипулатор %d" + +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Неуспех при създаването на подпроцес IPC" + +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Неуспех при изпълнението на компресиращата програма " + +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" msgstr "" -"Забележка: това е само симулация!\n" -" apt-get има нужда от административни права за да работи.\n" -" Заключването е деактивирано, така че не разчитайте\n" -" на повтаряемост в реална ситуация." +"грешка при четене, все още има %llu за четене, но няма нито един останал" + +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "грешка при запис, все още име %llu за запис, но не успя" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ПРЕДУПРЕЖДЕНИЕ: Следните пакети не могат да бъдат удостоверени!" +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Проблем при затваряне на файла %s" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Предупреждението за удостоверяването е пренебрегнато.\n" +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Проблем при преименуване на файла %s на %s" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Някои пакети не можаха да бъдат удостоверени" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Проблем при изтриване на файла %s" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Инсталиране на тези пакети без проверка?" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Проблем при синхронизиране на файла" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Неуспех при преименуването на %s на %s" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Грешка!" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%c%s... Done" +msgstr "%c%s... Готово" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Поп " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Изт:" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Готово" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Игн " +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Невъзможно е да се прехвърли в паметта празен файл" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Грш " +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Неуспех при дублиране на файлов манипулатор %i" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:119 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Изтеглени %sB за %s (%sB/сек)\n" +msgid "Couldn't make mmap of %llu bytes" +msgstr "Неуспех при прехвърлянето в паметта на %llu байта" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Неуспех при затваряне на mmap" + +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Неуспех при синхронизирането на mmap" + +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid " [Working]" -msgstr " [В процес на работа]" +msgid "Couldn't make mmap of %lu bytes" +msgstr "Неуспех при прехвърлянето в паметта на %lu байта" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Неуспех при отрязване на края на файла" + +#: apt-pkg/contrib/mmap.cc:341 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -"Смяна на носител: сложете диска с етикет\n" -" „%s“\n" -"в устройството „%s“ и натиснете „Enter“\n" +"Недостатъчна памет за MMap. Увеличете стойността на променливата APT::Cache-" +"Start. Текуща стойност: %lu (man 5 apt.conf)" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "No mirror file '%s' found " -msgstr "Файлът „%s“ на огледалния сървър не е намерен " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" +"Неуспех при увеличаване на паметта за MMap. Достигнато е текущото " +"ограничение от %lu байта." -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"Неуспех при увеличаване на паметта за MMap. Автоматичното увеличаване е " +"забранено от потребителя." + +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Грешка при четене файла „%s“ от огледалния сървър" +msgid "Unable to stat the mount point %s" +msgstr "Неуспех при намирането на атрибутите на точка за монтиране %s" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Грешка при четене файла „%s“ от огледалния сървър" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Неуспех при намирането на атрибутите на cdrom" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "[Mirror: %s]" -msgstr "[Огледален сървър: %s]" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Неизвестен тип на абревиатура: „%c“" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Неуспех при създаването на IPC pipe към подпроцеса" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Отваряне на конфигурационен файл %s" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Връзката прекъсна преждевременно" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Синтактична грешка %s:%u: В началото на блока няма име." -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Лоша стандартна настройка!" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Синтактична грешка %s:%u: Лошо форматиран таг" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Натиснете „Enter“, за да продължите." +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Синтактична грешка %s:%u: Излишни символи след стойността" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Желаете ли да изтриете изтеглените пакетни файлове?" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "" +"Синтактична грешка %s:%u: Директиви могат да се задават само в най-горното " +"ниво" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Възникнаха някои грешки при разпакетирането. инсталираните пакети" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Синтактична грешка %s:%u: Твърде много вложени „include“" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "ще бъдат конфигурирани. Това може да доведе до дублирани грешки" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Синтактична грешка %s:%u: Извикан „include“ оттук" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"или грешки, причинени от липсващи зависимости. Това е нормално, само грешките" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Синтактична грешка %s:%u: Неподдържана директива „%s“" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"над това съобщение за важни. Коригирайте ги и изпълнете [I]nstall наново" +"Синтактична грешка %s:%u: директивата clear изисква аргумент дърво от опции" -#: dselect/update:30 -msgid "Merging available information" -msgstr "Смесване на наличната информация" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Синтактична грешка %s:%u: Излишни символи в края на файла" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "Извикан е DropNode за все още използван възел" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "В %s няма инсталиран ключодържател." -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Грешка при намирането на хеш-елемента!" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Неизвестна опция за команден ред „%c“ [от %s]." -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Неуспех при установяване на отклонението" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Опцията за команден ред %s не е разпозната" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Вътрешна грешка в AddDiversion" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Опцията за команден ред %s не е булева" + +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Опция %s изисква аргумент." -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Опит за изменение на отклонение, %s -> %s и %s/%s" +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Опция %s: Значението трябва да има =<val>." -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Двойно добавяне на отклонение %s -> %s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Опция %s изисква аргумент цяло число, не „%s“" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Дублиран конфигурационен файл %s/%s" +msgid "Option '%s' is too long" +msgstr "Опция „%s“ е твърде дълга" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "The path %s is too long" -msgstr "Пътят %s е твърде дълъг" +msgid "Sense %s is not understood, try true or false." +msgstr "Смисълът %s не е ясен, опитайте true или false." -#: apt-inst/extract.cc:132 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "Unpacking %s more than once" -msgstr "Разпакетиране на %s повече от веднъж" +msgid "Invalid operation %s" +msgstr "Невалидна операция %s" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "The directory %s is diverted" -msgstr "Директорията %s е отклонена" +msgid "Installing %s" +msgstr "Инсталиране на %s" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Пакетът се опитва да пише в целта за отклонение %s/%s" +msgid "Configuring %s" +msgstr "Конфигуриране на %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Пътят за отклонение е твърде дълъг" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Премахване на %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "Failed to stat %s" -msgstr "Грешка при получаването на атрибути за %s" +msgid "Completely removing %s" +msgstr "Окончателно премахване на %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Неуспех при преименуването на %s на %s" +msgid "Noting disappearance of %s" +msgstr "Отбелязване на изчезването на %s" -#: apt-inst/extract.cc:249 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Директорията %s се заменя с не-директория" +msgid "Running post-installation trigger %s" +msgstr "Изпълнение на тригер след инсталиране %s" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Неуспех при намирането на възел в неговия хеш" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Директорията „%s“ липсва" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Пътят е твърде дълъг" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Неуспех при отваряне на файла „%s“" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Файловете се заменят със съдържанието на пакета %s без версия" +msgid "Preparing %s" +msgstr "Подготвяне на %s" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Файл %s/%s заменя този в пакет %s" +msgid "Unpacking %s" +msgstr "Разпакетиране на %s" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Unable to stat %s" -msgstr "Неуспех при получаването на атрибути за %s" +msgid "Preparing to configure %s" +msgstr "Подготвяне на %s за конфигуриране" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Failed to write file %s" -msgstr "Неуспех при запис на файл %s" +msgid "Installed %s" +msgstr "%s е инсталиран" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to close file %s" -msgstr "Неуспех при затварянето на файл %s" +msgid "Preparing for removal of %s" +msgstr "Подготвяне за премахване на %s" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Това не е валиден DEB архив, липсва елемент „%s“" +msgid "Removed %s" +msgstr "%s е премахнат" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Вътрешна грешка, неуспех при намирането на съставна част %s" +msgid "Preparing to completely remove %s" +msgstr "Подготовка за пълно премахване на %s" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Контролен файл, невъзможен за анализ" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "%s е напълно премахнат" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Невалиден подпис на архива" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Грешка при четене на заглавната част на елемента на архива" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Неуспех при записа на %s" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Невалидна заглавна част %s на елемента на архива" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Невалидна заглавна част на елемента на архива" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Архивът е твърде кратък" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "Операцията е прекъсната" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Неуспех при четенето на заглавните части на архива" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" +"Поради достигане на максималния брой доклади (MaxReports) не е записан нов " +"доклад за зависимостите." -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Неуспех при създаването на програмни канали" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "отлагане на настройката поради неудовлетворени зависимости" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Неуспех при изпълнението на gzip" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Доклад за зависимостите не е записан защото съобщението за грешка е породено " +"от друга грешка." -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Развален архив" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Доклад за зависимостите не е записан защото грешката е причинена от " +"недостатъчно дисково пространство" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Невярна контролна сума на tar, развален архив" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Доклад за зависимостите не е записан защото грешката е причинена от " +"недостатъчна оперативна памет" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Доклад за зависимостите не е записан защото грешката е причинена от " +"недостатъчно дисково пространство" + +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Доклад за зависимостите не е записан поради входно-изходна грешка с dpkg" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Непозната заглавна част на TAR тип %u, елемент %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Неуспех при заключване на административната директория (%s). Може би се " +"използва от друг процес?" + +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "" +"Неуспех при заключване на административната директория (%s). Може би липсват " +"административни права?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"Процесът dpkg е беше прекъснат. Проблемът трябва да се коригира чрез ръчно " +"изпълнение на „%s“." + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Без заключване" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/bs.po b/po/bs.po index 4b05a6624..902d9400e 100644 --- a/po/bs.po +++ b/po/bs.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.26\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2004-05-06 15:25+0100\n" "Last-Translator: Safir Šećerović <sapphire@linux.org.ba>\n" "Language-Team: Bosnian <lokal@lugbih.org>\n" @@ -17,3011 +17,3012 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, c-format -msgid "Clean of %s is not supported" -msgstr "" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "Ne mogu čitati %s" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "" - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" - -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "" - -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "" - -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "" - -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "" - -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "" - -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" - -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" - -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "" - -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "" - -#: apt-pkg/acquire-worker.cc:118 -#, c-format -msgid "Is the package %s installed?" -msgstr "" - -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "" - -#: apt-pkg/acquire-worker.cc:455 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "" - -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "" - -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Paket %s verzije %s ima nezadovoljenu zavisnost:\n" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Ukupno naziva paketa:" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "" +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "Ukupno naziva paketa:" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Normalni paketi:" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Čisto virtuelni paketi:" -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Pojedinačni virutuelni paketi:" -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Miješani virtuelni paketi:" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Nedostajući:" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Zavisi" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Ukupno različitih verzija:" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Unaprijed zavisi" +#: cmdline/apt-cache.cc:327 +#, fuzzy +msgid "Total distinct descriptions: " +msgstr "Ukupno različitih verzija:" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Predlaže" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Ukupno zavisnosti:" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Preporučuje" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Ukupno Verzija/Datoteka odnosa:" -#: apt-pkg/pkgcache.cc:322 +#: cmdline/apt-cache.cc:334 #, fuzzy -msgid "Conflicts" -msgstr "Sukobljava se sa" - -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Zamjenjuje" - -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Zastarijeva" +msgid "Total Desc/File relations: " +msgstr "Ukupno Verzija/Datoteka odnosa:" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " msgstr "" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " msgstr "" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "važno" - -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "zahtijevano" - -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standardno" - -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opcionalno" - -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" - -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " msgstr "" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " msgstr "" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " msgstr "" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "" - -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" - -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "" - -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "" - -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgid "Package file %s is out of sync." msgstr "" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Paketi nisu pronađeni" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" msgstr "" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Čitam spiskove paketa" - -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 #, c-format -msgid "Unable to write to %s" -msgstr "Ne mogu zapisati na %s" +msgid "Unable to locate package %s" +msgstr "Ne mogu pronaći paket %s" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Datoteke paketa:" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" msgstr "" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" msgstr "" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" msgstr "" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Instalirano:" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " msgstr "" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" msgstr "" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " msgstr "" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" msgstr "" -#: apt-pkg/acquire-item.cc:173 -msgid "Invalid file format" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1573 -#, c-format +#: cmdline/apt-cache.cc:1749 msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" msgstr "" -#: apt-pkg/acquire-item.cc:1589 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Ne mogu otvoriti DB datoteku %s" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "" -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" msgstr "" -#: apt-pkg/acquire-item.cc:1669 -#, c-format +#: cmdline/apt-cdrom.cc:139 +#, fuzzy, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Ne mogu otvoriti %s" + +#: cmdline/apt-cdrom.cc:178 msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -#: apt-pkg/acquire-item.cc:1691 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." msgstr "" -#: apt-pkg/acquire-item.cc:1721 -#, c-format +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumenti nisu u parovima" + +#: cmdline/apt-config.cc:89 msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" +"Upotreba: apt-config [opcije] naredba\n" +"\n" +"apt-config je jednostavni alat za čitanje APT konfiguracijske datoteke\n" +"\n" +"Naredbe:\n" +" shell - Shell mod\n" +" dump - Prikaz konfiguracije\n" +"\n" +"Opcije:\n" +" -h Ovaj tekst pomoći.\n" +" -c=? Pročitaj ovu konfiguracijsku datoteku\n" +" -o=? Podesi odgovarajuću konfiguracijsku opciju, npr. -o dir::cache=/tmp\n" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:245 #, c-format -msgid "GPG error: %s: %s" +msgid "Can not find a package for architecture '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:327 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" +msgid "Can not find a package '%s' with version '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1925 +#: cmdline/apt-get.cc:330 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" +msgid "Can not find a package '%s' with release '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:1983 +#: cmdline/apt-get.cc:367 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." +msgid "Picking '%s' as source package instead of '%s'\n" msgstr "" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:423 #, c-format -msgid "Vendor block %s contains no fingerprint" +msgid "Can not find version '%s' of package '%s'" msgstr "" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: cmdline/apt-get.cc:454 #, c-format -msgid "List directory %spartial is missing." +msgid "Couldn't find package %s" msgstr "" -#: apt-pkg/acquire.cc:91 -#, c-format -msgid "Archives directory %spartial is missing." -msgstr "" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, fuzzy, c-format +msgid "%s set to manually installed.\n" +msgstr "ali se %s treba instalirati" -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "Ne mogu kreirati %s" +msgid "%s set to automatically installed.\n" +msgstr "ali se %s treba instalirati" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 -#, c-format -msgid "Retrieving file %li of %li (%s remaining)" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-pkg/acquire.cc:904 -#, fuzzy, c-format -msgid "Retrieving file %li of %li" -msgstr "Čitam spisak datoteke" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 -#, c-format -msgid "Failed to fetch %s %s\n" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" msgstr "" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" msgstr "" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 +#, c-format +msgid "Unable to find a source package for %s" msgstr "" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:786 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -#: apt-pkg/policy.cc:422 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Did not understand pin type %s" +msgid "Skipping already downloaded file '%s'\n" msgstr "" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#, c-format +msgid "Couldn't determine free space in %s" msgstr "" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:882 #, c-format -msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +msgid "You don't have enough free space in %s" msgstr "" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Ne mogu otvoriti %s" - -#: apt-pkg/packagemanager.cc:583 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +msgid "Need to get %sB/%sB of source archives.\n" msgstr "" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "Line %u too long in source list %s." +msgid "Need to get %sB of source archives.\n" msgstr "" -#: apt-pkg/cdrom.cc:571 -#, fuzzy -msgid "Unmounting CD-ROM...\n" -msgstr "Pogrešan CD" - -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Using CD-ROM mount point %s\n" +msgid "Fetch source %s\n" msgstr "" -#: apt-pkg/cdrom.cc:599 -#, fuzzy -msgid "Waiting for disc...\n" -msgstr "Čekam na zaglavlja" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." msgstr "" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" msgstr "" -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Stored label: %s\n" +msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" +#: cmdline/apt-get.cc:963 +#, c-format +msgid "Unpack command '%s' failed.\n" msgstr "" -#: apt-pkg/cdrom.cc:734 +#: cmdline/apt-get.cc:964 #, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" +msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +#: cmdline/apt-get.cc:992 +#, c-format +msgid "Build command '%s' failed.\n" msgstr "" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" msgstr "" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" msgstr "" -#: apt-pkg/cdrom.cc:817 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"This disc is called: \n" -"'%s'\n" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-pkg/cdrom.cc:819 -#, fuzzy -msgid "Copying package lists..." -msgstr "Čitam spiskove paketa" - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 +#, c-format +msgid "Unable to get build-dependency information for %s" msgstr "" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" +#: cmdline/apt-get.cc:1102 +#, c-format +msgid "%s has no build depends.\n" msgstr "" -#: apt-pkg/algorithms.cc:265 +#: cmdline/apt-get.cc:1272 #, c-format msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" msgstr "" -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-get.cc:1290 +#, c-format msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Gradim stablo zavisnosti" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Verzije kandidata" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Stvaranje zavisnosti" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -#, fuzzy -msgid "Reading state information" -msgstr "Sastavljam dostupne informacije" - -#: apt-pkg/depcache.cc:250 -#, fuzzy, c-format -msgid "Failed to open StateFile %s" -msgstr "Ne mogu otvoriti %s" - -#: apt-pkg/depcache.cc:256 -#, fuzzy, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Ne mogu ukloniti %s" - -#: apt-pkg/tagfile.cc:140 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Unable to parse package file %s (1)" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: apt-pkg/tagfile.cc:237 +#: cmdline/apt-get.cc:1352 #, c-format -msgid "Unable to parse package file %s (2)" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" -#: apt-pkg/cacheset.cc:489 +#: cmdline/apt-get.cc:1358 #, c-format -msgid "Release '%s' for '%s' was not found" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -#: apt-pkg/cacheset.cc:492 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Version '%s' for '%s' was not found" +msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "Ne mogu pronaći paket %s" - -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "Ne mogu otvoriti %s" - -#: apt-pkg/cacheset.cc:609 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Couldn't find any package by regex '%s'" +msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Ne mogu otvoriti %s" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "" -#: apt-pkg/cacheset.cc:626 +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 #, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" +msgid "Changelog for %s (%s)" msgstr "" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Podržani moduli:" + +#: cmdline/apt-get.cc:1633 msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" +#: cmdline/apt-helper.cc:35 +msgid "Must specify at least one pair url/filename" msgstr "" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -#: apt-pkg/indexrecords.cc:78 +#: cmdline/apt-mark.cc:68 #, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "Ne mogu otvoriti DB datoteku %s" +msgid "%s can not be marked as it is not installed.\n" +msgstr "ali nije instaliran" + +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "ali se %s treba instalirati" + +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "ali se %s treba instalirati" -#: apt-pkg/indexrecords.cc:86 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "No sections in Release file %s" +msgid "%s was already set on hold.\n" msgstr "" -#: apt-pkg/indexrecords.cc:117 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "No Hash entry in Release file %s" +msgid "%s was already not hold.\n" msgstr "" -#: apt-pkg/indexrecords.cc:130 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" +msgid "Waited for %s but it wasn't there" msgstr "" -#: apt-pkg/indexrecords.cc:149 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Ne mogu otvoriti DB datoteku %s" +msgid "%s set on hold.\n" +msgstr "ali se %s treba instalirati" -#: apt-pkg/sourcelist.cc:127 -#, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "Ne mogu otvoriti %s" + +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" +#: cmdline/apt-mark.cc:392 +msgid "" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -#: apt-pkg/sourcelist.cc:184 +#: methods/cdrom.cc:203 #, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgid "Unable to read the cdrom database %s" msgstr "" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" msgstr "" -#: apt-pkg/sourcelist.cc:193 +#: methods/cdrom.cc:222 +#, fuzzy +msgid "Wrong CD-ROM" +msgstr "Pogrešan CD" + +#: methods/cdrom.cc:249 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Ne mogu demontirati CD-ROM na %s, moguće je da se još uvijek koristi." + +#: methods/cdrom.cc:254 +#, fuzzy +msgid "Disk not found." +msgstr "Datoteka nije pronađena" + +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Datoteka nije pronađena" + +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" msgstr "" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" msgstr "" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" msgstr "" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Prijavljujem se" + +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" msgstr "" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" msgstr "" -#: apt-pkg/sourcelist.cc:224 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" +msgid "The server refused the connection and said: %s" msgstr "" -#: apt-pkg/sourcelist.cc:335 +#: methods/ftp.cc:225 #, c-format -msgid "Opening %s" -msgstr "Otvaram %s" +msgid "USER failed, server said: %s" +msgstr "" -#: apt-pkg/sourcelist.cc:371 +#: methods/ftp.cc:232 #, c-format -msgid "Malformed line %u in source list %s (type)" +msgid "PASS failed, server said: %s" msgstr "" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -#: apt-pkg/sourcelist.cc:416 +#: methods/ftp.cc:280 #, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" +msgid "Login script command '%s' failed, server said: %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:95 -#, fuzzy, c-format -msgid "Installing %s" -msgstr " Instalirano:" - -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, fuzzy, c-format -msgid "Configuring %s" -msgstr "Povezujem se sa %s" - -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, fuzzy, c-format -msgid "Removing %s" -msgstr "Otvaram %s" - -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "Ne mogu ukloniti %s" - -#: apt-pkg/deb/dpkgpm.cc:99 +#: methods/ftp.cc:306 #, c-format -msgid "Noting disappearance of %s" +msgid "TYPE failed, server said: %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" msgstr "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Server je zatvorio vezu" + +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Greška pri čitanju" + +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "Ne mogu otvoriti %s" +#: methods/ftp.cc:377 methods/ftp.cc:389 +#, fuzzy +msgid "Protocol corruption" +msgstr "Oštećenje protokola" -#: apt-pkg/deb/dpkgpm.cc:989 -#, fuzzy, c-format -msgid "Preparing %s" -msgstr "Otvaram %s" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Greška pri pisanju" -#: apt-pkg/deb/dpkgpm.cc:990 -#, fuzzy, c-format -msgid "Unpacking %s" -msgstr "Otvaram %s" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:997 -#, fuzzy, c-format -msgid "Installed %s" -msgstr " Instalirano:" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Neuspješno" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, fuzzy, c-format -msgid "Removed %s" -msgstr "Preporučuje" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, fuzzy, c-format -msgid "Completely removed %s" -msgstr "Ne mogu ukloniti %s" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Ne mogu zapisati na %s" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/ftp.cc:811 #, c-format -msgid "Waited for %s but it wasn't there" +msgid "EPRT failed, server said: %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" msgstr "" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +#: methods/ftp.cc:890 +#, c-format +msgid "Unable to fetch file, server said '%s'" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" +#: methods/ftp.cc:935 +#, c-format +msgid "Data transfer failed, server said '%s'" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " msgstr "" -#: apt-pkg/deb/debsystem.cc:91 +#: methods/connect.cc:76 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +msgid "Connecting to %s (%s)" msgstr "" -#: apt-pkg/deb/debsystem.cc:94 +#: methods/connect.cc:87 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" +msgid "[IP: %s %s]" msgstr "" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: methods/connect.cc:94 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" +#: methods/connect.cc:100 +#, c-format +msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 +#: methods/connect.cc:108 #, c-format -msgid "%lid %lih %limin %lis" +msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: methods/connect.cc:126 #, c-format -msgid "%lih %limin %lis" +msgid "Could not connect to %s:%s (%s)." msgstr "" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "%limin %lis" -msgstr "" +msgid "Connecting to %s" +msgstr "Povezujem se sa %s" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "%lis" +msgid "Could not resolve '%s'" msgstr "" -#: apt-pkg/contrib/strutl.cc:1243 +#: methods/connect.cc:205 #, c-format -msgid "Selection %s not found" +msgid "Temporary failure resolving '%s'" msgstr "" -#: apt-pkg/contrib/fileutl.cc:190 +#: methods/connect.cc:209 #, c-format -msgid "Not using locking for read only lock file %s" +msgid "System error resolving '%s:%s'" msgstr "" -#: apt-pkg/contrib/fileutl.cc:195 +#: methods/connect.cc:211 #, c-format -msgid "Could not open lock file %s" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" +#: methods/connect.cc:258 +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Ne mogu se povezati sa %s %s:" + +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." msgstr "" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -#: apt-pkg/contrib/fileutl.cc:394 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgid "" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" msgstr "" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +#, fuzzy +msgid "The following signatures were invalid:\n" +msgstr "Slijedeći dodatni paketi će biti instalirani:" + +#: methods/gpgv.cc:231 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." +#: methods/http.cc:509 +msgid "Error writing to the file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" msgstr "" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" +#: methods/http.cc:525 +msgid "Error reading from server" msgstr "" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Greška pri pisanju" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" +#: methods/http.cc:621 +msgid "Select failed" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" +#: methods/http.cc:626 +msgid "Connection timed out" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "Ne mogu otvoriti %s" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "" + +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Čekam na zaglavlja" + +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "" + +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "" + +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "" + +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "" + +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "" + +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Nepoznat oblik datuma" + +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "" + +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Povezivanje neuspješno" + +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Unutrašnja greška" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Greška pri čitanju" - -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." msgstr "" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Ne mogu ukloniti %s" - -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1938 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Problem unlinking the file %s" -msgstr "" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" +msgid "Need to get %sB/%sB of archives.\n" msgstr "" -#: apt-pkg/contrib/progress.cc:148 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "%c%s... Error!" +msgid "Need to get %sB of archives.\n" msgstr "" -#: apt-pkg/contrib/progress.cc:150 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "%c%s... Done" +msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 +#, c-format +msgid "After this operation, %sB disk space will be freed.\n" msgstr "" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#: apt-private/private-install.cc:200 #, c-format -msgid "%c%s... %u%%" +msgid "You don't have enough free space in %s." msgstr "" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" msgstr "" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -#: apt-pkg/contrib/mmap.cc:119 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Da, uradi kako kažem!" + +#: apt-private/private-install.cc:222 #, c-format -msgid "Couldn't make mmap of %llu bytes" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "Ne mogu kreirati %s" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Odustani." -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -#, fuzzy -msgid "Unable to synchronize mmap" -msgstr "Ne mogu kreirati %s" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Da li želite nastaviti?" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" msgstr "" -#: apt-pkg/contrib/mmap.cc:322 -#, fuzzy -msgid "Failed to truncate file" -msgstr "Ne mogu ukloniti %s" - -#: apt-pkg/contrib/mmap.cc:341 -#, c-format +#: apt-private/private-install.cc:320 msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" msgstr "" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." msgstr "" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Odustajem od instalacije." -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "" +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" msgstr "" -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" +#: apt-private/private-install.cc:513 +#, fuzzy +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "Slijedeći NOVI paketi će biti instalirani:" +msgstr[1] "Slijedeći NOVI paketi će biti instalirani:" -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "" +#: apt-private/private-install.cc:517 +#, fuzzy, c-format +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "Slijedeći NOVI paketi će biti instalirani:" +msgstr[1] "Slijedeći NOVI paketi će biti instalirani:" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "" +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -#: apt-pkg/contrib/configuration.cc:900 -#, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." msgstr "" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "Odustajem od instalacije." +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Oštećeni paketi" + +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Slijedeći dodatni paketi će biti instalirani:" + +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Predloženi paketi:" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Preporučeni paketi:" + +#: apt-private/private-install.cc:825 #, c-format -msgid "Command line option '%c' [from %s] is not known." +msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-private/private-install.cc:829 #, c-format -msgid "Command line option %s is not understood" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-private/private-install.cc:841 #, c-format -msgid "Command line option %s is not boolean" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-private/private-install.cc:846 #, c-format -msgid "Option %s requires an argument." +msgid "%s is already the newest version.\n" msgstr "" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-private/private-install.cc:894 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." +msgid "Selected version '%s' (%s) for '%s'\n" msgstr "" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-private/private-install.cc:899 #, c-format -msgid "Option %s requires an integer argument, not '%s'" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" msgstr "" -#: apt-pkg/contrib/cmndline.cc:309 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Option '%s' is too long" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" msgstr "" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-private/private-install.cc:947 #, c-format -msgid "Sense %s is not understood, try true or false." +msgid "Package '%s' is not installed, so not removed\n" msgstr "" -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -#: cmdline/apt-cache.cc:149 +#: apt-private/private-list.cc:164 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Paket %s verzije %s ima nezadovoljenu zavisnost:\n" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Ukupno naziva paketa:" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Ispravljam zavisnosti..." -#: cmdline/apt-cache.cc:279 -#, fuzzy -msgid "Total package structures: " -msgstr "Ukupno naziva paketa:" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr "" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Normalni paketi:" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Ne mogu ispraviti zavisnosti" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Čisto virtuelni paketi:" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Pojedinačni virutuelni paketi:" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Urađeno" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Miješani virtuelni paketi:" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Nedostajući:" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Nezadovoljene zavisnosti. Pokušajte koristeći -f." -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Ukupno različitih verzija:" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:327 +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr "[Instalirano]" + +#: apt-private/private-output.cc:238 #, fuzzy -msgid "Total distinct descriptions: " -msgstr "Ukupno različitih verzija:" +msgid "[installed,local]" +msgstr "[Instalirano]" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Ukupno zavisnosti:" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Ukupno Verzija/Datoteka odnosa:" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr "[Instalirano]" -#: cmdline/apt-cache.cc:334 +#: apt-private/private-output.cc:245 #, fuzzy -msgid "Total Desc/File relations: " -msgstr "Ukupno Verzija/Datoteka odnosa:" +msgid "[installed]" +msgstr "[Instalirano]" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" msgstr "" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "ali je %s instaliran" + +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "ali se %s treba instalirati" + +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "ali se ne može instalirati" + +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "ali je virtuelni paket" + +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "ali nije instaliran" + +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "ali se neće instalirati" + +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " ili" + +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" msgstr "" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Slijedeći NOVI paketi će biti instalirani:" + +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Slijedeći paketi će biti UKLONJENI:" + +#: apt-private/private-output.cc:551 +#, fuzzy +msgid "The following packages have been kept back:" +msgstr "Slijedeći paketi su zadržani:" + +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Slijedeći paketi će biti nadograđeni:" + +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" msgstr "" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" msgstr "" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 +#: apt-private/private-output.cc:668 #, c-format -msgid "Package file %s is out of sync." +msgid "%s (due to %s) " msgstr "" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Paketi nisu pronađeni" - -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-private/private-output.cc:707 +#, c-format +msgid "%lu upgraded, %lu newly installed, " msgstr "" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Datoteke paketa:" - -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" +#: apt-private/private-output.cc:711 +#, c-format +msgid "%lu reinstalled, " msgstr "" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" +#: apt-private/private-output.cc:713 +#, c-format +msgid "%lu downgraded, " msgstr "" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" +#: apt-private/private-output.cc:715 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" msgstr "" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Instalirano:" +#: apt-private/private-output.cc:719 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" msgstr "" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" msgstr "" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" msgstr "" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" msgstr "" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "%s %s for %s compiled on %s %s\n" +msgid "Regex compilation error - %s" msgstr "" -#: cmdline/apt-cache.cc:1749 -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" msgstr "" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "" +#: apt-private/private-update.cc:90 +#, c-format +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Ne mogu otvoriti %s" +#: apt-private/private-show.cc:156 +#, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" msgstr "" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." +#: apt-private/private-main.cc:32 +msgid "" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumenti nisu u parovima" +#: apt-private/private-download.cc:36 +#, fuzzy +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "Slijedeći paketi će biti nadograđeni:" -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" msgstr "" -"Upotreba: apt-config [opcije] naredba\n" -"\n" -"apt-config je jednostavni alat za čitanje APT konfiguracijske datoteke\n" -"\n" -"Naredbe:\n" -" shell - Shell mod\n" -" dump - Prikaz konfiguracije\n" -"\n" -"Opcije:\n" -" -h Ovaj tekst pomoći.\n" -" -c=? Pročitaj ovu konfiguracijsku datoteku\n" -" -o=? Podesi odgovarajuću konfiguracijsku opciju, npr. -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:245 -#, c-format -msgid "Can not find a package for architecture '%s'" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" msgstr "" -#: cmdline/apt-get.cc:327 -#, c-format -msgid "Can not find a package '%s' with version '%s'" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" msgstr "" -#: cmdline/apt-get.cc:330 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Can not find a package '%s' with release '%s'" +msgid "Failed to fetch %s %s\n" msgstr "" -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "" +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Ne mogu otvoriti %s" -#: cmdline/apt-get.cc:423 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Can not find version '%s' of package '%s'" +msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" msgstr "" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, fuzzy, c-format -msgid "%s set to manually installed.\n" -msgstr "ali se %s treba instalirati" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Računam nadogradnju..." -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "ali se %s treba instalirati" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Urađeno" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +#: apt-private/acqprogress.cc:66 +msgid "Hit " msgstr "" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" +#: apt-private/acqprogress.cc:90 +msgid "Get:" msgstr "" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" +#: apt-private/acqprogress.cc:121 +msgid "Ign " msgstr "" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" +#: apt-private/acqprogress.cc:125 +msgid "Err " msgstr "" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Unable to find a source package for %s" +msgid "Fetched %sB in %s (%sB/s)\n" msgstr "" -#: cmdline/apt-get.cc:786 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +msgid " [Working]" msgstr "" -#: cmdline/apt-get.cc:791 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" -msgstr "" - -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "" +msgid "Unable to read %s" +msgstr "Ne mogu čitati %s" -#: cmdline/apt-get.cc:882 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "You don't have enough free space in %s" +msgid "Unable to change to %s" msgstr "" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" +msgid "No mirror file '%s' found " msgstr "" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "" +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 +#, fuzzy, c-format +msgid "Can not read mirror file '%s'" +msgstr "Ne mogu otvoriti %s" -#: cmdline/apt-get.cc:902 +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Ne mogu otvoriti %s" + +#: methods/mirror.cc:445 #, c-format -msgid "Fetch source %s\n" +msgid "[Mirror: %s]" msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" msgstr "" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" msgstr "" -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Loša podrazumjevana postavka!" -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Pritisnite enter za nastavak." -#: cmdline/apt-get.cc:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" msgstr "" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" msgstr "" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -#: cmdline/apt-get.cc:1054 -#, c-format +#: dselect/install:105 msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Sastavljam dostupne informacije" -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" msgstr "" -#: cmdline/apt-get.cc:1271 -#, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" msgstr "" -#: cmdline/apt-get.cc:1289 -#, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" msgstr "" -#: cmdline/apt-get.cc:1312 -#, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" msgstr "" -#: cmdline/apt-get.cc:1351 +#: apt-inst/filelist.cc:477 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "" -#: cmdline/apt-get.cc:1357 +#: apt-inst/filelist.cc:506 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +msgid "Double add of diversion %s -> %s" msgstr "" -#: cmdline/apt-get.cc:1380 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" +msgid "Duplicate conf file %s/%s" msgstr "" -#: cmdline/apt-get.cc:1395 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "" - -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" +msgid "The path %s is too long" msgstr "" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-inst/extract.cc:132 #, c-format -msgid "Changelog for %s (%s)" -msgstr "" - -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Podržani moduli:" - -#: cmdline/apt-get.cc:1632 -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" +msgid "Unpacking %s more than once" msgstr "" -#: cmdline/apt-helper.cc:35 -msgid "Must specify at least one pair url/filename" +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" msgstr "" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" msgstr "" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" msgstr "" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "ali nije instaliran" - -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "ali se %s treba instalirati" - -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "ali se %s treba instalirati" - -#: cmdline/apt-mark.cc:241 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "%s was already set on hold.\n" +msgid "Failed to stat %s" msgstr "" -#: cmdline/apt-mark.cc:243 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "%s was already not hold.\n" -msgstr "" - -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "ali se %s treba instalirati" - -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Ne mogu otvoriti %s" - -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" +msgid "Failed to rename %s to %s" msgstr "" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" msgstr "" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" msgstr "" -#: methods/cdrom.cc:203 +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Putanja je preduga" + +#: apt-inst/extract.cc:421 #, c-format -msgid "Unable to read the cdrom database %s" +msgid "Overwrite package match with no version for %s" msgstr "" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" +#: apt-inst/extract.cc:438 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" msgstr "" -#: methods/cdrom.cc:222 -#, fuzzy -msgid "Wrong CD-ROM" -msgstr "Pogrešan CD" +#: apt-inst/extract.cc:498 +#, c-format +msgid "Unable to stat %s" +msgstr "" -#: methods/cdrom.cc:249 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, fuzzy, c-format +msgid "Failed to write file %s" +msgstr "Ne mogu ukloniti %s" + +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Ne mogu demontirati CD-ROM na %s, moguće je da se još uvijek koristi." +msgid "Failed to close file %s" +msgstr "" -#: methods/cdrom.cc:254 -#, fuzzy -msgid "Disk not found." -msgstr "Datoteka nije pronađena" +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Datoteka nije pronađena" +#: apt-inst/deb/debfile.cc:132 +#, c-format +msgid "Internal error, could not locate member %s" +msgstr "" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" msgstr "" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" msgstr "" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" msgstr "" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Prijavljujem se" +#: apt-inst/contrib/arfile.cc:96 +#, c-format +msgid "Invalid archive member header %s" +msgstr "" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" msgstr "" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Arhiva je prekratka" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" msgstr "" -#: methods/ftp.cc:219 methods/ftp.cc:247 -#, c-format -msgid "The server refused the connection and said: %s" +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" msgstr "" -#: methods/ftp.cc:225 +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Ne mogu izvršiti gzip" + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Oštećena arhiva" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Provjera Tar kontrolnog zbira nije uspjela, arhiva oštećena" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "USER failed, server said: %s" +msgid "Unknown TAR header type %u, member %s" msgstr "" -#: methods/ftp.cc:232 +#: apt-pkg/install-progress.cc:57 #, c-format -msgid "PASS failed, server said: %s" +msgid "Progress: [%3i%%]" msgstr "" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" msgstr "" -#: methods/ftp.cc:280 +#: apt-pkg/init.cc:146 #, c-format -msgid "Login script command '%s' failed, server said: %s" +msgid "Packaging system '%s' is not supported" msgstr "" -#: methods/ftp.cc:306 -#, c-format -msgid "TYPE failed, server said: %s" +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" msgstr "" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" msgstr "" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Server je zatvorio vezu" +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: methods/ftp.cc:377 methods/ftp.cc:389 -#, fuzzy -msgid "Protocol corruption" -msgstr "Oštećenje protokola" +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" msgstr "" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" msgstr "" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Neuspješno" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" msgstr "" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." msgstr "" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" msgstr "" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" msgstr "" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" msgstr "" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" msgstr "" -#: methods/ftp.cc:802 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unknown address family %u (AF_*)" +msgid "This APT does not support the versioning system '%s'" msgstr "" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" msgstr "" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Zavisi" + +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Unaprijed zavisi" + +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Predlaže" + +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Preporučuje" + +#: apt-pkg/pkgcache.cc:322 +#, fuzzy +msgid "Conflicts" +msgstr "Sukobljava se sa" + +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Zamjenjuje" + +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Zastarijeva" + +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" msgstr "" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "" + +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "važno" + +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "zahtijevano" + +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standardno" + +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "opcionalno" + +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" + +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." msgstr "" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" +#: apt-pkg/acquire-worker.cc:118 +#, c-format +msgid "Is the package %s installed?" msgstr "" -#: methods/ftp.cc:890 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Unable to fetch file, server said '%s'" +msgid "Method %s did not start correctly" msgstr "" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" -#: methods/ftp.cc:935 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Data transfer failed, server said '%s'" +msgid "Index file type '%s' is not supported" msgstr "" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Gradim stablo zavisnosti" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Verzije kandidata" -#: methods/connect.cc:76 -#, c-format -msgid "Connecting to %s (%s)" -msgstr "" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Stvaranje zavisnosti" -#: methods/connect.cc:87 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +#, fuzzy +msgid "Reading state information" +msgstr "Sastavljam dostupne informacije" + +#: apt-pkg/depcache.cc:250 +#, fuzzy, c-format +msgid "Failed to open StateFile %s" +msgstr "Ne mogu otvoriti %s" + +#: apt-pkg/depcache.cc:256 +#, fuzzy, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Ne mogu ukloniti %s" + +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "[IP: %s %s]" +msgid "rename failed, %s (%s -> %s)." msgstr "" -#: methods/connect.cc:94 -#, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" msgstr "" -#: methods/connect.cc:100 -#, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" msgstr "" -#: methods/connect.cc:108 -#, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" +#: apt-pkg/acquire-item.cc:173 +msgid "Invalid file format" msgstr "" -#: methods/connect.cc:126 +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Could not connect to %s:%s (%s)." +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 -#, c-format -msgid "Connecting to %s" -msgstr "Povezujem se sa %s" +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Ne mogu otvoriti DB datoteku %s" -#: methods/connect.cc:180 methods/connect.cc:199 -#, c-format -msgid "Could not resolve '%s'" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" msgstr "" -#: methods/connect.cc:205 +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Temporary failure resolving '%s'" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -#: methods/connect.cc:209 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "System error resolving '%s:%s'" +msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: methods/connect.cc:211 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "" - -#: methods/connect.cc:258 -#, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Ne mogu se povezati sa %s %s:" - -#: methods/gpgv.cc:168 msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" msgstr "" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1859 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -#, fuzzy -msgid "The following signatures were invalid:\n" -msgstr "Slijedeći dodatni paketi će biti instalirani:" - -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1983 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, c-format +msgid "Clean of %s is not supported" msgstr "" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." msgstr "" -#: methods/http.cc:525 -msgid "Error reading from server" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" msgstr "" -#: methods/http.cc:561 -msgid "Error writing to file" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, c-format +msgid "Error occurred while processing %s (%s%d)" msgstr "" -#: methods/http.cc:621 -msgid "Select failed" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -#: methods/http.cc:626 -msgid "Connection timed out" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" -#: methods/http.cc:649 -msgid "Error writing to output file" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Čekam na zaglavlja" - -#: methods/server.cc:109 -msgid "Bad header line" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" msgstr "" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" msgstr "" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Čitam spiskove paketa" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" msgstr "" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Nepoznat oblik datuma" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Ne mogu zapisati na %s" -#: methods/server.cc:489 -msgid "Bad header data" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" msgstr "" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Povezivanje neuspješno" - -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Unutrašnja greška" - -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Računam nadogradnju..." - -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Urađeno" - -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" msgstr "" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/acquire.cc:91 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Archives directory %spartial is missing." +msgstr "" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Ispravljam zavisnosti..." +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "Ne mogu kreirati %s" -#: apt-private/private-cachefile.cc:96 -msgid " failed." +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" msgstr "" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Ne mogu ispraviti zavisnosti" +#: apt-pkg/acquire.cc:904 +#, fuzzy, c-format +msgid "Retrieving file %li of %li" +msgstr "Čitam spisak datoteke" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Urađeno" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Nezadovoljene zavisnosti. Pokušajte koristeći -f." +#: apt-pkg/policy.cc:422 +#, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" msgstr "" -#: apt-private/private-output.cc:234 +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" + +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr "[Instalirano]" +msgid "Could not configure '%s'. " +msgstr "Ne mogu otvoriti %s" -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr "[Instalirano]" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." msgstr "" -#: apt-private/private-output.cc:243 +#: apt-pkg/cdrom.cc:571 #, fuzzy -msgid "[installed,automatic]" -msgstr "[Instalirano]" +msgid "Unmounting CD-ROM...\n" +msgstr "Pogrešan CD" -#: apt-private/private-output.cc:245 +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "" + +#: apt-pkg/cdrom.cc:599 #, fuzzy -msgid "[installed]" -msgstr "[Instalirano]" +msgid "Waiting for disc...\n" +msgstr "Čekam na zaglavlja" -#: apt-private/private-output.cc:249 -#, c-format -msgid "[upgradable from: %s]" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" msgstr "" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " msgstr "" -#: apt-private/private-output.cc:435 +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "but %s is installed" -msgstr "ali je %s instaliran" +msgid "Stored label: %s\n" +msgstr "" -#: apt-private/private-output.cc:437 +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "" + +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "but %s is to be installed" -msgstr "ali se %s treba instalirati" +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "ali se ne može instalirati" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "ali je virtuelni paket" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "ali nije instaliran" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "ali se neće instalirati" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " ili" +#: apt-pkg/cdrom.cc:819 +#, fuzzy +msgid "Copying package lists..." +msgstr "Čitam spiskove paketa" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" msgstr "" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Slijedeći NOVI paketi će biti instalirani:" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Slijedeći paketi će biti UKLONJENI:" +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" -#: apt-private/private-output.cc:551 -#, fuzzy -msgid "The following packages have been kept back:" -msgstr "Slijedeći paketi su zadržani:" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Slijedeći paketi će biti nadograđeni:" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" msgstr "" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" msgstr "" -#: apt-private/private-output.cc:668 -#, c-format -msgid "%s (due to %s) " +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" msgstr "" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -#: apt-private/private-output.cc:707 +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" + +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%lu upgraded, %lu newly installed, " +msgid "Unable to parse package file %s (1)" msgstr "" -#: apt-private/private-output.cc:711 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%lu reinstalled, " +msgid "Unable to parse package file %s (2)" msgstr "" -#: apt-private/private-output.cc:713 +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "Ne mogu otvoriti DB datoteku %s" + +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "%lu downgraded, " +msgid "No sections in Release file %s" msgstr "" -#: apt-private/private-output.cc:715 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" +msgid "No Hash entry in Release file %s" msgstr "" -#: apt-private/private-output.cc:719 +#: apt-pkg/indexrecords.cc:130 #, c-format -msgid "%lu not fully installed or removed.\n" +msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Ne mogu otvoriti DB datoteku %s" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" +#: apt-pkg/sourcelist.cc:127 +#, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "" -#: apt-private/private-update.cc:90 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" -#: apt-private/private-show.cc:156 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" msgstr "" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" msgstr "" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" msgstr "" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "Need to get %sB/%sB of archives.\n" +msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "" +msgid "Opening %s" +msgstr "Otvaram %s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" +msgid "Malformed line %u in source list %s (type)" msgstr "" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" +msgid "Type '%s' is not known on line %u in source list %s" msgstr "" -#: apt-private/private-install.cc:200 +#: apt-pkg/sourcelist.cc:416 #, c-format -msgid "You don't have enough free space in %s." +msgid "Type '%s' is not known on stanza %u in source list %s" msgstr "" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" msgstr "" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" msgstr "" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Da, uradi kako kažem!" +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "Ne mogu otvoriti %s" -#: apt-private/private-install.cc:222 +#: apt-pkg/cacheset.cc:609 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +msgid "Couldn't find any package by regex '%s'" msgstr "" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Odustani." - -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Da li želite nastaviti?" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Ne mogu otvoriti %s" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: apt-private/private-install.cc:320 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" - -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Odustajem od instalacije." - -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" msgstr "" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" msgstr "" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" msgstr "" - -#: apt-private/private-install.cc:513 -#, fuzzy -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "Slijedeći NOVI paketi će biti instalirani:" -msgstr[1] "Slijedeći NOVI paketi će biti instalirani:" - -#: apt-private/private-install.cc:517 -#, fuzzy, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "Slijedeći NOVI paketi će biti instalirani:" -msgstr[1] "Slijedeći NOVI paketi će biti instalirani:" - -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" + +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" msgstr "" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" msgstr "" -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" msgstr "" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Oštećeni paketi" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Slijedeći dodatni paketi će biti instalirani:" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Predloženi paketi:" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Preporučeni paketi:" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:394 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:412 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:421 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "%s is already the newest version.\n" +msgid "Sub-process %s received a segmentation fault." msgstr "" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:826 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" +msgid "Sub-process %s received signal %u." msgstr "" -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgid "Sub-process %s returned an error code (%u)" msgstr "" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgid "Sub-process %s exited unexpectedly" msgstr "" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "Package '%s' is not installed, so not removed\n" +msgid "Problem closing the gzip file %s" msgstr "" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" msgstr "" -#: apt-private/private-download.cc:36 -#, fuzzy -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "Slijedeći paketi će biti nadograđeni:" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Ne mogu otvoriti %s" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" msgstr "" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " msgstr "" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" msgstr "" -#: apt-private/private-sources.cc:58 +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "" + +#: apt-pkg/contrib/fileutl.cc:1915 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Ne mogu otvoriti %s" +msgid "Problem closing the file %s" +msgstr "Ne mogu ukloniti %s" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/fileutl.cc:1927 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +msgid "Problem renaming the file %s to %s" msgstr "" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" msgstr "" -#: apt-private/acqprogress.cc:90 -msgid "Get:" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" msgstr "" -#: apt-private/acqprogress.cc:121 -msgid "Ign " +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" msgstr "" -#: apt-private/acqprogress.cc:125 -msgid "Err " +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -#: apt-private/acqprogress.cc:146 +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" +msgid "%c%s... %u%%" msgstr "" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "" + +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid " [Working]" +msgid "Couldn't duplicate file descriptor %i" msgstr "" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/mmap.cc:119 #, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +msgid "Couldn't make mmap of %llu bytes" msgstr "" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Ne mogu kreirati %s" + +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "Ne mogu kreirati %s" + +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "No mirror file '%s' found " +msgid "Couldn't make mmap of %lu bytes" msgstr "" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Ne mogu otvoriti %s" +#: apt-pkg/contrib/mmap.cc:322 +#, fuzzy +msgid "Failed to truncate file" +msgstr "Ne mogu ukloniti %s" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Ne mogu otvoriti %s" +#: apt-pkg/contrib/mmap.cc:341 +#, c-format +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "[Mirror: %s]" +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" msgstr "" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Loša podrazumjevana postavka!" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Pritisnite enter za nastavak." +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" msgstr "" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "" + +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "" + +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" msgstr "" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" msgstr "" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" msgstr "" -#: dselect/update:30 -msgid "Merging available information" -msgstr "Sastavljam dostupne informacije" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "Odustajem od instalacije." -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgid "Command line option '%c' [from %s] is not known." msgstr "" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 #, c-format -msgid "Double add of diversion %s -> %s" +msgid "Command line option %s is not understood" msgstr "" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format -msgid "Duplicate conf file %s/%s" +msgid "Command line option %s is not boolean" msgstr "" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "The path %s is too long" +msgid "Option %s requires an argument." msgstr "" -#: apt-inst/extract.cc:132 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Unpacking %s more than once" +msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" -#: apt-inst/extract.cc:142 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "The directory %s is diverted" +msgid "Option %s requires an integer argument, not '%s'" msgstr "" -#: apt-inst/extract.cc:152 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" +msgid "Option '%s' is too long" msgstr "" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." msgstr "" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "Failed to stat %s" +msgid "Invalid operation %s" msgstr "" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:95 +#, fuzzy, c-format +msgid "Installing %s" +msgstr " Instalirano:" + +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, fuzzy, c-format +msgid "Configuring %s" +msgstr "Povezujem se sa %s" + +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, fuzzy, c-format +msgid "Removing %s" +msgstr "Otvaram %s" + +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "Ne mogu ukloniti %s" + +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to rename %s to %s" +msgid "Noting disappearance of %s" msgstr "" -#: apt-inst/extract.cc:249 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "The directory %s is being replaced by a non-directory" +msgid "Running post-installation trigger %s" msgstr "" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" msgstr "" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Putanja je preduga" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "Ne mogu otvoriti %s" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:989 +#, fuzzy, c-format +msgid "Preparing %s" +msgstr "Otvaram %s" + +#: apt-pkg/deb/dpkgpm.cc:990 +#, fuzzy, c-format +msgid "Unpacking %s" +msgstr "Otvaram %s" + +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Overwrite package match with no version for %s" +msgid "Preparing to configure %s" msgstr "" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:997 +#, fuzzy, c-format +msgid "Installed %s" +msgstr " Instalirano:" + +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "File %s/%s overwrites the one in the package %s" +msgid "Preparing for removal of %s" msgstr "" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:1004 +#, fuzzy, c-format +msgid "Removed %s" +msgstr "Preporučuje" + +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Unable to stat %s" +msgid "Preparing to completely remove %s" msgstr "" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:1010 #, fuzzy, c-format -msgid "Failed to write file %s" +msgid "Completely removed %s" msgstr "Ne mogu ukloniti %s" -#: apt-inst/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 -#, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Ne mogu zapisati na %s" -#: apt-inst/deb/debfile.cc:132 -#, c-format -msgid "Internal error, could not locate member %s" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" msgstr "" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" msgstr "" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" msgstr "" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arhiva je prekratka" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" msgstr "" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" msgstr "" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Ne mogu izvršiti gzip" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Oštećena arhiva" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Provjera Tar kontrolnog zbira nije uspjela, arhiva oštećena" +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "" -#: apt-inst/contrib/extracttar.cc:308 +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 #, c-format -msgid "Unknown TAR header type %u, member %s" +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" msgstr "" #: cmdline/apt-extracttemplates.cc:224 diff --git a/po/ca.po b/po/ca.po index 7eada0a9f..ee6e57393 100644 --- a/po/ca.po +++ b/po/ca.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.6\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2012-10-19 13:30+0200\n" "Last-Translator: Jordi Mallach <jordi@debian.org>\n" "Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n" @@ -18,3250 +18,3251 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "El tipus de fitxer índex «%s» no està suportat" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "No es pot llegir %s" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "No es pot canviar a %s" - -#: apt-pkg/clean.cc:64 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Unable to stat %s." -msgstr "No es pot veure l'estat de %s." +msgid "Package %s version %s has an unmet dep:\n" +msgstr "El paquet %s versió %s té una dependència sense satisfer:\n" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Nombre total de paquets: " -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "S'està executant dpkg" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Nombre total d'estructures de paquets: " -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "El sistema d'empaquetament «%s» no està suportat" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Paquets normals: " -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "No es pot determinar un tipus de sistema d'empaquetament adequat." +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Paquets virtuals purs: " -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "S'han escrit %i registres.\n" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Paquets virtuals únics: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "S'han escrit %i registres, on falten %i fitxers.\n" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Paquets virtuals mixtes: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "S'han escrit %i registres, on hi ha %i fitxers no coincidents\n" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Falten: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"S'han escrit %i registres, on falten %i fitxers i hi ha %i fitxers no " -"coincidents\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Nombre total de versions diferents: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "No s'ha pogut trobar el registre d'autenticatió per a: %s" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Nombre total de descripcions diferents: " -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "El resum no coincideix per a: %s" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Nombre total de dependències: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "No s'ha pogut trobar el mètode de control %s." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Nombre total de relacions versió/fitxer: " -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Comproveu si el paquet «dpkgdev» està instaŀlat.\n" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Nombre total de relacions descripció/fitxer: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "El mètode %s no s'ha iniciat correctament" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Nombre total dels mapes aportats: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Inseriu el disc amb l'etiqueta: «%s» en la unitat «%s» i premeu Intro." +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Nombre total de cadenes globals: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "" -"No s'han pogut analitzar o obrir les llistes de paquets o el fitxer d'estat." +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Nombre total de l'espai per a dependències de versió: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "" -"Potser voldreu executar apt-get update per a corregir aquests problemes" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Nombre total de l'espai desaprofitat: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "No s'ha pogut llegir la llista de les fonts." +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Nombre total de l'espai atribuït a: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Memòria cau de paquets és buida" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "El fitxer %s del paquet està desincronitzat." -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "El fitxer de memòria cau de paquets està corromput" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "No s'han trobat paquets" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "El fitxer de memòria cau de paquets és una versió incompatible" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Heu de donar com a mínim un patró de cerca" -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "El fitxer de memòria cau de paquets està corromput, és massa petit" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" +"Aquesta ordre és desaconsellada. Empreu «apt-mark showauto» en el seu lloc." -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Aquest APT no suporta el sistema de versions «%s»" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "La memòria cau de paquets fou creada per a una arquitectura diferent" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Depèn" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Predepèn" +msgid "Unable to locate package %s" +msgstr "No s'ha trobat el paquet %s" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Suggereix" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Fitxers de paquets:" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Recomana" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" +"Memòria cau no sincronitzada, no es pot fer x-ref a un fitxer del paquet" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Entra en conflicte" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Paquets etiquetats:" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Reemplaça" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(no trobat)" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Fa obsolet" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Instaŀlat: " -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Trenca" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Candidat: " -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Millora" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(cap)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "important" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Etiqueta del paquet: " -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "requerit" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Taula de versió:" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "estàndard" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s per a %s compilat el %s %s\n" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opcional" - -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" - -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "El tipus de fitxer índex «%s» no està suportat" - -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" -msgstr "S'ha produït un error de compilació de l'expressió regular - %s" - -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "La memòria cau té un sistema de versions incompatible" - -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "S'ha produït un error en processar %s (%s%d)" - -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" -"Uau, heu excedit el nombre de paquets que aquest APT és capaç de gestionar." - -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "" -"Uau, heu excedit el nombre de versions que aquest APT és capaç de gestionar." - -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "" -"Uau, heu excedit el nombre de descripcions que aquest APT és capaç de " -"gestionar. " - -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "" -"Uau, heu excedit el nombre de dependències que aquest APT és capaç de " -"gestionar." - -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "" -"No s'ha trobat el paquet %s %s en processar les dependències del fitxer" - -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "No s'ha pogut llegir la llista de paquets font %s" - -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "S'està llegint la llista de paquets" - -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "S'estan recollint els fitxers que proveeixen" - -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "No es pot escriure en %s" - -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Error d'E/S en desar la memòria cau de la font" - -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "Envia l'escenari al resoledor" - -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "Envia la petició al resoledor" - -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "Prepara per a rebre una solució" - -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "El resoledor extern ha fallat sense un missatge d'error adient" - -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "Executa un resoledor extern" - -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "no s'ha pogut canviar el nom, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "La suma resum no concorda" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "La mida no concorda" - -#: apt-pkg/acquire-item.cc:173 +#: cmdline/apt-cache.cc:1749 #, fuzzy -msgid "Invalid file format" -msgstr "Operació no vàlida %s" - -#: apt-pkg/acquire-item.cc:1573 -#, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" msgstr "" -"No s'ha trobat l'entrada «%s» esperada, al fitxer Release (entrada errònia " -"al sources.list o fitxer malformat)" - -#: apt-pkg/acquire-item.cc:1589 -#, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "No s'ha trobat la suma de comprovació per a «%s» al fitxer Release" +"Forma d'ús: apt-cache [opcions] ordre\n" +" apt-cache [opcions] add fitxer1 [fitxer2 …]\n" +" apt-cache [opcions] showpkg paquet1 [paquet2 …]\n" +" apt-cache [opcions] showsrc paquet1 [paquet2 …]\n" +"\n" +"apt-cache és una eina de baix nivell emprada per a consultar\n" +"la informació dels fitxers binaris de memòria cau de l'APT.\n" +"\n" +"Ordres:\n" +" gencaches - Crea la memòria cau de paquets i fonts\n" +" showpkg - Mostra informació general d'un sol paquet\n" +" showsrc - Mostra un registre d'un paquet font\n" +" stats - Mostra algunes estadístiques bàsiques\n" +" dump - Mostra el fitxer sencer en un format concís\n" +" dumpavail - Genera un registre llegible a stdout\n" +" unmet - Mostra dependències sense satisfer\n" +" search - Cerca en la llista de paquets per un patró d'expressió regular\n" +" show - Mostra un registre llegible pel paquet\n" +" showauto - Mostra una llista de paquets instaŀlats automàticanent\n" +" depends - Mostra informació de dependències (en cru) d'un paquet\n" +" rdepends - Mostra informació de dependències inverses d'un paquet\n" +" pkgnames - Llista els noms de tots els paquets del sistema\n" +" dotty - Genera gràfiques de paquets per a GraphViz\n" +" xvcg - Genera gràfiques de paquets per a xvcg\n" +" policy - Mostra la configuració de política\n" +"\n" +"Opcions:\n" +" -h Aquest text d'ajuda.\n" +" -p=? La memòria cau de paquets.\n" +" -s=? La memòria cau de la font.\n" +" -q Inhabilita l'indicador de progrés.\n" +" -i Només mostra dependències importants amb l'opció «unmet».\n" +" -c=? Llegeix aquest fitxer de configuració.\n" +" -o=? Estableix una opció de conf arbitrària, p. ex. -o dir::cache=/tmp\n" +"Vegeu les pàgines de manual apt-cache(8) i apt.conf(5) per a més " +"informació.\n" -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "No hi ha cap clau pública disponible per als següents ID de clau:\n" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Doneu un nom per a aquest disc, com per exemple «Debian 5.0.3 Disc 1»" -#: apt-pkg/acquire-item.cc:1669 -#, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" -"El fitxer Release per a %s ha caducat (invàlid des de %s). Les " -"actualitzacions per a aquest dipòsit no s'aplicaran." +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Inseriu un disc en la unitat i premeu Intro" -#: apt-pkg/acquire-item.cc:1691 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Distribució en conflicte: %s (s'esperava %s però s'ha obtingut %s)" +msgid "Failed to mount '%s' to '%s'" +msgstr "No s'ha pogut muntar «%s» a «%s»" -#: apt-pkg/acquire-item.cc:1721 -#, c-format +#: cmdline/apt-cdrom.cc:178 msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"S'ha produït un error durant la verificació de la signatura. El dipòsit no " -"està actualitzat i s'emprarà el fitxer d'índex anterior. Error del GPG: %s: " -"%s\n" - -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 -#, c-format -msgid "GPG error: %s: %s" -msgstr "S'ha produït un error amb el GPG: %s: %s" -#: apt-pkg/acquire-item.cc:1859 -#, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"No ha estat possible localitzar un fitxer pel paquet %s. Això podria " -"significar que haureu d'arreglar aquest paquet manualment (segons " -"arquitectura)." +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Repetiu aquest procés per a la resta de CD del vostre joc." -#: apt-pkg/acquire-item.cc:1925 -#, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "No es troba una font per baixar la versió «%s» de «%s»" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Els arguments no són en parells" -#: apt-pkg/acquire-item.cc:1983 -#, c-format +#: cmdline/apt-config.cc:89 msgid "" -"The package index files are corrupted. No Filename: field for package %s." +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -"L'índex dels fitxers en el paquet està corromput. Fitxer no existent: camp " -"per al paquet %s." +"Forma d'ús: apt-config [opcions] ordre\n" +"\n" +"apt-config és una eina simple per llegir el fitxer de configuració d'APT\n" +"\n" +"Ordres:\n" +" shell - Mode shell\n" +" dump - Mostra la configuració\n" +"\n" +"Opcions:\n" +" -h Aquest text d'ajuda.\n" +" -c=? Llegeix aquest fitxer de configuració\n" +" -o=? Estableix una opció de conf arbitrària, p. ex. -o dir::cache=/tmp\n" -#: apt-pkg/vendorlist.cc:85 -#, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "El camp del proveïdor %s no té una empremta digital" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "No s'ha pogut trobar el paquet a través de l'expressió regular «%s»" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, c-format -msgid "List directory %spartial is missing." -msgstr "Falta el directori de llistes %spartial." +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "No s'ha pogut trobar el paquet a través de l'expressió regular «%s»" -#: apt-pkg/acquire.cc:91 -#, c-format -msgid "Archives directory %spartial is missing." -msgstr "Falta el directori d'arxius %spartial." +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "No s'ha pogut trobar el paquet a través de l'expressió regular «%s»" -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Unable to lock directory %s" -msgstr "No es pot blocar el directori %s" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "S'està agafant «%s» com a paquet font en lloc de '%s'\n" + +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Descarta la versió «%s» no disponible del paquet «%s»" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "S'està obtenint el fitxer %li de %li (falten %s)" +msgid "Couldn't find package %s" +msgstr "No s'ha pogut trobar el paquet %s" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Retrieving file %li of %li" -msgstr "S'està obtenint el fitxer %li de %li" +msgid "%s set to manually installed.\n" +msgstr "S'ha marcat %s com instaŀlat manualment.\n" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "No s'ha pogut obtenir %s %s\n" +msgid "%s set to automatically installed.\n" +msgstr "S'ha marcat %s com instaŀlat automàticament.\n" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -"Alguns índex no s'han pogut baixar. S'han descartat, o en el seu lloc s'han " -"emprat els antics." - -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Heu de posar algunes URI 'font' en el vostre sources.list" +"Aquesta ordre és desaconsellada. Empreu «apt-mark auto» i «apt-mark manual» " +"en el seu lloc." -#: apt-pkg/policy.cc:83 -#, c-format -msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" msgstr "" -"El valor «%s» és invàlid per a APT:Default-Release donat que aquest " -"llançament no és disponible a les fonts" +"S'ha produït un error intern, el solucionador de problemes ha trencat coses" -#: apt-pkg/policy.cc:422 -#, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Registre no vàlid al fitxer de preferències %s, paquet sense capçalera" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "No és possible blocar el directori de descàrrega" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "No s'ha entès el pin de tipus %s" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Haureu d'especificar un paquet de codi font per a baixar" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "No hi ha prioritat especificada per al pin (o és zero)" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "No es pot trobar un paquet de fonts per a %s" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:786 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"No s'ha pogut realitzar la configuració immediata de «%s». Vegeu man 5 apt." -"conf, sota APT::Immediate-Configure per a més detalls. (%d)" - -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "No s'ha pogut configurar «%s»." +"Avís: L'empaquetat de «%s» és mantingut amb el sistema de control de\n" +"versions «%s» a:\n" +"%s\n" -#: apt-pkg/packagemanager.cc:583 +#: cmdline/apt-get.cc:791 #, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -"Aquesta instaŀlació requereix suprimir temporalment el paquet essencial %s " -"per qüestió d'un bucle de Conflictes/Pre-dependències. Això sol ser una cosa " -"dolenta, però si realment desitgeu fer-la, activeu l'opció APT::Force-" -"LoopBreak." +"Empreu:\n" +"bzr branch %s\n" +"per obtenir les últimes actualitzacions (possiblement no publicades) del " +"paquet.\n" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Line %u too long in source list %s." -msgstr "La línia %u és massa llarga en la llista de fonts %s." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "S'està desmuntant el CD-ROM…\n" +msgid "Skipping already downloaded file '%s'\n" +msgstr "S'està ometent el fitxer ja baixat «%s»\n" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "S'està utilitzant el punt de muntatge de CD-ROM %s\n" +msgid "Couldn't determine free space in %s" +msgstr "No s'ha pogut determinar l'espai lliure en %s" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "S'està esperant al disc…\n" +#: cmdline/apt-get.cc:882 +#, c-format +msgid "You don't have enough free space in %s" +msgstr "No teniu prou espai lliure en %s" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "S'està muntant el CD-ROM…\n" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 +#, c-format +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Es necessita baixar %sB/%sB d'arxius font.\n" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "S'està identificant…" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 +#, c-format +msgid "Need to get %sB of source archives.\n" +msgstr "Es necessita baixar %sB d'arxius font.\n" -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Stored label: %s\n" -msgstr "S'ha emmagatzemat l'etiqueta: %s\n" +msgid "Fetch source %s\n" +msgstr "Obtén el font %s\n" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "S'està analitzant el disc per a fitxers d'índex…\n" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "No s'ha pogut baixar alguns arxius." -#: apt-pkg/cdrom.cc:734 +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Baixada completa i en mode de només baixada" + +#: cmdline/apt-get.cc:950 #, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" +msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -"S'han trobat %zu índexos de paquets, %zu índexos de fonts, %zu indexos de " -"traduccions i %zu signatures\n" +"S'està ometent el desempaquetament de les fonts que ja ho estan en %s\n" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"No s'ha trobat cap fitxer de paquets, potser no és un disc de Debian o la " -"arquitectura és incorrecta?" +#: cmdline/apt-get.cc:963 +#, c-format +msgid "Unpack command '%s' failed.\n" +msgstr "L'ordre de desempaquetar «%s» ha fallat.\n" -#: apt-pkg/cdrom.cc:771 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Found label '%s'\n" -msgstr "S'ha trobat l'etiqueta «%s»\n" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Comproveu si el paquet «dpkgdev» està instaŀlat.\n" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Aquest no és un nom vàlid, torneu-ho a provar.\n" +#: cmdline/apt-get.cc:992 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "L'ordre de construir «%s» ha fallat.\n" -#: apt-pkg/cdrom.cc:817 +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Ha fallat el procés fill" + +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "" +"S'ha d'especificar un paquet per a verificar les dependències de construcció " +"per a" + +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"This disc is called: \n" -"'%s'\n" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -"El disc es diu:\n" -"«%s»\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "S'estan copiant les llistes de paquets…" +"No hi ha informació d'arquitectura disponible per a %s. Vegeu apt.conf(5) " +"APT::Architectures per a configurar-ho" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "S'està escrivint una nova llista de fonts\n" +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "" +"No es pot obtenir informació sobre les dependències de construcció per a %s" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Les entrades de la llista de fonts per a aquest disc són:\n" +#: cmdline/apt-get.cc:1102 +#, c-format +msgid "%s has no build depends.\n" +msgstr "%s no té dependències de construcció.\n" -#: apt-pkg/algorithms.cc:265 +#: cmdline/apt-get.cc:1272 #, c-format msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" msgstr "" -"El paquet %s necessita ser reinstaŀlat, però no se li pot trobar un arxiu." +"La dependència %s en %s no es pot satisfer perquè %s no és permès als " +"paquets «%s»" -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-get.cc:1290 +#, c-format msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Error, pkgProblemResolver::Resolve ha generat pauses, això pot haver estat " -"causat per paquets retinguts." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -"No es poden corregir els problemes, teniu paquets retinguts que estan " -"trencats." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "S'està construint l'arbre de dependències" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Versions candidates" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Dependències que genera" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "S'està llegint la informació de l'estat" +"La dependència %s en %s no es pot satisfer perquè no es pot trobar el paquet " +"%s" -#: apt-pkg/depcache.cc:250 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Failed to open StateFile %s" -msgstr "No s'ha pogut obrir el fitxer d'estat %s" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"No s'ha pogut satisfer la dependència %s per a %s: El paquet instaŀlat %s és " +"massa nou" -#: apt-pkg/depcache.cc:256 +#: cmdline/apt-get.cc:1352 #, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "No s'ha pogut escriure el fitxer d'estat temporal %s" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"La dependència %s per a %s no es pot satisfer perquè la versió candidata del " +"paquet %s no pot satisfer els requeriments de versions" -#: apt-pkg/tagfile.cc:140 +#: cmdline/apt-get.cc:1358 #, c-format -msgid "Unable to parse package file %s (1)" -msgstr "No es pot analitzar el fitxer del paquet %s (1)" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"La dependència %s en %s no es pot satisfer perquè el paquet %s no té versió " +"candidata" -#: apt-pkg/tagfile.cc:237 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Unable to parse package file %s (2)" -msgstr "No es pot analitzar el fitxer del paquet %s (2)" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "No s'ha pogut satisfer la dependència %s per a %s: %s" -#: apt-pkg/cacheset.cc:489 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "No s'ha trobat la versió puntual «%s» per a «%s»" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "No s'han pogut satisfer les dependències de construcció per a %s" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "No s'ha trobat la versió «%s» per a «%s»" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "No es poden processar les dependències de construcció" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 #, c-format -msgid "Unable to locate package %s" -msgstr "No s'ha trobat el paquet %s" +msgid "Changelog for %s (%s)" +msgstr "Registre de canvis per a %s (%s)" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "No s'ha pogut trobar la tasca «%s»" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Mòduls suportats:" -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "No s'ha pogut trobar el paquet a través de l'expressió regular «%s»" +#: cmdline/apt-get.cc:1633 +#, fuzzy +msgid "" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" +msgstr "" +"Forma d'ús: apt-get [opcions] ordre\n" +" apt-get [opcions] install|remove paq1 [paq2 …]\n" +" apt-get [opcions] source paq1 [paq2 …]\n" +"\n" +"apt-get és una interfície de línia d'ordres simple per\n" +"baixar i instaŀlar paquets. Les ordres més freqüents són\n" +"update i install.\n" +"\n" +"Ordres:\n" +" update - Obtén llistes noves dels paquets\n" +" upgrade - Realitza una actualització\n" +" install - Instaŀla nous paquets (el paquet és libc6, no libc6.deb)\n" +" remove - Suprimeix paquets\n" +" autoremove - Suprimeix automàticament tots els paquets en desús\n" +" purge - Suprimeix i purga paquets\n" +" source - Baixa arxius font\n" +" build-dep - Configura dependències de construcció pels paquets font\n" +" dist-upgrade - Actualitza la distribució, vegeu apt-get(8)\n" +" dselect-upgrade - Segueix les seleccions del dselect\n" +" clean - Suprimeix els fitxers d'arxiu baixats\n" +" autoclean - Suprimeix els fitxers d'arxiu antics baixats\n" +" check - Verifica que no hi hagi dependències trencades\n" +" markauto - Marca els paquets donats com a instaŀlats automàticament\n" +" unmarkauto - Marca els paquets donats com a instaŀlats manualment\n" +" changelog - Baixa i mostra el registre de canvis del paquet\n" +" download - Baixa el paquet binari al directori actual\n" +"\n" +"Opcions:\n" +" -h Aquest text d'ajuda\n" +" -q Sortida enregistrable - sense indicador de progrés\n" +" -qq Sense sortida, llevat dels errors\n" +" -d Només baixa - NO instaŀles o desempaquetes arxius\n" +" -s No actues. Realitza les ordres en mode de simulació\n" +" -y Assumeix «Sí» per a totes les preguntes i no preguntes\n" +" -f Intenta corregir un sistema amb dependències trencades\n" +" -m Intenta continuar si no es troben els arxius\n" +" -u Mostra també una llista dels paquets actualitzats\n" +" -b Construeix el paquet font després de baixar-lo\n" +" -V Mostra els números de versió detallats\n" +" -c=? Llegeix aquest fitxer de configuració\n" +" -o=? Estableix una opció de configuració arbitrària, p. ex.\n" +" -o dir::cache=/tmp\n" +"Vegeu les pàgines de manual apt-get(8), sources.list(5) i apt.conf(5)\n" +"per a obtenir més informació i opcions.\n" +" Aquest APT té superpoders bovins.\n" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "No s'ha pogut trobar el paquet a través de l'expressió regular «%s»" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Haureu d'especificar un paquet de codi font per a baixar" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"No s'han pogut seleccionar les versions del paquet «%s» ja que és purament " -"virtual" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format +#: cmdline/apt-helper.cc:66 msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"No s'han pogut seleccionar la versió instaŀlada ni la candidata del paquet " -"«%s» ja que no estan disponibles cap de les dues" -#: apt-pkg/cacheset.cc:647 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"No s'ha pogut seleccionar la versió més nova del paquet «%s» ja que és " -"purament virtual" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s no es pot marcar perquè no està instaŀlat.\n" -#: apt-pkg/cacheset.cc:655 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" -"No s'ha pogut seleccionar la versió candidata del paquet %s ja que no té " -"candidata" +msgid "%s was already set to manually installed.\n" +msgstr "%s ja estava marcat com instaŀlat manualment.\n" -#: apt-pkg/cacheset.cc:663 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" -"No s'ha pogut seleccionar la versió instaŀlada del paquet %s ja que no està " -"instaŀlada" +msgid "%s was already set to automatically installed.\n" +msgstr "%s ja estava marcat com instaŀlat automàticament.\n" -#: apt-pkg/indexrecords.cc:78 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Unable to parse Release file %s" -msgstr "No es pot analitzar el fitxer Release %s" +msgid "%s was already set on hold.\n" +msgstr "%s ja estava retingut.\n" -#: apt-pkg/indexrecords.cc:86 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "No sections in Release file %s" -msgstr "No hi ha seccions al fitxer Release %s" +msgid "%s was already not hold.\n" +msgstr "%s ja estava no retingut.\n" -#: apt-pkg/indexrecords.cc:117 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "No Hash entry in Release file %s" -msgstr "No hi ha una entrada Hash al fitxer Release %s" +msgid "Waited for %s but it wasn't there" +msgstr "Esperava %s però no hi era" -#: apt-pkg/indexrecords.cc:130 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "El camp «Valid-Until» al fitxer Release %s és invàlid" +msgid "%s set on hold.\n" +msgstr "S'ha marcat %s com retingut.\n" -#: apt-pkg/indexrecords.cc:149 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "El camp «Date» al fitxer Release %s és invàlid" +msgid "Canceled hold on %s.\n" +msgstr "S'ha cancel·lat la marca de retenció en %s.\n" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Línia %lu malformada en la llista de fonts %s (analitzant URI)" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "L'execució del dpkg ha fallat. Sou root?" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" +#: cmdline/apt-mark.cc:392 +msgid "" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -"Línia %lu malformada en la llista de fonts %s ([opció] no reconeixible)" - -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Línia %lu malformada en la llista de fonts %s ([opció] massa curta)" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -"Línia %lu malformada en la llista de fonts %s ([%s] no és una assignació)" -#: apt-pkg/sourcelist.cc:190 +#: methods/cdrom.cc:203 #, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Línia %lu malformada en la llista de fonts %s ([%s] no té clau)" +msgid "Unable to read the cdrom database %s" +msgstr "No es pot llegir la base de dades del cdrom %s" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" msgstr "" -"Línia %lu malformada en la llista de fonts %s ([%s] la clau %s no té valor)" - -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Línia %lu malformada en la llista de fonts %s (URI)" - -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Línia %lu malformada en la llista de fonts %s (dist)" +"Si us plau, useu apt-cdrom per a que aquest CD sigui reconegut per APT. No " +"pot emprar-se apt-get update per afegir-ne de nous" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Línia %lu malformada en la llista de fonts %s (analitzant URI)" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD erroni" -#: apt-pkg/sourcelist.cc:217 +#: methods/cdrom.cc:249 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Línia %lu malformada en la llista de fonts %s (dist absoluta)" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "No es pot muntar el CD-ROM en %s, potser estigui encara en ús." -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Línia %lu malformada en la llista de fonts %s (analitzant dist)" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "No s'ha trobat el disc" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "S'està obrint %s" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Fitxer no trobat" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "La línia %u és malformada en la llista de fonts %s (tipus)" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "L'estat ha fallat" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "El tipus «%s» no és conegut en la línia %u de la llista de fonts %s" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "No s'ha pogut establir el temps de modificació" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "El tipus «%s» no és conegut en la línia %u de la llista de fonts %s" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI no vàlid, els URI locals no han de començar per //" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "S'està instaŀlant %s" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "S'està accedint a" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "S'està configurant el paquet %s" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "No es pot determinar el nom de la màquina distant" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "S'està suprimint el paquet %s" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "No es pot determinar el nom local" -#: apt-pkg/deb/dpkgpm.cc:98 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Completely removing %s" -msgstr "S'ha suprimit completament %s" +msgid "The server refused the connection and said: %s" +msgstr "El servidor ha rebutjat la nostra connexió i ha dit: %s" -#: apt-pkg/deb/dpkgpm.cc:99 +#: methods/ftp.cc:225 #, c-format -msgid "Noting disappearance of %s" -msgstr "S'està anotant la desaparició de %s" +msgid "USER failed, server said: %s" +msgstr "USER ha fallat, el servidor ha dit: %s" -#: apt-pkg/deb/dpkgpm.cc:100 +#: methods/ftp.cc:232 #, c-format -msgid "Running post-installation trigger %s" -msgstr "S'està executant l'activador de postinstaŀlació %s" +msgid "PASS failed, server said: %s" +msgstr "PASS ha fallat, el servidor ha dit: %s" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Manca el directori «%s»" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"S'ha especificat un servidor intermediari però no un script d'accés, " +"Acquire::ftp::ProxyLogin està buit." -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#: methods/ftp.cc:280 #, c-format -msgid "Could not open file '%s'" -msgstr "No s'ha pogut obrir el fitxer «%s»" +msgid "Login script command '%s' failed, server said: %s" +msgstr "L'ordre «%s» de l'script d'accés ha fallat, el servidor ha dit: %s" -#: apt-pkg/deb/dpkgpm.cc:989 +#: methods/ftp.cc:306 #, c-format -msgid "Preparing %s" -msgstr "S'està preparant el paquet %s" +msgid "TYPE failed, server said: %s" +msgstr "TYPE ha fallat, el servidor ha dit: %s" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "S'està desempaquetant %s" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Temps de connexió finalitzat" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "S'està preparant per a configurar el paquet %s" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "El servidor ha tancat la connexió" -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "S'ha instaŀlat el paquet %s" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Error de lectura" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "S'està preparant per a la supressió del paquet %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Una resposta ha desbordat la memòria intermèdia." -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "S'ha suprimit el paquet %s" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protocol corromput" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "S'està preparant per a suprimir completament el paquet %s" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Error d'escriptura" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "S'ha suprimit completament el paquet %s" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "No s'ha pogut crear un sòcol" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "No s'ha pogut connectar amb el sòcol de dades, connexió finalitzada" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "No es pot escriure en %s" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Ha fallat" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "No s'ha pogut connectar amb el sòcol passiu." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "gettaddrinfo no es pot obtenir un sòcol que escolte" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 -#, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Esperava %s però no hi era" +# abastar? huh? jm +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "No s'ha pogut vincular a un connector" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "S'ha interromput l'operació abans que pogués finalitzar" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "No s'ha pogut escoltar sobre el sòcol" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "No s'ha escrit cap informe perquè ja s'ha superat MaxReports" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "No s'ha pogut determinar el nom del sòcol" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "S'han produït problemes de depències, es deixa sense configurar" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "No es pot enviar l'ordre PORT" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"No s'ha escrit cap informe perquè el missatge d'error indica que és un error " -"consequent de una fallida anterior." +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "La família d'adreces %u és desconeguda (AF_*)" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"No s'ha escrit cap informe perquè el missatge d'error indica una fallida per " -"disc ple" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "EPRT ha fallat, el servidor ha dit: %s" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"No s'ha escrit cap informe perquè el missatge d'error indica una fallida per " -"falta de memòria" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "S'ha esgotat el temps de connexió al sòcol de dades" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" -"No s'ha escrit cap informe perquè el missatge d'error indica una fallida per " -"disc ple" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "No es pot acceptar la connexió" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" -"No s'ha escrit cap informe perquè el missatge d'error indica d'una fallida " -"d'E/S del dpkg" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problema escollint el fitxer" -#: apt-pkg/deb/debsystem.cc:91 +#: methods/ftp.cc:890 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"No s'ha pogut bloquejar el directori d'administració (%s), hi ha cap altre " -"procés utilitzant-lo?" +msgid "Unable to fetch file, server said '%s'" +msgstr "No és possible obtenir el fitxer, el servidor ha dit '%s'" -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "No es pot blocar el directori d'administració (%s), sou root?" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "S'ha esgotat el temps d'espera per al sòcol de dades" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: methods/ftp.cc:935 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" -"S'ha interromput el dpkg, hauríeu d'executar manualment «%s» per a corregir " -"el problema." +msgid "Data transfer failed, server said '%s'" +msgstr "Ha fallat la transferència de dades, el servidor ha dit '%s'" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "No blocat" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Consulta" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lid %lih %limin %lis" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "No es pot invocar" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: methods/connect.cc:76 #, c-format -msgid "%lih %limin %lis" -msgstr "%lih %limin %lis" +msgid "Connecting to %s (%s)" +msgstr "S'està connectant amb %s (%s)" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: methods/connect.cc:87 #, c-format -msgid "%limin %lis" -msgstr "%limin %lis" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: methods/connect.cc:94 #, c-format -msgid "%lis" -msgstr "%lis" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "No s'ha pogut crear un sòcol per a %s (f=%u t=%u p=%u)" -#: apt-pkg/contrib/strutl.cc:1243 +#: methods/connect.cc:100 #, c-format -msgid "Selection %s not found" -msgstr "No s'ha trobat la selecció %s" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "No es pot iniciar la connexió amb %s:%s (%s)." -#: apt-pkg/contrib/fileutl.cc:190 +#: methods/connect.cc:108 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "" -"No s'empren blocats per a llegir el fitxer de blocat de sols lectura %s" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "No s'ha pogut connectar amb %s:%s (%s), temps de connexió excedit" -#: apt-pkg/contrib/fileutl.cc:195 +#: methods/connect.cc:126 #, c-format -msgid "Could not open lock file %s" -msgstr "No es pot resoldre el fitxer de blocat %s" +msgid "Could not connect to %s:%s (%s)." +msgstr "No s'ha pogut connectar amb %s:%s (%s)." -#: apt-pkg/contrib/fileutl.cc:218 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "No s'empren blocats per al fitxer de blocat %s de muntar nfs" +msgid "Connecting to %s" +msgstr "S'està connectant amb %s" -#: apt-pkg/contrib/fileutl.cc:223 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Could not get lock %s" -msgstr "No s'ha pogut blocar %s" +msgid "Could not resolve '%s'" +msgstr "No s'ha pogut resoldre «%s»" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: methods/connect.cc:205 #, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "No es pot crear la llista de fitxers perquè «%s» no és un directori" +msgid "Temporary failure resolving '%s'" +msgstr "S'ha produït un error temporal en resoldre «%s»" -#: apt-pkg/contrib/fileutl.cc:394 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Ha passat alguna cosa estranya en resoldre «%s:%s» (%i - %s)" + +#: methods/connect.cc:211 #, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "S'està descartant «%s» al directori «%s» perquè no és un fitxer normal" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Ha passat alguna cosa estranya en resoldre «%s:%s» (%i - %s)" -#: apt-pkg/contrib/fileutl.cc:412 +#: methods/connect.cc:258 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgid "Unable to connect to %s:%s:" +msgstr "No es pot connectar amb %s:%s:" + +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"S'està descartant «%s» al directori «%s» perquè no té extensió del nom de " -"fitxer" +"Error intern: La signatura és correcta, però no s'ha pogut determinar " +"l'emprempta digital de la clau!" -#: apt-pkg/contrib/fileutl.cc:421 +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "S'ha trobat almenys una signatura invàlida." + +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "" +"No s'ha pogut executar el «gpgv» per a verificar la signatura (està " +"instaŀlat el gpgv?)" + +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"S'està descartant «%s» al directori «%s» perquè té una extensió del nom de " -"fitxer invàlida" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "El sub-procés %s ha rebut una violació de segment." +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "S'ha produït un error desconegut en executar el gpgv" + +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Les signatures següents són invàlides:\n" + +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "" +"Les signatures següents no s'han pogut verificar perquè la clau pública no " +"està disponible:\n" + +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Els fitxers buits no poden ser arxius vàlids" + +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "S'ha produït un error en escriure al fitxer" + +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "" +"S'ha produït un error en llegir, el servidor remot ha tancat la connexió" + +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "S'ha produït un error en llegir des del servidor" + +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "S'ha produït un error en escriure al fitxer" + +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Ha fallat la selecció" + +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Connexió finalitzada" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "El sub-procés %s ha rebut un senyal %u." +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "S'ha produït un error en escriure al fitxer de sortida" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "El sub-procés %s ha retornat un codi d'error (%u)" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "S'estan esperant les capçaleres" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "El sub-procés %s ha sortit inesperadament" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Línia de capçalera incorrecta" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Error d'escriptura" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "El servidor HTTP ha enviat una capçalera de resposta no vàlida" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Ha hagut un problema en tancar el fitxer gzip %s" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "El servidor HTTP ha enviat una capçalera de Content-Length no vàlida" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "No s'ha pogut obrir el fitxer %s" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "El servidor HTTP ha enviat una capçalera de Content-Range no vàlida" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "No s'ha pogut obrir el descriptor del fitxer %d" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Aquest servidor HTTP té el suport d'abast trencat" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "No s'ha pogut crear el subprocés IPC" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Format de la data desconegut" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "No s'ha pogut executar el compressor " +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Capçalera de dades no vàlida" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Error de lectura" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Ha fallat la connexió" -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" -msgstr "llegits, falten %llu per llegir, però no queda res" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Error intern" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "escrits, falten %llu per escriure però no s'ha pogut" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Ha hagut un problema en tancar el fitxer %s" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "" +"S'ha produït un error intern, s'ha cridat a InstallPackages amb paquets " +"trencats!" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Ha hagut un problema en reanomenar el fitxer %s a %s" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "" +"Els paquets necessiten ser suprimits però s'ha inhabilitat la supressió." -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "Ha hagut un problema en desenllaçar el fitxer %s" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "S'ha produït un error intern, l'ordenació no ha acabat" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Ha hagut un problema en sincronitzar el fitxer" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Què estrany… les mides no coincideixen, informeu a apt@packages.debian.org" -#: apt-pkg/contrib/progress.cc:148 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s… Error!" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "S'ha d'obtenir %sB/%sB d'arxius.\n" -#: apt-pkg/contrib/progress.cc:150 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "%c%s... Done" -msgstr "%c%s… Fet" - -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "…" +msgid "Need to get %sB of archives.\n" +msgstr "S'ha d'obtenir %sB d'arxius.\n" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "%c%s... %u%%" -msgstr "%c%s… %u%%" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "No es pot transferir un fitxer buit a memòria" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "" +"Després d'aquesta operació s'empraran %sB d'espai en disc addicional.\n" -#: apt-pkg/contrib/mmap.cc:111 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "No s'ha pogut duplicar el descriptor del fitxer %i" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Després d'aquesta operació s'alliberaran %sB d'espai en disc.\n" -#: apt-pkg/contrib/mmap.cc:119 +#: apt-private/private-install.cc:200 #, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "No s'ha pogut crear un mapa de memòria de %llu octets" - -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "No es pot tancar el mmap" +msgid "You don't have enough free space in %s." +msgstr "No teniu prou espai lliure en %s." -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "No es pot sincronitzar el mmap" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Hi ha problemes i s'ha emprat -y sense --force-yes" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "No s'ha pogut crear un mapa de memòria de %lu octets" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "S'ha especificat «Trivial Only» però aquesta operació no és trivial." -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "No s'ha pogut truncar el fitxer %s" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Sí, fes el que et dic!" -#: apt-pkg/contrib/mmap.cc:341 +#: apt-private/private-install.cc:222 #, c-format msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" -"No hi ha espai per al «Dynamic MMap». Incrementeu la mida d'APT::Cache-" -"Start. Valor actual: %lu. (man 5 apt.conf)" +"Esteu a punt de fer quelcom potencialment nociu.\n" +"Per continuar escriviu la frase «%s»\n" +" ?] " -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" -"No s'ha pogut incrementar la mida del MMap ja que el limit de %lu bytes ja " -"s'ha superat." +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Avortat." -#: apt-pkg/contrib/mmap.cc:449 +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Voleu continuar?" + +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Alguns fitxers no s'han pogut baixar" + +#: apt-private/private-install.cc:320 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -"No s'ha pogut incrementar la mida del MMap ja que el creixement automàtic " -"està deshabilitat per l'usuari." +"No es poden baixar alguns arxius, proveu a executar apt-get update o " +"intenteu-ho amb --fix-missing." -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "No es pot obtenir informació del punt de muntatge %s" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing i els medi intercanviables actualment no estan suportats" + +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "No es poden corregir els paquets que falten." + +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "S'està avortant la instaŀlació." + +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"El següent paquet ha desaparegut del vostre sistema ja\n" +"que tots els fitxers s'han sobreescrit per altres paquets:" +msgstr[1] "" +"Els següents paquets han desaparegut del vostre sistema ja\n" +"que tots els fitxers s'han sobreescrit per altres paquets:" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "No s'ha pogut fer «stat» del cdrom" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Nota: Això ho fa el dpkg automàticament i a propòsit." -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Abreujament de tipus no reconegut: «%c»" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "" +"Es suposa que no hauriem de suprimir coses, no es pot iniciar el supressor " +"automàtic" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "S'està obrint el fitxer de configuració %s" +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" +"Sembla que el supressor automàtic ha destruït alguna cosa que no deuria. Si " +"us plau, envieu un informe d'error per a l'apt." -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Error sintàctic %s:%u: No comença el camp amb un nom." +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "La informació següent pot ajudar-vos a resoldre la situació:" -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Error sintàctic %s:%u: Etiqueta malformada" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "S'ha produït un error intern, el supressor automàtic ha trencat coses" -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Error sintàctic %s:%u Text extra després del valor" +#: apt-private/private-install.cc:513 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "" +"El paquet següent s'ha instaŀlat automàticament i ja no serà necessari:" +msgstr[1] "" +"Els paquets següents s'han instaŀlat automàticament i ja no són necessaris:" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-private/private-install.cc:517 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "Error sintàctic %s:%u: Es permeten directrius només al nivell més alt" +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "" +"El paquet %lu es va instaŀlar automàticament i ja no és necessari:\n" +msgstr[1] "" +"Els paquets %lu es van s'instaŀlar automàticament i ja no són necessaris:\n" -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Error sintàctic %s:%u: Hi ha masses fitxers include niats" +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Empreu «apt-get autoremove» per a suprimir-lo." +msgstr[1] "Empreu «apt-get autoremove» per a suprimir-los." -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Error sintàctic %s:%u: Inclusió des d'aquí" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Potser voldreu executar «apt-get -f install» per corregir-ho:" -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Error sintàctic %s:%u: Directriu no suportada «%s»" +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"Dependències insatisfetes. Proveu amb «apt-get -f install» sense paquets (o " +"especifiqueu una solució)." -#: apt-pkg/contrib/configuration.cc:900 -#, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." msgstr "" -"Error sintàctic %s:%u: la directiva clear requereix un arbre d'opcions com a " -"argument" +"No s'han pogut instaŀlar alguns paquets. Això pot ser degut a que heu\n" +"demanat una situació impossible o que esteu emprant la distribució\n" +"«unstable» i alguns paquets requerits encara no han estat creats o bé\n" +"encara no els hi han introduït des d'«Incoming»." -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Error sintàctic %s:%u: Text extra al final del fitxer" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Paquets trencats" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, c-format -msgid "No keyring installed in %s." -msgstr "No s'ha instaŀlat cap clauer a %s." +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "S'instaŀlaran els següents paquets extres:" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "L'opció de la línia d'ordres «%c» [de %s] és desconeguda." +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Paquets suggerits:" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "No s'entén l'opció de la línia d'ordres %s" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Paquets recomanats:" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-private/private-install.cc:825 #, c-format -msgid "Command line option %s is not boolean" -msgstr "No és lògica l'opció de la línia d'ordres %s" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "" +"S'està ometent %s, ja està instaŀlat i l'actualització no està establerta.\n" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-private/private-install.cc:829 #, c-format -msgid "Option %s requires an argument." -msgstr "L'opció de la línia d'ordres %s precisa un paràmetre." +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"S'està ometent '%s', no està instaŀlat i només es demana l'actualització.\n" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-private/private-install.cc:841 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Opció %s: Paràmetre de configuració ha de ser en la forma =<val>" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "No es possible la reinstaŀlació del paquet %s, no es pot baixar.\n" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-private/private-install.cc:846 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "L'opció %s precisa un paràmetre numèric, no '%s'" +msgid "%s is already the newest version.\n" +msgstr "%s ja es troba en la versió més recent.\n" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-private/private-install.cc:894 #, c-format -msgid "Option '%s' is too long" -msgstr "L'opció '%s' és massa llarga" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Versió seleccionada «%s» (%s) per a «%s»\n" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-private/private-install.cc:899 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "El sentit %s no s'entén, proveu «true» (vertader) o «false» (fals)." +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Versió seleccionada «%s» (%s) per a «%s» degut a «%s»\n" -#: apt-pkg/contrib/cmndline.cc:391 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Invalid operation %s" -msgstr "Operació no vàlida %s" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "" +"El paquet «%s» no està instaŀlat, així doncs no es suprimirà. Volíeu dir " +"«%s»?\n" -#: cmdline/apt-cache.cc:149 +#: apt-private/private-install.cc:947 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "El paquet %s versió %s té una dependència sense satisfer:\n" - -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Nombre total de paquets: " - -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Nombre total d'estructures de paquets: " - -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Paquets normals: " - -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Paquets virtuals purs: " - -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Paquets virtuals únics: " - -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Paquets virtuals mixtes: " - -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Falten: " - -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Nombre total de versions diferents: " +msgid "Package '%s' is not installed, so not removed\n" +msgstr "El paquet «%s» no està instaŀlat, així doncs no es suprimirà\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Nombre total de descripcions diferents: " +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Nombre total de dependències: " +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Nombre total de relacions versió/fitxer: " +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "S'estan corregint les dependències…" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Nombre total de relacions descripció/fitxer: " +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " ha fallat." -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Nombre total dels mapes aportats: " +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "No es poden corregir les dependències" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Nombre total de cadenes globals: " +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "No es pot minimitzar el joc de versions revisades" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Nombre total de l'espai per a dependències de versió: " +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Fet" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Nombre total de l'espai desaprofitat: " +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Potser voldreu executar «apt-get -f install» per a corregir-ho." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Nombre total de l'espai atribuït a: " +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Dependències sense satisfer. Proveu-ho emprant -f." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "El fitxer %s del paquet està desincronitzat." +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "No s'han trobat paquets" +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Instaŀlat]" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Heu de donar com a mínim un patró de cerca" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Instaŀlat]" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"Aquesta ordre és desaconsellada. Empreu «apt-mark showauto» en el seu lloc." -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Fitxers de paquets:" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Instaŀlat]" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Instaŀlat]" + +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" msgstr "" -"Memòria cau no sincronitzada, no es pot fer x-ref a un fitxer del paquet" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Paquets etiquetats:" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(no trobat)" +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "però està instaŀlat %s" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Instaŀlat: " +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "però s'instaŀlarà %s" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidat: " +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "però no és instaŀlable" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(cap)" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "però és un paquet virtual" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Etiqueta del paquet: " +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "però no està instaŀlat" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Taula de versió:" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "però no serà instaŀlat" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s per a %s compilat el %s %s\n" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " o" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" -msgstr "" -"Forma d'ús: apt-cache [opcions] ordre\n" -" apt-cache [opcions] add fitxer1 [fitxer2 …]\n" -" apt-cache [opcions] showpkg paquet1 [paquet2 …]\n" -" apt-cache [opcions] showsrc paquet1 [paquet2 …]\n" -"\n" -"apt-cache és una eina de baix nivell emprada per a consultar\n" -"la informació dels fitxers binaris de memòria cau de l'APT.\n" -"\n" -"Ordres:\n" -" gencaches - Crea la memòria cau de paquets i fonts\n" -" showpkg - Mostra informació general d'un sol paquet\n" -" showsrc - Mostra un registre d'un paquet font\n" -" stats - Mostra algunes estadístiques bàsiques\n" -" dump - Mostra el fitxer sencer en un format concís\n" -" dumpavail - Genera un registre llegible a stdout\n" -" unmet - Mostra dependències sense satisfer\n" -" search - Cerca en la llista de paquets per un patró d'expressió regular\n" -" show - Mostra un registre llegible pel paquet\n" -" showauto - Mostra una llista de paquets instaŀlats automàticanent\n" -" depends - Mostra informació de dependències (en cru) d'un paquet\n" -" rdepends - Mostra informació de dependències inverses d'un paquet\n" -" pkgnames - Llista els noms de tots els paquets del sistema\n" -" dotty - Genera gràfiques de paquets per a GraphViz\n" -" xvcg - Genera gràfiques de paquets per a xvcg\n" -" policy - Mostra la configuració de política\n" -"\n" -"Opcions:\n" -" -h Aquest text d'ajuda.\n" -" -p=? La memòria cau de paquets.\n" -" -s=? La memòria cau de la font.\n" -" -q Inhabilita l'indicador de progrés.\n" -" -i Només mostra dependències importants amb l'opció «unmet».\n" -" -c=? Llegeix aquest fitxer de configuració.\n" -" -o=? Estableix una opció de conf arbitrària, p. ex. -o dir::cache=/tmp\n" -"Vegeu les pàgines de manual apt-cache(8) i apt.conf(5) per a més " -"informació.\n" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Els següents paquets tenen dependències sense satisfer:" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Doneu un nom per a aquest disc, com per exemple «Debian 5.0.3 Disc 1»" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "S'instaŀlaran els paquets NOUS següents:" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Inseriu un disc en la unitat i premeu Intro" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Es SUPRIMIRAN els paquets següents:" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "No s'ha pogut muntar «%s» a «%s»" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "S'han mantingut els paquets següents:" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "S'actualitzaran els paquets següents:" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Repetiu aquest procés per a la resta de CD del vostre joc." +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Es DESACTUALITZARAN els paquets següents:" + +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Es canviaran els paquets retinguts següents:" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Els arguments no són en parells" +#: apt-private/private-output.cc:668 +#, c-format +msgid "%s (due to %s) " +msgstr "%s (per %s) " -#: cmdline/apt-config.cc:89 +#: apt-private/private-output.cc:676 msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Forma d'ús: apt-config [opcions] ordre\n" -"\n" -"apt-config és una eina simple per llegir el fitxer de configuració d'APT\n" -"\n" -"Ordres:\n" -" shell - Mode shell\n" -" dump - Mostra la configuració\n" -"\n" -"Opcions:\n" -" -h Aquest text d'ajuda.\n" -" -c=? Llegeix aquest fitxer de configuració\n" -" -o=? Estableix una opció de conf arbitrària, p. ex. -o dir::cache=/tmp\n" - -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "No s'ha pogut trobar el paquet a través de l'expressió regular «%s»" - -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "No s'ha pogut trobar el paquet a través de l'expressió regular «%s»" - -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "No s'ha pogut trobar el paquet a través de l'expressió regular «%s»" +"AVÍS: Es suprimiran els paquets essencials següents.\n" +"Això NO s'ha de fer a menys que sapigueu exactament el que esteu fent!" -#: cmdline/apt-get.cc:367 +#: apt-private/private-output.cc:707 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "S'està agafant «%s» com a paquet font en lloc de '%s'\n" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu actualitzats, %lu nous a instaŀlar, " -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Descarta la versió «%s» no disponible del paquet «%s»" +#: apt-private/private-output.cc:711 +#, c-format +msgid "%lu reinstalled, " +msgstr "%lu reinstaŀlats, " -#: cmdline/apt-get.cc:454 +#: apt-private/private-output.cc:713 #, c-format -msgid "Couldn't find package %s" -msgstr "No s'ha pogut trobar el paquet %s" +msgid "%lu downgraded, " +msgstr "%lu desactualitzats, " -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-private/private-output.cc:715 #, c-format -msgid "%s set to manually installed.\n" -msgstr "S'ha marcat %s com instaŀlat manualment.\n" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu a suprimir i %lu no actualitzats.\n" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-private/private-output.cc:719 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "S'ha marcat %s com instaŀlat automàticament.\n" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu no instaŀlats o suprimits completament.\n" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"Aquesta ordre és desaconsellada. Empreu «apt-mark auto» i «apt-mark manual» " -"en el seu lloc." +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[S/n]" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "" -"S'ha produït un error intern, el solucionador de problemes ha trencat coses" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[s/N]" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "No és possible blocar el directori de descàrrega" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "S" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Haureu d'especificar un paquet de codi font per a baixar" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Unable to find a source package for %s" -msgstr "No es pot trobar un paquet de fonts per a %s" +msgid "Regex compilation error - %s" +msgstr "S'ha produït un error de compilació de l'expressió regular - %s" -#: cmdline/apt-get.cc:786 +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "L'ordre update no pren arguments" + +#: apt-private/private-update.cc:90 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -"Avís: L'empaquetat de «%s» és mantingut amb el sistema de control de\n" -"versions «%s» a:\n" -"%s\n" -#: cmdline/apt-get.cc:791 +#: apt-private/private-show.cc:156 #, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" + +#: apt-private/private-main.cc:32 msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -"Empreu:\n" -"bzr branch %s\n" -"per obtenir les últimes actualitzacions (possiblement no publicades) del " -"paquet.\n" +"Nota: Això només és una simulació!\n" +" L'apt-get necessita privilegis de root per a l'execució real.\n" +" Tingueu en ment que el bloqueig està desactivat,\n" +" per tant, no es depèn de la situació actual real." -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "S'està ometent el fitxer ja baixat «%s»\n" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "AVÍS: No es poden autenticar els següents paquets!" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "No s'ha pogut determinar l'espai lliure en %s" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "S'ha descartat l'avís d'autenticació.\n" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "No teniu prou espai lliure en %s" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "No s'ha pogut autenticar alguns paquets" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Es necessita baixar %sB/%sB d'arxius font.\n" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Voleu instaŀlar aquests paquets sense verificar-los?" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Es necessita baixar %sB d'arxius font.\n" +msgid "Failed to fetch %s %s\n" +msgstr "No s'ha pogut obtenir %s %s\n" -#: cmdline/apt-get.cc:902 +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "No s'ha pogut canviar el nom de %s a %s" + +#: apt-private/private-sources.cc:70 #, c-format -msgid "Fetch source %s\n" -msgstr "Obtén el font %s\n" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "No s'ha pogut baixar alguns arxius." +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Baixada completa i en mode de només baixada" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "S'està calculant l'actualització… " -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "" -"S'està ometent el desempaquetament de les fonts que ja ho estan en %s\n" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Fet" + +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Obj " + +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Bai:" + +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "L'ordre de desempaquetar «%s» ha fallat.\n" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Err " -#: cmdline/apt-get.cc:963 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Comproveu si el paquet «dpkgdev» està instaŀlat.\n" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "S'ha baixat %sB en %s (%sB/s)\n" -#: cmdline/apt-get.cc:991 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "L'ordre de construir «%s» ha fallat.\n" - -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Ha fallat el procés fill" - -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "" -"S'ha d'especificar un paquet per a verificar les dependències de construcció " -"per a" +msgid " [Working]" +msgstr " [Treballant]" -#: cmdline/apt-get.cc:1054 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"No hi ha informació d'arquitectura disponible per a %s. Vegeu apt.conf(5) " -"APT::Architectures per a configurar-ho" +"Canvi de medi: inseriu el disc amb l'etiqueta\n" +" «%s»\n" +"en la unitat «%s» i premeu Intro\n" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "" -"No es pot obtenir informació sobre les dependències de construcció per a %s" +msgid "Unable to read %s" +msgstr "No es pot llegir %s" -#: cmdline/apt-get.cc:1101 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s no té dependències de construcció.\n" +msgid "Unable to change to %s" +msgstr "No es pot canviar a %s" -#: cmdline/apt-get.cc:1271 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"La dependència %s en %s no es pot satisfer perquè %s no és permès als " -"paquets «%s»" +msgid "No mirror file '%s' found " +msgstr "No s'ha trobat el fitxer rèplica «%s»" -#: cmdline/apt-get.cc:1289 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" -"La dependència %s en %s no es pot satisfer perquè no es pot trobar el paquet " -"%s" +msgid "Can not read mirror file '%s'" +msgstr "No es pot llegir el fitxer rèplica «%s»" + +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "No es pot llegir el fitxer rèplica «%s»" -#: cmdline/apt-get.cc:1312 +#: methods/mirror.cc:445 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "[Mirror: %s]" +msgstr "[Rèplica: %s]" + +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "No s'ha pogut crear el conducte IPC al subprocés" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "La connexió s'ha tancat prematurament" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Paràmetre per defecte incorrecte!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Premeu Intro per a continuar." + +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Voleu suprimir els paquets .deb baixats prèviament?" + +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" -"No s'ha pogut satisfer la dependència %s per a %s: El paquet instaŀlat %s és " -"massa nou" +"S'han produït alguns errors en desempaquetar. Els paquets que s'han instaŀlat" -#: cmdline/apt-get.cc:1351 -#, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "seran configurats. Això pot provocar errors duplicats" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -"La dependència %s per a %s no es pot satisfer perquè la versió candidata del " -"paquet %s no pot satisfer els requeriments de versions" +"o errors causats per dependències sense satisfer. Això està bé, només els " +"errors" -#: cmdline/apt-get.cc:1357 -#, c-format +#: dselect/install:105 msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"La dependència %s en %s no es pot satisfer perquè el paquet %s no té versió " -"candidata" +"anteriors a aquest missatge són importants. Corregiu-los i torneu a executar " +"[I]nstaŀla una altra vegada" -#: cmdline/apt-get.cc:1380 -#, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "No s'ha pogut satisfer la dependència %s per a %s: %s" +#: dselect/update:30 +msgid "Merging available information" +msgstr "S'està fusionant la informació disponible" -#: cmdline/apt-get.cc:1395 -#, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "No s'han pogut satisfer les dependències de construcció per a %s" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode crida a un node que encara està enllaçat" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "No es poden processar les dependències de construcció" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "No s'ha trobat l'element diseminat!" + +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "No s'ha pogut assignar la desviació" + +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "S'ha produït un error intern en AddDiversion" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Registre de canvis per a %s (%s)" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "S'està intentant sobreescriure una desviació, %s -> %s i %s/%s" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Mòduls suportats:" +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "Afegit doble d'una desviació %s -> %s" -#: cmdline/apt-get.cc:1632 -#, fuzzy -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -msgstr "" -"Forma d'ús: apt-get [opcions] ordre\n" -" apt-get [opcions] install|remove paq1 [paq2 …]\n" -" apt-get [opcions] source paq1 [paq2 …]\n" -"\n" -"apt-get és una interfície de línia d'ordres simple per\n" -"baixar i instaŀlar paquets. Les ordres més freqüents són\n" -"update i install.\n" -"\n" -"Ordres:\n" -" update - Obtén llistes noves dels paquets\n" -" upgrade - Realitza una actualització\n" -" install - Instaŀla nous paquets (el paquet és libc6, no libc6.deb)\n" -" remove - Suprimeix paquets\n" -" autoremove - Suprimeix automàticament tots els paquets en desús\n" -" purge - Suprimeix i purga paquets\n" -" source - Baixa arxius font\n" -" build-dep - Configura dependències de construcció pels paquets font\n" -" dist-upgrade - Actualitza la distribució, vegeu apt-get(8)\n" -" dselect-upgrade - Segueix les seleccions del dselect\n" -" clean - Suprimeix els fitxers d'arxiu baixats\n" -" autoclean - Suprimeix els fitxers d'arxiu antics baixats\n" -" check - Verifica que no hi hagi dependències trencades\n" -" markauto - Marca els paquets donats com a instaŀlats automàticament\n" -" unmarkauto - Marca els paquets donats com a instaŀlats manualment\n" -" changelog - Baixa i mostra el registre de canvis del paquet\n" -" download - Baixa el paquet binari al directori actual\n" -"\n" -"Opcions:\n" -" -h Aquest text d'ajuda\n" -" -q Sortida enregistrable - sense indicador de progrés\n" -" -qq Sense sortida, llevat dels errors\n" -" -d Només baixa - NO instaŀles o desempaquetes arxius\n" -" -s No actues. Realitza les ordres en mode de simulació\n" -" -y Assumeix «Sí» per a totes les preguntes i no preguntes\n" -" -f Intenta corregir un sistema amb dependències trencades\n" -" -m Intenta continuar si no es troben els arxius\n" -" -u Mostra també una llista dels paquets actualitzats\n" -" -b Construeix el paquet font després de baixar-lo\n" -" -V Mostra els números de versió detallats\n" -" -c=? Llegeix aquest fitxer de configuració\n" -" -o=? Estableix una opció de configuració arbitrària, p. ex.\n" -" -o dir::cache=/tmp\n" -"Vegeu les pàgines de manual apt-get(8), sources.list(5) i apt.conf(5)\n" -"per a obtenir més informació i opcions.\n" -" Aquest APT té superpoders bovins.\n" +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "Fitxer de conf. duplicat %s/%s" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Haureu d'especificar un paquet de codi font per a baixar" +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" +msgstr "La ruta %s és massa llarga" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" +msgstr "S'està desempaquetant %s més d'una vegada" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "El directori %s està desviat" -#: cmdline/apt-mark.cc:68 +#: apt-inst/extract.cc:152 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s no es pot marcar perquè no està instaŀlat.\n" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "El paquet està intentant escriure en l'objectiu desviat %s/%s" -#: cmdline/apt-mark.cc:74 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "La ruta de desviació és massa llarga" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s ja estava marcat com instaŀlat manualment.\n" +msgid "Failed to stat %s" +msgstr "No es pot determinar l'estat de %s" -#: cmdline/apt-mark.cc:76 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s ja estava marcat com instaŀlat automàticament.\n" +msgid "Failed to rename %s to %s" +msgstr "No s'ha pogut canviar el nom de %s a %s" -#: cmdline/apt-mark.cc:241 +#: apt-inst/extract.cc:249 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s ja estava retingut.\n" +msgid "The directory %s is being replaced by a non-directory" +msgstr "El directori %s està sent reemplaçat per un no-directori" -#: cmdline/apt-mark.cc:243 +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "No s'ha trobat el node dins de la taula" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "La ruta és massa llarga" + +#: apt-inst/extract.cc:421 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s ja estava no retingut.\n" +msgid "Overwrite package match with no version for %s" +msgstr "S'està sobreescrivint el corresponent paquet sense versió per a %s" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-inst/extract.cc:438 #, c-format -msgid "%s set on hold.\n" -msgstr "S'ha marcat %s com retingut.\n" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "El fitxer %s/%s sobreescriu al que està en el paquet %s" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-inst/extract.cc:498 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "S'ha cancel·lat la marca de retenció en %s.\n" +msgid "Unable to stat %s" +msgstr "No es pot veure l'estat de %s" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "L'execució del dpkg ha fallat. Sou root?" +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, c-format +msgid "Failed to write file %s" +msgstr "No s'ha pogut escriure el fitxer %s" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "Ha fallat el tancament del fitxer %s" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Aquest no és un arxiu DEB vàlid, falta el membre «%s»" -#: methods/cdrom.cc:203 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "No es pot llegir la base de dades del cdrom %s" +msgid "Internal error, could not locate member %s" +msgstr "Error intern, no s'ha pogut localitzar al membre %s" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "El fitxer de control no es pot analitzar" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Signatura de l'arxiu no vàlida" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "S'ha produït un error en llegir la capçalera del membre de l'arxiu" + +#: apt-inst/contrib/arfile.cc:96 +#, c-format +msgid "Invalid archive member header %s" +msgstr "La capçalera %s del membre de l'arxiu no és vàlida" + +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "La capçalera del membre de l'arxiu no és vàlida" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "L'arxiu és massa petit" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Ha fallat la lectura de les capçaleres de l'arxiu" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "No es poden crear els conductes" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "No es pot executar el gzip " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Arxiu corromput" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "La suma de comprovació de tar ha fallat, arxiu corromput" + +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Capçalera TAR desconeguda del tipus %u, membre %s" + +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" msgstr "" -"Si us plau, useu apt-cdrom per a que aquest CD sigui reconegut per APT. No " -"pot emprar-se apt-get update per afegir-ne de nous" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD erroni" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "S'està executant dpkg" -#: methods/cdrom.cc:249 +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "El sistema d'empaquetament «%s» no està suportat" + +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "No es pot determinar un tipus de sistema d'empaquetament adequat." + +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "S'han escrit %i registres.\n" + +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "S'han escrit %i registres, on falten %i fitxers.\n" + +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "S'han escrit %i registres, on hi ha %i fitxers no coincidents\n" + +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" +"S'han escrit %i registres, on falten %i fitxers i hi ha %i fitxers no " +"coincidents\n" + +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "No es pot muntar el CD-ROM en %s, potser estigui encara en ús." +msgid "Can't find authentication record for: %s" +msgstr "No s'ha pogut trobar el registre d'autenticatió per a: %s" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "No s'ha trobat el disc" +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "El resum no coincideix per a: %s" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Fitxer no trobat" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"No s'han pogut analitzar o obrir les llistes de paquets o el fitxer d'estat." -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "L'estat ha fallat" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "" +"Potser voldreu executar apt-get update per a corregir aquests problemes" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "No s'ha pogut establir el temps de modificació" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "No s'ha pogut llegir la llista de les fonts." -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI no vàlid, els URI locals no han de començar per //" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Memòria cau de paquets és buida" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "S'està accedint a" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "El fitxer de memòria cau de paquets està corromput" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "No es pot determinar el nom de la màquina distant" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "El fitxer de memòria cau de paquets és una versió incompatible" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "No es pot determinar el nom local" +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "El fitxer de memòria cau de paquets està corromput, és massa petit" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "El servidor ha rebutjat la nostra connexió i ha dit: %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "Aquest APT no suporta el sistema de versions «%s»" -#: methods/ftp.cc:225 -#, c-format -msgid "USER failed, server said: %s" -msgstr "USER ha fallat, el servidor ha dit: %s" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "La memòria cau de paquets fou creada per a una arquitectura diferent" -#: methods/ftp.cc:232 -#, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS ha fallat, el servidor ha dit: %s" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Depèn" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"S'ha especificat un servidor intermediari però no un script d'accés, " -"Acquire::ftp::ProxyLogin està buit." +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Predepèn" -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "L'ordre «%s» de l'script d'accés ha fallat, el servidor ha dit: %s" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Suggereix" -#: methods/ftp.cc:306 -#, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE ha fallat, el servidor ha dit: %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Recomana" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Temps de connexió finalitzat" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Entra en conflicte" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "El servidor ha tancat la connexió" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Reemplaça" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Una resposta ha desbordat la memòria intermèdia." +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Fa obsolet" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protocol corromput" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Trenca" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "No s'ha pogut crear un sòcol" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Millora" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "No s'ha pogut connectar amb el sòcol de dades, connexió finalitzada" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "important" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Ha fallat" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "requerit" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "No s'ha pogut connectar amb el sòcol passiu." +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "estàndard" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "gettaddrinfo no es pot obtenir un sòcol que escolte" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "opcional" -# abastar? huh? jm -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "No s'ha pogut vincular a un connector" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "No s'ha pogut escoltar sobre el sòcol" +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "No s'ha pogut trobar el mètode de control %s." -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "No s'ha pogut determinar el nom del sòcol" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Comproveu si el paquet «dpkgdev» està instaŀlat.\n" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "No es pot enviar l'ordre PORT" +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "El mètode %s no s'ha iniciat correctament" -#: methods/ftp.cc:802 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "La família d'adreces %u és desconeguda (AF_*)" +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Inseriu el disc amb l'etiqueta: «%s» en la unitat «%s» i premeu Intro." -#: methods/ftp.cc:811 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT ha fallat, el servidor ha dit: %s" +msgid "Index file type '%s' is not supported" +msgstr "El tipus de fitxer índex «%s» no està suportat" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "S'ha esgotat el temps de connexió al sòcol de dades" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "S'està construint l'arbre de dependències" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "No es pot acceptar la connexió" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Versions candidates" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problema escollint el fitxer" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Dependències que genera" -#: methods/ftp.cc:890 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "S'està llegint la informació de l'estat" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "No és possible obtenir el fitxer, el servidor ha dit '%s'" +msgid "Failed to open StateFile %s" +msgstr "No s'ha pogut obrir el fitxer d'estat %s" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "S'ha esgotat el temps d'espera per al sòcol de dades" +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "No s'ha pogut escriure el fitxer d'estat temporal %s" -#: methods/ftp.cc:935 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Ha fallat la transferència de dades, el servidor ha dit '%s'" +msgid "rename failed, %s (%s -> %s)." +msgstr "no s'ha pogut canviar el nom, %s (%s -> %s)." -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Consulta" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "La suma resum no concorda" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "No es pot invocar" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "La mida no concorda" -#: methods/connect.cc:76 +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Operació no vàlida %s" + +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Connecting to %s (%s)" -msgstr "S'està connectant amb %s (%s)" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" +"No s'ha trobat l'entrada «%s» esperada, al fitxer Release (entrada errònia " +"al sources.list o fitxer malformat)" -#: methods/connect.cc:87 +#: apt-pkg/acquire-item.cc:1589 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "No s'ha trobat la suma de comprovació per a «%s» al fitxer Release" -#: methods/connect.cc:94 +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "No hi ha cap clau pública disponible per als següents ID de clau:\n" + +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "No s'ha pogut crear un sòcol per a %s (f=%u t=%u p=%u)" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" +"El fitxer Release per a %s ha caducat (invàlid des de %s). Les " +"actualitzacions per a aquest dipòsit no s'aplicaran." -#: methods/connect.cc:100 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "No es pot iniciar la connexió amb %s:%s (%s)." +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Distribució en conflicte: %s (s'esperava %s però s'ha obtingut %s)" -#: methods/connect.cc:108 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "No s'ha pogut connectar amb %s:%s (%s), temps de connexió excedit" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"S'ha produït un error durant la verificació de la signatura. El dipòsit no " +"està actualitzat i s'emprarà el fitxer d'índex anterior. Error del GPG: %s: " +"%s\n" -#: methods/connect.cc:126 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "No s'ha pogut connectar amb %s:%s (%s)." +msgid "GPG error: %s: %s" +msgstr "S'ha produït un error amb el GPG: %s: %s" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Connecting to %s" -msgstr "S'està connectant amb %s" +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"No ha estat possible localitzar un fitxer pel paquet %s. Això podria " +"significar que haureu d'arreglar aquest paquet manualment (segons " +"arquitectura)." -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Could not resolve '%s'" -msgstr "No s'ha pogut resoldre «%s»" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "No es troba una font per baixar la versió «%s» de «%s»" -#: methods/connect.cc:205 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "S'ha produït un error temporal en resoldre «%s»" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"L'índex dels fitxers en el paquet està corromput. Fitxer no existent: camp " +"per al paquet %s." -#: methods/connect.cc:209 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Ha passat alguna cosa estranya en resoldre «%s:%s» (%i - %s)" +msgid "Clean of %s is not supported" +msgstr "El tipus de fitxer índex «%s» no està suportat" -#: methods/connect.cc:211 +#: apt-pkg/clean.cc:64 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Ha passat alguna cosa estranya en resoldre «%s:%s» (%i - %s)" +msgid "Unable to stat %s." +msgstr "No es pot veure l'estat de %s." -#: methods/connect.cc:258 +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "La memòria cau té un sistema de versions incompatible" + +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "No es pot connectar amb %s:%s:" +msgid "Error occurred while processing %s (%s%d)" +msgstr "S'ha produït un error en processar %s (%s%d)" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -"Error intern: La signatura és correcta, però no s'ha pogut determinar " -"l'emprempta digital de la clau!" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "S'ha trobat almenys una signatura invàlida." +"Uau, heu excedit el nombre de paquets que aquest APT és capaç de gestionar." -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" -"No s'ha pogut executar el «gpgv» per a verificar la signatura (està " -"instaŀlat el gpgv?)" +"Uau, heu excedit el nombre de versions que aquest APT és capaç de gestionar." -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 -#, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" +"Uau, heu excedit el nombre de descripcions que aquest APT és capaç de " +"gestionar. " -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "S'ha produït un error desconegut en executar el gpgv" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Les signatures següents són invàlides:\n" - -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -"Les signatures següents no s'han pogut verificar perquè la clau pública no " -"està disponible:\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Els fitxers buits no poden ser arxius vàlids" - -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "S'ha produït un error en escriure al fitxer" +"Uau, heu excedit el nombre de dependències que aquest APT és capaç de " +"gestionar." -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" msgstr "" -"S'ha produït un error en llegir, el servidor remot ha tancat la connexió" +"No s'ha trobat el paquet %s %s en processar les dependències del fitxer" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "S'ha produït un error en llegir des del servidor" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "No s'ha pogut llegir la llista de paquets font %s" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "S'ha produït un error en escriure al fitxer" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "S'està llegint la llista de paquets" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Ha fallat la selecció" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "S'estan recollint els fitxers que proveeixen" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Connexió finalitzada" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "No es pot escriure en %s" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "S'ha produït un error en escriure al fitxer de sortida" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Error d'E/S en desar la memòria cau de la font" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "S'estan esperant les capçaleres" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "El camp del proveïdor %s no té una empremta digital" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Línia de capçalera incorrecta" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Falta el directori de llistes %spartial." -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "El servidor HTTP ha enviat una capçalera de resposta no vàlida" +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Falta el directori d'arxius %spartial." -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "El servidor HTTP ha enviat una capçalera de Content-Length no vàlida" +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "No es pot blocar el directori %s" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "El servidor HTTP ha enviat una capçalera de Content-Range no vàlida" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "S'està obtenint el fitxer %li de %li (falten %s)" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Aquest servidor HTTP té el suport d'abast trencat" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "S'està obtenint el fitxer %li de %li" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Format de la data desconegut" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"Alguns índex no s'han pogut baixar. S'han descartat, o en el seu lloc s'han " +"emprat els antics." -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Capçalera de dades no vàlida" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Heu de posar algunes URI 'font' en el vostre sources.list" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Ha fallat la connexió" +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" +"El valor «%s» és invàlid per a APT:Default-Release donat que aquest " +"llançament no és disponible a les fonts" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Error intern" +#: apt-pkg/policy.cc:422 +#, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Registre no vàlid al fitxer de preferències %s, paquet sense capçalera" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "S'està calculant l'actualització… " +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "No s'ha entès el pin de tipus %s" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Fet" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "No hi ha prioritat especificada per al pin (o és zero)" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" +"No s'ha pogut realitzar la configuració immediata de «%s». Vegeu man 5 apt." +"conf, sota APT::Immediate-Configure per a més detalls. (%d)" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, c-format +msgid "Could not configure '%s'. " +msgstr "No s'ha pogut configurar «%s»." + +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." msgstr "" +"Aquesta instaŀlació requereix suprimir temporalment el paquet essencial %s " +"per qüestió d'un bucle de Conflictes/Pre-dependències. Això sol ser una cosa " +"dolenta, però si realment desitgeu fer-la, activeu l'opció APT::Force-" +"LoopBreak." -#: apt-private/private-list.cc:164 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Line %u too long in source list %s." +msgstr "La línia %u és massa llarga en la llista de fonts %s." -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "S'estan corregint les dependències…" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "S'està desmuntant el CD-ROM…\n" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " ha fallat." +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "S'està utilitzant el punt de muntatge de CD-ROM %s\n" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "No es poden corregir les dependències" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "S'està esperant al disc…\n" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "No es pot minimitzar el joc de versions revisades" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "S'està muntant el CD-ROM…\n" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Fet" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "S'està identificant…" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Potser voldreu executar «apt-get -f install» per a corregir-ho." +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "S'ha emmagatzemat l'etiqueta: %s\n" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dependències sense satisfer. Proveu-ho emprant -f." +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "S'està analitzant el disc per a fitxers d'índex…\n" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/cdrom.cc:734 +#, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" +"S'han trobat %zu índexos de paquets, %zu índexos de fonts, %zu indexos de " +"traduccions i %zu signatures\n" + +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" +"No s'ha trobat cap fitxer de paquets, potser no és un disc de Debian o la " +"arquitectura és incorrecta?" -#: apt-private/private-output.cc:234 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Instaŀlat]" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "S'ha trobat l'etiqueta «%s»\n" -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [Instaŀlat]" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Aquest no és un nom vàlid, torneu-ho a provar.\n" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" +"El disc es diu:\n" +"«%s»\n" -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Instaŀlat]" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "S'estan copiant les llistes de paquets…" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Instaŀlat]" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "S'està escrivint una nova llista de fonts\n" -#: apt-private/private-output.cc:249 +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Les entrades de la llista de fonts per a aquest disc són:\n" + +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "[upgradable from: %s]" +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" +"El paquet %s necessita ser reinstaŀlat, però no se li pot trobar un arxiu." -#: apt-private/private-output.cc:253 -msgid "[residual-config]" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Error, pkgProblemResolver::Resolve ha generat pauses, això pot haver estat " +"causat per paquets retinguts." + +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." msgstr "" +"No es poden corregir els problemes, teniu paquets retinguts que estan " +"trencats." -#: apt-private/private-output.cc:435 -#, c-format -msgid "but %s is installed" -msgstr "però està instaŀlat %s" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Envia l'escenari al resoledor" -#: apt-private/private-output.cc:437 -#, c-format -msgid "but %s is to be installed" -msgstr "però s'instaŀlarà %s" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Envia la petició al resoledor" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "però no és instaŀlable" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Prepara per a rebre una solució" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "però és un paquet virtual" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "El resoledor extern ha fallat sense un missatge d'error adient" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "però no està instaŀlat" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Executa un resoledor extern" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "però no serà instaŀlat" +#: apt-pkg/tagfile.cc:140 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "No es pot analitzar el fitxer del paquet %s (1)" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " o" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "No es pot analitzar el fitxer del paquet %s (2)" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Els següents paquets tenen dependències sense satisfer:" +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "No es pot analitzar el fitxer Release %s" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "S'instaŀlaran els paquets NOUS següents:" +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "No hi ha seccions al fitxer Release %s" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Es SUPRIMIRAN els paquets següents:" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "No hi ha una entrada Hash al fitxer Release %s" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "S'han mantingut els paquets següents:" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "El camp «Valid-Until» al fitxer Release %s és invàlid" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "S'actualitzaran els paquets següents:" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "El camp «Date» al fitxer Release %s és invàlid" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Es DESACTUALITZARAN els paquets següents:" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Línia %lu malformada en la llista de fonts %s (analitzant URI)" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Es canviaran els paquets retinguts següents:" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "" +"Línia %lu malformada en la llista de fonts %s ([opció] no reconeixible)" -#: apt-private/private-output.cc:668 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "%s (due to %s) " -msgstr "%s (per %s) " +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Línia %lu malformada en la llista de fonts %s ([opció] massa curta)" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "" -"AVÍS: Es suprimiran els paquets essencials següents.\n" -"Això NO s'ha de fer a menys que sapigueu exactament el que esteu fent!" +"Línia %lu malformada en la llista de fonts %s ([%s] no és una assignació)" -#: apt-private/private-output.cc:707 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu actualitzats, %lu nous a instaŀlar, " +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Línia %lu malformada en la llista de fonts %s ([%s] no té clau)" -#: apt-private/private-output.cc:711 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinstaŀlats, " +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "" +"Línia %lu malformada en la llista de fonts %s ([%s] la clau %s no té valor)" -#: apt-private/private-output.cc:713 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "%lu downgraded, " -msgstr "%lu desactualitzats, " +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Línia %lu malformada en la llista de fonts %s (URI)" -#: apt-private/private-output.cc:715 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu a suprimir i %lu no actualitzats.\n" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Línia %lu malformada en la llista de fonts %s (dist)" -#: apt-private/private-output.cc:719 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu no instaŀlats o suprimits completament.\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[S/n]" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Línia %lu malformada en la llista de fonts %s (analitzant URI)" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[s/N]" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Línia %lu malformada en la llista de fonts %s (dist absoluta)" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "S" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Línia %lu malformada en la llista de fonts %s (analitzant dist)" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "N" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "S'està obrint %s" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "L'ordre update no pren arguments" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "La línia %u és malformada en la llista de fonts %s (tipus)" -#: apt-private/private-update.cc:90 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "El tipus «%s» no és conegut en la línia %u de la llista de fonts %s" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "El tipus «%s» no és conegut en la línia %u de la llista de fonts %s" -#: apt-private/private-show.cc:156 +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Release '%s' for '%s' was not found" +msgstr "No s'ha trobat la versió puntual «%s» per a «%s»" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "No s'ha trobat la versió «%s» per a «%s»" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "" -"S'ha produït un error intern, s'ha cridat a InstallPackages amb paquets " -"trencats!" +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "No s'ha pogut trobar la tasca «%s»" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "" -"Els paquets necessiten ser suprimits però s'ha inhabilitat la supressió." +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "No s'ha pogut trobar el paquet a través de l'expressió regular «%s»" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "S'ha produït un error intern, l'ordenació no ha acabat" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "No s'ha pogut trobar el paquet a través de l'expressió regular «%s»" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -"Què estrany… les mides no coincideixen, informeu a apt@packages.debian.org" +"No s'han pogut seleccionar les versions del paquet «%s» ja que és purament " +"virtual" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "S'ha d'obtenir %sB/%sB d'arxius.\n" +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" +"No s'han pogut seleccionar la versió instaŀlada ni la candidata del paquet " +"«%s» ja que no estan disponibles cap de les dues" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "S'ha d'obtenir %sB d'arxius.\n" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"No s'ha pogut seleccionar la versió més nova del paquet «%s» ja que és " +"purament virtual" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -"Després d'aquesta operació s'empraran %sB d'espai en disc addicional.\n" +"No s'ha pogut seleccionar la versió candidata del paquet %s ja que no té " +"candidata" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/cacheset.cc:663 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Després d'aquesta operació s'alliberaran %sB d'espai en disc.\n" +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"No s'ha pogut seleccionar la versió instaŀlada del paquet %s ja que no està " +"instaŀlada" -#: apt-private/private-install.cc:200 +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, c-format -msgid "You don't have enough free space in %s." -msgstr "No teniu prou espai lliure en %s." - -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Hi ha problemes i s'ha emprat -y sense --force-yes" - -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "S'ha especificat «Trivial Only» però aquesta operació no és trivial." - -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Sí, fes el que et dic!" +msgid "%lid %lih %limin %lis" +msgstr "%lid %lih %limin %lis" -#: apt-private/private-install.cc:222 +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Esteu a punt de fer quelcom potencialment nociu.\n" -"Per continuar escriviu la frase «%s»\n" -" ?] " +msgid "%lih %limin %lis" +msgstr "%lih %limin %lis" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Avortat." +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Voleu continuar?" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Alguns fitxers no s'han pogut baixar" +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "No s'ha trobat la selecció %s" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" msgstr "" -"No es poden baixar alguns arxius, proveu a executar apt-get update o " -"intenteu-ho amb --fix-missing." +"No s'empren blocats per a llegir el fitxer de blocat de sols lectura %s" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing i els medi intercanviables actualment no estan suportats" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "No es pot resoldre el fitxer de blocat %s" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "No es poden corregir els paquets que falten." +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "No s'empren blocats per al fitxer de blocat %s de muntar nfs" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "S'està avortant la instaŀlació." +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "No s'ha pogut blocar %s" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -"El següent paquet ha desaparegut del vostre sistema ja\n" -"que tots els fitxers s'han sobreescrit per altres paquets:" -msgstr[1] "" -"Els següents paquets han desaparegut del vostre sistema ja\n" -"que tots els fitxers s'han sobreescrit per altres paquets:" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "No es pot crear la llista de fitxers perquè «%s» no és un directori" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Nota: Això ho fa el dpkg automàticament i a propòsit." +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "S'està descartant «%s» al directori «%s» perquè no és un fitxer normal" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -"Es suposa que no hauriem de suprimir coses, no es pot iniciar el supressor " -"automàtic" +"S'està descartant «%s» al directori «%s» perquè no té extensió del nom de " +"fitxer" -#: apt-private/private-install.cc:499 +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"Sembla que el supressor automàtic ha destruït alguna cosa que no deuria. Si " -"us plau, envieu un informe d'error per a l'apt." +"S'està descartant «%s» al directori «%s» perquè té una extensió del nom de " +"fitxer invàlida" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "La informació següent pot ajudar-vos a resoldre la situació:" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "El sub-procés %s ha rebut una violació de segment." -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "S'ha produït un error intern, el supressor automàtic ha trencat coses" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "El sub-procés %s ha rebut un senyal %u." -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "" -"El paquet següent s'ha instaŀlat automàticament i ja no serà necessari:" -msgstr[1] "" -"Els paquets següents s'han instaŀlat automàticament i ja no són necessaris:" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "El sub-procés %s ha retornat un codi d'error (%u)" -#: apt-private/private-install.cc:517 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "" -"El paquet %lu es va instaŀlar automàticament i ja no és necessari:\n" -msgstr[1] "" -"Els paquets %lu es van s'instaŀlar automàticament i ja no són necessaris:\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "El sub-procés %s ha sortit inesperadament" -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Empreu «apt-get autoremove» per a suprimir-lo." -msgstr[1] "Empreu «apt-get autoremove» per a suprimir-los." +#: apt-pkg/contrib/fileutl.cc:913 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Ha hagut un problema en tancar el fitxer gzip %s" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Potser voldreu executar «apt-get -f install» per corregir-ho:" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "No s'ha pogut obrir el fitxer %s" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Dependències insatisfetes. Proveu amb «apt-get -f install» sense paquets (o " -"especifiqueu una solució)." +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "No s'ha pogut obrir el descriptor del fitxer %d" -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." -msgstr "" -"No s'han pogut instaŀlar alguns paquets. Això pot ser degut a que heu\n" -"demanat una situació impossible o que esteu emprant la distribució\n" -"«unstable» i alguns paquets requerits encara no han estat creats o bé\n" -"encara no els hi han introduït des d'«Incoming»." +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "No s'ha pogut crear el subprocés IPC" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Paquets trencats" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "No s'ha pogut executar el compressor " -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "S'instaŀlaran els següents paquets extres:" +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "llegits, falten %llu per llegir, però no queda res" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Paquets suggerits:" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "escrits, falten %llu per escriure però no s'ha pogut" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Paquets recomanats:" +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Ha hagut un problema en tancar el fitxer %s" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:1927 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "" -"S'està ometent %s, ja està instaŀlat i l'actualització no està establerta.\n" +msgid "Problem renaming the file %s to %s" +msgstr "Ha hagut un problema en reanomenar el fitxer %s a %s" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:1938 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"S'està ometent '%s', no està instaŀlat i només es demana l'actualització.\n" +msgid "Problem unlinking the file %s" +msgstr "Ha hagut un problema en desenllaçar el fitxer %s" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Ha hagut un problema en sincronitzar el fitxer" + +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "No es possible la reinstaŀlació del paquet %s, no es pot baixar.\n" +msgid "%c%s... Error!" +msgstr "%c%s… Error!" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s ja es troba en la versió més recent.\n" +msgid "%c%s... Done" +msgstr "%c%s… Fet" + +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "…" -#: apt-private/private-install.cc:894 +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Versió seleccionada «%s» (%s) per a «%s»\n" +msgid "%c%s... %u%%" +msgstr "%c%s… %u%%" -#: apt-private/private-install.cc:899 -#, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Versió seleccionada «%s» (%s) per a «%s» degut a «%s»\n" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "No es pot transferir un fitxer buit a memòria" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" -"El paquet «%s» no està instaŀlat, així doncs no es suprimirà. Volíeu dir " -"«%s»?\n" +msgid "Couldn't duplicate file descriptor %i" +msgstr "No s'ha pogut duplicar el descriptor del fitxer %i" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/mmap.cc:119 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "El paquet «%s» no està instaŀlat, així doncs no es suprimirà\n" - -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" -"Nota: Això només és una simulació!\n" -" L'apt-get necessita privilegis de root per a l'execució real.\n" -" Tingueu en ment que el bloqueig està desactivat,\n" -" per tant, no es depèn de la situació actual real." - -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "AVÍS: No es poden autenticar els següents paquets!" +msgid "Couldn't make mmap of %llu bytes" +msgstr "No s'ha pogut crear un mapa de memòria de %llu octets" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "S'ha descartat l'avís d'autenticació.\n" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "No es pot tancar el mmap" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "No s'ha pogut autenticar alguns paquets" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "No es pot sincronitzar el mmap" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Voleu instaŀlar aquests paquets sense verificar-los?" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "No s'ha pogut crear un mapa de memòria de %lu octets" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "No s'ha pogut canviar el nom de %s a %s" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "No s'ha pogut truncar el fitxer %s" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" +"No hi ha espai per al «Dynamic MMap». Incrementeu la mida d'APT::Cache-" +"Start. Valor actual: %lu. (man 5 apt.conf)" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: apt-pkg/contrib/mmap.cc:446 +#, c-format +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" +"No s'ha pogut incrementar la mida del MMap ja que el limit de %lu bytes ja " +"s'ha superat." -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Obj " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Bai:" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"No s'ha pogut incrementar la mida del MMap ja que el creixement automàtic " +"està deshabilitat per l'usuari." -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "No es pot obtenir informació del punt de muntatge %s" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "No s'ha pogut fer «stat» del cdrom" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "S'ha baixat %sB en %s (%sB/s)\n" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Abreujament de tipus no reconegut: «%c»" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid " [Working]" -msgstr " [Treballant]" +msgid "Opening configuration file %s" +msgstr "S'està obrint el fitxer de configuració %s" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" -msgstr "" -"Canvi de medi: inseriu el disc amb l'etiqueta\n" -" «%s»\n" -"en la unitat «%s» i premeu Intro\n" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Error sintàctic %s:%u: No comença el camp amb un nom." -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/configuration.cc:820 #, c-format -msgid "No mirror file '%s' found " -msgstr "No s'ha trobat el fitxer rèplica «%s»" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Error sintàctic %s:%u: Etiqueta malformada" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: apt-pkg/contrib/configuration.cc:837 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "No es pot llegir el fitxer rèplica «%s»" - -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "No es pot llegir el fitxer rèplica «%s»" +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Error sintàctic %s:%u Text extra després del valor" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:877 #, c-format -msgid "[Mirror: %s]" -msgstr "[Rèplica: %s]" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "No s'ha pogut crear el conducte IPC al subprocés" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "La connexió s'ha tancat prematurament" +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "Error sintàctic %s:%u: Es permeten directrius només al nivell més alt" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Paràmetre per defecte incorrecte!" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Error sintàctic %s:%u: Hi ha masses fitxers include niats" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Premeu Intro per a continuar." +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Error sintàctic %s:%u: Inclusió des d'aquí" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Voleu suprimir els paquets .deb baixats prèviament?" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Error sintàctic %s:%u: Directriu no suportada «%s»" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"S'han produït alguns errors en desempaquetar. Els paquets que s'han instaŀlat" - -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "seran configurats. Això pot provocar errors duplicats" +"Error sintàctic %s:%u: la directiva clear requereix un arbre d'opcions com a " +"argument" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"o errors causats per dependències sense satisfer. Això està bé, només els " -"errors" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Error sintàctic %s:%u: Text extra al final del fitxer" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "" -"anteriors a aquest missatge són importants. Corregiu-los i torneu a executar " -"[I]nstaŀla una altra vegada" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "No s'ha instaŀlat cap clauer a %s." -#: dselect/update:30 -msgid "Merging available information" -msgstr "S'està fusionant la informació disponible" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "L'opció de la línia d'ordres «%c» [de %s] és desconeguda." -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode crida a un node que encara està enllaçat" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "No s'entén l'opció de la línia d'ordres %s" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "No s'ha trobat l'element diseminat!" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "No és lògica l'opció de la línia d'ordres %s" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "No s'ha pogut assignar la desviació" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "L'opció de la línia d'ordres %s precisa un paràmetre." -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "S'ha produït un error intern en AddDiversion" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Opció %s: Paràmetre de configuració ha de ser en la forma =<val>" -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "S'està intentant sobreescriure una desviació, %s -> %s i %s/%s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "L'opció %s precisa un paràmetre numèric, no '%s'" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Afegit doble d'una desviació %s -> %s" +msgid "Option '%s' is too long" +msgstr "L'opció '%s' és massa llarga" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Fitxer de conf. duplicat %s/%s" +msgid "Sense %s is not understood, try true or false." +msgstr "El sentit %s no s'entén, proveu «true» (vertader) o «false» (fals)." -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The path %s is too long" -msgstr "La ruta %s és massa llarga" +msgid "Invalid operation %s" +msgstr "Operació no vàlida %s" -#: apt-inst/extract.cc:132 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unpacking %s more than once" -msgstr "S'està desempaquetant %s més d'una vegada" +msgid "Installing %s" +msgstr "S'està instaŀlant %s" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The directory %s is diverted" -msgstr "El directori %s està desviat" +msgid "Configuring %s" +msgstr "S'està configurant el paquet %s" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "El paquet està intentant escriure en l'objectiu desviat %s/%s" +msgid "Removing %s" +msgstr "S'està suprimint el paquet %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "La ruta de desviació és massa llarga" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "S'ha suprimit completament %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to stat %s" -msgstr "No es pot determinar l'estat de %s" +msgid "Noting disappearance of %s" +msgstr "S'està anotant la desaparició de %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Failed to rename %s to %s" -msgstr "No s'ha pogut canviar el nom de %s a %s" +msgid "Running post-installation trigger %s" +msgstr "S'està executant l'activador de postinstaŀlació %s" -#: apt-inst/extract.cc:249 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "El directori %s està sent reemplaçat per un no-directori" +msgid "Directory '%s' missing" +msgstr "Manca el directori «%s»" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "No s'ha trobat el node dins de la taula" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "No s'ha pogut obrir el fitxer «%s»" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "La ruta és massa llarga" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "S'està preparant el paquet %s" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "S'està sobreescrivint el corresponent paquet sense versió per a %s" +msgid "Unpacking %s" +msgstr "S'està desempaquetant %s" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "El fitxer %s/%s sobreescriu al que està en el paquet %s" +msgid "Preparing to configure %s" +msgstr "S'està preparant per a configurar el paquet %s" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Unable to stat %s" -msgstr "No es pot veure l'estat de %s" +msgid "Installed %s" +msgstr "S'ha instaŀlat el paquet %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to write file %s" -msgstr "No s'ha pogut escriure el fitxer %s" +msgid "Preparing for removal of %s" +msgstr "S'està preparant per a la supressió del paquet %s" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Failed to close file %s" -msgstr "Ha fallat el tancament del fitxer %s" +msgid "Removed %s" +msgstr "S'ha suprimit el paquet %s" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Aquest no és un arxiu DEB vàlid, falta el membre «%s»" +msgid "Preparing to completely remove %s" +msgstr "S'està preparant per a suprimir completament el paquet %s" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Error intern, no s'ha pogut localitzar al membre %s" +msgid "Completely removed %s" +msgstr "S'ha suprimit completament el paquet %s" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "El fitxer de control no es pot analitzar" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Signatura de l'arxiu no vàlida" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "No es pot escriure en %s" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "S'ha produït un error en llegir la capçalera del membre de l'arxiu" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "La capçalera %s del membre de l'arxiu no és vàlida" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "La capçalera del membre de l'arxiu no és vàlida" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "S'ha interromput l'operació abans que pogués finalitzar" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "L'arxiu és massa petit" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "No s'ha escrit cap informe perquè ja s'ha superat MaxReports" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Ha fallat la lectura de les capçaleres de l'arxiu" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "S'han produït problemes de depències, es deixa sense configurar" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "No es poden crear els conductes" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"No s'ha escrit cap informe perquè el missatge d'error indica que és un error " +"consequent de una fallida anterior." -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "No es pot executar el gzip " +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"No s'ha escrit cap informe perquè el missatge d'error indica una fallida per " +"disc ple" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Arxiu corromput" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"No s'ha escrit cap informe perquè el missatge d'error indica una fallida per " +"falta de memòria" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "La suma de comprovació de tar ha fallat, arxiu corromput" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"No s'ha escrit cap informe perquè el missatge d'error indica una fallida per " +"disc ple" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"No s'ha escrit cap informe perquè el missatge d'error indica d'una fallida " +"d'E/S del dpkg" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Capçalera TAR desconeguda del tipus %u, membre %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"No s'ha pogut bloquejar el directori d'administració (%s), hi ha cap altre " +"procés utilitzant-lo?" + +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "No es pot blocar el directori d'administració (%s), sou root?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"S'ha interromput el dpkg, hauríeu d'executar manualment «%s» per a corregir " +"el problema." + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "No blocat" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/cs.po b/po/cs.po index 58018bb05..470a710b5 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2014-08-15 13:30+0200\n" "Last-Translator: Miroslav Kure <kurem@debian.cz>\n" "Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n" @@ -17,3231 +17,3233 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n>=2 && n<=4 ? 1 : 2;\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, c-format -msgid "Clean of %s is not supported" -msgstr "Vyčištění %s není podporováno" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "Nelze číst %s" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Nelze přejít do %s" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "Nebylo možno vyhodnotit %s." - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "Postup: [%3i%%]" - -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Spouští se dpkg" - -#: apt-pkg/init.cc:146 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Balíčkovací systém „%s“ není podporován" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Nebylo možno určit vhodný typ balíčkovacího systému" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Balík %s verze %s má nesplněné závislosti:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Zapsáno %i záznamů.\n" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Celkem názvů balíků: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Zapsáno %i záznamů s chybějícími soubory (%i).\n" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Celkem struktur balíků: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Zapsáno %i záznamů s nesouhlasícími soubory (%i).\n" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Normálních balíků: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "Zapsáno %i záznamů s chybějícími (%i) a nesouhlasícími (%i) soubory.\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Čistě virtuálních balíků: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "Nelze najít autentizační záznam pro: %s" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Jednoduchých virtuálních balíků: " -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "Neshoda kontrolních součtů pro: %s" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Smíšených virtuálních balíků: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Ovladač metody %s nemohl být nalezen." +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Chybějících: " -#: apt-pkg/acquire-worker.cc:118 -#, c-format -msgid "Is the package %s installed?" -msgstr "Je balík %s nainstalován?" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Celkem různých verzí: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Metoda %s nebyla spuštěna správně" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Celkem různých popisů: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Vložte prosím disk nazvaný „%s“ do mechaniky „%s“ a stiskněte enter." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Celkem závislostí: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "" -"Seznamy balíků nebo stavový soubor nemohly být zpracovány nebo otevřeny." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Celkem vztahů ver/soubor: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Pro nápravu těchto problémů můžete zkusit spustit apt-get update" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Celkem vztahů popis/soubor: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Nelze přečíst seznam zdrojů." +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Celkem poskytnutých mapování: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Cache balíků je prázdná" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Celkem globovaných řetězců: " -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Cache soubor balíků je poškozen" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Celkem místa závislých verzí: " -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Cache soubor balíků má nekompatibilní verzi" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Celkem jalového místa: " -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Cache soubor balíků je poškozen, je příliš malý" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Celkem přiřazeného místa: " -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Tato APT nepodporuje systém pro správu verzí „%s“" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Cache balíků byla vytvořena pro jinou architekturu" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Závisí na" +msgid "Package file %s is out of sync." +msgstr "Soubor balíku %s je špatně synchronizovaný." -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Předzávisí na" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Nebyly nalezeny žádné balíky" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Navrhuje" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Musíte zadat alespoň jeden vyhledávací vzor" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Doporučuje" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "Tento příkaz je zastaralý, použijte místo něj „apt-mark showauto“." -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Koliduje s" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "Nelze najít balík %s" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Nahrazuje" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Soubory balíku:" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Zastarává" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Cache není synchronizovaná, nemohu se odkázat na soubor balíku" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Porušuje" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Vypíchnuté balíky:" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Rozšiřuje" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(nenalezeno)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "důležitý" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Instalovaná verze: " -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "vyžadovaný" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Kandidát: " -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standardní" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(žádná)" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "volitelný" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Vypíchnutý balík: " -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Tabulka verzí:" -#: apt-pkg/pkgrecords.cc:38 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "Indexový typ souboru „%s“ není podporován" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s pro %s zkompilován na %s %s\n" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Chyba při kompilaci regulárního výrazu - %s" +#: cmdline/apt-cache.cc:1749 +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Použití: apt-cache [volby] příkaz\n" +" apt-cache [volby] showpkg balík1 [balík2 …]\n" +" apt-cache [volby] showsrc balík1 [balík2 …]\n" +"\n" +"apt-cache je nízkoúrovňový nástroj pro získávání informací o balících.\n" +"\n" +"Příkazy:\n" +" gencaches - Vytvoří vyrovnávací paměť balíků i zdrojů\n" +" showpkg - Zobrazí obecné informace o balíku\n" +" showsrc - Zobrazí zdrojové záznamy\n" +" stats - Zobrazí základní statistiky\n" +" dump - Zobrazí celý soubor ve zhuštěné podobě\n" +" dumpavail - Vytiskne na výstup dostupné balíky\n" +" unmet - Zobrazí nesplněné závislosti\n" +" search - V seznamu balíků hledá regulární výraz\n" +" show - Zobrazí informace o balíku\n" +" depends - Zobrazí závislosti balíku\n" +" rdepends - Zobrazí reverzní závislosti balíku\n" +" pkgnames - Vypíše jména všech balíků v systému\n" +" dotty - Vygeneruje grafy ve formátu pro GraphViz\n" +" xvcg - Vygeneruje grafy ve formátu pro xvcg\n" +" policy - Zobrazí nastavenou politiku\n" +"\n" +"Volby:\n" +" -h Tato nápověda.\n" +" -p=? Vyrovnávací paměť balíků.\n" +" -s=? Vyrovnávací paměť zdrojů.\n" +" -q Nezobrazí indikátor postupu.\n" +" -i U příkazu unmet zobrazí pouze důležité závislosti.\n" +" -c=? Načte daný konfigurační soubor\n" +" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n" +"Více informací viz manuálové stránky apt-cache(8) a apt.conf(5).\n" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Cache má nekompatibilní systém správy verzí" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Zadejte prosím název tohoto média, např. „Debian 5.0.3 Disk 1“" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Vložte prosím médium do mechaniky a stiskněte enter" + +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Chyba při zpracování %s (%s%d)" +msgid "Failed to mount '%s' to '%s'" +msgstr "Selhalo připojení „%s“ na „%s“" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "Wow, překročili jste počet jmen balíků, které tato APT umí zpracovat." +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" +"Na výchozím přípojném bodu nebylo rozpoznáno/nalezeno žádné CD-ROM.\n" +"Můžete zkusit zadat přípojný bod CD-ROM volbou --cdrom.\n" +"Více o rozpoznávání CD-ROM a přípojných bodech naleznete v „man apt-cdrom“." -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Wow, překročili jste počet verzí, které tato APT umí zpracovat." +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Tento proces opakujte pro všechna zbývající média." -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Wow, překročili jste počet popisů, které tato APT umí zpracovat." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumenty nejsou v párech" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "Wow, překročili jste počet závislostí, které tato APT umí zpracovat." +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"Použití: apt-config [volby] příkaz\n" +"\n" +"apt-config je jednoduchý nástroj pro čtení konfiguračního souboru APT\n" +"\n" +"Příkazy:\n" +" shell - Shellový režim\n" +" dump - Zobrazí nastavení\n" +"\n" +"Volby:\n" +" -h Tato nápověda.\n" +" -c=? Načte tento konfigurační soubor\n" +" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n" -#: apt-pkg/pkgcachegen.cc:576 +#: cmdline/apt-get.cc:245 #, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "Při zpracování závislostí nebyl nalezen balík %s %s" +msgid "Can not find a package for architecture '%s'" +msgstr "Nelze najít balík pro architekturu „%s“" -#: apt-pkg/pkgcachegen.cc:1211 +#: cmdline/apt-get.cc:327 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Nešlo vyhodnotit seznam zdrojových balíků %s" - -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Čtu seznamy balíků" - -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Collecting File poskytuje" +msgid "Can not find a package '%s' with version '%s'" +msgstr "Nelze najít balík „%s“ s verzí „%s“" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:330 #, c-format -msgid "Unable to write to %s" -msgstr "Nelze zapsat do %s" +msgid "Can not find a package '%s' with release '%s'" +msgstr "Nelze najít balík „%s“ z vydání „%s“" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Chyba IO při ukládání zdrojové cache" +#: cmdline/apt-get.cc:367 +#, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Vybírám „%s“ jako zdrojový balík místo „%s“\n" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "Scénář odeslán řešiteli" +#: cmdline/apt-get.cc:423 +#, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Nelze najít verzi „%s“ balíku „%s“" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "Požadavek odeslán řešiteli" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Nelze najít balík %s" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "Příprava na obdržení řešení" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s nastaven jako instalovaný ručně.\n" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "Externí řešitel selhal, aniž by zanechal rozumnou chybovou hlášku" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s nastaven jako instalovaný automaticky.\n" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "Spuštění externího řešitele" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" +"Tento příkaz je zastaralý, použijte místo něj „apt-mark auto“ a „apt-mark " +"manual“." -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "přejmenování selhalo, %s (%s -> %s)." +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Vnitřní chyba, řešitel problémů pokazil věci" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Neshoda kontrolních součtů" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Nelze zamknout adresář pro stahování" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Velikosti nesouhlasí" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Musíte zadat aspoň jeden balík, pro který se stáhnou zdrojové texty" -#: apt-pkg/acquire-item.cc:173 -msgid "Invalid file format" -msgstr "Neplatná formát souboru" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "Nelze najít zdrojový balík pro %s" -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:786 #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"V souboru Release nelze najít očekávanou položku „%s“ (chybný sources.list " -"nebo porušený soubor)" - -#: apt-pkg/acquire-item.cc:1589 -#, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "V souboru Release nelze najít kontrolní součet „%s“" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "K následujícím ID klíčů není dostupný veřejný klíč:\n" +"INFO: Balík „%s“ je spravován v systému pro správu verzí „%s“ na:\n" +"%s\n" -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:791 #, c-format msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -"Soubor Release pro %s již expiroval (neplatný od %s). Aktualizace z tohoto " -"repositáře se nepoužijí." +"Pro stažení nejnovějších (možná dosud nevydaných) aktualizací balíku prosím " +"použijte:\n" +"bzr branch %s\n" -#: apt-pkg/acquire-item.cc:1691 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Konfliktní distribuce: %s (očekáváno %s, obdrženo %s)" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Přeskakuje se dříve stažený soubor „%s“\n" -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Při ověřování podpisů se objevila chyba. Repositář není aktualizovaný, tudíž " -"se použijí předchozí indexové soubory. Chyba GPG: %s: %s\n" +msgid "Couldn't determine free space in %s" +msgstr "Nelze určit volné místo v %s" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:882 #, c-format -msgid "GPG error: %s: %s" -msgstr "Chyba GPG: %s: %s" +msgid "You don't have enough free space in %s" +msgstr "Na %s nemáte dostatek volného místa" -#: apt-pkg/acquire-item.cc:1859 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"Nebylo možné nalézt soubor s balíkem %s. To by mohlo znamenat, že tento " -"balík je třeba opravit ručně (kvůli chybějící architektuře)" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Nutno stáhnout %sB/%sB zdrojových archivů.\n" -#: apt-pkg/acquire-item.cc:1925 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "Nelze najít zdroj pro stažení verze „%s“ balíku „%s“" +msgid "Need to get %sB of source archives.\n" +msgstr "Nutno stáhnout %sB zdrojových archivů.\n" -#: apt-pkg/acquire-item.cc:1983 +#: cmdline/apt-get.cc:902 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Indexové soubory balíku jsou narušeny. Chybí pole Filename: u balíku %s." +msgid "Fetch source %s\n" +msgstr "Stažení zdroje %s\n" -#: apt-pkg/vendorlist.cc:85 -#, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Blok výrobce %s neobsahuje otisk klíče" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Stažení některých archivů selhalo." -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, c-format -msgid "List directory %spartial is missing." -msgstr "Adresář seznamů %spartial chybí." +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Stahování dokončeno v režimu pouze stáhnout" -#: apt-pkg/acquire.cc:91 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Archivní adresář %spartial chybí." +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Přeskakuje se rozbalení již rozbaleného zdroje v %s\n" -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Unable to lock directory %s" -msgstr "Nelze uzamknout adresář %s" +msgid "Unpack command '%s' failed.\n" +msgstr "Příkaz pro rozbalení „%s“ selhal.\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Stahuje se soubor %li z %li (zbývá %s)" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Zkontrolujte, zda je nainstalován balík „dpkg-dev“.\n" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Stahuje se soubor %li z %li" +msgid "Build command '%s' failed.\n" +msgstr "Příkaz pro sestavení „%s“ selhal.\n" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Selhalo stažení %s %s\n" +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Synovský proces selhal" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" msgstr "" -"Některé indexové soubory se nepodařilo stáhnout. Jsou ignorovány, nebo jsou " -"použity starší verze." - -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Do sources.list musíte zadat „zdrojové“ URI" +"Musíte zadat alespoň jeden balík, pro který budou kontrolovány závislosti " +"pro sestavení" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -"Hodnota „%s“ není v APT::Default-Release platná, protože toto vydání není " -"dostupné v sources.list" +"O architektuře %s nejsou známy žádné informace. Pro nastavení si přečtěte " +"část APT::Architectures v manuálové stránce apt.conf(5)" -#: apt-pkg/policy.cc:422 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Neplatný záznam v souboru preferencí %s, chybí hlavička Package" +msgid "Unable to get build-dependency information for %s" +msgstr "Nelze získat závislosti pro sestavení %s" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Did not understand pin type %s" -msgstr "Nerozumím vypíchnutí typu %s" - -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Pro vypíchnutí nebyla zadána žádná (nebo nulová) priorita" +msgid "%s has no build depends.\n" +msgstr "%s nemá žádné závislosti pro sestavení.\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1272 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" msgstr "" -"Nelze spustit okamžitou konfiguraci balíku „%s“. Podrobnosti naleznete v man " -"5 apt.conf v části APT::Immediate-Configure. (%d)" +"závislost %s pro %s nemůže být splněna, protože %s není na balících „%s“ " +"dovolena" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:1290 #, c-format -msgid "Could not configure '%s'. " -msgstr "Nelze nastavit „%s“." +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "závislost %s pro %s nemůže být splněna, protože balík %s nebyl nalezen" -#: apt-pkg/packagemanager.cc:583 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -"Tento běh instalace si vyžádá dočasné odstranění klíčového balíku %s kvůli " -"smyčce v Conflicts/Pre-Depends. To je často špatné, ale pokud to skutečně " -"chcete udělat, aktivujte možnost APT::Force-LoopBreak." +"Selhalo splnění závislosti %s pro %s: Instalovaný balík %s je příliš nový" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-get.cc:1352 #, c-format -msgid "Line %u too long in source list %s." -msgstr "Řádek %u v seznamu zdrojů %s je příliš dlouhý." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Odpojuje se CD-ROM…\n" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"závislost %s pro %s nemůže být splněna, protože kandidátská verze balíku %s " +"nesplňuje požadavek na verzi" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1358 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Používá se přípojný bod %s\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Čeká se na disk…\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Připojuje se CD-ROM…\n" - -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Rozpoznává se… " +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"závislost %s pro %s nemůže být splněna, protože balík %s nemá kandidátskou " +"verzi" -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Stored label: %s\n" -msgstr "Uložený název: %s \n" - -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Na disku se hledají indexové soubory…\n" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Selhalo splnění závislosti %s pro %s: %s" -#: apt-pkg/cdrom.cc:734 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Nalezeny indexy balíků (%zu), indexy zdrojů (%zu), indexy popisů (%zu) a " -"podpisy (%zu)\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Závislosti pro sestavení %s nemohly být splněny." -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"Nenalezeny žádné balíky. Možná to není disk s Debianem, nebo je pro jinou " -"architekturu?" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Chyba při zpracování závislostí pro sestavení" -#: apt-pkg/cdrom.cc:771 +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 #, c-format -msgid "Found label '%s'\n" -msgstr "Nalezený název: „%s“\n" +msgid "Changelog for %s (%s)" +msgstr "Seznam změn %s (%s)" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Nejedná se o platné jméno, zkuste to znovu.\n" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Podporované moduly:" -#: apt-pkg/cdrom.cc:817 -#, c-format +#: cmdline/apt-get.cc:1633 msgid "" -"This disc is called: \n" -"'%s'\n" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"Tento disk se nazývá: \n" -"„%s“\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopírují se seznamy balíků…" - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Zapisuje se nový seznam balíků\n" +"Použití: apt-get [volby] příkaz\n" +" apt-get [volby] install|remove balík1 [balík2 …]\n" +" apt-get [volby] source balík1 [balík2 …]\n" +"\n" +"apt-get je jednoduché řádkové rozhraní pro stahování a instalování\n" +"balíků. Nejpoužívanější příkazy jsou update a install.\n" +"\n" +"Příkazy:\n" +" update - Získá seznam nových balíků\n" +" upgrade - Provede aktualizaci\n" +" install - Instaluje nové balíky (balík je libc6, ne libc6.deb)\n" +" remove - Odstraní balíky\n" +" autoremove - Automaticky odstraní nepoužívané balíky\n" +" purge - Odstraní balíky včetně konfiguračních souborů\n" +" source - Stáhne zdrojové archivy\n" +" build-dep - Pro zdrojové balíky nastaví build-dependencies\n" +" dist-upgrade - Aktualizace distribuce, viz apt-get(8)\n" +" dselect-upgrade - Řídí se podle výběru v dselectu\n" +" clean - Smaže stažené archivy\n" +" autoclean - Smaže staré stažené archivy\n" +" check - Ověří, zda se nevyskytují porušené závislosti\n" +" changelog - Stáhne a zobrazí seznam změn daného balíku\n" +" download - Stáhne binární balík to aktuálního adresáře\n" +"\n" +"Volby:\n" +" -h Tato nápověda\n" +" -q Nezobrazí indikátor postupu - vhodné pro záznam\n" +" -qq Nezobrazí nic než chyby\n" +" -d Pouze stáhne - neinstaluje ani nerozbaluje archivy\n" +" -s Pouze simuluje prováděné akce\n" +" -y Na všechny otázky odpovídá automaticky Ano\n" +" -f Zkusí opravit systém s porušenými závislostmi\n" +" -m Zkusí pokračovat, i když se nepodaří najít archivy\n" +" -u Zobrazí také seznam aktualizovaných balíků\n" +" -b Po stažení zdrojového balíku jej i zkompiluje\n" +" -V Zobrazí podrobná čísla verzí\n" +" -c=? Načte daný konfigurační soubor\n" +" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n" +"Více voleb naleznete v manuálových stránkách apt-get(8), sources.list(5)\n" +"a apt.conf(5).\n" +" Tato APT má schopnosti svaté krávy.\n" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Seznamy zdrojů na tomto disku jsou:\n" +#: cmdline/apt-helper.cc:35 +msgid "Must specify at least one pair url/filename" +msgstr "Musíte zadat aspoň jeden pár url/jméno souboru" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "Balík %s je potřeba přeinstalovat, ale nemohu pro něj nalézt archiv." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "Stažení selhalo" -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-helper.cc:66 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Chyba, pkgProblemResolver::Resolve vytváří poruchy, to může být způsobeno " -"podrženými balíky." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Nelze opravit problémy, některé balíky držíte v porouchaném stavu." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Vytváří se strom závislostí" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Kandidátské verze" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Generování závislostí" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Čtu stavové informace" - -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Nelze otevřít stavový soubor %s" - -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Nelze zapsat dočasný stavový soubor %s" +"Použití: apt-helper [volby] příkaz\n" +" apt-helper [volby] download-file uri cílová_cesta\n" +"\n" +"apt-helper je interní pomocník pro apt\n" +"\n" +"Příkazy:\n" +" download-file - stáhne zadané uri do cílové cesty\n" +"\n" +" Tento APT pomocník má schopnosti svatého čehokoliv.\n" -#: apt-pkg/tagfile.cc:140 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Nelze zpracovat soubor %s (1)" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s nemůže být označen, protože není nainstalovaný.\n" -#: apt-pkg/tagfile.cc:237 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Nelze zpracovat soubor %s (2)" +msgid "%s was already set to manually installed.\n" +msgstr "%s již byl nastaven jako instalovaný ručně.\n" -#: apt-pkg/cacheset.cc:489 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Vydání „%s“ pro „%s“ nebylo nalezeno" +msgid "%s was already set to automatically installed.\n" +msgstr "%s již byl nastaven jako instalovaný automaticky.\n" -#: apt-pkg/cacheset.cc:492 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Verze „%s“ pro „%s“ nebyla nalezena" +msgid "%s was already set on hold.\n" +msgstr "%s již byl podržen v aktuální verzi.\n" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Unable to locate package %s" -msgstr "Nelze najít balík %s" +msgid "%s was already not hold.\n" +msgstr "%s již nebyl držen v aktuální verzi.\n" -#: apt-pkg/cacheset.cc:603 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Couldn't find task '%s'" -msgstr "Nelze najít úlohu „%s“" +msgid "Waited for %s but it wasn't there" +msgstr "Čekali jsme na %s, ale nebyl tam" -#: apt-pkg/cacheset.cc:609 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Nelze najít balík vyhovující regulárnímu výrazu „%s“" +msgid "%s set on hold.\n" +msgstr "%s bude podržen v aktuální verzi.\n" -#: apt-pkg/cacheset.cc:615 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Nelze najít balík vyhovující masce „%s“" +msgid "Canceled hold on %s.\n" +msgstr "Podržení balíku %s v aktuální verzi bylo zrušeno.\n" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "Nelze vybrat verze balíku „%s“, protože je čistě virtuální" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "Spuštění dpkg selhalo. Jste root?" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format +#: cmdline/apt-mark.cc:392 msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -"Nelze vybrat nainstalovanou ani kandidátskou verzi balíku „%s“, protože " -"žádné takové verze nemá" - -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "Nelze vybrat nejnovější verzi balíku „%s“, protože je čistě virtuální" - -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "Nelze vybrat kandidátskou verzi balíku %s, protože žádnou nemá" - -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "Nelze vybrat nainstalované verze balíku %s, protože není nainstalován" +"Použití: apt-mark [volby] {auto|manual} balík1 [balík2 …]\n" +"\n" +"apt-mark je jednoduché řádkové rozhraní pro označování balíků jako\n" +"instalovaných ručně nebo automaticky. Také umí tyto značky vypsat.\n" +"\n" +"Příkazy:\n" +" auto - Označí dané balíky jako instalované automaticky\n" +" manual - Označí dané balíky jako instalované ručně\n" +" hold - Označí balík jako podržený v aktuální verzi\n" +" unhold - Zruší podržení balíku v aktuální verzi\n" +" showauto - Vypíše seznam balíků instalovaných automaticky\n" +" showmanual - Vypíše seznam balíků instalovaných ručně\n" +" showhold - Vypíše seznam podržených balíků\n" +"\n" +"Volby:\n" +" -h Tato nápověda.\n" +" -q Nezobrazí indikátor postupu - vhodné pro záznam\n" +" -qq Nezobrazí nic než chyby\n" +" -s Pouze simuluje prováděné akce\n" +" -f Přečte/zapíše ruční/automatické značky z/do daného souboru\n" +" -c=? Načte daný konfigurační soubor\n" +" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n" +"Více informací viz manuálové stránky apt-mark(8) a apt.conf(5)." -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "Nelze zpracovat Release soubor %s" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" +"Použití: apt [volby] příkaz\n" +"\n" +"Řádkové rozhraní pro apt.\n" +"Základní příkazy:\n" +" list - vypíše balíky podle jmen\n" +" search - hledá v popisech balíků\n" +" show - zobrazí podrobnosti balíku\n" +"\n" +" update - aktualizuje seznam dostupných balíků\n" +"\n" +" install - nainstaluje balíky\n" +" remove - odstraní balíky\n" +"\n" +" upgrade - aktualizuje systém instalací/aktualizací balíků\n" +" full-upgrade - aktualizuje systém instalací/aktualizací/odstraněním balíků\n" +"\n" +" edit-sources - upraví soubor se zdroji balíků\n" -#: apt-pkg/indexrecords.cc:86 +#: methods/cdrom.cc:203 #, c-format -msgid "No sections in Release file %s" -msgstr "Release soubor %s neobsahuje žádné sekce" +msgid "Unable to read the cdrom database %s" +msgstr "Nelze číst databázi na cdrom %s" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Release soubor %s neobsahuje Hash záznam" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" +msgstr "" +"Pro přidání CD do APTu použijte apt-cdrom. apt-get update nelze využít pro " +"přidávání nových CD." -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Neplatná položka „Valid-Until“ v Release souboru %s" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Chybné CD" -#: apt-pkg/indexrecords.cc:149 +#: methods/cdrom.cc:249 #, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Neplatná položka „Date“ v Release souboru %s" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Nelze odpojit CD-ROM v %s - možná se stále používá." -#: apt-pkg/sourcelist.cc:127 -#, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Zkomolená část %u v seznamu zdrojů %s (zpracování URI)" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disk nebyl nalezen." -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (nezpracovatelná [volba])" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Soubor nebyl nalezen" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (příliš krátká [volba])" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Selhalo vyhodnocení" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Zkomolený řádek %lu v seznamu zdrojů %s ([%s] není přiřazení)" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Nelze nastavit čas modifikace" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Zkomolený řádek %lu v seznamu zdrojů %s ([%s] nemá klíč)" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Neplatné URI, lokální URI nesmí začínat na //" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "Zkomolený řádek %lu v seznamu zdrojů %s ([%s] klíč %s nemá hodnotu)" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Přihlašování" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (URI)" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Nelze určit jméno druhé strany" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (dist)" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Nelze určit lokální jméno" -#: apt-pkg/sourcelist.cc:211 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (zpracování URI)" +msgid "The server refused the connection and said: %s" +msgstr "Server zamítl naše spojení a řekl: %s" -#: apt-pkg/sourcelist.cc:217 +#: methods/ftp.cc:225 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (Absolutní dist)" +msgid "USER failed, server said: %s" +msgstr "USER selhal, server řekl: %s" -#: apt-pkg/sourcelist.cc:224 +#: methods/ftp.cc:232 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (zpracování dist)" +msgid "PASS failed, server said: %s" +msgstr "PASS selhal, server řekl: %s" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Otevírá se %s" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"Byl zadán proxy server, ale ne přihlašovací skript. Acquire::ftp::ProxyLogin " +"je prázdný." -#: apt-pkg/sourcelist.cc:371 +#: methods/ftp.cc:280 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Zkomolený řádek %u v seznamu zdrojů %s (typ)" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Příkaz „%s“ přihlašovacího skriptu selhal, server řekl: %s" -#: apt-pkg/sourcelist.cc:375 +#: methods/ftp.cc:306 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Typ „%s“ na řádce %u v seznamu zdrojů %s není známý" +msgid "TYPE failed, server said: %s" +msgstr "TYPE selhal, server řekl: %s" -#: apt-pkg/sourcelist.cc:416 -#, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Typ „%s“ v části %u v seznamu zdrojů %s není známý" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Čas spojení vypršel" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Instaluje se %s" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Server uzavřel spojení" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Nastavuje se %s" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Chyba čtení" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Odstraňuje se %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Odpověď přeplnila buffer." -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "Kompletně se odstraňuje %s" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Porušení protokolu" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "Značím si zmizení %s" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Chyba zápisu" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Spouští se poinstalační spouštěč %s" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Nelze vytvořit socket" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Adresář „%s“ chybí" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Nelze připojit datový socket, čas spojení vypršel" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "Nelze otevřít soubor „%s“" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Selhalo" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "Připravuje se %s" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Nelze připojit pasivní socket." -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Rozbaluje se %s" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo nezískal naslouchající socket" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Připravuje se nastavení %s" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Nelze navázat socket" -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "Nainstalován %s" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Nelze naslouchat na socketu" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "Připravuje se odstranění %s" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Nelze určit jméno socketu" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "Odstraněn %s" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Nelze odeslat příkaz PORT" -#: apt-pkg/deb/dpkgpm.cc:1009 +#: methods/ftp.cc:802 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Připravuje se úplné odstranění %s" +msgid "Unknown address family %u (AF_*)" +msgstr "Neznámá rodina adres %u (AF_*)" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: methods/ftp.cc:811 #, c-format -msgid "Completely removed %s" -msgstr "Kompletně odstraněn %s" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "volání ioctl(TIOCGWINSZ) selhalo" +msgid "EPRT failed, server said: %s" +msgstr "EPRT selhal, server řekl: %s" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, c-format -msgid "Can not write log (%s)" -msgstr "Nelze zapsat log (%s)" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Spojení datového socketu vypršelo" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "Je /dev/pts připojeno?" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Nelze přijmout spojení" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "Je standardní výstup terminál?" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problém s kontrolním součtem souboru" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/ftp.cc:890 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Čekali jsme na %s, ale nebyl tam" - -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "Operace byla přerušena dříve, než mohla skončit" - -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" -"Žádné apport hlášení nebylo vytvořeno, protože již byl dosažen MaxReports" - -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "problémy se závislostmi - ponechávám nezkonfigurované" - -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje, že " -"se jedná o chybu způsobenou předchozí chybou." - -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje, že " -"je chyba způsobena zcela zaplněným diskem." - -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje, že " -"je chyba způsobena zcela zaplněnou pamětí." - -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" -"Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje, že " -"je chyba na lokálním systému." - -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" -"Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje " -"V/V chybu dpkg." +msgid "Unable to fetch file, server said '%s'" +msgstr "Nelze stáhnout soubor, server řekl „%s“" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "Nelze uzamknout administrační adresář (%s). Používá jej jiný proces?" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Datový socket vypršel" -#: apt-pkg/deb/debsystem.cc:94 +#: methods/ftp.cc:935 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Nelze uzamknout administrační adresář (%s). Jste root?" +msgid "Data transfer failed, server said '%s'" +msgstr "Přenos dat selhal, server řekl „%s“" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "dpkg byl přerušen, pro nápravu problému musíte ručně spustit „%s“." +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Dotaz" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Není uzamčen" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Nelze vyvolat " -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 +#: methods/connect.cc:76 #, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lid %lih %limin %lis" +msgid "Connecting to %s (%s)" +msgstr "Připojování k %s (%s)" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: methods/connect.cc:87 #, c-format -msgid "%lih %limin %lis" -msgstr "%lih %limin %lis" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: methods/connect.cc:94 #, c-format -msgid "%limin %lis" -msgstr "%limin %lis" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Nelze vytvořit socket pro %s (f=%u t=%u p=%u)" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: methods/connect.cc:100 #, c-format -msgid "%lis" -msgstr "%lis" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Nelze navázat spojení na %s:%s (%s)." -#: apt-pkg/contrib/strutl.cc:1243 +#: methods/connect.cc:108 #, c-format -msgid "Selection %s not found" -msgstr "Výběr %s nenalezen" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Nelze se připojit k %s:%s (%s), čas spojení vypršel" -#: apt-pkg/contrib/fileutl.cc:190 +#: methods/connect.cc:126 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Nepoužívá se zamykání pro zámkový soubor %s, který je pouze pro čtení" +msgid "Could not connect to %s:%s (%s)." +msgstr "Nelze se připojit k %s:%s (%s)." -#: apt-pkg/contrib/fileutl.cc:195 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Could not open lock file %s" -msgstr "Nešlo otevřít zámkový soubor %s" +msgid "Connecting to %s" +msgstr "Připojování k %s" -#: apt-pkg/contrib/fileutl.cc:218 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Nepoužívá se zamykání pro zámkový soubor %s připojený přes nfs" +msgid "Could not resolve '%s'" +msgstr "Nelze přeložit „%s“" -#: apt-pkg/contrib/fileutl.cc:223 +#: methods/connect.cc:205 #, c-format -msgid "Could not get lock %s" -msgstr "Nelze získat zámek %s" +msgid "Temporary failure resolving '%s'" +msgstr "Dočasné selhání při zjišťování „%s“" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: methods/connect.cc:209 #, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "Seznam souborů nelze vytvořit, jelikož „%s“ není adresář" +msgid "System error resolving '%s:%s'" +msgstr "Systémová chyba při překladu „%s:%s“" -#: apt-pkg/contrib/fileutl.cc:394 +#: methods/connect.cc:211 #, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "Ignoruji „%s“ v adresáři „%s“, jelikož to není obyčejný soubor" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Něco hodně ošklivého se přihodilo při překladu „%s:%s“ (%i - %s)" -#: apt-pkg/contrib/fileutl.cc:412 +#: methods/connect.cc:258 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "Ignoruji soubor „%s“ v adresáři „%s“, jelikož nemá příponu" +msgid "Unable to connect to %s:%s:" +msgstr "Nelze se připojit k %s:%s:" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: methods/gpgv.cc:168 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" -msgstr "Ignoruji soubor „%s“ v adresáři „%s“, jelikož má neplatnou příponu" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "Vnitřní chyba: Dobrý podpis, ale nemohu zjistit otisk klíče?!" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Podproces %s obdržel chybu segmentace." +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Byl zaznamenán nejméně jeden neplatný podpis. " -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "Podproces %s obdržel signál %u." +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "Nelze spustit „gpgv“ pro ověření podpisu (je gpgv nainstalováno?)" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Podproces %s vrátil chybový kód (%u)" +msgid "" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" +msgstr "" +"Podepsaný soubor není platný, obdrženo „%s“ (vyžaduje přístup na síť " +"ověření?)" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Podproces %s neočekávaně skončil" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Neznámá chyba při spouštění gpgv" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Chyba zápisu" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Následující podpisy jsou neplatné:\n" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problém při zavírání gzip souboru %s" +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "" +"Následující podpisy nemohly být ověřeny, protože není dostupný veřejný " +"klíč:\n" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Nelze otevřít soubor %s" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Prázdné soubory nejsou platnými archivy" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "Nelze otevřít popisovač souboru %d" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Chyba zápisu do souboru" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Nelze vytvořit podproces IPC" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Chyba čtení ze serveru. Druhá strana zavřela spojení" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Nezdařilo se spustit kompresor " +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Chyba čtení ze serveru" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Chyba čtení" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Chyba zápisu do souboru" -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" -msgstr "čtení, stále se má přečíst %llu, ale už nic nezbývá" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Výběr selhal" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "zápis, stále se má zapsat %llu, ale nejde to" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Čas spojení vypršel" -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Problém při zavírání souboru %s" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Chyba zápisu do výstupního souboru" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problém při přejmenování souboru %s na %s" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Čeká se na hlavičky" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "Problém při odstraňování souboru %s" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Chybná hlavička" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problém při synchronizování souboru" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Http server poslal neplatnou hlavičku odpovědi" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s… Chyba!" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "Http server poslal neplatnou hlavičku Content-Length" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s… Hotovo" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "Http server poslal neplatnou hlavičku Content-Range" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "…" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Tento HTTP server má porouchanou podporu rozsahů" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, c-format -msgid "%c%s... %u%%" -msgstr "%c%s… %u%%" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Neznámý formát data" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Nelze provést mmap prázdného souboru" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Špatné datové záhlaví" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Nelze duplikovat popisovač souboru %i" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Spojení selhalo" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Nešlo mmapovat %llu bajtů" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Vnitřní chyba" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Nelze zavřít mmap" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "Řadí se" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Nelze synchronizovat mmap" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Vnitřní chyba, InstallPackages byl zavolán s porušenými balíky!" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Nešlo mmapovat %lu bajtů" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Balík je potřeba odstranit ale funkce Odstranit je vypnuta." -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Nelze zmenšit soubor" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Vnitřní chyba, třídění nedoběhlo do konce" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" -"Dynamickému MMapu došlo místo. Zvyšte prosím hodnotu APT::Cache-Start. " -"Současná hodnota: %lu. (man 5 apt.conf)" +"Jak podivné… velikosti nesouhlasí, ohlaste to na apt@packages.debian.org" -#: apt-pkg/contrib/mmap.cc:446 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "Nelze zvýšit velikost MMapu, protože limit %lu bajtů již byl dosažen." - -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" -"Nelze zvýšit velikost MMapu, protože automatické zvětšování bylo uživatelem " -"zakázáno." +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Nutno stáhnout %sB/%sB archivů.\n" -#: apt-pkg/contrib/cdromutl.cc:65 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "Nelze vyhodnotit přípojný bod %s" - -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Nezdařilo se vyhodnotit cdrom" +msgid "Need to get %sB of archives.\n" +msgstr "Nutno stáhnout %sB archivů.\n" -#: apt-pkg/contrib/configuration.cc:519 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Nerozpoznaná zkratka typu: „%c“" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Po této operaci bude na disku použito dalších %sB.\n" -#: apt-pkg/contrib/configuration.cc:633 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "Opening configuration file %s" -msgstr "Otevírá se konfigurační soubor %s" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Po této operaci bude na disku uvolněno %sB.\n" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-private/private-install.cc:200 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Syntaktická chyba %s:%u: Blok nezačíná jménem." +msgid "You don't have enough free space in %s." +msgstr "V %s nemáte dostatek volného místa." -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Syntaktická chyba %s:%u: Zkomolená značka" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Vyskytly se problémy a -y bylo použito bez --force-yes" -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Syntaktická chyba %s:%u: Za hodnotou následuje zbytečné smetí" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Udáno „pouze triviální“, ovšem toto není triviální operace." -#: apt-pkg/contrib/configuration.cc:877 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Ano, udělej to tak, jak říkám!" + +#: apt-private/private-install.cc:222 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" -"Syntaktická chyba %s:%u: Direktivy je možné provádět pouze na nejvyšší úrovni" +"Chystáte se vykonat něco potenciálně škodlivého.\n" +"Pro pokračování opište frázi „%s“\n" +" ?] " -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Syntaktická chyba %s:%u: Příliš mnoho vnořených propojení (include)" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Přerušeno." -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Syntaktická chyba %s:%u: Zahrnuto odtud" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Chcete pokračovat?" -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Syntaktická chyba %s:%u: Nepodporovaná direktiva „%s“" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Některé soubory nemohly být staženy" -#: apt-pkg/contrib/configuration.cc:900 -#, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -"Syntaktická chyba %s:%u: Direktiva clear vyžaduje jako argument strom " -"možností" - -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Syntaktická chyba %s:%u: Na konci souboru je zbytečné smetí" +"Nelze stáhnout některé archivy. Možná spusťte apt-get update nebo zkuste --" +"fix-missing?" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, c-format -msgid "No keyring installed in %s." -msgstr "V %s není nainstalována žádná klíčenka." +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing a výměna média nejsou momentálně podporovány" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Parametr příkazové řádky „%c“ [z %s] je neznámý" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Nelze opravit chybějící balíky." -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "Nerozumím parametru %s příkazové řádky" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Instalace se přerušuje." -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "Parametr příkazové řádky %s není pravdivostní hodnota" +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"Následující balík z tohoto systému zmizel, protože\n" +"všechny jeho soubory byly přepsány jinými balíky:" +msgstr[1] "" +"Následující balíky z tohoto systému zmizely, protože\n" +"všechny jejich soubory byly přepsány jinými balíky:" +msgstr[2] "" +"Následující balíky z tohoto systému zmizely, protože\n" +"všechny jejich soubory byly přepsány jinými balíky:" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "Volba %s vyžaduje argument." +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Poznámka: Toto má svůj důvod a děje se automaticky v dpkg." -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Parametr %s: Zadání konfigurační položky musí obsahovat =<hodn>." +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Neměli bychom mazat věci, nemůžu spustit AutoRemover" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Volba %s vyžaduje jako argument celé číslo (integer), ne „%s“" +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" +"Hmm, zdá se, že AutoRemover zničil něco, co neměl.\n" +"Nahlaste prosím chybu v apt." -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Volba „%s“ je příliš dlouhá" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Následující informace vám mohou pomoci vyřešit tuto situaci:" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Nechápu význam %s, zkuste true nebo false." +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Vnitřní chyba, AutoRemover pokazil věci" -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "Neplatná operace %s" +#: apt-private/private-install.cc:513 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "Následující balík byl nainstalován automaticky a již není potřeba:" +msgstr[1] "" +"Následující balíky byly nainstalovány automaticky a již nejsou potřeba:" +msgstr[2] "" +"Následující balíky byly nainstalovány automaticky a již nejsou potřeba:" -#: cmdline/apt-cache.cc:149 +#: apt-private/private-install.cc:517 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Balík %s verze %s má nesplněné závislosti:\n" +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "%lu balík byl nainstalován automaticky a již není potřeba.\n" +msgstr[1] "%lu balíky byly nainstalovány automaticky a již nejsou potřeba.\n" +msgstr[2] "%lu balíků bylo nainstalováno automaticky a již nejsou potřeba.\n" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Celkem názvů balíků: " +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Pro jeho odstranění použijte „apt-get autoremove“." +msgstr[1] "Pro jejich odstranění použijte „apt-get autoremove“." +msgstr[2] "Pro jejich odstranění použijte „apt-get autoremove“." -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Celkem struktur balíků: " +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Pro opravení následujících můžete spustit „apt-get -f install“:" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Normálních balíků: " +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"Nesplněné závislosti. Zkuste spustit „apt-get -f install“ bez balíků (nebo " +"navrhněte řešení)." -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Čistě virtuálních balíků: " +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"Některé balíky nemohly být instalovány. To může znamenat, že požadujete\n" +"nemožnou situaci, nebo, pokud používáte nestabilní distribuci, že\n" +"vyžadované balíky ještě nebyly vytvořeny nebo přesunuty z Příchozí fronty." -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Jednoduchých virtuálních balíků: " +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Poškozené balíky" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Smíšených virtuálních balíků: " +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Následující extra balíky budou instalovány:" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Chybějících: " +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Navrhované balíky:" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Celkem různých verzí: " +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Doporučované balíky:" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Celkem různých popisů: " +#: apt-private/private-install.cc:825 +#, c-format +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "%s bude přeskočen, protože je již nainstalován.\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Celkem závislostí: " +#: apt-private/private-install.cc:829 +#, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"%s bude přeskočen, protože není nainstalován a vyžadovány jsou pouze " +"aktualizace.\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Celkem vztahů ver/soubor: " +#: apt-private/private-install.cc:841 +#, c-format +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Přeinstalace %s není možná, protože nelze stáhnout.\n" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Celkem vztahů popis/soubor: " +#: apt-private/private-install.cc:846 +#, c-format +msgid "%s is already the newest version.\n" +msgstr "%s je již nejnovější verze.\n" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Celkem poskytnutých mapování: " +#: apt-private/private-install.cc:894 +#, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Vybraná verze „%s“ (%s) pro „%s“\n" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Celkem globovaných řetězců: " +#: apt-private/private-install.cc:899 +#, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Vybraná verze „%s“ (%s) pro „%s“ kvůli „%s“\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Celkem místa závislých verzí: " +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "" +"Balík „%s“ není nainstalován, nelze tedy odstranit. Mysleli jste „%s“?\n" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Celkem jalového místa: " +#: apt-private/private-install.cc:947 +#, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Balík „%s“ není nainstalován, nelze tedy odstranit\n" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Celkem přiřazeného místa: " +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "Vypisuje se" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 +#: apt-private/private-list.cc:164 #, c-format -msgid "Package file %s is out of sync." -msgstr "Soubor balíku %s je špatně synchronizovaný." +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "Existuje %i další verze. Zobrazíte ji přepínačem „-a“." +msgstr[1] "Existují %i další verze. Zobrazíte je přepínačem „-a“." +msgstr[2] "Existuje %i dalších verzí. Zobrazíte je přepínačem „-a“." -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Nebyly nalezeny žádné balíky" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Opravují se závislosti…" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Musíte zadat alespoň jeden vyhledávací vzor" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " selhalo." -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "Tento příkaz je zastaralý, použijte místo něj „apt-mark showauto“." +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Nelze opravit závislosti" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Soubory balíku:" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Nelze minimalizovat sadu pro aktualizaci" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Cache není synchronizovaná, nemohu se odkázat na soubor balíku" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Hotovo" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Vypíchnuté balíky:" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Pro opravení můžete spustit „apt-get -f install“." -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(nenalezeno)" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Nesplněné závislosti. Zkuste použít -f." -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Instalovaná verze: " +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "neznámá" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidát: " +#: apt-private/private-output.cc:234 +#, c-format +msgid "[installed,upgradable to: %s]" +msgstr "[instalovaný,aktualizovatelný na: %s]" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(žádná)" +#: apt-private/private-output.cc:238 +msgid "[installed,local]" +msgstr "[instalovaný,lokální]" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Vypíchnutý balík: " +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "[instalovaný,automaticky-odstranitelný]" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabulka verzí:" +#: apt-private/private-output.cc:243 +msgid "[installed,automatic]" +msgstr "[instalovaný,automaticky]" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s pro %s zkompilován na %s %s\n" +#: apt-private/private-output.cc:245 +msgid "[installed]" +msgstr "[instalovaný]" -#: cmdline/apt-cache.cc:1749 -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" -msgstr "" -"Použití: apt-cache [volby] příkaz\n" -" apt-cache [volby] showpkg balík1 [balík2 …]\n" -" apt-cache [volby] showsrc balík1 [balík2 …]\n" -"\n" -"apt-cache je nízkoúrovňový nástroj pro získávání informací o balících.\n" -"\n" -"Příkazy:\n" -" gencaches - Vytvoří vyrovnávací paměť balíků i zdrojů\n" -" showpkg - Zobrazí obecné informace o balíku\n" -" showsrc - Zobrazí zdrojové záznamy\n" -" stats - Zobrazí základní statistiky\n" -" dump - Zobrazí celý soubor ve zhuštěné podobě\n" -" dumpavail - Vytiskne na výstup dostupné balíky\n" -" unmet - Zobrazí nesplněné závislosti\n" -" search - V seznamu balíků hledá regulární výraz\n" -" show - Zobrazí informace o balíku\n" -" depends - Zobrazí závislosti balíku\n" -" rdepends - Zobrazí reverzní závislosti balíku\n" -" pkgnames - Vypíše jména všech balíků v systému\n" -" dotty - Vygeneruje grafy ve formátu pro GraphViz\n" -" xvcg - Vygeneruje grafy ve formátu pro xvcg\n" -" policy - Zobrazí nastavenou politiku\n" -"\n" -"Volby:\n" -" -h Tato nápověda.\n" -" -p=? Vyrovnávací paměť balíků.\n" -" -s=? Vyrovnávací paměť zdrojů.\n" -" -q Nezobrazí indikátor postupu.\n" -" -i U příkazu unmet zobrazí pouze důležité závislosti.\n" -" -c=? Načte daný konfigurační soubor\n" -" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n" -"Více informací viz manuálové stránky apt-cache(8) a apt.conf(5).\n" +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "[aktualizovatelný z: %s]" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Zadejte prosím název tohoto média, např. „Debian 5.0.3 Disk 1“" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "[zbytkové-konfigurační-coubory]" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Vložte prosím médium do mechaniky a stiskněte enter" +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "ale %s je nainstalován" -#: cmdline/apt-cdrom.cc:139 +#: apt-private/private-output.cc:437 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Selhalo připojení „%s“ na „%s“" +msgid "but %s is to be installed" +msgstr "ale %s se bude instalovat" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" -"Na výchozím přípojném bodu nebylo rozpoznáno/nalezeno žádné CD-ROM.\n" -"Můžete zkusit zadat přípojný bod CD-ROM volbou --cdrom.\n" -"Více o rozpoznávání CD-ROM a přípojných bodech naleznete v „man apt-cdrom“." +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "ale nedá se nainstalovat" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Tento proces opakujte pro všechna zbývající média." - -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumenty nejsou v párech" - -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -msgstr "" -"Použití: apt-config [volby] příkaz\n" -"\n" -"apt-config je jednoduchý nástroj pro čtení konfiguračního souboru APT\n" -"\n" -"Příkazy:\n" -" shell - Shellový režim\n" -" dump - Zobrazí nastavení\n" -"\n" -"Volby:\n" -" -h Tato nápověda.\n" -" -c=? Načte tento konfigurační soubor\n" -" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n" - -#: cmdline/apt-get.cc:245 -#, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Nelze najít balík pro architekturu „%s“" - -#: cmdline/apt-get.cc:327 -#, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Nelze najít balík „%s“ s verzí „%s“" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "ale je to virtuální balík" -#: cmdline/apt-get.cc:330 -#, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Nelze najít balík „%s“ z vydání „%s“" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "ale není nainstalovaný" -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Vybírám „%s“ jako zdrojový balík místo „%s“\n" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "ale nebude se instalovat" -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Nelze najít verzi „%s“ balíku „%s“" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " nebo" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "Nelze najít balík %s" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Následující balíky mají nesplněné závislosti:" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s nastaven jako instalovaný ručně.\n" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Následující NOVÉ balíky budou nainstalovány:" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s nastaven jako instalovaný automaticky.\n" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Následující balíky budou ODSTRANĚNY:" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"Tento příkaz je zastaralý, použijte místo něj „apt-mark auto“ a „apt-mark " -"manual“." +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Následující balíky jsou podrženy v aktuální verzi:" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Vnitřní chyba, řešitel problémů pokazil věci" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Následující balíky budou aktualizovány:" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Nelze zamknout adresář pro stahování" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Následující balíky budou DEGRADOVÁNY:" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Musíte zadat aspoň jeden balík, pro který se stáhnou zdrojové texty" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Následující podržené balíky budou změněny:" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/private-output.cc:668 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Nelze najít zdrojový balík pro %s" +msgid "%s (due to %s) " +msgstr "%s (kvůli %s) " -#: cmdline/apt-get.cc:786 -#, c-format +#: apt-private/private-output.cc:676 msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"INFO: Balík „%s“ je spravován v systému pro správu verzí „%s“ na:\n" -"%s\n" +"VAROVÁNÍ: Následující nezbytné balíky budou odstraněny.\n" +"Pokud přesně nevíte, co děláte, NEDĚLEJTE to!" -#: cmdline/apt-get.cc:791 +#: apt-private/private-output.cc:707 #, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" -msgstr "" -"Pro stažení nejnovějších (možná dosud nevydaných) aktualizací balíku prosím " -"použijte:\n" -"bzr branch %s\n" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu aktualizováno, %lu nově instalováno, " -#: cmdline/apt-get.cc:843 +#: apt-private/private-output.cc:711 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Přeskakuje se dříve stažený soubor „%s“\n" +msgid "%lu reinstalled, " +msgstr "%lu přeinstalováno, " -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-private/private-output.cc:713 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Nelze určit volné místo v %s" +msgid "%lu downgraded, " +msgstr "%lu degradováno, " -#: cmdline/apt-get.cc:882 +#: apt-private/private-output.cc:715 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Na %s nemáte dostatek volného místa" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu k odstranění a %lu neaktualizováno.\n" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: apt-private/private-output.cc:719 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Nutno stáhnout %sB/%sB zdrojových archivů.\n" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu instalováno nebo odstraněno pouze částečně.\n" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Nutno stáhnout %sB zdrojových archivů.\n" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[Y/n]" -#: cmdline/apt-get.cc:902 -#, c-format -msgid "Fetch source %s\n" -msgstr "Stažení zdroje %s\n" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[y/N]" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Stažení některých archivů selhalo." +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "Y" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Stahování dokončeno v režimu pouze stáhnout" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" -#: cmdline/apt-get.cc:950 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Přeskakuje se rozbalení již rozbaleného zdroje v %s\n" +msgid "Regex compilation error - %s" +msgstr "Chyba při kompilaci regulárního výrazu - %s" -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Příkaz pro rozbalení „%s“ selhal.\n" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Příkaz update neakceptuje žádné argumenty" -#: cmdline/apt-get.cc:963 +#: apt-private/private-update.cc:90 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Zkontrolujte, zda je nainstalován balík „dpkg-dev“.\n" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +"%i balík může být aktualizován. Zobrazíte jej „apt list --upgradable“.\n" +msgstr[1] "" +"%i balíky mohou být aktualizovány. Zobrazíte je „apt list --upgradable“.\n" +msgstr[2] "" +"%i balíků může být aktualizováno. Zobrazíte je „apt list --upgradable“.\n" + +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "Všechny balíky jsou aktuální." -#: cmdline/apt-get.cc:991 +#: apt-private/private-show.cc:156 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Příkaz pro sestavení „%s“ selhal.\n" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "Existuje %i další záznam. Zobrazíte jej přepínačem „-a“." +msgstr[1] "Existují %i další záznamy. Zobrazíte je přepínačem „-a“." +msgstr[2] "Existuje %i dalších záznamů. Zobrazíte je přepínačem „-a“." -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Synovský proces selhal" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "není skutečný balík (virtuální)" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "" -"Musíte zadat alespoň jeden balík, pro který budou kontrolovány závislosti " -"pro sestavení" - -#: cmdline/apt-get.cc:1054 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -"O architektuře %s nejsou známy žádné informace. Pro nastavení si přečtěte " -"část APT::Architectures v manuálové stránce apt.conf(5)" - -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Nelze získat závislosti pro sestavení %s" - -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s nemá žádné závislosti pro sestavení.\n" +"INFO: Toto je pouze simulace!\n" +" apt-get vyžaduje pro skutečný běh rootovská oprávnění.\n" +" Mějte také na paměti, že je vypnuto zamykání, tudíž\n" +" tyto výsledky nemusí mít s realitou nic společného!" -#: cmdline/apt-get.cc:1271 -#, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"závislost %s pro %s nemůže být splněna, protože %s není na balících „%s“ " -"dovolena" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "VAROVÁNÍ: Následující balíky nemohou být autentizovány!" -#: cmdline/apt-get.cc:1289 -#, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "závislost %s pro %s nemůže být splněna, protože balík %s nebyl nalezen" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Autentizační varování potlačeno.\n" -#: cmdline/apt-get.cc:1312 -#, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"Selhalo splnění závislosti %s pro %s: Instalovaný balík %s je příliš nový" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Některé balíky nemohly být autentizovány" -#: cmdline/apt-get.cc:1351 -#, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"závislost %s pro %s nemůže být splněna, protože kandidátská verze balíku %s " -"nesplňuje požadavek na verzi" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Instalovat tyto balíky bez ověření?" -#: cmdline/apt-get.cc:1357 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "" -"závislost %s pro %s nemůže být splněna, protože balík %s nemá kandidátskou " -"verzi" +msgid "Failed to fetch %s %s\n" +msgstr "Selhalo stažení %s %s\n" -#: cmdline/apt-get.cc:1380 +#: apt-private/private-sources.cc:58 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Selhalo splnění závislosti %s pro %s: %s" +msgid "Failed to parse %s. Edit again? " +msgstr "Nepodařilo se zpracovat %s. Zkusit znovu upravit?" -#: cmdline/apt-get.cc:1395 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Závislosti pro sestavení %s nemohly být splněny." +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "Soubor „%s“ se změnil, spusťte prosím „apt-get update“." -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Chyba při zpracování závislostí pro sestavení" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "Fulltextové hledání" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, c-format -msgid "Changelog for %s (%s)" -msgstr "Seznam změn %s (%s)" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Propočítává se aktualizace… " -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Podporované moduly:" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Hotovo" -#: cmdline/apt-get.cc:1632 -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -msgstr "" -"Použití: apt-get [volby] příkaz\n" -" apt-get [volby] install|remove balík1 [balík2 …]\n" -" apt-get [volby] source balík1 [balík2 …]\n" -"\n" -"apt-get je jednoduché řádkové rozhraní pro stahování a instalování\n" -"balíků. Nejpoužívanější příkazy jsou update a install.\n" -"\n" -"Příkazy:\n" -" update - Získá seznam nových balíků\n" -" upgrade - Provede aktualizaci\n" -" install - Instaluje nové balíky (balík je libc6, ne libc6.deb)\n" -" remove - Odstraní balíky\n" -" autoremove - Automaticky odstraní nepoužívané balíky\n" -" purge - Odstraní balíky včetně konfiguračních souborů\n" -" source - Stáhne zdrojové archivy\n" -" build-dep - Pro zdrojové balíky nastaví build-dependencies\n" -" dist-upgrade - Aktualizace distribuce, viz apt-get(8)\n" -" dselect-upgrade - Řídí se podle výběru v dselectu\n" -" clean - Smaže stažené archivy\n" -" autoclean - Smaže staré stažené archivy\n" -" check - Ověří, zda se nevyskytují porušené závislosti\n" -" changelog - Stáhne a zobrazí seznam změn daného balíku\n" -" download - Stáhne binární balík to aktuálního adresáře\n" -"\n" -"Volby:\n" -" -h Tato nápověda\n" -" -q Nezobrazí indikátor postupu - vhodné pro záznam\n" -" -qq Nezobrazí nic než chyby\n" -" -d Pouze stáhne - neinstaluje ani nerozbaluje archivy\n" -" -s Pouze simuluje prováděné akce\n" -" -y Na všechny otázky odpovídá automaticky Ano\n" -" -f Zkusí opravit systém s porušenými závislostmi\n" -" -m Zkusí pokračovat, i když se nepodaří najít archivy\n" -" -u Zobrazí také seznam aktualizovaných balíků\n" -" -b Po stažení zdrojového balíku jej i zkompiluje\n" -" -V Zobrazí podrobná čísla verzí\n" -" -c=? Načte daný konfigurační soubor\n" -" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n" -"Více voleb naleznete v manuálových stránkách apt-get(8), sources.list(5)\n" -"a apt.conf(5).\n" -" Tato APT má schopnosti svaté krávy.\n" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Cíl " -#: cmdline/apt-helper.cc:35 -msgid "Must specify at least one pair url/filename" -msgstr "Musíte zadat aspoň jeden pár url/jméno souboru" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Mám:" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "Stažení selhalo" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" -"Použití: apt-helper [volby] příkaz\n" -" apt-helper [volby] download-file uri cílová_cesta\n" -"\n" -"apt-helper je interní pomocník pro apt\n" -"\n" -"Příkazy:\n" -" download-file - stáhne zadané uri do cílové cesty\n" -"\n" -" Tento APT pomocník má schopnosti svatého čehokoliv.\n" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Err " -#: cmdline/apt-mark.cc:68 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s nemůže být označen, protože není nainstalovaný.\n" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Staženo %sB za %s (%sB/s)\n" -#: cmdline/apt-mark.cc:74 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s již byl nastaven jako instalovaný ručně.\n" +msgid " [Working]" +msgstr " [Pracuji]" -#: cmdline/apt-mark.cc:76 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s již byl nastaven jako instalovaný automaticky.\n" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Výměna média: Vložte disk nazvaný\n" +" „%s“\n" +"do mechaniky „%s“ a stiskněte enter\n" -#: cmdline/apt-mark.cc:241 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s již byl podržen v aktuální verzi.\n" +msgid "Unable to read %s" +msgstr "Nelze číst %s" -#: cmdline/apt-mark.cc:243 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s již nebyl držen v aktuální verzi.\n" +msgid "Unable to change to %s" +msgstr "Nelze přejít do %s" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "%s set on hold.\n" -msgstr "%s bude podržen v aktuální verzi.\n" +msgid "No mirror file '%s' found " +msgstr "Soubor se zrcadly „%s“ nebyl nalezen " -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Podržení balíku %s v aktuální verzi bylo zrušeno.\n" +msgid "Can not read mirror file '%s'" +msgstr "Nelze číst soubor se zrcadly „%s“" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "Spuštění dpkg selhalo. Jste root?" +#: methods/mirror.cc:315 +#, c-format +msgid "No entry found in mirror file '%s'" +msgstr "V souboru se zrcadly „%s“ nebyl nalezen žádný záznam" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" -"Použití: apt-mark [volby] {auto|manual} balík1 [balík2 …]\n" -"\n" -"apt-mark je jednoduché řádkové rozhraní pro označování balíků jako\n" -"instalovaných ručně nebo automaticky. Také umí tyto značky vypsat.\n" -"\n" -"Příkazy:\n" -" auto - Označí dané balíky jako instalované automaticky\n" -" manual - Označí dané balíky jako instalované ručně\n" -" hold - Označí balík jako podržený v aktuální verzi\n" -" unhold - Zruší podržení balíku v aktuální verzi\n" -" showauto - Vypíše seznam balíků instalovaných automaticky\n" -" showmanual - Vypíše seznam balíků instalovaných ručně\n" -" showhold - Vypíše seznam podržených balíků\n" -"\n" -"Volby:\n" -" -h Tato nápověda.\n" -" -q Nezobrazí indikátor postupu - vhodné pro záznam\n" -" -qq Nezobrazí nic než chyby\n" -" -s Pouze simuluje prováděné akce\n" -" -f Přečte/zapíše ruční/automatické značky z/do daného souboru\n" -" -c=? Načte daný konfigurační soubor\n" -" -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n" -"Více informací viz manuálové stránky apt-mark(8) a apt.conf(5)." +#: methods/mirror.cc:445 +#, c-format +msgid "[Mirror: %s]" +msgstr "[Zrcadlo: %s]" -#: cmdline/apt.cc:47 +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Selhalo vytvoření meziprocesové roury k podprocesu" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Spojení bylo předčasně ukončeno" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Chybné standardní nastavení!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Pro pokračování stiskněte enter." + +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Chcete smazat všechny dříve stažené .deb soubory?" + +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Během rozbalování se vyskytly chyby. Balíky, které se nainstalovaly" + +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "budou zkonfigurovány. To může způsobit duplicitní chybové hlášky" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "o nesplněných závislostech. To je v pořádku, důležité jsou pouze" + +#: dselect/install:105 msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" -"Použití: apt [volby] příkaz\n" -"\n" -"Řádkové rozhraní pro apt.\n" -"Základní příkazy:\n" -" list - vypíše balíky podle jmen\n" -" search - hledá v popisech balíků\n" -" show - zobrazí podrobnosti balíku\n" -"\n" -" update - aktualizuje seznam dostupných balíků\n" -"\n" -" install - nainstaluje balíky\n" -" remove - odstraní balíky\n" -"\n" -" upgrade - aktualizuje systém instalací/aktualizací balíků\n" -" full-upgrade - aktualizuje systém instalací/aktualizací/odstraněním balíků\n" -"\n" -" edit-sources - upraví soubor se zdroji balíků\n" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "chyby nad touto hláškou. Opravte je a poté znovu spusťte [I]nstalovat" + +#: dselect/update:30 +msgid "Merging available information" +msgstr "Slučují se dostupné informace" + +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "Pokus o uvolnění uzlu (DropNode) na stále propojeném uzlu" + +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Nelze lokalizovat hashovací prvek!" + +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Nelze alokovat diverzi" + +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Vnitřní chyba při AddDiversion" + +#: apt-inst/filelist.cc:477 +#, c-format +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Pokus o přepsání diverze, %s -> %s a %s/%s" + +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "Dvojí přidání diverze %s -> %s" + +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "Duplicitní konfigurační soubor %s/%s" + +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" +msgstr "Cesta %s je příliš dlouhá" + +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" +msgstr "%s se rozbaluje vícekrát" + +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "Adresář %s je odkloněn" + +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Balík se pokouší zapisovat do diverzního cíle %s/%s" + +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Diverzní cesta je příliš dlouhá" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 +#, c-format +msgid "Failed to stat %s" +msgstr "Nelze vyhodnotit %s" + +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Selhalo přejmenování %s na %s" + +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "Adresář %s bude nahrazen neadresářem" + +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Nelze nalézt uzel v jeho hashovacím kbelíku" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Cesta je příliš dlouhá" + +#: apt-inst/extract.cc:421 +#, c-format +msgid "Overwrite package match with no version for %s" +msgstr "Přepsat vyhovující balík bez udání verze pro %s" + +#: apt-inst/extract.cc:438 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Soubor %s/%s přepisuje ten z balíku %s" + +#: apt-inst/extract.cc:498 +#, c-format +msgid "Unable to stat %s" +msgstr "Nelze vyhodnotit %s" + +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, c-format +msgid "Failed to write file %s" +msgstr "Selhal zápis souboru %s" + +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "Selhalo zavření souboru %s" + +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Toto není platný DEB archiv, chybí část „%s“" + +#: apt-inst/deb/debfile.cc:132 +#, c-format +msgid "Internal error, could not locate member %s" +msgstr "Vnitřní chyba, nemohu najít část %s" + +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Nezpracovatelný kontrolní soubor" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Neplatný podpis archivu" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Chyba při čtení záhlaví prvku archivu" + +#: apt-inst/contrib/arfile.cc:96 +#, c-format +msgid "Invalid archive member header %s" +msgstr "Neplatné záhlaví prvku archivu %s" + +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Neplatné záhlaví prvku archivu" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Archiv je příliš krátký" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Chyba při čtení hlaviček archivu" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Selhalo vytvoření roury" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Selhalo spuštění gzipu " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Porušený archiv" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Kontrolní součet taru selhal, archiv je poškozený" + +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Neznámá hlavička TARu typ %u, člen %s" + +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "Postup: [%3i%%]" + +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Spouští se dpkg" + +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Balíčkovací systém „%s“ není podporován" + +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Nebylo možno určit vhodný typ balíčkovacího systému" + +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "Zapsáno %i záznamů.\n" + +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "Zapsáno %i záznamů s chybějícími soubory (%i).\n" -#: methods/cdrom.cc:203 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Nelze číst databázi na cdrom %s" - -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"Pro přidání CD do APTu použijte apt-cdrom. apt-get update nelze využít pro " -"přidávání nových CD." +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Zapsáno %i záznamů s nesouhlasícími soubory (%i).\n" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Chybné CD" +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "Zapsáno %i záznamů s chybějícími (%i) a nesouhlasícími (%i) soubory.\n" -#: methods/cdrom.cc:249 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Nelze odpojit CD-ROM v %s - možná se stále používá." +msgid "Can't find authentication record for: %s" +msgstr "Nelze najít autentizační záznam pro: %s" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disk nebyl nalezen." +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "Neshoda kontrolních součtů pro: %s" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Soubor nebyl nalezen" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"Seznamy balíků nebo stavový soubor nemohly být zpracovány nebo otevřeny." -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Selhalo vyhodnocení" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Pro nápravu těchto problémů můžete zkusit spustit apt-get update" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Nelze nastavit čas modifikace" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Nelze přečíst seznam zdrojů." -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Neplatné URI, lokální URI nesmí začínat na //" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Cache balíků je prázdná" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Přihlašování" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Cache soubor balíků je poškozen" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Nelze určit jméno druhé strany" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Cache soubor balíků má nekompatibilní verzi" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Nelze určit lokální jméno" +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "Cache soubor balíků je poškozen, je příliš malý" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Server zamítl naše spojení a řekl: %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "Tato APT nepodporuje systém pro správu verzí „%s“" -#: methods/ftp.cc:225 -#, c-format -msgid "USER failed, server said: %s" -msgstr "USER selhal, server řekl: %s" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Cache balíků byla vytvořena pro jinou architekturu" -#: methods/ftp.cc:232 -#, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS selhal, server řekl: %s" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Závisí na" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"Byl zadán proxy server, ale ne přihlašovací skript. Acquire::ftp::ProxyLogin " -"je prázdný." +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Předzávisí na" -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Příkaz „%s“ přihlašovacího skriptu selhal, server řekl: %s" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Navrhuje" -#: methods/ftp.cc:306 -#, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE selhal, server řekl: %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Doporučuje" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Čas spojení vypršel" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Koliduje s" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Server uzavřel spojení" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Nahrazuje" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Odpověď přeplnila buffer." +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Zastarává" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Porušení protokolu" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Porušuje" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Nelze vytvořit socket" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Rozšiřuje" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Nelze připojit datový socket, čas spojení vypršel" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "důležitý" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Selhalo" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "vyžadovaný" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Nelze připojit pasivní socket." +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standardní" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo nezískal naslouchající socket" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "volitelný" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Nelze navázat socket" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Nelze naslouchat na socketu" +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Ovladač metody %s nemohl být nalezen." -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Nelze určit jméno socketu" +#: apt-pkg/acquire-worker.cc:118 +#, c-format +msgid "Is the package %s installed?" +msgstr "Je balík %s nainstalován?" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Nelze odeslat příkaz PORT" +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "Metoda %s nebyla spuštěna správně" -#: methods/ftp.cc:802 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Neznámá rodina adres %u (AF_*)" +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Vložte prosím disk nazvaný „%s“ do mechaniky „%s“ a stiskněte enter." -#: methods/ftp.cc:811 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT selhal, server řekl: %s" +msgid "Index file type '%s' is not supported" +msgstr "Indexový typ souboru „%s“ není podporován" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Spojení datového socketu vypršelo" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Vytváří se strom závislostí" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Nelze přijmout spojení" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Kandidátské verze" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problém s kontrolním součtem souboru" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Generování závislostí" -#: methods/ftp.cc:890 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Čtu stavové informace" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Nelze stáhnout soubor, server řekl „%s“" +msgid "Failed to open StateFile %s" +msgstr "Nelze otevřít stavový soubor %s" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Datový socket vypršel" +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Nelze zapsat dočasný stavový soubor %s" + +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "přejmenování selhalo, %s (%s -> %s)." -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Přenos dat selhal, server řekl „%s“" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Neshoda kontrolních součtů" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Dotaz" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Velikosti nesouhlasí" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Nelze vyvolat " +#: apt-pkg/acquire-item.cc:173 +msgid "Invalid file format" +msgstr "Neplatná formát souboru" -#: methods/connect.cc:76 +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Připojování k %s (%s)" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" +"V souboru Release nelze najít očekávanou položku „%s“ (chybný sources.list " +"nebo porušený soubor)" -#: methods/connect.cc:87 +#: apt-pkg/acquire-item.cc:1589 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "V souboru Release nelze najít kontrolní součet „%s“" -#: methods/connect.cc:94 -#, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Nelze vytvořit socket pro %s (f=%u t=%u p=%u)" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "K následujícím ID klíčů není dostupný veřejný klíč:\n" -#: methods/connect.cc:100 +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Nelze navázat spojení na %s:%s (%s)." +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" +"Soubor Release pro %s již expiroval (neplatný od %s). Aktualizace z tohoto " +"repositáře se nepoužijí." -#: methods/connect.cc:108 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Nelze se připojit k %s:%s (%s), čas spojení vypršel" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Konfliktní distribuce: %s (očekáváno %s, obdrženo %s)" -#: methods/connect.cc:126 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Nelze se připojit k %s:%s (%s)." +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"Při ověřování podpisů se objevila chyba. Repositář není aktualizovaný, tudíž " +"se použijí předchozí indexové soubory. Chyba GPG: %s: %s\n" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "Connecting to %s" -msgstr "Připojování k %s" +msgid "GPG error: %s: %s" +msgstr "Chyba GPG: %s: %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Could not resolve '%s'" -msgstr "Nelze přeložit „%s“" +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"Nebylo možné nalézt soubor s balíkem %s. To by mohlo znamenat, že tento " +"balík je třeba opravit ručně (kvůli chybějící architektuře)" -#: methods/connect.cc:205 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Dočasné selhání při zjišťování „%s“" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "Nelze najít zdroj pro stažení verze „%s“ balíku „%s“" -#: methods/connect.cc:209 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "System error resolving '%s:%s'" -msgstr "Systémová chyba při překladu „%s:%s“" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Indexové soubory balíku jsou narušeny. Chybí pole Filename: u balíku %s." -#: methods/connect.cc:211 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Něco hodně ošklivého se přihodilo při překladu „%s:%s“ (%i - %s)" +msgid "Clean of %s is not supported" +msgstr "Vyčištění %s není podporováno" -#: methods/connect.cc:258 +#: apt-pkg/clean.cc:64 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Nelze se připojit k %s:%s:" - -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "Vnitřní chyba: Dobrý podpis, ale nemohu zjistit otisk klíče?!" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Byl zaznamenán nejméně jeden neplatný podpis. " +msgid "Unable to stat %s." +msgstr "Nebylo možno vyhodnotit %s." -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "Nelze spustit „gpgv“ pro ověření podpisu (je gpgv nainstalováno?)" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Cache má nekompatibilní systém správy verzí" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" -msgstr "" -"Podepsaný soubor není platný, obdrženo „%s“ (vyžaduje přístup na síť ověření?)" +msgid "Error occurred while processing %s (%s%d)" +msgstr "Chyba při zpracování %s (%s%d)" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Neznámá chyba při spouštění gpgv" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "Wow, překročili jste počet jmen balíků, které tato APT umí zpracovat." -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Následující podpisy jsou neplatné:\n" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Wow, překročili jste počet verzí, které tato APT umí zpracovat." -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "" -"Následující podpisy nemohly být ověřeny, protože není dostupný veřejný " -"klíč:\n" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Wow, překročili jste počet popisů, které tato APT umí zpracovat." -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Prázdné soubory nejsou platnými archivy" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "Wow, překročili jste počet závislostí, které tato APT umí zpracovat." -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Chyba zápisu do souboru" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Při zpracování závislostí nebyl nalezen balík %s %s" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Chyba čtení ze serveru. Druhá strana zavřela spojení" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Nešlo vyhodnotit seznam zdrojových balíků %s" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Chyba čtení ze serveru" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Čtu seznamy balíků" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Chyba zápisu do souboru" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Collecting File poskytuje" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Výběr selhal" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Nelze zapsat do %s" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Čas spojení vypršel" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Chyba IO při ukládání zdrojové cache" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Chyba zápisu do výstupního souboru" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Blok výrobce %s neobsahuje otisk klíče" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Čeká se na hlavičky" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Adresář seznamů %spartial chybí." -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Chybná hlavička" +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Archivní adresář %spartial chybí." -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Http server poslal neplatnou hlavičku odpovědi" +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "Nelze uzamknout adresář %s" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Http server poslal neplatnou hlavičku Content-Length" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Stahuje se soubor %li z %li (zbývá %s)" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Http server poslal neplatnou hlavičku Content-Range" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Stahuje se soubor %li z %li" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Tento HTTP server má porouchanou podporu rozsahů" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"Některé indexové soubory se nepodařilo stáhnout. Jsou ignorovány, nebo jsou " +"použity starší verze." -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Neznámý formát data" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Do sources.list musíte zadat „zdrojové“ URI" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Špatné datové záhlaví" +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" +"Hodnota „%s“ není v APT::Default-Release platná, protože toto vydání není " +"dostupné v sources.list" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Spojení selhalo" +#: apt-pkg/policy.cc:422 +#, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Neplatný záznam v souboru preferencí %s, chybí hlavička Package" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Vnitřní chyba" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Nerozumím vypíchnutí typu %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Propočítává se aktualizace… " +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Pro vypíchnutí nebyla zadána žádná (nebo nulová) priorita" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Hotovo" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" +"Nelze spustit okamžitou konfiguraci balíku „%s“. Podrobnosti naleznete v man " +"5 apt.conf v části APT::Immediate-Configure. (%d)" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "Řadí se" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Nelze nastavit „%s“." -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "Vypisuje se" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"Tento běh instalace si vyžádá dočasné odstranění klíčového balíku %s kvůli " +"smyčce v Conflicts/Pre-Depends. To je často špatné, ale pokud to skutečně " +"chcete udělat, aktivujte možnost APT::Force-LoopBreak." -#: apt-private/private-list.cc:164 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "Existuje %i další verze. Zobrazíte ji přepínačem „-a“." -msgstr[1] "Existují %i další verze. Zobrazíte je přepínačem „-a“." -msgstr[2] "Existuje %i dalších verzí. Zobrazíte je přepínačem „-a“." +msgid "Line %u too long in source list %s." +msgstr "Řádek %u v seznamu zdrojů %s je příliš dlouhý." -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Opravují se závislosti…" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Odpojuje se CD-ROM…\n" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " selhalo." +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "Používá se přípojný bod %s\n" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Nelze opravit závislosti" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Čeká se na disk…\n" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Nelze minimalizovat sadu pro aktualizaci" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Připojuje se CD-ROM…\n" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Hotovo" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Rozpoznává se… " -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Pro opravení můžete spustit „apt-get -f install“." +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Uložený název: %s \n" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Nesplněné závislosti. Zkuste použít -f." +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Na disku se hledají indexové soubory…\n" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "neznámá" +#: apt-pkg/cdrom.cc:734 +#, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" +"Nalezeny indexy balíků (%zu), indexy zdrojů (%zu), indexy popisů (%zu) a " +"podpisy (%zu)\n" -#: apt-private/private-output.cc:234 +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" +"Nenalezeny žádné balíky. Možná to není disk s Debianem, nebo je pro jinou " +"architekturu?" + +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "[installed,upgradable to: %s]" -msgstr "[instalovaný,aktualizovatelný na: %s]" +msgid "Found label '%s'\n" +msgstr "Nalezený název: „%s“\n" -#: apt-private/private-output.cc:238 -msgid "[installed,local]" -msgstr "[instalovaný,lokální]" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Nejedná se o platné jméno, zkuste to znovu.\n" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "[instalovaný,automaticky-odstranitelný]" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Tento disk se nazývá: \n" +"„%s“\n" -#: apt-private/private-output.cc:243 -msgid "[installed,automatic]" -msgstr "[instalovaný,automaticky]" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopírují se seznamy balíků…" -#: apt-private/private-output.cc:245 -msgid "[installed]" -msgstr "[instalovaný]" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Zapisuje se nový seznam balíků\n" -#: apt-private/private-output.cc:249 +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Seznamy zdrojů na tomto disku jsou:\n" + +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "[upgradable from: %s]" -msgstr "[aktualizovatelný z: %s]" +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "Balík %s je potřeba přeinstalovat, ale nemohu pro něj nalézt archiv." -#: apt-private/private-output.cc:253 -msgid "[residual-config]" -msgstr "[zbytkové-konfigurační-coubory]" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Chyba, pkgProblemResolver::Resolve vytváří poruchy, to může být způsobeno " +"podrženými balíky." -#: apt-private/private-output.cc:435 -#, c-format -msgid "but %s is installed" -msgstr "ale %s je nainstalován" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Nelze opravit problémy, některé balíky držíte v porouchaném stavu." -#: apt-private/private-output.cc:437 -#, c-format -msgid "but %s is to be installed" -msgstr "ale %s se bude instalovat" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Scénář odeslán řešiteli" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "ale nedá se nainstalovat" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Požadavek odeslán řešiteli" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "ale je to virtuální balík" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Příprava na obdržení řešení" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "ale není nainstalovaný" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "Externí řešitel selhal, aniž by zanechal rozumnou chybovou hlášku" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "ale nebude se instalovat" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Spuštění externího řešitele" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " nebo" +#: apt-pkg/tagfile.cc:140 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Nelze zpracovat soubor %s (1)" + +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Nelze zpracovat soubor %s (2)" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Následující balíky mají nesplněné závislosti:" +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Nelze zpracovat Release soubor %s" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Následující NOVÉ balíky budou nainstalovány:" +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "Release soubor %s neobsahuje žádné sekce" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Následující balíky budou ODSTRANĚNY:" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Release soubor %s neobsahuje Hash záznam" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Následující balíky jsou podrženy v aktuální verzi:" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Neplatná položka „Valid-Until“ v Release souboru %s" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Následující balíky budou aktualizovány:" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Neplatná položka „Date“ v Release souboru %s" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Následující balíky budou DEGRADOVÁNY:" +#: apt-pkg/sourcelist.cc:127 +#, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Zkomolená část %u v seznamu zdrojů %s (zpracování URI)" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Následující podržené balíky budou změněny:" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (nezpracovatelná [volba])" -#: apt-private/private-output.cc:668 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "%s (due to %s) " -msgstr "%s (kvůli %s) " +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (příliš krátká [volba])" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" -msgstr "" -"VAROVÁNÍ: Následující nezbytné balíky budou odstraněny.\n" -"Pokud přesně nevíte, co děláte, NEDĚLEJTE to!" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Zkomolený řádek %lu v seznamu zdrojů %s ([%s] není přiřazení)" -#: apt-private/private-output.cc:707 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu aktualizováno, %lu nově instalováno, " +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Zkomolený řádek %lu v seznamu zdrojů %s ([%s] nemá klíč)" -#: apt-private/private-output.cc:711 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu přeinstalováno, " +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "Zkomolený řádek %lu v seznamu zdrojů %s ([%s] klíč %s nemá hodnotu)" -#: apt-private/private-output.cc:713 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "%lu downgraded, " -msgstr "%lu degradováno, " +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (URI)" -#: apt-private/private-output.cc:715 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu k odstranění a %lu neaktualizováno.\n" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (dist)" -#: apt-private/private-output.cc:719 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu instalováno nebo odstraněno pouze částečně.\n" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (zpracování URI)" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[Y/n]" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (Absolutní dist)" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[y/N]" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (zpracování dist)" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "Y" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Otevírá se %s" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "N" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Zkomolený řádek %u v seznamu zdrojů %s (typ)" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Příkaz update neakceptuje žádné argumenty" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Typ „%s“ na řádce %u v seznamu zdrojů %s není známý" -#: apt-private/private-update.cc:90 +#: apt-pkg/sourcelist.cc:416 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -"%i balík může být aktualizován. Zobrazíte jej „apt list --upgradable“.\n" -msgstr[1] "" -"%i balíky mohou být aktualizovány. Zobrazíte je „apt list --upgradable“.\n" -msgstr[2] "" -"%i balíků může být aktualizováno. Zobrazíte je „apt list --upgradable“.\n" +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Typ „%s“ v části %u v seznamu zdrojů %s není známý" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "Všechny balíky jsou aktuální." +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Vydání „%s“ pro „%s“ nebylo nalezeno" -#: apt-private/private-show.cc:156 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "Existuje %i další záznam. Zobrazíte jej přepínačem „-a“." -msgstr[1] "Existují %i další záznamy. Zobrazíte je přepínačem „-a“." -msgstr[2] "Existuje %i dalších záznamů. Zobrazíte je přepínačem „-a“." +msgid "Version '%s' for '%s' was not found" +msgstr "Verze „%s“ pro „%s“ nebyla nalezena" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "není skutečný balík (virtuální)" +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Nelze najít úlohu „%s“" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Vnitřní chyba, InstallPackages byl zavolán s porušenými balíky!" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Nelze najít balík vyhovující regulárnímu výrazu „%s“" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Balík je potřeba odstranit ale funkce Odstranit je vypnuta." +#: apt-pkg/cacheset.cc:615 +#, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Nelze najít balík vyhovující masce „%s“" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Vnitřní chyba, třídění nedoběhlo do konce" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "Nelze vybrat verze balíku „%s“, protože je čistě virtuální" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Jak podivné… velikosti nesouhlasí, ohlaste to na apt@packages.debian.org" +"Nelze vybrat nainstalovanou ani kandidátskou verzi balíku „%s“, protože " +"žádné takové verze nemá" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Nutno stáhnout %sB/%sB archivů.\n" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "Nelze vybrat nejnovější verzi balíku „%s“, protože je čistě virtuální" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Nutno stáhnout %sB archivů.\n" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "Nelze vybrat kandidátskou verzi balíku %s, protože žádnou nemá" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/cacheset.cc:663 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Po této operaci bude na disku použito dalších %sB.\n" +msgid "Can't select installed version from package %s as it is not installed" +msgstr "Nelze vybrat nainstalované verze balíku %s, protože není nainstalován" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%lid %lih %limin %lis" + +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%lih %limin %lis" + +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" + +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Po této operaci bude na disku uvolněno %sB.\n" +msgid "%lis" +msgstr "%lis" -#: apt-private/private-install.cc:200 +#: apt-pkg/contrib/strutl.cc:1246 #, c-format -msgid "You don't have enough free space in %s." -msgstr "V %s nemáte dostatek volného místa." +msgid "Selection %s not found" +msgstr "Výběr %s nenalezen" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Vyskytly se problémy a -y bylo použito bez --force-yes" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Nepoužívá se zamykání pro zámkový soubor %s, který je pouze pro čtení" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Udáno „pouze triviální“, ovšem toto není triviální operace." +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Nešlo otevřít zámkový soubor %s" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Ano, udělej to tak, jak říkám!" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Nepoužívá se zamykání pro zámkový soubor %s připojený přes nfs" -#: apt-private/private-install.cc:222 +#: apt-pkg/contrib/fileutl.cc:223 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Chystáte se vykonat něco potenciálně škodlivého.\n" -"Pro pokračování opište frázi „%s“\n" -" ?] " +msgid "Could not get lock %s" +msgstr "Nelze získat zámek %s" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Přerušeno." +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "Seznam souborů nelze vytvořit, jelikož „%s“ není adresář" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Chcete pokračovat?" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "Ignoruji „%s“ v adresáři „%s“, jelikož to není obyčejný soubor" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Některé soubory nemohly být staženy" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "Ignoruji soubor „%s“ v adresáři „%s“, jelikož nemá příponu" -#: apt-private/private-install.cc:320 +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Nelze stáhnout některé archivy. Možná spusťte apt-get update nebo zkuste --" -"fix-missing?" - -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing a výměna média nejsou momentálně podporovány" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "Ignoruji soubor „%s“ v adresáři „%s“, jelikož má neplatnou příponu" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Nelze opravit chybějící balíky." +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Podproces %s obdržel chybu segmentace." -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Instalace se přerušuje." +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "Podproces %s obdržel signál %u." -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -"Následující balík z tohoto systému zmizel, protože\n" -"všechny jeho soubory byly přepsány jinými balíky:" -msgstr[1] "" -"Následující balíky z tohoto systému zmizely, protože\n" -"všechny jejich soubory byly přepsány jinými balíky:" -msgstr[2] "" -"Následující balíky z tohoto systému zmizely, protože\n" -"všechny jejich soubory byly přepsány jinými balíky:" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "Podproces %s vrátil chybový kód (%u)" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Poznámka: Toto má svůj důvod a děje se automaticky v dpkg." +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Podproces %s neočekávaně skončil" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Neměli bychom mazat věci, nemůžu spustit AutoRemover" +#: apt-pkg/contrib/fileutl.cc:913 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problém při zavírání gzip souboru %s" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Hmm, zdá se, že AutoRemover zničil něco, co neměl.\n" -"Nahlaste prosím chybu v apt." +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Nelze otevřít soubor %s" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "Následující informace vám mohou pomoci vyřešit tuto situaci:" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Nelze otevřít popisovač souboru %d" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Vnitřní chyba, AutoRemover pokazil věci" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Nelze vytvořit podproces IPC" -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "Následující balík byl nainstalován automaticky a již není potřeba:" -msgstr[1] "" -"Následující balíky byly nainstalovány automaticky a již nejsou potřeba:" -msgstr[2] "" -"Následující balíky byly nainstalovány automaticky a již nejsou potřeba:" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Nezdařilo se spustit kompresor " -#: apt-private/private-install.cc:517 +#: apt-pkg/contrib/fileutl.cc:1514 #, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "%lu balík byl nainstalován automaticky a již není potřeba.\n" -msgstr[1] "%lu balíky byly nainstalovány automaticky a již nejsou potřeba.\n" -msgstr[2] "%lu balíků bylo nainstalováno automaticky a již nejsou potřeba.\n" +msgid "read, still have %llu to read but none left" +msgstr "čtení, stále se má přečíst %llu, ale už nic nezbývá" -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Pro jeho odstranění použijte „apt-get autoremove“." -msgstr[1] "Pro jejich odstranění použijte „apt-get autoremove“." -msgstr[2] "Pro jejich odstranění použijte „apt-get autoremove“." +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "zápis, stále se má zapsat %llu, ale nejde to" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Pro opravení následujících můžete spustit „apt-get -f install“:" +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Problém při zavírání souboru %s" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Nesplněné závislosti. Zkuste spustit „apt-get -f install“ bez balíků (nebo " -"navrhněte řešení)." +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Problém při přejmenování souboru %s na %s" -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." -msgstr "" -"Některé balíky nemohly být instalovány. To může znamenat, že požadujete\n" -"nemožnou situaci, nebo, pokud používáte nestabilní distribuci, že\n" -"vyžadované balíky ještě nebyly vytvořeny nebo přesunuty z Příchozí fronty." +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Problém při odstraňování souboru %s" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Poškozené balíky" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Problém při synchronizování souboru" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Následující extra balíky budou instalovány:" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s… Chyba!" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Navrhované balíky:" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s… Hotovo" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Doporučované balíky:" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "…" -#: apt-private/private-install.cc:825 +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "%s bude přeskočen, protože je již nainstalován.\n" +msgid "%c%s... %u%%" +msgstr "%c%s… %u%%" -#: apt-private/private-install.cc:829 -#, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"%s bude přeskočen, protože není nainstalován a vyžadovány jsou pouze " -"aktualizace.\n" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Nelze provést mmap prázdného souboru" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Přeinstalace %s není možná, protože nelze stáhnout.\n" +msgid "Couldn't duplicate file descriptor %i" +msgstr "Nelze duplikovat popisovač souboru %i" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/mmap.cc:119 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s je již nejnovější verze.\n" +msgid "Couldn't make mmap of %llu bytes" +msgstr "Nešlo mmapovat %llu bajtů" -#: apt-private/private-install.cc:894 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Vybraná verze „%s“ (%s) pro „%s“\n" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Nelze zavřít mmap" -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Nelze synchronizovat mmap" + +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Vybraná verze „%s“ (%s) pro „%s“ kvůli „%s“\n" +msgid "Couldn't make mmap of %lu bytes" +msgstr "Nešlo mmapovat %lu bajtů" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Nelze zmenšit soubor" + +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -"Balík „%s“ není nainstalován, nelze tedy odstranit. Mysleli jste „%s“?\n" +"Dynamickému MMapu došlo místo. Zvyšte prosím hodnotu APT::Cache-Start. " +"Současná hodnota: %lu. (man 5 apt.conf)" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Balík „%s“ není nainstalován, nelze tedy odstranit\n" +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "Nelze zvýšit velikost MMapu, protože limit %lu bajtů již byl dosažen." -#: apt-private/private-main.cc:32 +#: apt-pkg/contrib/mmap.cc:449 msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -"INFO: Toto je pouze simulace!\n" -" apt-get vyžaduje pro skutečný běh rootovská oprávnění.\n" -" Mějte také na paměti, že je vypnuto zamykání, tudíž\n" -" tyto výsledky nemusí mít s realitou nic společného!" - -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "VAROVÁNÍ: Následující balíky nemohou být autentizovány!" - -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Autentizační varování potlačeno.\n" +"Nelze zvýšit velikost MMapu, protože automatické zvětšování bylo uživatelem " +"zakázáno." -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Některé balíky nemohly být autentizovány" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Nelze vyhodnotit přípojný bod %s" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Instalovat tyto balíky bez ověření?" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Nezdařilo se vyhodnotit cdrom" -#: apt-private/private-sources.cc:58 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Nepodařilo se zpracovat %s. Zkusit znovu upravit?" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Nerozpoznaná zkratka typu: „%c“" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "Soubor „%s“ se změnil, spusťte prosím „apt-get update“." - -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "Fulltextové hledání" - -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Cíl " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Mám:" - -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +msgid "Opening configuration file %s" +msgstr "Otevírá se konfigurační soubor %s" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntaktická chyba %s:%u: Blok nezačíná jménem." -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/configuration.cc:820 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Staženo %sB za %s (%sB/s)\n" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntaktická chyba %s:%u: Zkomolená značka" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/configuration.cc:837 #, c-format -msgid " [Working]" -msgstr " [Pracuji]" +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntaktická chyba %s:%u: Za hodnotou následuje zbytečné smetí" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/configuration.cc:877 #, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -"Výměna média: Vložte disk nazvaný\n" -" „%s“\n" -"do mechaniky „%s“ a stiskněte enter\n" +"Syntaktická chyba %s:%u: Direktivy je možné provádět pouze na nejvyšší úrovni" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/configuration.cc:884 #, c-format -msgid "No mirror file '%s' found " -msgstr "Soubor se zrcadly „%s“ nebyl nalezen " +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntaktická chyba %s:%u: Příliš mnoho vnořených propojení (include)" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Nelze číst soubor se zrcadly „%s“" +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntaktická chyba %s:%u: Zahrnuto odtud" -#: methods/mirror.cc:315 +#: apt-pkg/contrib/configuration.cc:897 #, c-format -msgid "No entry found in mirror file '%s'" -msgstr "V souboru se zrcadly „%s“ nebyl nalezen žádný záznam" +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntaktická chyba %s:%u: Nepodporovaná direktiva „%s“" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:900 #, c-format -msgid "[Mirror: %s]" -msgstr "[Zrcadlo: %s]" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Selhalo vytvoření meziprocesové roury k podprocesu" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Spojení bylo předčasně ukončeno" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Chybné standardní nastavení!" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Pro pokračování stiskněte enter." - -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Chcete smazat všechny dříve stažené .deb soubory?" - -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Během rozbalování se vyskytly chyby. Balíky, které se nainstalovaly" - -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "budou zkonfigurovány. To může způsobit duplicitní chybové hlášky" +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "" +"Syntaktická chyba %s:%u: Direktiva clear vyžaduje jako argument strom " +"možností" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "o nesplněných závislostech. To je v pořádku, důležité jsou pouze" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Syntaktická chyba %s:%u: Na konci souboru je zbytečné smetí" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "chyby nad touto hláškou. Opravte je a poté znovu spusťte [I]nstalovat" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "V %s není nainstalována žádná klíčenka." -#: dselect/update:30 -msgid "Merging available information" -msgstr "Slučují se dostupné informace" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Parametr příkazové řádky „%c“ [z %s] je neznámý" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "Pokus o uvolnění uzlu (DropNode) na stále propojeném uzlu" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Nerozumím parametru %s příkazové řádky" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Nelze lokalizovat hashovací prvek!" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Parametr příkazové řádky %s není pravdivostní hodnota" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Nelze alokovat diverzi" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Volba %s vyžaduje argument." -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Vnitřní chyba při AddDiversion" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Parametr %s: Zadání konfigurační položky musí obsahovat =<hodn>." -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Pokus o přepsání diverze, %s -> %s a %s/%s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Volba %s vyžaduje jako argument celé číslo (integer), ne „%s“" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Dvojí přidání diverze %s -> %s" +msgid "Option '%s' is too long" +msgstr "Volba „%s“ je příliš dlouhá" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Duplicitní konfigurační soubor %s/%s" +msgid "Sense %s is not understood, try true or false." +msgstr "Nechápu význam %s, zkuste true nebo false." -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The path %s is too long" -msgstr "Cesta %s je příliš dlouhá" +msgid "Invalid operation %s" +msgstr "Neplatná operace %s" -#: apt-inst/extract.cc:132 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unpacking %s more than once" -msgstr "%s se rozbaluje vícekrát" +msgid "Installing %s" +msgstr "Instaluje se %s" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The directory %s is diverted" -msgstr "Adresář %s je odkloněn" +msgid "Configuring %s" +msgstr "Nastavuje se %s" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Balík se pokouší zapisovat do diverzního cíle %s/%s" +msgid "Removing %s" +msgstr "Odstraňuje se %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Diverzní cesta je příliš dlouhá" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "Kompletně se odstraňuje %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to stat %s" -msgstr "Nelze vyhodnotit %s" +msgid "Noting disappearance of %s" +msgstr "Značím si zmizení %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Selhalo přejmenování %s na %s" +msgid "Running post-installation trigger %s" +msgstr "Spouští se poinstalační spouštěč %s" -#: apt-inst/extract.cc:249 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Adresář %s bude nahrazen neadresářem" +msgid "Directory '%s' missing" +msgstr "Adresář „%s“ chybí" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Nelze nalézt uzel v jeho hashovacím kbelíku" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Nelze otevřít soubor „%s“" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Cesta je příliš dlouhá" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Připravuje se %s" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Přepsat vyhovující balík bez udání verze pro %s" +msgid "Unpacking %s" +msgstr "Rozbaluje se %s" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Soubor %s/%s přepisuje ten z balíku %s" +msgid "Preparing to configure %s" +msgstr "Připravuje se nastavení %s" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Unable to stat %s" -msgstr "Nelze vyhodnotit %s" +msgid "Installed %s" +msgstr "Nainstalován %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to write file %s" -msgstr "Selhal zápis souboru %s" +msgid "Preparing for removal of %s" +msgstr "Připravuje se odstranění %s" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Failed to close file %s" -msgstr "Selhalo zavření souboru %s" +msgid "Removed %s" +msgstr "Odstraněn %s" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Toto není platný DEB archiv, chybí část „%s“" +msgid "Preparing to completely remove %s" +msgstr "Připravuje se úplné odstranění %s" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Vnitřní chyba, nemohu najít část %s" +msgid "Completely removed %s" +msgstr "Kompletně odstraněn %s" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Nezpracovatelný kontrolní soubor" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "volání ioctl(TIOCGWINSZ) selhalo" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Neplatný podpis archivu" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, c-format +msgid "Can not write log (%s)" +msgstr "Nelze zapsat log (%s)" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Chyba při čtení záhlaví prvku archivu" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "Je /dev/pts připojeno?" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Neplatné záhlaví prvku archivu %s" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "Je standardní výstup terminál?" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Neplatné záhlaví prvku archivu" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "Operace byla přerušena dříve, než mohla skončit" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Archiv je příliš krátký" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" +"Žádné apport hlášení nebylo vytvořeno, protože již byl dosažen MaxReports" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Chyba při čtení hlaviček archivu" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "problémy se závislostmi - ponechávám nezkonfigurované" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Selhalo vytvoření roury" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje, že " +"se jedná o chybu způsobenou předchozí chybou." -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Selhalo spuštění gzipu " +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje, že " +"je chyba způsobena zcela zaplněným diskem." -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Porušený archiv" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje, že " +"je chyba způsobena zcela zaplněnou pamětí." -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Kontrolní součet taru selhal, archiv je poškozený" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje, že " +"je chyba na lokálním systému." -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Žádné apport hlášení nebylo vytvořeno, protože chybová hláška naznačuje V/V " +"chybu dpkg." + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Neznámá hlavička TARu typ %u, člen %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "Nelze uzamknout administrační adresář (%s). Používá jej jiný proces?" + +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Nelze uzamknout administrační adresář (%s). Jste root?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "dpkg byl přerušen, pro nápravu problému musíte ručně spustit „%s“." + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Není uzamčen" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/cy.po b/po/cy.po index 9fa432356..77b6c0d4c 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: APT\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2005-06-06 13:46+0100\n" "Last-Translator: Dafydd Harries <daf@muse.19inch.net>\n" "Language-Team: Welsh <cy@pengwyn.linux.org.uk>\n" @@ -15,3232 +15,3233 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "Ni chynhelir y math ffeil mynegai '%s'" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Unable to read %s" -msgstr "Ni ellir darllen %s" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Mae gan y pecyn %s fersiwn %s ddibyniaeth heb ei gwrdd:\n" -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Ni ellir newid i %s" +#: cmdline/apt-cache.cc:277 +#, fuzzy +msgid "Total package names: " +msgstr "Cyfanswm Enwau Pecynnau : " -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "Ni ellir gwneud stat() o %s." +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "Cyfanswm Enwau Pecynnau : " -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" +#: cmdline/apt-cache.cc:319 +#, fuzzy +msgid " Normal packages: " +msgstr " Pecynnau Normal: " -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "" +#: cmdline/apt-cache.cc:320 +#, fuzzy +msgid " Pure virtual packages: " +msgstr " Pecynnau Cwbl Rhithwir: " -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Ni chynhelir y system pecynnu '%s'" +#: cmdline/apt-cache.cc:321 +#, fuzzy +msgid " Single virtual packages: " +msgstr " Pecynnau Rhithwir Sengl: " -#: apt-pkg/init.cc:162 +#: cmdline/apt-cache.cc:322 #, fuzzy -msgid "Unable to determine a suitable packaging system type" -msgstr "Ni ellir canfod math system addas" +msgid " Mixed virtual packages: " +msgstr " Pecynnau Rhithwir Cymysg: " -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Ar Goll: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "" +#: cmdline/apt-cache.cc:325 +#, fuzzy +msgid "Total distinct versions: " +msgstr "Cyfanswm Fersiynau Gwahanol: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "" +#: cmdline/apt-cache.cc:327 +#, fuzzy +msgid "Total distinct descriptions: " +msgstr "Cyfanswm Fersiynau Gwahanol: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" +#: cmdline/apt-cache.cc:329 +#, fuzzy +msgid "Total dependencies: " +msgstr "Cyfanswm Dibyniaethau: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" +#: cmdline/apt-cache.cc:332 +#, fuzzy +msgid "Total ver/file relations: " +msgstr "Cyfanswm perthyniadau fersiwn/ffeil: " -#: apt-pkg/indexcopy.cc:521 -#, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Camgyfatebiaeth swm MD5" +#: cmdline/apt-cache.cc:334 +#, fuzzy +msgid "Total Desc/File relations: " +msgstr "Cyfanswm perthyniadau fersiwn/ffeil: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Methwyd canfod y gyrrydd dull %s." +#: cmdline/apt-cache.cc:336 +#, fuzzy +msgid "Total Provides mappings: " +msgstr "Cyfanswm Mapiau Darpariath: " -#: apt-pkg/acquire-worker.cc:118 -#, c-format -msgid "Is the package %s installed?" -msgstr "" +#: cmdline/apt-cache.cc:348 +#, fuzzy +msgid "Total globbed strings: " +msgstr "Cyfanswm Llinynau Glob: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Ni gychwynodd y dull %s yn gywir" +#: cmdline/apt-cache.cc:362 +#, fuzzy +msgid "Total dependency version space: " +msgstr "Cyfanswm gofod Fersiwn Dibyniaeth: " -#: apt-pkg/acquire-worker.cc:455 -#, fuzzy, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "" -"Newid Cyfrwng: Os gwelwch yn dda, rhowch y disg a'r label\n" -" '%s'\n" -"yn y gyrriant '%s' a gwasgwch Enter\n" +#: cmdline/apt-cache.cc:367 +#, fuzzy +msgid "Total slack space: " +msgstr "Cyfanswm gofod Slac: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Methwyd agor neu ramadegu'r ffeil rhestrau neu statws." +#: cmdline/apt-cache.cc:375 +#, fuzzy +msgid "Total space accounted for: " +msgstr "Cyfanswm Gofod Cyfrifwyd: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Efallai hoffech rhedege apt-get update er mwyn cywiro'r problemau hyn." +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "Nid yw'r ffeil pecyn %s yn gydamseredig." -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Methwyd darllen y rhestr ffynhonellau." +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Canfuwyd dim pecyn" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Storfa pecyn gwag" +#: cmdline/apt-cache.cc:1254 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "Rhaid i chi ddarparu un patrwm yn union" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Mae'r ffeil storfa pecyn yn llygredig" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Mae'r ffeil storfa pecyn yn fersiwn anghyflawn" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "Ni ellir lleoli'r pecyn %s" -#: apt-pkg/pkgcache.cc:169 +#: cmdline/apt-cache.cc:1545 #, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "Mae'r ffeil storfa pecyn yn llygredig" - -# FIXME: capitalisation? -#: apt-pkg/pkgcache.cc:174 -#, fuzzy, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Nid yw'r APT yma yn cefnogi'r system fersiwn '%s'" +msgid "Package files:" +msgstr "Ffeiliau Pecynnau:" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Adeiladwyd y storfa pecyn ar gyfer pernsaerniaeth gwahanol" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Nid yw'r storfa yn gydamserol, ni ellir croesgyfeirio ffeil pecym" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Dibynnu" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +#, fuzzy +msgid "Pinned packages:" +msgstr "Pecynnau wedi eu Pinio:" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "CynDdibynnu" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(heb ganfod)" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Awgrymu" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Wedi Sefydlu: " -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Argymell" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Ymgeisydd: " -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Gwrthdaro" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(dim)" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Amnewid" +#: cmdline/apt-cache.cc:1620 +#, fuzzy +msgid " Package pin: " +msgstr " Pin Pecyn: " -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Darfodi" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +#, fuzzy +msgid " Version table:" +msgstr " Tabl Fersiynnau:" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, fuzzy, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s ar gyfer %s %s wedi ei grynhow ar %s %s\n" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" msgstr "" +"Defnydd: apt-cache [opsiynnau] gorchymyn\n" +" apt-cache [opsiynnau] add ffeil1 [ffeil2 ...]\n" +" apt-cache [opsiynnau] showpkg pecyn1 [pecyn2 ...]\n" +" apt-cache [opsiynnau] showsrc pecyn1 [pecyn2 ...]\n" +"\n" +"Mae apt-cache yn erfyn lefel isel a ddefnyddir i ymdrin a ffeiliau storfa " +"deuol APT, ac ymholi gwybodaeth ohonynt\n" +"\n" +"Gorchmynion:\n" +" add - Ychwanegu ffeil pecyn i'r storfa ffynhonell\n" +" gencaches - Adeiladu'r storfeydd pecyn a ffynhonell\n" +" showpkg - Dangos gwybodaeth cyffredinol am becyn sengl\n" +" showsrc - Dangos cofnodion ffynhonell\n" +" stats - Dangos rhyw ystadegau sylfaenol\n" +" dump - Dangos y ffeil cyfan mewn ffurf syml\n" +" dumpavail - Dangos ffeil argaeledd\n" +" unmet - Dangos dibyniaethau heb eu darparu\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "pwysig" - -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "angenrheidiol" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "safonnol" +#: cmdline/apt-cdrom.cc:91 +#, fuzzy +msgid "Please insert a Disc in the drive and press enter" +msgstr "" +"Newid Cyfrwng: Os gwelwch yn dda, rhowch y disg a'r label\n" +" '%s'\n" +"yn y gyrriant '%s' a gwasgwch Enter\n" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opsiynnol" +#: cmdline/apt-cdrom.cc:139 +#, fuzzy, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Methwyd ailenwi %s at %s" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "ychwanegol" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Ni chynhelir y math ffeil mynegai '%s'" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Gwall crynhoi patrwm - %s" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Nid yw ymresymiadau mewn parau" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Mae can y storfa system fersiwn anghyfaddas" +#: cmdline/apt-config.cc:89 +#, fuzzy +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"Defnydd: apt-config [opsiynnau] gorchymyn\n" +"\n" +"Mae apt-config yn erfyn syml sy'n darllen ffeil cyfluniad APT\n" +"\n" +"Gorchmynion:\n" +" shell - Modd plisgyn\n" +" dump - Dangod y cyfluniad\n" +"\n" +"Opsiynnau:\n" +" -h Y testun cymorth hwn\n" +" -c=? Darllen y ffeil cyfluniad\n" +" -o=? Gosod opsiwn cyfluniad mympwyol, ee -o dir::cache=/tmp\n" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Digwyddod gwall wrth brosesu %s (FindPkg)" - -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" -"Jiw, rhagoroch chi'r nifer o enwau pecyn mae'r APT hwn yn gallu ei drin." +msgid "Can not find a package for architecture '%s'" +msgstr "Methwyd canfod pecyn %s" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Jiw, rhagoroch chi'r nifer o fersiynau mae'r APT hwn yn gallu ei drin." +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Methwyd canfod pecyn %s" -#: apt-pkg/pkgcachegen.cc:263 -#, fuzzy -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Jiw, rhagoroch chi'r nifer o fersiynau mae'r APT hwn yn gallu ei drin." +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Methwyd canfod pecyn %s" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "" -"Jiw, rhagoroch chi'r nifer o ddibyniaethau mae'r APT hwn yn gallu ei drin." +#: cmdline/apt-get.cc:367 +#, fuzzy, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Methwyd stat() o'r rhestr pecyn ffynhonell %s" -#: apt-pkg/pkgcachegen.cc:576 +#: cmdline/apt-get.cc:423 #, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "Ni chanfuwyd pecyn %s %s wrth brosesu dibyniaethau ffeil" +msgid "Can not find version '%s' of package '%s'" +msgstr "" -#: apt-pkg/pkgcachegen.cc:1211 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Methwyd stat() o'r rhestr pecyn ffynhonell %s" +msgid "Couldn't find package %s" +msgstr "Methwyd canfod pecyn %s" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -#, fuzzy -msgid "Reading package lists" -msgstr "Yn Darllen Rhestrau Pecynnau" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, fuzzy, c-format +msgid "%s set to manually installed.\n" +msgstr "ond mae %s yn mynd i gael ei sefydlu" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Yn Casglu Darpariaethau Ffeil" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "ond mae %s yn mynd i gael ei sefydlu" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Ni ellir ysgrifennu i %s" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Gwall M/A wrth gadw'r storfa ffynhonell" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +#, fuzzy +msgid "Internal error, problem resolver broke stuff" +msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Ni ellir cloi'r cyfeiriadur lawrlwytho" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Rhaid penodi o leiaf un pecyn i gyrchi ffynhonell ar ei gyfer" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "Ni ellir canfod pecyn ffynhonell ar gyfer %s" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" +#: cmdline/apt-get.cc:786 +#, c-format +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" +#: cmdline/apt-get.cc:791 +#, c-format +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "methwyd ailenwi, %s (%s -> %s)." +#: cmdline/apt-get.cc:843 +#, fuzzy, c-format +msgid "Skipping already downloaded file '%s'\n" +msgstr "Yn hepgor dadbacio y ffynhonell wedi ei dadbacio eisioes yn %s\n" -#: apt-pkg/acquire-item.cc:163 -#, fuzzy -msgid "Hash Sum mismatch" -msgstr "Camgyfatebiaeth swm MD5" +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#, fuzzy, c-format +msgid "Couldn't determine free space in %s" +msgstr "Does dim digon o le rhydd yn %s gennych" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Camgyfatebiaeth maint" +#: cmdline/apt-get.cc:882 +#, c-format +msgid "You don't have enough free space in %s" +msgstr "Does dim digon o le rhydd yn %s gennych" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Gweithred annilys %s" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 +#, c-format +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Rhaid cyrchu %sB/%sB o archifau ffynhonell.\n" -#: apt-pkg/acquire-item.cc:1573 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" +msgid "Need to get %sB of source archives.\n" +msgstr "Rhaid cyrchu %sB o archifau ffynhonell.\n" -# FIXME: number? -#: apt-pkg/acquire-item.cc:1589 +#: cmdline/apt-get.cc:902 #, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" +msgid "Fetch source %s\n" +msgstr "Cyrchu Ffynhonell %s\n" -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Methwyd cyrchu rhai archifau." -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Lawrlwytho yn gyflawn ac yn y modd lawrlwytho'n unig" + +#: cmdline/apt-get.cc:950 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Yn hepgor dadbacio y ffynhonell wedi ei dadbacio eisioes yn %s\n" -#: apt-pkg/acquire-item.cc:1691 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" +msgid "Unpack command '%s' failed.\n" +msgstr "Methodd y gorchymyn dadbacio '%s'.\n" -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:964 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" +msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:992 #, c-format -msgid "GPG error: %s: %s" +msgid "Build command '%s' failed.\n" +msgstr "Methodd y gorchymyn adeiladu '%s'.\n" + +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Methodd proses plentyn" + +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" msgstr "" +"Rhaid penodi o leiaf un pecyn i wirio dibyniaethau adeiladu ar eu cyfer" -# FIXME: case -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -"Methais i leoli ffeila r gyfer y pecyn %s. Fa all hyn olygu bod rhaid i chi " -"drwsio'r pecyn hyn a law. (Oherwydd pensaerniaeth coll.)" -#: apt-pkg/acquire-item.cc:1925 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" +msgid "Unable to get build-dependency information for %s" +msgstr "Ni ellir cyrchu manylion dibyniaeth adeiladu ar gyfer %s" + +#: cmdline/apt-get.cc:1102 +#, c-format +msgid "%s has no build depends.\n" +msgstr "Nid oes dibyniaethau adeiladu gan %s.\n" + +#: cmdline/apt-get.cc:1272 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" msgstr "" +"Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn " +"%s" -#: apt-pkg/acquire-item.cc:1983 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"The package index files are corrupted. No Filename: field for package %s." +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -"Mae'r ffeiliau mynegai pecyn yn llygr. Dim maes Filename: gan y pecyn %s." +"Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn " +"%s" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Nid yw'r bloc darparwr %s yn cynnwys ôl bys" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"Methwyd bodloni dibynniaeth %s am %s: Mae'r pecyn sefydliedig %s yn rhy " +"newydd" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: cmdline/apt-get.cc:1352 #, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "Mae'r cyfeiriadur rhestrau %spartial ar goll." +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"Ni ellir bodloni'r dibyniaeth %s ar gyfer %s oherwydd does dim fersiwn sydd " +"ar gael o'r pecyn %s yn gallu bodloni'r gofynion ferswin" -#: apt-pkg/acquire.cc:91 +#: cmdline/apt-get.cc:1358 #, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "Mae'r cyfeiriadur archif %spartial ar goll." +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn " +"%s" -#: apt-pkg/acquire.cc:99 -#, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "Ni ellir cloi'r cyfeiriadur rhestr" +#: cmdline/apt-get.cc:1381 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Methwyd bodloni dibyniaeth %s am %s: %s" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Methwyd bodloni'r dibyniaethau adeiladu ar gyfer %s." -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Methwyd prosesu dibyniaethau adeiladu" + +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 #, fuzzy, c-format -msgid "Retrieving file %li of %li" -msgstr "Yn Darllen Rhestr Ffeiliau" +msgid "Changelog for %s (%s)" +msgstr "Yn cysylltu i %s (%s)" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Methwyd cyrchu %s %s\n" +#: cmdline/apt-get.cc:1592 +#, fuzzy +msgid "Supported modules:" +msgstr "Modylau a Gynhelir:" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +# FIXME: split +#: cmdline/apt-get.cc:1633 #, fuzzy msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"Methwodd rhai ffeiliau mynegai lawrlwytho: maent wedi eu anwybyddu, neu hen " -"rai eu defnyddio yn lle." +"Defnydd: apt-get [opsiynnau] gorchymyn\n" +" apt-get [opsiynnau] install|remove pecyn1 [pecyn2 ...]\n" +" apt-get [opsiynnau] source pecyn1 [pecyn2 ...]\n" +"\n" +"Mae apt-get yn rhyngwyneb llinell orchymyn syml ar gyfer lawrlwytho a\n" +"sefydlu pecynnau. Y gorchmynion \"update\" a \"install\" yw'r rhai a\n" +"ddefnyddir amlaf.\n" +"\n" +"Gorchmynion:\n" +" update - Cyrchu rhestrau pecynnau newydd\n" +" update - Uwchraddio pecynnau wedi sefydlu\n" +" install - Sefydlu pecynnau newydd (defnyddiwch libc6 nid libc6.deb)\n" +" remove - Tynnu pecynnau\n" +" source - Lawrlwytho archifau ffynhonell\n" +" build-dep - Cyflunio dibyniaethau adeiladu ar gyfer pecynnau ffynhonell\n" +" dist-upgrade - Uwchraddio dosraniad, gweler apt-get(8)\n" +" dselect-upgrade - Dilyn dewisiadau dselect\n" +" clean - Dileu ffeiliau archif wedi eu lawrlwytho\n" +" autoclean - Dileu hen ffeiliau archif wedi eu lawrlwytho\n" +" check - Gwirio fod dim dibyniaethau torredig\n" +"\n" +"Opsiynnau:\n" +" -h Y testun cymorth hwn.\n" +" -q Allbwn cofnodadwy - dim dangosydd cynydd\n" +" -qq Dim allbwn ar wahan i wallau\n" +" -d Lawrlwytho yn unig - peidio a sefydlu na dadbacio archifau\n" +" -s Peidio gweithredu. Gwneir efelychiad trefn.\n" +" -y Peidio a gofyn cwestiynnau a chymryd yn ganiataol mai 'Ie' yw'r ateb\n" +" -f Ceisio mynd ymlaen os mae'r prawf integredd yn methu\n" +" -m Ceisio mynd ymlaen os methir dod o hyd i archifau\n" +" -u Dangos rhestr o archifau a uwchraddir hefyd\n" +" -b Adeiladu'r pecyn ffynhonell ar ôl ei lawrlwytho\n" +" -V Dangos rhifau fersiwn cyflawn\n" +" -c=? Darllen y ffeil cyfluniad hwn\n" +" -o=? Gosod opsiwn cyfluniad mympwyol, ee -o dir::cache=/tmp\n" +"\n" +"Gweler y tudalenau llawlyfr apt-get(8) sources.list(5) a apt.conf(5) am\n" +"fwy o wybodaeth ac opsiynnau.\n" +"\n" +" Mae gan yr APT hwn bŵerau buwch hudol.\n" -# FIXME: ...file -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Rhaid i chi rhoi rhai URI 'source' yn eich ffeil sources.list" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Rhaid penodi o leiaf un pecyn i gyrchi ffynhonell ar ei gyfer" -#: apt-pkg/policy.cc:83 -#, c-format -msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -# FIXME: literal -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Cofnod annilys yn y ffeil hoffterau, dim pennawd 'Package'" - -# FIXME: tense -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Methwyd daeall y math pin %s" - -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Dim blaenoriath (neu sero) wedi ei benodi ar gyfer pin" - -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: cmdline/apt-helper.cc:66 msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-mark.cc:68 #, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Methwyd agor ffeil %s" - -# FIXME: %s may have an arbirrary length -#: apt-pkg/packagemanager.cc:583 -#, c-format -msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." -msgstr "" -"Bydd y rhediad sefydlu hwn yn gorfodi tynnu'r pecyn angenrheidiol %s " -"oherwydd lŵp gwrthdaro/cynddibynu. Mae hyn yn aml yn wael, ond os ydych wir " -"eisiau ei wneud ef, gweithredwch yr opsiwn APT::Force-LoopBreak." +msgid "%s can not be marked as it is not installed.\n" +msgstr "ond nid yw wedi ei sefydlu" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Llinell %u yn rhy hir yn y rhestr ffynhonell %s." +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "ond mae %s yn mynd i gael ei sefydlu" -#: apt-pkg/cdrom.cc:571 -#, fuzzy -msgid "Unmounting CD-ROM...\n" -msgstr "CD Anghywir" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "ond mae %s yn mynd i gael ei sefydlu" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n" -#: apt-pkg/cdrom.cc:599 -#, fuzzy -msgid "Waiting for disc...\n" -msgstr "Yn aros am benawdau" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "" +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 +#, fuzzy, c-format +msgid "Waited for %s but it wasn't there" +msgstr "Arhoswyd am %s ond nid oedd e yna" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "ond mae %s yn mynd i gael ei sefydlu" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "Methwyd agor %s" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -#: apt-pkg/cdrom.cc:734 -#, c-format +#: cmdline/apt-mark.cc:392 msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: apt-pkg/cdrom.cc:744 +#: cmdline/apt.cc:47 msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" - -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -#: apt-pkg/cdrom.cc:817 +#: methods/cdrom.cc:203 #, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" - -#: apt-pkg/cdrom.cc:819 -#, fuzzy -msgid "Copying package lists..." -msgstr "Yn Darllen Rhestrau Pecynnau" +msgid "Unable to read the cdrom database %s" +msgstr "Methwyd darllen y cronfa ddata CD-ROM %s" -#: apt-pkg/cdrom.cc:863 +#: methods/cdrom.cc:212 #, fuzzy -msgid "Writing new source list\n" -msgstr "Llinell %u yn rhy hir yn y rhestr ffynhonell %s." - -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "" - -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"Mae angen ailsefydlu'r pecyn %s, ond dydw i ddim yn gallu canfod archif ar " -"ei gyfer." - -#: apt-pkg/algorithms.cc:1086 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Gwall: Cynhyrchodd pkgProblemResolver::Resolve doriadau. Fe all hyn fod wedi " -"ei achosi gan pecynnau wedi eu dal." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" msgstr "" -"Ni ellir cywiro'r problemau gan eich bod chi wedi dal pecynnau torredig." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -#, fuzzy -msgid "Building dependency tree" -msgstr "Yn Aideladu Coeden Dibyniaeth" - -#: apt-pkg/depcache.cc:139 -#, fuzzy -msgid "Candidate versions" -msgstr "Fersiynau Posib" - -#: apt-pkg/depcache.cc:168 -#, fuzzy -msgid "Dependency generation" -msgstr "Cynhyrchaid Dibyniaeth" +"Defnyddiwch apt-cdrom fel bo APT yn adnabod y CD hwn. Ni ellir defnyddio apt-" +"get update i ychwanegu CDau newydd." -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +#: methods/cdrom.cc:222 #, fuzzy -msgid "Reading state information" -msgstr "Yn cyfuno manylion Ar Gael" - -#: apt-pkg/depcache.cc:250 -#, fuzzy, c-format -msgid "Failed to open StateFile %s" -msgstr "Methwyd agor %s" - -#: apt-pkg/depcache.cc:256 -#, fuzzy, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Methwyd ysgrifennu ffeil %s" +msgid "Wrong CD-ROM" +msgstr "CD Anghywir" -# FIXME: number? -#: apt-pkg/tagfile.cc:140 +#: methods/cdrom.cc:249 #, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "" +"Ni ellir datglymu'r CD-ROM yn %s. Efallai ei fod e'n cael ei ddefnyddio." -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Ni ellir gramadegu ffeil becynnau %s (2)" +#: methods/cdrom.cc:254 +#, fuzzy +msgid "Disk not found." +msgstr "Ffeil heb ei ganfod" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Ni chanfuwyd y rhyddhad '%s' o '%s'" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Ffeil heb ei ganfod" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Ni chanfuwyd y fersiwn '%s' o '%s' " +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Methwyd stat()" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "Ni ellir lleoli'r pecyn %s" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Methwyd gosod amser newid" -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "Methwyd canfod pecyn %s" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI annilys: rhaid i URIs lleol beidio a cychwyn efo \"//\"" -#: apt-pkg/cacheset.cc:609 -#, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Methwyd canfod pecyn %s" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Yn mewngofnodi" -#: apt-pkg/cacheset.cc:615 +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Ni ellir darganfod enw'r cymar" + +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Ni ellir darganfod yr enw lleol" + +#: methods/ftp.cc:219 methods/ftp.cc:247 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Methwyd canfod pecyn %s" +msgid "The server refused the connection and said: %s" +msgstr "Gwrthodwyd y gweinydd ein cysyllriad, a dwedodd: %s" -#: apt-pkg/cacheset.cc:626 +#: methods/ftp.cc:225 #, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" +msgid "USER failed, server said: %s" +msgstr "Methodd gorchymyn USER; meddai'r gweinydd: %s" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: methods/ftp.cc:232 #, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" +msgid "PASS failed, server said: %s" +msgstr "Methodd gorchymyn PASS; meddai'r gweinydd: %s" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" +"Penodwyd gweinydd dirprwy ond dim sgript mengofnodi. (Mae Acquire::ftp::" +"ProxyLogin yn wag.)" -#: apt-pkg/cacheset.cc:655 +# FIXME +#: methods/ftp.cc:280 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Methodd y gorchymyn sgript mewngofnodi '%s'; meddai'r gweinydd: %s" -#: apt-pkg/cacheset.cc:663 +#: methods/ftp.cc:306 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" +msgid "TYPE failed, server said: %s" +msgstr "Methodd gorchymyn TYPE; meddai'r gweinydd: %s" -# FIXME: number? -#: apt-pkg/indexrecords.cc:78 -#, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Goramser cysylltu" -#: apt-pkg/indexrecords.cc:86 -#, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "Sylwer, yn dewis %s yn hytrach na %s\n" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Caeodd y gweinydd y cysylltiad" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Gwall darllen" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Llinell annilys yn y ffeil dargyfeirio: %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Gorlifodd ateb y byffer." -# FIXME: number? -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Llygr protocol" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu URI)" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Gwall ysgrifennu" -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Methwyd creu soced" -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (dosranniad)" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Methwyd cysylltu soced data, goramserodd y cyslltiad" -#: apt-pkg/sourcelist.cc:184 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "" -"Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Methwyd" -#: apt-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "" -"Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)" +#: methods/ftp.cc:718 +#, fuzzy +msgid "Could not connect passive socket." +msgstr "Methwyd cysylltu soced goddefol" -#: apt-pkg/sourcelist.cc:193 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)" +# FIXME +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "Methodd getaddrinfo gael soced gwrando" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (URI)" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Methwyd rhwymo soced" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (dosranniad)" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Methwyd gwrando ar y soced" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu URI)" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Methwyd canfod enw'r soced" -#: apt-pkg/sourcelist.cc:217 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (dosranniad llwyr)" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Methwyd danfod gorchymyn PORT" -#: apt-pkg/sourcelist.cc:224 +#: methods/ftp.cc:802 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "" -"Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)" +msgid "Unknown address family %u (AF_*)" +msgstr "Teulu cyfeiriad anhysbys %u (AF_*)" -#: apt-pkg/sourcelist.cc:335 +#: methods/ftp.cc:811 #, c-format -msgid "Opening %s" -msgstr "Yn agor %s" +msgid "EPRT failed, server said: %s" +msgstr "Methodd gorchymyn EPRT; meddai'r gweinydd: %s" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Llinell camffurfiol %u yn y rhestr ffynhonell %s (math)" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Goramserodd cysylltiad y soced data" -#: apt-pkg/sourcelist.cc:375 -#, fuzzy, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Mae'r math '%s' yn anhysbys ar linell %u yn y rhestr ffynhonell %s" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Methwyd derbyn cysylltiad" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Mae'r math '%s' yn anhysbys ar linell %u yn y rhestr ffynhonell %s" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problem wrth stwnshio ffeil" -#: apt-pkg/deb/dpkgpm.cc:95 -#, fuzzy, c-format -msgid "Installing %s" -msgstr " Wedi Sefydlu: " +#: methods/ftp.cc:890 +#, c-format +msgid "Unable to fetch file, server said '%s'" +msgstr "Methwyd cyrchu ffeil; meddai'r gweinydd '%s'" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, fuzzy, c-format -msgid "Configuring %s" -msgstr "Yn cysylltu i %s" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Goramserodd soced data" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, fuzzy, c-format -msgid "Removing %s" -msgstr "Yn agor %s" +#: methods/ftp.cc:935 +#, c-format +msgid "Data transfer failed, server said '%s'" +msgstr "Methodd trosgludiad data; meddai'r gweinydd '%s'" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "Methwyd dileu %s" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Ymholiad" -#: apt-pkg/deb/dpkgpm.cc:99 +# FIXME +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Methwyd gweithredu " + +#: methods/connect.cc:76 #, c-format -msgid "Noting disappearance of %s" -msgstr "" +msgid "Connecting to %s (%s)" +msgstr "Yn cysylltu i %s (%s)" -#: apt-pkg/deb/dpkgpm.cc:100 +#: methods/connect.cc:87 #, c-format -msgid "Running post-installation trigger %s" -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, fuzzy, c-format -msgid "Directory '%s' missing" -msgstr "Mae'r cyfeiriadur rhestrau %spartial ar goll." +#: methods/connect.cc:94 +#, c-format +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Methwyd creu soced ar gyfer %s (f=%u t=%u p=%u)" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "Methwyd agor ffeil %s" +#: methods/connect.cc:100 +#, c-format +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Ni ellir cychwyn y cysylltiad i %s:%s (%s)." -#: apt-pkg/deb/dpkgpm.cc:989 -#, fuzzy, c-format -msgid "Preparing %s" -msgstr "Yn agor %s" +#: methods/connect.cc:108 +#, c-format +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Methwyd cysylltu i %s:%s (%s), goramserodd y cysylltiad" -#: apt-pkg/deb/dpkgpm.cc:990 -#, fuzzy, c-format -msgid "Unpacking %s" -msgstr "Yn agor %s" +#: methods/connect.cc:126 +#, c-format +msgid "Could not connect to %s:%s (%s)." +msgstr "Methwyd cysylltu i %s:%s (%s)." -#: apt-pkg/deb/dpkgpm.cc:995 -#, fuzzy, c-format -msgid "Preparing to configure %s" -msgstr "Yn agor y ffeil cyfluniad %s" +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 +#, c-format +msgid "Connecting to %s" +msgstr "Yn cysylltu i %s" -#: apt-pkg/deb/dpkgpm.cc:997 -#, fuzzy, c-format -msgid "Installed %s" -msgstr " Wedi Sefydlu: " +#: methods/connect.cc:180 methods/connect.cc:199 +#, c-format +msgid "Could not resolve '%s'" +msgstr "Methwyd datrys '%s'" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: methods/connect.cc:205 #, c-format -msgid "Preparing for removal of %s" -msgstr "" +msgid "Temporary failure resolving '%s'" +msgstr "Methiant dros dro yn datrys '%s'" -#: apt-pkg/deb/dpkgpm.cc:1004 +#: methods/connect.cc:209 #, fuzzy, c-format -msgid "Removed %s" -msgstr "Argymell" +msgid "System error resolving '%s:%s'" +msgstr "Digwyddodd rhywbweth hyll wrth ddatrys '%s:%s' (%i)" -#: apt-pkg/deb/dpkgpm.cc:1009 +#: methods/connect.cc:211 #, fuzzy, c-format -msgid "Preparing to completely remove %s" -msgstr "Yn agor y ffeil cyfluniad %s" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Digwyddodd rhywbweth hyll wrth ddatrys '%s:%s' (%i)" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: methods/connect.cc:258 #, fuzzy, c-format -msgid "Completely removed %s" -msgstr "Methwyd dileu %s" +msgid "Unable to connect to %s:%s:" +msgstr "Methwyd cysylltu i %s %s:" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Ni ellir ysgrifennu i %s" - -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 -#, fuzzy, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Arhoswyd am %s ond nid oedd e yna" - -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 +#, c-format +msgid "" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" msgstr "" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +#, fuzzy +msgid "The following signatures were invalid:\n" +msgstr "Caiff y pecynnau canlynol ychwanegol eu sefydlu:" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: methods/gpgv.cc:231 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Gwall wrth ysgrifennu at y ffeil" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" +#: methods/http.cc:523 +#, fuzzy +msgid "Error reading from server. Remote end closed connection" +msgstr "Gwall wrth ddarllen o'r gweinydd: caeodd yr ochr pell y cysylltiad" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Gwall wrth ddarllen o'r gweinydd" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Gwall wrth ysgrifennu at ffeil" -#: apt-pkg/deb/debsystem.cc:94 -#, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Ni ellir cloi'r cyfeiriadur rhestr" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Methwyd dewis" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Goramserodd y cysylltiad" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Gwall wrth ysgrifennu i ffeil allbwn" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Yn aros am benawdau" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Llinell pennawd gwael" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "" +#: methods/server.cc:134 methods/server.cc:141 +#, fuzzy +msgid "The HTTP server sent an invalid reply header" +msgstr "Danfonodd y gweinydd HTTP bennawd ateb annilys" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "" +#: methods/server.cc:171 +#, fuzzy +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "Danfonodd y gweinydd HTTP bennawd Content-Length annilys" -#: apt-pkg/contrib/strutl.cc:1243 -#, c-format -msgid "Selection %s not found" -msgstr "Ni chanfuwyd y dewis %s" +#: methods/server.cc:194 +#, fuzzy +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "Danfonodd y gweinydd HTTP bennawd Content-Range annilys" -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Ddim yn cloi'r ffeil clo darllen-yn-unig %s" +#: methods/server.cc:196 +#, fuzzy +msgid "This HTTP server has broken range support" +msgstr "Mae cynaliaeth amrediad y gweinydd hwn wedi torri" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Methwyd agor y ffeil clo %s" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Fformat dyddiad anhysbys" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Ddim yn cloi'r ffeil clo ar NFS %s" +#: methods/server.cc:489 +#, fuzzy +msgid "Bad header data" +msgstr "Data pennawd gwael" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Methwyd cael y clo %s" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Methodd y cysylltiad" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Gwall mewnol" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" -msgstr "" +#: apt-private/private-install.cc:91 +#, fuzzy +msgid "Packages need to be removed but remove is disabled." +msgstr "Rhaid tynnu pecynnau on mae Tynnu wedi ei analluogi." -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Derbyniodd is-broses %s wall segmentu." +#: apt-private/private-install.cc:110 +#, fuzzy +msgid "Internal error, Ordering didn't finish" +msgstr "Gwall Mewnol wrth ychwanegu dargyfeiriad" -#: apt-pkg/contrib/fileutl.cc:826 -#, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "Derbyniodd is-broses %s wall segmentu." +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Dychwelodd is-broses %s gôd gwall (%u)" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Mae angeyn cyrchu %sB/%sB o archifau.\n" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Gorffenodd is-broses %s yn annisgwyl" - -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Gwall ysgrifennu" +msgid "Need to get %sB of archives.\n" +msgstr "Mae angen cyrchu %sB o archifau.\n" -#: apt-pkg/contrib/fileutl.cc:913 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Gwall wrth gau'r ffeil" - -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Methwyd agor ffeil %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Ar ôl dadbacio defnyddir %sB o ofod disg ychwanegol.\n" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "Methwyd agor pibell ar gyfer %s" - -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Methwyd creu isbroses IPC" - -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Methwyd gweithredu cywasgydd " - -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Gwall darllen" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Ar ôl dadbactio caiff %sB o ofod disg ei rhyddhau.\n" -# FIXME -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "o hyd %lu i ddarllen ond dim ar ôl" +#: apt-private/private-install.cc:200 +#, c-format +msgid "You don't have enough free space in %s." +msgstr "Does dim digon o le rhydd gennych yn %s." -# FIXME -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "o hyd %lu i ysgrifennu ond methwyd" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Mae problemau a defnyddwyd -y heb --force-yes" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Gwall wrth gau'r ffeil" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Penodwyd Syml Yn Unig ond nid yw hyn yn weithred syml." -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Gwall wrth gyfamseru'r ffeil" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Ie, gwna fel rydw i'n dweud!" -#: apt-pkg/contrib/fileutl.cc:1938 +#: apt-private/private-install.cc:222 #, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "Gwall wrth dadgysylltu'r ffeil" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Rydych ar fin gwneud rhywbeth a all fod yn niweidiol\n" +"Er mwyn mynd ymlaen, teipiwch y frawddeg '%s'\n" +" ?]" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Gwall wrth gyfamseru'r ffeil" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Erthylu." -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Gwall!" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Ydych chi eisiau mynd ymlaen?" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Wedi Gorffen" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Methodd rhai ffeiliau lawrlwytho" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"Ni ellir cyrchu rhai archifau, efallai dylwch rhedeg apt-get update, neu " +"geidio defnyddio --fix-missing?" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Wedi Gorffen" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Ni ellir defnyddio mmap() ar ffeil gwag" - -#: apt-pkg/contrib/mmap.cc:111 -#, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Methwyd agor pibell ar gyfer %s" - -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Methwyd gwneud mmap() efo %lu beit" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "Ni chynhelir cyfnewid cyfrwng efo --fix-missing ar hyn o bryd" -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "Ni ellir agor %s" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Ni ellir cywiro pecynnau ar goll." -# FIXME -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#: apt-private/private-install.cc:330 #, fuzzy -msgid "Unable to synchronize mmap" -msgstr "Methwyd gweithredu " - -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Methwyd gwneud mmap() efo %lu beit" +msgid "Aborting install." +msgstr "Yn Erthylu'r Sefydliad." -#: apt-pkg/contrib/mmap.cc:322 -#, fuzzy -msgid "Failed to truncate file" -msgstr "Methwyd ysgrifennu ffeil %s" +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-pkg/contrib/mmap.cc:449 +#: apt-private/private-install.cc:499 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Ni ellir gwneud stat() o'r pwynt clymu %s" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Gall y wybodaeth canlynol gynorthwyo'n datrys y sefyllfa:" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Methwyd gwneud stat() o'r CD-ROM" +#: apt-private/private-install.cc:506 +#, fuzzy +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Talgryniad math anhysbys: '%c'" +#: apt-private/private-install.cc:513 +#, fuzzy +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" +msgstr[1] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Yn agor y ffeil cyfluniad %s" +#: apt-private/private-install.cc:517 +#, fuzzy, c-format +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" +msgstr[1] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Gwall cystrawen %s:%u: Mae bloc yn cychwyn efo dim enw." +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "" +msgstr[1] "" -# FIXME -#: apt-pkg/contrib/configuration.cc:820 -#, fuzzy, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Gwall cystrawen %s:%u: Tag wedi camffurfio" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Efallai hoffech rhedeg 'apt-get -f install' er mwyn cywiro'r rhain:" -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Gwall cystrawen %s:%u: Sbwriel ychwanegol ar ôl y gwerth" +# FIXME +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"Dibyniaethau heb eu bodloni. Ceisiwch rhedeg 'apt-get -f install' efo dim " +"pecyn (neu penodwch ddatrys)" -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" +# FIXME: needs commas +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." msgstr "" -"Gwall cystrawen %s:%u: Ceir defnyddio cyfarwyddyd ar y lefel dop yn unig" +"Methwyd sefydlu rhai pecynnau. Gall hyn olygu eich bod chi wedi gofyn\n" +"am sefyllfa amhosib neu, os ydych chi'n defnyddio'r dosraniad\n" +"ansefydlog, fod rhai pecynnau angenrheidiol heb gael eu creu eto neu\n" +"heb gael eu symud allan o Incoming." -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Gwall cystrawen %s:%u: Gormod o gynhwysion nythol" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Pecynnau wedi torri" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Gwall cystrawen %s:%u: Cynhwyswyd o fan hyn" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Caiff y pecynnau canlynol ychwanegol eu sefydlu:" -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Gwall cystrawen %s:%u: Cyfarwyddyd ni gynhelir '%s'" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Pecynnau a awgrymmir:" -#: apt-pkg/contrib/configuration.cc:900 -#, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Gwall cystrawen %s:%u: Ceir defnyddio cyfarwyddyd ar y lefel dop yn unig" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Pecynnau a argymhellir:" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-private/private-install.cc:825 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Gwall cystrawen %s:%u: Sbwriel ychwanegol ar ddiwedd y ffeil" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Yn hepgor %s, mae wedi ei sefydlu a nid yw uwchraddio wedi ei osod.\n" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-private/private-install.cc:829 #, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "Yn Erthylu'r Sefydliad." - -# FIXME -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Ni adnabyddir yr opsiwn llinell orchymyn '%c' (o %s)." - -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "Ni adnabyddir yr opsiwn llinell orchymyn %s" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "Yn hepgor %s, mae wedi ei sefydlu a nid yw uwchraddio wedi ei osod.\n" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-private/private-install.cc:841 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Nid yw'r opsiwn llinell orchymyn %s yn fŵleaidd" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Nid yw ailsefydlu %s yn bosib, gan ni ellir ei lawrlwytho.\n" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-private/private-install.cc:846 #, c-format -msgid "Option %s requires an argument." -msgstr "Mae'r opsiwn %s yn mynnu ymresymiad." +msgid "%s is already the newest version.\n" +msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Opsiwn %s: Rhaid i benodiad eitem cyfluniad gael =<gwerth>." +#: apt-private/private-install.cc:894 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Dewiswyd fersiwn %s (%s) ar gyfer %s\n" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Mae'r opsiwn %s yn mynnu ymresymiad cyfanrif, nid '%s'" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Dewiswyd fersiwn %s (%s) ar gyfer %s\n" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Opsiwn '%s' yn rhy hir" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "Nid yw'r pecyn %s wedi ei sefydlu, felly ni chaif ei dynnu\n" -# FIXME: 'Sense'? -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Ni ddeallir %s, ceiswich ddefnyddio 'true' neu 'false'." +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Nid yw'r pecyn %s wedi ei sefydlu, felly ni chaif ei dynnu\n" -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "Gweithred annilys %s" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: cmdline/apt-cache.cc:149 +#: apt-private/private-list.cc:164 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Mae gan y pecyn %s fersiwn %s ddibyniaeth heb ei gwrdd:\n" - -#: cmdline/apt-cache.cc:277 -#, fuzzy -msgid "Total package names: " -msgstr "Cyfanswm Enwau Pecynnau : " - -#: cmdline/apt-cache.cc:279 -#, fuzzy -msgid "Total package structures: " -msgstr "Cyfanswm Enwau Pecynnau : " - -#: cmdline/apt-cache.cc:319 -#, fuzzy -msgid " Normal packages: " -msgstr " Pecynnau Normal: " - -#: cmdline/apt-cache.cc:320 -#, fuzzy -msgid " Pure virtual packages: " -msgstr " Pecynnau Cwbl Rhithwir: " +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:321 -#, fuzzy -msgid " Single virtual packages: " -msgstr " Pecynnau Rhithwir Sengl: " +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Yn cywiro dibyniaethau..." -#: cmdline/apt-cache.cc:322 -#, fuzzy -msgid " Mixed virtual packages: " -msgstr " Pecynnau Rhithwir Cymysg: " +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " wedi methu." -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Ar Goll: " +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Ni ellir cywiro dibyniaethau" -#: cmdline/apt-cache.cc:325 -#, fuzzy -msgid "Total distinct versions: " -msgstr "Cyfanswm Fersiynau Gwahanol: " +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Ni ellir bychanu y set uwchraddio" -#: cmdline/apt-cache.cc:327 -#, fuzzy -msgid "Total distinct descriptions: " -msgstr "Cyfanswm Fersiynau Gwahanol: " +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Wedi Gorffen" -#: cmdline/apt-cache.cc:329 -#, fuzzy -msgid "Total dependencies: " -msgstr "Cyfanswm Dibyniaethau: " +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Efallai hoffech rhedeg 'apt-get -f install' er mwyn cywiro'r rhain." -#: cmdline/apt-cache.cc:332 -#, fuzzy -msgid "Total ver/file relations: " -msgstr "Cyfanswm perthyniadau fersiwn/ffeil: " +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Dibyniaethau heb eu bodloni. Ceisiwch ddefnyddio -f." -#: cmdline/apt-cache.cc:334 -#, fuzzy -msgid "Total Desc/File relations: " -msgstr "Cyfanswm perthyniadau fersiwn/ffeil: " +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:336 -#, fuzzy -msgid "Total Provides mappings: " -msgstr "Cyfanswm Mapiau Darpariath: " +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Sefydliwyd]" -#: cmdline/apt-cache.cc:348 +#: apt-private/private-output.cc:238 #, fuzzy -msgid "Total globbed strings: " -msgstr "Cyfanswm Llinynau Glob: " +msgid "[installed,local]" +msgstr " [Sefydliwyd]" -#: cmdline/apt-cache.cc:362 -#, fuzzy -msgid "Total dependency version space: " -msgstr "Cyfanswm gofod Fersiwn Dibyniaeth: " +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#: cmdline/apt-cache.cc:367 +#: apt-private/private-output.cc:243 #, fuzzy -msgid "Total slack space: " -msgstr "Cyfanswm gofod Slac: " +msgid "[installed,automatic]" +msgstr " [Sefydliwyd]" -#: cmdline/apt-cache.cc:375 +#: apt-private/private-output.cc:245 #, fuzzy -msgid "Total space accounted for: " -msgstr "Cyfanswm Gofod Cyfrifwyd: " +msgid "[installed]" +msgstr " [Sefydliwyd]" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 +#: apt-private/private-output.cc:249 #, c-format -msgid "Package file %s is out of sync." -msgstr "Nid yw'r ffeil pecyn %s yn gydamseredig." - -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Canfuwyd dim pecyn" - -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "Rhaid i chi ddarparu un patrwm yn union" +msgid "[upgradable from: %s]" +msgstr "" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: cmdline/apt-cache.cc:1545 -#, fuzzy -msgid "Package files:" -msgstr "Ffeiliau Pecynnau:" +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "ond mae %s wedi ei sefydlu" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Nid yw'r storfa yn gydamserol, ni ellir croesgyfeirio ffeil pecym" +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "ond mae %s yn mynd i gael ei sefydlu" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -#, fuzzy -msgid "Pinned packages:" -msgstr "Pecynnau wedi eu Pinio:" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "ond ni ellir ei sefydlu" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(heb ganfod)" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "ond mae'n becyn rhithwir" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Wedi Sefydlu: " +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "ond nid yw wedi ei sefydlu" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Ymgeisydd: " +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "ond nid yw'n mynd i gael ei sefydlu" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(dim)" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " neu" -#: cmdline/apt-cache.cc:1620 -#, fuzzy -msgid " Package pin: " -msgstr " Pin Pecyn: " +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Mae gan y pecynnau canlynol ddibyniaethau heb eu bodloni:" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -#, fuzzy -msgid " Version table:" -msgstr " Tabl Fersiynnau:" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 -#, fuzzy, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s ar gyfer %s %s wedi ei grynhow ar %s %s\n" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Caiff y pecynnau canlynol eu TYNNU:" -#: cmdline/apt-cache.cc:1749 +#: apt-private/private-output.cc:551 #, fuzzy -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" -msgstr "" -"Defnydd: apt-cache [opsiynnau] gorchymyn\n" -" apt-cache [opsiynnau] add ffeil1 [ffeil2 ...]\n" -" apt-cache [opsiynnau] showpkg pecyn1 [pecyn2 ...]\n" -" apt-cache [opsiynnau] showsrc pecyn1 [pecyn2 ...]\n" -"\n" -"Mae apt-cache yn erfyn lefel isel a ddefnyddir i ymdrin a ffeiliau storfa " -"deuol APT, ac ymholi gwybodaeth ohonynt\n" -"\n" -"Gorchmynion:\n" -" add - Ychwanegu ffeil pecyn i'r storfa ffynhonell\n" -" gencaches - Adeiladu'r storfeydd pecyn a ffynhonell\n" -" showpkg - Dangos gwybodaeth cyffredinol am becyn sengl\n" -" showsrc - Dangos cofnodion ffynhonell\n" -" stats - Dangos rhyw ystadegau sylfaenol\n" -" dump - Dangos y ffeil cyfan mewn ffurf syml\n" -" dumpavail - Dangos ffeil argaeledd\n" -" unmet - Dangos dibyniaethau heb eu darparu\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" - -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "" +msgid "The following packages have been kept back:" +msgstr "Mae'r pecynnau canlynol wedi eu dal yn ôl" -#: cmdline/apt-cdrom.cc:91 +#: apt-private/private-output.cc:572 #, fuzzy -msgid "Please insert a Disc in the drive and press enter" -msgstr "" -"Newid Cyfrwng: Os gwelwch yn dda, rhowch y disg a'r label\n" -" '%s'\n" -"yn y gyrriant '%s' a gwasgwch Enter\n" - -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Methwyd ailenwi %s at %s" +msgid "The following packages will be upgraded:" +msgstr "Caiff y pecynnau canlynol eu uwchraddio" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-private/private-output.cc:593 +#, fuzzy +msgid "The following packages will be DOWNGRADED:" +msgstr "Caiff y pecynnau canlynol eu ISRADDIO" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Caiff y pecynnau wedi eu dal canlynol eu newid:" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Nid yw ymresymiadau mewn parau" +#: apt-private/private-output.cc:668 +#, c-format +msgid "%s (due to %s) " +msgstr "%s (oherwydd %s) " -#: cmdline/apt-config.cc:89 +#: apt-private/private-output.cc:676 #, fuzzy msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Defnydd: apt-config [opsiynnau] gorchymyn\n" -"\n" -"Mae apt-config yn erfyn syml sy'n darllen ffeil cyfluniad APT\n" -"\n" -"Gorchmynion:\n" -" shell - Modd plisgyn\n" -" dump - Dangod y cyfluniad\n" -"\n" -"Opsiynnau:\n" -" -h Y testun cymorth hwn\n" -" -c=? Darllen y ffeil cyfluniad\n" -" -o=? Gosod opsiwn cyfluniad mympwyol, ee -o dir::cache=/tmp\n" - -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Methwyd canfod pecyn %s" - -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Methwyd canfod pecyn %s" - -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Methwyd canfod pecyn %s" +"RHYBUDD: Caiff y pecynnau hanfodol canlynol eu tynnu\n" +"NI DDYLIR gwneud hyn os nad ydych chi'n gwybod yn union beth rydych chi'n\n" +"ei wneud!" -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Methwyd stat() o'r rhestr pecyn ffynhonell %s" +#: apt-private/private-output.cc:707 +#, c-format +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu wedi uwchraddio, %lu newydd eu sefydlu, " -#: cmdline/apt-get.cc:423 +#: apt-private/private-output.cc:711 #, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "" +msgid "%lu reinstalled, " +msgstr "%lu wedi ailsefydlu, " -#: cmdline/apt-get.cc:454 +#: apt-private/private-output.cc:713 #, c-format -msgid "Couldn't find package %s" -msgstr "Methwyd canfod pecyn %s" +msgid "%lu downgraded, " +msgstr "%lu wedi eu israddio, " -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, fuzzy, c-format -msgid "%s set to manually installed.\n" -msgstr "ond mae %s yn mynd i gael ei sefydlu" +#: apt-private/private-output.cc:715 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu i'w tynnu a %lu heb eu uwchraddio.\n" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "ond mae %s yn mynd i gael ei sefydlu" +#: apt-private/private-output.cc:719 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "%lu heb eu sefydlu na tynnu'n gyflawn.\n" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" msgstr "" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -#, fuzzy -msgid "Internal error, problem resolver broke stuff" -msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Ni ellir cloi'r cyfeiriadur lawrlwytho" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "I" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Rhaid penodi o leiaf un pecyn i gyrchi ffynhonell ar ei gyfer" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Ni ellir canfod pecyn ffynhonell ar gyfer %s" +msgid "Regex compilation error - %s" +msgstr "Gwall crynhoi patrwm - %s" -#: cmdline/apt-get.cc:786 +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Nid yw'r gorchymyn diweddaru yn derbyn ymresymiadau" + +#: apt-private/private-update.cc:90 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#: cmdline/apt-get.cc:791 +#: apt-private/private-show.cc:156 #, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" + +#: apt-private/private-main.cc:32 msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -#: cmdline/apt-get.cc:843 -#, fuzzy, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Yn hepgor dadbacio y ffynhonell wedi ei dadbacio eisioes yn %s\n" +#: apt-private/private-download.cc:36 +#, fuzzy +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "RHYBUDD: Ni ellir dilysu'r pecynnau canlynol yn ddiogel!" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 -#, fuzzy, c-format -msgid "Couldn't determine free space in %s" -msgstr "Does dim digon o le rhydd yn %s gennych" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "Does dim digon o le rhydd yn %s gennych" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +#, fuzzy +msgid "Some packages could not be authenticated" +msgstr "RHYBUDD: Ni ellir dilysu'r pecynnau canlynol yn ddiogel!" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Rhaid cyrchu %sB/%sB o archifau ffynhonell.\n" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Rhaid cyrchu %sB o archifau ffynhonell.\n" +msgid "Failed to fetch %s %s\n" +msgstr "Methwyd cyrchu %s %s\n" -#: cmdline/apt-get.cc:902 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "Fetch source %s\n" -msgstr "Cyrchu Ffynhonell %s\n" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Methwyd cyrchu rhai archifau." - -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Lawrlwytho yn gyflawn ac yn y modd lawrlwytho'n unig" - -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Yn hepgor dadbacio y ffynhonell wedi ei dadbacio eisioes yn %s\n" +msgid "Failed to parse %s. Edit again? " +msgstr "Methwyd ailenwi %s at %s" -#: cmdline/apt-get.cc:962 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Methodd y gorchymyn dadbacio '%s'.\n" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: cmdline/apt-get.cc:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" msgstr "" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "Methodd y gorchymyn adeiladu '%s'.\n" +#: apt-private/private-upgrade.cc:25 +#, fuzzy +msgid "Calculating upgrade... " +msgstr "Yn Cyfrifo'r Uwchraddiad... " -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Methodd proses plentyn" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Wedi Gorffen" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "" -"Rhaid penodi o leiaf un pecyn i wirio dibyniaethau adeiladu ar eu cyfer" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Presennol " -#: cmdline/apt-get.cc:1054 -#, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Cyrchu:" + +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Anwybyddu " -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Gwall " + +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Ni ellir cyrchu manylion dibyniaeth adeiladu ar gyfer %s" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Cyrchwyd %sB yn %s (%sB/s)\n" -#: cmdline/apt-get.cc:1101 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "%s has no build depends.\n" -msgstr "Nid oes dibyniaethau adeiladu gan %s.\n" +msgid " [Working]" +msgstr " [Gweithio]" -#: cmdline/apt-get.cc:1271 +#: apt-private/acqprogress.cc:297 #, fuzzy, c-format msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn " -"%s" +"Newid Cyfrwng: Os gwelwch yn dda, rhowch y disg a'r label\n" +" '%s'\n" +"yn y gyrriant '%s' a gwasgwch Enter\n" -#: cmdline/apt-get.cc:1289 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" -"Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn " -"%s" +msgid "Unable to read %s" +msgstr "Ni ellir darllen %s" -#: cmdline/apt-get.cc:1312 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "Unable to change to %s" +msgstr "Ni ellir newid i %s" + +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 +#, c-format +msgid "No mirror file '%s' found " msgstr "" -"Methwyd bodloni dibynniaeth %s am %s: Mae'r pecyn sefydliedig %s yn rhy " -"newydd" -#: cmdline/apt-get.cc:1351 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"Ni ellir bodloni'r dibyniaeth %s ar gyfer %s oherwydd does dim fersiwn sydd " -"ar gael o'r pecyn %s yn gallu bodloni'r gofynion ferswin" +msgid "Can not read mirror file '%s'" +msgstr "Methwyd agor ffeil %s" -#: cmdline/apt-get.cc:1357 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "" -"Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn " -"%s" +msgid "No entry found in mirror file '%s'" +msgstr "Methwyd agor ffeil %s" -#: cmdline/apt-get.cc:1380 +#: methods/mirror.cc:445 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Methwyd bodloni dibyniaeth %s am %s: %s" +msgid "[Mirror: %s]" +msgstr "" -#: cmdline/apt-get.cc:1395 -#, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Methwyd bodloni'r dibyniaethau adeiladu ar gyfer %s." +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Methwyd creu pibell cyfathrebu at isbroses" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Methwyd prosesu dibyniaethau adeiladu" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Caewyd y cysylltiad yn gynnar" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Yn cysylltu i %s (%s)" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Rhagosodiad gwael!" -#: cmdline/apt-get.cc:1591 +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Gwasgwch Enter er mwyn mynd ymlaen." + +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "" + +#: dselect/install:102 #, fuzzy -msgid "Supported modules:" -msgstr "Modylau a Gynhelir:" +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Digwyddod rhau gwallau wrth dadbacio. Rydw i'n mynd i gyflunio'r" -# FIXME: split -#: cmdline/apt-get.cc:1632 +#: dselect/install:103 #, fuzzy +msgid "will be configured. This may result in duplicate errors" +msgstr "pecynnau a gafwyd eu sefydlu. Gall hyn achosi gwallau dyblyg neu" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "wallau a achosir gan ddibyniaethau coll. Mae hyn yn iawn, dim ond y" + +#: dselect/install:105 msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"Defnydd: apt-get [opsiynnau] gorchymyn\n" -" apt-get [opsiynnau] install|remove pecyn1 [pecyn2 ...]\n" -" apt-get [opsiynnau] source pecyn1 [pecyn2 ...]\n" -"\n" -"Mae apt-get yn rhyngwyneb llinell orchymyn syml ar gyfer lawrlwytho a\n" -"sefydlu pecynnau. Y gorchmynion \"update\" a \"install\" yw'r rhai a\n" -"ddefnyddir amlaf.\n" -"\n" -"Gorchmynion:\n" -" update - Cyrchu rhestrau pecynnau newydd\n" -" update - Uwchraddio pecynnau wedi sefydlu\n" -" install - Sefydlu pecynnau newydd (defnyddiwch libc6 nid libc6.deb)\n" -" remove - Tynnu pecynnau\n" -" source - Lawrlwytho archifau ffynhonell\n" -" build-dep - Cyflunio dibyniaethau adeiladu ar gyfer pecynnau ffynhonell\n" -" dist-upgrade - Uwchraddio dosraniad, gweler apt-get(8)\n" -" dselect-upgrade - Dilyn dewisiadau dselect\n" -" clean - Dileu ffeiliau archif wedi eu lawrlwytho\n" -" autoclean - Dileu hen ffeiliau archif wedi eu lawrlwytho\n" -" check - Gwirio fod dim dibyniaethau torredig\n" -"\n" -"Opsiynnau:\n" -" -h Y testun cymorth hwn.\n" -" -q Allbwn cofnodadwy - dim dangosydd cynydd\n" -" -qq Dim allbwn ar wahan i wallau\n" -" -d Lawrlwytho yn unig - peidio a sefydlu na dadbacio archifau\n" -" -s Peidio gweithredu. Gwneir efelychiad trefn.\n" -" -y Peidio a gofyn cwestiynnau a chymryd yn ganiataol mai 'Ie' yw'r ateb\n" -" -f Ceisio mynd ymlaen os mae'r prawf integredd yn methu\n" -" -m Ceisio mynd ymlaen os methir dod o hyd i archifau\n" -" -u Dangos rhestr o archifau a uwchraddir hefyd\n" -" -b Adeiladu'r pecyn ffynhonell ar ôl ei lawrlwytho\n" -" -V Dangos rhifau fersiwn cyflawn\n" -" -c=? Darllen y ffeil cyfluniad hwn\n" -" -o=? Gosod opsiwn cyfluniad mympwyol, ee -o dir::cache=/tmp\n" -"\n" -"Gweler y tudalenau llawlyfr apt-get(8) sources.list(5) a apt.conf(5) am\n" -"fwy o wybodaeth ac opsiynnau.\n" -"\n" -" Mae gan yr APT hwn bŵerau buwch hudol.\n" +"gwallau uwchben y neges hwn sy'n bwysig. Trwsiwch nhw a rhedwch [S]efydlu " +"eto." -#: cmdline/apt-helper.cc:35 +#: dselect/update:30 +#, fuzzy +msgid "Merging available information" +msgstr "Yn cyfuno manylion Ar Gael" + +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "Galwyd DropNode ar nôd sydd o hyd wedi ei gysylltu" + +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Methyd lleoli yr elfen <hash>!" + +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Methwyd neilltuo dargyfeiriad" + +#: apt-inst/filelist.cc:464 #, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Rhaid penodi o leiaf un pecyn i gyrchi ffynhonell ar ei gyfer" +msgid "Internal error in AddDiversion" +msgstr "Gwall Mewnol yn AddDiversion" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: apt-inst/filelist.cc:477 +#, c-format +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Yn ceisio trosysgrifo dargyfeiriad, %s -> %s a %s/%s" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" +# FIXME: "the" +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "Ychwanegiad dwbl o'r dargyfeiriad %s -> %s" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "ond nid yw wedi ei sefydlu" +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "Ffeil cyfluniad dyblyg %s/%s" -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "ond mae %s yn mynd i gael ei sefydlu" +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" +msgstr "Mae'r llwybr %s yn rhy hir" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "ond mae %s yn mynd i gael ei sefydlu" +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" +msgstr "Yn dadbacio %s mwy nag unwaith" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n" +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "Mae'r cyfeiriadur %s wedi ei ddargyfeirio" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n" +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Mae'r pecyn yn ceisio ysgrifennu i'r targed dargyfeiriad %s/%s" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "ond mae %s yn mynd i gael ei sefydlu" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Mae llwybr y dargyfeiriad yn rhy hir" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Methwyd agor %s" +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 +#, c-format +msgid "Failed to stat %s" +msgstr "Methodd stat() o %s" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Methwyd ailenwi %s at %s" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" msgstr "" +"Mae'r cyfeiriadur %s yn cael ei amnewid efo rhywbeth nid cyfeiriadur ydyw" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Methwyd lleoli nôd yn ei fwced stwnsh" -#: methods/cdrom.cc:203 +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Mae'r llwybr yn rhy hir" + +# FIXME: wtf? +#: apt-inst/extract.cc:421 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Methwyd darllen y cronfa ddata CD-ROM %s" +msgid "Overwrite package match with no version for %s" +msgstr "Cyfatebiad pecyn trosysgrifo gyda dim fersiwn am %s" -#: methods/cdrom.cc:212 -#, fuzzy -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"Defnyddiwch apt-cdrom fel bo APT yn adnabod y CD hwn. Ni ellir defnyddio apt-" -"get update i ychwanegu CDau newydd." +#: apt-inst/extract.cc:438 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Mae'r ffeil %s/%s yn trosysgrifo'r un yn y pecyn %s" -#: methods/cdrom.cc:222 -#, fuzzy -msgid "Wrong CD-ROM" -msgstr "CD Anghywir" +#: apt-inst/extract.cc:498 +#, c-format +msgid "Unable to stat %s" +msgstr "Ni ellir gwneud stat() o %s" -#: methods/cdrom.cc:249 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, fuzzy, c-format +msgid "Failed to write file %s" +msgstr "Methwyd ysgrifennu ffeil %s" + +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "" -"Ni ellir datglymu'r CD-ROM yn %s. Efallai ei fod e'n cael ei ddefnyddio." +msgid "Failed to close file %s" +msgstr "Methwyd cau ffeil %s" -#: methods/cdrom.cc:254 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Nid yw hyn yn archif DEB dilys, aelod '%s' ar goll" + +#: apt-inst/deb/debfile.cc:132 +#, fuzzy, c-format +msgid "Internal error, could not locate member %s" +msgstr "Gwall Mewnol, methwyd lleoli aelod %s" + +#: apt-inst/deb/debfile.cc:227 #, fuzzy -msgid "Disk not found." -msgstr "Ffeil heb ei ganfod" +msgid "Unparsable control file" +msgstr "Ffeil rheoli ni ellir ei ramadegu" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Ffeil heb ei ganfod" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Llofnod archif annilys" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Methwyd stat()" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Gwall wrth ddarllen pennawd aelod archif" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Methwyd gosod amser newid" +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Pennawd aelod archif annilys" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI annilys: rhaid i URIs lleol beidio a cychwyn efo \"//\"" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Pennawd aelod archif annilys" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Mae'r archif yn rhy fyr" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Methwyd darllen pennawdau'r archif" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Methwyd creu pibau" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Methwyd gweithredu gzip" + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Archif llygredig" + +#: apt-inst/contrib/extracttar.cc:203 +#, fuzzy +msgid "Tar checksum failed, archive corrupted" +msgstr "Methodd swm gwirio Tar, archif llygredig" + +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Math pennawd TAR anhysbys %u, aelod %s" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Yn mewngofnodi" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Ni ellir darganfod enw'r cymar" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Ni ellir darganfod yr enw lleol" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Ni chynhelir y system pecynnu '%s'" -#: methods/ftp.cc:219 methods/ftp.cc:247 -#, fuzzy, c-format -msgid "The server refused the connection and said: %s" -msgstr "Gwrthodwyd y gweinydd ein cysyllriad, a dwedodd: %s" +#: apt-pkg/init.cc:162 +#, fuzzy +msgid "Unable to determine a suitable packaging system type" +msgstr "Ni ellir canfod math system addas" -#: methods/ftp.cc:225 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "USER failed, server said: %s" -msgstr "Methodd gorchymyn USER; meddai'r gweinydd: %s" +msgid "Wrote %i records.\n" +msgstr "" -#: methods/ftp.cc:232 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "PASS failed, server said: %s" -msgstr "Methodd gorchymyn PASS; meddai'r gweinydd: %s" +msgid "Wrote %i records with %i missing files.\n" +msgstr "" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" msgstr "" -"Penodwyd gweinydd dirprwy ond dim sgript mengofnodi. (Mae Acquire::ftp::" -"ProxyLogin yn wag.)" -# FIXME -#: methods/ftp.cc:280 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Methodd y gorchymyn sgript mewngofnodi '%s'; meddai'r gweinydd: %s" +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" -#: methods/ftp.cc:306 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "Methodd gorchymyn TYPE; meddai'r gweinydd: %s" +msgid "Can't find authentication record for: %s" +msgstr "" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Goramser cysylltu" +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "Camgyfatebiaeth swm MD5" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Caeodd y gweinydd y cysylltiad" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Methwyd agor neu ramadegu'r ffeil rhestrau neu statws." -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Gorlifodd ateb y byffer." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Efallai hoffech rhedege apt-get update er mwyn cywiro'r problemau hyn." -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Llygr protocol" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Methwyd darllen y rhestr ffynhonellau." -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Methwyd creu soced" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Storfa pecyn gwag" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Methwyd cysylltu soced data, goramserodd y cyslltiad" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Mae'r ffeil storfa pecyn yn llygredig" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Methwyd" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Mae'r ffeil storfa pecyn yn fersiwn anghyflawn" -#: methods/ftp.cc:718 +#: apt-pkg/pkgcache.cc:169 #, fuzzy -msgid "Could not connect passive socket." -msgstr "Methwyd cysylltu soced goddefol" - -# FIXME -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "Methodd getaddrinfo gael soced gwrando" +msgid "The package cache file is corrupted, it is too small" +msgstr "Mae'r ffeil storfa pecyn yn llygredig" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Methwyd rhwymo soced" +# FIXME: capitalisation? +#: apt-pkg/pkgcache.cc:174 +#, fuzzy, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "Nid yw'r APT yma yn cefnogi'r system fersiwn '%s'" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Methwyd gwrando ar y soced" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Adeiladwyd y storfa pecyn ar gyfer pernsaerniaeth gwahanol" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Methwyd canfod enw'r soced" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Dibynnu" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Methwyd danfod gorchymyn PORT" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "CynDdibynnu" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Teulu cyfeiriad anhysbys %u (AF_*)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Awgrymu" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "Methodd gorchymyn EPRT; meddai'r gweinydd: %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Argymell" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Goramserodd cysylltiad y soced data" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Gwrthdaro" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Methwyd derbyn cysylltiad" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Amnewid" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problem wrth stwnshio ffeil" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Darfodi" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Methwyd cyrchu ffeil; meddai'r gweinydd '%s'" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Goramserodd soced data" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Methodd trosgludiad data; meddai'r gweinydd '%s'" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "pwysig" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Ymholiad" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "angenrheidiol" -# FIXME -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Methwyd gweithredu " +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "safonnol" -#: methods/connect.cc:76 -#, c-format -msgid "Connecting to %s (%s)" -msgstr "Yn cysylltu i %s (%s)" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "opsiynnol" -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "ychwanegol" -#: methods/connect.cc:94 +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Methwyd creu soced ar gyfer %s (f=%u t=%u p=%u)" +msgid "The method driver %s could not be found." +msgstr "Methwyd canfod y gyrrydd dull %s." -#: methods/connect.cc:100 +#: apt-pkg/acquire-worker.cc:118 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Ni ellir cychwyn y cysylltiad i %s:%s (%s)." +msgid "Is the package %s installed?" +msgstr "" -#: methods/connect.cc:108 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Methwyd cysylltu i %s:%s (%s), goramserodd y cysylltiad" +msgid "Method %s did not start correctly" +msgstr "Ni gychwynodd y dull %s yn gywir" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Methwyd cysylltu i %s:%s (%s)." +#: apt-pkg/acquire-worker.cc:455 +#, fuzzy, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Newid Cyfrwng: Os gwelwch yn dda, rhowch y disg a'r label\n" +" '%s'\n" +"yn y gyrriant '%s' a gwasgwch Enter\n" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Connecting to %s" -msgstr "Yn cysylltu i %s" +msgid "Index file type '%s' is not supported" +msgstr "Ni chynhelir y math ffeil mynegai '%s'" -#: methods/connect.cc:180 methods/connect.cc:199 -#, c-format -msgid "Could not resolve '%s'" -msgstr "Methwyd datrys '%s'" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +#, fuzzy +msgid "Building dependency tree" +msgstr "Yn Aideladu Coeden Dibyniaeth" -#: methods/connect.cc:205 -#, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Methiant dros dro yn datrys '%s'" +#: apt-pkg/depcache.cc:139 +#, fuzzy +msgid "Candidate versions" +msgstr "Fersiynau Posib" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Digwyddodd rhywbweth hyll wrth ddatrys '%s:%s' (%i)" +#: apt-pkg/depcache.cc:168 +#, fuzzy +msgid "Dependency generation" +msgstr "Cynhyrchaid Dibyniaeth" -#: methods/connect.cc:211 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +#, fuzzy +msgid "Reading state information" +msgstr "Yn cyfuno manylion Ar Gael" + +#: apt-pkg/depcache.cc:250 #, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Digwyddodd rhywbweth hyll wrth ddatrys '%s:%s' (%i)" +msgid "Failed to open StateFile %s" +msgstr "Methwyd agor %s" -#: methods/connect.cc:258 +#: apt-pkg/depcache.cc:256 #, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Methwyd cysylltu i %s %s:" +msgid "Failed to write temporary StateFile %s" +msgstr "Methwyd ysgrifennu ffeil %s" -#: methods/gpgv.cc:168 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "methwyd ailenwi, %s (%s -> %s)." + +#: apt-pkg/acquire-item.cc:163 +#, fuzzy +msgid "Hash Sum mismatch" +msgstr "Camgyfatebiaeth swm MD5" + +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Camgyfatebiaeth maint" + +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Gweithred annilys %s" + +#: apt-pkg/acquire-item.cc:1573 +#, c-format msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "" +# FIXME: number? +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" msgstr "" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1669 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -#, fuzzy -msgid "The following signatures were invalid:\n" -msgstr "Caiff y pecynnau canlynol ychwanegol eu sefydlu:" - -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1721 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Gwall wrth ysgrifennu at y ffeil" - -#: methods/http.cc:523 -#, fuzzy -msgid "Error reading from server. Remote end closed connection" -msgstr "Gwall wrth ddarllen o'r gweinydd: caeodd yr ochr pell y cysylltiad" +# FIXME: case +#: apt-pkg/acquire-item.cc:1859 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"Methais i leoli ffeila r gyfer y pecyn %s. Fa all hyn olygu bod rhaid i chi " +"drwsio'r pecyn hyn a law. (Oherwydd pensaerniaeth coll.)" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Gwall wrth ddarllen o'r gweinydd" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Gwall wrth ysgrifennu at ffeil" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Mae'r ffeiliau mynegai pecyn yn llygr. Dim maes Filename: gan y pecyn %s." -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Methwyd dewis" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Ni chynhelir y math ffeil mynegai '%s'" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Goramserodd y cysylltiad" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Ni ellir gwneud stat() o %s." -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Gwall wrth ysgrifennu i ffeil allbwn" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Mae can y storfa system fersiwn anghyfaddas" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Yn aros am benawdau" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Digwyddod gwall wrth brosesu %s (FindPkg)" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Llinell pennawd gwael" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "" +"Jiw, rhagoroch chi'r nifer o enwau pecyn mae'r APT hwn yn gallu ei drin." -#: methods/server.cc:134 methods/server.cc:141 -#, fuzzy -msgid "The HTTP server sent an invalid reply header" -msgstr "Danfonodd y gweinydd HTTP bennawd ateb annilys" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Jiw, rhagoroch chi'r nifer o fersiynau mae'r APT hwn yn gallu ei drin." -#: methods/server.cc:171 +#: apt-pkg/pkgcachegen.cc:263 #, fuzzy -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Danfonodd y gweinydd HTTP bennawd Content-Length annilys" +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Jiw, rhagoroch chi'r nifer o fersiynau mae'r APT hwn yn gallu ei drin." -#: methods/server.cc:194 -#, fuzzy -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Danfonodd y gweinydd HTTP bennawd Content-Range annilys" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "" +"Jiw, rhagoroch chi'r nifer o ddibyniaethau mae'r APT hwn yn gallu ei drin." -#: methods/server.cc:196 -#, fuzzy -msgid "This HTTP server has broken range support" -msgstr "Mae cynaliaeth amrediad y gweinydd hwn wedi torri" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Ni chanfuwyd pecyn %s %s wrth brosesu dibyniaethau ffeil" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Fformat dyddiad anhysbys" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Methwyd stat() o'r rhestr pecyn ffynhonell %s" -#: methods/server.cc:489 +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 #, fuzzy -msgid "Bad header data" -msgstr "Data pennawd gwael" +msgid "Reading package lists" +msgstr "Yn Darllen Rhestrau Pecynnau" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Methodd y cysylltiad" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Yn Casglu Darpariaethau Ffeil" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Gwall mewnol" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Ni ellir ysgrifennu i %s" -#: apt-private/private-upgrade.cc:25 -#, fuzzy -msgid "Calculating upgrade... " -msgstr "Yn Cyfrifo'r Uwchraddiad... " +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Gwall M/A wrth gadw'r storfa ffynhonell" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Wedi Gorffen" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Nid yw'r bloc darparwr %s yn cynnwys ôl bys" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "Mae'r cyfeiriadur rhestrau %spartial ar goll." -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/acquire.cc:91 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "Mae'r cyfeiriadur archif %spartial ar goll." -#: apt-private/private-list.cc:164 +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "Ni ellir cloi'r cyfeiriadur rhestr" + +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Yn cywiro dibyniaethau..." +#: apt-pkg/acquire.cc:904 +#, fuzzy, c-format +msgid "Retrieving file %li of %li" +msgstr "Yn Darllen Rhestr Ffeiliau" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " wedi methu." +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"Methwodd rhai ffeiliau mynegai lawrlwytho: maent wedi eu anwybyddu, neu hen " +"rai eu defnyddio yn lle." -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Ni ellir cywiro dibyniaethau" +# FIXME: ...file +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Rhaid i chi rhoi rhai URI 'source' yn eich ffeil sources.list" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Ni ellir bychanu y set uwchraddio" +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Wedi Gorffen" +# FIXME: literal +#: apt-pkg/policy.cc:422 +#, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Cofnod annilys yn y ffeil hoffterau, dim pennawd 'Package'" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Efallai hoffech rhedeg 'apt-get -f install' er mwyn cywiro'r rhain." +# FIXME: tense +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Methwyd daeall y math pin %s" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dibyniaethau heb eu bodloni. Ceisiwch ddefnyddio -f." +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Dim blaenoriath (neu sero) wedi ei benodi ar gyfer pin" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -#: apt-private/private-output.cc:234 +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Sefydliwyd]" +msgid "Could not configure '%s'. " +msgstr "Methwyd agor ffeil %s" -#: apt-private/private-output.cc:238 +# FIXME: %s may have an arbirrary length +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"Bydd y rhediad sefydlu hwn yn gorfodi tynnu'r pecyn angenrheidiol %s " +"oherwydd lŵp gwrthdaro/cynddibynu. Mae hyn yn aml yn wael, ond os ydych wir " +"eisiau ei wneud ef, gweithredwch yr opsiwn APT::Force-LoopBreak." + +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "Llinell %u yn rhy hir yn y rhestr ffynhonell %s." + +#: apt-pkg/cdrom.cc:571 #, fuzzy -msgid "[installed,local]" -msgstr " [Sefydliwyd]" +msgid "Unmounting CD-ROM...\n" +msgstr "CD Anghywir" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" msgstr "" -#: apt-private/private-output.cc:243 +#: apt-pkg/cdrom.cc:599 #, fuzzy -msgid "[installed,automatic]" -msgstr " [Sefydliwyd]" +msgid "Waiting for disc...\n" +msgstr "Yn aros am benawdau" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Sefydliwyd]" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "" -#: apt-private/private-output.cc:249 +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "" + +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "[upgradable from: %s]" +msgid "Stored label: %s\n" msgstr "" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" msgstr "" -#: apt-private/private-output.cc:435 +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "but %s is installed" -msgstr "ond mae %s wedi ei sefydlu" +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" -#: apt-private/private-output.cc:437 -#, c-format -msgid "but %s is to be installed" -msgstr "ond mae %s yn mynd i gael ei sefydlu" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "ond ni ellir ei sefydlu" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "ond mae'n becyn rhithwir" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "ond nid yw wedi ei sefydlu" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "ond nid yw'n mynd i gael ei sefydlu" +#: apt-pkg/cdrom.cc:819 +#, fuzzy +msgid "Copying package lists..." +msgstr "Yn Darllen Rhestrau Pecynnau" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " neu" +#: apt-pkg/cdrom.cc:863 +#, fuzzy +msgid "Writing new source list\n" +msgstr "Llinell %u yn rhy hir yn y rhestr ffynhonell %s." -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Mae gan y pecynnau canlynol ddibyniaethau heb eu bodloni:" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"Mae angen ailsefydlu'r pecyn %s, ond dydw i ddim yn gallu canfod archif ar " +"ei gyfer." -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Caiff y pecynnau canlynol eu TYNNU:" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Gwall: Cynhyrchodd pkgProblemResolver::Resolve doriadau. Fe all hyn fod wedi " +"ei achosi gan pecynnau wedi eu dal." -#: apt-private/private-output.cc:551 -#, fuzzy -msgid "The following packages have been kept back:" -msgstr "Mae'r pecynnau canlynol wedi eu dal yn ôl" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "" +"Ni ellir cywiro'r problemau gan eich bod chi wedi dal pecynnau torredig." -#: apt-private/private-output.cc:572 -#, fuzzy -msgid "The following packages will be upgraded:" -msgstr "Caiff y pecynnau canlynol eu uwchraddio" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: apt-private/private-output.cc:593 -#, fuzzy -msgid "The following packages will be DOWNGRADED:" -msgstr "Caiff y pecynnau canlynol eu ISRADDIO" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Caiff y pecynnau wedi eu dal canlynol eu newid:" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: apt-private/private-output.cc:668 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (oherwydd %s) " +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: apt-private/private-output.cc:676 -#, fuzzy -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" msgstr "" -"RHYBUDD: Caiff y pecynnau hanfodol canlynol eu tynnu\n" -"NI DDYLIR gwneud hyn os nad ydych chi'n gwybod yn union beth rydych chi'n\n" -"ei wneud!" -#: apt-private/private-output.cc:707 +# FIXME: number? +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu wedi uwchraddio, %lu newydd eu sefydlu, " +msgid "Unable to parse package file %s (1)" +msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" -#: apt-private/private-output.cc:711 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu wedi ailsefydlu, " +msgid "Unable to parse package file %s (2)" +msgstr "Ni ellir gramadegu ffeil becynnau %s (2)" -#: apt-private/private-output.cc:713 -#, c-format -msgid "%lu downgraded, " -msgstr "%lu wedi eu israddio, " +# FIXME: number? +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" -#: apt-private/private-output.cc:715 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu i'w tynnu a %lu heb eu uwchraddio.\n" +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "Sylwer, yn dewis %s yn hytrach na %s\n" -#: apt-private/private-output.cc:719 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu heb eu sefydlu na tynnu'n gyflawn.\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" +msgid "No Hash entry in Release file %s" msgstr "" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Llinell annilys yn y ffeil dargyfeirio: %s" + +# FIXME: number? +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" + +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu URI)" + +#: apt-pkg/sourcelist.cc:170 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" +"Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "I" +#: apt-pkg/sourcelist.cc:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (dosranniad)" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" +#: apt-pkg/sourcelist.cc:184 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "" +"Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Nid yw'r gorchymyn diweddaru yn derbyn ymresymiadau" +#: apt-pkg/sourcelist.cc:190 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "" +"Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)" -#: apt-private/private-update.cc:90 +#: apt-pkg/sourcelist.cc:193 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "" +"Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)" + +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (URI)" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (dosranniad)" -#: apt-private/private-show.cc:156 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu URI)" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/sourcelist.cc:217 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (dosranniad llwyr)" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" +"Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)" -#: apt-private/private-install.cc:91 -#, fuzzy -msgid "Packages need to be removed but remove is disabled." -msgstr "Rhaid tynnu pecynnau on mae Tynnu wedi ei analluogi." +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Yn agor %s" -#: apt-private/private-install.cc:110 -#, fuzzy -msgid "Internal error, Ordering didn't finish" -msgstr "Gwall Mewnol wrth ychwanegu dargyfeiriad" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Llinell camffurfiol %u yn y rhestr ffynhonell %s (math)" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" +#: apt-pkg/sourcelist.cc:375 +#, fuzzy, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Mae'r math '%s' yn anhysbys ar linell %u yn y rhestr ffynhonell %s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Mae'r math '%s' yn anhysbys ar linell %u yn y rhestr ffynhonell %s" + +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Mae angeyn cyrchu %sB/%sB o archifau.\n" +msgid "Release '%s' for '%s' was not found" +msgstr "Ni chanfuwyd y rhyddhad '%s' o '%s'" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Mae angen cyrchu %sB o archifau.\n" +msgid "Version '%s' for '%s' was not found" +msgstr "Ni chanfuwyd y fersiwn '%s' o '%s' " -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/cacheset.cc:603 #, fuzzy, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Ar ôl dadbacio defnyddir %sB o ofod disg ychwanegol.\n" +msgid "Couldn't find task '%s'" +msgstr "Methwyd canfod pecyn %s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/cacheset.cc:609 #, fuzzy, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Ar ôl dadbactio caiff %sB o ofod disg ei rhyddhau.\n" +msgid "Couldn't find any package by regex '%s'" +msgstr "Methwyd canfod pecyn %s" -#: apt-private/private-install.cc:200 +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Methwyd canfod pecyn %s" + +#: apt-pkg/cacheset.cc:626 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Does dim digon o le rhydd gennych yn %s." +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Mae problemau a defnyddwyd -y heb --force-yes" +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Penodwyd Syml Yn Unig ond nid yw hyn yn weithred syml." +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Ie, gwna fel rydw i'n dweud!" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: apt-private/private-install.cc:222 -#, fuzzy, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" msgstr "" -"Rydych ar fin gwneud rhywbeth a all fod yn niweidiol\n" -"Er mwyn mynd ymlaen, teipiwch y frawddeg '%s'\n" -" ?]" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Erthylu." +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Ydych chi eisiau mynd ymlaen?" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Methodd rhai ffeiliau lawrlwytho" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" msgstr "" -"Ni ellir cyrchu rhai archifau, efallai dylwch rhedeg apt-get update, neu " -"geidio defnyddio --fix-missing?" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "Ni chynhelir cyfnewid cyfrwng efo --fix-missing ar hyn o bryd" +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "Ni chanfuwyd y dewis %s" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Ni ellir cywiro pecynnau ar goll." +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Ddim yn cloi'r ffeil clo darllen-yn-unig %s" -#: apt-private/private-install.cc:330 -#, fuzzy -msgid "Aborting install." -msgstr "Yn Erthylu'r Sefydliad." +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Methwyd agor y ffeil clo %s" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Ddim yn cloi'r ffeil clo ar NFS %s" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Methwyd cael y clo %s" + +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-private/private-install.cc:499 +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" + +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "Gall y wybodaeth canlynol gynorthwyo'n datrys y sefyllfa:" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Derbyniodd is-broses %s wall segmentu." -#: apt-private/private-install.cc:506 -#, fuzzy -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" +#: apt-pkg/contrib/fileutl.cc:826 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "Derbyniodd is-broses %s wall segmentu." -#: apt-private/private-install.cc:513 -#, fuzzy -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" -msgstr[1] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "Dychwelodd is-broses %s gôd gwall (%u)" -#: apt-private/private-install.cc:517 -#, fuzzy, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" -msgstr[1] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Gorffenodd is-broses %s yn annisgwyl" -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/contrib/fileutl.cc:913 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Gwall wrth gau'r ffeil" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Efallai hoffech rhedeg 'apt-get -f install' er mwyn cywiro'r rhain:" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Methwyd agor ffeil %s" -# FIXME -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Dibyniaethau heb eu bodloni. Ceisiwch rhedeg 'apt-get -f install' efo dim " -"pecyn (neu penodwch ddatrys)" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Methwyd agor pibell ar gyfer %s" -# FIXME: needs commas -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." -msgstr "" -"Methwyd sefydlu rhai pecynnau. Gall hyn olygu eich bod chi wedi gofyn\n" -"am sefyllfa amhosib neu, os ydych chi'n defnyddio'r dosraniad\n" -"ansefydlog, fod rhai pecynnau angenrheidiol heb gael eu creu eto neu\n" -"heb gael eu symud allan o Incoming." +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Methwyd creu isbroses IPC" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Pecynnau wedi torri" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Methwyd gweithredu cywasgydd " -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Caiff y pecynnau canlynol ychwanegol eu sefydlu:" +# FIXME +#: apt-pkg/contrib/fileutl.cc:1514 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "o hyd %lu i ddarllen ond dim ar ôl" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Pecynnau a awgrymmir:" +# FIXME +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "o hyd %lu i ysgrifennu ond methwyd" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Pecynnau a argymhellir:" +#: apt-pkg/contrib/fileutl.cc:1915 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Gwall wrth gau'r ffeil" -#: apt-private/private-install.cc:825 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Yn hepgor %s, mae wedi ei sefydlu a nid yw uwchraddio wedi ei osod.\n" +#: apt-pkg/contrib/fileutl.cc:1927 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Gwall wrth gyfamseru'r ffeil" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:1938 #, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "Yn hepgor %s, mae wedi ei sefydlu a nid yw uwchraddio wedi ei osod.\n" +msgid "Problem unlinking the file %s" +msgstr "Gwall wrth dadgysylltu'r ffeil" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Gwall wrth gyfamseru'r ffeil" + +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Nid yw ailsefydlu %s yn bosib, gan ni ellir ei lawrlwytho.\n" +msgid "%c%s... Error!" +msgstr "%c%s... Gwall!" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "%s is already the newest version.\n" -msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n" +msgid "%c%s... Done" +msgstr "%c%s... Wedi Gorffen" -#: apt-private/private-install.cc:894 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Dewiswyd fersiwn %s (%s) ar gyfer %s\n" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-install.cc:899 +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Dewiswyd fersiwn %s (%s) ar gyfer %s\n" +msgid "%c%s... %u%%" +msgstr "%c%s... Wedi Gorffen" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Ni ellir defnyddio mmap() ar ffeil gwag" + +#: apt-pkg/contrib/mmap.cc:111 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "Nid yw'r pecyn %s wedi ei sefydlu, felly ni chaif ei dynnu\n" +msgid "Couldn't duplicate file descriptor %i" +msgstr "Methwyd agor pibell ar gyfer %s" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/mmap.cc:119 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Nid yw'r pecyn %s wedi ei sefydlu, felly ni chaif ei dynnu\n" +msgid "Couldn't make mmap of %llu bytes" +msgstr "Methwyd gwneud mmap() efo %lu beit" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Ni ellir agor %s" -#: apt-private/private-download.cc:36 +# FIXME +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 #, fuzzy -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "RHYBUDD: Ni ellir dilysu'r pecynnau canlynol yn ddiogel!" +msgid "Unable to synchronize mmap" +msgstr "Methwyd gweithredu " -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Methwyd gwneud mmap() efo %lu beit" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +#: apt-pkg/contrib/mmap.cc:322 #, fuzzy -msgid "Some packages could not be authenticated" -msgstr "RHYBUDD: Ni ellir dilysu'r pecynnau canlynol yn ddiogel!" +msgid "Failed to truncate file" +msgstr "Methwyd ysgrifennu ffeil %s" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" +#: apt-pkg/contrib/mmap.cc:341 +#, c-format +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Methwyd ailenwi %s at %s" - -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Presennol " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Cyrchu:" - -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Anwybyddu " +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Ni ellir gwneud stat() o'r pwynt clymu %s" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Gwall " +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Methwyd gwneud stat() o'r CD-ROM" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Cyrchwyd %sB yn %s (%sB/s)\n" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Talgryniad math anhysbys: '%c'" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid " [Working]" -msgstr " [Gweithio]" - -#: apt-private/acqprogress.cc:297 -#, fuzzy, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" -msgstr "" -"Newid Cyfrwng: Os gwelwch yn dda, rhowch y disg a'r label\n" -" '%s'\n" -"yn y gyrriant '%s' a gwasgwch Enter\n" +msgid "Opening configuration file %s" +msgstr "Yn agor y ffeil cyfluniad %s" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "No mirror file '%s' found " -msgstr "" - -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Methwyd agor ffeil %s" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Gwall cystrawen %s:%u: Mae bloc yn cychwyn efo dim enw." -#: methods/mirror.cc:315 +# FIXME +#: apt-pkg/contrib/configuration.cc:820 #, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Methwyd agor ffeil %s" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Gwall cystrawen %s:%u: Tag wedi camffurfio" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:837 #, c-format -msgid "[Mirror: %s]" -msgstr "" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Methwyd creu pibell cyfathrebu at isbroses" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Caewyd y cysylltiad yn gynnar" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Rhagosodiad gwael!" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Gwasgwch Enter er mwyn mynd ymlaen." +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Gwall cystrawen %s:%u: Sbwriel ychwanegol ar ôl y gwerth" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" +"Gwall cystrawen %s:%u: Ceir defnyddio cyfarwyddyd ar y lefel dop yn unig" -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Digwyddod rhau gwallau wrth dadbacio. Rydw i'n mynd i gyflunio'r" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Gwall cystrawen %s:%u: Gormod o gynhwysion nythol" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "pecynnau a gafwyd eu sefydlu. Gall hyn achosi gwallau dyblyg neu" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Gwall cystrawen %s:%u: Cynhwyswyd o fan hyn" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "wallau a achosir gan ddibyniaethau coll. Mae hyn yn iawn, dim ond y" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Gwall cystrawen %s:%u: Cyfarwyddyd ni gynhelir '%s'" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" +#: apt-pkg/contrib/configuration.cc:900 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"gwallau uwchben y neges hwn sy'n bwysig. Trwsiwch nhw a rhedwch [S]efydlu " -"eto." - -#: dselect/update:30 -#, fuzzy -msgid "Merging available information" -msgstr "Yn cyfuno manylion Ar Gael" +"Gwall cystrawen %s:%u: Ceir defnyddio cyfarwyddyd ar y lefel dop yn unig" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "Galwyd DropNode ar nôd sydd o hyd wedi ei gysylltu" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Gwall cystrawen %s:%u: Sbwriel ychwanegol ar ddiwedd y ffeil" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Methyd lleoli yr elfen <hash>!" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "Yn Erthylu'r Sefydliad." -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Methwyd neilltuo dargyfeiriad" +# FIXME +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Ni adnabyddir yr opsiwn llinell orchymyn '%c' (o %s)." -#: apt-inst/filelist.cc:464 -#, fuzzy -msgid "Internal error in AddDiversion" -msgstr "Gwall Mewnol yn AddDiversion" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Ni adnabyddir yr opsiwn llinell orchymyn %s" -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Yn ceisio trosysgrifo dargyfeiriad, %s -> %s a %s/%s" +msgid "Command line option %s is not boolean" +msgstr "Nid yw'r opsiwn llinell orchymyn %s yn fŵleaidd" -# FIXME: "the" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Ychwanegiad dwbl o'r dargyfeiriad %s -> %s" +msgid "Option %s requires an argument." +msgstr "Mae'r opsiwn %s yn mynnu ymresymiad." -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Ffeil cyfluniad dyblyg %s/%s" +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Opsiwn %s: Rhaid i benodiad eitem cyfluniad gael =<gwerth>." -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "The path %s is too long" -msgstr "Mae'r llwybr %s yn rhy hir" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Mae'r opsiwn %s yn mynnu ymresymiad cyfanrif, nid '%s'" -#: apt-inst/extract.cc:132 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Unpacking %s more than once" -msgstr "Yn dadbacio %s mwy nag unwaith" +msgid "Option '%s' is too long" +msgstr "Opsiwn '%s' yn rhy hir" -#: apt-inst/extract.cc:142 +# FIXME: 'Sense'? +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "The directory %s is diverted" -msgstr "Mae'r cyfeiriadur %s wedi ei ddargyfeirio" +msgid "Sense %s is not understood, try true or false." +msgstr "Ni ddeallir %s, ceiswich ddefnyddio 'true' neu 'false'." -#: apt-inst/extract.cc:152 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Mae'r pecyn yn ceisio ysgrifennu i'r targed dargyfeiriad %s/%s" +msgid "Invalid operation %s" +msgstr "Gweithred annilys %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Mae llwybr y dargyfeiriad yn rhy hir" +#: apt-pkg/deb/dpkgpm.cc:95 +#, fuzzy, c-format +msgid "Installing %s" +msgstr " Wedi Sefydlu: " -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 -#, c-format -msgid "Failed to stat %s" -msgstr "Methodd stat() o %s" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, fuzzy, c-format +msgid "Configuring %s" +msgstr "Yn cysylltu i %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 -#, c-format -msgid "Failed to rename %s to %s" -msgstr "Methwyd ailenwi %s at %s" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, fuzzy, c-format +msgid "Removing %s" +msgstr "Yn agor %s" -#: apt-inst/extract.cc:249 +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "Methwyd dileu %s" + +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "The directory %s is being replaced by a non-directory" +msgid "Noting disappearance of %s" msgstr "" -"Mae'r cyfeiriadur %s yn cael ei amnewid efo rhywbeth nid cyfeiriadur ydyw" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Methwyd lleoli nôd yn ei fwced stwnsh" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Mae'r llwybr yn rhy hir" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, fuzzy, c-format +msgid "Directory '%s' missing" +msgstr "Mae'r cyfeiriadur rhestrau %spartial ar goll." -# FIXME: wtf? -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Cyfatebiad pecyn trosysgrifo gyda dim fersiwn am %s" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "Methwyd agor ffeil %s" -#: apt-inst/extract.cc:438 -#, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Mae'r ffeil %s/%s yn trosysgrifo'r un yn y pecyn %s" +#: apt-pkg/deb/dpkgpm.cc:989 +#, fuzzy, c-format +msgid "Preparing %s" +msgstr "Yn agor %s" -#: apt-inst/extract.cc:498 -#, c-format -msgid "Unable to stat %s" -msgstr "Ni ellir gwneud stat() o %s" +#: apt-pkg/deb/dpkgpm.cc:990 +#, fuzzy, c-format +msgid "Unpacking %s" +msgstr "Yn agor %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:995 #, fuzzy, c-format -msgid "Failed to write file %s" -msgstr "Methwyd ysgrifennu ffeil %s" +msgid "Preparing to configure %s" +msgstr "Yn agor y ffeil cyfluniad %s" -#: apt-inst/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "Methwyd cau ffeil %s" +#: apt-pkg/deb/dpkgpm.cc:997 +#, fuzzy, c-format +msgid "Installed %s" +msgstr " Wedi Sefydlu: " -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Nid yw hyn yn archif DEB dilys, aelod '%s' ar goll" +msgid "Preparing for removal of %s" +msgstr "" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1004 #, fuzzy, c-format -msgid "Internal error, could not locate member %s" -msgstr "Gwall Mewnol, methwyd lleoli aelod %s" +msgid "Removed %s" +msgstr "Argymell" -#: apt-inst/deb/debfile.cc:227 -#, fuzzy -msgid "Unparsable control file" -msgstr "Ffeil rheoli ni ellir ei ramadegu" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, fuzzy, c-format +msgid "Preparing to completely remove %s" +msgstr "Yn agor y ffeil cyfluniad %s" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Llofnod archif annilys" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, fuzzy, c-format +msgid "Completely removed %s" +msgstr "Methwyd dileu %s" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Gwall wrth ddarllen pennawd aelod archif" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:96 +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Pennawd aelod archif annilys" +msgid "Can not write log (%s)" +msgstr "Ni ellir ysgrifennu i %s" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Pennawd aelod archif annilys" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Mae'r archif yn rhy fyr" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Methwyd darllen pennawdau'r archif" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Methwyd creu pibau" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Methwyd gweithredu gzip" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Archif llygredig" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: apt-inst/contrib/extracttar.cc:203 -#, fuzzy -msgid "Tar checksum failed, archive corrupted" -msgstr "Methodd swm gwirio Tar, archif llygredig" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Math pennawd TAR anhysbys %u, aelod %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Ni ellir cloi'r cyfeiriadur rhestr" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" # FIXME: "debian" #: cmdline/apt-extracttemplates.cc:224 diff --git a/po/da.po b/po/da.po index bdbef6bbf..c4333aba4 100644 --- a/po/da.po +++ b/po/da.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 1.0.5\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2014-07-06 23:51+0200\n" "Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n" "Language-Team: Danish <debian-l10n-danish@lists.debian.org>\n" @@ -20,3251 +20,3252 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "Indeksfiler af typen »%s« understøttes ikke" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "Kunne ikke læse %s" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Kunne ikke skifte til %s" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "Kunne ikke finde %s." - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "Status: [%3i%%]" - -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Kører dpkg" - -#: apt-pkg/init.cc:146 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Pakkesystemet »%s« understøttes ikke" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Kunne ikke bestemme en passende pakkesystemtype" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Pakken %s version %s har en uopfyldt afhængighed:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Skrev %i poster.\n" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Samlet antal pakkenavne: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Skrev %i poster med %i manglende filer.\n" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Samlet antal pakkestrukturer: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Skrev %i poster med %i ikke-trufne filer\n" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Normale pakker: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "Skrev %i poster med %i manglende filer og %i ikke-trufne filer\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Rene virtuelle pakker: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "Kan ikke finde godkendelsesregistrering for: %s" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Enkelte virtuelle pakker: " -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "Hashsum stemmer ikke: %s" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Blandede virtuelle pakker: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Metodedriveren %s blev ikke fundet." +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Manglende: " -#: apt-pkg/acquire-worker.cc:118 -#, c-format -msgid "Is the package %s installed?" -msgstr "Er pakken %s installeret?" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Totale forskellige versioner: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Metoden %s startede ikke korrekt" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Sammenlagt forskellige beskrivelser: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Indsæt disken med navnet: »%s« i drevet »%s« og tryk retur." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Sammenlagt afhængigheder: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Pakkelisterne eller statusfilen kunne ikke tolkes eller åbnes." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Sammenlagt version/fil-relationer: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Du kan muligvis rette problemet ved at køre »apt-get update«" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Sammenlagt version/fil-relationer: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Listen med kilder kunne ikke læses." +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Sammenlagt »Tilbyder«-markeringer: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Tomt pakke-mellemlager" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Totalle søgemønsterstrenge: " -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Pakke-mellemlagerets fil er ødelagt" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Total afhængighedsversions-plads: " -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Pakke-mellemlagerets fil er af en inkompatibel version" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Total »Slack«-plads: " -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Pakke-mellemlagerets fil er ødelagt, den er for lille" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Total plads, der kan gøres rede for: " -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Denne APT understøtter ikke versionssystemet »%s«" +msgid "Package file %s is out of sync." +msgstr "Pakkefilen %s er ude af trit." -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Pakke-mellemlageret er lavet til en anden arkitektur" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Fandt ingen pakker" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Afhængigheder" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Du skal angive mindst ét søgemønster" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Præ-afhængigheder" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" +"Denne kommando er forældet. Brug venligst »apt-mark showauto« i stedet for." -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Foreslåede" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "Kunne ikke lokalisere pakken %s" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Anbefalede" +# Overskriften til apt-cache policy, +# forkorter "Package" væk. CH +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Pakkefiler:" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Konflikter" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Mellemlageret er ude af trit, kan ikke krydsreferere en pakkefil" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Erstatter" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "»Pinned« pakker:" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Overflødiggør" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(ikke fundet)" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Ødelægger" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Installeret: " -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Forbedringer" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Kandidat: " -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "vigtig" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(ingen)" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "krævet" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Pakke-pin: " -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standard" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Versionstabel:" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "frivillig" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s for %s kompileret på %s %s\n" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "ekstra" - -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Indeksfiler af typen »%s« understøttes ikke" +#: cmdline/apt-cache.cc:1749 +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Brug: apt-cache [tilvalg] kommando\n" +" apt-cache [tilvalg] showpkg pakke1 [pakke2 ...]\n" +" apt-cache [tilvalg] showsrc pakke1 [pakke2 ...]\n" +"\n" +"apt-cache er et lavniveauværktøj, brugt til at manipulere APTs\n" +"binære mellemlagerfiler og hente oplysninger fra dem.\n" +"\n" +"Kommandoer:\n" +" gencaches - Opbyg både pakke- og kildemellemlageret\n" +" showpkg - Vis generelle oplysninger om en enkelt pakke\n" +" showsrc - Vis kildetekstposter\n" +" stats - Vis nogle grundlæggende statistikker\n" +" dump - Vis hele filen i kort form\n" +" dumpavail - Udlæs en »available«-fil til standard-ud\n" +" unmet - Vis uopfyldte afhængigheder\n" +" search - Gennemsøg pakkelisten med et regulært udtryk\n" +" show - Vis en læsbar post for pakken\n" +" depends - Vis de rå afhængighedsoplysninger for en pakke\n" +" rdepends - Vis omvendte afhængighedsoplysninger for en pakke\n" +" pkgnames - Vis navnene på alle pakker\n" +" dotty - Generér pakkegrafer til GraphViz\n" +" xvcg - Generér pakkegrafer til xvcg\n" +" policy - Vis policy-indstillinger\n" +"\n" +"Tilvalg:\n" +" -h Denne hjælpetekst.\n" +" -p=? Pakkemellemlageret.\n" +" -s=? Kildemellemlageret.\n" +" -q Deaktiver fremgangsindikatoren.\n" +" -i Vis kun vigtige afhængigheder for kommandoen »unmet«.\n" +" -c=? Læs denne opsætningsfil\n" +" -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n" +"Se manualsiderne for apt-cache(8) og apt.conf(5) for flere oplysninger.\n" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Fejl ved tolkning af regulært udtryk - %s" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "" +"Angiv venligst et navn for denne disk, som f.eks. »Debian 5.0.3 Disk 1«" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Mellemlageret benytter en inkompatibel versionsstyring" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Indsæt en disk i drevet og tryk retur" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Der opstod en fejl under behandlingen af %s (%s%d)" +msgid "Failed to mount '%s' to '%s'" +msgstr "Kunne ikke montere %s til %s" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"Hold da op! Du nåede over det antal pakkenavne, denne APT kan håndtere." +"Ingen cd-rom kunne detekteres eller findes via standardmonteringspunktet.\n" +"Du kan prøve tilvalget --cdrom for at angive cd-rom-monteringspunktet.\n" +"Se »man apt-cdrom« for yderligere information om automatisk detektering af " +"cd-rom og monteringspunkt." -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Hold da op! Du nåede over det antal versioner, denne APT kan håndtere." +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Gentag processen for resten af cd'erne i dit sæt." -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Hold da op! Du nåede over det antal versioner, denne APT kan håndtere." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Parametre ikke angivet i par" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -"Hold da op! Du nåede over det antal afhængigheder, denne APT kan håndtere." +"Brug: apt-config [tilvalg] kommando\n" +"\n" +"apt-config er et simpelt værktøj til at læse APTs opsætningsfil\n" +"\n" +"Kommandoer:\n" +" shell - Skal-tilstand\n" +" dump - Vis opsætningen\n" +"\n" +"Tilvalg:\n" +" -h Denne hjælpetekst.\n" +" -c=? Læs denne opsætningsfil\n" +" -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n" -#: apt-pkg/pkgcachegen.cc:576 +#: cmdline/apt-get.cc:245 #, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "Pakken %s %s blev ikke fundet under behandlingen af filafhængigheder" +msgid "Can not find a package for architecture '%s'" +msgstr "Kan ikke finde en pakke for arkitektur »%s«" -#: apt-pkg/pkgcachegen.cc:1211 +#: cmdline/apt-get.cc:327 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Kunne ikke finde kildepakkelisten %s" +msgid "Can not find a package '%s' with version '%s'" +msgstr "Kan ikke finde en pakke »%s« med version »%s«" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Indlæser pakkelisterne" +#: cmdline/apt-get.cc:330 +#, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Kan ikke finde en pakke »%s« med udgivelse »%s«" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Samler filudbud" +#: cmdline/apt-get.cc:367 +#, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Vælger »%s« som kildepakke fremfor »%s«\n" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:423 #, c-format -msgid "Unable to write to %s" -msgstr "Kunne ikke skrive til %s" +msgid "Can not find version '%s' of package '%s'" +msgstr "Kan ikke finde version »%s« for pakke »%s«" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "IO-fejl ved gemning af kilde-mellemlageret" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Kunne ikke finde pakken %s" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "Send scenarie til problemløser" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s sat til manuelt installeret.\n" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "Send forespørgsel til problemløser" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s sat til automatisk installation.\n" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "Forbered for modtagelse af løsning" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" +"Denne kommando er forældet. Brug venligst »apt-mark auto« og »apt-mark " +"manual« i stedet for." -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "Ekstern problemløser fejlede uden en korrekt fejlbesked" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Intern fejl. Problemløseren ødelagde noget" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "Kør ekstern problemløser" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Kunne ikke låse nedhentningsmappen" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Du skal angive mindst én pakke at hente kildeteksten til" + +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "omdøbning mislykkedes, %s (%s -> %s)." +msgid "Unable to find a source package for %s" +msgstr "Kunne ikke finde kildetekstpakken for %s" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Hashsum stemmer ikke" +#: cmdline/apt-get.cc:786 +#, c-format +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"BEMÆRK: Pakning af »%s« vedligeholdes i versionskontrolsystemet »%s« på:\n" +"%s\n" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Størrelsen stemmer ikke" +#: cmdline/apt-get.cc:791 +#, c-format +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"Brug venligst:\n" +"bzr branch %s\n" +"for at hente de seneste (muligvis ikke udgivet) opdateringer til pakken.\n" -#: apt-pkg/acquire-item.cc:173 -msgid "Invalid file format" -msgstr "Ugyldigt filformat" +#: cmdline/apt-get.cc:843 +#, c-format +msgid "Skipping already downloaded file '%s'\n" +msgstr "Overspringer allerede hentet fil »%s«\n" -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#, c-format +msgid "Couldn't determine free space in %s" +msgstr "Kunne ikke bestemme ledig plads i %s" + +#: cmdline/apt-get.cc:882 +#, c-format +msgid "You don't have enough free space in %s" +msgstr "Du har ikke nok ledig plads i %s" + +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 +#, c-format +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "%sB/%sB skal hentes fra kildetekst-arkiverne.\n" + +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 +#, c-format +msgid "Need to get %sB of source archives.\n" +msgstr "%sB skal hentes fra kildetekst-arkiverne.\n" + +#: cmdline/apt-get.cc:902 +#, c-format +msgid "Fetch source %s\n" +msgstr "Henter kildetekst %s\n" + +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Nogle arkiver kunne ikke hentes." + +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Nedhentning afsluttet i »hent-kun«-tilstand" + +#: cmdline/apt-get.cc:950 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Overspringer udpakning af allerede udpakket kildetekst i %s\n" + +#: cmdline/apt-get.cc:963 +#, c-format +msgid "Unpack command '%s' failed.\n" +msgstr "Udpakningskommandoen »%s« fejlede.\n" + +#: cmdline/apt-get.cc:964 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" -"Kunne ikke finde uventet punkt »%s« i udgivelsesfil (forkert sources.list-" -"punkt eller forkert udformet fil)" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Tjek om pakken »dpkg-dev« er installeret.\n" -#: apt-pkg/acquire-item.cc:1589 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Kunne ikke finde hashsum for »%s« i udgivelsesfilen" +msgid "Build command '%s' failed.\n" +msgstr "Opbygningskommandoen »%s« fejlede.\n" -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "" -"Der er ingen tilgængelige offentlige nøgler for følgende nøgle-ID'er:\n" +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Barneprocessen fejlede" -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "Skal angive mindst én pakke at tjekke opbygningsafhængigheder for" + +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -"Udgivelsesfil for %s er udløbet (ugyldig siden %s). Opdateringer for dette " -"arkiv vil ikke blive anvendt." +"Ingen arkitekturinformation tilgængelig for %s. Se apt.conf(5) APT::" +"Architectures for opsætning" -#: apt-pkg/acquire-item.cc:1691 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Konfliktdistribution: %s (forventede %s men fik %s)" +msgid "Unable to get build-dependency information for %s" +msgstr "Kunne ikke hente oplysninger om opbygningsafhængigheder for %s" -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Der opstod en fejl under underskriftsbekræftelse. Arkivet er ikke opdateret " -"og den forrige indeksfil vil blive brugt. GPG-fejl: %s: %s\n" +msgid "%s has no build depends.\n" +msgstr "%s har ingen opbygningsafhængigheder.\n" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:1272 #, c-format -msgid "GPG error: %s: %s" -msgstr "GPG-fejl: %s: %s" +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"Afhængigheden %s for %s kan ikke opfyldes, da %s ikke er tilladt på »%s«" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -"Jeg kunne ikke lokalisere filen til %s-pakken. Det betyder muligvis at du er " -"nødt til manuelt at reparere denne pakke. (grundet manglende arch)" +"Afhængigheden %s for %s kan ikke opfyldes, da pakken %s ikke blev fundet" -#: apt-pkg/acquire-item.cc:1925 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "Kan ikke finde en kilde til at hente version »%s« for »%s«" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"Kunne ikke opfylde %s-afhængigheden for %s: Den installerede pakke %s er for " +"ny" -#: apt-pkg/acquire-item.cc:1983 +#: cmdline/apt-get.cc:1352 #, c-format msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "Pakkeindeksfilerne er i stykker. Intet »Filename:«-felt for pakken %s." - -#: apt-pkg/vendorlist.cc:85 -#, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Leverandørblok %s inderholder intet fingeraftryk" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"Afhængigheden %s for %s kan ikke opfyldes, da ingen af de tilgængelige " +"kandidater for pakken %s kan tilfredsstille versionskravene" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: cmdline/apt-get.cc:1358 #, c-format -msgid "List directory %spartial is missing." -msgstr "Listemappen %spartial mangler." +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"%s-afhængigheden for %s kan ikke opfyldes, da pakken %s ikke har en " +"kandidatversion" -#: apt-pkg/acquire.cc:91 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Arkivmappen %spartial mangler." +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Kunne ikke opfylde %s-afhængigheden for %s: %s" -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Unable to lock directory %s" -msgstr "Kunne ikke låse mappen %s" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Opbygningsafhængigheden for %s kunne ikke opfyldes." -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 -#, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Henter fil %li ud af %li (%s tilbage)" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Kunne ikke behandler opbygningsafhængighederne" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Henter fil %li ud af %li" +msgid "Changelog for %s (%s)" +msgstr "Ændringslog for %s (%s)" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Kunne ikke hente %s %s\n" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Understøttede moduler:" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#: cmdline/apt-get.cc:1633 msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"Nogle indeksfiler kunne ikke hentes. De er blevet ignoreret eller de gamle " -"bruges i stedet." +"Brug: apt-get [tilvalg] kommando\n" +" apt-get [tilvalg] install|remove pakke1 [pakke2 ...]\n" +" apt-get [tilvalg] source pakke1 [pakke2 ...]\n" +"\n" +"apt-get er en simpel kommandolinjegrænseflade til at hente og\n" +"installere pakker. De hyppigst brugte kommandoer er update og\n" +"install.\n" +"\n" +"Kommandoer:\n" +" update - Hent nye lister over pakker\n" +" upgrade - Udfør en opgradering\n" +" install - Installer nye pakker (pakke er libc6, ikke libc6.deb)\n" +" remove - Afinstaller pakker\n" +" autoremove - Afinstaller automatisk alle ubrugte pakker\n" +" purge - Fjern pakker og konfigurationsfiler\n" +" source - Hent kildetekstarkiver\n" +" build-dep - Sæt opbygningsafhængigheder op for kildetekstpakker\n" +" dist-upgrade - Distributionsopgradering, se apt-get(8)\n" +" dselect-upgrade - Følg valgene fra dselect\n" +" clean - Slet hentede arkivfiler\n" +" autoclean - Slet gamle hentede arkivfiler\n" +" check - Tjek at der ikke er uopfyldte afhængigheder\n" +" changelog - Hent og vis ændringsloggen for den angivne pakke\n" +" download - Hent den binære pakke til den aktuelle mappe\n" +"\n" +"Tilvalg:\n" +" -h Denne hjælpetekst.\n" +" -q Uddata, der kan logges - ingen fremgangsindikator\n" +" -qq Ingen uddata, kun fejl\n" +" -d Hent kun - installér eller udpak IKKE arkiverne\n" +" -s Gør intet. Simulér handlingen\n" +" -y Antag »ja«-svar til alle spørgsmål uden at spørge\n" +" -f Forsøg at fortsætte selvom integritetstjek fejler\n" +" -m Forsøg at fortsætte selvom arkiverne ikke kan findes\n" +" -u Vis også en liste over opgraderede pakker\n" +" -b Byg kildetekstpakken efter at have hentet den\n" +" -V Vis detaljerede versionsnumre\n" +" -c=? Læs denne opsætningsfil\n" +" -o=? Angiv et arbitrært opsætningsvalg. F.eks. -o dir::cache=/tmp\n" +"Se manualsiderne for apt-get(8), sources.list(5) og apt.conf(5)\n" +"for flere oplysninger og tilvalg.\n" +" Denne APT har »Super Cow Powers«.\n" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Du skal have nogle »source«-URI'er i din sources.list" +#: cmdline/apt-helper.cc:35 +msgid "Must specify at least one pair url/filename" +msgstr "Du skal angive mindst et par i form af adresse/filnavn" -#: apt-pkg/policy.cc:83 -#, c-format +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "Kunne ikke hente pakkerne" + +#: cmdline/apt-helper.cc:66 msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Værdien »%s« er ugyldig for APT::Default-Release da sådan en udgivelse ikke " -"er tilgængelig i kilderne" - -#: apt-pkg/policy.cc:422 -#, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Ugyldig indgang i indstillingsfilen %s, pakkehovedet mangler" - -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Kunne ikke forstå pin-type %s" - -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Ingen prioritet (eller prioritet nul) angivet ved pin" +"Brug: apt-helper [tilvalg] kommando\n" +" apt-helper [tilvalg] download-file uri target-path\n" +"\n" +"apt-helper er et internt hjælpeprogram for apt\n" +"\n" +"Kommandoer:\n" +" download-file - hent den angivne uri til mål-sti\n" +"\n" +" Dette APT-hjælpeprogram har Super Meep Powers.\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" -msgstr "" -"Kunne ikke udføre øjeblikkelig konfiguration på »%s«. Se venligst man 5 apt." -"conf under APT:Immediate-Cinfigure for detaljer. (%d)" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s kan ikke markeres, da den ikke er installeret.\n" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "Could not configure '%s'. " -msgstr "Kunne ikke åbne filen »%s«. " +msgid "%s was already set to manually installed.\n" +msgstr "%s var allerede sat til manuelt installeret.\n" -#: apt-pkg/packagemanager.cc:583 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." -msgstr "" -"Kørsel af denne installation kræver midlertidig afinstallation af den " -"essentielle pakke %s grundet en afhængighedsløkke. Det er ofte en dårlig " -"ide, men hvis du virkelig vil gøre det, kan du aktivere valget »APT::Force-" -"LoopBreak«." +msgid "%s was already set to automatically installed.\n" +msgstr "%s var allerede sat til automatisk installeret.\n" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Line %u too long in source list %s." -msgstr "Linjen %u er for lang i kildelisten %s." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Afmonterer CD-ROM ...\n" +msgid "%s was already set on hold.\n" +msgstr "%s var allerede sat i bero.\n" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Bruger CD-ROM-monteringspunktet %s\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Venter på disken ...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Monterer CD-ROM ...\n" - -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identificerer ... " +msgid "%s was already not hold.\n" +msgstr "%s var allerede ikke i bero.\n" -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Stored label: %s\n" -msgstr "Gemt mærkat: %s \n" - -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Skanner disken for indeksfiler ...\n" +msgid "Waited for %s but it wasn't there" +msgstr "Ventede på %s, men den var der ikke" -#: apt-pkg/cdrom.cc:734 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Fandt %zu pakkeindekser, %zu kildeindekser, %zu oversættelsesindekser og %zu " -"signaturer\n" - -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"Kunne ikke finde nogen pakkefiler, det er muligvis ikke en Debiandisk eller " -"den forkerte arkitektur?" +msgid "%s set on hold.\n" +msgstr "%s sat i bero.\n" -#: apt-pkg/cdrom.cc:771 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "Found label '%s'\n" -msgstr "Fandt mærkatet »%s«\n" +msgid "Canceled hold on %s.\n" +msgstr "Afbrød i bero for %s.\n" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Det er ikke et gyldigt navn, prøv igen.\n" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "Kørsel af dpkg fejlede. Er du root (administrator)?" -#: apt-pkg/cdrom.cc:817 -#, c-format +#: cmdline/apt-mark.cc:392 msgid "" -"This disc is called: \n" -"'%s'\n" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -"Denne disk hedder: \n" -"»%s«\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopierer pakkelisterne ..." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Skriver ny kildeliste\n" - -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Denne disk har følgende kildeliste-indgange:\n" +"Brug: apt-mark [tilvalg] {auto|manual} pakke1 [pakke2 ...]\n" +"\n" +"apt-mark er en simpel kommandolinjegrænseflade for markering af pakker\n" +"som manuelt eller automatisk installeret. Programmet kan også vise\n" +"markeringerne.\n" +"\n" +"Kommandoer:\n" +" auto - Marker de givne pakker som automatisk installeret\n" +" manual - Marker de givne pakker som manuelt installeret\n" +" hold - Marker en pakke som tilbageholdt\n" +" unhold - Fjern tilbageholdelse på pakke\n" +" showauto - Vis listen over automatisk installerede pakker\n" +" showmanual - Vis listen over manuelt installerede pakker\n" +" showhold - Vis listen over tilbageholdte pakker\n" +"\n" +"Tilvalg:\n" +" -h Denne hjælpetekst.\n" +" -q Logbar uddata - ingen statusindikator\n" +" -qq Ingen uddata undtagen for fejl\n" +" -s Ingen handling. Viser kun hvad der ville blive udført.\n" +" -f læs/skriv auto/manuel markering i den givne fil\n" +" -c=? Læs denne konfigurationsfil\n" +" -o=? Angiv en arbitrær konfigurationsindstilling, f.eks. -o dir::cache=/" +"tmp\n" +"Se manualsiderne apt-mark(8) og apt.conf(5) for yderligere information." -#: apt-pkg/algorithms.cc:265 -#, c-format +#: cmdline/apt.cc:47 msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -"Pakken %s skal geninstalleres, men jeg kan ikke finde noget arkiv med den." +"Brug: apt [tilvalg] kommando\n" +"\n" +"CLI for apt.\n" +"Kommandoer: \n" +" list - vis pakker baseret på pakkenavn\n" +" search - søg i pakkebeskrivelser\n" +" show - vis pakkedetaljer\n" +"\n" +" update - opdater listen over tilgængelige pakker\n" +"\n" +" install - installer pakker\n" +" remove - fjern pakker\n" +"\n" +" upgrade - opgradere systemet ved at installere/opgradere pakker\n" +" full-upgrade - opgradere systemet ved at fjerne/installere/opgradere " +"pakker\n" +"\n" +" edit-sources - rediger source-informationsfilen (kildefilen)\n" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Fejl, pkgProblemResolver::Resolve satte stopklodser op, det kan skyldes " -"tilbageholdte pakker." +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Kunne ikke læse cdrom-databasen %s" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" msgstr "" -"Kunne ikke korrigere problemerne, da du har tilbageholdt ødelagte pakker." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Opbygger afhængighedstræ" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Kandidatversioner" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Afhængighedsgenerering" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Læser tilstandsoplysninger" +"Brug apt-cdrom for at apt kan lære den at kende. apt-get update kan ikke " +"bruges til at tilføje nye cd'er" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Kunne ikke åbne StateFile %s" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Forkert cd" -#: apt-pkg/depcache.cc:256 +#: methods/cdrom.cc:249 #, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Kunne ikke skrive den midlertidige StateFile %s" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Kunne ikke afmontere cdrommen i %s, den er muligvis stadig i brug." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Kunne ikke tolke pakkefilen %s (1)" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disk blev ikke fundet." -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Kunne ikke tolke pakkefilen %s (2)" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Fil blev ikke fundet" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Udgaven »%s« for »%s« blev ikke fundet" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Kunne ikke finde" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Versionen »%s« for »%s« blev ikke fundet" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Kunne ikke angive ændringstidspunkt" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "Kunne ikke lokalisere pakken %s" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Ugyldig URI, lokale URI'er må ikke starte med //" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Kunne ikke finde opgaven »%s«" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Logget på" -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Kunne ikke finde nogle pakker med regulært udtryk »%s«" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Kunne ikke bestemme serverens navn" -#: apt-pkg/cacheset.cc:615 -#, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Kunne ikke finde nogle pakker med glob »%s«" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Kunne ikke bestemme det lokale navn" -#: apt-pkg/cacheset.cc:626 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "Kan ikke vælge versioner fra pakke »%s« som er vitalt" +msgid "The server refused the connection and said: %s" +msgstr "Serveren nægtede os forbindelse og sagde: %s" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: methods/ftp.cc:225 #, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" -"Kan ikke vælge installeret eller kandidatversion fra pakke »%s« da den ikke " -"har nogen af dem" +msgid "USER failed, server said: %s" +msgstr "angivelse af brugernavn mislykkedes, serveren sagde: %s" -#: apt-pkg/cacheset.cc:647 +#: methods/ftp.cc:232 #, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "Kan ikke vælge nyeste version fra pakke »%s« som er vital" +msgid "PASS failed, server said: %s" +msgstr "angivelse af adgangskode mislykkedes, serveren sagde: %s" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -"Kan ikke vælge kandidatversion fra pakke %s da den ikke har nogen kandidat" +"Der blev angivet en proxyserver men intet logpå-skript; Acquire::ftp::" +"ProxyLogin er tom." -#: apt-pkg/cacheset.cc:663 +#: methods/ftp.cc:280 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" -"Kan ikke vælge installeret version fra pakke %s da den ikke er installeret" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Logpå-skriptets kommando »%s« mislykkedes. Serveren sagde: %s" -#: apt-pkg/indexrecords.cc:78 +#: methods/ftp.cc:306 #, c-format -msgid "Unable to parse Release file %s" -msgstr "Kunne ikke fortolke udgivelsesfil %s" +msgid "TYPE failed, server said: %s" +msgstr "TYPE mislykkedes. Serveren sagde: %s" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "Ingen afsnit i udgivelsesfil %s" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Tidsudløb på forbindelsen" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Intet hashpunkt i udgivelsesfil %s" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Serveren lukkede forbindelsen" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Ugyldigt punkt »Valid-Until« i udgivelsesfil %s" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Læsefejl" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Ugyldigt punkt »Date« i udgivelsesfil %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Mellemlageret blev overfyldt af et svar." -#: apt-pkg/sourcelist.cc:127 -#, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Ugyldig stanza %u i kildelisten %s (tolkning af URI)" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protokolfejl" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Ugyldig linje %lu i kildelisten %s ([tilvalg] kunne ikke fortolkes)" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Skrivefejl" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Ugyldig linje %lu i kildelisten %s ([tilvalg] for kort)" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Kunne ikke oprette sokkel" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Ugyldig linje %lu i kildelisten %s ([%s] er ikke en opgave)" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Kunne ikke forbinde datasokkel, tidsudløb på forbindelsen" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Ugyldig linje %lu i kildelisten %s ([%s] har ingen nøgle)" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Mislykkedes" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "Ugyldig linje %lu i kildelisten %s ([%s] nøgle %s har ingen værdi)" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Kunne ikke forbinde passiv sokkel." -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Ugyldig linje %lu i kildelisten %s (URI)" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo kunne ikke få en lyttesokkel" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Ugyldig linje %lu i kildelisten %s (dist)" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Kunne ikke tilknytte en sokkel" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Ugyldig linje %lu i kildelisten %s (tolkning af URI)" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Kunne ikke lytte på soklen" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Ugyldig linje %lu i kildelisten %s (absolut dist)" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Kunne ikke finde soklens navn" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Ugyldig linje %lu i kildelisten %s (tolkning af dist)" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Kunne ikke sende PORT-kommando" -#: apt-pkg/sourcelist.cc:335 +#: methods/ftp.cc:802 #, c-format -msgid "Opening %s" -msgstr "Åbner %s" +msgid "Unknown address family %u (AF_*)" +msgstr "Ukendt adressefamilie %u (AF_*)" -#: apt-pkg/sourcelist.cc:371 +#: methods/ftp.cc:811 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Ugyldig linje %u i kildelisten %s (type)" +msgid "EPRT failed, server said: %s" +msgstr "EPRT mislykkedes. Serveren sagde: %s" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Typen »%s« er ukendt på linje %u i kildelisten %s" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Tidsudløb på datasokkel-forbindelse" -#: apt-pkg/sourcelist.cc:416 -#, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Typen »%s« er ukendt på stanza %u i kildelisten %s" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Kunne ikke acceptere forbindelse" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Installerer %s" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problem ved \"hashing\" af fil" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#: methods/ftp.cc:890 #, c-format -msgid "Configuring %s" -msgstr "Sætter %s op" +msgid "Unable to fetch file, server said '%s'" +msgstr "Kunne ikke hente fil. Serveren sagde »%s«" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Fjerner %s" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Tidsudløb ved datasokkel" -#: apt-pkg/deb/dpkgpm.cc:98 +#: methods/ftp.cc:935 #, c-format -msgid "Completely removing %s" -msgstr "Fjerner %s helt" +msgid "Data transfer failed, server said '%s'" +msgstr "Dataoverførsel mislykkedes, serveren sagde »%s«" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "Bemærker forsvinding af %s" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Forespørgsel" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Kører førinstallationsudløser %s" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Kunne ikke udføre " -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#: methods/connect.cc:76 #, c-format -msgid "Directory '%s' missing" -msgstr "Mappe »%s« mangler" +msgid "Connecting to %s (%s)" +msgstr "Forbinder til %s (%s)" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#: methods/connect.cc:87 #, c-format -msgid "Could not open file '%s'" -msgstr "Kunne ikke åbne filen »%s«" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/deb/dpkgpm.cc:989 +#: methods/connect.cc:94 #, c-format -msgid "Preparing %s" -msgstr "Klargør %s" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Kunne ikke oprette sokkel til %s (f=%u t=%u p=%u)" -#: apt-pkg/deb/dpkgpm.cc:990 +#: methods/connect.cc:100 #, c-format -msgid "Unpacking %s" -msgstr "Pakker %s ud" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Kan ikke oprette forbindelse til %s:%s (%s)." -#: apt-pkg/deb/dpkgpm.cc:995 +#: methods/connect.cc:108 #, c-format -msgid "Preparing to configure %s" -msgstr "Gør klar til at sætte %s op" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Kunne ikke forbinde til %s:%s (%s) grundet tidsudløb" -#: apt-pkg/deb/dpkgpm.cc:997 +#: methods/connect.cc:126 #, c-format -msgid "Installed %s" -msgstr "Installerede %s" +msgid "Could not connect to %s:%s (%s)." +msgstr "Kunne ikke forbinde til %s:%s (%s)." -#: apt-pkg/deb/dpkgpm.cc:1002 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Preparing for removal of %s" -msgstr "Gør klar til afinstallation af %s" +msgid "Connecting to %s" +msgstr "Forbinder til %s" -#: apt-pkg/deb/dpkgpm.cc:1004 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Removed %s" -msgstr "Fjernede %s" +msgid "Could not resolve '%s'" +msgstr "Kunne ikke omsætte navnet »%s«" -#: apt-pkg/deb/dpkgpm.cc:1009 +#: methods/connect.cc:205 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Gør klar til at fjerne %s helt" +msgid "Temporary failure resolving '%s'" +msgstr "Midlertidig fejl ved omsætning af navnet »%s«" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: methods/connect.cc:209 #, c-format -msgid "Completely removed %s" -msgstr "Fjernede %s helt" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "ioctl(TIOCGWINSZ) mislykkedes" +msgid "System error resolving '%s:%s'" +msgstr "Systemfejl under opløsning af »%s:%s«" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#: methods/connect.cc:211 #, c-format -msgid "Can not write log (%s)" -msgstr "Kan ikke skrive log (%s)" - -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "Er /dev/pts monteret?" - -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "Er standardud en terminal?" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Der skete noget underligt under opløsning af »%s:%s« (%i - %s)" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/connect.cc:258 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Ventede på %s, men den var der ikke" - -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "Handling blev afbrudt før den kunne afsluttes" - -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" -"Ingen apportrapport skrevet da MaxReports (maks rapporter) allerede er nået" - -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "afhængighedsproblemer - efterlader ukonfigureret" - -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"Ingen apportrapport skrevet da fejlbeskeden indikerer, at det er en " -"opfølgningsfejl fra en tidligere fejl." +msgid "Unable to connect to %s:%s:" +msgstr "Kunne ikke forbinde til %s:%s:" -#: apt-pkg/deb/dpkgpm.cc:1644 +#: methods/gpgv.cc:168 msgid "" -"No apport report written because the error message indicates a disk full " -"error" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Ingen apportrapport skrevet da fejlbeskeden indikerer en fuld disk-fejl" +"Intern fejl: Gyldig signatur, men kunne ikke afgøre nøgle-fingeraftryk?!" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Ingen apportrapport skrevet da fejlbeskeden indikerer en ikke nok " -"hukommelsesfejl" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Stødte på mindst én ugyldig signatur." -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"Ingen apportrapport skrevet da fejlbeskeden indikerer en fejl på det lokale " -"system" - -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "Ingen apportrapport skrevet da fejlbeskeden indikerer en dpkg I/O-fejl" +"Kunne ikke køre »gpgv« for at verificere signaturen (er gpgv installeret?)" -#: apt-pkg/deb/debsystem.cc:91 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"Kunne ikke låse administrationsmappen (%s), bruger en anden proces den?" - -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Kunne ikke låse administrationsmappen (%s), er du rod (root)?" +"Clearsigned-fil er ikke gyldig, fik »%s« (kræver netværket ikke " +"autentificering?)" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "dpkg blev afbrudt, du skal manuelt køre »%s« for at rette problemet." +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Ukendt fejl ved kørsel af gpgv" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Ikke låst" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Følgende signaturer var ugyldige:\n" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lid %lih %limin %lis" +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "" +"Følgende signaturer kunne ikke verificeret, da den offentlige nøgle ikke er " +"tilgængelig:\n" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%lih %limin %lis" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Tomme filer kan ikke være gyldige arkiver" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%limin %lis" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Fejl ved skrivning til filen" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%lis" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Fejl ved læsning fra serveren. Den fjerne ende lukkede forbindelsen" -#: apt-pkg/contrib/strutl.cc:1243 -#, c-format -msgid "Selection %s not found" -msgstr "Det valgte %s blev ikke fundet" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Fejl ved læsning fra server" -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Benytter ikke låsning for skrivebeskyttet låsefil %s" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Fejl ved skrivning til fil" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Kunne ikke åbne låsefilen %s" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Valg mislykkedes" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Benytter ikke låsning for nfs-monteret låsefil %s" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Tidsudløb på forbindelsen" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Kunne ikke opnå låsen %s" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Fejl ved skrivning af uddatafil" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "Liste over filer kan ikke oprettes da »%s« ikke er en mappe" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Afventer hoveder" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "Ignorerer »%s« i mappe »%s« da det ikke er en regulær fil" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Ugyldig linje i hovedet" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "Ignorerer fil »%s« i mappe »%s« da den ikke har en filendelse" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Http-serveren sendte et ugyldigt svarhovede" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" -msgstr "Ignorerer fil »%s« i mappe »%s« da den har en ugyldig filendelse" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "Http-serveren sendte et ugyldigt Content-Length-hovede" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Underprocessen %s modtog en segmenteringsfejl." +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "Http-serveren sendte et ugyldigt Content-Range-hovede" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "Underprocessen %s modtog en signal %u." +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "" +"Denne http-servere har fejlagtig understøttelse af intervaller (»ranges«)" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Underprocessen %s returnerede en fejlkode (%u)" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Ukendt datoformat" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Underprocessen %s afsluttedes uventet" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Ugyldige hoved-data" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Skrivefejl" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Forbindelsen mislykkedes" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problem under lukning af gzip-filen %s" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Intern fejl" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Kunne ikke åbne filen %s" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "Sortering" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "Kunne ikke åbne filbeskrivelse %d" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Intern fejl. InstallPackages blev kaldt med ødelagte pakker!" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Kunne ikke oprette underproces IPC" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Pakker skal afinstalleres, men Remove er deaktiveret." -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Kunne ikke udføre komprimeringsprogram " +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Intern fejl. Sortering blev ikke fuldført" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Læsefejl" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Mystisk... Størrelserne passede ikke, skriv til apt@packages.debian.org" -#: apt-pkg/contrib/fileutl.cc:1514 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "read, still have %llu to read but none left" -msgstr "læs, mangler stadig at læse %llu men der er ikke flere" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "%sB/%sB skal hentes fra arkiverne.\n" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "skriv, mangler stadig at skrive %llu men kunne ikke" +msgid "Need to get %sB of archives.\n" +msgstr "%sB skal hentes fra arkiverne.\n" -#: apt-pkg/contrib/fileutl.cc:1915 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "Problem closing the file %s" -msgstr "Problem under lukning af filen %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Efter denne handling, vil %sB yderligere diskplads være brugt.\n" -#: apt-pkg/contrib/fileutl.cc:1927 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problem under omdøbning af filen %s til %s" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Efter denne handling, vil %sB diskplads blive frigjort.\n" -#: apt-pkg/contrib/fileutl.cc:1938 +#: apt-private/private-install.cc:200 #, c-format -msgid "Problem unlinking the file %s" -msgstr "Fejl ved frigivelse af filen %s" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problem under synkronisering af fil" +msgid "You don't have enough free space in %s." +msgstr "Du har ikke nok ledig plads i %s." -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Fejl!" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Der er problemer og -y blev brugt uden --force-yes" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Færdig" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "»Trivial Only« angivet, men dette er ikke en triviel handling." -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "..." +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Ja, gør som jeg siger!" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#: apt-private/private-install.cc:222 #, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... %u%%" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Du er ved at gøre noget, der kan være skadeligt\n" +"For at fortsætte, skal du skrive »%s«\n" +" ?] " -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Kan ikke udføre mmap for en tom fil" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Afbryder." -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Kunne ikke duplikere filbeskrivelse %i" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Vil du fortsætte?" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Kunne ikke udføre mmap for %llu byte" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Nedhentningen af filer mislykkedes" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Kunne ikke lukke mmap" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"Kunne ikke hente nogle af arkiverne. Prøv evt. at køre »apt-get update« " +"eller prøv med --fix-missing." -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Kunne ikke synkronisere mmap" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing og medieskift understøttes endnu ikke" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Kunne ikke udføre mmap for %lu byte" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Kunne ikke rette manglende pakker." -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Kunne ikke afkorte filen" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Afbryder installationen." -#: apt-pkg/contrib/mmap.cc:341 -#, c-format +#: apt-private/private-install.cc:366 msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" -msgstr "" -"Dynamisk MMap løb tør for plads. Øg venligst størrelsen på APT::Cache-Start. " -"Aktuel værdi: %lu. (man 5 apt.conf)" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"Den følgende pakke forsvandt fra dit system, da\n" +"alle filer er blevet overskrevet af andre pakker:" +msgstr[1] "" +"De følgende pakker forsvandt fra dit system, da\n" +"alle filer er blevet overskrevet af andre pakker:" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Bemærk: Dette sker automatisk og med vilje af dpkg." + +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -"Kunne ikke øge størrelsen på MMap da begrænsningen på %lu byte allerede er " -"nået." +"Det er ikke meningen, at vi skal slette ting og sager, kan ikke starte " +"AutoRemover" -#: apt-pkg/contrib/mmap.cc:449 +#: apt-private/private-install.cc:499 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Kunne ikke øge størrelsen på MMap da automatisk øgning er deaktiveret af " -"bruger." - -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Kunne ikke finde monteringspunktet %s" - -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Kunne ikke finde cdrommen" +"Hmm, det lader til at AutoRemover smadrede noget, der virkelig ikke\n" +"burde kunne ske. Indsend venligst en fejlrapport om apt." -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Ukendt type-forkortelse: »%c«" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Følgende oplysninger kan hjælpe dig med at klare situationen:" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Åbner konfigurationsfilen %s" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Intern fejl. AutoRemover ødelagde noget" -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Syntaksfejl %s:%u: Blokken starter uden navn." +#: apt-private/private-install.cc:513 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "" +"Følgende pakke blev installeret automatisk, og behøves ikke længere:" +msgstr[1] "" +"Følgende pakker blev installeret automatisk, og behøves ikke længere:" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-private/private-install.cc:517 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Syntaksfejl %s:%u: Forkert udformet mærke" +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "Pakken %lu blev installeret automatisk, og behøves ikke længere.\n" +msgstr[1] "" +"Pakkerne %lu blev installeret automatisk, og behøves ikke længere.\n" -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Syntaksfejl %s:%u: Overskydende affald efter værdien" +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Brug »apt-get autoremove« til at fjerne den." +msgstr[1] "Brug »apt-get autoremove« til at fjerne dem." -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "Syntaksfejl %s:%u: Direktiver kan kun angives i topniveauet" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Du kan muligvis rette det ved at køre »apt-get -f install«:" -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Syntaksfejl %s:%u: For mange sammenkædede inkluderinger" +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"Uopfyldte afhængigheder. Prøv »apt-get -f install« uden pakker (eller angiv " +"en løsning)." -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Syntaksfejl %s:%u: Inkluderet herfra" +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"Nogle pakker kunne ikke installeres. Det kan betyde at du har ønsket\n" +"en umulig situation eller bruger den ustabile distribution, hvor enkelte\n" +"pakker endnu ikke er lavet eller gjort tilgængelige." -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Syntaksfejl %s:%u: Ikke-understøttet direktiv »%s«" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Ødelagte pakker" -#: apt-pkg/contrib/configuration.cc:900 -#, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "Syntaksfejl %s:%u: ryd direktiv kræver et tilvalgstræ som argument" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Følgende yderligere pakker vil blive installeret:" -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Syntaksfejl %s:%u: Overskydende affald i slutningen af filen" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Foreslåede pakker:" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, c-format -msgid "No keyring installed in %s." -msgstr "Ingen nøglering installeret i %s." +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Anbefalede pakker:" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-private/private-install.cc:825 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Kommandolinjetilvalget »%c« [fra %s] kendes ikke." +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "" +"Springer over %s, den er allerede installeret og opgradering er ikke " +"angivet.\n" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-private/private-install.cc:829 #, c-format -msgid "Command line option %s is not understood" -msgstr "Kommandolinjetilvalget %s blev ikke forstået" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"Springer over %s, den er ikke installeret og der blev kun anmodt om " +"opgraderinger.\n" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-private/private-install.cc:841 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Kommandolinjetilvalget %s er ikke boolsk" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Geninstallation af %s er ikke muligt, pakken kan ikke hentes.\n" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-private/private-install.cc:846 #, c-format -msgid "Option %s requires an argument." -msgstr "Tilvalget %s kræver et parameter." +msgid "%s is already the newest version.\n" +msgstr "%s er allerede den nyeste version.\n" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-private/private-install.cc:894 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Tilvalg %s: Opsætningspostens specifikation skal have en =<værdi>." +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Valgt version »%s« (%s) for »%s«\n" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-private/private-install.cc:899 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Tilvalget %s kræver et heltalligt parameter, ikke »%s«" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Valgt version »%s« (%s) for »%s« på grund af »%s«\n" -#: apt-pkg/contrib/cmndline.cc:309 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Option '%s' is too long" -msgstr "Tilvalget »%s« er for langt" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "Pakke »%s« er ikke installeret, så blev ikke fjernet. Mente du »%s«?\n" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-private/private-install.cc:947 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "%s blev ikke forstået, prøv med »true« eller »false«." +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Pakke »%s« er ikke installeret, så blev ikke fjernet\n" -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "Ugyldig handling %s" +# måske visning, kategorisering +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "Listing" -#: cmdline/apt-cache.cc:149 +#: apt-private/private-list.cc:164 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Pakken %s version %s har en uopfyldt afhængighed:\n" - -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Samlet antal pakkenavne: " - -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Samlet antal pakkestrukturer: " - -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Normale pakker: " - -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Rene virtuelle pakker: " - -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Enkelte virtuelle pakker: " - -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Blandede virtuelle pakker: " - -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Manglende: " - -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Totale forskellige versioner: " - -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Sammenlagt forskellige beskrivelser: " +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +"Der er %i yderlig version. Brug venligst kontakten »-a« til at se den." +msgstr[1] "" +"Der er %i yderligere versioner. Brug venligst kontakten »-a« til at se dem." -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Sammenlagt afhængigheder: " +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Retter afhængigheder ..." -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Sammenlagt version/fil-relationer: " +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " mislykkedes." -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Sammenlagt version/fil-relationer: " +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Kunne ikke rette afhængigheder" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Sammenlagt »Tilbyder«-markeringer: " +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Kunne ikke minimere opgraderingssættet" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Totalle søgemønsterstrenge: " +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Færdig" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Total afhængighedsversions-plads: " +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Du kan muligvis rette dette ved at køre »apt-get -f install«." -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Total »Slack«-plads: " +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Uopfyldte afhængigheder. Prøv med -f." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Total plads, der kan gøres rede for: " +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "ukendt" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 +#: apt-private/private-output.cc:234 #, c-format -msgid "Package file %s is out of sync." -msgstr "Pakkefilen %s er ude af trit." +msgid "[installed,upgradable to: %s]" +msgstr "[installeret,kan opgraderes til: %s]" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Fandt ingen pakker" +#: apt-private/private-output.cc:238 +msgid "[installed,local]" +msgstr "[Installeret,lokalt]" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Du skal angive mindst ét søgemønster" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "[installeret,kan auto-fjernes]" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" -"Denne kommando er forældet. Brug venligst »apt-mark showauto« i stedet for." +#: apt-private/private-output.cc:243 +msgid "[installed,automatic]" +msgstr "[Installeret,automatisk]" -# Overskriften til apt-cache policy, -# forkorter "Package" væk. CH -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Pakkefiler:" +#: apt-private/private-output.cc:245 +msgid "[installed]" +msgstr "[Installeret]" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Mellemlageret er ude af trit, kan ikke krydsreferere en pakkefil" +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "[kan opgraderes fra: %s]" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "»Pinned« pakker:" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "[residual-konfig]" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(ikke fundet)" +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "men %s er installeret" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Installeret: " +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "men %s forventes installeret" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidat: " +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "men den kan ikke installeres" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ingen)" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "men det er en virtuel pakke" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Pakke-pin: " +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "men den er ikke installeret" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Versionstabel:" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "men den bliver ikke installeret" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s for %s kompileret på %s %s\n" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " eller" -#: cmdline/apt-cache.cc:1749 -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" -msgstr "" -"Brug: apt-cache [tilvalg] kommando\n" -" apt-cache [tilvalg] showpkg pakke1 [pakke2 ...]\n" -" apt-cache [tilvalg] showsrc pakke1 [pakke2 ...]\n" -"\n" -"apt-cache er et lavniveauværktøj, brugt til at manipulere APTs\n" -"binære mellemlagerfiler og hente oplysninger fra dem.\n" -"\n" -"Kommandoer:\n" -" gencaches - Opbyg både pakke- og kildemellemlageret\n" -" showpkg - Vis generelle oplysninger om en enkelt pakke\n" -" showsrc - Vis kildetekstposter\n" -" stats - Vis nogle grundlæggende statistikker\n" -" dump - Vis hele filen i kort form\n" -" dumpavail - Udlæs en »available«-fil til standard-ud\n" -" unmet - Vis uopfyldte afhængigheder\n" -" search - Gennemsøg pakkelisten med et regulært udtryk\n" -" show - Vis en læsbar post for pakken\n" -" depends - Vis de rå afhængighedsoplysninger for en pakke\n" -" rdepends - Vis omvendte afhængighedsoplysninger for en pakke\n" -" pkgnames - Vis navnene på alle pakker\n" -" dotty - Generér pakkegrafer til GraphViz\n" -" xvcg - Generér pakkegrafer til xvcg\n" -" policy - Vis policy-indstillinger\n" -"\n" -"Tilvalg:\n" -" -h Denne hjælpetekst.\n" -" -p=? Pakkemellemlageret.\n" -" -s=? Kildemellemlageret.\n" -" -q Deaktiver fremgangsindikatoren.\n" -" -i Vis kun vigtige afhængigheder for kommandoen »unmet«.\n" -" -c=? Læs denne opsætningsfil\n" -" -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n" -"Se manualsiderne for apt-cache(8) og apt.conf(5) for flere oplysninger.\n" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Følgende pakker har uopfyldte afhængigheder:" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "" -"Angiv venligst et navn for denne disk, som f.eks. »Debian 5.0.3 Disk 1«" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Følgende NYE pakker vil blive installeret:" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Indsæt en disk i drevet og tryk retur" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Følgende pakker vil blive AFINSTALLERET:" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Kunne ikke montere %s til %s" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Følgende pakker er blevet holdt tilbage:" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" -"Ingen cd-rom kunne detekteres eller findes via standardmonteringspunktet.\n" -"Du kan prøve tilvalget --cdrom for at angive cd-rom-monteringspunktet.\n" -"Se »man apt-cdrom« for yderligere information om automatisk detektering af " -"cd-rom og monteringspunkt." +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Følgende pakker vil blive opgraderet:" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Gentag processen for resten af cd'erne i dit sæt." +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Følgende pakker vil blive NEDGRADERET:" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Parametre ikke angivet i par" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Følgende tilbageholdte pakker vil blive ændret:" -#: cmdline/apt-config.cc:89 +#: apt-private/private-output.cc:668 +#, c-format +msgid "%s (due to %s) " +msgstr "%s (grundet %s) " + +#: apt-private/private-output.cc:676 msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Brug: apt-config [tilvalg] kommando\n" -"\n" -"apt-config er et simpelt værktøj til at læse APTs opsætningsfil\n" -"\n" -"Kommandoer:\n" -" shell - Skal-tilstand\n" -" dump - Vis opsætningen\n" -"\n" -"Tilvalg:\n" -" -h Denne hjælpetekst.\n" -" -c=? Læs denne opsætningsfil\n" -" -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n" +"ADVARSEL: Følgende essentielle pakker vil blive afinstalleret\n" +"Dette bør IKKE ske medmindre du er helt klar over, hvad du laver!" -#: cmdline/apt-get.cc:245 +#: apt-private/private-output.cc:707 #, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Kan ikke finde en pakke for arkitektur »%s«" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu opgraderes, %lu nyinstalleres, " -#: cmdline/apt-get.cc:327 +#: apt-private/private-output.cc:711 #, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Kan ikke finde en pakke »%s« med version »%s«" +msgid "%lu reinstalled, " +msgstr "%lu geninstalleres, " -#: cmdline/apt-get.cc:330 +#: apt-private/private-output.cc:713 #, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Kan ikke finde en pakke »%s« med udgivelse »%s«" +msgid "%lu downgraded, " +msgstr "%lu nedgraderes, " -#: cmdline/apt-get.cc:367 +#: apt-private/private-output.cc:715 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Vælger »%s« som kildepakke fremfor »%s«\n" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu afinstalleres og %lu opgraderes ikke.\n" -#: cmdline/apt-get.cc:423 +#: apt-private/private-output.cc:719 #, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Kan ikke finde version »%s« for pakke »%s«" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu ikke fuldstændigt installerede eller afinstallerede.\n" -#: cmdline/apt-get.cc:454 +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[J/n]" + +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[j/N]" + +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "J" + +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" + +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Couldn't find package %s" -msgstr "Kunne ikke finde pakken %s" +msgid "Regex compilation error - %s" +msgstr "Fejl ved tolkning af regulært udtryk - %s" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "»update«-kommandoen benytter ingen parametre" + +#: apt-private/private-update.cc:90 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s sat til manuelt installeret.\n" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +"%i pakke kan opgraderes. Kør »apt list --upgradable« for at se den.\n" +msgstr[1] "" +"%i pakker kan opgraderes. Kør »apt list --upgradable« for at se dem.\n" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "Alle pakker er opdateret." + +#: apt-private/private-show.cc:156 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s sat til automatisk installation.\n" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +"Der er %i yderligere post. Brug venligst kontakten »-a« for at se den." +msgstr[1] "" +"Der er %i yderligere poster. Brug venligst kontakten »-a« for at se dem." -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "ikke en reel pakke (virtuel)" + +#: apt-private/private-main.cc:32 msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -"Denne kommando er forældet. Brug venligst »apt-mark auto« og »apt-mark " -"manual« i stedet for." +"BEMÆRK: Dette er kun en simulering!\n" +" apt-get kræver rootprivilegier for reel kørsel.\n" +" Husk også at låsning er deaktiveret,\n" +" så stol ikke på relevansen for den reelle aktuelle situation!" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Intern fejl. Problemløseren ødelagde noget" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "ADVARSEL: Følgende pakkers autenticitet kunne ikke verificeres!" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Kunne ikke låse nedhentningsmappen" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Autentifikationsadvarsel tilsidesat.\n" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Du skal angive mindst én pakke at hente kildeteksten til" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Nogle pakker kunne ikke autentificeres" + +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Installér disse pakker uden verifikation?" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Kunne ikke finde kildetekstpakken for %s" +msgid "Failed to fetch %s %s\n" +msgstr "Kunne ikke hente %s %s\n" -#: cmdline/apt-get.cc:786 +#: apt-private/private-sources.cc:58 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" -"BEMÆRK: Pakning af »%s« vedligeholdes i versionskontrolsystemet »%s« på:\n" -"%s\n" +msgid "Failed to parse %s. Edit again? " +msgstr "Kunne ikke fortolke %s. Rediger igen? " -#: cmdline/apt-get.cc:791 +#: apt-private/private-sources.cc:70 +#, c-format +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "Din »%s« fil blev ændret, kør venligst »apt-get update«." + +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "Fuldtekst-søgning" + +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Beregner opgraderingen ... " + +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Færdig" + +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Havde " + +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Henter:" + +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ignorerer " + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Fejl " + +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Hentede %sB på %s (%sB/s)\n" + +#: apt-private/acqprogress.cc:236 +#, c-format +msgid " [Working]" +msgstr " [Arbejder]" + +#: apt-private/acqprogress.cc:297 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"Brug venligst:\n" -"bzr branch %s\n" -"for at hente de seneste (muligvis ikke udgivet) opdateringer til pakken.\n" +"Medieskift: Indsæt disken med navnet\n" +" »%s«\n" +"i drevet »%s« og tryk retur\n" -#: cmdline/apt-get.cc:843 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Overspringer allerede hentet fil »%s«\n" +msgid "Unable to read %s" +msgstr "Kunne ikke læse %s" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Kunne ikke bestemme ledig plads i %s" +msgid "Unable to change to %s" +msgstr "Kunne ikke skifte til %s" -#: cmdline/apt-get.cc:882 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Du har ikke nok ledig plads i %s" +msgid "No mirror file '%s' found " +msgstr "Ingen spejlfil »%s« fundet " -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "%sB/%sB skal hentes fra kildetekst-arkiverne.\n" +msgid "Can not read mirror file '%s'" +msgstr "Kan ikke læse spejlfil »%s«" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 +#: methods/mirror.cc:315 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "%sB skal hentes fra kildetekst-arkiverne.\n" +msgid "No entry found in mirror file '%s'" +msgstr "Ingen post fundet i spejlfil »%s«" -#: cmdline/apt-get.cc:902 +#: methods/mirror.cc:445 #, c-format -msgid "Fetch source %s\n" -msgstr "Henter kildetekst %s\n" +msgid "[Mirror: %s]" +msgstr "[Spejl: %s]" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Nogle arkiver kunne ikke hentes." +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Kunne ikke oprette IPC-videreførsel til underproces" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Nedhentning afsluttet i »hent-kun«-tilstand" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Forbindelsen lukkedes for hurtigt" -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Overspringer udpakning af allerede udpakket kildetekst i %s\n" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Ugyldig standardindstilling!" -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Udpakningskommandoen »%s« fejlede.\n" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Tryk retur for at fortsætte." -#: cmdline/apt-get.cc:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Tjek om pakken »dpkg-dev« er installeret.\n" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Ønsker du at slette nogle tidligere hentede .deb-filer?" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "Opbygningskommandoen »%s« fejlede.\n" +# Note to translators: The following four messages belong together. It doesn't +# matter where sentences start, but it has to fit in just these four lines, and +# at only 80 characters per line, if possible. +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Der opstod fejl under udpakningen. Pakker som blev installeret" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Barneprocessen fejlede" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "vil blive konfigureret. Det kan give gentagne fejl" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "Skal angive mindst én pakke at tjekke opbygningsafhængigheder for" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "" +"eller fejl, der skyldes manglende afhængigheder. Dette er o.k. Det er kun" -#: cmdline/apt-get.cc:1054 -#, c-format +#: dselect/install:105 msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"Ingen arkitekturinformation tilgængelig for %s. Se apt.conf(5) APT::" -"Architectures for opsætning" +"fejlene over denne besked, der er vigtige. Ret dem og kør [I]nstallér igen" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Kunne ikke hente oplysninger om opbygningsafhængigheder for %s" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Sammenfletter tilgængelighedsoplysninger" -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s har ingen opbygningsafhængigheder.\n" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode kaldt med endnu forbundet knude" -#: cmdline/apt-get.cc:1271 -#, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"Afhængigheden %s for %s kan ikke opfyldes, da %s ikke er tilladt på »%s«" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Kunne ikke finde hash-element!" -#: cmdline/apt-get.cc:1289 -#, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" -"Afhængigheden %s for %s kan ikke opfyldes, da pakken %s ikke blev fundet" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Kunne ikke allokere omrokering" -#: cmdline/apt-get.cc:1312 -#, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"Kunne ikke opfylde %s-afhængigheden for %s: Den installerede pakke %s er for " -"ny" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Intern fejl i AddDiversion" -#: cmdline/apt-get.cc:1351 +#: apt-inst/filelist.cc:477 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"Afhængigheden %s for %s kan ikke opfyldes, da ingen af de tilgængelige " -"kandidater for pakken %s kan tilfredsstille versionskravene" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Forsøger at overskrive en omrokering, %s -> %s og %s/%s" -#: cmdline/apt-get.cc:1357 +#: apt-inst/filelist.cc:506 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "" -"%s-afhængigheden for %s kan ikke opfyldes, da pakken %s ikke har en " -"kandidatversion" +msgid "Double add of diversion %s -> %s" +msgstr "Dobbelt tilføjelse af omrokering %s -> %s" -#: cmdline/apt-get.cc:1380 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Kunne ikke opfylde %s-afhængigheden for %s: %s" +msgid "Duplicate conf file %s/%s" +msgstr "Dobbelt opsætningsfil %s/%s" -#: cmdline/apt-get.cc:1395 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Opbygningsafhængigheden for %s kunne ikke opfyldes." - -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Kunne ikke behandler opbygningsafhængighederne" +msgid "The path %s is too long" +msgstr "Stien %s er for lang" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-inst/extract.cc:132 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Ændringslog for %s (%s)" +msgid "Unpacking %s more than once" +msgstr "Pakkede %s ud flere gange" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Understøttede moduler:" +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "Mappen %s er omrokeret" -#: cmdline/apt-get.cc:1632 -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -msgstr "" -"Brug: apt-get [tilvalg] kommando\n" -" apt-get [tilvalg] install|remove pakke1 [pakke2 ...]\n" -" apt-get [tilvalg] source pakke1 [pakke2 ...]\n" -"\n" -"apt-get er en simpel kommandolinjegrænseflade til at hente og\n" -"installere pakker. De hyppigst brugte kommandoer er update og\n" -"install.\n" -"\n" -"Kommandoer:\n" -" update - Hent nye lister over pakker\n" -" upgrade - Udfør en opgradering\n" -" install - Installer nye pakker (pakke er libc6, ikke libc6.deb)\n" -" remove - Afinstaller pakker\n" -" autoremove - Afinstaller automatisk alle ubrugte pakker\n" -" purge - Fjern pakker og konfigurationsfiler\n" -" source - Hent kildetekstarkiver\n" -" build-dep - Sæt opbygningsafhængigheder op for kildetekstpakker\n" -" dist-upgrade - Distributionsopgradering, se apt-get(8)\n" -" dselect-upgrade - Følg valgene fra dselect\n" -" clean - Slet hentede arkivfiler\n" -" autoclean - Slet gamle hentede arkivfiler\n" -" check - Tjek at der ikke er uopfyldte afhængigheder\n" -" changelog - Hent og vis ændringsloggen for den angivne pakke\n" -" download - Hent den binære pakke til den aktuelle mappe\n" -"\n" -"Tilvalg:\n" -" -h Denne hjælpetekst.\n" -" -q Uddata, der kan logges - ingen fremgangsindikator\n" -" -qq Ingen uddata, kun fejl\n" -" -d Hent kun - installér eller udpak IKKE arkiverne\n" -" -s Gør intet. Simulér handlingen\n" -" -y Antag »ja«-svar til alle spørgsmål uden at spørge\n" -" -f Forsøg at fortsætte selvom integritetstjek fejler\n" -" -m Forsøg at fortsætte selvom arkiverne ikke kan findes\n" -" -u Vis også en liste over opgraderede pakker\n" -" -b Byg kildetekstpakken efter at have hentet den\n" -" -V Vis detaljerede versionsnumre\n" -" -c=? Læs denne opsætningsfil\n" -" -o=? Angiv et arbitrært opsætningsvalg. F.eks. -o dir::cache=/tmp\n" -"Se manualsiderne for apt-get(8), sources.list(5) og apt.conf(5)\n" -"for flere oplysninger og tilvalg.\n" -" Denne APT har »Super Cow Powers«.\n" +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Pakken forsøger at skrive til omrokeret mål %s/%s" -#: cmdline/apt-helper.cc:35 -msgid "Must specify at least one pair url/filename" -msgstr "Du skal angive mindst et par i form af adresse/filnavn" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Omrokeringsstien er for lang" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "Kunne ikke hente pakkerne" +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 +#, c-format +msgid "Failed to stat %s" +msgstr "Kunne ikke finde %s" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" -"Brug: apt-helper [tilvalg] kommando\n" -" apt-helper [tilvalg] download-file uri target-path\n" -"\n" -"apt-helper er et internt hjælpeprogram for apt\n" -"\n" -"Kommandoer:\n" -" download-file - hent den angivne uri til mål-sti\n" -"\n" -" Dette APT-hjælpeprogram har Super Meep Powers.\n" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Kunne ikke omdøbe %s til %s" -#: cmdline/apt-mark.cc:68 +#: apt-inst/extract.cc:249 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s kan ikke markeres, da den ikke er installeret.\n" +msgid "The directory %s is being replaced by a non-directory" +msgstr "Mappen %s bliver erstattet af en ikke-mappe" -#: cmdline/apt-mark.cc:74 +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Kunne ikke finde knuden i sin hash-bucket" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Stien er for lang" + +#: apt-inst/extract.cc:421 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s var allerede sat til manuelt installeret.\n" +msgid "Overwrite package match with no version for %s" +msgstr "Overskriv pakkematch uden version for %s" -#: cmdline/apt-mark.cc:76 +#: apt-inst/extract.cc:438 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s var allerede sat til automatisk installeret.\n" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "File %s/%s overskriver filen i pakken %s" -#: cmdline/apt-mark.cc:241 +#: apt-inst/extract.cc:498 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s var allerede sat i bero.\n" +msgid "Unable to stat %s" +msgstr "Kunne ikke finde %s" -#: cmdline/apt-mark.cc:243 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s var allerede ikke i bero.\n" +msgid "Failed to write file %s" +msgstr "Kunne ikke skrive filen %s" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "%s set on hold.\n" -msgstr "%s sat i bero.\n" +msgid "Failed to close file %s" +msgstr "Kunne ikke lukke filen %s" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Afbrød i bero for %s.\n" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Dette er ikke et gyldigt DEB-arkiv, mangler »%s«-elementet" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "Kørsel af dpkg fejlede. Er du root (administrator)?" +#: apt-inst/deb/debfile.cc:132 +#, c-format +msgid "Internal error, could not locate member %s" +msgstr "Intern fejl, kunne ikke finde elementet %s" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" -"Brug: apt-mark [tilvalg] {auto|manual} pakke1 [pakke2 ...]\n" -"\n" -"apt-mark er en simpel kommandolinjegrænseflade for markering af pakker\n" -"som manuelt eller automatisk installeret. Programmet kan også vise\n" -"markeringerne.\n" -"\n" -"Kommandoer:\n" -" auto - Marker de givne pakker som automatisk installeret\n" -" manual - Marker de givne pakker som manuelt installeret\n" -" hold - Marker en pakke som tilbageholdt\n" -" unhold - Fjern tilbageholdelse på pakke\n" -" showauto - Vis listen over automatisk installerede pakker\n" -" showmanual - Vis listen over manuelt installerede pakker\n" -" showhold - Vis listen over tilbageholdte pakker\n" -"\n" -"Tilvalg:\n" -" -h Denne hjælpetekst.\n" -" -q Logbar uddata - ingen statusindikator\n" -" -qq Ingen uddata undtagen for fejl\n" -" -s Ingen handling. Viser kun hvad der ville blive udført.\n" -" -f læs/skriv auto/manuel markering i den givne fil\n" -" -c=? Læs denne konfigurationsfil\n" -" -o=? Angiv en arbitrær konfigurationsindstilling, f.eks. -o dir::cache=/" -"tmp\n" -"Se manualsiderne apt-mark(8) og apt.conf(5) for yderligere information." +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Ikke-tolkbar kontrolfil" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" -"Brug: apt [tilvalg] kommando\n" -"\n" -"CLI for apt.\n" -"Kommandoer: \n" -" list - vis pakker baseret på pakkenavn\n" -" search - søg i pakkebeskrivelser\n" -" show - vis pakkedetaljer\n" -"\n" -" update - opdater listen over tilgængelige pakker\n" -"\n" -" install - installer pakker\n" -" remove - fjern pakker\n" -"\n" -" upgrade - opgradere systemet ved at installere/opgradere pakker\n" -" full-upgrade - opgradere systemet ved at fjerne/installere/opgradere " -"pakker\n" -"\n" -" edit-sources - rediger source-informationsfilen (kildefilen)\n" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Ugyldig arkivsignatur" -#: methods/cdrom.cc:203 +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Fejl under læsning af arkivelements hoved" + +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Kunne ikke læse cdrom-databasen %s" +msgid "Invalid archive member header %s" +msgstr "Ugyldigt arkivelementhoved %s" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"Brug apt-cdrom for at apt kan lære den at kende. apt-get update kan ikke " -"bruges til at tilføje nye cd'er" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Ugyldigt arkivelementhoved" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Forkert cd" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Arkivet er for kort" -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Kunne ikke afmontere cdrommen i %s, den er muligvis stadig i brug." +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Kunne ikke læse arkivhovederne" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disk blev ikke fundet." +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Kunne ikke oprette videreførsler" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Fil blev ikke fundet" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Kunne ikke udføre gzip " -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Kunne ikke finde" +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Ødelagt arkiv" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Kunne ikke angive ændringstidspunkt" +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar-tjeksum fejlede, arkivet er ødelagt" + +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Ukendt TAR-hovedtype %u, element %s" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Ugyldig URI, lokale URI'er må ikke starte med //" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "Status: [%3i%%]" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Logget på" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Kører dpkg" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Kunne ikke bestemme serverens navn" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Pakkesystemet »%s« understøttes ikke" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Kunne ikke bestemme det lokale navn" +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Kunne ikke bestemme en passende pakkesystemtype" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Serveren nægtede os forbindelse og sagde: %s" +msgid "Wrote %i records.\n" +msgstr "Skrev %i poster.\n" -#: methods/ftp.cc:225 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "USER failed, server said: %s" -msgstr "angivelse af brugernavn mislykkedes, serveren sagde: %s" +msgid "Wrote %i records with %i missing files.\n" +msgstr "Skrev %i poster med %i manglende filer.\n" -#: methods/ftp.cc:232 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "PASS failed, server said: %s" -msgstr "angivelse af adgangskode mislykkedes, serveren sagde: %s" +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Skrev %i poster med %i ikke-trufne filer\n" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"Der blev angivet en proxyserver men intet logpå-skript; Acquire::ftp::" -"ProxyLogin er tom." +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "Skrev %i poster med %i manglende filer og %i ikke-trufne filer\n" -#: methods/ftp.cc:280 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Logpå-skriptets kommando »%s« mislykkedes. Serveren sagde: %s" +msgid "Can't find authentication record for: %s" +msgstr "Kan ikke finde godkendelsesregistrering for: %s" -#: methods/ftp.cc:306 +#: apt-pkg/indexcopy.cc:521 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE mislykkedes. Serveren sagde: %s" +msgid "Hash mismatch for: %s" +msgstr "Hashsum stemmer ikke: %s" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Tidsudløb på forbindelsen" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Pakkelisterne eller statusfilen kunne ikke tolkes eller åbnes." -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Serveren lukkede forbindelsen" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Du kan muligvis rette problemet ved at køre »apt-get update«" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Mellemlageret blev overfyldt af et svar." +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Listen med kilder kunne ikke læses." -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protokolfejl" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Tomt pakke-mellemlager" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Kunne ikke oprette sokkel" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Pakke-mellemlagerets fil er ødelagt" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Kunne ikke forbinde datasokkel, tidsudløb på forbindelsen" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Pakke-mellemlagerets fil er af en inkompatibel version" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Mislykkedes" +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "Pakke-mellemlagerets fil er ødelagt, den er for lille" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Kunne ikke forbinde passiv sokkel." +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "Denne APT understøtter ikke versionssystemet »%s«" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo kunne ikke få en lyttesokkel" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Pakke-mellemlageret er lavet til en anden arkitektur" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Kunne ikke tilknytte en sokkel" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Afhængigheder" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Kunne ikke lytte på soklen" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Præ-afhængigheder" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Kunne ikke finde soklens navn" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Foreslåede" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Kunne ikke sende PORT-kommando" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Anbefalede" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Ukendt adressefamilie %u (AF_*)" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Konflikter" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT mislykkedes. Serveren sagde: %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Erstatter" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Tidsudløb på datasokkel-forbindelse" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Overflødiggør" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Kunne ikke acceptere forbindelse" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Ødelægger" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problem ved \"hashing\" af fil" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Forbedringer" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Kunne ikke hente fil. Serveren sagde »%s«" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "vigtig" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Tidsudløb ved datasokkel" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "krævet" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Dataoverførsel mislykkedes, serveren sagde »%s«" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standard" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Forespørgsel" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "frivillig" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Kunne ikke udføre " +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "ekstra" -#: methods/connect.cc:76 +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Forbinder til %s (%s)" +msgid "The method driver %s could not be found." +msgstr "Metodedriveren %s blev ikke fundet." -#: methods/connect.cc:87 +#: apt-pkg/acquire-worker.cc:118 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Is the package %s installed?" +msgstr "Er pakken %s installeret?" -#: methods/connect.cc:94 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Kunne ikke oprette sokkel til %s (f=%u t=%u p=%u)" +msgid "Method %s did not start correctly" +msgstr "Metoden %s startede ikke korrekt" -#: methods/connect.cc:100 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Kan ikke oprette forbindelse til %s:%s (%s)." +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Indsæt disken med navnet: »%s« i drevet »%s« og tryk retur." + +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "Indeksfiler af typen »%s« understøttes ikke" + +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Opbygger afhængighedstræ" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Kandidatversioner" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Afhængighedsgenerering" -#: methods/connect.cc:108 -#, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Kunne ikke forbinde til %s:%s (%s) grundet tidsudløb" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Læser tilstandsoplysninger" -#: methods/connect.cc:126 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Kunne ikke forbinde til %s:%s (%s)." +msgid "Failed to open StateFile %s" +msgstr "Kunne ikke åbne StateFile %s" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Connecting to %s" -msgstr "Forbinder til %s" +msgid "Failed to write temporary StateFile %s" +msgstr "Kunne ikke skrive den midlertidige StateFile %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Could not resolve '%s'" -msgstr "Kunne ikke omsætte navnet »%s«" +msgid "rename failed, %s (%s -> %s)." +msgstr "omdøbning mislykkedes, %s (%s -> %s)." -#: methods/connect.cc:205 -#, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Midlertidig fejl ved omsætning af navnet »%s«" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Hashsum stemmer ikke" -#: methods/connect.cc:209 -#, c-format -msgid "System error resolving '%s:%s'" -msgstr "Systemfejl under opløsning af »%s:%s«" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Størrelsen stemmer ikke" -#: methods/connect.cc:211 -#, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Der skete noget underligt under opløsning af »%s:%s« (%i - %s)" +#: apt-pkg/acquire-item.cc:173 +msgid "Invalid file format" +msgstr "Ugyldigt filformat" -#: methods/connect.cc:258 +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Kunne ikke forbinde til %s:%s:" - -#: methods/gpgv.cc:168 msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"Intern fejl: Gyldig signatur, men kunne ikke afgøre nøgle-fingeraftryk?!" +"Kunne ikke finde uventet punkt »%s« i udgivelsesfil (forkert sources.list-" +"punkt eller forkert udformet fil)" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Stødte på mindst én ugyldig signatur." +#: apt-pkg/acquire-item.cc:1589 +#, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Kunne ikke finde hashsum for »%s« i udgivelsesfilen" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" msgstr "" -"Kunne ikke køre »gpgv« for at verificere signaturen (er gpgv installeret?)" +"Der er ingen tilgængelige offentlige nøgler for følgende nøgle-ID'er:\n" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1669 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -"Clearsigned-fil er ikke gyldig, fik »%s« (kræver netværket ikke " -"autentificering?)" - -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Ukendt fejl ved kørsel af gpgv" +"Udgivelsesfil for %s er udløbet (ugyldig siden %s). Opdateringer for dette " +"arkiv vil ikke blive anvendt." -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Følgende signaturer var ugyldige:\n" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Konfliktdistribution: %s (forventede %s men fik %s)" -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1721 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -"Følgende signaturer kunne ikke verificeret, da den offentlige nøgle ikke er " -"tilgængelig:\n" +"Der opstod en fejl under underskriftsbekræftelse. Arkivet er ikke opdateret " +"og den forrige indeksfil vil blive brugt. GPG-fejl: %s: %s\n" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Tomme filer kan ikke være gyldige arkiver" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "GPG-fejl: %s: %s" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Fejl ved skrivning til filen" +#: apt-pkg/acquire-item.cc:1859 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"Jeg kunne ikke lokalisere filen til %s-pakken. Det betyder muligvis at du er " +"nødt til manuelt at reparere denne pakke. (grundet manglende arch)" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Fejl ved læsning fra serveren. Den fjerne ende lukkede forbindelsen" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "Kan ikke finde en kilde til at hente version »%s« for »%s«" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Fejl ved læsning fra server" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "Pakkeindeksfilerne er i stykker. Intet »Filename:«-felt for pakken %s." -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Fejl ved skrivning til fil" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Indeksfiler af typen »%s« understøttes ikke" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Valg mislykkedes" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Kunne ikke finde %s." -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Tidsudløb på forbindelsen" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Mellemlageret benytter en inkompatibel versionsstyring" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Fejl ved skrivning af uddatafil" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Der opstod en fejl under behandlingen af %s (%s%d)" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Afventer hoveder" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "" +"Hold da op! Du nåede over det antal pakkenavne, denne APT kan håndtere." -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Ugyldig linje i hovedet" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Hold da op! Du nåede over det antal versioner, denne APT kan håndtere." -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Http-serveren sendte et ugyldigt svarhovede" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Hold da op! Du nåede over det antal versioner, denne APT kan håndtere." -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Http-serveren sendte et ugyldigt Content-Length-hovede" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "" +"Hold da op! Du nåede over det antal afhængigheder, denne APT kan håndtere." -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Http-serveren sendte et ugyldigt Content-Range-hovede" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Pakken %s %s blev ikke fundet under behandlingen af filafhængigheder" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "" -"Denne http-servere har fejlagtig understøttelse af intervaller (»ranges«)" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Kunne ikke finde kildepakkelisten %s" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Ukendt datoformat" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Indlæser pakkelisterne" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Ugyldige hoved-data" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Samler filudbud" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Forbindelsen mislykkedes" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Kunne ikke skrive til %s" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Intern fejl" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "IO-fejl ved gemning af kilde-mellemlageret" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Beregner opgraderingen ... " +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Leverandørblok %s inderholder intet fingeraftryk" + +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Listemappen %spartial mangler." -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Færdig" +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Arkivmappen %spartial mangler." -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "Sortering" +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "Kunne ikke låse mappen %s" -# måske visning, kategorisering -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "Listing" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Henter fil %li ud af %li (%s tilbage)" -#: apt-private/private-list.cc:164 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -"Der er %i yderlig version. Brug venligst kontakten »-a« til at se den." -msgstr[1] "" -"Der er %i yderligere versioner. Brug venligst kontakten »-a« til at se dem." +msgid "Retrieving file %li of %li" +msgstr "Henter fil %li ud af %li" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Retter afhængigheder ..." +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"Nogle indeksfiler kunne ikke hentes. De er blevet ignoreret eller de gamle " +"bruges i stedet." -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " mislykkedes." +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Du skal have nogle »source«-URI'er i din sources.list" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Kunne ikke rette afhængigheder" +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" +"Værdien »%s« er ugyldig for APT::Default-Release da sådan en udgivelse ikke " +"er tilgængelig i kilderne" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Kunne ikke minimere opgraderingssættet" +#: apt-pkg/policy.cc:422 +#, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Ugyldig indgang i indstillingsfilen %s, pakkehovedet mangler" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Færdig" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Kunne ikke forstå pin-type %s" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Du kan muligvis rette dette ved at køre »apt-get -f install«." +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Ingen prioritet (eller prioritet nul) angivet ved pin" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Uopfyldte afhængigheder. Prøv med -f." +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" +"Kunne ikke udføre øjeblikkelig konfiguration på »%s«. Se venligst man 5 apt." +"conf under APT:Immediate-Cinfigure for detaljer. (%d)" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "ukendt" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Kunne ikke åbne filen »%s«. " -#: apt-private/private-output.cc:234 +#: apt-pkg/packagemanager.cc:630 #, c-format -msgid "[installed,upgradable to: %s]" -msgstr "[installeret,kan opgraderes til: %s]" +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"Kørsel af denne installation kræver midlertidig afinstallation af den " +"essentielle pakke %s grundet en afhængighedsløkke. Det er ofte en dårlig " +"ide, men hvis du virkelig vil gøre det, kan du aktivere valget »APT::Force-" +"LoopBreak«." -#: apt-private/private-output.cc:238 -msgid "[installed,local]" -msgstr "[Installeret,lokalt]" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "Linjen %u er for lang i kildelisten %s." -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "[installeret,kan auto-fjernes]" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Afmonterer CD-ROM ...\n" -#: apt-private/private-output.cc:243 -msgid "[installed,automatic]" -msgstr "[Installeret,automatisk]" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "Bruger CD-ROM-monteringspunktet %s\n" -#: apt-private/private-output.cc:245 -msgid "[installed]" -msgstr "[Installeret]" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Venter på disken ...\n" -#: apt-private/private-output.cc:249 -#, c-format -msgid "[upgradable from: %s]" -msgstr "[kan opgraderes fra: %s]" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Monterer CD-ROM ...\n" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" -msgstr "[residual-konfig]" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identificerer ... " -#: apt-private/private-output.cc:435 +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "but %s is installed" -msgstr "men %s er installeret" +msgid "Stored label: %s\n" +msgstr "Gemt mærkat: %s \n" -#: apt-private/private-output.cc:437 +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Skanner disken for indeksfiler ...\n" + +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "but %s is to be installed" -msgstr "men %s forventes installeret" +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" +"Fandt %zu pakkeindekser, %zu kildeindekser, %zu oversættelsesindekser og %zu " +"signaturer\n" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "men den kan ikke installeres" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" +"Kunne ikke finde nogen pakkefiler, det er muligvis ikke en Debiandisk eller " +"den forkerte arkitektur?" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "men det er en virtuel pakke" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "Fandt mærkatet »%s«\n" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "men den er ikke installeret" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Det er ikke et gyldigt navn, prøv igen.\n" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "men den bliver ikke installeret" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Denne disk hedder: \n" +"»%s«\n" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " eller" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopierer pakkelisterne ..." -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Følgende pakker har uopfyldte afhængigheder:" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Skriver ny kildeliste\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Følgende NYE pakker vil blive installeret:" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Denne disk har følgende kildeliste-indgange:\n" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Følgende pakker vil blive AFINSTALLERET:" +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"Pakken %s skal geninstalleres, men jeg kan ikke finde noget arkiv med den." -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Følgende pakker er blevet holdt tilbage:" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Fejl, pkgProblemResolver::Resolve satte stopklodser op, det kan skyldes " +"tilbageholdte pakker." -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Følgende pakker vil blive opgraderet:" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "" +"Kunne ikke korrigere problemerne, da du har tilbageholdt ødelagte pakker." -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Følgende pakker vil blive NEDGRADERET:" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Send scenarie til problemløser" + +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Send forespørgsel til problemløser" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Følgende tilbageholdte pakker vil blive ændret:" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Forbered for modtagelse af løsning" -#: apt-private/private-output.cc:668 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (grundet %s) " +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "Ekstern problemløser fejlede uden en korrekt fejlbesked" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" -msgstr "" -"ADVARSEL: Følgende essentielle pakker vil blive afinstalleret\n" -"Dette bør IKKE ske medmindre du er helt klar over, hvad du laver!" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Kør ekstern problemløser" -#: apt-private/private-output.cc:707 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu opgraderes, %lu nyinstalleres, " +msgid "Unable to parse package file %s (1)" +msgstr "Kunne ikke tolke pakkefilen %s (1)" -#: apt-private/private-output.cc:711 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu geninstalleres, " +msgid "Unable to parse package file %s (2)" +msgstr "Kunne ikke tolke pakkefilen %s (2)" -#: apt-private/private-output.cc:713 +#: apt-pkg/indexrecords.cc:78 #, c-format -msgid "%lu downgraded, " -msgstr "%lu nedgraderes, " +msgid "Unable to parse Release file %s" +msgstr "Kunne ikke fortolke udgivelsesfil %s" -#: apt-private/private-output.cc:715 +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu afinstalleres og %lu opgraderes ikke.\n" +msgid "No sections in Release file %s" +msgstr "Ingen afsnit i udgivelsesfil %s" -#: apt-private/private-output.cc:719 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu ikke fuldstændigt installerede eller afinstallerede.\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[J/n]" - -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[j/N]" - -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "J" - -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "N" - -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "»update«-kommandoen benytter ingen parametre" +msgid "No Hash entry in Release file %s" +msgstr "Intet hashpunkt i udgivelsesfil %s" -#: apt-private/private-update.cc:90 +#: apt-pkg/indexrecords.cc:130 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -"%i pakke kan opgraderes. Kør »apt list --upgradable« for at se den.\n" -msgstr[1] "" -"%i pakker kan opgraderes. Kør »apt list --upgradable« for at se dem.\n" - -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "Alle pakker er opdateret." +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Ugyldigt punkt »Valid-Until« i udgivelsesfil %s" -#: apt-private/private-show.cc:156 +#: apt-pkg/indexrecords.cc:149 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -"Der er %i yderligere post. Brug venligst kontakten »-a« for at se den." -msgstr[1] "" -"Der er %i yderligere poster. Brug venligst kontakten »-a« for at se dem." - -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "ikke en reel pakke (virtuel)" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Ugyldigt punkt »Date« i udgivelsesfil %s" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Intern fejl. InstallPackages blev kaldt med ødelagte pakker!" +#: apt-pkg/sourcelist.cc:127 +#, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Ugyldig stanza %u i kildelisten %s (tolkning af URI)" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Pakker skal afinstalleres, men Remove er deaktiveret." +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Ugyldig linje %lu i kildelisten %s ([tilvalg] kunne ikke fortolkes)" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Intern fejl. Sortering blev ikke fuldført" +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Ugyldig linje %lu i kildelisten %s ([tilvalg] for kort)" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Mystisk... Størrelserne passede ikke, skriv til apt@packages.debian.org" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Ugyldig linje %lu i kildelisten %s ([%s] er ikke en opgave)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "%sB/%sB skal hentes fra arkiverne.\n" +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Ugyldig linje %lu i kildelisten %s ([%s] har ingen nøgle)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "%sB skal hentes fra arkiverne.\n" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "Ugyldig linje %lu i kildelisten %s ([%s] nøgle %s har ingen værdi)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Efter denne handling, vil %sB yderligere diskplads være brugt.\n" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Ugyldig linje %lu i kildelisten %s (URI)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Efter denne handling, vil %sB diskplads blive frigjort.\n" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Ugyldig linje %lu i kildelisten %s (dist)" -#: apt-private/private-install.cc:200 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Du har ikke nok ledig plads i %s." +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Ugyldig linje %lu i kildelisten %s (tolkning af URI)" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Der er problemer og -y blev brugt uden --force-yes" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Ugyldig linje %lu i kildelisten %s (absolut dist)" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "»Trivial Only« angivet, men dette er ikke en triviel handling." +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Ugyldig linje %lu i kildelisten %s (tolkning af dist)" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Ja, gør som jeg siger!" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Åbner %s" -#: apt-private/private-install.cc:222 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Du er ved at gøre noget, der kan være skadeligt\n" -"For at fortsætte, skal du skrive »%s«\n" -" ?] " +msgid "Malformed line %u in source list %s (type)" +msgstr "Ugyldig linje %u i kildelisten %s (type)" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Afbryder." +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Typen »%s« er ukendt på linje %u i kildelisten %s" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Vil du fortsætte?" +#: apt-pkg/sourcelist.cc:416 +#, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Typen »%s« er ukendt på stanza %u i kildelisten %s" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Nedhentningen af filer mislykkedes" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Udgaven »%s« for »%s« blev ikke fundet" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Kunne ikke hente nogle af arkiverne. Prøv evt. at køre »apt-get update« " -"eller prøv med --fix-missing." +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Versionen »%s« for »%s« blev ikke fundet" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing og medieskift understøttes endnu ikke" +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Kunne ikke finde opgaven »%s«" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Kunne ikke rette manglende pakker." +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Kunne ikke finde nogle pakker med regulært udtryk »%s«" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Afbryder installationen." +#: apt-pkg/cacheset.cc:615 +#, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Kunne ikke finde nogle pakker med glob »%s«" -#: apt-private/private-install.cc:366 +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "Kan ikke vælge versioner fra pakke »%s« som er vitalt" + +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -"Den følgende pakke forsvandt fra dit system, da\n" -"alle filer er blevet overskrevet af andre pakker:" -msgstr[1] "" -"De følgende pakker forsvandt fra dit system, da\n" -"alle filer er blevet overskrevet af andre pakker:" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" +"Kan ikke vælge installeret eller kandidatversion fra pakke »%s« da den ikke " +"har nogen af dem" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Bemærk: Dette sker automatisk og med vilje af dpkg." +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "Kan ikke vælge nyeste version fra pakke »%s« som er vital" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -"Det er ikke meningen, at vi skal slette ting og sager, kan ikke starte " -"AutoRemover" +"Kan ikke vælge kandidatversion fra pakke %s da den ikke har nogen kandidat" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" msgstr "" -"Hmm, det lader til at AutoRemover smadrede noget, der virkelig ikke\n" -"burde kunne ske. Indsend venligst en fejlrapport om apt." +"Kan ikke vælge installeret version fra pakke %s da den ikke er installeret" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "Følgende oplysninger kan hjælpe dig med at klare situationen:" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%lid %lih %limin %lis" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Intern fejl. AutoRemover ødelagde noget" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%lih %limin %lis" -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "" -"Følgende pakke blev installeret automatisk, og behøves ikke længere:" -msgstr[1] "" -"Følgende pakker blev installeret automatisk, og behøves ikke længere:" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" -#: apt-private/private-install.cc:517 +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 #, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "Pakken %lu blev installeret automatisk, og behøves ikke længere.\n" -msgstr[1] "" -"Pakkerne %lu blev installeret automatisk, og behøves ikke længere.\n" +msgid "%lis" +msgstr "%lis" -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Brug »apt-get autoremove« til at fjerne den." -msgstr[1] "Brug »apt-get autoremove« til at fjerne dem." +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "Det valgte %s blev ikke fundet" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Du kan muligvis rette det ved at køre »apt-get -f install«:" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Benytter ikke låsning for skrivebeskyttet låsefil %s" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Uopfyldte afhængigheder. Prøv »apt-get -f install« uden pakker (eller angiv " -"en løsning)." +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Kunne ikke åbne låsefilen %s" -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." -msgstr "" -"Nogle pakker kunne ikke installeres. Det kan betyde at du har ønsket\n" -"en umulig situation eller bruger den ustabile distribution, hvor enkelte\n" -"pakker endnu ikke er lavet eller gjort tilgængelige." +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Benytter ikke låsning for nfs-monteret låsefil %s" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Ødelagte pakker" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Kunne ikke opnå låsen %s" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Følgende yderligere pakker vil blive installeret:" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "Liste over filer kan ikke oprettes da »%s« ikke er en mappe" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Foreslåede pakker:" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "Ignorerer »%s« i mappe »%s« da det ikke er en regulær fil" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Anbefalede pakker:" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "Ignorerer fil »%s« i mappe »%s« da den ikke har en filendelse" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:421 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "" -"Springer over %s, den er allerede installeret og opgradering er ikke " -"angivet.\n" +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "Ignorerer fil »%s« i mappe »%s« da den har en ugyldig filendelse" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"Springer over %s, den er ikke installeret og der blev kun anmodt om " -"opgraderinger.\n" +msgid "Sub-process %s received a segmentation fault." +msgstr "Underprocessen %s modtog en segmenteringsfejl." -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:826 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Geninstallation af %s er ikke muligt, pakken kan ikke hentes.\n" +msgid "Sub-process %s received signal %u." +msgstr "Underprocessen %s modtog en signal %u." -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s er allerede den nyeste version.\n" +msgid "Sub-process %s returned an error code (%u)" +msgstr "Underprocessen %s returnerede en fejlkode (%u)" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Valgt version »%s« (%s) for »%s«\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "Underprocessen %s afsluttedes uventet" -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Valgt version »%s« (%s) for »%s« på grund af »%s«\n" +msgid "Problem closing the gzip file %s" +msgstr "Problem under lukning af gzip-filen %s" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "Pakke »%s« er ikke installeret, så blev ikke fjernet. Mente du »%s«?\n" +msgid "Could not open file %s" +msgstr "Kunne ikke åbne filen %s" + +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Kunne ikke åbne filbeskrivelse %d" + +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Kunne ikke oprette underproces IPC" + +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Kunne ikke udføre komprimeringsprogram " + +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "læs, mangler stadig at læse %llu men der er ikke flere" + +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "skriv, mangler stadig at skrive %llu men kunne ikke" + +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Problem under lukning af filen %s" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/fileutl.cc:1927 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Pakke »%s« er ikke installeret, så blev ikke fjernet\n" +msgid "Problem renaming the file %s to %s" +msgstr "Problem under omdøbning af filen %s til %s" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" -"BEMÆRK: Dette er kun en simulering!\n" -" apt-get kræver rootprivilegier for reel kørsel.\n" -" Husk også at låsning er deaktiveret,\n" -" så stol ikke på relevansen for den reelle aktuelle situation!" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Fejl ved frigivelse af filen %s" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ADVARSEL: Følgende pakkers autenticitet kunne ikke verificeres!" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Problem under synkronisering af fil" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Autentifikationsadvarsel tilsidesat.\n" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Fejl!" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Nogle pakker kunne ikke autentificeres" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Færdig" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Installér disse pakker uden verifikation?" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "..." -#: apt-private/private-sources.cc:58 +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Kunne ikke fortolke %s. Rediger igen? " +msgid "%c%s... %u%%" +msgstr "%c%s... %u%%" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Kan ikke udføre mmap for en tom fil" + +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "Din »%s« fil blev ændret, kør venligst »apt-get update«." +msgid "Couldn't duplicate file descriptor %i" +msgstr "Kunne ikke duplikere filbeskrivelse %i" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "Fuldtekst-søgning" +#: apt-pkg/contrib/mmap.cc:119 +#, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Kunne ikke udføre mmap for %llu byte" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Havde " +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Kunne ikke lukke mmap" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Henter:" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Kunne ikke synkronisere mmap" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ignorerer " +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Kunne ikke udføre mmap for %lu byte" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Fejl " +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Kunne ikke afkorte filen" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Hentede %sB på %s (%sB/s)\n" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" +"Dynamisk MMap løb tør for plads. Øg venligst størrelsen på APT::Cache-Start. " +"Aktuel værdi: %lu. (man 5 apt.conf)" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid " [Working]" -msgstr " [Arbejder]" +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" +"Kunne ikke øge størrelsen på MMap da begrænsningen på %lu byte allerede er " +"nået." -#: apt-private/acqprogress.cc:297 -#, c-format +#: apt-pkg/contrib/mmap.cc:449 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -"Medieskift: Indsæt disken med navnet\n" -" »%s«\n" -"i drevet »%s« og tryk retur\n" +"Kunne ikke øge størrelsen på MMap da automatisk øgning er deaktiveret af " +"bruger." -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "No mirror file '%s' found " -msgstr "Ingen spejlfil »%s« fundet " +msgid "Unable to stat the mount point %s" +msgstr "Kunne ikke finde monteringspunktet %s" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Kunne ikke finde cdrommen" + +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Kan ikke læse spejlfil »%s«" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Ukendt type-forkortelse: »%c«" -#: methods/mirror.cc:315 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Ingen post fundet i spejlfil »%s«" +msgid "Opening configuration file %s" +msgstr "Åbner konfigurationsfilen %s" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "[Mirror: %s]" -msgstr "[Spejl: %s]" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntaksfejl %s:%u: Blokken starter uden navn." -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Kunne ikke oprette IPC-videreførsel til underproces" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntaksfejl %s:%u: Forkert udformet mærke" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Forbindelsen lukkedes for hurtigt" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntaksfejl %s:%u: Overskydende affald efter værdien" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Ugyldig standardindstilling!" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "Syntaksfejl %s:%u: Direktiver kan kun angives i topniveauet" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Tryk retur for at fortsætte." +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntaksfejl %s:%u: For mange sammenkædede inkluderinger" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Ønsker du at slette nogle tidligere hentede .deb-filer?" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntaksfejl %s:%u: Inkluderet herfra" -# Note to translators: The following four messages belong together. It doesn't -# matter where sentences start, but it has to fit in just these four lines, and -# at only 80 characters per line, if possible. -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Der opstod fejl under udpakningen. Pakker som blev installeret" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntaksfejl %s:%u: Ikke-understøttet direktiv »%s«" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "vil blive konfigureret. Det kan give gentagne fejl" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "Syntaksfejl %s:%u: ryd direktiv kræver et tilvalgstræ som argument" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"eller fejl, der skyldes manglende afhængigheder. Dette er o.k. Det er kun" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Syntaksfejl %s:%u: Overskydende affald i slutningen af filen" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "" -"fejlene over denne besked, der er vigtige. Ret dem og kør [I]nstallér igen" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "Ingen nøglering installeret i %s." -#: dselect/update:30 -msgid "Merging available information" -msgstr "Sammenfletter tilgængelighedsoplysninger" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Kommandolinjetilvalget »%c« [fra %s] kendes ikke." -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode kaldt med endnu forbundet knude" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Kommandolinjetilvalget %s blev ikke forstået" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Kunne ikke finde hash-element!" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Kommandolinjetilvalget %s er ikke boolsk" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Kunne ikke allokere omrokering" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Tilvalget %s kræver et parameter." -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Intern fejl i AddDiversion" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Tilvalg %s: Opsætningspostens specifikation skal have en =<værdi>." -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Forsøger at overskrive en omrokering, %s -> %s og %s/%s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Tilvalget %s kræver et heltalligt parameter, ikke »%s«" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Dobbelt tilføjelse af omrokering %s -> %s" +msgid "Option '%s' is too long" +msgstr "Tilvalget »%s« er for langt" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Dobbelt opsætningsfil %s/%s" +msgid "Sense %s is not understood, try true or false." +msgstr "%s blev ikke forstået, prøv med »true« eller »false«." -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The path %s is too long" -msgstr "Stien %s er for lang" +msgid "Invalid operation %s" +msgstr "Ugyldig handling %s" -#: apt-inst/extract.cc:132 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unpacking %s more than once" -msgstr "Pakkede %s ud flere gange" +msgid "Installing %s" +msgstr "Installerer %s" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The directory %s is diverted" -msgstr "Mappen %s er omrokeret" +msgid "Configuring %s" +msgstr "Sætter %s op" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Pakken forsøger at skrive til omrokeret mål %s/%s" +msgid "Removing %s" +msgstr "Fjerner %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Omrokeringsstien er for lang" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "Fjerner %s helt" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to stat %s" -msgstr "Kunne ikke finde %s" +msgid "Noting disappearance of %s" +msgstr "Bemærker forsvinding af %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Kunne ikke omdøbe %s til %s" +msgid "Running post-installation trigger %s" +msgstr "Kører førinstallationsudløser %s" -#: apt-inst/extract.cc:249 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Mappen %s bliver erstattet af en ikke-mappe" +msgid "Directory '%s' missing" +msgstr "Mappe »%s« mangler" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Kunne ikke finde knuden i sin hash-bucket" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Kunne ikke åbne filen »%s«" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Stien er for lang" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Klargør %s" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Overskriv pakkematch uden version for %s" +msgid "Unpacking %s" +msgstr "Pakker %s ud" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "File %s/%s overskriver filen i pakken %s" +msgid "Preparing to configure %s" +msgstr "Gør klar til at sætte %s op" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Unable to stat %s" -msgstr "Kunne ikke finde %s" +msgid "Installed %s" +msgstr "Installerede %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to write file %s" -msgstr "Kunne ikke skrive filen %s" +msgid "Preparing for removal of %s" +msgstr "Gør klar til afinstallation af %s" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Failed to close file %s" -msgstr "Kunne ikke lukke filen %s" +msgid "Removed %s" +msgstr "Fjernede %s" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Dette er ikke et gyldigt DEB-arkiv, mangler »%s«-elementet" +msgid "Preparing to completely remove %s" +msgstr "Gør klar til at fjerne %s helt" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Intern fejl, kunne ikke finde elementet %s" +msgid "Completely removed %s" +msgstr "Fjernede %s helt" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Ikke-tolkbar kontrolfil" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "ioctl(TIOCGWINSZ) mislykkedes" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Ugyldig arkivsignatur" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, c-format +msgid "Can not write log (%s)" +msgstr "Kan ikke skrive log (%s)" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Fejl under læsning af arkivelements hoved" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "Er /dev/pts monteret?" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Ugyldigt arkivelementhoved %s" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "Er standardud en terminal?" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Ugyldigt arkivelementhoved" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "Handling blev afbrudt før den kunne afsluttes" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arkivet er for kort" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" +"Ingen apportrapport skrevet da MaxReports (maks rapporter) allerede er nået" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Kunne ikke læse arkivhovederne" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "afhængighedsproblemer - efterlader ukonfigureret" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Kunne ikke oprette videreførsler" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Ingen apportrapport skrevet da fejlbeskeden indikerer, at det er en " +"opfølgningsfejl fra en tidligere fejl." -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Kunne ikke udføre gzip " +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Ingen apportrapport skrevet da fejlbeskeden indikerer en fuld disk-fejl" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Ødelagt arkiv" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Ingen apportrapport skrevet da fejlbeskeden indikerer en ikke nok " +"hukommelsesfejl" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar-tjeksum fejlede, arkivet er ødelagt" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Ingen apportrapport skrevet da fejlbeskeden indikerer en fejl på det lokale " +"system" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "Ingen apportrapport skrevet da fejlbeskeden indikerer en dpkg I/O-fejl" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Ukendt TAR-hovedtype %u, element %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Kunne ikke låse administrationsmappen (%s), bruger en anden proces den?" + +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Kunne ikke låse administrationsmappen (%s), er du rod (root)?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "dpkg blev afbrudt, du skal manuelt køre »%s« for at rette problemet." + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Ikke låst" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/de.po b/po/de.po index 5a2ff9f29..c1b849637 100644 --- a/po/de.po +++ b/po/de.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.2\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2012-06-27 10:55+0200\n" "Last-Translator: Holger Wansing <linux@wansing-online.de>\n" "Language-Team: Debian German <debian-l10n-german@lists.debian.org>\n" @@ -20,3318 +20,3319 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "Indexdateityp »%s« wird nicht unterstützt." - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "%s kann nicht gelesen werden." - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Unable to change to %s" -msgstr "Es konnte nicht nach %s gewechselt werden." +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Paket %s Version %s hat eine unerfüllte Abhängigkeit:\n" -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "%s mit stat abfragen nicht möglich" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Gesamtzahl an Paketnamen: " -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Gesamtzahl an Paketstrukturen: " -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Ausführen von dpkg" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " davon gewöhnliche Pakete: " -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Paketierungssystem »%s« wird nicht unterstützt." +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " davon rein virtuelle Pakete: " -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Bestimmung eines passenden Paketierungssystemtyps nicht möglich" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " davon einzelne virtuelle Pakete: " -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Es wurden %i Datensätze geschrieben.\n" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " davon gemischte virtuelle Pakete: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Es wurden %i Datensätze mit %i fehlenden Dateien geschrieben.\n" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " davon fehlend: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Es wurden %i Datensätze mit %i nicht passenden Dateien geschrieben.\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Gesamtzahl an unterschiedlichen Versionen: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"Es wurden %i Datensätze mit %i fehlenden und %i nicht passenden Dateien " -"geschrieben.\n" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Gesamtzahl an unterschiedlichen Beschreibungen: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "Authentifizierungs-Datensatz konnte nicht gefunden werden für: %s" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Gesamtzahl an Abhängigkeiten: " -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "Hash-Summe stimmt nicht überein für: %s" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Gesamtzahl an Version/Datei-Beziehungen: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Der Treiber für Methode %s konnte nicht gefunden werden." +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Gesamtzahl an Beschreibung/Datei-Beziehungen: " -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Überprüfen Sie, ob das Paket »dpkg-dev« installiert ist.\n" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Gesamtzahl an Bereitstellungen: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Methode %s ist nicht korrekt gestartet." +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Gesamtzahl an Mustern: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "" -"Bitte legen Sie das Medium mit dem Namen »%s« in Laufwerk »%s« ein und " -"drücken Sie die Eingabetaste (Enter)." +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Gesamtmenge des Abhängigkeits-/Versionsspeichers: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "" -"Die Paketliste oder die Statusdatei konnte nicht eingelesen oder geöffnet " -"werden." +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Gesamtmenge an Slack: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Probieren Sie »apt-get update«, um diese Probleme zu korrigieren." +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Gesamtmenge an Speicher: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Die Liste der Quellen konnte nicht gelesen werden." +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "Paketdatei %s ist nicht synchronisiert." -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Leerer Paketzwischenspeicher" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Keine Pakete gefunden" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Die Paketzwischenspeicher-Datei ist beschädigt." +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Sie müssen mindestens ein Suchmuster angeben" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"Die Paketzwischenspeicher-Datei liegt in einer inkompatiblen Version vor." - -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Die Paketzwischenspeicher-Datei ist beschädigt, sie ist zu klein." +"Dieser Befehl ist überholt. Bitte verwenden Sie stattdessen »apt-mark " +"showauto«." -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Das Versionssystem »%s« wird durch dieses APT nicht unterstützt." - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Der Paketzwischenspeicher wurde für eine andere Architektur aufgebaut." - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Hängt ab von" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Hängt ab von (vorher)" +msgid "Unable to locate package %s" +msgstr "Paket %s kann nicht gefunden werden." -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Schlägt vor" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Paketdateien:" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Empfiehlt" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" +"Zwischenspeicher ist nicht synchron, Querverweisen einer Paketdatei nicht " +"möglich" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Kollidiert mit" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Mit Pinning verwaltete Pakete:" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Ersetzt" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(nicht gefunden)" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Löst ab" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Installiert: " -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Beschädigt" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Installationskandidat: " -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Wertet auf" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(keine)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "wichtig" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Paket-Pinning: " -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "erforderlich" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Versionstabelle:" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standard" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s für %s, kompiliert am %s %s\n" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "optional" - -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" - -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Indexdateityp »%s« wird nicht unterstützt." +#: cmdline/apt-cache.cc:1749 +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Aufruf: apt-cache [Optionen] befehl\n" +" apt-cache [Optionen] showpkg paket1 [paket2 ...]\n" +" apt-cache [Optionen] showsrc paket1 [paket2 ...]\n" +"\n" +"apt-cache ist ein untergeordnetes Werkzeug, um Informationen aus den\n" +"binären Zwischenspeicher-Dateien von APT abzufragen.\n" +"\n" +"Befehle:\n" +" gencaches – Paket- und Quell-Zwischenspeicher erzeugen\n" +" showpkg – grundsätzliche Informationen eines einzelnen Pakets ausgeben\n" +" showsrc – Aufzeichnungen zu Quellen ausgeben\n" +" stats – einige grundlegenden Statistiken ausgeben\n" +" dump – gesamte Datei in Kurzform ausgeben\n" +" dumpavail – Datei verfügbarer Pakete nach stdout ausgeben\n" +" unmet – unerfüllte Abhängigkeiten ausgeben\n" +" search – die Paketliste mittels regulärem Ausdruck durchsuchen\n" +" show – einen lesbaren Datensatz für das Paket ausgeben\n" +" depends – rohe Abhängigkeitsinformationen eines Pakets ausgeben\n" +" rdepends – umgekehrte Abhängigkeitsinformationen eines Pakets ausgeben\n" +" pkgnames – die Namen aller Pakete im System auflisten\n" +" dotty – Paketgraph zur Verwendung mit GraphViz erzeugen\n" +" xvcg – Paketgraph zur Verwendung mit xvcg erzeugen\n" +" policy – Policy-Einstellungen ausgeben\n" +"\n" +"Optionen:\n" +" -h dieser Hilfe-Text\n" +" -p=? der Paket-Zwischenspeicher\n" +" -s=? der Quell-Zwischenspeicher\n" +" -q Fortschrittsanzeige abschalten\n" +" -i nur wichtige Abhängigkeiten für den »unmet«-Befehl ausgeben\n" +" -c=? diese Konfigurationsdatei lesen\n" +" -o=? eine beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" +"Weitere Informationen finden Sie in den Handbuchseiten von apt-cache(8)\n" +"und apt.conf(5).\n" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Fehler beim Kompilieren eines regulären Ausdrucks - %s" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "" +"Bitte geben Sie einen Namen für dieses Medium an, wie zum Beispiel »Debian " +"5.0.3 Disk 1«" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Zwischenspeicher hat ein inkompatibles Versionssystem." +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "" +"Bitte legen Sie ein Medium in das Laufwerk ein und drücken Sie die " +"Eingabetaste (Enter)." -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Fehler aufgetreten beim Verarbeiten von %s (%s%d)" - -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" -"Na so was, Sie haben die Anzahl an Paketen überschritten, mit denen diese " -"APT-Version umgehen kann." +msgid "Failed to mount '%s' to '%s'" +msgstr "»%s« konnte nicht in »%s« eingebunden werden." -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"Na so was, Sie haben die Anzahl an Versionen überschritten, mit denen diese " -"APT-Version umgehen kann." -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." msgstr "" -"Na so was, Sie haben die Anzahl an Beschreibungen überschritten, mit denen " -"diese APT-Version umgehen kann." +"Wiederholen Sie dieses Prozedere für die restlichen Disks Ihres Satzes." -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "" -"Na so was, Sie haben die Anzahl an Abhängigkeiten überschritten, mit denen " -"diese APT-Version umgehen kann." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumente nicht paarweise" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -"Paket %s %s wurde beim Verarbeiten der Dateiabhängigkeiten nicht gefunden." +"Aufruf: apt-config [optionen] befehl\n" +"\n" +"apt-config ist ein einfaches Werkzeug, um die APT-Konfigurationsdatei zu " +"lesen.\n" +"\n" +"Befehle:\n" +" shell – Shell-Modus\n" +" dump – Die Konfiguration ausgeben\n" +"\n" +"Optionen:\n" +" -h Dieser Hilfetext\n" +" -c=? Diese Konfigurationsdatei lesen\n" +" -o=? Eine beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "Die Quellpaket-Liste %s konnte nicht mit »stat« abgefragt werden" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Paketlisten werden gelesen" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Sammeln der angebotenen Funktionalitäten (Provides) aus den Dateien" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Unable to write to %s" -msgstr "Schreiben nach %s nicht möglich" - -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "E/A-Fehler beim Speichern des Quell-Zwischenspeichers" - -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "Szenario an Problemlöser senden" - -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "Anfrage an Problemlöser senden" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Als Quellpaket wird »%s« statt »%s« gewählt.\n" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "Vorbereiten, eine Lösung zu erhalten" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Nicht verfügbare Version »%s« von Paket »%s« wird ignoriert." -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" -"Externer Problemlöser ist ohne ordnungsgemäße Fehlermeldung fehlgeschlagen." +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Paket %s konnte nicht gefunden werden" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "Externen Problemlöser ausführen" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s wurde als manuell installiert festgelegt.\n" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "Umbenennen fehlgeschlagen, %s (%s -> %s)." +msgid "%s set to automatically installed.\n" +msgstr "%s wurde als automatisch installiert festgelegt.\n" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Hash-Summe stimmt nicht überein" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" +"Dieser Befehl ist überholt. Bitte verwenden Sie stattdessen »apt-mark auto« " +"und »apt-mark manual«." -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Größe stimmt nicht überein" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Interner Fehler, der Problemlöser hat etwas beschädigt." -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Ungültige Operation %s" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Das Downloadverzeichnis konnte nicht gesperrt werden." -#: apt-pkg/acquire-item.cc:1573 -#, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" msgstr "" -"Erwarteter Eintrag »%s« konnte in Release-Datei nicht gefunden werden " -"(falscher Eintrag in sources.list oder missgebildete Datei)." +"Es muss mindestens ein Paket angegeben werden, dessen Quellen geholt werden " +"sollen." -#: apt-pkg/acquire-item.cc:1589 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Hash-Summe für »%s« kann in Release-Datei nicht gefunden werden." - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "" -"Es gibt keine öffentlichen Schlüssel für die folgenden Schlüssel-IDs:\n" +msgid "Unable to find a source package for %s" +msgstr "Quellpaket für %s kann nicht gefunden werden." -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:786 #, c-format msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"Release-Datei für %s ist abgelaufen (ungültig seit %s). Aktualisierungen für " -"dieses Depot werden nicht angewendet." - -#: apt-pkg/acquire-item.cc:1691 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Konflikt bei Distribution: %s (%s erwartet, aber %s bekommen)" +"HINWEIS: »%s«-Paketierung wird betreut im »%s«-Versionsverwaltungssystem " +"auf:\n" +"%s\n" -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:791 #, c-format msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -"Während der Überprüfung der Signatur trat ein Fehler auf. Das Repository " -"wurde nicht aktualisiert und die vorherigen Indexdateien werden verwendet. " -"GPG-Fehler: %s: %s\n" +"Bitte verwenden Sie:\n" +"bzr branch %s\n" +"um die neuesten (möglicherweise noch unveröffentlichten) Aktualisierungen\n" +"für das Paket abzurufen.\n" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:843 #, c-format -msgid "GPG error: %s: %s" -msgstr "GPG-Fehler: %s: %s" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Bereits heruntergeladene Datei »%s« wird übersprungen.\n" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"Es konnte keine Datei für Paket %s gefunden werden. Das könnte heißen, dass " -"Sie dieses Paket von Hand korrigieren müssen (aufgrund fehlender " -"Architektur)." +msgid "Couldn't determine free space in %s" +msgstr "Freier Platz in %s konnte nicht bestimmt werden." -#: apt-pkg/acquire-item.cc:1925 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" -"Es konnte keine Quelle gefunden werden, um Version »%s« von »%s« " -"herunterzuladen." +msgid "You don't have enough free space in %s" +msgstr "Sie haben nicht genügend freien Speicherplatz in %s." -#: apt-pkg/acquire-item.cc:1983 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Die Paketindexdateien sind beschädigt: Kein Filename:-Feld für Paket %s." +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Es müssen noch %sB von %sB an Quellarchiven heruntergeladen werden.\n" -#: apt-pkg/vendorlist.cc:85 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Herstellerblock %s enthält keinen Fingerabdruck." +msgid "Need to get %sB of source archives.\n" +msgstr "Es müssen %sB an Quellarchiven heruntergeladen werden.\n" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: cmdline/apt-get.cc:902 #, c-format -msgid "List directory %spartial is missing." -msgstr "Listenverzeichnis %spartial fehlt." +msgid "Fetch source %s\n" +msgstr "Quelle %s wird heruntergeladen.\n" -#: apt-pkg/acquire.cc:91 -#, c-format -msgid "Archives directory %spartial is missing." -msgstr "Archivverzeichnis %spartial fehlt." +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Einige Archive konnten nicht heruntergeladen werden." -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Herunterladen abgeschlossen; Nur-Herunterladen-Modus aktiv" + +#: cmdline/apt-get.cc:950 #, c-format -msgid "Unable to lock directory %s" -msgstr "Das Verzeichnis %s kann nicht gesperrt werden." +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Das Entpacken der bereits entpackten Quelle in %s wird übersprungen.\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Holen der Datei %li von %li (noch %s)" +msgid "Unpack command '%s' failed.\n" +msgstr "Entpackbefehl »%s« fehlgeschlagen.\n" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Holen der Datei %li von %li" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Überprüfen Sie, ob das Paket »dpkg-dev« installiert ist.\n" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Fehlschlag beim Holen von %s %s\n" +msgid "Build command '%s' failed.\n" +msgstr "Build-Befehl »%s« fehlgeschlagen.\n" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Einige Indexdateien konnten nicht heruntergeladen werden. Sie wurden " -"ignoriert oder alte an ihrer Stelle benutzt." +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Kindprozess fehlgeschlagen" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" msgstr "" -"Sie müssen einige »source«-URIs für Quellpakete in die sources.list-Datei " -"eintragen." +"Es muss mindestens ein Paket angegeben werden, dessen Bauabhängigkeiten " +"überprüft werden sollen." -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -"Der Wert »%s« ist für APT::Default-Release ungültig, da solch eine " -"Veröffentlichung in den Paketquellen nicht verfügbar ist." +"Keine Architekturinformation für %s verfügbar. Weiteres zur Einrichtung " +"finden Sie unter apt.conf(5) APT::Architectures." -#: apt-pkg/policy.cc:422 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" +msgid "Unable to get build-dependency information for %s" msgstr "" -"Ungültiger Eintrag in Einstellungsdatei %s, keine »Package«-Kopfzeile(n)" +"Informationen zu Bauabhängigkeiten für %s konnten nicht gefunden werden." -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Did not understand pin type %s" -msgstr "Pinning-Typ %s kann nicht interpretiert werden." - -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Keine Priorität (oder Null) für Pin angegeben" +msgid "%s has no build depends.\n" +msgstr "%s hat keine Bauabhängigkeiten.\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1272 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" msgstr "" -"»%s« konnte nicht unmittelbar konfiguriert werden. Lesen Sie »man 5 apt." -"conf« unter APT::Immediate-Configure bezüglich weiterer Details. (%d)" - -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "»%s« konnte nicht konfiguriert werden. " +"»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da %s bei »%s«-Paketen " +"nicht erlaubt ist." -#: apt-pkg/packagemanager.cc:583 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -"Dieser Installationslauf erfordert, dass vorübergehend das essentielle Paket " -"%s aufgrund einer Konflikt-/Vor-Abhängigkeits-Schleife entfernt wird. Das " -"ist oft schlimm, aber wenn Sie es wirklich tun wollen, aktivieren Sie bitte " -"die Option APT::Force-LoopBreak." - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Zeile %u in Quellliste %s zu lang." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Einbindung der CD-ROM wird gelöst ...\n" - -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Verwendeter CD-ROM-Einbindungspunkt: %s\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Warten auf Medium ...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "CD-ROM wird eingebunden ...\n" - -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identifizieren ... " +"»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da Paket %s nicht " +"gefunden werden kann." -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Stored label: %s\n" -msgstr "Gespeicherte Kennzeichnung: %s\n" - -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Durchsuchen des Mediums nach Index-Dateien ...\n" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"»%s«-Abhängigkeit für %s kann nicht erfüllt werden: Installiertes Paket %s " +"ist zu neu." -#: apt-pkg/cdrom.cc:734 +#: cmdline/apt-get.cc:1352 #, c-format msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" -"%zu Paketindizes, %zu Quellindizes, %zu Übersetzungsindizes und %zu " -"Signaturen gefunden\n" +"»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da die Version des " +"Installationskandidaten für das Paket %s die Versionsanforderungen nicht " +"erfüllen kann." -#: apt-pkg/cdrom.cc:744 +#: cmdline/apt-get.cc:1358 +#, c-format msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -"Es konnten keine Paketdateien gefunden werden; möglicherweise ist dies keine " -"Debian-Disk oder eine für die falsche Architektur?" +"»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da für Paket %s kein " +"Installationskandidat existiert." -#: apt-pkg/cdrom.cc:771 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Found label '%s'\n" -msgstr "Kennzeichnung »%s« gefunden\n" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Dies ist kein gültiger Name, versuchen Sie es erneut.\n" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "»%s«-Abhängigkeit für %s konnte nicht erfüllt werden: %s" -#: apt-pkg/cdrom.cc:817 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Dieses Medium heißt: \n" -"»%s«\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Bauabhängigkeiten für %s konnten nicht erfüllt werden." -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopieren der Paketlisten ..." +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Verarbeitung der Bauabhängigkeiten fehlgeschlagen" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Schreiben der neuen Quellliste\n" +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 +#, c-format +msgid "Changelog for %s (%s)" +msgstr "Änderungsprotokoll (Changelog) für %s (%s)" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Quelllisteneinträge für dieses Medium sind:\n" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Unterstützte Module:" + +#: cmdline/apt-get.cc:1633 +msgid "" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" +msgstr "" +"Aufruf: apt-get [Optionen] befehl\n" +" apt-get [Optionen] install|remove paket1 [paket2 ...]\n" +" apt-get [Optionen] source paket1 [paket2 ...]\n" +"\n" +"apt-get ist ein einfaches Befehlszeilenwerkzeug zum Herunterladen\n" +"und Installieren von Paketen. Die am häufigsten benutzten Befehle\n" +"sind update und install.\n" +"\n" +"Befehle:\n" +" update – neue Paketinformationen holen\n" +" upgrade – Upgrade (Paketaktualisierung) durchführen\n" +" install – neue Pakete installieren (paket ist libc6, nicht libc6." +"deb)\n" +" remove – Pakete entfernen\n" +" autoremove – alle nicht mehr verwendeten Pakete automatisch " +"entfernen\n" +" purge – Pakete vollständig entfernen (inkl. " +"Konfigurationsdateien)\n" +" source – Quellarchive herunterladen\n" +" build-dep – Bauabhängigkeiten für Quellpakete konfigurieren\n" +" dist-upgrade – Upgrade (Paketaktualisierung) für die komplette\n" +" Distribution durchführen, siehe apt-get(8)\n" +" dselect-upgrade – der Auswahl von »dselect« folgen\n" +" clean – heruntergeladene Archive löschen\n" +" autoclean – veraltete heruntergeladene Archive löschen\n" +" check – überprüfen, ob es unerfüllte Abhängigkeiten gibt\n" +" changelog – Änderungsprotokoll für das angegebene Paket " +"herunterladen\n" +" und anzeigen\n" +" download – das Binärpaket in das aktuelle Verzeichnis " +"herunterladen\n" +"\n" +"Optionen:\n" +" -h dieser Hilfetext\n" +" -q protokollierbare Ausgabe – keine Fortschrittsanzeige\n" +" -qq keine Ausgabe, außer bei Fehlern\n" +" -d nur herunterladen – Archive NICHT installieren oder entpacken\n" +" -s nichts tun, nur eine Simulation der Aktionen durchführen\n" +" -y für alle Antworten »Ja« annehmen und nicht nachfragen\n" +" -f versuchen, ein System mit defekten Abhängigkeiten zu korrigieren\n" +" -m versuchen fortzufahren, wenn Archive nicht auffindbar sind\n" +" -u ebenfalls eine Liste der aktualisierten Pakete ausgeben\n" +" -b ein Quellpaket nach dem Herunterladen bauen\n" +" -V ausführliche Versionsnummern ausgeben\n" +" -c=? Diese Konfigurationsdatei benutzen\n" +" -o=? Beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" +"Siehe auch die Handbuchseiten apt-get(8), sources.list(5) und apt.conf(5)\n" +"bezüglich weitergehender Informationen und Optionen.\n" +" Dieses APT hat Super-Kuh-Kräfte.\n" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" msgstr "" -"Das Paket %s muss neu installiert werden, es kann jedoch kein Archiv dafür " -"gefunden werden." +"Es muss mindestens ein Paket angegeben werden, dessen Quellen geholt werden " +"sollen." -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"Fehler: Unterbrechungen durch pkgProblemResolver::Resolve hervorgerufen; " -"dies könnte durch zurückgehaltene Pakete verursacht worden sein." -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Probleme können nicht korrigiert werden, Sie haben zurückgehaltene defekte " -"Pakete." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Abhängigkeitsbaum wird aufgebaut." - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Installationskandidat-Versionen" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Abhängigkeitsgenerierung" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Statusinformationen werden eingelesen." - -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "StateFile %s konnte nicht geöffnet werden." -#: apt-pkg/depcache.cc:256 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Temporäres StateFile %s konnte nicht geschrieben werden." +msgid "%s can not be marked as it is not installed.\n" +msgstr "" +"Markierung für %s kann nicht gesetzt werden, da es nicht installiert ist.\n" -#: apt-pkg/tagfile.cc:140 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Paketdatei %s konnte nicht verarbeitet werden (1)." +msgid "%s was already set to manually installed.\n" +msgstr "%s wurde bereits auf manuell installiert gesetzt.\n" -#: apt-pkg/tagfile.cc:237 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Paketdatei %s konnte nicht verarbeitet werden (2)." +msgid "%s was already set to automatically installed.\n" +msgstr "%s wurde bereits auf automatisch installiert gesetzt.\n" -#: apt-pkg/cacheset.cc:489 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Veröffentlichung »%s« für »%s« konnte nicht gefunden werden." +msgid "%s was already set on hold.\n" +msgstr "%s wurde bereits auf Halten gesetzt.\n" -#: apt-pkg/cacheset.cc:492 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Version »%s« für »%s« konnte nicht gefunden werden." +msgid "%s was already not hold.\n" +msgstr "Die Halten-Markierung für %s wurde bereits entfernt.\n" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Unable to locate package %s" -msgstr "Paket %s kann nicht gefunden werden." +msgid "Waited for %s but it wasn't there" +msgstr "Es wurde auf %s gewartet, war jedoch nicht vorhanden" -#: apt-pkg/cacheset.cc:603 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Couldn't find task '%s'" -msgstr "Task »%s« konnte nicht gefunden werden." +msgid "%s set on hold.\n" +msgstr "%s auf Halten gesetzt.\n" -#: apt-pkg/cacheset.cc:609 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." +msgid "Canceled hold on %s.\n" +msgstr "Halten-Markierung für %s entfernt.\n" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "Ausführen von dpkg fehlgeschlagen. Sind Sie root?" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" +#: cmdline/apt-mark.cc:392 +#, fuzzy +msgid "" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -"Es können keine Versionen von Paket »%s« ausgewählt werden, da es rein " -"virtuell ist." +"Aufruf: apt-mark [Optionen] {auto|manual} paket1 [paket2 ...]\n" +"\n" +"apt-mark ist ein einfaches Befehlszeilenprogramm, um Pakete als manuell\n" +"oder automatisch installiert zu markieren. Diese Markierungen können auch\n" +"aufgelistet werden.\n" +"\n" +"Befehle:\n" +" auto – das angegebene Paket als »Automatisch installiert« markieren\n" +" manual – das angegebene Paket als »Manuell installiert« markieren\n" +"\n" +"Optionen:\n" +" -h dieser Hilfetext\n" +" -q protokollierbare Ausgabe – keine Fortschrittsanzeige\n" +" -qq keine Ausgabe, außer bei Fehlern\n" +" -s nichts tun, nur eine Simulation der Aktionen durchführen\n" +" -f Autom./Manuell-Markierung in der angegebenen Datei lesen/schreiben\n" +" -c=? Diese Konfigurationsdatei benutzen\n" +" -o=? Beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" +"Siehe auch die Handbuchseiten apt-mark(8) und apt.conf(5) bezüglich\n" +"weitergehender Informationen und Optionen." -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format +#: cmdline/apt.cc:47 msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -"Es kann weder eine installierte Version noch ein Installationskandidat von " -"Paket »%s« ausgewählt werden, da beide nicht existieren." -#: apt-pkg/cacheset.cc:647 +#: methods/cdrom.cc:203 #, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" +msgid "Unable to read the cdrom database %s" +msgstr "CD-ROM-Datenbank %s kann nicht gelesen werden." + +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" msgstr "" -"Die neueste Version von Paket »%s« kann nicht ausgewählt werden, da es rein " -"virtuell ist." +"Bitte verwenden Sie apt-cdrom, um APT diese CD-ROM bekannt zu machen. apt-" +"get update kann nicht dazu verwendet werden, neue CD-ROMs hinzuzufügen." -#: apt-pkg/cacheset.cc:655 +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Falsche CD-ROM" + +#: methods/cdrom.cc:249 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "" -"Es kann kein Installationskandidat von Paket »%s« ausgewählt werden, da kein " -"solcher existiert." +"Einbindung von CD-ROM in %s kann nicht gelöst werden, möglicherweise wird " +"sie noch verwendet." + +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Medium nicht gefunden" + +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Datei nicht gefunden" + +# looks like someone hardcoded English grammar +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Abfrage mit »stat« fehlgeschlagen" + +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Änderungszeitpunkt kann nicht gesetzt werden." + +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Ungültige URI, lokale URIs dürfen nicht mit // beginnen." + +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Anmeldung läuft" + +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Name des Kommunikationspartners kann nicht bestimmt werden." + +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Lokaler Name kann nicht bestimmt werden." -#: apt-pkg/cacheset.cc:663 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" -"Die installierte Version von Paket »%s« kann nicht ausgewählt werden, da es " -"nicht installiert ist." +msgid "The server refused the connection and said: %s" +msgstr "Verbindung durch Server abgelehnt; Server meldet: %s" -#: apt-pkg/indexrecords.cc:78 +#: methods/ftp.cc:225 #, c-format -msgid "Unable to parse Release file %s" -msgstr "Release-Datei %s kann nicht verarbeitet werden." +msgid "USER failed, server said: %s" +msgstr "Befehl USER fehlgeschlagen, Server meldet: %s" -#: apt-pkg/indexrecords.cc:86 +#: methods/ftp.cc:232 #, c-format -msgid "No sections in Release file %s" -msgstr "Keine Bereiche (Sections) in Release-Datei %s" +msgid "PASS failed, server said: %s" +msgstr "Befehl PASS fehlgeschlagen, Server meldet: %s" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Kein Hash-Eintrag in Release-Datei %s" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"Es war ein Proxy-Server angegeben, aber kein Login-Skript, Acquire::ftp::" +"ProxyLogin ist leer." -#: apt-pkg/indexrecords.cc:130 +#: methods/ftp.cc:280 #, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Ungültiger »Valid-Until«-Eintrag in Release-Datei %s" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Befehl »%s« des Login-Skriptes fehlgeschlagen, Server meldet: %s" -#: apt-pkg/indexrecords.cc:149 +#: methods/ftp.cc:306 #, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Ungültiger »Date«-Eintrag in Release-Datei %s" +msgid "TYPE failed, server said: %s" +msgstr "Befehl TYPE fehlgeschlagen: %s" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»URI parse«)" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Zeitüberschreitung der Verbindung" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s ([Option] nicht auswertbar)" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Verbindung durch Server geschlossen" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s ([Option] zu kurz)" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Lesefehler" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s ([%s] ist keine Zuweisung)" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Durch eine Antwort wurde der Puffer zum Überlaufen gebracht." -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s ([%s] hat keinen Schlüssel)" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protokoll beschädigt" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Missgestaltete Zeile %lu in Quellliste %s ([%s] Schlüssel %s hat keinen Wert)" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Schreibfehler" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»URI«)" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Socket konnte nicht erzeugt werden." -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»dist«)" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Daten-Socket konnte wegen Zeitüberschreitung nicht verbunden werden." -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»URI parse«)" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Fehlgeschlagen" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»absolute dist«)" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Passiver Socket konnte nicht verbunden werden." -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»dist parse«)" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "" +"Von der Funktion getaddrinfo wurde kein auf Verbindungen wartender Socket " +"gefunden." -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "%s wird geöffnet." +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Verbindung des Sockets nicht möglich" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Missgestaltete Zeile %u in Quellliste %s (»type«)" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Warten auf Verbindungen auf dem Socket nicht möglich" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Typ »%s« in Zeile %u der Quellliste %s ist unbekannt." +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Name des Sockets konnte nicht bestimmt werden." -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Typ »%s« in Zeile %u der Quellliste %s ist unbekannt." +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "PORT-Befehl konnte nicht gesendet werden." -#: apt-pkg/deb/dpkgpm.cc:95 +#: methods/ftp.cc:802 #, c-format -msgid "Installing %s" -msgstr "%s wird installiert." +msgid "Unknown address family %u (AF_*)" +msgstr "Unbekannte Adressfamilie %u (AF_*)" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#: methods/ftp.cc:811 #, c-format -msgid "Configuring %s" -msgstr "%s wird konfiguriert." +msgid "EPRT failed, server said: %s" +msgstr "Befehl EPRT fehlgeschlagen: %s" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "%s wird entfernt." +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Zeitüberschreitung bei Datenverbindungsaufbau" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "%s wird vollständig entfernt." +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Verbindung konnte nicht angenommen werden." -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "Verschwinden von %s festgestellt" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problem bei Bestimmung des Hashwertes einer Datei" -#: apt-pkg/deb/dpkgpm.cc:100 +#: methods/ftp.cc:890 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Aufruf des Nach-Installations-Triggers %s" +msgid "Unable to fetch file, server said '%s'" +msgstr "Datei konnte nicht heruntergeladen werden; Server meldet: »%s«" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Verzeichnis »%s« fehlt" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Zeitüberschreitung bei Datenverbindung" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#: methods/ftp.cc:935 #, c-format -msgid "Could not open file '%s'" -msgstr "Datei »%s« konnte nicht geöffnet werden." +msgid "Data transfer failed, server said '%s'" +msgstr "Datenübertragung fehlgeschlagen; Server meldet: »%s«" -#: apt-pkg/deb/dpkgpm.cc:989 +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Abfrage" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Aufruf nicht möglich: " + +#: methods/connect.cc:76 #, c-format -msgid "Preparing %s" -msgstr "%s wird vorbereitet." +msgid "Connecting to %s (%s)" +msgstr "Verbindung mit %s (%s)" -#: apt-pkg/deb/dpkgpm.cc:990 +#: methods/connect.cc:87 #, c-format -msgid "Unpacking %s" -msgstr "%s wird entpackt." +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/deb/dpkgpm.cc:995 +#: methods/connect.cc:94 #, c-format -msgid "Preparing to configure %s" -msgstr "Konfiguration von %s wird vorbereitet." +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Socket für %s konnte nicht erzeugt werden (f=%u t=%u p=%u)." -#: apt-pkg/deb/dpkgpm.cc:997 +#: methods/connect.cc:100 #, c-format -msgid "Installed %s" -msgstr "%s installiert" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Verbindung mit %s:%s kann nicht aufgebaut werden (%s)." -#: apt-pkg/deb/dpkgpm.cc:1002 +#: methods/connect.cc:108 #, c-format -msgid "Preparing for removal of %s" -msgstr "Entfernen von %s wird vorbereitet." +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "" +"Verbindung mit %s:%s konnte nicht aufgebaut werden (%s), eine " +"Zeitüberschreitung trat auf." -#: apt-pkg/deb/dpkgpm.cc:1004 +#: methods/connect.cc:126 #, c-format -msgid "Removed %s" -msgstr "%s entfernt" +msgid "Could not connect to %s:%s (%s)." +msgstr "Verbindung mit %s:%s nicht möglich (%s)" -#: apt-pkg/deb/dpkgpm.cc:1009 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Vollständiges Entfernen von %s wird vorbereitet." +msgid "Connecting to %s" +msgstr "Verbindung mit %s" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Completely removed %s" -msgstr "%s vollständig entfernt" +msgid "Could not resolve '%s'" +msgstr "»%s« konnte nicht aufgelöst werden." -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: methods/connect.cc:205 +#, c-format +msgid "Temporary failure resolving '%s'" +msgstr "Temporärer Fehlschlag beim Auflösen von »%s«" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#: methods/connect.cc:209 #, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Schreiben nach %s nicht möglich" - -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +msgid "System error resolving '%s:%s'" +msgstr "Beim Auflösen von »%s:%s« ist etwas Schlimmes passiert (%i - %s)." -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/connect.cc:211 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Es wurde auf %s gewartet, war jedoch nicht vorhanden" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Beim Auflösen von »%s:%s« ist etwas Schlimmes passiert (%i - %s)." -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "Operation wurde unterbrochen, bevor sie beendet werden konnte." +#: methods/connect.cc:258 +#, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Verbindung mit %s:%s nicht möglich:" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Es wurde kein Apport-Bericht verfasst, da das Limit MaxReports bereits " -"erreicht ist." +"Interner Fehler: Gültige Signatur, Fingerabdruck des Schlüssels konnte " +"jedoch nicht ermittelt werden?!" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "Abhängigkeitsprobleme - verbleibt unkonfiguriert" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Mindestens eine ungültige Signatur wurde entdeckt." -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung darauf " -"hindeutet, dass dies lediglich ein Folgefehler eines vorherigen Problems ist." +"»gpgv« konnte zur Überprüfung der Signatur nicht ausgeführt werden (ist gpgv " +"installiert?)" -#: apt-pkg/deb/dpkgpm.cc:1644 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 +#, c-format msgid "" -"No apport report written because the error message indicates a disk full " -"error" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Fehler " -"wegen voller Festplatte hindeutet." -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Fehler " -"wegen erschöpftem Arbeitsspeicher hindeutet." +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Unbekannter Fehler beim Ausführen von gpgv" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" -"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Fehler " -"wegen voller Festplatte hindeutet." +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Die folgenden Signaturen waren ungültig:\n" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: methods/gpgv.cc:231 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Ein-/" -"Ausgabe-Fehler von Dpkg hindeutet." +"Die folgenden Signaturen konnten nicht überprüft werden, weil ihr " +"öffentlicher\n" +"Schlüssel nicht verfügbar ist:\n" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"Sperren des Administrationsverzeichnisses (%s) nicht möglich, wird es von " -"einem anderen Prozess verwendet?" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Leere Dateien können kein gültiges Archiv sein." -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "" -"Sperren des Administrationsverzeichnisses (%s) nicht möglich, sind Sie root?" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Fehler beim Schreiben der Datei" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" msgstr "" -"Der dpkg-Prozess wurde unterbrochen; Sie müssen manuell »%s« ausführen, um " -"das Problem zu beheben." +"Fehler beim Lesen vom Server: Verbindung wurde durch den Server auf der " +"anderen Seite geschlossen." -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Nicht gesperrt" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Fehler beim Lesen vom Server" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%li d %li h %li min %li s" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Fehler beim Schreiben in Datei" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%li h %li min %li s" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Auswahl fehlgeschlagen" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%li min %li s" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Zeitüberschreitung bei Verbindung" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%li s" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Fehler beim Schreiben der Ausgabedatei" -#: apt-pkg/contrib/strutl.cc:1243 -#, c-format -msgid "Selection %s not found" -msgstr "Auswahl %s nicht gefunden" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Warten auf Kopfzeilen" -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Es wird keine Sperre für schreibgeschützte Sperrdatei %s verwendet." +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Ungültige Kopfzeile" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Sperrdatei %s konnte nicht geöffnet werden." +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Vom HTTP-Server wurde eine ungültige Antwort-Kopfzeile gesandt." -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Es wird keine Sperre für per NFS eingebundene Sperrdatei %s verwendet." +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "" +"Vom HTTP-Server wurde eine ungültige »Content-Length«-Kopfzeile gesandt." -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Konnte Sperre %s nicht bekommen" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "" +"Vom HTTP-Server wurde eine ungültige »Content-Range«-Kopfzeile gesandt." -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "Dateiliste kann nicht erstellt werden, da »%s« kein Verzeichnis ist." +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "" +"Teilweise Dateiübertragung wird vom HTTP-Server nur fehlerhaft unterstützt." -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Unbekanntes Datumsformat" + +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Fehlerhafte Kopfzeilendaten" + +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Verbindung fehlgeschlagen" + +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Interner Fehler" + +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -"»%s« in Verzeichnis »%s« wird ignoriert, da es keine reguläre Datei ist." -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Interner Fehler, InstallPackages mit defekten Paketen aufgerufen!" + +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Pakete müssen entfernt werden, aber Entfernen ist abgeschaltet." + +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Interner Fehler, Anordnung beendete nicht" + +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" -"Datei »%s« in Verzeichnis »%s« wird ignoriert, da sie keine Dateinamen-" -"Erweiterung hat." +"Wie merkwürdig ... die Größen haben nicht übereingestimmt; schreiben Sie " +"eine E-Mail an apt@packages.debian.org (auf Englisch bitte)." -#: apt-pkg/contrib/fileutl.cc:421 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" -msgstr "" -"Datei »%s« in Verzeichnis »%s« wird ignoriert, da sie eine ungültige " -"Dateinamen-Erweiterung hat." +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Es müssen noch %sB von %sB an Archiven heruntergeladen werden.\n" -#: apt-pkg/contrib/fileutl.cc:824 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Unterprozess %s hat einen Speicherzugriffsfehler empfangen." +msgid "Need to get %sB of archives.\n" +msgstr "Es müssen %sB an Archiven heruntergeladen werden.\n" -#: apt-pkg/contrib/fileutl.cc:826 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "Sub-process %s received signal %u." -msgstr "Unterprozess %s hat das Signal %u empfangen." +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Nach dieser Operation werden %sB Plattenplatz zusätzlich benutzt.\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Unterprozess %s hat Fehlercode zurückgegeben (%u)" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Nach dieser Operation werden %sB Plattenplatz freigegeben.\n" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#: apt-private/private-install.cc:200 #, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Unterprozess %s unerwartet beendet" +msgid "You don't have enough free space in %s." +msgstr "Sie haben nicht genug Platz in %s." -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Schreibfehler" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Es gab Probleme und -y wurde ohne --force-yes verwendet." -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problem beim Schließen der gzip-Datei %s" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "»Nur triviale« angegeben, aber dies ist keine triviale Operation." -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Datei %s konnte nicht geöffnet werden." +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Ja, tue was ich sage!" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#: apt-private/private-install.cc:222 #, c-format -msgid "Could not open file descriptor %d" -msgstr "Datei-Deskriptor %d konnte nicht geöffnet werden." - -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" -"Interprozesskommunikation mit Unterprozess konnte nicht aufgebaut werden." +"Sie sind im Begriff, etwas potentiell Schädliches zu tun.\n" +"Zum Fortfahren geben Sie bitte »%s« ein.\n" +" ?] " -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Fehler beim Ausführen von Komprimierer " +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Abbruch." -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Lesefehler" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Möchten Sie fortfahren?" -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" -msgstr "" -"Lesevorgang: es verbleiben noch %llu zu lesen, jedoch ist nichts mehr übrig." +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Einige Dateien konnten nicht heruntergeladen werden." -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -"Schreibvorgang: es verbleiben noch %llu zu schreiben, Schreiben ist jedoch " -"nicht möglich." - -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Problem beim Schließen der Datei %s" +"Einige Archive konnten nicht heruntergeladen werden; vielleicht »apt-get " +"update« ausführen oder mit »--fix-missing« probieren?" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problem beim Umbenennen der Datei %s nach %s" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing und Wechselmedien werden derzeit nicht unterstützt." -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "Problem beim Entfernen (unlink) der Datei %s" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Fehlende Pakete konnten nicht korrigiert werden." -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problem beim Synchronisieren der Datei" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Installation abgebrochen." -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Fehler!" +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"Das folgende Paket verschwand von Ihrem System, da alle\n" +"Dateien von anderen Paketen überschrieben wurden:" +msgstr[1] "" +"Die folgenden Pakete verschwanden von Ihrem System, da alle\n" +"Dateien von anderen Paketen überschrieben wurden:" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Fertig" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Hinweis: Dies wird automatisch und absichtlich von dpkg durchgeführt." -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" +"Es soll nichts gelöscht werden, AutoRemover kann nicht gestartet werden." -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Fertig" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Eine leere Datei kann nicht mit mmap abgebildet werden." - -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Datei-Deskriptor %i konnte nicht dupliziert werden." +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" +"Hmm, es sieht so aus, als ob der AutoRemover etwas beschädigt hat, was\n" +"wirklich nicht geschehen sollte. Bitte erstellen Sie einen Fehlerbericht\n" +"über apt." -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "mmap mit %llu Byte Größe konnte nicht erzeugt werden." +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "" +"Die folgenden Informationen helfen Ihnen vielleicht, die Situation zu lösen:" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "mmap konnte nicht geschlossen werden." +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Interner Fehler, AutoRemover hat etwas beschädigt." -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "mmap konnte nicht synchronisiert werden." +#: apt-private/private-install.cc:513 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "" +"Das folgende Paket wurde automatisch installiert und wird nicht mehr " +"benötigt:" +msgstr[1] "" +"Die folgenden Pakete wurden automatisch installiert und werden nicht mehr " +"benötigt:" -#: apt-pkg/contrib/mmap.cc:290 +#: apt-private/private-install.cc:517 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "mmap mit %lu Byte Größe konnte nicht erzeugt werden." +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "" +"%lu Paket wurde automatisch installiert und wird nicht mehr benötigt.\n" +msgstr[1] "" +"%lu Pakete wurden automatisch installiert und werden nicht mehr benötigt.\n" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Datei konnte nicht eingekürzt werden." +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Verwenden Sie »apt-get autoremove«, um es zu entfernen." +msgstr[1] "Verwenden Sie »apt-get autoremove«, um sie zu entfernen." -#: apt-pkg/contrib/mmap.cc:341 -#, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" -msgstr "" -"Nicht genügend Platz für »Dynamic MMap«. Bitte erhöhen Sie den Wert von APT::" -"Cache-Start. Aktueller Wert: %lu. (Siehe auch man 5 apt.conf.)" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Probieren Sie »apt-get -f install«, um dies zu korrigieren:" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format +#: apt-private/private-install.cc:614 msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"Unmöglich, die Größe der MMap zu erhöhen, da das Limit von %lu Byte bereits " -"erreicht ist." +"Unerfüllte Abhängigkeiten. Versuchen Sie »apt-get -f install« ohne Angabe " +"eines Pakets (oder geben Sie eine Lösung an)." -#: apt-pkg/contrib/mmap.cc:449 +#: apt-private/private-install.cc:638 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." msgstr "" -"Unmöglich, die Größe der MMap zu erhöhen, da das automatische Anwachsen der " -"MMap vom Benutzer deaktiviert ist." - -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Einbindungspunkt %s mit »stat« abfragen nicht möglich." +"Einige Pakete konnten nicht installiert werden. Das kann bedeuten, dass\n" +"Sie eine unmögliche Situation angefordert haben oder, wenn Sie die\n" +"Unstable-Distribution verwenden, dass einige erforderliche Pakete noch\n" +"nicht erstellt wurden oder Incoming noch nicht verlassen haben." -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "CD-ROM mit »stat« abfragen fehlgeschlagen" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Beschädigte Pakete" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Nicht erkannte Typabkürzung: »%c«" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Die folgenden zusätzlichen Pakete werden installiert:" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Konfigurationsdatei %s wird geöffnet" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Vorgeschlagene Pakete:" -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Syntaxfehler %s:%u: Block beginnt ohne Namen." +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Empfohlene Pakete:" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-private/private-install.cc:825 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Syntaxfehler %s:%u: Missgestaltete Markierung" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "" +"%s wird übersprungen; es ist schon installiert und ein Upgrade ist nicht " +"angefordert.\n" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-private/private-install.cc:829 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Syntaxfehler %s:%u: Zusätzlicher Unsinn nach Wert" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"%s wird übersprungen; es ist nicht installiert und lediglich Upgrades sind " +"angefordert.\n" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-private/private-install.cc:841 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" -"Syntaxfehler %s:%u: Direktiven können nur auf oberster Ebene benutzt werden" +"Erneute Installation von %s ist nicht möglich,\n" +"es kann nicht heruntergeladen werden.\n" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-private/private-install.cc:846 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Syntaxfehler %s:%u: Zu viele verschachtelte Einbindungen (includes)" +msgid "%s is already the newest version.\n" +msgstr "%s ist schon die neueste Version.\n" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-private/private-install.cc:894 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Syntaxfehler %s:%u: Eingefügt von hier" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Version »%s« (%s) für »%s« gewählt.\n" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-private/private-install.cc:899 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Syntaxfehler %s:%u: Nicht unterstützte Direktive »%s«" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Version »%s« (%s) für »%s« gewählt aufgrund von »%s«.\n" -#: apt-pkg/contrib/configuration.cc:900 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" msgstr "" -"Syntaxfehler %s:%u: Löschdirektiven benötigen einen Optionsbaum als Argument" - -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Syntaxfehler %s:%u: Zusätzlicher Unsinn am Dateiende" - -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, c-format -msgid "No keyring installed in %s." -msgstr "Kein Schlüsselring in %s installiert" - -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Befehlszeilenoption »%c« [aus %s] ist nicht bekannt." +"Paket »%s« ist nicht installiert, wird also auch nicht entfernt. Meinten Sie " +"»%s«?\n" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-private/private-install.cc:947 #, c-format -msgid "Command line option %s is not understood" -msgstr "Befehlszeilenoption %s konnte nicht ausgewertet werden." +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Paket »%s« ist nicht installiert, wird also auch nicht entfernt.\n" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "Befehlszeilenoption %s ist nicht Bool'sch." +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-private/private-list.cc:164 #, c-format -msgid "Option %s requires an argument." -msgstr "Option %s erfordert ein Argument." +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Option %s: Konfigurationswertspezifikation benötigt ein »=<Wert>«." +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Abhängigkeiten werden korrigiert ..." -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Option %s erfordert ein Ganzzahl-Argument, nicht »%s«." +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " fehlgeschlagen." -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Option »%s« ist zu lang." +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Abhängigkeiten konnten nicht korrigiert werden." -# Check for boolean; -1 is unspecified, 0 is yes 1 is no -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Der Sinn von »%s« ist nicht klar, versuchen Sie »true« oder »false«." +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Menge der zu aktualisierenden Pakete konnte nicht minimiert werden." -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "Ungültige Operation %s" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Fertig" -#: cmdline/apt-cache.cc:149 -#, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Paket %s Version %s hat eine unerfüllte Abhängigkeit:\n" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Probieren Sie »apt-get -f install«, um dies zu korrigieren." -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Gesamtzahl an Paketnamen: " +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Unerfüllte Abhängigkeiten. Versuchen Sie, -f zu benutzen." -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Gesamtzahl an Paketstrukturen: " +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " davon gewöhnliche Pakete: " +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Installiert]" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " davon rein virtuelle Pakete: " +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Installiert]" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " davon einzelne virtuelle Pakete: " +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " davon gemischte virtuelle Pakete: " +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Installiert]" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " davon fehlend: " +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Installiert]" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Gesamtzahl an unterschiedlichen Versionen: " +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Gesamtzahl an unterschiedlichen Beschreibungen: " +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Gesamtzahl an Abhängigkeiten: " +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "aber %s ist installiert" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Gesamtzahl an Version/Datei-Beziehungen: " +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "aber %s soll installiert werden" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Gesamtzahl an Beschreibung/Datei-Beziehungen: " +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "ist aber nicht installierbar" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Gesamtzahl an Bereitstellungen: " +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "ist aber ein virtuelles Paket" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Gesamtzahl an Mustern: " +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "ist aber nicht installiert" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Gesamtmenge des Abhängigkeits-/Versionsspeichers: " +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "soll aber nicht installiert werden" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Gesamtmenge an Slack: " +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " oder" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Gesamtmenge an Speicher: " +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Die folgenden Pakete haben unerfüllte Abhängigkeiten:" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Paketdatei %s ist nicht synchronisiert." +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Die folgenden NEUEN Pakete werden installiert:" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Keine Pakete gefunden" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Die folgenden Pakete werden ENTFERNT:" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Sie müssen mindestens ein Suchmuster angeben" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Die folgenden Pakete sind zurückgehalten worden:" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Die folgenden Pakete werden aktualisiert (Upgrade):" + +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" msgstr "" -"Dieser Befehl ist überholt. Bitte verwenden Sie stattdessen »apt-mark " -"showauto«." +"Die folgenden Pakete werden durch eine ÄLTERE VERSION ERSETZT (Downgrade):" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Paketdateien:" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Die folgenden zurückgehaltenen Pakete werden verändert:" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" +#: apt-private/private-output.cc:668 +#, c-format +msgid "%s (due to %s) " +msgstr "%s (wegen %s) " + +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Zwischenspeicher ist nicht synchron, Querverweisen einer Paketdatei nicht " -"möglich" +"WARNUNG: Die folgenden essentiellen Pakete werden entfernt.\n" +"Dies sollte NICHT geschehen, außer Sie wissen genau, was Sie tun!" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Mit Pinning verwaltete Pakete:" +#: apt-private/private-output.cc:707 +#, c-format +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu aktualisiert, %lu neu installiert, " -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(nicht gefunden)" +#: apt-private/private-output.cc:711 +#, c-format +msgid "%lu reinstalled, " +msgstr "%lu erneut installiert, " -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Installiert: " +#: apt-private/private-output.cc:713 +#, c-format +msgid "%lu downgraded, " +msgstr "%lu durch eine ältere Version ersetzt, " -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Installationskandidat: " +#: apt-private/private-output.cc:715 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu zu entfernen und %lu nicht aktualisiert.\n" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(keine)" +#: apt-private/private-output.cc:719 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "%lu nicht vollständig installiert oder entfernt.\n" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Paket-Pinning: " +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[J/n]" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Versionstabelle:" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[j/N]" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s für %s, kompiliert am %s %s\n" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "J" -#: cmdline/apt-cache.cc:1749 -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" -msgstr "" -"Aufruf: apt-cache [Optionen] befehl\n" -" apt-cache [Optionen] showpkg paket1 [paket2 ...]\n" -" apt-cache [Optionen] showsrc paket1 [paket2 ...]\n" -"\n" -"apt-cache ist ein untergeordnetes Werkzeug, um Informationen aus den\n" -"binären Zwischenspeicher-Dateien von APT abzufragen.\n" -"\n" -"Befehle:\n" -" gencaches – Paket- und Quell-Zwischenspeicher erzeugen\n" -" showpkg – grundsätzliche Informationen eines einzelnen Pakets ausgeben\n" -" showsrc – Aufzeichnungen zu Quellen ausgeben\n" -" stats – einige grundlegenden Statistiken ausgeben\n" -" dump – gesamte Datei in Kurzform ausgeben\n" -" dumpavail – Datei verfügbarer Pakete nach stdout ausgeben\n" -" unmet – unerfüllte Abhängigkeiten ausgeben\n" -" search – die Paketliste mittels regulärem Ausdruck durchsuchen\n" -" show – einen lesbaren Datensatz für das Paket ausgeben\n" -" depends – rohe Abhängigkeitsinformationen eines Pakets ausgeben\n" -" rdepends – umgekehrte Abhängigkeitsinformationen eines Pakets ausgeben\n" -" pkgnames – die Namen aller Pakete im System auflisten\n" -" dotty – Paketgraph zur Verwendung mit GraphViz erzeugen\n" -" xvcg – Paketgraph zur Verwendung mit xvcg erzeugen\n" -" policy – Policy-Einstellungen ausgeben\n" -"\n" -"Optionen:\n" -" -h dieser Hilfe-Text\n" -" -p=? der Paket-Zwischenspeicher\n" -" -s=? der Quell-Zwischenspeicher\n" -" -q Fortschrittsanzeige abschalten\n" -" -i nur wichtige Abhängigkeiten für den »unmet«-Befehl ausgeben\n" -" -c=? diese Konfigurationsdatei lesen\n" -" -o=? eine beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" -"Weitere Informationen finden Sie in den Handbuchseiten von apt-cache(8)\n" -"und apt.conf(5).\n" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "" -"Bitte geben Sie einen Namen für dieses Medium an, wie zum Beispiel »Debian " -"5.0.3 Disk 1«" +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Fehler beim Kompilieren eines regulären Ausdrucks - %s" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "" -"Bitte legen Sie ein Medium in das Laufwerk ein und drücken Sie die " -"Eingabetaste (Enter)." +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Der Befehl »update« akzeptiert keine Argumente." -#: cmdline/apt-cdrom.cc:139 +#: apt-private/private-update.cc:90 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "»%s« konnte nicht in »%s« eingebunden werden." +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "" -"Wiederholen Sie dieses Prozedere für die restlichen Disks Ihres Satzes." +#: apt-private/private-show.cc:156 +#, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumente nicht paarweise" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: cmdline/apt-config.cc:89 +#: apt-private/private-main.cc:32 msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -"Aufruf: apt-config [optionen] befehl\n" -"\n" -"apt-config ist ein einfaches Werkzeug, um die APT-Konfigurationsdatei zu " -"lesen.\n" -"\n" -"Befehle:\n" -" shell – Shell-Modus\n" -" dump – Die Konfiguration ausgeben\n" -"\n" -"Optionen:\n" -" -h Dieser Hilfetext\n" -" -c=? Diese Konfigurationsdatei lesen\n" -" -o=? Eine beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" +"HINWEIS: Dies ist nur eine Simulation!\n" +" apt-get benötigt root-Privilegien für die reale Ausführung.\n" +" Behalten Sie ebenfalls in Hinterkopf, dass die Sperren deaktiviert\n" +" sind, verlassen Sie sich also bezüglich des reellen aktuellen\n" +" Status der Sperre nicht darauf!" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "WARNUNG: Die folgenden Pakete können nicht authentifiziert werden!" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Authentifizierungswarnung überstimmt.\n" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Einige Pakete konnten nicht authentifiziert werden." -#: cmdline/apt-get.cc:367 +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Diese Pakete ohne Überprüfung installieren?" + +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Als Quellpaket wird »%s« statt »%s« gewählt.\n" +msgid "Failed to fetch %s %s\n" +msgstr "Fehlschlag beim Holen von %s %s\n" -#: cmdline/apt-get.cc:423 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Nicht verfügbare Version »%s« von Paket »%s« wird ignoriert." +msgid "Failed to parse %s. Edit again? " +msgstr "%s konnte nicht in %s umbenannt werden." -#: cmdline/apt-get.cc:454 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Couldn't find package %s" -msgstr "Paket %s konnte nicht gefunden werden" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s wurde als manuell installiert festgelegt.\n" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s wurde als automatisch installiert festgelegt.\n" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Paketaktualisierung (Upgrade) wird berechnet... " -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"Dieser Befehl ist überholt. Bitte verwenden Sie stattdessen »apt-mark auto« " -"und »apt-mark manual«." +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Fertig" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Interner Fehler, der Problemlöser hat etwas beschädigt." +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "OK " -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Das Downloadverzeichnis konnte nicht gesperrt werden." +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Holen: " -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "" -"Es muss mindestens ein Paket angegeben werden, dessen Quellen geholt werden " -"sollen." +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Fehl " -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Quellpaket für %s kann nicht gefunden werden." +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Es wurden %sB in %s geholt (%sB/s).\n" -#: cmdline/apt-get.cc:786 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" -"HINWEIS: »%s«-Paketierung wird betreut im »%s«-Versionsverwaltungssystem " -"auf:\n" -"%s\n" +msgid " [Working]" +msgstr " [Wird verarbeitet]" -#: cmdline/apt-get.cc:791 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"Bitte verwenden Sie:\n" -"bzr branch %s\n" -"um die neuesten (möglicherweise noch unveröffentlichten) Aktualisierungen\n" -"für das Paket abzurufen.\n" +"Medienwechsel: Bitte legen Sie das Medium mit dem Namen\n" +" »%s«\n" +"in Laufwerk »%s« ein und drücken Sie die Eingabetaste (Enter).\n" -#: cmdline/apt-get.cc:843 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Bereits heruntergeladene Datei »%s« wird übersprungen.\n" +msgid "Unable to read %s" +msgstr "%s kann nicht gelesen werden." -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Freier Platz in %s konnte nicht bestimmt werden." +msgid "Unable to change to %s" +msgstr "Es konnte nicht nach %s gewechselt werden." -#: cmdline/apt-get.cc:882 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Sie haben nicht genügend freien Speicherplatz in %s." +msgid "No mirror file '%s' found " +msgstr "Keine Datei von Spiegelserver »%s« gefunden" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Es müssen noch %sB von %sB an Quellarchiven heruntergeladen werden.\n" +msgid "Can not read mirror file '%s'" +msgstr "Datei »%s« von Spiegelserver kann nicht gelesen werden." -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Es müssen %sB an Quellarchiven heruntergeladen werden.\n" +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Datei »%s« von Spiegelserver kann nicht gelesen werden." -#: cmdline/apt-get.cc:902 +#: methods/mirror.cc:445 #, c-format -msgid "Fetch source %s\n" -msgstr "Quelle %s wird heruntergeladen.\n" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Einige Archive konnten nicht heruntergeladen werden." - -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Herunterladen abgeschlossen; Nur-Herunterladen-Modus aktiv" +msgid "[Mirror: %s]" +msgstr "[Spiegelserver: %s]" -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Das Entpacken der bereits entpackten Quelle in %s wird übersprungen.\n" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "" +"Interprozesskommunikation mit Unterprozess konnte nicht aufgebaut werden." -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Entpackbefehl »%s« fehlgeschlagen.\n" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Verbindung vorzeitig beendet" -#: cmdline/apt-get.cc:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Überprüfen Sie, ob das Paket »dpkg-dev« installiert ist.\n" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Fehlerhafte Voreinstellung!" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "Build-Befehl »%s« fehlgeschlagen.\n" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Zum Fortfahren die Eingabetaste (Enter) drücken." -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Kindprozess fehlgeschlagen" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Möchten Sie alle bisher heruntergeladenen .deb-Dateien löschen?" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Einige Fehler traten während des Entpackens auf. Installierte Pakete" + +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" msgstr "" -"Es muss mindestens ein Paket angegeben werden, dessen Bauabhängigkeiten " -"überprüft werden sollen." +"werden konfiguriert. Dies kann zu doppelten Fehlermeldungen oder Fehlern " +"durch" -#: cmdline/apt-get.cc:1054 -#, c-format +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "fehlende Abhängigkeiten führen. Das ist in Ordnung, nur die Fehler" + +#: dselect/install:105 msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"Keine Architekturinformation für %s verfügbar. Weiteres zur Einrichtung " -"finden Sie unter apt.conf(5) APT::Architectures." +"oberhalb dieser Meldung sind wichtig. Bitte beseitigen Sie sie und " +"[I]nstallieren Sie erneut." -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "" -"Informationen zu Bauabhängigkeiten für %s konnten nicht gefunden werden." +#: dselect/update:30 +msgid "Merging available information" +msgstr "Verfügbare Informationen werden zusammengeführt." -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s hat keine Bauabhängigkeiten.\n" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "»DropNode« auf noch verknüpften Knoten aufgerufen" + +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Hash-Element konnte nicht gefunden werden!" + +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Umleitung konnte nicht reserviert werden." + +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Interner Fehler in »AddDiversion«" -#: cmdline/apt-get.cc:1271 +#: apt-inst/filelist.cc:477 #, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da %s bei »%s«-Paketen " -"nicht erlaubt ist." +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Es wird versucht, eine Umleitung zu überschreiben: %s -> %s und %s/%s" -#: cmdline/apt-get.cc:1289 +#: apt-inst/filelist.cc:506 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" -"»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da Paket %s nicht " -"gefunden werden kann." +msgid "Double add of diversion %s -> %s" +msgstr "Doppelte Hinzufügung der Umleitung %s -> %s" -#: cmdline/apt-get.cc:1312 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"»%s«-Abhängigkeit für %s kann nicht erfüllt werden: Installiertes Paket %s " -"ist zu neu." +msgid "Duplicate conf file %s/%s" +msgstr "Doppelte Konfigurationsdatei %s/%s" -#: cmdline/apt-get.cc:1351 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da die Version des " -"Installationskandidaten für das Paket %s die Versionsanforderungen nicht " -"erfüllen kann." +msgid "The path %s is too long" +msgstr "Der Pfad %s ist zu lang." -#: cmdline/apt-get.cc:1357 +#: apt-inst/extract.cc:132 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "" -"»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da für Paket %s kein " -"Installationskandidat existiert." +msgid "Unpacking %s more than once" +msgstr "%s mehr als einmal entpackt" -#: cmdline/apt-get.cc:1380 +#: apt-inst/extract.cc:142 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "»%s«-Abhängigkeit für %s konnte nicht erfüllt werden: %s" +msgid "The directory %s is diverted" +msgstr "Das Verzeichnis %s ist umgeleitet." -#: cmdline/apt-get.cc:1395 +#: apt-inst/extract.cc:152 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Bauabhängigkeiten für %s konnten nicht erfüllt werden." +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Schreibversuch vom Paket auf das Umleitungsziel %s/%s" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Verarbeitung der Bauabhängigkeiten fehlgeschlagen" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Der Umleitungspfad ist zu lang." -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Änderungsprotokoll (Changelog) für %s (%s)" +msgid "Failed to stat %s" +msgstr "%s mit »stat« abfragen fehlgeschlagen" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Unterstützte Module:" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "%s konnte nicht in %s umbenannt werden." -#: cmdline/apt-get.cc:1632 -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -msgstr "" -"Aufruf: apt-get [Optionen] befehl\n" -" apt-get [Optionen] install|remove paket1 [paket2 ...]\n" -" apt-get [Optionen] source paket1 [paket2 ...]\n" -"\n" -"apt-get ist ein einfaches Befehlszeilenwerkzeug zum Herunterladen\n" -"und Installieren von Paketen. Die am häufigsten benutzten Befehle\n" -"sind update und install.\n" -"\n" -"Befehle:\n" -" update – neue Paketinformationen holen\n" -" upgrade – Upgrade (Paketaktualisierung) durchführen\n" -" install – neue Pakete installieren (paket ist libc6, nicht libc6." -"deb)\n" -" remove – Pakete entfernen\n" -" autoremove – alle nicht mehr verwendeten Pakete automatisch " -"entfernen\n" -" purge – Pakete vollständig entfernen (inkl. " -"Konfigurationsdateien)\n" -" source – Quellarchive herunterladen\n" -" build-dep – Bauabhängigkeiten für Quellpakete konfigurieren\n" -" dist-upgrade – Upgrade (Paketaktualisierung) für die komplette\n" -" Distribution durchführen, siehe apt-get(8)\n" -" dselect-upgrade – der Auswahl von »dselect« folgen\n" -" clean – heruntergeladene Archive löschen\n" -" autoclean – veraltete heruntergeladene Archive löschen\n" -" check – überprüfen, ob es unerfüllte Abhängigkeiten gibt\n" -" changelog – Änderungsprotokoll für das angegebene Paket " -"herunterladen\n" -" und anzeigen\n" -" download – das Binärpaket in das aktuelle Verzeichnis " -"herunterladen\n" -"\n" -"Optionen:\n" -" -h dieser Hilfetext\n" -" -q protokollierbare Ausgabe – keine Fortschrittsanzeige\n" -" -qq keine Ausgabe, außer bei Fehlern\n" -" -d nur herunterladen – Archive NICHT installieren oder entpacken\n" -" -s nichts tun, nur eine Simulation der Aktionen durchführen\n" -" -y für alle Antworten »Ja« annehmen und nicht nachfragen\n" -" -f versuchen, ein System mit defekten Abhängigkeiten zu korrigieren\n" -" -m versuchen fortzufahren, wenn Archive nicht auffindbar sind\n" -" -u ebenfalls eine Liste der aktualisierten Pakete ausgeben\n" -" -b ein Quellpaket nach dem Herunterladen bauen\n" -" -V ausführliche Versionsnummern ausgeben\n" -" -c=? Diese Konfigurationsdatei benutzen\n" -" -o=? Beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" -"Siehe auch die Handbuchseiten apt-get(8), sources.list(5) und apt.conf(5)\n" -"bezüglich weitergehender Informationen und Optionen.\n" -" Dieses APT hat Super-Kuh-Kräfte.\n" +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "Das Verzeichnis %s wird durch ein Nicht-Verzeichnis ersetzt." -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "" -"Es muss mindestens ein Paket angegeben werden, dessen Quellen geholt werden " -"sollen." +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Knoten konnte nicht in seinem Hash gefunden werden." -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Der Pfad ist zu lang." -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" +#: apt-inst/extract.cc:421 +#, c-format +msgid "Overwrite package match with no version for %s" +msgstr "Pakettreffer ohne Version für %s wird überschrieben." -#: cmdline/apt-mark.cc:68 +#: apt-inst/extract.cc:438 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "" -"Markierung für %s kann nicht gesetzt werden, da es nicht installiert ist.\n" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Durch die Datei %s/%s wird die Datei in Paket %s überschrieben." -#: cmdline/apt-mark.cc:74 +#: apt-inst/extract.cc:498 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s wurde bereits auf manuell installiert gesetzt.\n" +msgid "Unable to stat %s" +msgstr "%s mit »stat« abfragen nicht möglich" -#: cmdline/apt-mark.cc:76 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s wurde bereits auf automatisch installiert gesetzt.\n" +msgid "Failed to write file %s" +msgstr "Datei %s konnte nicht geschrieben werden." -#: cmdline/apt-mark.cc:241 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s wurde bereits auf Halten gesetzt.\n" +msgid "Failed to close file %s" +msgstr "Datei %s konnte nicht geschlossen werden." -#: cmdline/apt-mark.cc:243 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "%s was already not hold.\n" -msgstr "Die Halten-Markierung für %s wurde bereits entfernt.\n" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Dies ist kein gültiges DEB-Archiv, da es »%s« nicht enthält." -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "%s set on hold.\n" -msgstr "%s auf Halten gesetzt.\n" +msgid "Internal error, could not locate member %s" +msgstr "Interner Fehler, Bestandteil %s konnte nicht gefunden werden" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Auswerten der »control«-Datei nicht möglich" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Ungültige Archiv-Signatur" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Fehler beim Lesen der Archivdatei-Kopfzeilen" + +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Halten-Markierung für %s entfernt.\n" +msgid "Invalid archive member header %s" +msgstr "Ungültige Archivbestandteil-Kopfzeile %s" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "Ausführen von dpkg fehlgeschlagen. Sind Sie root?" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Ungültige Archivdatei-Kopfzeilen" -#: cmdline/apt-mark.cc:392 -#, fuzzy -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" -"Aufruf: apt-mark [Optionen] {auto|manual} paket1 [paket2 ...]\n" -"\n" -"apt-mark ist ein einfaches Befehlszeilenprogramm, um Pakete als manuell\n" -"oder automatisch installiert zu markieren. Diese Markierungen können auch\n" -"aufgelistet werden.\n" -"\n" -"Befehle:\n" -" auto – das angegebene Paket als »Automatisch installiert« markieren\n" -" manual – das angegebene Paket als »Manuell installiert« markieren\n" -"\n" -"Optionen:\n" -" -h dieser Hilfetext\n" -" -q protokollierbare Ausgabe – keine Fortschrittsanzeige\n" -" -qq keine Ausgabe, außer bei Fehlern\n" -" -s nichts tun, nur eine Simulation der Aktionen durchführen\n" -" -f Autom./Manuell-Markierung in der angegebenen Datei lesen/schreiben\n" -" -c=? Diese Konfigurationsdatei benutzen\n" -" -o=? Beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" -"Siehe auch die Handbuchseiten apt-mark(8) und apt.conf(5) bezüglich\n" -"weitergehender Informationen und Optionen." +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Archiv ist zu kurz." -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Archiv-Kopfzeilen konnten nicht gelesen werden." -#: methods/cdrom.cc:203 +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Pipes (Weiterleitungen) konnten nicht erzeugt werden." + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "gzip konnte nicht ausgeführt werden." + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Beschädigtes Archiv" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar-Prüfsumme fehlgeschlagen, Archiv beschädigt" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "CD-ROM-Datenbank %s kann nicht gelesen werden." +msgid "Unknown TAR header type %u, member %s" +msgstr "Unbekannter Tar-Kopfzeilen-Typ %u, Bestandteil %s" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" msgstr "" -"Bitte verwenden Sie apt-cdrom, um APT diese CD-ROM bekannt zu machen. apt-" -"get update kann nicht dazu verwendet werden, neue CD-ROMs hinzuzufügen." -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Falsche CD-ROM" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Ausführen von dpkg" -#: methods/cdrom.cc:249 +#: apt-pkg/init.cc:146 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgid "Packaging system '%s' is not supported" +msgstr "Paketierungssystem »%s« wird nicht unterstützt." + +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Bestimmung eines passenden Paketierungssystemtyps nicht möglich" + +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "Es wurden %i Datensätze geschrieben.\n" + +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "Es wurden %i Datensätze mit %i fehlenden Dateien geschrieben.\n" + +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Es wurden %i Datensätze mit %i nicht passenden Dateien geschrieben.\n" + +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" -"Einbindung von CD-ROM in %s kann nicht gelöst werden, möglicherweise wird " -"sie noch verwendet." +"Es wurden %i Datensätze mit %i fehlenden und %i nicht passenden Dateien " +"geschrieben.\n" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Medium nicht gefunden" +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "Authentifizierungs-Datensatz konnte nicht gefunden werden für: %s" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Datei nicht gefunden" +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "Hash-Summe stimmt nicht überein für: %s" -# looks like someone hardcoded English grammar -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Abfrage mit »stat« fehlgeschlagen" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"Die Paketliste oder die Statusdatei konnte nicht eingelesen oder geöffnet " +"werden." -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Änderungszeitpunkt kann nicht gesetzt werden." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Probieren Sie »apt-get update«, um diese Probleme zu korrigieren." + +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Die Liste der Quellen konnte nicht gelesen werden." -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Ungültige URI, lokale URIs dürfen nicht mit // beginnen." +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Leerer Paketzwischenspeicher" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Anmeldung läuft" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Die Paketzwischenspeicher-Datei ist beschädigt." -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Name des Kommunikationspartners kann nicht bestimmt werden." +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "" +"Die Paketzwischenspeicher-Datei liegt in einer inkompatiblen Version vor." -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Lokaler Name kann nicht bestimmt werden." +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "Die Paketzwischenspeicher-Datei ist beschädigt, sie ist zu klein." -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Verbindung durch Server abgelehnt; Server meldet: %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "Das Versionssystem »%s« wird durch dieses APT nicht unterstützt." -#: methods/ftp.cc:225 -#, c-format -msgid "USER failed, server said: %s" -msgstr "Befehl USER fehlgeschlagen, Server meldet: %s" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Der Paketzwischenspeicher wurde für eine andere Architektur aufgebaut." -#: methods/ftp.cc:232 -#, c-format -msgid "PASS failed, server said: %s" -msgstr "Befehl PASS fehlgeschlagen, Server meldet: %s" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Hängt ab von" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"Es war ein Proxy-Server angegeben, aber kein Login-Skript, Acquire::ftp::" -"ProxyLogin ist leer." +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Hängt ab von (vorher)" -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Befehl »%s« des Login-Skriptes fehlgeschlagen, Server meldet: %s" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Schlägt vor" -#: methods/ftp.cc:306 -#, c-format -msgid "TYPE failed, server said: %s" -msgstr "Befehl TYPE fehlgeschlagen: %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Empfiehlt" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Zeitüberschreitung der Verbindung" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Kollidiert mit" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Verbindung durch Server geschlossen" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Ersetzt" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Durch eine Antwort wurde der Puffer zum Überlaufen gebracht." +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Löst ab" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protokoll beschädigt" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Beschädigt" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Socket konnte nicht erzeugt werden." +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Wertet auf" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Daten-Socket konnte wegen Zeitüberschreitung nicht verbunden werden." +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "wichtig" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Fehlgeschlagen" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "erforderlich" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Passiver Socket konnte nicht verbunden werden." +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standard" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "" -"Von der Funktion getaddrinfo wurde kein auf Verbindungen wartender Socket " -"gefunden." +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "optional" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Verbindung des Sockets nicht möglich" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Warten auf Verbindungen auf dem Socket nicht möglich" +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Der Treiber für Methode %s konnte nicht gefunden werden." -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Name des Sockets konnte nicht bestimmt werden." +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Überprüfen Sie, ob das Paket »dpkg-dev« installiert ist.\n" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "PORT-Befehl konnte nicht gesendet werden." +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "Methode %s ist nicht korrekt gestartet." -#: methods/ftp.cc:802 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Unbekannte Adressfamilie %u (AF_*)" +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Bitte legen Sie das Medium mit dem Namen »%s« in Laufwerk »%s« ein und " +"drücken Sie die Eingabetaste (Enter)." -#: methods/ftp.cc:811 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "Befehl EPRT fehlgeschlagen: %s" +msgid "Index file type '%s' is not supported" +msgstr "Indexdateityp »%s« wird nicht unterstützt." -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Zeitüberschreitung bei Datenverbindungsaufbau" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Abhängigkeitsbaum wird aufgebaut." -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Verbindung konnte nicht angenommen werden." +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Installationskandidat-Versionen" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problem bei Bestimmung des Hashwertes einer Datei" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Abhängigkeitsgenerierung" -#: methods/ftp.cc:890 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Statusinformationen werden eingelesen." + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Datei konnte nicht heruntergeladen werden; Server meldet: »%s«" +msgid "Failed to open StateFile %s" +msgstr "StateFile %s konnte nicht geöffnet werden." -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Zeitüberschreitung bei Datenverbindung" +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Temporäres StateFile %s konnte nicht geschrieben werden." -#: methods/ftp.cc:935 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Datenübertragung fehlgeschlagen; Server meldet: »%s«" +msgid "rename failed, %s (%s -> %s)." +msgstr "Umbenennen fehlgeschlagen, %s (%s -> %s)." -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Abfrage" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Hash-Summe stimmt nicht überein" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Aufruf nicht möglich: " +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Größe stimmt nicht überein" -#: methods/connect.cc:76 +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Ungültige Operation %s" + +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Verbindung mit %s (%s)" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" +"Erwarteter Eintrag »%s« konnte in Release-Datei nicht gefunden werden " +"(falscher Eintrag in sources.list oder missgebildete Datei)." -#: methods/connect.cc:87 +#: apt-pkg/acquire-item.cc:1589 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Hash-Summe für »%s« kann in Release-Datei nicht gefunden werden." -#: methods/connect.cc:94 +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "" +"Es gibt keine öffentlichen Schlüssel für die folgenden Schlüssel-IDs:\n" + +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Socket für %s konnte nicht erzeugt werden (f=%u t=%u p=%u)." +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" +"Release-Datei für %s ist abgelaufen (ungültig seit %s). Aktualisierungen für " +"dieses Depot werden nicht angewendet." -#: methods/connect.cc:100 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Verbindung mit %s:%s kann nicht aufgebaut werden (%s)." +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Konflikt bei Distribution: %s (%s erwartet, aber %s bekommen)" -#: methods/connect.cc:108 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -"Verbindung mit %s:%s konnte nicht aufgebaut werden (%s), eine " -"Zeitüberschreitung trat auf." +"Während der Überprüfung der Signatur trat ein Fehler auf. Das Repository " +"wurde nicht aktualisiert und die vorherigen Indexdateien werden verwendet. " +"GPG-Fehler: %s: %s\n" -#: methods/connect.cc:126 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Verbindung mit %s:%s nicht möglich (%s)" +msgid "GPG error: %s: %s" +msgstr "GPG-Fehler: %s: %s" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Connecting to %s" -msgstr "Verbindung mit %s" +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"Es konnte keine Datei für Paket %s gefunden werden. Das könnte heißen, dass " +"Sie dieses Paket von Hand korrigieren müssen (aufgrund fehlender " +"Architektur)." -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Could not resolve '%s'" -msgstr "»%s« konnte nicht aufgelöst werden." +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" +"Es konnte keine Quelle gefunden werden, um Version »%s« von »%s« " +"herunterzuladen." -#: methods/connect.cc:205 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Temporärer Fehlschlag beim Auflösen von »%s«" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Die Paketindexdateien sind beschädigt: Kein Filename:-Feld für Paket %s." -#: methods/connect.cc:209 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Beim Auflösen von »%s:%s« ist etwas Schlimmes passiert (%i - %s)." +msgid "Clean of %s is not supported" +msgstr "Indexdateityp »%s« wird nicht unterstützt." -#: methods/connect.cc:211 +#: apt-pkg/clean.cc:64 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Beim Auflösen von »%s:%s« ist etwas Schlimmes passiert (%i - %s)." +msgid "Unable to stat %s." +msgstr "%s mit stat abfragen nicht möglich" -#: methods/connect.cc:258 +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Zwischenspeicher hat ein inkompatibles Versionssystem." + +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Verbindung mit %s:%s nicht möglich:" +msgid "Error occurred while processing %s (%s%d)" +msgstr "Fehler aufgetreten beim Verarbeiten von %s (%s%d)" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -"Interner Fehler: Gültige Signatur, Fingerabdruck des Schlüssels konnte " -"jedoch nicht ermittelt werden?!" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Mindestens eine ungültige Signatur wurde entdeckt." +"Na so was, Sie haben die Anzahl an Paketen überschritten, mit denen diese " +"APT-Version umgehen kann." -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" -"»gpgv« konnte zur Überprüfung der Signatur nicht ausgeführt werden (ist gpgv " -"installiert?)" +"Na so was, Sie haben die Anzahl an Versionen überschritten, mit denen diese " +"APT-Version umgehen kann." -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 -#, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" +"Na so was, Sie haben die Anzahl an Beschreibungen überschritten, mit denen " +"diese APT-Version umgehen kann." -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Unbekannter Fehler beim Ausführen von gpgv" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Die folgenden Signaturen waren ungültig:\n" - -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -"Die folgenden Signaturen konnten nicht überprüft werden, weil ihr " -"öffentlicher\n" -"Schlüssel nicht verfügbar ist:\n" +"Na so was, Sie haben die Anzahl an Abhängigkeiten überschritten, mit denen " +"diese APT-Version umgehen kann." -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Leere Dateien können kein gültiges Archiv sein." +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "" +"Paket %s %s wurde beim Verarbeiten der Dateiabhängigkeiten nicht gefunden." -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Fehler beim Schreiben der Datei" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Die Quellpaket-Liste %s konnte nicht mit »stat« abgefragt werden" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "" -"Fehler beim Lesen vom Server: Verbindung wurde durch den Server auf der " -"anderen Seite geschlossen." +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Paketlisten werden gelesen" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Fehler beim Lesen vom Server" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Sammeln der angebotenen Funktionalitäten (Provides) aus den Dateien" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Fehler beim Schreiben in Datei" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Schreiben nach %s nicht möglich" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Auswahl fehlgeschlagen" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "E/A-Fehler beim Speichern des Quell-Zwischenspeichers" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Zeitüberschreitung bei Verbindung" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Herstellerblock %s enthält keinen Fingerabdruck." -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Fehler beim Schreiben der Ausgabedatei" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Listenverzeichnis %spartial fehlt." -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Warten auf Kopfzeilen" +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Archivverzeichnis %spartial fehlt." -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Ungültige Kopfzeile" +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "Das Verzeichnis %s kann nicht gesperrt werden." -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Vom HTTP-Server wurde eine ungültige Antwort-Kopfzeile gesandt." +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Holen der Datei %li von %li (noch %s)" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "" -"Vom HTTP-Server wurde eine ungültige »Content-Length«-Kopfzeile gesandt." +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Holen der Datei %li von %li" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"Vom HTTP-Server wurde eine ungültige »Content-Range«-Kopfzeile gesandt." +"Einige Indexdateien konnten nicht heruntergeladen werden. Sie wurden " +"ignoriert oder alte an ihrer Stelle benutzt." -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" msgstr "" -"Teilweise Dateiübertragung wird vom HTTP-Server nur fehlerhaft unterstützt." - -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Unbekanntes Datumsformat" - -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Fehlerhafte Kopfzeilendaten" +"Sie müssen einige »source«-URIs für Quellpakete in die sources.list-Datei " +"eintragen." -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Verbindung fehlgeschlagen" +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" +"Der Wert »%s« ist für APT::Default-Release ungültig, da solch eine " +"Veröffentlichung in den Paketquellen nicht verfügbar ist." -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Interner Fehler" +#: apt-pkg/policy.cc:422 +#, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "" +"Ungültiger Eintrag in Einstellungsdatei %s, keine »Package«-Kopfzeile(n)" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Paketaktualisierung (Upgrade) wird berechnet... " +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Pinning-Typ %s kann nicht interpretiert werden." -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Fertig" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Keine Priorität (oder Null) für Pin angegeben" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" +"»%s« konnte nicht unmittelbar konfiguriert werden. Lesen Sie »man 5 apt." +"conf« unter APT::Immediate-Configure bezüglich weiterer Details. (%d)" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, c-format +msgid "Could not configure '%s'. " +msgstr "»%s« konnte nicht konfiguriert werden. " + +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." msgstr "" +"Dieser Installationslauf erfordert, dass vorübergehend das essentielle Paket " +"%s aufgrund einer Konflikt-/Vor-Abhängigkeits-Schleife entfernt wird. Das " +"ist oft schlimm, aber wenn Sie es wirklich tun wollen, aktivieren Sie bitte " +"die Option APT::Force-LoopBreak." -#: apt-private/private-list.cc:164 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Line %u too long in source list %s." +msgstr "Zeile %u in Quellliste %s zu lang." -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Abhängigkeiten werden korrigiert ..." +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Einbindung der CD-ROM wird gelöst ...\n" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " fehlgeschlagen." +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "Verwendeter CD-ROM-Einbindungspunkt: %s\n" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Abhängigkeiten konnten nicht korrigiert werden." +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Warten auf Medium ...\n" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Menge der zu aktualisierenden Pakete konnte nicht minimiert werden." +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "CD-ROM wird eingebunden ...\n" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Fertig" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identifizieren ... " -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Probieren Sie »apt-get -f install«, um dies zu korrigieren." +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Gespeicherte Kennzeichnung: %s\n" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Unerfüllte Abhängigkeiten. Versuchen Sie, -f zu benutzen." +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Durchsuchen des Mediums nach Index-Dateien ...\n" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/cdrom.cc:734 +#, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"%zu Paketindizes, %zu Quellindizes, %zu Übersetzungsindizes und %zu " +"Signaturen gefunden\n" -#: apt-private/private-output.cc:234 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Installiert]" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" +"Es konnten keine Paketdateien gefunden werden; möglicherweise ist dies keine " +"Debian-Disk oder eine für die falsche Architektur?" -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [Installiert]" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "Kennzeichnung »%s« gefunden\n" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Dies ist kein gültiger Name, versuchen Sie es erneut.\n" + +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" +"Dieses Medium heißt: \n" +"»%s«\n" -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Installiert]" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopieren der Paketlisten ..." -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Installiert]" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Schreiben der neuen Quellliste\n" -#: apt-private/private-output.cc:249 +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Quelllisteneinträge für dieses Medium sind:\n" + +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "[upgradable from: %s]" +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" +"Das Paket %s muss neu installiert werden, es kann jedoch kein Archiv dafür " +"gefunden werden." -#: apt-private/private-output.cc:253 -msgid "[residual-config]" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" +"Fehler: Unterbrechungen durch pkgProblemResolver::Resolve hervorgerufen; " +"dies könnte durch zurückgehaltene Pakete verursacht worden sein." -#: apt-private/private-output.cc:435 -#, c-format -msgid "but %s is installed" -msgstr "aber %s ist installiert" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "" +"Probleme können nicht korrigiert werden, Sie haben zurückgehaltene defekte " +"Pakete." -#: apt-private/private-output.cc:437 -#, c-format -msgid "but %s is to be installed" -msgstr "aber %s soll installiert werden" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Szenario an Problemlöser senden" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "ist aber nicht installierbar" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Anfrage an Problemlöser senden" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "ist aber ein virtuelles Paket" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Vorbereiten, eine Lösung zu erhalten" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "ist aber nicht installiert" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" +"Externer Problemlöser ist ohne ordnungsgemäße Fehlermeldung fehlgeschlagen." -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "soll aber nicht installiert werden" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Externen Problemlöser ausführen" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " oder" +#: apt-pkg/tagfile.cc:140 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Paketdatei %s konnte nicht verarbeitet werden (1)." -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Die folgenden Pakete haben unerfüllte Abhängigkeiten:" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Paketdatei %s konnte nicht verarbeitet werden (2)." -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Die folgenden NEUEN Pakete werden installiert:" +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Release-Datei %s kann nicht verarbeitet werden." -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Die folgenden Pakete werden ENTFERNT:" +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "Keine Bereiche (Sections) in Release-Datei %s" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Die folgenden Pakete sind zurückgehalten worden:" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Kein Hash-Eintrag in Release-Datei %s" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Die folgenden Pakete werden aktualisiert (Upgrade):" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Ungültiger »Valid-Until«-Eintrag in Release-Datei %s" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "" -"Die folgenden Pakete werden durch eine ÄLTERE VERSION ERSETZT (Downgrade):" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Ungültiger »Date«-Eintrag in Release-Datei %s" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Die folgenden zurückgehaltenen Pakete werden verändert:" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s (»URI parse«)" -#: apt-private/private-output.cc:668 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "%s (due to %s) " -msgstr "%s (wegen %s) " +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s ([Option] nicht auswertbar)" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" -msgstr "" -"WARNUNG: Die folgenden essentiellen Pakete werden entfernt.\n" -"Dies sollte NICHT geschehen, außer Sie wissen genau, was Sie tun!" +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s ([Option] zu kurz)" -#: apt-private/private-output.cc:707 +#: apt-pkg/sourcelist.cc:184 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu aktualisiert, %lu neu installiert, " +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s ([%s] ist keine Zuweisung)" -#: apt-private/private-output.cc:711 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu erneut installiert, " +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s ([%s] hat keinen Schlüssel)" -#: apt-private/private-output.cc:713 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "%lu downgraded, " -msgstr "%lu durch eine ältere Version ersetzt, " +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "" +"Missgestaltete Zeile %lu in Quellliste %s ([%s] Schlüssel %s hat keinen Wert)" -#: apt-private/private-output.cc:715 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu zu entfernen und %lu nicht aktualisiert.\n" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s (»URI«)" -#: apt-private/private-output.cc:719 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu nicht vollständig installiert oder entfernt.\n" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s (»dist«)" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[J/n]" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s (»URI parse«)" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[j/N]" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s (»absolute dist«)" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "J" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s (»dist parse«)" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "N" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "%s wird geöffnet." -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Der Befehl »update« akzeptiert keine Argumente." +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Missgestaltete Zeile %u in Quellliste %s (»type«)" -#: apt-private/private-update.cc:90 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Typ »%s« in Zeile %u der Quellliste %s ist unbekannt." -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Typ »%s« in Zeile %u der Quellliste %s ist unbekannt." -#: apt-private/private-show.cc:156 +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Release '%s' for '%s' was not found" +msgstr "Veröffentlichung »%s« für »%s« konnte nicht gefunden werden." -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Version »%s« für »%s« konnte nicht gefunden werden." -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Interner Fehler, InstallPackages mit defekten Paketen aufgerufen!" +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Task »%s« konnte nicht gefunden werden." -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Pakete müssen entfernt werden, aber Entfernen ist abgeschaltet." +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Interner Fehler, Anordnung beendete nicht" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -"Wie merkwürdig ... die Größen haben nicht übereingestimmt; schreiben Sie " -"eine E-Mail an apt@packages.debian.org (auf Englisch bitte)." +"Es können keine Versionen von Paket »%s« ausgewählt werden, da es rein " +"virtuell ist." -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Es müssen noch %sB von %sB an Archiven heruntergeladen werden.\n" +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" +"Es kann weder eine installierte Version noch ein Installationskandidat von " +"Paket »%s« ausgewählt werden, da beide nicht existieren." -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Es müssen %sB an Archiven heruntergeladen werden.\n" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"Die neueste Version von Paket »%s« kann nicht ausgewählt werden, da es rein " +"virtuell ist." -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Nach dieser Operation werden %sB Plattenplatz zusätzlich benutzt.\n" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" +"Es kann kein Installationskandidat von Paket »%s« ausgewählt werden, da kein " +"solcher existiert." -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/cacheset.cc:663 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Nach dieser Operation werden %sB Plattenplatz freigegeben.\n" +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"Die installierte Version von Paket »%s« kann nicht ausgewählt werden, da es " +"nicht installiert ist." -#: apt-private/private-install.cc:200 +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Sie haben nicht genug Platz in %s." - -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Es gab Probleme und -y wurde ohne --force-yes verwendet." - -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "»Nur triviale« angegeben, aber dies ist keine triviale Operation." - -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Ja, tue was ich sage!" +msgid "%lid %lih %limin %lis" +msgstr "%li d %li h %li min %li s" -#: apt-private/private-install.cc:222 +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Sie sind im Begriff, etwas potentiell Schädliches zu tun.\n" -"Zum Fortfahren geben Sie bitte »%s« ein.\n" -" ?] " +msgid "%lih %limin %lis" +msgstr "%li h %li min %li s" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Abbruch." +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%li min %li s" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Möchten Sie fortfahren?" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%li s" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Einige Dateien konnten nicht heruntergeladen werden." +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "Auswahl %s nicht gefunden" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Einige Archive konnten nicht heruntergeladen werden; vielleicht »apt-get " -"update« ausführen oder mit »--fix-missing« probieren?" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Es wird keine Sperre für schreibgeschützte Sperrdatei %s verwendet." -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing und Wechselmedien werden derzeit nicht unterstützt." +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Sperrdatei %s konnte nicht geöffnet werden." -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Fehlende Pakete konnten nicht korrigiert werden." +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Es wird keine Sperre für per NFS eingebundene Sperrdatei %s verwendet." -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Installation abgebrochen." +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Konnte Sperre %s nicht bekommen" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -"Das folgende Paket verschwand von Ihrem System, da alle\n" -"Dateien von anderen Paketen überschrieben wurden:" -msgstr[1] "" -"Die folgenden Pakete verschwanden von Ihrem System, da alle\n" -"Dateien von anderen Paketen überschrieben wurden:" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "Dateiliste kann nicht erstellt werden, da »%s« kein Verzeichnis ist." -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Hinweis: Dies wird automatisch und absichtlich von dpkg durchgeführt." +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "" +"»%s« in Verzeichnis »%s« wird ignoriert, da es keine reguläre Datei ist." -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -"Es soll nichts gelöscht werden, AutoRemover kann nicht gestartet werden." +"Datei »%s« in Verzeichnis »%s« wird ignoriert, da sie keine Dateinamen-" +"Erweiterung hat." -#: apt-private/private-install.cc:499 +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"Hmm, es sieht so aus, als ob der AutoRemover etwas beschädigt hat, was\n" -"wirklich nicht geschehen sollte. Bitte erstellen Sie einen Fehlerbericht\n" -"über apt." +"Datei »%s« in Verzeichnis »%s« wird ignoriert, da sie eine ungültige " +"Dateinamen-Erweiterung hat." -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "" -"Die folgenden Informationen helfen Ihnen vielleicht, die Situation zu lösen:" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Unterprozess %s hat einen Speicherzugriffsfehler empfangen." -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Interner Fehler, AutoRemover hat etwas beschädigt." +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "Unterprozess %s hat das Signal %u empfangen." -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "" -"Das folgende Paket wurde automatisch installiert und wird nicht mehr " -"benötigt:" -msgstr[1] "" -"Die folgenden Pakete wurden automatisch installiert und werden nicht mehr " -"benötigt:" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "Unterprozess %s hat Fehlercode zurückgegeben (%u)" -#: apt-private/private-install.cc:517 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "" -"%lu Paket wurde automatisch installiert und wird nicht mehr benötigt.\n" -msgstr[1] "" -"%lu Pakete wurden automatisch installiert und werden nicht mehr benötigt.\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "Unterprozess %s unerwartet beendet" -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Verwenden Sie »apt-get autoremove«, um es zu entfernen." -msgstr[1] "Verwenden Sie »apt-get autoremove«, um sie zu entfernen." +#: apt-pkg/contrib/fileutl.cc:913 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problem beim Schließen der gzip-Datei %s" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Probieren Sie »apt-get -f install«, um dies zu korrigieren:" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Datei %s konnte nicht geöffnet werden." -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Unerfüllte Abhängigkeiten. Versuchen Sie »apt-get -f install« ohne Angabe " -"eines Pakets (oder geben Sie eine Lösung an)." +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Datei-Deskriptor %d konnte nicht geöffnet werden." -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" msgstr "" -"Einige Pakete konnten nicht installiert werden. Das kann bedeuten, dass\n" -"Sie eine unmögliche Situation angefordert haben oder, wenn Sie die\n" -"Unstable-Distribution verwenden, dass einige erforderliche Pakete noch\n" -"nicht erstellt wurden oder Incoming noch nicht verlassen haben." +"Interprozesskommunikation mit Unterprozess konnte nicht aufgebaut werden." -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Beschädigte Pakete" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Fehler beim Ausführen von Komprimierer " -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Die folgenden zusätzlichen Pakete werden installiert:" +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "" +"Lesevorgang: es verbleiben noch %llu zu lesen, jedoch ist nichts mehr übrig." -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Vorgeschlagene Pakete:" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "" +"Schreibvorgang: es verbleiben noch %llu zu schreiben, Schreiben ist jedoch " +"nicht möglich." -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Empfohlene Pakete:" +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Problem beim Schließen der Datei %s" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:1927 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "" -"%s wird übersprungen; es ist schon installiert und ein Upgrade ist nicht " -"angefordert.\n" +msgid "Problem renaming the file %s to %s" +msgstr "Problem beim Umbenennen der Datei %s nach %s" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:1938 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"%s wird übersprungen; es ist nicht installiert und lediglich Upgrades sind " -"angefordert.\n" +msgid "Problem unlinking the file %s" +msgstr "Problem beim Entfernen (unlink) der Datei %s" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Problem beim Synchronisieren der Datei" + +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgid "%c%s... Error!" +msgstr "%c%s... Fehler!" + +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Fertig" + +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -"Erneute Installation von %s ist nicht möglich,\n" -"es kann nicht heruntergeladen werden.\n" -#: apt-private/private-install.cc:846 +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Fertig" + +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Eine leere Datei kann nicht mit mmap abgebildet werden." + +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s ist schon die neueste Version.\n" +msgid "Couldn't duplicate file descriptor %i" +msgstr "Datei-Deskriptor %i konnte nicht dupliziert werden." -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/mmap.cc:119 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Version »%s« (%s) für »%s« gewählt.\n" +msgid "Couldn't make mmap of %llu bytes" +msgstr "mmap mit %llu Byte Größe konnte nicht erzeugt werden." -#: apt-private/private-install.cc:899 -#, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Version »%s« (%s) für »%s« gewählt aufgrund von »%s«.\n" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "mmap konnte nicht geschlossen werden." -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 -#, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" -"Paket »%s« ist nicht installiert, wird also auch nicht entfernt. Meinten Sie " -"»%s«?\n" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "mmap konnte nicht synchronisiert werden." -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Paket »%s« ist nicht installiert, wird also auch nicht entfernt.\n" +msgid "Couldn't make mmap of %lu bytes" +msgstr "mmap mit %lu Byte Größe konnte nicht erzeugt werden." -#: apt-private/private-main.cc:32 +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Datei konnte nicht eingekürzt werden." + +#: apt-pkg/contrib/mmap.cc:341 +#, c-format msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -"HINWEIS: Dies ist nur eine Simulation!\n" -" apt-get benötigt root-Privilegien für die reale Ausführung.\n" -" Behalten Sie ebenfalls in Hinterkopf, dass die Sperren deaktiviert\n" -" sind, verlassen Sie sich also bezüglich des reellen aktuellen\n" -" Status der Sperre nicht darauf!" - -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "WARNUNG: Die folgenden Pakete können nicht authentifiziert werden!" - -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Authentifizierungswarnung überstimmt.\n" - -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Einige Pakete konnten nicht authentifiziert werden." - -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Diese Pakete ohne Überprüfung installieren?" - -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "%s konnte nicht in %s umbenannt werden." +"Nicht genügend Platz für »Dynamic MMap«. Bitte erhöhen Sie den Wert von APT::" +"Cache-Start. Aktueller Wert: %lu. (Siehe auch man 5 apt.conf.)" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" +"Unmöglich, die Größe der MMap zu erhöhen, da das Limit von %lu Byte bereits " +"erreicht ist." -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" +"Unmöglich, die Größe der MMap zu erhöhen, da das automatische Anwachsen der " +"MMap vom Benutzer deaktiviert ist." -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "OK " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Holen: " - -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Einbindungspunkt %s mit »stat« abfragen nicht möglich." -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Fehl " +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "CD-ROM mit »stat« abfragen fehlgeschlagen" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Es wurden %sB in %s geholt (%sB/s).\n" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Nicht erkannte Typabkürzung: »%c«" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid " [Working]" -msgstr " [Wird verarbeitet]" +msgid "Opening configuration file %s" +msgstr "Konfigurationsdatei %s wird geöffnet" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" -msgstr "" -"Medienwechsel: Bitte legen Sie das Medium mit dem Namen\n" -" »%s«\n" -"in Laufwerk »%s« ein und drücken Sie die Eingabetaste (Enter).\n" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntaxfehler %s:%u: Block beginnt ohne Namen." -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/configuration.cc:820 #, c-format -msgid "No mirror file '%s' found " -msgstr "Keine Datei von Spiegelserver »%s« gefunden" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntaxfehler %s:%u: Missgestaltete Markierung" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: apt-pkg/contrib/configuration.cc:837 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Datei »%s« von Spiegelserver kann nicht gelesen werden." - -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Datei »%s« von Spiegelserver kann nicht gelesen werden." +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntaxfehler %s:%u: Zusätzlicher Unsinn nach Wert" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:877 #, c-format -msgid "[Mirror: %s]" -msgstr "[Spiegelserver: %s]" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -"Interprozesskommunikation mit Unterprozess konnte nicht aufgebaut werden." - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Verbindung vorzeitig beendet" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Fehlerhafte Voreinstellung!" +"Syntaxfehler %s:%u: Direktiven können nur auf oberster Ebene benutzt werden" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Zum Fortfahren die Eingabetaste (Enter) drücken." +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntaxfehler %s:%u: Zu viele verschachtelte Einbindungen (includes)" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Möchten Sie alle bisher heruntergeladenen .deb-Dateien löschen?" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntaxfehler %s:%u: Eingefügt von hier" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Einige Fehler traten während des Entpackens auf. Installierte Pakete" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntaxfehler %s:%u: Nicht unterstützte Direktive »%s«" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"werden konfiguriert. Dies kann zu doppelten Fehlermeldungen oder Fehlern " -"durch" +"Syntaxfehler %s:%u: Löschdirektiven benötigen einen Optionsbaum als Argument" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "fehlende Abhängigkeiten führen. Das ist in Ordnung, nur die Fehler" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Syntaxfehler %s:%u: Zusätzlicher Unsinn am Dateiende" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "" -"oberhalb dieser Meldung sind wichtig. Bitte beseitigen Sie sie und " -"[I]nstallieren Sie erneut." +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "Kein Schlüsselring in %s installiert" -#: dselect/update:30 -msgid "Merging available information" -msgstr "Verfügbare Informationen werden zusammengeführt." +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Befehlszeilenoption »%c« [aus %s] ist nicht bekannt." -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "»DropNode« auf noch verknüpften Knoten aufgerufen" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Befehlszeilenoption %s konnte nicht ausgewertet werden." -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Hash-Element konnte nicht gefunden werden!" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Befehlszeilenoption %s ist nicht Bool'sch." -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Umleitung konnte nicht reserviert werden." +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Option %s erfordert ein Argument." -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Interner Fehler in »AddDiversion«" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Option %s: Konfigurationswertspezifikation benötigt ein »=<Wert>«." -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Es wird versucht, eine Umleitung zu überschreiben: %s -> %s und %s/%s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Option %s erfordert ein Ganzzahl-Argument, nicht »%s«." -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Doppelte Hinzufügung der Umleitung %s -> %s" +msgid "Option '%s' is too long" +msgstr "Option »%s« ist zu lang." -#: apt-inst/filelist.cc:549 +# Check for boolean; -1 is unspecified, 0 is yes 1 is no +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Doppelte Konfigurationsdatei %s/%s" +msgid "Sense %s is not understood, try true or false." +msgstr "Der Sinn von »%s« ist nicht klar, versuchen Sie »true« oder »false«." -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The path %s is too long" -msgstr "Der Pfad %s ist zu lang." +msgid "Invalid operation %s" +msgstr "Ungültige Operation %s" -#: apt-inst/extract.cc:132 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unpacking %s more than once" -msgstr "%s mehr als einmal entpackt" +msgid "Installing %s" +msgstr "%s wird installiert." -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The directory %s is diverted" -msgstr "Das Verzeichnis %s ist umgeleitet." +msgid "Configuring %s" +msgstr "%s wird konfiguriert." -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Schreibversuch vom Paket auf das Umleitungsziel %s/%s" +msgid "Removing %s" +msgstr "%s wird entfernt." -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Der Umleitungspfad ist zu lang." +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "%s wird vollständig entfernt." -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to stat %s" -msgstr "%s mit »stat« abfragen fehlgeschlagen" +msgid "Noting disappearance of %s" +msgstr "Verschwinden von %s festgestellt" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Failed to rename %s to %s" -msgstr "%s konnte nicht in %s umbenannt werden." +msgid "Running post-installation trigger %s" +msgstr "Aufruf des Nach-Installations-Triggers %s" -#: apt-inst/extract.cc:249 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Das Verzeichnis %s wird durch ein Nicht-Verzeichnis ersetzt." +msgid "Directory '%s' missing" +msgstr "Verzeichnis »%s« fehlt" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Knoten konnte nicht in seinem Hash gefunden werden." +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Datei »%s« konnte nicht geöffnet werden." -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Der Pfad ist zu lang." +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "%s wird vorbereitet." -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Pakettreffer ohne Version für %s wird überschrieben." +msgid "Unpacking %s" +msgstr "%s wird entpackt." -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Durch die Datei %s/%s wird die Datei in Paket %s überschrieben." +msgid "Preparing to configure %s" +msgstr "Konfiguration von %s wird vorbereitet." -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Unable to stat %s" -msgstr "%s mit »stat« abfragen nicht möglich" +msgid "Installed %s" +msgstr "%s installiert" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to write file %s" -msgstr "Datei %s konnte nicht geschrieben werden." +msgid "Preparing for removal of %s" +msgstr "Entfernen von %s wird vorbereitet." -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Failed to close file %s" -msgstr "Datei %s konnte nicht geschlossen werden." +msgid "Removed %s" +msgstr "%s entfernt" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Dies ist kein gültiges DEB-Archiv, da es »%s« nicht enthält." +msgid "Preparing to completely remove %s" +msgstr "Vollständiges Entfernen von %s wird vorbereitet." -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Interner Fehler, Bestandteil %s konnte nicht gefunden werden" +msgid "Completely removed %s" +msgstr "%s vollständig entfernt" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Auswerten der »control«-Datei nicht möglich" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Ungültige Archiv-Signatur" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Schreiben nach %s nicht möglich" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Fehler beim Lesen der Archivdatei-Kopfzeilen" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Ungültige Archivbestandteil-Kopfzeile %s" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Ungültige Archivdatei-Kopfzeilen" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "Operation wurde unterbrochen, bevor sie beendet werden konnte." -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Archiv ist zu kurz." +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" +"Es wurde kein Apport-Bericht verfasst, da das Limit MaxReports bereits " +"erreicht ist." -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Archiv-Kopfzeilen konnten nicht gelesen werden." +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "Abhängigkeitsprobleme - verbleibt unkonfiguriert" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Pipes (Weiterleitungen) konnten nicht erzeugt werden." +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung darauf " +"hindeutet, dass dies lediglich ein Folgefehler eines vorherigen Problems ist." -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "gzip konnte nicht ausgeführt werden." +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Fehler " +"wegen voller Festplatte hindeutet." -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Beschädigtes Archiv" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Fehler " +"wegen erschöpftem Arbeitsspeicher hindeutet." -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar-Prüfsumme fehlgeschlagen, Archiv beschädigt" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Fehler " +"wegen voller Festplatte hindeutet." -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Ein-/" +"Ausgabe-Fehler von Dpkg hindeutet." + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Unbekannter Tar-Kopfzeilen-Typ %u, Bestandteil %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Sperren des Administrationsverzeichnisses (%s) nicht möglich, wird es von " +"einem anderen Prozess verwendet?" + +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "" +"Sperren des Administrationsverzeichnisses (%s) nicht möglich, sind Sie root?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"Der dpkg-Prozess wurde unterbrochen; Sie müssen manuell »%s« ausführen, um " +"das Problem zu beheben." + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Nicht gesperrt" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/dz.po b/po/dz.po index c2d0f393a..a963ebf72 100644 --- a/po/dz.po +++ b/po/dz.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po.pot\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2006-09-19 09:49+0530\n" "Last-Translator: Kinley Tshering <gasepkuenden2k3@hotmail.com>\n" "Language-Team: Dzongkha <pgeyleg@dit.gov.bt>\n" @@ -19,3158 +19,3159 @@ msgstr "" "X-Poedit-Country: Bhutan\n" "X-Poedit-SourceCharset: utf-8\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "ཟུར་ཐོ་ཡིག་སྣོད་ཀྱི་དབྱེ་བ་ '%s' འདི་རྒྱབ་སྐྱོར་མ་འབད་བས།" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "%s་འདི་ལུ་ལྷག་མ་ཚུགས།" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "%s་ལུ་བསྒྱུར་བཅོས་འབད་མ་ཚུགས།" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "%s་ ངོ་བཤུས་འབད་མ་ཚུགས།" - -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Progress: [%3i%%]" -msgstr "" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "ཐུམ་སྒྲིལ་ %s ཐོན་རིམ་ %s ལུ་ ཌེཔ་མ་ཚང་ཅིག་འདུག:\n" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "ཐུམ་སྒྲིལ་བསྡོམས་ཀྱི་མིང་ཚུ:" -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "སྦུང་ཚན་བཟོ་ནིའི་རིམ་ལུགས་ '%s' འདི་ལུ་རྒྱབ་སྐྱོར་མ་འབད་བས།" +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "ཐུམ་སྒྲིལ་བསྡོམས་ཀྱི་མིང་ཚུ:" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "འོས་འབབ་དང་ལྡན་པའི་སྦུང་ཚན་རིམ་ལུགས་ཀྱི་དབྱེ་བ་ཅིག་གཏན་འབེབས་བཟོ་མི་ཚུགས་པས།" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr "སྤྱིར་བཏང་ཐུམ་སྒྲིལ་ཚུ།" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "%i་དྲན་མཐོ་དེ་ཚུ་བྲིས་ཡོད།\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr "བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་གཙང་མ་ཚུ:" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "%i བྱིག་འགྱོ་ཡོད་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་ཁར་ %i དྲན་ཐོ་འདི་ཚུ་བྲིས་ཡོད།\n" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr "བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་རྐྱང་པ་ཚུ:" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "%i་མཐུན་སྒྲིག་མེདཔ་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་ཁར་ %i་དྲན་ཐོ་ཚུ་བྲིས་བཞག་ཡོདཔ་ཨིན།\n" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr "བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་སླ་བསྲེ་ཡོད་མི་ཚུ:" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"%i བྱིག་འགྱོ་ཡོད་པའི་ཡིག་སྣོད་ཚུ་དང་ %iམཐུན་སྒྲིག་མེད་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་ཁར་ %i དྲན་ཐོ་འདི་ཚུ་བྲིས་" -"ཡོདཔ་ཨིན།\n" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr "བརླག་སྟོར་ཞུགས་པ:" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "ཁྱད་རྟགས་ཅན་གྱི་ཐོན་རིམ་ཚུ་གི་བསྡོམས:" -#: apt-pkg/indexcopy.cc:521 -#, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "ཨེམ་ཌི་༥་ ཁྱོན་བསྡོམས་མ་མཐུན་པ།" +#: cmdline/apt-cache.cc:327 +#, fuzzy +msgid "Total distinct descriptions: " +msgstr "ཁྱད་རྟགས་ཅན་གྱི་ཐོན་རིམ་ཚུ་གི་བསྡོམས:" -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "ཐབས་ལམ་འདྲེན་བྱེད་%s་འདི་མ་འཐོབ།" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "རྟེན་འབྲེལ་བསྡོམས:" -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "'dpkg-dev'་ཐུམ་སྒྲིལ་དེ་གཞི་བཙུགས་འབད་ཡོད་པ་ཅིན་ཨེབ་གཏང་འབད།\n" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "ཐེན་རིམ་/ཡིག་སྣོད་ མཐུན་འབྲེལ་གྱི་བསྡོམས:" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "ཐབས་ལམ་ %s འདི་ངེས་བདེན་སྦེ་འགོ་མ་བཙུགས་འབད།" +#: cmdline/apt-cache.cc:334 +#, fuzzy +msgid "Total Desc/File relations: " +msgstr "ཐེན་རིམ་/ཡིག་སྣོད་ མཐུན་འབྲེལ་གྱི་བསྡོམས:" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "ཁ་ཡིག་བཀོད་ཡོད་པའི་ ཌིསི་འདི་བཙུགས་གནང་། '%s'འདྲེན་འཕྲུལ་ནང་'%s' དང་ལོག་ལྡེ་འདི་ཨེབ།་" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "ཡོངས་བསྡོམས་ཀྱིས་ས་ཁྲ་བཟོ་བ་ཚུ་བྱིནམ་ཨིན:" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "ཐུམ་སྒྲིལ་གྱི་ཐོ་ཡིག་ཡང་ན་གནས་ཚད་ཡིག་སྣོད་ཚུ་ མིང་དཔྱད་ཡང་ན་ཁ་ཕྱེ་མ་ཚུགས།" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "སྤུངས་ཡོད་པའི་ཡིག་རྒྱུན་གྱི་བསྡོམས:" -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "འ་ནི་དཀའ་ངལ་འདི་ཚུ་སེལ་ནིའི་ལུ་ ཁྱོད་ཀྱི་ apt-get update་དེ་གཡོག་བཀོལ་དགོཔ་འོང་།" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "རྟེན་འབྲེལ་ཐོན་རིམ་བར་སྟོང་གྱི་བསྡོམས:" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "འབྱུང་ཁུངས་ཚུ་ཀྱི་ཐོ་ཡིག་དེ་ལྷག་མི་ཚུགས་པས།" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "བར་སྟོང་ལྷུག་ལྷུག་གི་བསྡོམས:" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "ཐུམ་སྒྲིལ་འདྲ་མཛོད་སྟོངམ།" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "གི་དོན་ལུ་རྩིས་ཐོ་བཏོན་ཡོད་པའི་བར་སྟོང:" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "ཐུམ་སྒྲིལ་འདྲ་མཛོད་ཡིག་སྣོད་འདི་ངན་ཅན་ཨིན་པས།" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "ཐུམ་སྒྲིལ་ཡིག་སྣོད་ %sའདི་མཉམ་འབྱུང་གི་ཕྱི་ཁར་ཨིན་པས།" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "ཐུམ་སྒྲིས་འདྲ་མཛོད་ཡིག་སྣོད་འདི་ མི་མཐུན་པའི་འཐོན་རིམ་ཅིག་ཨིན་པས།" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "ཐུམ་སྒྲིལ་ཚུ་མ་ཐོབ།" -#: apt-pkg/pkgcache.cc:169 +#: cmdline/apt-cache.cc:1254 #, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "ཐུམ་སྒྲིལ་འདྲ་མཛོད་ཡིག་སྣོད་འདི་ངན་ཅན་ཨིན་པས།" - -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "འ་ནི་ཨེ་པི་ཊི་ འདི་གིས་ '%s'འཐོན་རིམ་བཟོ་ནིའི་རིམ་ལུགས་དེ་ལུ་རྒྱབ་སྐྱོར་མི་འབད་བས།" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "ཐུམ་སྒྲིལ་འདྲ་མཛོད་འདི་བཟོ་བཀོད་སོ་སོ་ཅིག་གི་དོན་ལུ་བཟོ་བརྩིགས་འབད་འབདཝ་ཨིནཔས།" +msgid "You must give at least one search pattern" +msgstr "ཁྱོད་ཀྱིས་ཏག་ཏག་སྦེ་དཔེ་གཞི་གཅིག་བྱིན་དགོ" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "རྟེནམ་ཨིན།" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "སྔོན་གོང་མ་རྟེནམ་ཨིན།" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "%sཐུམ་སྒྲིལ་འདི་ག་ཡོད་ཟཚོལ་མ་ཐོབ།" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "བསམ་འཆར་བཀོདཔ་ཨིན།" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "ཐུམ་སྒྲིལ་གྱི་ཡིག་སྣོད:" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "འོས་སྦྱོར་འབདཝ་ཨིན།" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" +"འདྲ་མཛོད་འདི་མཉམ་བྱུང་གི་ཕྱི་ཁར་ཨིན་པས་ ཐུམ་སྒྲིལ་ཡིག་སྣོད་ཅིག་ལུ་ ཨེགསི་-རེཕ་འབད་མི་ཚུགས་པས།" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "མི་མཐུནམ་ཨིན།" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "ཁབ་གཟེར་བཏབ་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "ཚབ་བཙུགསཔ་ཨིན།" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(མ་ཐོབ།)" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "ཕན་མེདཔ་བཟོཝ་ཨིན།" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr "གཞི་བཙུགས་འབད་ཡོདཔ།" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr "མི་ངོ:" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(ཅི་མེད།)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "གལ་ཅན།" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr "ཐུམ་སྒྲིལ་གྱི་ཁབ་གཟེར:" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "དགོས་མཁོ་ཡོདཔ།" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr "ཐོན་རིམ་ཐིག་ཁྲམ།:" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "ཚད་ལྡན།" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, fuzzy, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s་གི་དོན་ལུ་%s %sགུར་ཕྱོགས་སྒྲིག་འབད་ཡོད་པའི་%s %s\n" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "གདམ་ཁ་ཅན།" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"ལག་ལེན།: apt-cache [options] command\n" +" apt-cache [options] add file1 [file2 ...]\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +" apt-cacheའདི་གནས་རིམ་དམའ་དྲག་གི་ལག་ཆས་ APT's binary\n" +"་ འདྲ་མཛོད་ཡིག་སྣོད་གཡོག་བཀོལ་དོན་ལུ་ལག་ལེན་འཐབ་ནི་དང་་དེ་ཚུ་ནང་ལས་བརྡ་དོན་འདྲི་དཔྱད་འབད་ནིའི་དོན་" +"ལུ་ཨིན།\n" +"cache files, and query information from them\n" +"\n" +"བརྡ་བཀོད:\n" +" add -འདི་གིས་ཐུམ་སྒྲིལ་ཡིག་སྣོད་ཅིག་འབྱུང་ཁུངས་འདྲ་མཛོད་ལུ་ཁ་སྐོང་རྐྱབས་ཨིན།\n" +" gencaches -འདི་གིས་ཐུམ་སྒྲིལ་དང་འབྱུང་ཁུངས་འདྲ་མཛོད་གཉིས་ཆ་རང་བཟོ་བརྩིགས་འབདཝ་ཨིན།\n" +" showpkg -འད་གིས་་ཐུམ་སྒྲིལ་རྐྱང་པ་ཅིག་གི་དོན་ལུ་སྤྱིར་བཏང་བརྡ་དོན་དུམ་གྲ་ཅིག་སྟོནམ་ཨིན།\n" +" showsrc - འདི་གིས་འབྱུང་ཁུངས་ཀྱི་དྲན་ཐོ་ཚུ་སྟོནམ་ཨིན།\n" +" stats -འདི་གིས་ གཞི་རིམ་ཚད་རྩིས་དུམ་གྲ་རེ་སྟོནམ་ཨིན།\n" +" dump -འདི་གི་ཡིག་སྣོད་ཧྲིལ་བུ་མདོར་བསྡུས་རྣམཔ་་ཅིག་ནང་སྟོནམ་ཨིན།\n" +" dumpavail -འདི་གིས་ཨེསི་ཊི་ཌི་ཕྱི་ཁར་ལུ་ འཐོབ་ཚུགས་པའི་ཡིག་སྣོད་ཚུ་དཔར་བསྐྲུན་འབདཝ་ཨིན།\n" +" unmet - འདི་གིས་མ་ཚང་བའི་ རྟེན་འབྲེལ་ཚུ་སྟོནམ་ཨིན།\n" +" search -འདི་གིས་ རི་ཇེགསི་དཔེ་གཞི་ཅིག་གི་དོན་ལུ་ ཐུམ་སྒྲིལ་ཐོ་ཡིག་དེ་འཚོལ་ཞིབ་འབདཝ་ཨིན།\n" +" show - འདི་གིས་ཐུམ་སྒྲིལ་གི་དོན་ལུ་ ལྷག་བཏུབ་པའི་དྲན་ཐོ་ཅིག་སྟོནམ་ཨིན།\n" +" depends - འདི་གིས་ཐུམ་སྒྲིལ་གི་དོན་ལུ་ རགས་པ་རྟེན་འབྲེལ་གྱི་བརྡ་དོན་ཅིག་ སྟོནམ་ཨིན།\n" +" rdepends - འདི་གིས་ ཐུམ་སྒྲིལ་ཅིག་གི་དོན་ལུ་ རིམ་ལོག་རྟེན་འབྲེལ་གྱི་བརྡ་དོན་དེ་སྟོནམ་ཨིན།\n" +" pkgnames - འདི་གིས་ཐུམ་སྒྲིལ་ཚུ་ཆ་མཉམ་གི་མིང་ཚུ་ཐོ་བཀོད་འབདཝ་ཨིན།\n" +" dotty - འདི་གིས་ཚད་ཁྲམ་ཝིསི་གི་དོན་ལུ་ ཐུམ་སྒྲིལ་ཚད་ཁྲམ་ཚུ་ བཟོ་བཏོན་འབདཝ་ཨིན།\n" +" xvcg - འདི་གིས་ ཨེགསི་ཝི་སི་ཇི་ གི་དོན་ལུ་ ཐུམ་སྒྲིལ་ཚད་ཁྲམ་ཚུ་བཟོ་བཏོད་འབདཝ་ཨིན།\n" +" policy - འདི་གིས་ སྲིད་བྱུས་སྒྲིག་སྟངས་ཚུ་སྟོནམ་ཨིན།\n" +"\n" +"གདམ་ཁ་ཚུ་:\n" +" -h འདི་གིས་ཚིག་ཡིག་ལུ་ཆ་རོགས་འབདཝ་ཨིན།.\n" +" -p=? འདི་འབྱུང་ཁུངས་འའདྲ་མཛོད་ཨིན།.\n" +" -s=? འདི་འབྱུང་ཁུངས་འདྲ་མཛོད་ཨིན།.\n" +" -q འདི་གིས་ ཡར་འཕེལ་བརྡ་སྟོན་པ་འདི་ལྕོགས་མིན་བཟོཝ་ཨིན།.\n" +" -i འདི་གིས་ མ་ཚང་པའི་བརྡ་བཀོད་ཚུ་གི་དོན་ལུ་ གལ་ཅན་གྱི་ཌེཔསི་རྐྱངམ་ཅིག་སྟོན།.\n" +" -c=? འདི་གིས་ འ་ནི་རིམ་སྒྲིག་ཡིག་སྣོད་འདི་ལྷགཔ་ཨིན།.\n" +" -o=? འདི་གིས་ མཐུན་སྒྲིག་རིམ་སྒྲིག་གི་གདམ་ཁ་འདི་གཞི་སྒྲིག་འབདཝ་ཨིན་ དཔེར་ན་ eg -o dir::" +"cache=/tmp\n" +" ཧེང་བཀལ་བརྡ་དོན་གི་དོན་ལུ་ ཨེ་apt-cache(8)དང་apt.conf(5)ལག་ཐོག་ཤོག་ལེབ་ཚུ་བལྟ།.\n" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "ཐེབས།" +#: cmdline/apt-cdrom.cc:76 +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "ཌིསིཀ་འདི་གི་དོན་ལུ་མིང་ཅིག་བླིན་གནང་ དཔེར་ན་ 'Debian 2.1r1 Disk 1'བཟུམ།" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "ཟུར་ཐོ་ཡིག་སྣོད་ཀྱི་དབྱེ་བ་ '%s' འདི་རྒྱབ་སྐྱོར་མ་འབད་བས།" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "ཌིསིཀ་ཅིག་འདྲེན་འཕྲུལ་ནང་བཙུགས་བཞིནམ་ལས་ལོག་ལྡེ་འདི་ཨེབ།" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" -msgstr "རི་ཇེགསི་ཕྱོགས་སྒྲིག་འཛོལ་བ་- %s" +#: cmdline/apt-cdrom.cc:139 +#, fuzzy, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "%s་ལུ་%s་བསྐྱར་མིང་བཏགས་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "འདྲ་མཛོད་ལུ་མཐུན་འགྱུར་མེན་པའི་འཐོན་རིམ་བཟོ་ནིའི་རིམ་ལུགས་ཅིག་འདུག" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "%s (པི་ཀེ་ཇི་འཚོལ་ནི)དེ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "ཁྱོད་ཀྱི་ཆ་ཚན་ནང་གི་སི་ཌི་ལྷག་ལུས་ཡོད་མི་གི་དོན་ལུ་འ་ནི་ལས་སྦྱོར་དེ་ཡང་བསྐྱར་འབད།" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་ཐུམ་སྒྲིལ་ཨང་གྲངས་ལས་ལྷག་ནུག" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "སྒྲུབས་རྟགས་ཚུ་ཟུང་ནང་མིན་འདུག" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་ཐོན་རིམ་ཨང་གྲངས་ལས་ལྷག་ནུག" +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"ལག་ལེན:apt-config [གདམ་ཁ་ཚུ་] བརྡ་བཀོད།\n" +"\n" +"apt-config་འདི་APT config་ཡིག་སྣོད་ལྷག་ནིའི་དོན་ལུ་འཇམ་སམ་ལག་ཆས་ཅིག་ཨིན།\n" +"\n" +"བརྡ་བཀོད་ཚུ:\n" +" shell - ཤལ་གྱི་ཐབས་ལམ།\n" +" dump - འདི་གིས་རིམ་སྒྲིག་གི་ཐབས་ལམ་འདི་སྟོནམ་ཨིན།\n" +"\n" +"གདམ་ཁ་ཚུ:\n" +" -h འདི་གིས་ཚིག་ཡིག་ལུ་གྲོགས་རམ་འབདཝ་ཨིན།\n" +" -c=? འདི་གིས་འ་ནི་རིམ་སྒྲིག་ཡིག་སྣོད་འདི་ལྷགཔ་ཨིན།\n" +" -o=? མཐུན་སྒྲིག་གི་རིམ་སྒྲིག་འདི་གཞི་སྒྲིག་འབདཝ་ཨིན་ དཔེར་ན་-o dir::cache=/tmp་བཟུམ།\n" -#: apt-pkg/pkgcachegen.cc:263 -#, fuzzy -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་ཐོན་རིམ་ཨང་གྲངས་ལས་ལྷག་ནུག" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་བརྟེན་པའི་ཨང་གྲངས་ལས་ལྷག་ནུག" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "ཡིག་སྣོད་རྟེན་འབྲེལ་འདི་ཚུ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་ཐུམ་སྒྲིལ་ %s %s ་འདི་མ་ཐོབ་པས།" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" +#: cmdline/apt-get.cc:367 +#, fuzzy, c-format +msgid "Picking '%s' as source package instead of '%s'\n" msgstr "འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་གྱི་ཐོ་ཡིག་%s་དེ་ངོ་བཤུས་འབད་མ་ཚུགས།" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "ཐུམ་སྒྲིལ་ཐོ་ཡིག་ཚུ་ལྷག་དོ།" - -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "ཡིག་སྣོད་བྱིན་མི་ཚུ་བསྡུ་ལེན་འབད་དོ།" +#: cmdline/apt-get.cc:423 +#, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Unable to write to %s" -msgstr " %sལུ་འབྲི་མ་ཚུགས།" +msgid "Couldn't find package %s" +msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "IO འཛོལ་བ་འབྱུང་ཁུངས་འདྲ་མཛོད་སྲུང་བཞག་འབད་དོ།" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, fuzzy, c-format +msgid "%s set to manually installed.\n" +msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "ནང་འཁོད་འཛོལ་བ་ དཀའ་ངལ་མོས་མཐུན་འབད་མི་ཅ་ཆས་ཚུ་མེདཔ་ཐལ་ཡོད།" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "ཕབ་ལེན་འབད་ནིའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རྐྱབས་མ་ཚུགས་པས།" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "གི་དོན་ལུ་འབྱུང་ཁུངས་ལེན་ནི་ལུ་ཉུང་མཐའ་རང་ཐུམ་སྒྲིལ་གཅིག་ལེན་དགོ" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "%s (%s -> %s)བསྐྱར་མིང་བཏགས་ནི་འདི་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན།" - -#: apt-pkg/acquire-item.cc:163 -#, fuzzy -msgid "Hash Sum mismatch" -msgstr "ཨེམ་ཌི་༥་ ཁྱོན་བསྡོམས་མ་མཐུན་པ།" +msgid "Unable to find a source package for %s" +msgstr "%s་གི་དོན་ལུ་འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་ཅིག་འཚོལ་མ་འཐོབ" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "ཚད་མ་མཐུན།" - -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "ནུས་མེད་བཀོལ་སྤྱོད་%s" - -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:786 #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1589 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "འོག་གི་ ཨའི་ཌི་་ ལྡེ་མིག་ཚུ་གི་དོན་ལུ་མི་དམང་གི་ལྡེ་མིག་འདི་འཐོབ་མི་ཚུགས་པས:\n" - -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:791 #, c-format msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" - -#: apt-pkg/acquire-item.cc:1691 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:843 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +msgid "Skipping already downloaded file '%s'\n" +msgstr "གོམ་འགྱོ་གིས་ཧེ་མ་ལས་རང་'%s'་ཡིག་སྣོད་དེ་ཕབ་ལེན་འབད་ནུག\n" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "GPG error: %s: %s" -msgstr "" +msgid "Couldn't determine free space in %s" +msgstr "%s་ནང་བར་སྟོང་" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:882 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -" %s་ཐུམ་སྒྲིལ་གི་དོན་ལུ་ང་་གི་ཡིག་སྣོད་ཅིག་ག་ཡོད་འཚོལ་མི་འཐོབ་པས། འདི་འབདཝ་ལས་ཁྱོད་ཀྱི་ལག་ཐོག་ལས་ " -"འ་ནི་ཐུམ་སྒྲིལ་འདི་གི་དཀའ་ངལ་སེལ་དགོཔ་འདུག (arch འདི་བྱིག་སོངམ་ལས་བརྟེན།)" +msgid "You don't have enough free space in %s" +msgstr " %s་ནང་ཁྱོད་ལུ་བར་སྟོང་ཚུ་ལངམ་སྦེ་མིན་འདུག་" -#: apt-pkg/acquire-item.cc:1925 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "%sB་ལེན་དགོཔ་འདུག་ འབྱུང་ཁུངས་ཡིག་མཛོད་ཀྱི་%sB།\n" -#: apt-pkg/acquire-item.cc:1983 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"ཐུམ་སྒྲིལ་ ཟུར་ཐོ་ཡིག་སྣོད་ཚུ་ངན་ཅན་འགྱོ་ནུག ཡིག་སྣོད་ཀྱི་མིང་མིན་འདུག: %s་ཐུམ་སྒྲིལ་གྱི་དོན་ལུ་ས་སྒོ།" +msgid "Need to get %sB of source archives.\n" +msgstr "འབྱུང་ཁུངས་ཡིག་མཛོད་ཚུ་ཀྱི་%sB་ལེན་དགོ་པསས།\n" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "%sསིལ་ཚོང་པ་སྡེབ་ཚན་གྱི་ནང་ན་མཛུབ་རྗེས་མིན་འདུག" +msgid "Fetch source %s\n" +msgstr "%s་འབྱུང་ཁུངས་ལེན།\n" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "ཐོ་བཀོད་འབད་མི་སྣོད་ཐོ་%s་ཆ་ཤས་འདི་བརླག་སྟོར་ཟུགས་ཏེ་འདུག" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "ཡིག་མཛོད་ལ་ལུ་ཅིག་ལེན་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-pkg/acquire.cc:91 -#, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "ཡིག་མཛོད་སྣོད་ཐོ་ %s་ ཆ་ཤས་འདི་བརླག་སྟོར་ཞུགས་ཏེ་འདུག" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "ཕབ་ལེན་ཐབས་ལམ་རྐྱངམ་གཅིག་ནང་མཇུག་བསྡུཝ་སྦེ་རང་ཕབ་ལེན་འབད།" -#: apt-pkg/acquire.cc:99 -#, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "ཐོ་བཀོད་འབད་ཡོད་པའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རྐྱབ་མ་ཚུགས།" +#: cmdline/apt-get.cc:950 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "%s་ནང་ཧེ་མ་ལས་སྦུང་ཚན་བཟོ་བཤོལ་ཨིན་མའི་སྦུང་ཚན་བཟོ་བཤོལ་གོམ་འགྱོ་འབད་དོ།\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "%li་ གི་བརླག་སྟོར་ཞུགས་པའི་ཡིག་སྣོད་%li (%s ལྷག་ལུས་དོ།)" +msgid "Unpack command '%s' failed.\n" +msgstr "'%s'སྦུང་ཚན་བཟོ་བཤོལ་འཐུས་ཤོར་བྱུང་ཡོད།\n" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Retrieving file %li of %li" -msgstr " %li་གི་བརླག་སྟོར་ཟུགསཔའི་ཡིག་སྣོད་ %li" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "'dpkg-dev'་ཐུམ་སྒྲིལ་དེ་གཞི་བཙུགས་འབད་ཡོད་པ་ཅིན་ཨེབ་གཏང་འབད།\n" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "%s %s་ ལེན་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།\n" +msgid "Build command '%s' failed.\n" +msgstr "'%s'་བཟོ་བརྩིགས་བརྡ་བཀོད་འཐུས་ཤོར་བྱུང་ཡོད།\n" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"ཟུར་ཐོ་ཡིག་སྣོད་ལ་ལུ་ཅིག་ཕབ་ལེན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ནུག་ འདི་ཚུ་སྣང་མེད་སྦེ་བཞགཔ་མ་ཚད་ ཚབ་ལུ་" -"རྙིངམ་འདི་ཚུ་ལག་ལེན་འཐབ་ནུག" +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "ཆ་ལག་ལས་སྦྱོར་དེ་འཐུས་ཤོར་བྱུང་ནུག" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "" -"ཁྱོད་རའི་sources.listགི་ཐོ་ཡིག་ནང་ལུ་ཁྱོད་ཀྱི་ 'འབྱུང་ཁུངས་' ཡུ་ཨར་ཨའི་ཚུ་་ལ་ལུ་ཅིག་བཙུགས་དགོ" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "builddeps ཞིབ་དཔྱད་འབད་ནིའི་དོན་ལུ་ཉུང་མཐའ་རང་ཐུམ་སྒྲིལ་གཅིག་གསལ་བཀོད་འབད་དགོ" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "དགའ་གདམ་ཡིག་སྣོད་ནང་ལུ་ནུས་མེད་ཀྱི་དྲན་ཐོ་ ཐུམ་སྒྲིལ་མགོ་ཡིག་མིན་འདུག" +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "%s་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་བརྡ་དོན་དེ་ལེན་མ་ཚུགས།" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Did not understand pin type %s" -msgstr "ངོ་རྟགས་ཨང་གི་དབྱེ་བ་ %s འདི་ཧ་གོ་མ་ཚུགས།" +msgid "%s has no build depends.\n" +msgstr "%s ལུ་བཟོ་བརྩིགས་རྟེན་འབྲེལ་མིན་འདུག\n" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "གོ་རྟགས་ཨང་གི་དོན་ལུ་ གཙོ་རིམ་(ཡང་ན་ ཀླད་ཀོར་)ཚུ་གསལ་བཀོད་མ་འབད་བས།" +#: cmdline/apt-get.cc:1272 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "%sཐུམ་སྒྲིལ་འདི་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་ %sགི་དོན་ལུ་%s རྟེན་འབྲེལ་དེ་ངལ་རང་མ་ཚུགས་པས།" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "%sཐུམ་སྒྲིལ་འདི་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་ %sགི་དོན་ལུ་%s རྟེན་འབྲེལ་དེ་ངལ་རང་མ་ཚུགས་པས།" + +#: cmdline/apt-get.cc:1313 +#, c-format +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" +"%s:གི་དོན་ལུ་%s་རྟེན་འབྲེལ་དེ་གི་རེ་བ་སྐོང་ནི་འདི་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན་ གཞི་བཙུགས་འབད་ཡོད་པའི་ཐུམ་" +"སྒྲིལ་%s་དེ་གནམ་མེད་ས་མེད་གསརཔ་ཨིན་པས།" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:1352 #, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" - -#: apt-pkg/packagemanager.cc:583 -#, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" -"མི་མཐུན་/སྔོན་རྟེན་འཕྲལ་བཀོལ་ལས་བརྟེན་ འ་ནི་གཞི་བཙུགས་གཡོག་བཀོལ་འདི་ལུ་ མེད་དུ་མི་རུང་བའི་%sཐུམ་" -"སྒྲིལ་ གནས་སྐབས་ཀྱི་རྩ་བསྐྲད་གཏང་ནི་འདི་དགོས་མཁོ་ཡོདཔ་ཨིན། འདི་འཕྲལ་འཕྲལ་རང་བྱང་ཉེས་ཅིག་ཨིན་པས་ " -"འདི་འབདཝ་ད་ཁྱོད་ཀྱི་ཐད་རི་འབའ་རི་འབད་དགོཔ་ཨིན་པ་ཅིན་ APT::Force-LoopBreak གདམ་ཁ་འདི་ཤུགས་" -"ལྡན་བཟོ།" - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "གྲལ་ཐིག་%u་འདི་འབྱུང་ཁུངས་ཐོ་ཡིག་%s་ནང་ལུ་གནམ་མེད་ས་མེད་རིངམོ་འདུག" +"%s གི་དོན་ལུ་%s་རྟེན་འབྲེལ་འདི་གི་རེ་བ་སྐོང་མི་ཚུགས་ནུག་ག་ཅི་འབད་ཟེར་བ་ཅིན་ཐུམ་སྒརིལ་%s་གི་འཐོན་རིམ་" +"ཚུ་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་འཐོན་རིམ་དགོས་མཁོ་ཚུ་གི་རེ་བ་དོ་སྐོང་མ་ཚུགས་པས།" -#: apt-pkg/cdrom.cc:571 -#, fuzzy -msgid "Unmounting CD-ROM...\n" -msgstr "སི་ཌི་-རོམ་སྦྱར་བརྩེགས་མ་འབད་བར་བཞག་དོ..." +#: cmdline/apt-get.cc:1358 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "%sཐུམ་སྒྲིལ་འདི་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་ %sགི་དོན་ལུ་%s རྟེན་འབྲེལ་དེ་ངལ་རང་མ་ཚུགས་པས།" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr " %s སི་ཌི-རོམ་སྦྱར་བརྩེགས་ཀྱི་ས་ཚིགས་ལག་ལེན་འཐབ་དོ།\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "ཌིསིཀ་གི་དོན་ལུ་བསྒུག་དོ...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "སི་ཌི་-རོམ་སྦྱར་བརྩེགས་འབད་དོ...\n" - -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "ངོས་འཛིན་འབད་དོ..." +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "%s: %s་གི་དོན་ལུ་་%s་རྟེན་འབྲེལ་འདི་ངལ་རངས་འབད་ནི་འཐུས་ཤོར་བྱུང་ནུག" -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Stored label: %s\n" -msgstr "གསོག་འཇོག་འབད་ཡོད་པའི་ཁ་ཡིག:%s \n" - -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "ཟུར་ཐོ་ཡིག་སྣོད་ཚུ་གི་དོན་ལུ་ ཌིསིཀ་ཞིབ་ལྟ་འབད་དོ...\n" - -#: apt-pkg/cdrom.cc:734 -#, fuzzy, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "%i་ཐུམ་སྒྲིལ་གྱི་ཟུར་ཐོ་ཚུ་ཐོབ་ཅི་ %i་འབྱུང་ཁུངས་ཟུར་ཐོ་ཚུ་དང་ %iམིང་རྟགས་ཚུ།\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr " %s་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་འདི་ངལ་རངས་མ་ཚུགས་པས།" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "བཟོ་བརྩིགས་རྟེན་འབྲེལ་འདི་ལས་སྦྱོར་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན།" -#: apt-pkg/cdrom.cc:771 +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 #, fuzzy, c-format -msgid "Found label '%s'\n" -msgstr "གསོག་འཇོག་འབད་ཡོད་པའི་ཁ་ཡིག:%s \n" +msgid "Changelog for %s (%s)" +msgstr "%s (%s)་ལུ་མཐུད་དོ།" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "དེ་ནུས་ཅན་གྱི་མིང་ཅིག་མེན་པས་ ལོག་སྟེ་རང་འབད་རྩོལ་བསྐྱེད།\n" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "རྒྱབ་སྐྱོར་འབད་ཡོད་པའི་ཚད་གཞི་ཚུ:" -#: apt-pkg/cdrom.cc:817 -#, c-format +#: cmdline/apt-get.cc:1633 +#, fuzzy msgid "" -"This disc is called: \n" -"'%s'\n" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"ཌིསིཀ་འདི་བོད་བརྡ་འབད་དོ་ཡོདཔ་ཨིན།\n" -"'%s'\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "ཐུམ་སྒྲིལ་གྱིཐོ་ཡིག་ཚུ་འདྲ་བཤུས་རྐྱབ་དོ..." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "འབྱུང་ཁུངས་ཀྱི་ཐོ་ཡིག་གསརཔ་ཅིག་འབྲི་དོ།\n" +"ལག་ལེན་:apt-get [options] command\n" +"apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get འདི་ཐུམ་སྒྲིལ་ཚུ་ཕབ་ལེན་འབད་ནི་དང་\n" +"གཞི་བཙུགས་འབད་ནིའི་དོན་ལུ་ འཇམ་སམ་བརྡ་བཀོད་གྲལ་ཐིག་གི་ངོས་འདྲ་བ་ཅིག་ཨིན། མང་ཤོས་རང་་སྦེ་རང་" +"ལག་ལེན་འཐབ་ཡོད་པའི་བརྡ་བཀོད་ཚུ་\n" +" དུས་མཐུན་དང་གཞི་བཙུགས་འབད་ནི་དེ་ཨིན།\n" +"\n" +"བརྡ་བཀོད་ཚུ་:\n" +" update - འདི་གིས་ཐུམ་སྒྲིལ་ཚུ་གི་ཐོ་ཡིག་གསརཔ་ཚུ་སླར་འདྲེན་འབདཝ་ཨིན།\n" +" upgrade - འདི་གིས་ ཡར་བསྐྱེད་ཀྱི་ལཱ་འགན་ཅིག་འགྲུབ་ཨིན།\n" +" install - འདི་གིས་ ཐུམ་སྒྲིལ་(pkg is libc6 not libc6.deb)གསརཔ་་ཚུ་གཞི་བཙུགས་འབདཝ་" +"ཨིན།\n" +" remove -འདི་གིས་ ཐུམ་སྒྲིལ་ཚུ་རྩ་བསྐྲད་གཏངམ་ཨིན།\n" +" source - འདི་གིས་འབྱུང་ཁུངས་ཀྱི་ཡིག་མཛོད་ཚུ་ཕབ་ལེན་འབདཝ་ཨིན།\n" +" build-dep - འདི་གིས་འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་ཚུ་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་ཚུ་རིམ་སྒྲིག་འབདཝ་" +"ཨིན།\n" +" dist-upgrade - འདི་གིས་ བགོ་བཀྲམ་འདི་ཡར་བསྐྱེད་འབདཝ་ཨིན། apt-get(8)ལུ་བལྟ།\n" +" dselect-upgrade - འདི་གིས་ སེལ་འཐུ་བཤོལ་གྱི་ སེལ་འཐུ་ཚུ་འབདཝ་ཨིན།\n" +" clean - འདི་གིས་ ཕབ་ལེན་འབད་ཡོད་པའི་ཡིག་མཛོད་ཀྱི་ཡིག་སྣོད་ཚུ་ཀྲེག་གཏངམ་ཨིན།\n" +" autoclean -འདི་གིས་ ཕབ་ལེན་འབད་འབདཝ་རྙིངམ་གྱི་ཡིག་མཛོད་ཡིག་སྣོད་ཚུ་ཀྲེག་གཏངམ་ཨིན།\n" +" check - ཆད་པ་འགྱོ་འགྱོ་བའི་རྟེན་འབྲེལ་ཚུ་མེདཔ་སྦེ་བདེན་སྦྱོར་འབདཝ་ཨིན།\n" +"\n" +"གདམ་ཁ་ཚུ་:\n" +" -h འདི་གིས་ཚིག་ཡིག་ལུ་གྲོགས་རམ་འབདཝ་ཨིན།\n" +" -q དྲན་དེབ་འབད་བཏུབ་པའི་ཨའུཊི་པུཊི་ -ཡར་འཕེལ་གྱི་བརྡ་སྟོན་མིན་འདུག\n" +" -qq འཛོལ་བ་ཚུ་གི་དོན་ལུ་རྐྱངམ་ཅིག་མ་གཏོགས་ཨའུཊི་པུཊི་མིན་འདུག\n" +" -d ཕབ་ལེན་རྐྱངམ་ཅིག་ཨིན་- གཞི་བཙུགས་ཡང་ན་ཡིག་མཛོད་ཚུ་སྦུང་ཚན་བཟོ་བཤོལ་མ་འབད།\n" +" -s བྱ་བ་མིན་འདུག གོ་རིམ་མཚུངས་བཟོ་གི་ལས་འགན་འགྲུབ།\n" +" -y འདྲི་དཔྱད་གེ་རང་ལུ་ཨིནམ་སྦེ་ཚོད་དཔག་བཞིནམ་ལས་ནུས་སྤེལ་མ་འབད།\n" +" -f ཆིག་སྒྲིལ་ཞིབ་དཔྱད་འདི་འཐུས་ཤོར་བྱུང་པ་ཅིན་ འཕྲོ་མཐུད་འབད་ནི་ལུ་དཔའ་བཅམ།\n" +" -m ཡིག་མཛོད་འདི་ཚུ་ག་ཡོད་འཚོལ་མ་ཐོབ་པ་ཅིན་འཕྲོ་མཐུད་ནི་ལུ་དཔའ་བཅམ།\n" +" -u ཡར་བསྐྱེད་བཟོ་ཡོད་པའི་ཐུམ་སྒྲིལ་འདི་ཡང་་སྟོན།\n" +" -b འདི་ལེན་ཚར་བའི་ཤུལ་ལས འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་འདི་བཟོ་བརྩིགས་འབད།\n" +" -V བརྡ་དོན་ལེ་ཤཱ་གི་འཐོན་རིམ་ཨང་གྲངས་ཚུ་སྟོན།\n" +" -c=? འ་ནི་རིམ་སྒྲིག་གི་ཡིག་སྣོད་འདི་ལྷག\n" +" -o=? མཐུན་སྒྲིག་གདམ་ཁ་གི་རིམ་སྒྲིག་ཅིག་གཞི་བཙུགས་འབད་ དཔེན་ན་-o dir::cache=/tmp\n" +"བརྡ་དོན་དང་གདམ་ཁ་ཚུ་ཧེང་བཀལ་གི་དོན་ལུ་ apt-get(8)་ sources.list(5) དང་apt." +"conf(5)ལག་ཐོག་\n" +"ཤོག་ལེབ་ཚུ་ལུ་བལྟ།\n" +" འ་ནི་ ཨེ་ཊི་པི་འདི་ལུ་ཡང་དག་ ཀའུ་ ནུས་ཤུགས་ཚུ་ཡོད།\n" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "འ་ནི་ ཌིསིཀ་གི་དོན་ལུ་ འབྱུང་ཁུངས་ཧྲིལ་བུ་ཚུ་:\n" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "གི་དོན་ལུ་འབྱུང་ཁུངས་ལེན་ནི་ལུ་ཉུང་མཐའ་རང་ཐུམ་སྒྲིལ་གཅིག་ལེན་དགོ" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"ཐུམ་སྒྲིལ་%s་འདི་ལོག་འདི་རང་གཞི་བཙུགས་འབད་དགོཔ་འདུག་ འདི་འབདཝ་ད་འདི་གི་དོན་ལུ་ཡིག་མཛོད་ཅིག་འཚོལ་" -"མ་ཐོབ།" -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-helper.cc:66 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"འཛོལ་བ་ pkgProblemResolver::གིས་བཟོ་བཏོན་འབད་ཡོད་པའི་མཚམས་དེ་ཚུ་མོས་མཐུན་བཟོཝ་ཨིན འ་ནི་ཐུམ་" -"སྒྲིལ་ཚུ་འཛིན་པའི་རྒྱུ་རྐྱེན་ལས་བརྟེན་ཨིན་པས།" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "དཀའ་ངལ་འདི་ནོར་བཅོས་འབད་མ་ཚུགས་ ཁྱོད་ཀྱི་ཐུམ་སྒྲིལ་ཆད་པ་ཚུ་འཆང་འདི་འདུག" - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "རྟེན་འབྲེལ་གྱི་རྩ་འབྲེལ་བཟོ་བརྩིགས་འབད་དོ།" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "མི་ངོ་འཐོན་རིམཚུ།" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "བརྟེན་པའི་བཟོ་བཏོན།" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -#, fuzzy -msgid "Reading state information" -msgstr "འཐོབ་ཚུགས་པའི་བརྡ་དོན་མཉམ་བསྡོམས་འབད་དོ།" - -#: apt-pkg/depcache.cc:250 +#: cmdline/apt-mark.cc:68 #, fuzzy, c-format -msgid "Failed to open StateFile %s" -msgstr "%s་ག་ཕྱེ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" +msgid "%s can not be marked as it is not installed.\n" +msgstr "འདི་འབདཝ་ད་འདི་གཞི་བཙུགས་མ་འབད་བས།" -#: apt-pkg/depcache.cc:256 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "%s་ཡིག་སྣོད་འདི་འབྲི་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" - -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" - -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "%s (༢་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" - -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "%sགི་དོན་ལུ་འཛིན་གྲོལ་'%s'་དེ་མ་འཐོབ་པས།" - -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "'%s'་གི་དོན་ལུ་འཐོན་རིམ་'%s'་དེ་མ་འཐོབ་པས།" - -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "%sཐུམ་སྒྲིལ་འདི་ག་ཡོད་ཟཚོལ་མ་ཐོབ།" +msgid "%s was already set to manually installed.\n" +msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" -#: apt-pkg/cacheset.cc:603 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" +msgid "%s was already set to automatically installed.\n" +msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" -#: apt-pkg/cacheset.cc:609 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" +msgid "%s was already set on hold.\n" +msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འཐོན་རིམ་གསར་ཤོས་ཅིག་ཨིན།\n" -#: apt-pkg/cacheset.cc:615 +#: cmdline/apt-mark.cc:243 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" - -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" - -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" - -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" - -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +msgid "%s was already not hold.\n" +msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འཐོན་རིམ་གསར་ཤོས་ཅིག་ཨིན།\n" -#: apt-pkg/cacheset.cc:663 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" +msgid "Waited for %s but it wasn't there" +msgstr "%s་གི་དོན་ལུ་བསྒུག་སྡོད་ཅི་ འདི་འབདཝ་ད་ཕར་མིན་འདུག" -#: apt-pkg/indexrecords.cc:78 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" +msgid "%s set on hold.\n" +msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" -#: apt-pkg/indexrecords.cc:86 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "%s་གི་ཚབ་ལུ་%s་སེལ་འཐུ་འབད་ནི་སེམས་ཁར་བཞག\n" +msgid "Canceled hold on %s.\n" +msgstr "%s་ག་ཕྱེ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "%s་ཁ་ཕྱོགས་ཡིག་སྣོད་ནང་ནུས་མེད་གྲལ་ཐིག" - -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" - -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཐོ་ཡིག་ %s(ཡུ་ཨར་ཨའི་ མིང་དཔྱད་འབད་ནི)གི་ནང་ན།" - -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(dist མིང་དཔྱད་འབད་ནི་)ནང་ན།" - -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་ %lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s (dist)གི་ནང་ན།" +#: cmdline/apt-mark.cc:392 +msgid "" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." +msgstr "" -#: apt-pkg/sourcelist.cc:184 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(dist མིང་དཔྱད་འབད་ནི་)ནང་ན།" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(dist མིང་དཔྱད་འབད་ནི་)ནང་ན།" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "སི་ཌི་རོམ་གནད་སྡུད་གཞི་རྟེན་%s་འདི་ལྷག་མ་ཚུགས།" -#: apt-pkg/sourcelist.cc:193 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(dist མིང་དཔྱད་འབད་ནི་)ནང་ན།" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" +msgstr "" +"འ་ནི་སི་ཌི་-རོམ་འདི་ཨེ་པི་ཊི་་གིས་ ངོས་འཛིན་འབད་ཚུགསཔ་སྦེ་བཟོ་ནིའི་་དོན་ལུ་ ཨེ་པི་ཊི་-སི་ཌི་རོམ་ལག་ལེན་" +"འཐབ་གནང། apt-get་དུས་མཐུན་བཟོ་ནི་དེ་ སི་ཌི་-རོམས་གསརཔ་ཁ་སྐོང་རྐྱབ་ནི་ལུ་ལག་ལེན་འཐབ་མི་བཏུབ།" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་ %lu འབྱུང་ཁུངས་ཐོ་ཡིག་ %s (ཡུ་ཨར་ཨའི་)གི་ནང་ན།" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "སི་དི་-རོམ་ཕྱི་འགྱུར།" -#: apt-pkg/sourcelist.cc:208 +#: methods/cdrom.cc:249 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་ %lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s (dist)གི་ནང་ན།" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "" +"%s་ནང་་སི་ཌི་-རོམ་འདི་བརྩེགས་བཤོལ་འབད་མ་ཚུགས་ འདི་ད་ལྟོ་ཡང་ལག་ལེན་འཐབ་སྟེ་ཡོདཔ་འོང་ནི་མས།" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཐོ་ཡིག་ %s(ཡུ་ཨར་ཨའི་ མིང་དཔྱད་འབད་ནི)གི་ནང་ན།" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "ཌིཀསི་དེ་འཚོལ་མ་ཐོབ།" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(ཡང་དག་ dist)གི་ནང་ན།" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "ཡིག་སྣོད་འཚོལ་མ་ཐོབ།" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(dist མིང་དཔྱད་འབད་ནི་)ནང་ན།" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "ངོ་བཤུས་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "%s་ཁ་ཕྱེ་དོ།" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "ཆུ་ཚོད་ལེགས་བཅོས་གཞི་སྒྲིག་འབཐ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%u་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s (དབྱེ་བ)་ནང་ན།" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "ཡུ་ཨར་ཨེལ་ ནུས་མེད་ ཉེ་གནས་ ཡུ་ཨར་ཨེལ་ཨེསི་འདི་གིས་//་དང་གཅིག་ཁར་འགོ་བཙུགས་ནི་མི་འོང་།" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "དབྱེ་བ་'%s'་འདི་གྲལ་ཐིག་%u་གུར་ལུ་ཡོདཔ་འབྱུང་ཁུངས་ཐོ་ཡིག་%s་གི་ནང་ན་མ་ཤེས་པས།" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "ནང་བསྐྱོད་འབད་དོ།" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "དབྱེ་བ་'%s'་འདི་གྲལ་ཐིག་%u་གུར་ལུ་ཡོདཔ་འབྱུང་ཁུངས་ཐོ་ཡིག་%s་གི་ནང་ན་མ་ཤེས་པས།" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "དོ་བཉམ་གི་མིང་འདི་གཏན་འབེབས་བཟོ་མ་ཚུགས།" -#: apt-pkg/deb/dpkgpm.cc:95 -#, fuzzy, c-format -msgid "Installing %s" -msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་%s།" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "ཉེ་གནས་མིང་འདི་གཏན་འབེེབས་བཟོ་མ་ཚུགས།" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Configuring %s" -msgstr "%s་རིམ་སྒྲིག་འབད་དོ།" +msgid "The server refused the connection and said: %s" +msgstr "སར་བར་འདི་གིས་ མཐུད་ལམ་འདི་ངོས་ལེན་འབད་མ་བཏུབ་པར་སླབ་མས: %s" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#: methods/ftp.cc:225 #, c-format -msgid "Removing %s" -msgstr "%s་རྩ་བསྐྲད་གཏང་དོ།" - -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "%s མཇུག་བསྡུཝ་སྦེ་རང་རྩ་བསྐྲད་བཏང་ཡོད།" +msgid "USER failed, server said: %s" +msgstr "ལག་ལེན་པ་འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་གྱིས་སླབ་མས་: %s" -#: apt-pkg/deb/dpkgpm.cc:99 +#: methods/ftp.cc:232 #, c-format -msgid "Noting disappearance of %s" -msgstr "" +msgid "PASS failed, server said: %s" +msgstr "རྩི་སྤྲོད་འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་གྱིས་སླབ་མས་: %s" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" +"པོརོ་སི་སར་བར་ཅིག་གསལ་བཀོད་འབད་ཡོད་འདི་འབདཝ་ད་ ནང་བསྐྱོད་ཡིག་ཚུགས་མིན་འདུག་ Acquire::ftp::" +"ProxyLoginའདི་སྟོངམ་ཨིན་པས།" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, fuzzy, c-format -msgid "Directory '%s' missing" -msgstr "ཐོ་བཀོད་འབད་མི་སྣོད་ཐོ་%s་ཆ་ཤས་འདི་བརླག་སྟོར་ཟུགས་ཏེ་འདུག" - -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" - -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "%s་ གྲ་སྒྲིག་འབད་དོ།" - -#: apt-pkg/deb/dpkgpm.cc:990 +#: methods/ftp.cc:280 #, c-format -msgid "Unpacking %s" -msgstr " %s་ གི་སྦུང་ཚན་བཟོ་བཤོལ་འབད་དོ།" +msgid "Login script command '%s' failed, server said: %s" +msgstr "ནང་བསྐྱོད་ཡིག་ཚུགས་ བརྡ་བཀོད་'%s'་འདི་འཐོས་ཤོར་བྱུང་ཡོད་ སར་བར་གྱིས་སླབ་མས:%s" -#: apt-pkg/deb/dpkgpm.cc:995 +#: methods/ftp.cc:306 #, c-format -msgid "Preparing to configure %s" -msgstr "%s་ རིམ་སྒྲིག་ལུ་གྲ་སྒྲིག་འབད་དོ།" +msgid "TYPE failed, server said: %s" +msgstr "ཡིག་དཔར་རྐྱབ་མ་བཏུབ་སར་བར་གྱིས་སླབ་མས། %s" -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་%s།" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "མཐུད་ལམ་ངལ་མཚམས" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "%s་ རྩ་བསྐྲད་གཏང་ནིའི་དོན་ལུ་གྲ་སྒྲིག་འབད་དོ།" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "སར་བར་གྱིས་མཐུད་ལམ་འདི་ཁ་བསྡམས་ཏེ་ཡོདཔ་ཨིན།" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "རྩ་བསྐྲད་བཏང་ཡོད་པའི་%s" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "འཛོལ་བ་ལྷབ།" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "%s མཇུག་བསྡུཝ་སྦེ་རང་རྩ་བསྐྲད་གཏང་ནིའི་དོན་ལུ་གྲ་སྒྲིག་འབད་དོ།" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "ལན་གྱིས་ གནད་ཁོངས་གུར་ལས་ ལུད་སོང་སྟེ་ཡོདཔ་ཨིན།" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "%s མཇུག་བསྡུཝ་སྦེ་རང་རྩ་བསྐྲད་བཏང་ཡོད།" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "གནད་སྤེལ་ལམ་ལུགས་ ངན་ཅན།" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "འཛོལ་བ་འབྲི།" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr " %sལུ་འབྲི་མ་ཚུགས།" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "སོ་ཀེཊི་ཅིག་གསར་བསྐྲུན་འབད་མ་ཚུགས་པར་ཡོདཔ་ཨིན།" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "གནད་སྡུད་སོ་ཀེཊི་མཐུད་མ་ཚུགས་པར་ཡོདཔ་ཨིན་ མཐུད་ལམ་ངལ་མཚམས།" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 -#, c-format -msgid "Waited for %s but it wasn't there" -msgstr "%s་གི་དོན་ལུ་བསྒུག་སྡོད་ཅི་ འདི་འབདཝ་ད་ཕར་མིན་འདུག" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "བྱ་ཡུལ་གྱི་སོ་ཀེཊི་མཐུད་མ་ཚུགས།" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo་འདི་གིས་ཉན་ནིའི་སོ་ཀེཊི་ཅིག་ལེན་མ་ཚུགས།" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "སོ་ཀེཊི་ཅིག་བསྡམས་མ་ཚུགས།" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "སོ་ཀེཊི་གུར་ཉེན་མ་ཚུགས།" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "སོ་ཀེཊི་གི་མིང་འདི་གཏན་འབེབས་བཟོ་མ་ཚུགས།" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "འདྲེན་ལམ་གྱི་བརྡ་བཀོད་འདི་བཏང་མ་ཚུགས།" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "མ་ཤེས་པའི་ཁ་བྱང་གི་རིགས་ཚན་%u (AF_*)" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "ཨི་པི་ཨར་ཊི་ འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་གིས་སླབ་མས:%s" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "གནད་སྡུད་སོ་ཀེཊི་ མཐུད་ནི་ངལ་མཚམས་བྱུང་ནུག" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "མཐུད་ལམ་འདི་དང་ལེན་འབད་མ་ཚུགས།" -#: apt-pkg/deb/debsystem.cc:94 -#, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "ཐོ་བཀོད་འབད་ཡོད་པའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རྐྱབ་མ་ཚུགས།" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "ཡིག་སྣོད་ལུ་་དྲྭ་རྟགས་བཀལ་བའི་བསྒང་དཀའ་ངལ།" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: methods/ftp.cc:890 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" +msgid "Unable to fetch file, server said '%s'" +msgstr "ཡིག་སྣོད་ལེན་མ་ཚུགས་ སར་བར་'%s'གིས་སླབ་མས" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "གནད་སྡུད་སོ་ཀེཊི་ངལ་མཚམས།" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 +#: methods/ftp.cc:935 #, c-format -msgid "%lid %lih %limin %lis" -msgstr "" +msgid "Data transfer failed, server said '%s'" +msgstr "གནད་སྡུད་གནས་སོར་དེ་འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་'%s'་གིས་སླབ་མས།" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "འདྲི་དཔྱད།" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "ལས་བཀོལ་འབད་མ་ཚུགས།" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: methods/connect.cc:76 #, c-format -msgid "%lis" -msgstr "" +msgid "Connecting to %s (%s)" +msgstr "%s (%s)་ལུ་མཐུད་དོ།" -#: apt-pkg/contrib/strutl.cc:1243 +#: methods/connect.cc:87 #, c-format -msgid "Selection %s not found" -msgstr "སེལ་འཐུ་%s ་མ་འཐོབ།" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/contrib/fileutl.cc:190 +#: methods/connect.cc:94 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "%s ལྷག་ནི་རྐྱངམ་ཅིག་འབད་མི་ལྡེ་མིག་ཡིག་སྣོད་འདི་གི་དོན་ལུ་ལྡེ་མིག་རྐྱབ་ནི་ལག་ལེན་མི་འཐབ་པས།" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "%s (f=%u t=%u p=%u)གི་དོན་ལུ་སོ་ཀེཊི་ཅིག་གསར་བསྐྲུན་འབད་མ་ཚུགས།" -#: apt-pkg/contrib/fileutl.cc:195 +#: methods/connect.cc:100 #, c-format -msgid "Could not open lock file %s" -msgstr "ལྡེ་མིག་རྐྱབས་ཡོད་པའི་ཡིག་སྣོད་%s་འདི་ཁ་ཕྱེ་མ་ཚུགས།" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "%s:%s (%s)ལུ་མཐུད་ལམ་དེ་འགོ་འབྱེད་འབད་མ་ཚུགས།" -#: apt-pkg/contrib/fileutl.cc:218 +#: methods/connect.cc:108 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "" -"ཨེན་ཨེཕ་ཨེསི་ %s སྦྱར་བརྩེགས་འབད་ཡོད་པའི་ལྡེ་མིག་ཡིག་སྣོད་ཀྱི་དོན་ལུ་ལྡེ་མིག་རྐྱབ་ནི་ལག་ལེན་མི་འཐབ་པས།" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr " %s:%s (%s)ལུ་མཐུད་མ་ཚུགས་ མཐུད་ལམ་ངལ་མཚམས།" -#: apt-pkg/contrib/fileutl.cc:223 +#: methods/connect.cc:126 #, c-format -msgid "Could not get lock %s" -msgstr "%sལྡེ་མིག་རྐྱབ་ནི་ལེན་མ་ཚུགས།" +msgid "Could not connect to %s:%s (%s)." +msgstr " %s:%s (%s)ལུ་མཐུད་མ་ཚུགས།" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +msgid "Connecting to %s" +msgstr "%s་ལུ་མཐུད་དོ།" -#: apt-pkg/contrib/fileutl.cc:394 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +msgid "Could not resolve '%s'" +msgstr "'%s'མོས་མཐུན་འབད་མ་ཚུགས།" -#: apt-pkg/contrib/fileutl.cc:412 +#: methods/connect.cc:205 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +msgid "Temporary failure resolving '%s'" +msgstr "'%s'མོས་མཐུན་འབད་ནི་ལུ་གནས་སྐབས་ཀྱི་འཐུས་ཤོར།" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "'%s:%s' (%i)་མོས་མཐུན་འབདཝ་ད་ངན་པ་ཅིག་བྱུང་ཡི།" + +#: methods/connect.cc:211 +#, fuzzy, c-format +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "'%s:%s' (%i)་མོས་མཐུན་འབདཝ་ད་ངན་པ་ཅིག་བྱུང་ཡི།" + +#: methods/connect.cc:258 +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" +msgstr "%s %s:ལུ་མཐུད་མ་ཚུགས།" + +#: methods/gpgv.cc:168 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" +"ནང་འཁོད་འཛོལ་བ: མིང་རྟགས་འདི་ལེགས་ཤོམ་ཅིག་འདུག་ འདི་འབདཝ་ད་མཛུབ་རྗེས་ལྡེ་མིག་དེ་གཏན་འབེབས་བཟོ་" +"མ་ཚུགས?!" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "ཡན་ལག་ལས་སྦྱོར་%s་ལུ་ཆ་བགོས་ཀྱི་སྐྱོན་ཅིག་ཐོབ་ཡོདཔ་ཨིན།" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "ཉུང་མཐའ་རང་ནུས་མེད་ཀྱི་མིང་རྟགས་ཅིག་གདོང་ཐུག་བྱུང་སྟེ་ཡོདཔ་ཨིན།" -#: apt-pkg/contrib/fileutl.cc:826 -#, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "ཡན་ལག་ལས་སྦྱོར་%s་ལུ་ཆ་བགོས་ཀྱི་སྐྱོན་ཅིག་ཐོབ་ཡོདཔ་ཨིན།" +#: methods/gpgv.cc:174 +#, fuzzy +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "" +"མིང་རྟགས་བདེན་སྦྱོར་འབད་ནི་ལུ་'%s'འདི་ལག་ལེན་འཐབ་མ་ཚུགས། (gpgv་དེ་ཁཞི་བཙུགས་འབད་ཡོདཔ་ཨིན་ན།?)" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "ཡན་ལག་ལས་སྦྱོར་%s་གིས་འཛོལ་བའི་ཨང་རྟགས་(%u)ཅིག་སླར་ལོག་འབད་ཡོདཔ་ཨིན།" +msgid "" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "ཡན་ལག་ལས་སྦྱོར་་%s་གིས་རེ་བ་མེད་པར་ཕྱིར་ཐོན་ཡོདཔ་ཨིན།" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "gpgv་ལག་ལེན་འཐབ་ནི་ལུ་མ་ཤེས་པའི་འཛོལ་བ་།" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "འཛོལ་བ་འབྲི།" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "འོག་གི་མིང་རྟགས་ཚུ་ནུས་མེད་ཨིན་པས།:\n" -#: apt-pkg/contrib/fileutl.cc:913 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "ཡིག་སྣོད་འདི་ཁ་བསྡམས་པའི་བསྒང་དཀའ་ངལ།" - -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" - -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "%s་གི་དོན་ལུ་རྒྱུད་དུང་འདི་ཁ་ཕྱེ་མ་ཚུགས།" - -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "ཡན་ལག་ལས་སྦྱོར་ ཨའི་པི་སི་ གསར་བསྐྲུན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" - -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "ཨེབ་འཕྲུལ་ལག་ལེན་འཐབ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "" +"འོག་གི་མིང་རྟགས་ཚུ་བདེན་སྦྱོར་་འབད་མ་ཚུགས་ག་ཅི་སྦེ་ཟེར་བ་ཅིན་མི་དམང་ལྡེ་མིག་དེ་འཐོབ་མི་ཚུགས་པས:\n" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "འཛོལ་བ་ལྷབ།" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "ལྷག་ ད་ལྟོ་ཡང་ལྷག་ནི་ལུ་%lu་ཡོད་འདི་འབདཝ་ད་ཅི་ཡང་ལྷག་ལུས་མིན་འདུག" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "ཡིག་སྣོད་འདི་ལུ་འབྲིཝ་ད་འཛོལ་བ།" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "འབྲི་ ད་ལྟོ་ཡང་འབྲི་ནི་ལུ་%lu་ཡོད་འདི་འདབཝ་ད་འབད་མ་ཚུགས།" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "སར་བར་ནང་ལས་ལྷག་པའི་བསྒང་འཛོལ་བ། ཐག་རིང་མཇུག་གི་མཐུད་ལམ་དེ་ཁ་བསྡམས།" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "ཡིག་སྣོད་འདི་ཁ་བསྡམས་པའི་བསྒང་དཀའ་ངལ།" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "སར་བར་ནང་ལས་ལྷག་པའི་བསྒང་འཛོལ་བ།" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "ཡིག་སྣོད་མཉམ་བྱུང་འབདཝ་ད་དཀའ་ངལ།" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "ཡིག་སྣོད་ལུ་འབྲིཝ་ད་འཛོལ་བ།" -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "ཡིག་སྣོད་འདི་འབྲེལལམ་མེདཔ་བཟོ་བའི་བསྒང་དཀའ་ངལ།" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "སེལ་འཐུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "ཡིག་སྣོད་མཉམ་བྱུང་འབདཝ་ད་དཀའ་ངལ།" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "མཐུད་ལམ་ངལ་མཚམས་འབད་ཡོད།" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... འཛོལ་བ་!" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "ཨའུཊི་པུཊི་ཡིག་སྣོད་ལུ་འབྲིཝ་ད་འཛོལ་བ།" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... འབད་ཚར་ཡོད།" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "མགོ་ཡིག་ཚུ་གི་དོན་ལུ་བསྒ྄ག་དོ།" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "མགོ་ཡིག་གི་གྲལ་ཐིག་བྱང་ཉེས།" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... འབད་ཚར་ཡོད།" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ནུས་མེད་ལན་གསལ་གི་མགོ་ཡིག་ཅིག་བཏང་ཡོད།" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "ཡིག་སྣོད་སྟོངམ་འདི་mmap་འབད་མ་ཚུགས།" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "ཨེཆི་ཊི་ཊི་པི་སར་བར་འདི་གིས་ནུས་མེད་ནང་དོན་རིང་-ཚད་ཀྱི་མགོ་ཡིག་ཅིག་བཏང་ཡོད།" -#: apt-pkg/contrib/mmap.cc:111 -#, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "%s་གི་དོན་ལུ་རྒྱུད་དུང་འདི་ཁ་ཕྱེ་མ་ཚུགས།" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ ནུས་མེད་ ནང་དོན་-ཁྱབ་ཚད་ཀྱི་མགོ་ཡིག་ཅིག་བཏང་ཡོད།" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "%lu་བཱའིཊིསི་གི་mmap་བཟོ་མ་ཚུགས།" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "འ་ནི་ ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ ཁྱབ་ཚད་ཀྱི་རྒྱབ་སྐྱོར་དེ་ཆད་པ་བཟོ་བཏང་ནུག" -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "%s་ཁ་ཕྱེ་མ་ཚུགས།" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "མ་ཤེས་པའི་ཚེས་རྩ་སྒྲིག" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -#, fuzzy -msgid "Unable to synchronize mmap" -msgstr "ལས་བཀོལ་འབད་མ་ཚུགས།" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "མགོ་ཡིག་གནད་སྡུད་བྱང་ཉེས།" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "%lu་བཱའིཊིསི་གི་mmap་བཟོ་མ་ཚུགས།" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "བཐུད་ལམ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-pkg/contrib/mmap.cc:322 -#, fuzzy -msgid "Failed to truncate file" -msgstr "%s་ཡིག་སྣོད་འདི་འབྲི་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "ནང་འཁོད་འཛོལ་བ།" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" +"ནང་འཁོད་ཀྱི་འཛོལ་བ་ གཞི་བཙུགས་ཐུམ་སྒྲིལ་ཚུ་ ཆད་པ་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་དང་གཅིག་ཁར་བོད་བརྡ་འབད་འདི་" +"ཡོད!" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "ཐུམ་སྒྲིལ་ཚུ་རྩ་བསྐྲད་བཏང་དགོཔ་འདུག་འདི་འབདགཝ་ད་རྩ་བསྐྲད་གཏང་ནི་འདི་ལྕོགས་མིན་ཐལ་ཏེ་འདུག" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "སྦྱར་བརྩེགས་ས་ཚིགས་%s་འདི་ངོ་བཤུས་འབད་མ་ཚུགས།" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "ནང་འཁོད་འཛོལ་བ་ གོ་རིམ་བཟོ་ནི་ཚུ་མཇུག་མ་བསྡུ་བས།" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "སི་ཌི་རོམ་འདི་ངོ་བཤུས་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"ག་ཅི་གི་ཡ་མཚན་ཆེ་མི་ཆེ་ ཚད་འདི་གིས་ email apt@packages.debian.org་ལུ་མཐུན་སྒྲིག་མི་འབད་" +"བས།" -#: apt-pkg/contrib/configuration.cc:519 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "ངོ་མ་ཤེས་པའི་སྡུད་ཚིག་གི་དབྱེ་བ:'%c'" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "%sBལེན་ནི་ལུ་དགོཔ་པས། ཡིག་མཛོད་ཚི་གི་%sB་\n" -#: apt-pkg/contrib/configuration.cc:633 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "Opening configuration file %s" -msgstr "རིམ་སྒྲིག་ཡིག་སྣོད་%s་འདི་ཁ་ཕྱེ་དོ།" +msgid "Need to get %sB of archives.\n" +msgstr "ཡིག་མཛོད་ཀྱི་%sB་འདི་ལེན་དགོ་པས།\n" -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "་ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: སྡེབ་ཚན་གྱིས་མིང་མེད་མི་དང་གཅིག་ཁར་འགོ་བཙུགསཔ་ཨིན" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 +#, fuzzy, c-format +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "ཁ་སྐོང་གི་%sB་འདི་བཤུབ་པའི་ཤུལ་ལས་ཌིཀསི་གི་བར་སྟོང་དེ་ལག་ལེན་འཐབ་འོང་།\n" -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:བཟོ་ཉེས་འགྱུར་བའི་ངོ་རྟགས།" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 +#, fuzzy, c-format +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "%sB་འདི་ཤུབ་པའི་ཤུལ་ལས་ཀྱི་བར་སྟོང་དེ་དལཝ་སྦེ་ལུས་འོང་།\n" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-private/private-install.cc:200 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:གནས་གོང་གི་ཤུལ་ལས་མཁོ་མེད་ཐེབས།" +msgid "You don't have enough free space in %s." +msgstr "%s ནང་ཁྱོད་ལུ་བར་སྟོང་དལཝ་ལངམ་སྦེ་མིན་འདུག" -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:བཀོད་རྒྱ་ཚུ་ཆེ་རིམ་ནང་རྐྱངམ་ཅིག་བྱིན་ཚུགས།" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "དཀའ་ངལ་ཚུ་ཡོདཔ་ལས་-y ་འདི་ --force-yes་མེདཐོག་ལས་ལག་ལེན་འཐབ་སྟེ་ཡོད།" -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:འདུ་འཛོམས་འབད་འབདཝ་ལེ་ཤཱ་གྲངས་སུ་བཙུགསཔ་ཨིན།" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "གལ་ཆུང་རྐྱངམ་ཅིག་ཁསལ་བཀོད་འབད་ནུག་ འདི་འབདཝ་ད་འ་ནི་འདི་གལ་ཆུང་གི་བཀོལ་སྤྱོད་མེན།" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: ནཱ་ལས་རང་འགོ་བཙུགས་གྲངས་སུ་བཙུགས་ཏེ་ཡོད།" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "ཨིན་ ང་གིས་སླབ་དོ་བཟུམ་སྦེ་རང་འབད!" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-private/private-install.cc:222 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: རྒྱབ་སྐྱོར་མ་འབད་བར་ཡོད་པའི་'%s'བཀོད་རྒྱ།" - -#: apt-pkg/contrib/configuration.cc:900 -#, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:བཀོད་རྒྱ་ཚུ་ཆེ་རིམ་ནང་རྐྱངམ་ཅིག་བྱིན་ཚུགས།" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"ཁྱོད་ཀྱི་གནོད་ངན་འབྱུང་ནིའི་ལཱ་ཅི་འབད་ནི་འབད་དོ།\n" +"འཕྲོ་མཐུད་འབད་ནིའི་དོན་ལུ་'%s'ཚིག་ཚན་ནང་ལུ་ཡིག་དཔར་རྐྱབས།\n" +" ?] " -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: ཡིག་སྣོད་ཀྱི་མཇུག་ལུ་མཁོ་མེད་ཐེབས།" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "བར་བཤོལ་འབད།" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "གཞི་བཙུགས་བར་བཤོལ་འབད་དོ།" +#: apt-private/private-install.cc:243 +#, fuzzy +msgid "Do you want to continue?" +msgstr "ཁྱོན་ཀྱི་འཕྲོ་མཐུད་ནི་འབད་ནི་ཨིན་ན་" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "བརྡ་བཀོད་གྲལ་ཐིག་གྱི་གདམ་ཁ་'%c'[%s་ནང་ལས་]འདི་མ་ཤེས་པས།" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "ཡིག་སྣོད་ལ་ལུ་ཅིག་ཕབ་ལེན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "བ་རྡ་བཀོད་གྲལ་ཐིག་གི་གདམ་ཁ་%s་འདི་ཧ་མ་གོ་བས།" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"ཡིག་མཛོད་ལ་ལུ་ཅིག་ལེན་མི་ཚུགས་པས་ apt-get་དུས་མཐུན་བཟོ་ནི་གཡོག་བཀོལ་ནི་ཨིན་ན་ཡང་ན་--fix-" +"missing་དང་གཅིག་ཁར་འབད་རྩོལ་བསྐྱེད་ནི་ཨིན་ན་?" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "བརྡ་བཀོད་གྲལ་ཐིག་གི་གདམ་ཁ་%s་འདི་བུ་ལིན་མེན་པས།" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing་དང་བརྡ་ལམ་བརྗེ་སོར་འབད་ནི་འདི་ད་ལྟོ་ལས་རང་རྒྱབ་སྐྱོར་མི་འབད་བས།" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "གདམ་ཁ་%s་ལུ་སྒྲུབ་རྟགས་ཅིག་དགོ་པས།" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "བརླག་སྟོར་ཞུགས་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་ནོར་བཅོས་འབད་མི་ཚུགས་པས།" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "གདམ་ཁ་%s:རིམ་སྒྲིག་གི་རྣམ་གྲངས་གསལ་བཀོད་ལུ་ =<val> ་ཅིག་དགོཔ་ཨིན།" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "གཞི་བཙུགས་བར་བཤོལ་འབད་དོ།" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "གདམ་ཁ་ %s ་ལུ་'%s'་མེན་པར་ ཧྲིལ་ཨང་སྒྲུབ་རྟགས་ཅིག་དགོས་མཁོ་ཡོདཔ་ཨིན" +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "གདམ་ཁ་'%s'འདི་གནམ་མེད་ས་མེད་རིངམ་འདུག" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "དྲན་ཤེས་ %s་འདི་ཧ་གོ་མ་ཚུགས་པས་ བདེན་པ་ཡང་ན་རྫུན་པ་ལུ་འབད་རྩོལ་བསྐྱེདཔ།" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "" -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "ནུས་མེད་བཀོལ་སྤྱོད་%s" +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" -#: cmdline/apt-cache.cc:149 -#, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "ཐུམ་སྒྲིལ་ %s ཐོན་རིམ་ %s ལུ་ ཌེཔ་མ་ཚང་ཅིག་འདུག:\n" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "འོག་གི་བརྡ་དོན་དེ་གིས་དུས་སྐབས་འདི་མོས་མཐུན་བཟོ་ནི་ལུ་གྲོགས་རམ་འབད་འོང་:" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "ཐུམ་སྒྲིལ་བསྡོམས་ཀྱི་མིང་ཚུ:" +#: apt-private/private-install.cc:506 +#, fuzzy +msgid "Internal Error, AutoRemover broke stuff" +msgstr "ནང་འཁོད་འཛོལ་བ་ དཀའ་ངལ་མོས་མཐུན་འབད་མི་ཅ་ཆས་ཚུ་མེདཔ་ཐལ་ཡོད།" -#: cmdline/apt-cache.cc:279 +#: apt-private/private-install.cc:513 #, fuzzy -msgid "Total package structures: " -msgstr "ཐུམ་སྒྲིལ་བསྡོམས་ཀྱི་མིང་ཚུ:" +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" +msgstr[1] "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr "སྤྱིར་བཏང་ཐུམ་སྒྲིལ་ཚུ།" +#: apt-private/private-install.cc:517 +#, fuzzy, c-format +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" +msgstr[1] "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr "བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་གཙང་མ་ཚུ:" +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr "བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་རྐྱང་པ་ཚུ:" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "འདི་ཚུ་ནོར་བཅོས་འབད་ནིའི་དོན་ལུ་ཁྱོད་ཀྱི་'apt-get -f install'དེ་གཡོག་བཀོལ་དགོཔ་འོང་:" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr "བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་སླ་བསྲེ་ཡོད་མི་ཚུ:" +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"མ་ཚང་བའི་རྟེན་འབྲེལ་ ཐུས་སྒྲིལ་མེད་མི་ཚུ་དང་གཅིག་ཁར་ 'apt-get -f install'དེ་འབཐ་རྩོལ་བསྐྱེདཔ།" +"(ཡང་ན་ཐབས་ཤེས་ཅིག་གསལ་བཀོད་འབད།)" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr "བརླག་སྟོར་ཞུགས་པ:" +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"ཐུམ་སྒྲིལ་ལ་ལུ་ཅིག་གཞི་བཙུགས་འབད་མ་ཚུགས། འ་ནི་གི་དོན་དག་དེ་ཁྱོད་ཀྱི་ མི་སྲིད་པའི་དུས་སྐབས་ཅིག་ཞུ་བ་" +"འབད་འབདཝ་འོང་ནི་མས་ ཡང་ན་ད་ལྟོ་ཡང་གསར་བསྐྲུན་མ་འབད་བར་ཡོད་པའི་ཐུམ་སྒྲིལ་ལ་ལུ་ཅིག་ཡང་ན་ནང་" +"འབྱོར་གྱི་ཕྱི་ཁར་རྩ་བསྐྲད་བཏང་ཡོད་པའི་རྩ་བརྟན་མེད་པའི་བགོ་འགྲེམ་ཚུ་ལག་ལེན་འཐབ་དོ་ཡོདཔ་འོང་ནི་ཨིན་པས།" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "ཁྱད་རྟགས་ཅན་གྱི་ཐོན་རིམ་ཚུ་གི་བསྡོམས:" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "ཆད་པ་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ།" -#: cmdline/apt-cache.cc:327 -#, fuzzy -msgid "Total distinct descriptions: " -msgstr "ཁྱད་རྟགས་ཅན་གྱི་ཐོན་རིམ་ཚུ་གི་བསྡོམས:" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "འོག་གི་ཐུམ་སྒྲིལ་ཐེབས་ཚུ་གཞི་བཙུགས་འབད་འོང་:" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "རྟེན་འབྲེལ་བསྡོམས:" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "བསམ་འཆར་བཀོད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "ཐེན་རིམ་/ཡིག་སྣོད་ མཐུན་འབྲེལ་གྱི་བསྡོམས:" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "འོས་སྦྱོར་འབད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:" -#: cmdline/apt-cache.cc:334 -#, fuzzy -msgid "Total Desc/File relations: " -msgstr "ཐེན་རིམ་/ཡིག་སྣོད་ མཐུན་འབྲེལ་གྱི་བསྡོམས:" +#: apt-private/private-install.cc:825 +#, c-format +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "" +"%s་གོམ་འགྱོ་འབད་དོ་ འདི་ཧེ་མ་ལས་རང་གཞི་བཙུགས་འབད་འོདཔ་དང་དུས་ཡར་བསྐྱེད་འབད་ནི་འདི་གཞི་སྒྲིག་མ་" +"འབད་བས།\n" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "ཡོངས་བསྡོམས་ཀྱིས་ས་ཁྲ་བཟོ་བ་ཚུ་བྱིནམ་ཨིན:" +#: apt-private/private-install.cc:829 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"%s་གོམ་འགྱོ་འབད་དོ་ འདི་ཧེ་མ་ལས་རང་གཞི་བཙུགས་འབད་འོདཔ་དང་དུས་ཡར་བསྐྱེད་འབད་ནི་འདི་གཞི་སྒྲིག་མ་" +"འབད་བས།\n" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "སྤུངས་ཡོད་པའི་ཡིག་རྒྱུན་གྱི་བསྡོམས:" +#: apt-private/private-install.cc:841 +#, c-format +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "%s ་ལོག་གཞི་བཙུགས་འབད་ནི་འདི་མི་སྲིད་པ་ཅིག་ཨིན་པས་ འདི་ཕབ་ལེན་འབད་མི་བཏུབ་པས།\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "རྟེན་འབྲེལ་ཐོན་རིམ་བར་སྟོང་གྱི་བསྡོམས:" +#: apt-private/private-install.cc:846 +#, c-format +msgid "%s is already the newest version.\n" +msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འཐོན་རིམ་གསར་ཤོས་ཅིག་ཨིན།\n" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "བར་སྟོང་ལྷུག་ལྷུག་གི་བསྡོམས:" +#: apt-private/private-install.cc:894 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "(%s)གི་དོན་ལུ་སེལ་འཐུ་འབད་ཡོད་པའི་འཐོན་རིམ་'%s'(%s)\n" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "གི་དོན་ལུ་རྩིས་ཐོ་བཏོན་ཡོད་པའི་བར་སྟོང:" - -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "ཐུམ་སྒྲིལ་ཡིག་སྣོད་ %sའདི་མཉམ་འབྱུང་གི་ཕྱི་ཁར་ཨིན་པས།" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "(%s)གི་དོན་ལུ་སེལ་འཐུ་འབད་ཡོད་པའི་འཐོན་རིམ་'%s'(%s)\n" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "ཐུམ་སྒྲིལ་ཚུ་མ་ཐོབ།" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "ཐུམ་སྒྲིལ་%s་འདི་གཞི་བཙུགས་མ་འབད་བས་ འདི་འབད་ནི་དི་གིས་རྩ་བསྐྲད་མ་གཏང་པས།་\n" -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "ཁྱོད་ཀྱིས་ཏག་ཏག་སྦེ་དཔེ་གཞི་གཅིག་བྱིན་དགོ" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "ཐུམ་སྒྲིལ་%s་འདི་གཞི་བཙུགས་མ་འབད་བས་ འདི་འབད་ནི་དི་གིས་རྩ་བསྐྲད་མ་གཏང་པས།་\n" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "ཐུམ་སྒྲིལ་གྱི་ཡིག་སྣོད:" +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "" -"འདྲ་མཛོད་འདི་མཉམ་བྱུང་གི་ཕྱི་ཁར་ཨིན་པས་ ཐུམ་སྒྲིལ་ཡིག་སྣོད་ཅིག་ལུ་ ཨེགསི་-རེཕ་འབད་མི་ཚུགས་པས།" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "རྟེན་འབྲེལ་ནོར་བཅོས་འབད་དོ།" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "ཁབ་གཟེར་བཏབ་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr "འཐུས་ཤོར་བྱུང་ཡོད།" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(མ་ཐོབ།)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "རྟེན་འབྲེལ་འདི་ནོར་བཅོས་འབད་མི་ཚུགས་པས།" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr "གཞི་བཙུགས་འབད་ཡོདཔ།" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "ཡར་བསྐྱེད་འབད་ཡོད་པའི་ཆ་ཚན་འདི་ཆུང་ཀུ་བཟོ་མི་ཚུགས་པས།" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr "མི་ངོ:" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr "འབད་ཚར་ཡི།" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ཅི་མེད།)" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "འ་ནི་འདི་ཚུ་ནོར་བཅོས་འབད་ནི་ལུ་ཁྱོད་ཀྱི་'apt-get -f install'དེ་གཡོག་བཀོལ་དགོཔ་འོང་།" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr "ཐུམ་སྒྲིལ་གྱི་ཁབ་གཟེར:" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "མ་ཚང་པའི་རྟེན་འབྲེལ་ཚུ། -f ལག་ལེན་འཐབ་སྟེ་འབད་རྩོལ་བསྐྱེད།" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr "ཐོན་རིམ་ཐིག་ཁྲམ།:" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s་གི་དོན་ལུ་%s %sགུར་ཕྱོགས་སྒྲིག་འབད་ཡོད་པའི་%s %s\n" +msgid "[installed,upgradable to: %s]" +msgstr " [གཞི་བཙུགས་འབད་ཡོད།]" -#: cmdline/apt-cache.cc:1749 +#: apt-private/private-output.cc:238 #, fuzzy -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgid "[installed,local]" +msgstr " [གཞི་བཙུགས་འབད་ཡོད།]" + +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"ལག་ལེན།: apt-cache [options] command\n" -" apt-cache [options] add file1 [file2 ...]\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -" apt-cacheའདི་གནས་རིམ་དམའ་དྲག་གི་ལག་ཆས་ APT's binary\n" -"་ འདྲ་མཛོད་ཡིག་སྣོད་གཡོག་བཀོལ་དོན་ལུ་ལག་ལེན་འཐབ་ནི་དང་་དེ་ཚུ་ནང་ལས་བརྡ་དོན་འདྲི་དཔྱད་འབད་ནིའི་དོན་" -"ལུ་ཨིན།\n" -"cache files, and query information from them\n" -"\n" -"བརྡ་བཀོད:\n" -" add -འདི་གིས་ཐུམ་སྒྲིལ་ཡིག་སྣོད་ཅིག་འབྱུང་ཁུངས་འདྲ་མཛོད་ལུ་ཁ་སྐོང་རྐྱབས་ཨིན།\n" -" gencaches -འདི་གིས་ཐུམ་སྒྲིལ་དང་འབྱུང་ཁུངས་འདྲ་མཛོད་གཉིས་ཆ་རང་བཟོ་བརྩིགས་འབདཝ་ཨིན།\n" -" showpkg -འད་གིས་་ཐུམ་སྒྲིལ་རྐྱང་པ་ཅིག་གི་དོན་ལུ་སྤྱིར་བཏང་བརྡ་དོན་དུམ་གྲ་ཅིག་སྟོནམ་ཨིན།\n" -" showsrc - འདི་གིས་འབྱུང་ཁུངས་ཀྱི་དྲན་ཐོ་ཚུ་སྟོནམ་ཨིན།\n" -" stats -འདི་གིས་ གཞི་རིམ་ཚད་རྩིས་དུམ་གྲ་རེ་སྟོནམ་ཨིན།\n" -" dump -འདི་གི་ཡིག་སྣོད་ཧྲིལ་བུ་མདོར་བསྡུས་རྣམཔ་་ཅིག་ནང་སྟོནམ་ཨིན།\n" -" dumpavail -འདི་གིས་ཨེསི་ཊི་ཌི་ཕྱི་ཁར་ལུ་ འཐོབ་ཚུགས་པའི་ཡིག་སྣོད་ཚུ་དཔར་བསྐྲུན་འབདཝ་ཨིན།\n" -" unmet - འདི་གིས་མ་ཚང་བའི་ རྟེན་འབྲེལ་ཚུ་སྟོནམ་ཨིན།\n" -" search -འདི་གིས་ རི་ཇེགསི་དཔེ་གཞི་ཅིག་གི་དོན་ལུ་ ཐུམ་སྒྲིལ་ཐོ་ཡིག་དེ་འཚོལ་ཞིབ་འབདཝ་ཨིན།\n" -" show - འདི་གིས་ཐུམ་སྒྲིལ་གི་དོན་ལུ་ ལྷག་བཏུབ་པའི་དྲན་ཐོ་ཅིག་སྟོནམ་ཨིན།\n" -" depends - འདི་གིས་ཐུམ་སྒྲིལ་གི་དོན་ལུ་ རགས་པ་རྟེན་འབྲེལ་གྱི་བརྡ་དོན་ཅིག་ སྟོནམ་ཨིན།\n" -" rdepends - འདི་གིས་ ཐུམ་སྒྲིལ་ཅིག་གི་དོན་ལུ་ རིམ་ལོག་རྟེན་འབྲེལ་གྱི་བརྡ་དོན་དེ་སྟོནམ་ཨིན།\n" -" pkgnames - འདི་གིས་ཐུམ་སྒྲིལ་ཚུ་ཆ་མཉམ་གི་མིང་ཚུ་ཐོ་བཀོད་འབདཝ་ཨིན།\n" -" dotty - འདི་གིས་ཚད་ཁྲམ་ཝིསི་གི་དོན་ལུ་ ཐུམ་སྒྲིལ་ཚད་ཁྲམ་ཚུ་ བཟོ་བཏོན་འབདཝ་ཨིན།\n" -" xvcg - འདི་གིས་ ཨེགསི་ཝི་སི་ཇི་ གི་དོན་ལུ་ ཐུམ་སྒྲིལ་ཚད་ཁྲམ་ཚུ་བཟོ་བཏོད་འབདཝ་ཨིན།\n" -" policy - འདི་གིས་ སྲིད་བྱུས་སྒྲིག་སྟངས་ཚུ་སྟོནམ་ཨིན།\n" -"\n" -"གདམ་ཁ་ཚུ་:\n" -" -h འདི་གིས་ཚིག་ཡིག་ལུ་ཆ་རོགས་འབདཝ་ཨིན།.\n" -" -p=? འདི་འབྱུང་ཁུངས་འའདྲ་མཛོད་ཨིན།.\n" -" -s=? འདི་འབྱུང་ཁུངས་འདྲ་མཛོད་ཨིན།.\n" -" -q འདི་གིས་ ཡར་འཕེལ་བརྡ་སྟོན་པ་འདི་ལྕོགས་མིན་བཟོཝ་ཨིན།.\n" -" -i འདི་གིས་ མ་ཚང་པའི་བརྡ་བཀོད་ཚུ་གི་དོན་ལུ་ གལ་ཅན་གྱི་ཌེཔསི་རྐྱངམ་ཅིག་སྟོན།.\n" -" -c=? འདི་གིས་ འ་ནི་རིམ་སྒྲིག་ཡིག་སྣོད་འདི་ལྷགཔ་ཨིན།.\n" -" -o=? འདི་གིས་ མཐུན་སྒྲིག་རིམ་སྒྲིག་གི་གདམ་ཁ་འདི་གཞི་སྒྲིག་འབདཝ་ཨིན་ དཔེར་ན་ eg -o dir::" -"cache=/tmp\n" -" ཧེང་བཀལ་བརྡ་དོན་གི་དོན་ལུ་ ཨེ་apt-cache(8)དང་apt.conf(5)ལག་ཐོག་ཤོག་ལེབ་ཚུ་བལྟ།.\n" -#: cmdline/apt-cdrom.cc:76 +#: apt-private/private-output.cc:243 #, fuzzy -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "ཌིསིཀ་འདི་གི་དོན་ལུ་མིང་ཅིག་བླིན་གནང་ དཔེར་ན་ 'Debian 2.1r1 Disk 1'བཟུམ།" +msgid "[installed,automatic]" +msgstr " [གཞི་བཙུགས་འབད་ཡོད།]" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "ཌིསིཀ་ཅིག་འདྲེན་འཕྲུལ་ནང་བཙུགས་བཞིནམ་ལས་ལོག་ལྡེ་འདི་ཨེབ།" +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [གཞི་བཙུགས་འབད་ཡོད།]" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "%s་ལུ་%s་བསྐྱར་མིང་བཏགས་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "ཁྱོད་ཀྱི་ཆ་ཚན་ནང་གི་སི་ཌི་ལྷག་ལུས་ཡོད་མི་གི་དོན་ལུ་འ་ནི་ལས་སྦྱོར་དེ་ཡང་བསྐྱར་འབད།" +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "འདི་འབདཝ་ད་%s་འདི་གཞི་བཙུགས་འབད་ཡོད།" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "སྒྲུབས་རྟགས་ཚུ་ཟུང་ནང་མིན་འདུག" +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -msgstr "" -"ལག་ལེན:apt-config [གདམ་ཁ་ཚུ་] བརྡ་བཀོད།\n" -"\n" -"apt-config་འདི་APT config་ཡིག་སྣོད་ལྷག་ནིའི་དོན་ལུ་འཇམ་སམ་ལག་ཆས་ཅིག་ཨིན།\n" -"\n" -"བརྡ་བཀོད་ཚུ:\n" -" shell - ཤལ་གྱི་ཐབས་ལམ།\n" -" dump - འདི་གིས་རིམ་སྒྲིག་གི་ཐབས་ལམ་འདི་སྟོནམ་ཨིན།\n" -"\n" -"གདམ་ཁ་ཚུ:\n" -" -h འདི་གིས་ཚིག་ཡིག་ལུ་གྲོགས་རམ་འབདཝ་ཨིན།\n" -" -c=? འདི་གིས་འ་ནི་རིམ་སྒྲིག་ཡིག་སྣོད་འདི་ལྷགཔ་ཨིན།\n" -" -o=? མཐུན་སྒྲིག་གི་རིམ་སྒྲིག་འདི་གཞི་སྒྲིག་འབདཝ་ཨིན་ དཔེར་ན་-o dir::cache=/tmp་བཟུམ།\n" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "འདི་འབདཝ་ད་%s་འདི་གཟི་བཙུགས་འབད་མི་བཏུབ་པས།" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" - -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "འདི་འབདཝ་ད་ འདི་བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་ཅིག་ཨིན་པས།" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "འདི་འབདཝ་ད་འདི་གཞི་བཙུགས་མ་འབད་བས།" -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་གྱི་ཐོ་ཡིག་%s་དེ་ངོ་བཤུས་འབད་མ་ཚུགས།" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "འདི་འབདཝ་ད་འདི་གཞི་བཙུགས་མི་འབད་ནི་ཨིན་པས།" -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr "ཡང་ན།" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "འོག་གི་ཐུམ་སྒྲིལ་ཚུ་ལུ་རྟེན་འབྲེལ་མ་ཚང་པས:" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, fuzzy, c-format -msgid "%s set to manually installed.\n" -msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "འོག་གི་ཐུམ་སྒྲིལ་འདི་ཚུ་རྩ བསྐྲད་གཏང་འོང་:" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "འོག་གི་ཐུམ་སྒྲིལ་འདི་ཚུ་ལོག་སྟེ་རང་བཞག་ནུག:" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "ནང་འཁོད་འཛོལ་བ་ དཀའ་ངལ་མོས་མཐུན་འབད་མི་ཅ་ཆས་ཚུ་མེདཔ་ཐལ་ཡོད།" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "འོག་གི་ཐུམ་སྒྲིལ་འདི་ཚུ་ཡར་བསྐྱེད་འབད་འོང་:" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "ཕབ་ལེན་འབད་ནིའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རྐྱབས་མ་ཚུགས་པས།" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "འོག་གི་ཐུམ་སྒྲལ་འདི་ཚུ་མར་ཕབ་འབད་འོང་:" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "གི་དོན་ལུ་འབྱུང་ཁུངས་ལེན་ནི་ལུ་ཉུང་མཐའ་རང་ཐུམ་སྒྲིལ་གཅིག་ལེན་དགོ" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "འོག་གི་འཆང་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་བསྒྱུར་བཅོས་འབད་འོང་:" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/private-output.cc:668 #, c-format -msgid "Unable to find a source package for %s" -msgstr "%s་གི་དོན་ལུ་འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་ཅིག་འཚོལ་མ་འཐོབ" +msgid "%s (due to %s) " +msgstr "%s( %s་གིས་སྦེ)" -#: cmdline/apt-get.cc:786 -#, c-format +#: apt-private/private-output.cc:676 msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" +"ཉེན་བརྡ:འོག་གི་ཉོ་མཁོ་བའི་ཐུམ་སྒྲིལ་ཚུ་རྩ་བསྐྲད་གཏང་འོང་།\n" +"ཁྱོད་ཀྱིས་ཁྱོད་རང་ག་ཅི་འབདཝ་ཨིན་ན་ངེས་སྦེ་མ་ཤེས་ཚུན་འདི་འབད་ནི་མི་འོང་།!" -#: cmdline/apt-get.cc:791 +#: apt-private/private-output.cc:707 #, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" -msgstr "" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu་ཡར་བསྐྱེད་འབད་ཡོད་ %lu་འདི་གསརཔ་སྦེ་གཞི་བཙུགས་འབད་ཡོད།" -#: cmdline/apt-get.cc:843 +#: apt-private/private-output.cc:711 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "གོམ་འགྱོ་གིས་ཧེ་མ་ལས་རང་'%s'་ཡིག་སྣོད་དེ་ཕབ་ལེན་འབད་ནུག\n" +msgid "%lu reinstalled, " +msgstr "%lu་འདི་ལོག་གཞི་བཙུགས་འབད་ཡོད།" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-private/private-output.cc:713 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "%s་ནང་བར་སྟོང་" +msgid "%lu downgraded, " +msgstr "%lu་འདི་མར་ཕབ་འབད་ཡོད།" -#: cmdline/apt-get.cc:882 +#: apt-private/private-output.cc:715 #, c-format -msgid "You don't have enough free space in %s" -msgstr " %s་ནང་ཁྱོད་ལུ་བར་སྟོང་ཚུ་ལངམ་སྦེ་མིན་འདུག་" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "རྩ་བསྐྲད་འབད་ནི་ལུ་%lu་དང་%lu་ཡར་བསྐྱེད་མ་འབད་བས།\n" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: apt-private/private-output.cc:719 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "%sB་ལེན་དགོཔ་འདུག་ འབྱུང་ཁུངས་ཡིག་མཛོད་ཀྱི་%sB།\n" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu་འདི་ཆ་ཚང་སྦེ་གཞི་བཙུགས་མ་འབད་ཡང་ན་རྩ་བསྐྲད་མ་གཏང་པས།\n" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "འབྱུང་ཁུངས་ཡིག་མཛོད་ཚུ་ཀྱི་%sB་ལེན་དགོ་པསས།\n" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "" -#: cmdline/apt-get.cc:902 -#, c-format -msgid "Fetch source %s\n" -msgstr "%s་འབྱུང་ཁུངས་ལེན།\n" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "ཡིག་མཛོད་ལ་ལུ་ཅིག་ལེན་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "ཝའི།" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "ཕབ་ལེན་ཐབས་ལམ་རྐྱངམ་གཅིག་ནང་མཇུག་བསྡུཝ་སྦེ་རང་ཕབ་ལེན་འབད།" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: cmdline/apt-get.cc:950 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "%s་ནང་ཧེ་མ་ལས་སྦུང་ཚན་བཟོ་བཤོལ་ཨིན་མའི་སྦུང་ཚན་བཟོ་བཤོལ་གོམ་འགྱོ་འབད་དོ།\n" +msgid "Regex compilation error - %s" +msgstr "རི་ཇེགསི་ཕྱོགས་སྒྲིག་འཛོལ་བ་- %s" -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "'%s'སྦུང་ཚན་བཟོ་བཤོལ་འཐུས་ཤོར་བྱུང་ཡོད།\n" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "དུས་མཐུན་བཟོ་བའི་བརྡ་བཀོད་འདི་གིས་སྒྲུབ་རྟགས་ཚུ་མི་འབག་འབད།" -#: cmdline/apt-get.cc:963 +#: apt-private/private-update.cc:90 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "'dpkg-dev'་ཐུམ་སྒྲིལ་དེ་གཞི་བཙུགས་འབད་ཡོད་པ་ཅིན་ཨེབ་གཏང་འབད།\n" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "'%s'་བཟོ་བརྩིགས་བརྡ་བཀོད་འཐུས་ཤོར་བྱུང་ཡོད།\n" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "ཆ་ལག་ལས་སྦྱོར་དེ་འཐུས་ཤོར་བྱུང་ནུག" +#: apt-private/private-show.cc:156 +#, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "builddeps ཞིབ་དཔྱད་འབད་ནིའི་དོན་ལུ་ཉུང་མཐའ་རང་ཐུམ་སྒྲིལ་གཅིག་གསལ་བཀོད་འབད་དགོ" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: cmdline/apt-get.cc:1054 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "%s་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་བརྡ་དོན་དེ་ལེན་མ་ཚུགས།" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "ཉེན་བརྡ:འོག་གི་ཐུམ་སྒྲིལ་འདི་ཚུ་བདེན་བཤད་འབད་མི་བཏུབ་པས།" -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s ལུ་བཟོ་བརྩིགས་རྟེན་འབྲེལ་མིན་འདུག\n" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "བདེན་བཤད་ཉེན་བརྡ་འདི་ཟུར་འབད་ཡོད།\n" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "%sཐུམ་སྒྲིལ་འདི་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་ %sགི་དོན་ལུ་%s རྟེན་འབྲེལ་དེ་ངལ་རང་མ་ཚུགས་པས།" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "ཐུམ་སྒྲིལ་ལ་ལུ་ཅིག་བདེན་བཤད་འབད་མ་ཚུགས།" -#: cmdline/apt-get.cc:1289 -#, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "%sཐུམ་སྒྲིལ་འདི་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་ %sགི་དོན་ལུ་%s རྟེན་འབྲེལ་དེ་ངལ་རང་མ་ཚུགས་པས།" +#: apt-private/private-download.cc:50 +#, fuzzy +msgid "Install these packages without verification?" +msgstr "བདེན་སྦྱོར་མ་འབད་བར་འ་ནི་ཐུམ་སྒྲིལ་འདི་ཚུ་གཞི་བཙུགས་འབད་ནི་ཨིན་ན་" -#: cmdline/apt-get.cc:1312 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"%s:གི་དོན་ལུ་%s་རྟེན་འབྲེལ་དེ་གི་རེ་བ་སྐོང་ནི་འདི་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན་ གཞི་བཙུགས་འབད་ཡོད་པའི་ཐུམ་" -"སྒྲིལ་%s་དེ་གནམ་མེད་ས་མེད་གསརཔ་ཨིན་པས།" +msgid "Failed to fetch %s %s\n" +msgstr "%s %s་ ལེན་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།\n" -#: cmdline/apt-get.cc:1351 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"%s གི་དོན་ལུ་%s་རྟེན་འབྲེལ་འདི་གི་རེ་བ་སྐོང་མི་ཚུགས་ནུག་ག་ཅི་འབད་ཟེར་བ་ཅིན་ཐུམ་སྒརིལ་%s་གི་འཐོན་རིམ་" -"ཚུ་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་འཐོན་རིམ་དགོས་མཁོ་ཚུ་གི་རེ་བ་དོ་སྐོང་མ་ཚུགས་པས།" - -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "%sཐུམ་སྒྲིལ་འདི་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་ %sགི་དོན་ལུ་%s རྟེན་འབྲེལ་དེ་ངལ་རང་མ་ཚུགས་པས།" +msgid "Failed to parse %s. Edit again? " +msgstr "%s་ལུ་%s་བསྐྱར་མིང་བཏགས་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: cmdline/apt-get.cc:1380 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "%s: %s་གི་དོན་ལུ་་%s་རྟེན་འབྲེལ་འདི་ངལ་རངས་འབད་ནི་འཐུས་ཤོར་བྱུང་ནུག" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: cmdline/apt-get.cc:1395 -#, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr " %s་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་འདི་ངལ་རངས་མ་ཚུགས་པས།" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "བཟོ་བརྩིགས་རྟེན་འབྲེལ་འདི་ལས་སྦྱོར་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན།" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "ཡར་བསྐྱེད་རྩིས་བཏོན་དོ་... " -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "%s (%s)་ལུ་མཐུད་དོ།" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "འབད་ཚར་ཡི།" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "རྒྱབ་སྐྱོར་འབད་ཡོད་པའི་ཚད་གཞི་ཚུ:" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "ཨེབ།" -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "ལེན:" + +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "ཨེལ་ཇི་ཨེན:" + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "ཨི་ཨར་ཨར།" + +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "%s (%sB/s)་ནང་ལུ་%sB་དེ་ལེན་ཡོདཔ་ཨིན།\n" + +#: apt-private/acqprogress.cc:236 +#, c-format +msgid " [Working]" +msgstr " [ལཱ་འབད་དོ།]" + +#: apt-private/acqprogress.cc:297 +#, c-format msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"ལག་ལེན་:apt-get [options] command\n" -"apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get འདི་ཐུམ་སྒྲིལ་ཚུ་ཕབ་ལེན་འབད་ནི་དང་\n" -"གཞི་བཙུགས་འབད་ནིའི་དོན་ལུ་ འཇམ་སམ་བརྡ་བཀོད་གྲལ་ཐིག་གི་ངོས་འདྲ་བ་ཅིག་ཨིན། མང་ཤོས་རང་་སྦེ་རང་" -"ལག་ལེན་འཐབ་ཡོད་པའི་བརྡ་བཀོད་ཚུ་\n" -" དུས་མཐུན་དང་གཞི་བཙུགས་འབད་ནི་དེ་ཨིན།\n" -"\n" -"བརྡ་བཀོད་ཚུ་:\n" -" update - འདི་གིས་ཐུམ་སྒྲིལ་ཚུ་གི་ཐོ་ཡིག་གསརཔ་ཚུ་སླར་འདྲེན་འབདཝ་ཨིན།\n" -" upgrade - འདི་གིས་ ཡར་བསྐྱེད་ཀྱི་ལཱ་འགན་ཅིག་འགྲུབ་ཨིན།\n" -" install - འདི་གིས་ ཐུམ་སྒྲིལ་(pkg is libc6 not libc6.deb)གསརཔ་་ཚུ་གཞི་བཙུགས་འབདཝ་" -"ཨིན།\n" -" remove -འདི་གིས་ ཐུམ་སྒྲིལ་ཚུ་རྩ་བསྐྲད་གཏངམ་ཨིན།\n" -" source - འདི་གིས་འབྱུང་ཁུངས་ཀྱི་ཡིག་མཛོད་ཚུ་ཕབ་ལེན་འབདཝ་ཨིན།\n" -" build-dep - འདི་གིས་འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་ཚུ་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་ཚུ་རིམ་སྒྲིག་འབདཝ་" -"ཨིན།\n" -" dist-upgrade - འདི་གིས་ བགོ་བཀྲམ་འདི་ཡར་བསྐྱེད་འབདཝ་ཨིན། apt-get(8)ལུ་བལྟ།\n" -" dselect-upgrade - འདི་གིས་ སེལ་འཐུ་བཤོལ་གྱི་ སེལ་འཐུ་ཚུ་འབདཝ་ཨིན།\n" -" clean - འདི་གིས་ ཕབ་ལེན་འབད་ཡོད་པའི་ཡིག་མཛོད་ཀྱི་ཡིག་སྣོད་ཚུ་ཀྲེག་གཏངམ་ཨིན།\n" -" autoclean -འདི་གིས་ ཕབ་ལེན་འབད་འབདཝ་རྙིངམ་གྱི་ཡིག་མཛོད་ཡིག་སྣོད་ཚུ་ཀྲེག་གཏངམ་ཨིན།\n" -" check - ཆད་པ་འགྱོ་འགྱོ་བའི་རྟེན་འབྲེལ་ཚུ་མེདཔ་སྦེ་བདེན་སྦྱོར་འབདཝ་ཨིན།\n" -"\n" -"གདམ་ཁ་ཚུ་:\n" -" -h འདི་གིས་ཚིག་ཡིག་ལུ་གྲོགས་རམ་འབདཝ་ཨིན།\n" -" -q དྲན་དེབ་འབད་བཏུབ་པའི་ཨའུཊི་པུཊི་ -ཡར་འཕེལ་གྱི་བརྡ་སྟོན་མིན་འདུག\n" -" -qq འཛོལ་བ་ཚུ་གི་དོན་ལུ་རྐྱངམ་ཅིག་མ་གཏོགས་ཨའུཊི་པུཊི་མིན་འདུག\n" -" -d ཕབ་ལེན་རྐྱངམ་ཅིག་ཨིན་- གཞི་བཙུགས་ཡང་ན་ཡིག་མཛོད་ཚུ་སྦུང་ཚན་བཟོ་བཤོལ་མ་འབད།\n" -" -s བྱ་བ་མིན་འདུག གོ་རིམ་མཚུངས་བཟོ་གི་ལས་འགན་འགྲུབ།\n" -" -y འདྲི་དཔྱད་གེ་རང་ལུ་ཨིནམ་སྦེ་ཚོད་དཔག་བཞིནམ་ལས་ནུས་སྤེལ་མ་འབད།\n" -" -f ཆིག་སྒྲིལ་ཞིབ་དཔྱད་འདི་འཐུས་ཤོར་བྱུང་པ་ཅིན་ འཕྲོ་མཐུད་འབད་ནི་ལུ་དཔའ་བཅམ།\n" -" -m ཡིག་མཛོད་འདི་ཚུ་ག་ཡོད་འཚོལ་མ་ཐོབ་པ་ཅིན་འཕྲོ་མཐུད་ནི་ལུ་དཔའ་བཅམ།\n" -" -u ཡར་བསྐྱེད་བཟོ་ཡོད་པའི་ཐུམ་སྒྲིལ་འདི་ཡང་་སྟོན།\n" -" -b འདི་ལེན་ཚར་བའི་ཤུལ་ལས འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་འདི་བཟོ་བརྩིགས་འབད།\n" -" -V བརྡ་དོན་ལེ་ཤཱ་གི་འཐོན་རིམ་ཨང་གྲངས་ཚུ་སྟོན།\n" -" -c=? འ་ནི་རིམ་སྒྲིག་གི་ཡིག་སྣོད་འདི་ལྷག\n" -" -o=? མཐུན་སྒྲིག་གདམ་ཁ་གི་རིམ་སྒྲིག་ཅིག་གཞི་བཙུགས་འབད་ དཔེན་ན་-o dir::cache=/tmp\n" -"བརྡ་དོན་དང་གདམ་ཁ་ཚུ་ཧེང་བཀལ་གི་དོན་ལུ་ apt-get(8)་ sources.list(5) དང་apt." -"conf(5)ལག་ཐོག་\n" -"ཤོག་ལེབ་ཚུ་ལུ་བལྟ།\n" -" འ་ནི་ ཨེ་ཊི་པི་འདི་ལུ་ཡང་དག་ ཀའུ་ ནུས་ཤུགས་ཚུ་ཡོད།\n" +"བརྡ་ལམ་བསྒྱུར་བཅོས:ཁ་ཡིག་བཀོད་ཡོད་པའི་ཌིསིཀ་འདི་\n" +" '%s'\n" +"འདྲེན་འཕྲུལ་'%s'ནང་བཙུགས་བཞིནམ་ལས་ལོག་ལྡེ་འདི་ཨེབ།\n" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "གི་དོན་ལུ་འབྱུང་ཁུངས་ལེན་ནི་ལུ་ཉུང་མཐའ་རང་ཐུམ་སྒྲིལ་གཅིག་ལེན་དགོ" +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 +#, c-format +msgid "Unable to read %s" +msgstr "%s་འདི་ལུ་ལྷག་མ་ཚུགས།" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 +#, c-format +msgid "Unable to change to %s" +msgstr "%s་ལུ་བསྒྱུར་བཅོས་འབད་མ་ཚུགས།" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 +#, c-format +msgid "No mirror file '%s' found " msgstr "" -#: cmdline/apt-mark.cc:68 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "འདི་འབདཝ་ད་འདི་གཞི་བཙུགས་མ་འབད་བས།" +msgid "Can not read mirror file '%s'" +msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" -#: cmdline/apt-mark.cc:74 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" +msgid "No entry found in mirror file '%s'" +msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" +#: methods/mirror.cc:445 +#, c-format +msgid "[Mirror: %s]" +msgstr "" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འཐོན་རིམ་གསར་ཤོས་ཅིག་ཨིན།\n" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "ཡན་ལག་ལས་སྦྱོར་ལུ་ཨའི་པི་སི་རྒྱུད་དུང་གསར་བསྐྲུན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འཐོན་རིམ་གསར་ཤོས་ཅིག་ཨིན།\n" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "དུས་སུ་མ་འབབ་པ་རང་མཐུད་ལམ་འདི་ག་བསྡམས་ཡོད།" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "སྔོན་སྒྲིག་བྱང་ཉེས་གཞི་སྒྲིག་འབད་དོ་!" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "%s་ག་ཕྱེ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "འཕྲོ་མཐུད་འབད་ནིའི་དོན་ལུ་ལོག་ལྡེ་འདི་ཨེབ།" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" msgstr "" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." +#: dselect/install:102 +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "སྦུང་ཚན་བཟོ་བཤོལ་འབད་བའི་བར་ན་ འཛོལ་བ་དག་པ་ཅིག་བྱུང་ནུག་ ང་གི་" + +#: dselect/install:103 +#, fuzzy +msgid "will be configured. This may result in duplicate errors" +msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་རིམ་སྒྲིག་འབད་ནི་ཨིན།་འ་ནི་འདི་གིས་ ངོ་བཤུས་རྫུན་མ་" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" +"ཡང་ན་བརླག་སྟོར་ཞུགས་ཡོད་པའི་རྟེན་འབྲེལ་གི་རྒྱུ་རྐྱེན་ལས་བརྟེན་པའི་འཛོལ་བ་ཚུ་ནང་ལུ་གྲུབ་འབྲས་འཐོན་འོང་། " +"འདི་དེ་བཏུབ་པས་" -#: cmdline/apt.cc:47 +#: dselect/install:105 msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" +"འ་ནི་འཕྲིན་དོན་གྱི་ལྟག་ལས་ཡོད་པའི་འཛོལ་བ་དེ་ཚུ་གལ་ཅན་ཅིག་ཨིན། འདི་ཚུ་གི་དཀའ་ངལ་སེལ་བཞིནམ་ལས་ " +"[I] གཞི་བཙུགས་དེ་ལོག་སྟེ་རང་གཡོག་བཀོལ།" -#: methods/cdrom.cc:203 +#: dselect/update:30 +msgid "Merging available information" +msgstr "འཐོབ་ཚུགས་པའི་བརྡ་དོན་མཉམ་བསྡོམས་འབད་དོ།" + +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "ད་ལྟོ་ཡང་འབྲེལ་ལམ་ཡོད་པའི་མཐུད་མཚམས་གུར་བཀོག་བཞག་མཐུད་མཚམས་དེ་བོད་བརྡ་འབད་འདི་ཡོད།" + +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "དྲྭ་རྟགས་རྒྱུ་རྫས་འདི་ག་ཡོད་འཚོལ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད!" + +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "ཁ་ཕྱོགས་སྤྲོད་བཞག་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" + +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "ཁ་ཕྱོགས་ཁ་སྐོང་རྐྱབ་ནི་ནང་ ནང་འཁོད་ཀྱི་འཛོལ་བ།" + +#: apt-inst/filelist.cc:477 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "སི་ཌི་རོམ་གནད་སྡུད་གཞི་རྟེན་%s་འདི་ལྷག་མ་ཚུགས།" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "%s -> %s ་དང་ %s/%s་ཁ་ཕྱོགས་ཅིག་ཚབ་སྲུང་འབད་ནི་ལུ་འབད་རྩོལ་བསྐྱེད་དོ།" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"འ་ནི་སི་ཌི་-རོམ་འདི་ཨེ་པི་ཊི་་གིས་ ངོས་འཛིན་འབད་ཚུགསཔ་སྦེ་བཟོ་ནིའི་་དོན་ལུ་ ཨེ་པི་ཊི་-སི་ཌི་རོམ་ལག་ལེན་" -"འཐབ་གནང། apt-get་དུས་མཐུན་བཟོ་ནི་དེ་ སི་ཌི་-རོམས་གསརཔ་ཁ་སྐོང་རྐྱབ་ནི་ལུ་ལག་ལེན་འཐབ་མི་བཏུབ།" +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "%s -> %s་ཁ་ཕྱོགས་ཀྱི་ལོག་བལྟབ་ཁ་སྐོང་།" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "སི་དི་-རོམ་ཕྱི་འགྱུར།" +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "རིམ་སྒྲིག་ཡིག་སྣོད་%s/%s་འདི་ངོ་བཤུས་བཟོ།" -#: methods/cdrom.cc:249 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "" -"%s་ནང་་སི་ཌི་-རོམ་འདི་བརྩེགས་བཤོལ་འབད་མ་ཚུགས་ འདི་ད་ལྟོ་ཡང་ལག་ལེན་འཐབ་སྟེ་ཡོདཔ་འོང་ནི་མས།" +msgid "The path %s is too long" +msgstr "%s་འགྲུལ་ལམ་དེ་གནམ་མེད་ས་མེད་རིངམ་འདུག" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "ཌིཀསི་དེ་འཚོལ་མ་ཐོབ།" +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" +msgstr "སྦུང་ཚན་བཟོ་བཤོལ་%s་གཅིག་ལས་ལྷག་སྟེ་འདུག" + +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "སྣོད་ཐོ་%s་འདི་ཁ་ཕྱོགས་སྒྱུར་དེ་ཡོད།" + +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "ཐུམ་སྒྲིལ་འདི་གིས་ག་སྒྱུར་དམིགས་གཏད་%s/%s་ལུ་འབྲི་ནིའི་འབད་རྩོལ་བསྐྱེདཔ་དེ་ཡོད།" + +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "ཁ་སྒྱུར་འགྲུལ་ལམ་འདི་གནམ་མེད་ས་མེད་རིངམ་ཨིན་པས།" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 +#, c-format +msgid "Failed to stat %s" +msgstr "%s་སིཊེཊི་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" + +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "%s་ལུ་%s་བསྐྱར་མིང་བཏགས་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" + +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "སྣོད་ཡིག་%s་འདི་སྣོད་ཡིག་མེན་མི་ཅིག་གིས་ཚབ་བཙུག་དེ་ཡོདཔ་ཨིན།" + +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "ཁོང་རའི་དྲྭ་རྟགས། (#)རྡོབ་ནང་ལུ་མཐུད་མཚམས་ག་ཡོད་འཚོལ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "འགྲུལ་ལམ་དེ་གནམ་མེད་ས་མེད་རིངམ་ཅིག་ཨིན་པས།" + +#: apt-inst/extract.cc:421 +#, c-format +msgid "Overwrite package match with no version for %s" +msgstr "%s་གི་དོན་ལུ་ཚབ་སྲུང་འབད་བའི་ཐུམ་སྒྲིལ་དེ་གིས་འཐོན་རིམ་གཅིག་ད་ཡང་མཐུན་སྒྲིག་མི་འབད་བས།" + +#: apt-inst/extract.cc:438 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" +msgstr "ཐུམ་སྒྲིལ་%s་ནང་ལུ་་ཡིག་སྣོད་%s/%sགིས་གཅིག་ཚབ་སྲུང་འབདཝ་ཨིན།" + +#: apt-inst/extract.cc:498 +#, c-format +msgid "Unable to stat %s" +msgstr "%s་འདི་ལུ་ངོ་བཤུས་འབད་མ་ཚུགས།" + +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, c-format +msgid "Failed to write file %s" +msgstr "%s་ཡིག་སྣོད་འདི་འབྲི་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" + +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "%s་ཡིག་སྣོད་འདི་ཁ་བསྡམས་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" + +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "འ་ནི་འདི་ ཌི་ཨི་བི་ཡིག་མཛོད་ནུས་ཅན་ཅིག་མེན་པས་ '%s'འཐུས་མི་བརླག་སྟོར་ཞུགས་དོ།" + +#: apt-inst/deb/debfile.cc:132 +#, c-format +msgid "Internal error, could not locate member %s" +msgstr "ནང་འཁོད་འཛོལ་བ་གིས་འཐུས་མི་%sའདི་ག་ཡོད་འཚོལ་མ་འཐོབ།" + +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "མིང་དཔྱད་འབད་མ་བཏུབ་པའི་ཚད་འཛིན་ཡིག་སྣོད།" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "ནུས་མེད་ཡིག་མཛོད་ཀྱི་མིང་རྟགས།" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "ཡིག་མཛོད་འཐུས་མི་མགོ་ཡིག་ལྷག་ནིའི་འཛོལ་བ།" + +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "ནུས་མེད་ཡིག་མཛོད་འཐུས་མི་གི་མགོ་ཡིག་" + +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "ནུས་མེད་ཡིག་མཛོད་འཐུས་མི་གི་མགོ་ཡིག་" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "ཡིག་སྣོད་འཚོལ་མ་ཐོབ།" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "ཡིག་མཛོད་འདི་གནམ་མེད་ས་མེད་ཐུང་ཀུ་འདུག" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "ངོ་བཤུས་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "ཡིག་མཛོད་མགོ་ཡིག་ཚུ་ལྷག་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "ཆུ་ཚོད་ལེགས་བཅོས་གཞི་སྒྲིག་འབཐ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "རྒྱུད་དུང་ཚུ་གསར་བསྐྲུན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "ཡུ་ཨར་ཨེལ་ ནུས་མེད་ ཉེ་གནས་ ཡུ་ཨར་ཨེལ་ཨེསི་འདི་གིས་//་དང་གཅིག་ཁར་འགོ་བཙུགས་ནི་མི་འོང་།" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "ཇི་ཛིཔ་འདི་ལག་ལེན་འཐབ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "ནང་བསྐྱོད་འབད་དོ།" +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "ངན་ཅན་གྱི་ཡིག་མཛོད།" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "དོ་བཉམ་གི་མིང་འདི་གཏན་འབེབས་བཟོ་མ་ཚུགས།" +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "ཊར་ཅེག་སམ་དེ་འཐུས་ཤོར་བྱུང་ཡོད་ ཡིག་མཛོད་ངན་ཅན་བྱུང་ནུག" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "ཉེ་གནས་མིང་འདི་གཏན་འབེེབས་བཟོ་མ་ཚུགས།" +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "མ་ཤེས་པའི་ ཊཱར་་མགོ་ཡིག་་དབྱེ་བ་ %u་ འཐུས་མི་ %s།" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/install-progress.cc:57 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "སར་བར་འདི་གིས་ མཐུད་ལམ་འདི་ངོས་ལེན་འབད་མ་བཏུབ་པར་སླབ་མས: %s" +msgid "Progress: [%3i%%]" +msgstr "" -#: methods/ftp.cc:225 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" + +#: apt-pkg/init.cc:146 #, c-format -msgid "USER failed, server said: %s" -msgstr "ལག་ལེན་པ་འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་གྱིས་སླབ་མས་: %s" +msgid "Packaging system '%s' is not supported" +msgstr "སྦུང་ཚན་བཟོ་ནིའི་རིམ་ལུགས་ '%s' འདི་ལུ་རྒྱབ་སྐྱོར་མ་འབད་བས།" -#: methods/ftp.cc:232 +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "འོས་འབབ་དང་ལྡན་པའི་སྦུང་ཚན་རིམ་ལུགས་ཀྱི་དབྱེ་བ་ཅིག་གཏན་འབེབས་བཟོ་མི་ཚུགས་པས།" + +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "PASS failed, server said: %s" -msgstr "རྩི་སྤྲོད་འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་གྱིས་སླབ་མས་: %s" +msgid "Wrote %i records.\n" +msgstr "%i་དྲན་མཐོ་དེ་ཚུ་བྲིས་ཡོད།\n" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"པོརོ་སི་སར་བར་ཅིག་གསལ་བཀོད་འབད་ཡོད་འདི་འབདཝ་ད་ ནང་བསྐྱོད་ཡིག་ཚུགས་མིན་འདུག་ Acquire::ftp::" -"ProxyLoginའདི་སྟོངམ་ཨིན་པས།" +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "%i བྱིག་འགྱོ་ཡོད་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་ཁར་ %i དྲན་ཐོ་འདི་ཚུ་བྲིས་ཡོད།\n" -#: methods/ftp.cc:280 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "ནང་བསྐྱོད་ཡིག་ཚུགས་ བརྡ་བཀོད་'%s'་འདི་འཐོས་ཤོར་བྱུང་ཡོད་ སར་བར་གྱིས་སླབ་མས:%s" +msgid "Wrote %i records with %i mismatched files\n" +msgstr "%i་མཐུན་སྒྲིག་མེདཔ་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་ཁར་ %i་དྲན་ཐོ་ཚུ་བྲིས་བཞག་ཡོདཔ་ཨིན།\n" -#: methods/ftp.cc:306 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "ཡིག་དཔར་རྐྱབ་མ་བཏུབ་སར་བར་གྱིས་སླབ་མས། %s" +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" +"%i བྱིག་འགྱོ་ཡོད་པའི་ཡིག་སྣོད་ཚུ་དང་ %iམཐུན་སྒྲིག་མེད་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་ཁར་ %i དྲན་ཐོ་འདི་ཚུ་བྲིས་" +"ཡོདཔ་ཨིན།\n" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "མཐུད་ལམ་ངལ་མཚམས" +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "སར་བར་གྱིས་མཐུད་ལམ་འདི་ཁ་བསྡམས་ཏེ་ཡོདཔ་ཨིན།" +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "ཨེམ་ཌི་༥་ ཁྱོན་བསྡོམས་མ་མཐུན་པ།" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "ལན་གྱིས་ གནད་ཁོངས་གུར་ལས་ ལུད་སོང་སྟེ་ཡོདཔ་ཨིན།" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "ཐུམ་སྒྲིལ་གྱི་ཐོ་ཡིག་ཡང་ན་གནས་ཚད་ཡིག་སྣོད་ཚུ་ མིང་དཔྱད་ཡང་ན་ཁ་ཕྱེ་མ་ཚུགས།" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "གནད་སྤེལ་ལམ་ལུགས་ ངན་ཅན།" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "འ་ནི་དཀའ་ངལ་འདི་ཚུ་སེལ་ནིའི་ལུ་ ཁྱོད་ཀྱི་ apt-get update་དེ་གཡོག་བཀོལ་དགོཔ་འོང་།" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "སོ་ཀེཊི་ཅིག་གསར་བསྐྲུན་འབད་མ་ཚུགས་པར་ཡོདཔ་ཨིན།" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "འབྱུང་ཁུངས་ཚུ་ཀྱི་ཐོ་ཡིག་དེ་ལྷག་མི་ཚུགས་པས།" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "གནད་སྡུད་སོ་ཀེཊི་མཐུད་མ་ཚུགས་པར་ཡོདཔ་ཨིན་ མཐུད་ལམ་ངལ་མཚམས།" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "ཐུམ་སྒྲིལ་འདྲ་མཛོད་སྟོངམ།" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "ཐུམ་སྒྲིལ་འདྲ་མཛོད་ཡིག་སྣོད་འདི་ངན་ཅན་ཨིན་པས།" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "བྱ་ཡུལ་གྱི་སོ་ཀེཊི་མཐུད་མ་ཚུགས།" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "ཐུམ་སྒྲིས་འདྲ་མཛོད་ཡིག་སྣོད་འདི་ མི་མཐུན་པའི་འཐོན་རིམ་ཅིག་ཨིན་པས།" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo་འདི་གིས་ཉན་ནིའི་སོ་ཀེཊི་ཅིག་ལེན་མ་ཚུགས།" +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "ཐུམ་སྒྲིལ་འདྲ་མཛོད་ཡིག་སྣོད་འདི་ངན་ཅན་ཨིན་པས།" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "སོ་ཀེཊི་ཅིག་བསྡམས་མ་ཚུགས།" +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "འ་ནི་ཨེ་པི་ཊི་ འདི་གིས་ '%s'འཐོན་རིམ་བཟོ་ནིའི་རིམ་ལུགས་དེ་ལུ་རྒྱབ་སྐྱོར་མི་འབད་བས།" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "སོ་ཀེཊི་གུར་ཉེན་མ་ཚུགས།" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "ཐུམ་སྒྲིལ་འདྲ་མཛོད་འདི་བཟོ་བཀོད་སོ་སོ་ཅིག་གི་དོན་ལུ་བཟོ་བརྩིགས་འབད་འབདཝ་ཨིནཔས།" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "སོ་ཀེཊི་གི་མིང་འདི་གཏན་འབེབས་བཟོ་མ་ཚུགས།" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "རྟེནམ་ཨིན།" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "འདྲེན་ལམ་གྱི་བརྡ་བཀོད་འདི་བཏང་མ་ཚུགས།" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "སྔོན་གོང་མ་རྟེནམ་ཨིན།" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "མ་ཤེས་པའི་ཁ་བྱང་གི་རིགས་ཚན་%u (AF_*)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "བསམ་འཆར་བཀོདཔ་ཨིན།" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "ཨི་པི་ཨར་ཊི་ འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་གིས་སླབ་མས:%s" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "འོས་སྦྱོར་འབདཝ་ཨིན།" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "གནད་སྡུད་སོ་ཀེཊི་ མཐུད་ནི་ངལ་མཚམས་བྱུང་ནུག" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "མི་མཐུནམ་ཨིན།" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "མཐུད་ལམ་འདི་དང་ལེན་འབད་མ་ཚུགས།" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "ཚབ་བཙུགསཔ་ཨིན།" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "ཡིག་སྣོད་ལུ་་དྲྭ་རྟགས་བཀལ་བའི་བསྒང་དཀའ་ངལ།" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "ཕན་མེདཔ་བཟོཝ་ཨིན།" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "ཡིག་སྣོད་ལེན་མ་ཚུགས་ སར་བར་'%s'གིས་སླབ་མས" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "གནད་སྡུད་སོ་ཀེཊི་ངལ་མཚམས།" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "གནད་སྡུད་གནས་སོར་དེ་འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་'%s'་གིས་སླབ་མས།" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "གལ་ཅན།" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "འདྲི་དཔྱད།" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "དགོས་མཁོ་ཡོདཔ།" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "ལས་བཀོལ་འབད་མ་ཚུགས།" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "ཚད་ལྡན།" -#: methods/connect.cc:76 -#, c-format -msgid "Connecting to %s (%s)" -msgstr "%s (%s)་ལུ་མཐུད་དོ།" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "གདམ་ཁ་ཅན།" -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "ཐེབས།" -#: methods/connect.cc:94 +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "%s (f=%u t=%u p=%u)གི་དོན་ལུ་སོ་ཀེཊི་ཅིག་གསར་བསྐྲུན་འབད་མ་ཚུགས།" +msgid "The method driver %s could not be found." +msgstr "ཐབས་ལམ་འདྲེན་བྱེད་%s་འདི་མ་འཐོབ།" -#: methods/connect.cc:100 -#, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "%s:%s (%s)ལུ་མཐུད་ལམ་དེ་འགོ་འབྱེད་འབད་མ་ཚུགས།" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "'dpkg-dev'་ཐུམ་སྒྲིལ་དེ་གཞི་བཙུགས་འབད་ཡོད་པ་ཅིན་ཨེབ་གཏང་འབད།\n" -#: methods/connect.cc:108 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr " %s:%s (%s)ལུ་མཐུད་མ་ཚུགས་ མཐུད་ལམ་ངལ་མཚམས།" +msgid "Method %s did not start correctly" +msgstr "ཐབས་ལམ་ %s འདི་ངེས་བདེན་སྦེ་འགོ་མ་བཙུགས་འབད།" -#: methods/connect.cc:126 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr " %s:%s (%s)ལུ་མཐུད་མ་ཚུགས།" +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "ཁ་ཡིག་བཀོད་ཡོད་པའི་ ཌིསི་འདི་བཙུགས་གནང་། '%s'འདྲེན་འཕྲུལ་ནང་'%s' དང་ལོག་ལྡེ་འདི་ཨེབ།་" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Connecting to %s" -msgstr "%s་ལུ་མཐུད་དོ།" +msgid "Index file type '%s' is not supported" +msgstr "ཟུར་ཐོ་ཡིག་སྣོད་ཀྱི་དབྱེ་བ་ '%s' འདི་རྒྱབ་སྐྱོར་མ་འབད་བས།" -#: methods/connect.cc:180 methods/connect.cc:199 -#, c-format -msgid "Could not resolve '%s'" -msgstr "'%s'མོས་མཐུན་འབད་མ་ཚུགས།" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "རྟེན་འབྲེལ་གྱི་རྩ་འབྲེལ་བཟོ་བརྩིགས་འབད་དོ།" -#: methods/connect.cc:205 -#, c-format -msgid "Temporary failure resolving '%s'" -msgstr "'%s'མོས་མཐུན་འབད་ནི་ལུ་གནས་སྐབས་ཀྱི་འཐུས་ཤོར།" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "མི་ངོ་འཐོན་རིམཚུ།" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "'%s:%s' (%i)་མོས་མཐུན་འབདཝ་ད་ངན་པ་ཅིག་བྱུང་ཡི།" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "བརྟེན་པའི་བཟོ་བཏོན།" -#: methods/connect.cc:211 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +#, fuzzy +msgid "Reading state information" +msgstr "འཐོབ་ཚུགས་པའི་བརྡ་དོན་མཉམ་བསྡོམས་འབད་དོ།" + +#: apt-pkg/depcache.cc:250 #, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "'%s:%s' (%i)་མོས་མཐུན་འབདཝ་ད་ངན་པ་ཅིག་བྱུང་ཡི།" +msgid "Failed to open StateFile %s" +msgstr "%s་ག་ཕྱེ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" -#: methods/connect.cc:258 +#: apt-pkg/depcache.cc:256 #, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "%s %s:ལུ་མཐུད་མ་ཚུགས།" +msgid "Failed to write temporary StateFile %s" +msgstr "%s་ཡིག་སྣོད་འདི་འབྲི་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "" -"ནང་འཁོད་འཛོལ་བ: མིང་རྟགས་འདི་ལེགས་ཤོམ་ཅིག་འདུག་ འདི་འབདཝ་ད་མཛུབ་རྗེས་ལྡེ་མིག་དེ་གཏན་འབེབས་བཟོ་" -"མ་ཚུགས?!" +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "%s (%s -> %s)བསྐྱར་མིང་བཏགས་ནི་འདི་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན།" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "ཉུང་མཐའ་རང་ནུས་མེད་ཀྱི་མིང་རྟགས་ཅིག་གདོང་ཐུག་བྱུང་སྟེ་ཡོདཔ་ཨིན།" +#: apt-pkg/acquire-item.cc:163 +#, fuzzy +msgid "Hash Sum mismatch" +msgstr "ཨེམ་ཌི་༥་ ཁྱོན་བསྡོམས་མ་མཐུན་པ།" -#: methods/gpgv.cc:174 +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "ཚད་མ་མཐུན།" + +#: apt-pkg/acquire-item.cc:173 #, fuzzy -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "" -"མིང་རྟགས་བདེན་སྦྱོར་འབད་ནི་ལུ་'%s'འདི་ལག་ལེན་འཐབ་མ་ཚུགས། (gpgv་དེ་ཁཞི་བཙུགས་འབད་ཡོདཔ་ཨིན་ན།?)" +msgid "Invalid file format" +msgstr "ནུས་མེད་བཀོལ་སྤྱོད་%s" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1573 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "gpgv་ལག་ལེན་འཐབ་ནི་ལུ་མ་ཤེས་པའི་འཛོལ་བ་།" +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "འོག་གི་མིང་རྟགས་ཚུ་ནུས་མེད་ཨིན་པས།:\n" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "འོག་གི་ ཨའི་ཌི་་ ལྡེ་མིག་ཚུ་གི་དོན་ལུ་མི་དམང་གི་ལྡེ་མིག་འདི་འཐོབ་མི་ཚུགས་པས:\n" -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1669 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -"འོག་གི་མིང་རྟགས་ཚུ་བདེན་སྦྱོར་་འབད་མ་ཚུགས་ག་ཅི་སྦེ་ཟེར་བ་ཅིན་མི་དམང་ལྡེ་མིག་དེ་འཐོབ་མི་ཚུགས་པས:\n" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "ཡིག་སྣོད་འདི་ལུ་འབྲིཝ་ད་འཛོལ་བ།" +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "སར་བར་ནང་ལས་ལྷག་པའི་བསྒང་འཛོལ་བ། ཐག་རིང་མཇུག་གི་མཐུད་ལམ་དེ་ཁ་བསྡམས།" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "སར་བར་ནང་ལས་ལྷག་པའི་བསྒང་འཛོལ་བ།" +#: apt-pkg/acquire-item.cc:1859 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +" %s་ཐུམ་སྒྲིལ་གི་དོན་ལུ་ང་་གི་ཡིག་སྣོད་ཅིག་ག་ཡོད་འཚོལ་མི་འཐོབ་པས། འདི་འབདཝ་ལས་ཁྱོད་ཀྱི་ལག་ཐོག་ལས་ " +"འ་ནི་ཐུམ་སྒྲིལ་འདི་གི་དཀའ་ངལ་སེལ་དགོཔ་འདུག (arch འདི་བྱིག་སོངམ་ལས་བརྟེན།)" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "ཡིག་སྣོད་ལུ་འབྲིཝ་ད་འཛོལ་བ།" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "སེལ་འཐུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"ཐུམ་སྒྲིལ་ ཟུར་ཐོ་ཡིག་སྣོད་ཚུ་ངན་ཅན་འགྱོ་ནུག ཡིག་སྣོད་ཀྱི་མིང་མིན་འདུག: %s་ཐུམ་སྒྲིལ་གྱི་དོན་ལུ་ས་སྒོ།" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "མཐུད་ལམ་ངལ་མཚམས་འབད་ཡོད།" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "ཟུར་ཐོ་ཡིག་སྣོད་ཀྱི་དབྱེ་བ་ '%s' འདི་རྒྱབ་སྐྱོར་མ་འབད་བས།" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "ཨའུཊི་པུཊི་ཡིག་སྣོད་ལུ་འབྲིཝ་ད་འཛོལ་བ།" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "%s་ ངོ་བཤུས་འབད་མ་ཚུགས།" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "མགོ་ཡིག་ཚུ་གི་དོན་ལུ་བསྒ྄ག་དོ།" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "འདྲ་མཛོད་ལུ་མཐུན་འགྱུར་མེན་པའི་འཐོན་རིམ་བཟོ་ནིའི་རིམ་ལུགས་ཅིག་འདུག" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "མགོ་ཡིག་གི་གྲལ་ཐིག་བྱང་ཉེས།" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "%s (པི་ཀེ་ཇི་འཚོལ་ནི)དེ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ནུས་མེད་ལན་གསལ་གི་མགོ་ཡིག་ཅིག་བཏང་ཡོད།" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་ཐུམ་སྒྲིལ་ཨང་གྲངས་ལས་ལྷག་ནུག" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "ཨེཆི་ཊི་ཊི་པི་སར་བར་འདི་གིས་ནུས་མེད་ནང་དོན་རིང་-ཚད་ཀྱི་མགོ་ཡིག་ཅིག་བཏང་ཡོད།" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་ཐོན་རིམ་ཨང་གྲངས་ལས་ལྷག་ནུག" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ ནུས་མེད་ ནང་དོན་-ཁྱབ་ཚད་ཀྱི་མགོ་ཡིག་ཅིག་བཏང་ཡོད།" +#: apt-pkg/pkgcachegen.cc:263 +#, fuzzy +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་ཐོན་རིམ་ཨང་གྲངས་ལས་ལྷག་ནུག" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "འ་ནི་ ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ ཁྱབ་ཚད་ཀྱི་རྒྱབ་སྐྱོར་དེ་ཆད་པ་བཟོ་བཏང་ནུག" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་བརྟེན་པའི་ཨང་གྲངས་ལས་ལྷག་ནུག" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "མ་ཤེས་པའི་ཚེས་རྩ་སྒྲིག" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "ཡིག་སྣོད་རྟེན་འབྲེལ་འདི་ཚུ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་ཐུམ་སྒྲིལ་ %s %s ་འདི་མ་ཐོབ་པས།" + +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་གྱི་ཐོ་ཡིག་%s་དེ་ངོ་བཤུས་འབད་མ་ཚུགས།" + +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "ཐུམ་སྒྲིལ་ཐོ་ཡིག་ཚུ་ལྷག་དོ།" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "མགོ་ཡིག་གནད་སྡུད་བྱང་ཉེས།" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "ཡིག་སྣོད་བྱིན་མི་ཚུ་བསྡུ་ལེན་འབད་དོ།" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "བཐུད་ལམ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr " %sལུ་འབྲི་མ་ཚུགས།" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "ནང་འཁོད་འཛོལ་བ།" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "IO འཛོལ་བ་འབྱུང་ཁུངས་འདྲ་མཛོད་སྲུང་བཞག་འབད་དོ།" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "ཡར་བསྐྱེད་རྩིས་བཏོན་དོ་... " +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "%sསིལ་ཚོང་པ་སྡེབ་ཚན་གྱི་ནང་ན་མཛུབ་རྗེས་མིན་འདུག" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "འབད་ཚར་ཡི།" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "ཐོ་བཀོད་འབད་མི་སྣོད་ཐོ་%s་ཆ་ཤས་འདི་བརླག་སྟོར་ཟུགས་ཏེ་འདུག" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/acquire.cc:91 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "ཡིག་མཛོད་སྣོད་ཐོ་ %s་ ཆ་ཤས་འདི་བརླག་སྟོར་ཞུགས་ཏེ་འདུག" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "ཐོ་བཀོད་འབད་ཡོད་པའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རྐྱབ་མ་ཚུགས།" -#: apt-private/private-list.cc:164 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "%li་ གི་བརླག་སྟོར་ཞུགས་པའི་ཡིག་སྣོད་%li (%s ལྷག་ལུས་དོ།)" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "རྟེན་འབྲེལ་ནོར་བཅོས་འབད་དོ།" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr " %li་གི་བརླག་སྟོར་ཟུགསཔའི་ཡིག་སྣོད་ %li" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr "འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"ཟུར་ཐོ་ཡིག་སྣོད་ལ་ལུ་ཅིག་ཕབ་ལེན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ནུག་ འདི་ཚུ་སྣང་མེད་སྦེ་བཞགཔ་མ་ཚད་ ཚབ་ལུ་" +"རྙིངམ་འདི་ཚུ་ལག་ལེན་འཐབ་ནུག" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "རྟེན་འབྲེལ་འདི་ནོར་བཅོས་འབད་མི་ཚུགས་པས།" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "" +"ཁྱོད་རའི་sources.listགི་ཐོ་ཡིག་ནང་ལུ་ཁྱོད་ཀྱི་ 'འབྱུང་ཁུངས་' ཡུ་ཨར་ཨའི་ཚུ་་ལ་ལུ་ཅིག་བཙུགས་དགོ" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "ཡར་བསྐྱེད་འབད་ཡོད་པའི་ཆ་ཚན་འདི་ཆུང་ཀུ་བཟོ་མི་ཚུགས་པས།" +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr "འབད་ཚར་ཡི།" +#: apt-pkg/policy.cc:422 +#, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "དགའ་གདམ་ཡིག་སྣོད་ནང་ལུ་ནུས་མེད་ཀྱི་དྲན་ཐོ་ ཐུམ་སྒྲིལ་མགོ་ཡིག་མིན་འདུག" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "འ་ནི་འདི་ཚུ་ནོར་བཅོས་འབད་ནི་ལུ་ཁྱོད་ཀྱི་'apt-get -f install'དེ་གཡོག་བཀོལ་དགོཔ་འོང་།" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "ངོ་རྟགས་ཨང་གི་དབྱེ་བ་ %s འདི་ཧ་གོ་མ་ཚུགས།" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "མ་ཚང་པའི་རྟེན་འབྲེལ་ཚུ། -f ལག་ལེན་འཐབ་སྟེ་འབད་རྩོལ་བསྐྱེད།" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "གོ་རྟགས་ཨང་གི་དོན་ལུ་ གཙོ་རིམ་(ཡང་ན་ ཀླད་ཀོར་)ཚུ་གསལ་བཀོད་མ་འབད་བས།" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -#: apt-private/private-output.cc:234 +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [གཞི་བཙུགས་འབད་ཡོད།]" - -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [གཞི་བཙུགས་འབད་ཡོད།]" +msgid "Could not configure '%s'. " +msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." msgstr "" +"མི་མཐུན་/སྔོན་རྟེན་འཕྲལ་བཀོལ་ལས་བརྟེན་ འ་ནི་གཞི་བཙུགས་གཡོག་བཀོལ་འདི་ལུ་ མེད་དུ་མི་རུང་བའི་%sཐུམ་" +"སྒྲིལ་ གནས་སྐབས་ཀྱི་རྩ་བསྐྲད་གཏང་ནི་འདི་དགོས་མཁོ་ཡོདཔ་ཨིན། འདི་འཕྲལ་འཕྲལ་རང་བྱང་ཉེས་ཅིག་ཨིན་པས་ " +"འདི་འབདཝ་ད་ཁྱོད་ཀྱི་ཐད་རི་འབའ་རི་འབད་དགོཔ་ཨིན་པ་ཅིན་ APT::Force-LoopBreak གདམ་ཁ་འདི་ཤུགས་" +"ལྡན་བཟོ།" -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [གཞི་བཙུགས་འབད་ཡོད།]" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "གྲལ་ཐིག་%u་འདི་འབྱུང་ཁུངས་ཐོ་ཡིག་%s་ནང་ལུ་གནམ་མེད་ས་མེད་རིངམོ་འདུག" -#: apt-private/private-output.cc:245 +#: apt-pkg/cdrom.cc:571 #, fuzzy -msgid "[installed]" -msgstr " [གཞི་བཙུགས་འབད་ཡོད།]" +msgid "Unmounting CD-ROM...\n" +msgstr "སི་ཌི་-རོམ་སྦྱར་བརྩེགས་མ་འབད་བར་བཞག་དོ..." -#: apt-private/private-output.cc:249 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +msgid "Using CD-ROM mount point %s\n" +msgstr " %s སི་ཌི-རོམ་སྦྱར་བརྩེགས་ཀྱི་ས་ཚིགས་ལག་ལེན་འཐབ་དོ།\n" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "ཌིསིཀ་གི་དོན་ལུ་བསྒུག་དོ...\n" -#: apt-private/private-output.cc:435 -#, c-format -msgid "but %s is installed" -msgstr "འདི་འབདཝ་ད་%s་འདི་གཞི་བཙུགས་འབད་ཡོད།" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "སི་ཌི་-རོམ་སྦྱར་བརྩེགས་འབད་དོ...\n" -#: apt-private/private-output.cc:437 +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "ངོས་འཛིན་འབད་དོ..." + +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "but %s is to be installed" -msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" +msgid "Stored label: %s\n" +msgstr "གསོག་འཇོག་འབད་ཡོད་པའི་ཁ་ཡིག:%s \n" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "འདི་འབདཝ་ད་%s་འདི་གཟི་བཙུགས་འབད་མི་བཏུབ་པས།" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "ཟུར་ཐོ་ཡིག་སྣོད་ཚུ་གི་དོན་ལུ་ ཌིསིཀ་ཞིབ་ལྟ་འབད་དོ...\n" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "འདི་འབདཝ་ད་ འདི་བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་ཅིག་ཨིན་པས།" +#: apt-pkg/cdrom.cc:734 +#, fuzzy, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "%i་ཐུམ་སྒྲིལ་གྱི་ཟུར་ཐོ་ཚུ་ཐོབ་ཅི་ %i་འབྱུང་ཁུངས་ཟུར་ཐོ་ཚུ་དང་ %iམིང་རྟགས་ཚུ།\n" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "འདི་འབདཝ་ད་འདི་གཞི་བཙུགས་མ་འབད་བས།" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "འདི་འབདཝ་ད་འདི་གཞི་བཙུགས་མི་འབད་ནི་ཨིན་པས།" +#: apt-pkg/cdrom.cc:771 +#, fuzzy, c-format +msgid "Found label '%s'\n" +msgstr "གསོག་འཇོག་འབད་ཡོད་པའི་ཁ་ཡིག:%s \n" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr "ཡང་ན།" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "དེ་ནུས་ཅན་གྱི་མིང་ཅིག་མེན་པས་ ལོག་སྟེ་རང་འབད་རྩོལ་བསྐྱེད།\n" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "འོག་གི་ཐུམ་སྒྲིལ་ཚུ་ལུ་རྟེན་འབྲེལ་མ་ཚང་པས:" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"ཌིསིཀ་འདི་བོད་བརྡ་འབད་དོ་ཡོདཔ་ཨིན།\n" +"'%s'\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "ཐུམ་སྒྲིལ་གྱིཐོ་ཡིག་ཚུ་འདྲ་བཤུས་རྐྱབ་དོ..." -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "འོག་གི་ཐུམ་སྒྲིལ་འདི་ཚུ་རྩ བསྐྲད་གཏང་འོང་:" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "འབྱུང་ཁུངས་ཀྱི་ཐོ་ཡིག་གསརཔ་ཅིག་འབྲི་དོ།\n" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "འོག་གི་ཐུམ་སྒྲིལ་འདི་ཚུ་ལོག་སྟེ་རང་བཞག་ནུག:" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "འ་ནི་ ཌིསིཀ་གི་དོན་ལུ་ འབྱུང་ཁུངས་ཧྲིལ་བུ་ཚུ་:\n" + +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"ཐུམ་སྒྲིལ་%s་འདི་ལོག་འདི་རང་གཞི་བཙུགས་འབད་དགོཔ་འདུག་ འདི་འབདཝ་ད་འདི་གི་དོན་ལུ་ཡིག་མཛོད་ཅིག་འཚོལ་" +"མ་ཐོབ།" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "འོག་གི་ཐུམ་སྒྲིལ་འདི་ཚུ་ཡར་བསྐྱེད་འབད་འོང་:" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"འཛོལ་བ་ pkgProblemResolver::གིས་བཟོ་བཏོན་འབད་ཡོད་པའི་མཚམས་དེ་ཚུ་མོས་མཐུན་བཟོཝ་ཨིན འ་ནི་ཐུམ་" +"སྒྲིལ་ཚུ་འཛིན་པའི་རྒྱུ་རྐྱེན་ལས་བརྟེན་ཨིན་པས།" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "འོག་གི་ཐུམ་སྒྲལ་འདི་ཚུ་མར་ཕབ་འབད་འོང་:" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "དཀའ་ངལ་འདི་ནོར་བཅོས་འབད་མ་ཚུགས་ ཁྱོད་ཀྱི་ཐུམ་སྒྲིལ་ཆད་པ་ཚུ་འཆང་འདི་འདུག" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "འོག་གི་འཆང་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་བསྒྱུར་བཅོས་འབད་འོང་:" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: apt-private/private-output.cc:668 -#, c-format -msgid "%s (due to %s) " -msgstr "%s( %s་གིས་སྦེ)" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" msgstr "" -"ཉེན་བརྡ:འོག་གི་ཉོ་མཁོ་བའི་ཐུམ་སྒྲིལ་ཚུ་རྩ་བསྐྲད་གཏང་འོང་།\n" -"ཁྱོད་ཀྱིས་ཁྱོད་རང་ག་ཅི་འབདཝ་ཨིན་ན་ངེས་སྦེ་མ་ཤེས་ཚུན་འདི་འབད་ནི་མི་འོང་།!" -#: apt-private/private-output.cc:707 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu་ཡར་བསྐྱེད་འབད་ཡོད་ %lu་འདི་གསརཔ་སྦེ་གཞི་བཙུགས་འབད་ཡོད།" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: apt-private/private-output.cc:711 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu་འདི་ལོག་གཞི་བཙུགས་འབད་ཡོད།" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" -#: apt-private/private-output.cc:713 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%lu downgraded, " -msgstr "%lu་འདི་མར་ཕབ་འབད་ཡོད།" +msgid "Unable to parse package file %s (1)" +msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" -#: apt-private/private-output.cc:715 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "རྩ་བསྐྲད་འབད་ནི་ལུ་%lu་དང་%lu་ཡར་བསྐྱེད་མ་འབད་བས།\n" +msgid "Unable to parse package file %s (2)" +msgstr "%s (༢་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" -#: apt-private/private-output.cc:719 -#, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu་འདི་ཆ་ཚང་སྦེ་གཞི་བཙུགས་མ་འབད་ཡང་ན་རྩ་བསྐྲད་མ་གཏང་པས།\n" +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "" +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "%s་གི་ཚབ་ལུ་%s་སེལ་འཐུ་འབད་ནི་སེམས་ཁར་བཞག\n" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" msgstr "" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "ཝའི།" - -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "%s་ཁ་ཕྱོགས་ཡིག་སྣོད་ནང་ནུས་མེད་གྲལ་ཐིག" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "དུས་མཐུན་བཟོ་བའི་བརྡ་བཀོད་འདི་གིས་སྒྲུབ་རྟགས་ཚུ་མི་འབག་འབད།" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" -#: apt-private/private-update.cc:90 -#, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཐོ་ཡིག་ %s(ཡུ་ཨར་ཨའི་ མིང་དཔྱད་འབད་ནི)གི་ནང་ན།" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: apt-pkg/sourcelist.cc:170 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(dist མིང་དཔྱད་འབད་ནི་)ནང་ན།" -#: apt-private/private-show.cc:156 -#, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/sourcelist.cc:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་ %lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s (dist)གི་ནང་ན།" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/sourcelist.cc:184 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(dist མིང་དཔྱད་འབད་ནི་)ནང་ན།" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "" -"ནང་འཁོད་ཀྱི་འཛོལ་བ་ གཞི་བཙུགས་ཐུམ་སྒྲིལ་ཚུ་ ཆད་པ་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་དང་གཅིག་ཁར་བོད་བརྡ་འབད་འདི་" -"ཡོད!" +#: apt-pkg/sourcelist.cc:190 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(dist མིང་དཔྱད་འབད་ནི་)ནང་ན།" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "ཐུམ་སྒྲིལ་ཚུ་རྩ་བསྐྲད་བཏང་དགོཔ་འདུག་འདི་འབདགཝ་ད་རྩ་བསྐྲད་གཏང་ནི་འདི་ལྕོགས་མིན་ཐལ་ཏེ་འདུག" +#: apt-pkg/sourcelist.cc:193 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(dist མིང་དཔྱད་འབད་ནི་)ནང་ན།" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "ནང་འཁོད་འཛོལ་བ་ གོ་རིམ་བཟོ་ནི་ཚུ་མཇུག་མ་བསྡུ་བས།" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་ %lu འབྱུང་ཁུངས་ཐོ་ཡིག་ %s (ཡུ་ཨར་ཨའི་)གི་ནང་ན།" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"ག་ཅི་གི་ཡ་མཚན་ཆེ་མི་ཆེ་ ཚད་འདི་གིས་ email apt@packages.debian.org་ལུ་མཐུན་སྒྲིག་མི་འབད་" -"བས།" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་ %lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s (dist)གི་ནང་ན།" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "%sBལེན་ནི་ལུ་དགོཔ་པས། ཡིག་མཛོད་ཚི་གི་%sB་\n" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཐོ་ཡིག་ %s(ཡུ་ཨར་ཨའི་ མིང་དཔྱད་འབད་ནི)གི་ནང་ན།" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "ཡིག་མཛོད་ཀྱི་%sB་འདི་ལེན་དགོ་པས།\n" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(ཡང་དག་ dist)གི་ནང་ན།" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 -#, fuzzy, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "ཁ་སྐོང་གི་%sB་འདི་བཤུབ་པའི་ཤུལ་ལས་ཌིཀསི་གི་བར་སྟོང་དེ་ལག་ལེན་འཐབ་འོང་།\n" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(dist མིང་དཔྱད་འབད་ནི་)ནང་ན།" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 -#, fuzzy, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "%sB་འདི་ཤུབ་པའི་ཤུལ་ལས་ཀྱི་བར་སྟོང་དེ་དལཝ་སྦེ་ལུས་འོང་།\n" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "%s་ཁ་ཕྱེ་དོ།" -#: apt-private/private-install.cc:200 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "You don't have enough free space in %s." -msgstr "%s ནང་ཁྱོད་ལུ་བར་སྟོང་དལཝ་ལངམ་སྦེ་མིན་འདུག" +msgid "Malformed line %u in source list %s (type)" +msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%u་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s (དབྱེ་བ)་ནང་ན།" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "དཀའ་ངལ་ཚུ་ཡོདཔ་ལས་-y ་འདི་ --force-yes་མེདཐོག་ལས་ལག་ལེན་འཐབ་སྟེ་ཡོད།" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "དབྱེ་བ་'%s'་འདི་གྲལ་ཐིག་%u་གུར་ལུ་ཡོདཔ་འབྱུང་ཁུངས་ཐོ་ཡིག་%s་གི་ནང་ན་མ་ཤེས་པས།" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "གལ་ཆུང་རྐྱངམ་ཅིག་ཁསལ་བཀོད་འབད་ནུག་ འདི་འབདཝ་ད་འ་ནི་འདི་གལ་ཆུང་གི་བཀོལ་སྤྱོད་མེན།" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "དབྱེ་བ་'%s'་འདི་གྲལ་ཐིག་%u་གུར་ལུ་ཡོདཔ་འབྱུང་ཁུངས་ཐོ་ཡིག་%s་གི་ནང་ན་མ་ཤེས་པས།" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "ཨིན་ ང་གིས་སླབ་དོ་བཟུམ་སྦེ་རང་འབད!" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "%sགི་དོན་ལུ་འཛིན་གྲོལ་'%s'་དེ་མ་འཐོབ་པས།" -#: apt-private/private-install.cc:222 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"ཁྱོད་ཀྱི་གནོད་ངན་འབྱུང་ནིའི་ལཱ་ཅི་འབད་ནི་འབད་དོ།\n" -"འཕྲོ་མཐུད་འབད་ནིའི་དོན་ལུ་'%s'ཚིག་ཚན་ནང་ལུ་ཡིག་དཔར་རྐྱབས།\n" -" ?] " +msgid "Version '%s' for '%s' was not found" +msgstr "'%s'་གི་དོན་ལུ་འཐོན་རིམ་'%s'་དེ་མ་འཐོབ་པས།" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "བར་བཤོལ་འབད།" +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" -#: apt-private/private-install.cc:243 -#, fuzzy -msgid "Do you want to continue?" -msgstr "ཁྱོན་ཀྱི་འཕྲོ་མཐུད་ནི་འབད་ནི་ཨིན་ན་" +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "ཡིག་སྣོད་ལ་ལུ་ཅིག་ཕབ་ལེན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" -#: apt-private/private-install.cc:320 +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" + +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"ཡིག་མཛོད་ལ་ལུ་ཅིག་ལེན་མི་ཚུགས་པས་ apt-get་དུས་མཐུན་བཟོ་ནི་གཡོག་བཀོལ་ནི་ཨིན་ན་ཡང་ན་--fix-" -"missing་དང་གཅིག་ཁར་འབད་རྩོལ་བསྐྱེད་ནི་ཨིན་ན་?" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing་དང་བརྡ་ལམ་བརྗེ་སོར་འབད་ནི་འདི་ད་ལྟོ་ལས་རང་རྒྱབ་སྐྱོར་མི་འབད་བས།" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "བརླག་སྟོར་ཞུགས་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་ནོར་བཅོས་འབད་མི་ཚུགས་པས།" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "གཞི་བཙུགས་བར་བཤོལ་འབད་དོ།" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -msgstr[1] "" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" msgstr "" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" msgstr "" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" msgstr "" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "འོག་གི་བརྡ་དོན་དེ་གིས་དུས་སྐབས་འདི་མོས་མཐུན་བཟོ་ནི་ལུ་གྲོགས་རམ་འབད་འོང་:" +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "སེལ་འཐུ་%s ་མ་འཐོབ།" -#: apt-private/private-install.cc:506 -#, fuzzy -msgid "Internal Error, AutoRemover broke stuff" -msgstr "ནང་འཁོད་འཛོལ་བ་ དཀའ་ངལ་མོས་མཐུན་འབད་མི་ཅ་ཆས་ཚུ་མེདཔ་ཐལ་ཡོད།" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "%s ལྷག་ནི་རྐྱངམ་ཅིག་འབད་མི་ལྡེ་མིག་ཡིག་སྣོད་འདི་གི་དོན་ལུ་ལྡེ་མིག་རྐྱབ་ནི་ལག་ལེན་མི་འཐབ་པས།" -#: apt-private/private-install.cc:513 -#, fuzzy -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" -msgstr[1] "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "ལྡེ་མིག་རྐྱབས་ཡོད་པའི་ཡིག་སྣོད་%s་འདི་ཁ་ཕྱེ་མ་ཚུགས།" -#: apt-private/private-install.cc:517 -#, fuzzy, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" -msgstr[1] "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "" +"ཨེན་ཨེཕ་ཨེསི་ %s སྦྱར་བརྩེགས་འབད་ཡོད་པའི་ལྡེ་མིག་ཡིག་སྣོད་ཀྱི་དོན་ལུ་ལྡེ་མིག་རྐྱབ་ནི་ལག་ལེན་མི་འཐབ་པས།" -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "%sལྡེ་མིག་རྐྱབ་ནི་ལེན་མ་ཚུགས།" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "འདི་ཚུ་ནོར་བཅོས་འབད་ནིའི་དོན་ལུ་ཁྱོད་ཀྱི་'apt-get -f install'དེ་གཡོག་བཀོལ་དགོཔ་འོང་:" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -"མ་ཚང་བའི་རྟེན་འབྲེལ་ ཐུས་སྒྲིལ་མེད་མི་ཚུ་དང་གཅིག་ཁར་ 'apt-get -f install'དེ་འབཐ་རྩོལ་བསྐྱེདཔ།" -"(ཡང་ན་ཐབས་ཤེས་ཅིག་གསལ་བཀོད་འབད།)" -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -"ཐུམ་སྒྲིལ་ལ་ལུ་ཅིག་གཞི་བཙུགས་འབད་མ་ཚུགས། འ་ནི་གི་དོན་དག་དེ་ཁྱོད་ཀྱི་ མི་སྲིད་པའི་དུས་སྐབས་ཅིག་ཞུ་བ་" -"འབད་འབདཝ་འོང་ནི་མས་ ཡང་ན་ད་ལྟོ་ཡང་གསར་བསྐྲུན་མ་འབད་བར་ཡོད་པའི་ཐུམ་སྒྲིལ་ལ་ལུ་ཅིག་ཡང་ན་ནང་" -"འབྱོར་གྱི་ཕྱི་ཁར་རྩ་བསྐྲད་བཏང་ཡོད་པའི་རྩ་བརྟན་མེད་པའི་བགོ་འགྲེམ་ཚུ་ལག་ལེན་འཐབ་དོ་ཡོདཔ་འོང་ནི་ཨིན་པས།" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "ཆད་པ་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ།" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "འོག་གི་ཐུམ་སྒྲིལ་ཐེབས་ཚུ་གཞི་བཙུགས་འབད་འོང་:" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "ཡན་ལག་ལས་སྦྱོར་%s་ལུ་ཆ་བགོས་ཀྱི་སྐྱོན་ཅིག་ཐོབ་ཡོདཔ་ཨིན།" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "བསམ་འཆར་བཀོད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:" +#: apt-pkg/contrib/fileutl.cc:826 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "ཡན་ལག་ལས་སྦྱོར་%s་ལུ་ཆ་བགོས་ཀྱི་སྐྱོན་ཅིག་ཐོབ་ཡོདཔ་ཨིན།" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "འོས་སྦྱོར་འབད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "ཡན་ལག་ལས་སྦྱོར་%s་གིས་འཛོལ་བའི་ཨང་རྟགས་(%u)ཅིག་སླར་ལོག་འབད་ཡོདཔ་ཨིན།" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "" -"%s་གོམ་འགྱོ་འབད་དོ་ འདི་ཧེ་མ་ལས་རང་གཞི་བཙུགས་འབད་འོདཔ་དང་དུས་ཡར་བསྐྱེད་འབད་ནི་འདི་གཞི་སྒྲིག་མ་" -"འབད་བས།\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "ཡན་ལག་ལས་སྦྱོར་་%s་གིས་རེ་བ་མེད་པར་ཕྱིར་ཐོན་ཡོདཔ་ཨིན།" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:913 #, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"%s་གོམ་འགྱོ་འབད་དོ་ འདི་ཧེ་མ་ལས་རང་གཞི་བཙུགས་འབད་འོདཔ་དང་དུས་ཡར་བསྐྱེད་འབད་ནི་འདི་གཞི་སྒྲིག་མ་" -"འབད་བས།\n" +msgid "Problem closing the gzip file %s" +msgstr "ཡིག་སྣོད་འདི་ཁ་བསྡམས་པའི་བསྒང་དཀའ་ངལ།" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "%s ་ལོག་གཞི་བཙུགས་འབད་ནི་འདི་མི་སྲིད་པ་ཅིག་ཨིན་པས་ འདི་ཕབ་ལེན་འབད་མི་བཏུབ་པས།\n" +msgid "Could not open file %s" +msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འཐོན་རིམ་གསར་ཤོས་ཅིག་ཨིན།\n" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "%s་གི་དོན་ལུ་རྒྱུད་དུང་འདི་ཁ་ཕྱེ་མ་ཚུགས།" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "ཡན་ལག་ལས་སྦྱོར་ ཨའི་པི་སི་ གསར་བསྐྲུན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" + +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "ཨེབ་འཕྲུལ་ལག་ལེན་འཐབ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" + +#: apt-pkg/contrib/fileutl.cc:1514 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "(%s)གི་དོན་ལུ་སེལ་འཐུ་འབད་ཡོད་པའི་འཐོན་རིམ་'%s'(%s)\n" +msgid "read, still have %llu to read but none left" +msgstr "ལྷག་ ད་ལྟོ་ཡང་ལྷག་ནི་ལུ་%lu་ཡོད་འདི་འབདཝ་ད་ཅི་ཡང་ལྷག་ལུས་མིན་འདུག" -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "(%s)གི་དོན་ལུ་སེལ་འཐུ་འབད་ཡོད་པའི་འཐོན་རིམ་'%s'(%s)\n" +msgid "write, still have %llu to write but couldn't" +msgstr "འབྲི་ ད་ལྟོ་ཡང་འབྲི་ནི་ལུ་%lu་ཡོད་འདི་འདབཝ་ད་འབད་མ་ཚུགས།" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/fileutl.cc:1915 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "ཐུམ་སྒྲིལ་%s་འདི་གཞི་བཙུགས་མ་འབད་བས་ འདི་འབད་ནི་དི་གིས་རྩ་བསྐྲད་མ་གཏང་པས།་\n" +msgid "Problem closing the file %s" +msgstr "ཡིག་སྣོད་འདི་ཁ་བསྡམས་པའི་བསྒང་དཀའ་ངལ།" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/fileutl.cc:1927 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "ཐུམ་སྒྲིལ་%s་འདི་གཞི་བཙུགས་མ་འབད་བས་ འདི་འབད་ནི་དི་གིས་རྩ་བསྐྲད་མ་གཏང་པས།་\n" +msgid "Problem renaming the file %s to %s" +msgstr "ཡིག་སྣོད་མཉམ་བྱུང་འབདཝ་ད་དཀའ་ངལ།" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1938 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "ཡིག་སྣོད་འདི་འབྲེལལམ་མེདཔ་བཟོ་བའི་བསྒང་དཀའ་ངལ།" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ཉེན་བརྡ:འོག་གི་ཐུམ་སྒྲིལ་འདི་ཚུ་བདེན་བཤད་འབད་མི་བཏུབ་པས།" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "ཡིག་སྣོད་མཉམ་བྱུང་འབདཝ་ད་དཀའ་ངལ།" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "བདེན་བཤད་ཉེན་བརྡ་འདི་ཟུར་འབད་ཡོད།\n" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... འཛོལ་བ་!" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "ཐུམ་སྒྲིལ་ལ་ལུ་ཅིག་བདེན་བཤད་འབད་མ་ཚུགས།" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... འབད་ཚར་ཡོད།" -#: apt-private/private-download.cc:50 -#, fuzzy -msgid "Install these packages without verification?" -msgstr "བདེན་སྦྱོར་མ་འབད་བར་འ་ནི་ཐུམ་སྒྲིལ་འདི་ཚུ་གཞི་བཙུགས་འབད་ནི་ཨིན་ན་" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-sources.cc:58 +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "%s་ལུ་%s་བསྐྱར་མིང་བཏགས་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" - -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%c%s... %u%%" +msgstr "%c%s... འབད་ཚར་ཡོད།" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "ཡིག་སྣོད་སྟོངམ་འདི་mmap་འབད་མ་ཚུགས།" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "ཨེབ།" +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "%s་གི་དོན་ལུ་རྒྱུད་དུང་འདི་ཁ་ཕྱེ་མ་ཚུགས།" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "ལེན:" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "%lu་བཱའིཊིསི་གི་mmap་བཟོ་མ་ཚུགས།" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "ཨེལ་ཇི་ཨེན:" +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "%s་ཁ་ཕྱེ་མ་ཚུགས།" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "ཨི་ཨར་ཨར།" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "ལས་བཀོལ་འབད་མ་ཚུགས།" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "%s (%sB/s)་ནང་ལུ་%sB་དེ་ལེན་ཡོདཔ་ཨིན།\n" +msgid "Couldn't make mmap of %lu bytes" +msgstr "%lu་བཱའིཊིསི་གི་mmap་བཟོ་མ་ཚུགས།" -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [ལཱ་འབད་དོ།]" +#: apt-pkg/contrib/mmap.cc:322 +#, fuzzy +msgid "Failed to truncate file" +msgstr "%s་ཡིག་སྣོད་འདི་འབྲི་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/mmap.cc:341 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -"བརྡ་ལམ་བསྒྱུར་བཅོས:ཁ་ཡིག་བཀོད་ཡོད་པའི་ཌིསིཀ་འདི་\n" -" '%s'\n" -"འདྲེན་འཕྲུལ་'%s'ནང་བཙུགས་བཞིནམ་ལས་ལོག་ལྡེ་འདི་ཨེབ།\n" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "No mirror file '%s' found " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" - -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "[Mirror: %s]" -msgstr "" +msgid "Unable to stat the mount point %s" +msgstr "སྦྱར་བརྩེགས་ས་ཚིགས་%s་འདི་ངོ་བཤུས་འབད་མ་ཚུགས།" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "ཡན་ལག་ལས་སྦྱོར་ལུ་ཨའི་པི་སི་རྒྱུད་དུང་གསར་བསྐྲུན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "སི་ཌི་རོམ་འདི་ངོ་བཤུས་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "དུས་སུ་མ་འབབ་པ་རང་མཐུད་ལམ་འདི་ག་བསྡམས་ཡོད།" +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "ངོ་མ་ཤེས་པའི་སྡུད་ཚིག་གི་དབྱེ་བ:'%c'" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "སྔོན་སྒྲིག་བྱང་ཉེས་གཞི་སྒྲིག་འབད་དོ་!" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "རིམ་སྒྲིག་ཡིག་སྣོད་%s་འདི་ཁ་ཕྱེ་དོ།" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "འཕྲོ་མཐུད་འབད་ནིའི་དོན་ལུ་ལོག་ལྡེ་འདི་ཨེབ།" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "་ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: སྡེབ་ཚན་གྱིས་མིང་མེད་མི་དང་གཅིག་ཁར་འགོ་བཙུགསཔ་ཨིན" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:བཟོ་ཉེས་འགྱུར་བའི་ངོ་རྟགས།" -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "སྦུང་ཚན་བཟོ་བཤོལ་འབད་བའི་བར་ན་ འཛོལ་བ་དག་པ་ཅིག་བྱུང་ནུག་ ང་གི་" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:གནས་གོང་གི་ཤུལ་ལས་མཁོ་མེད་ཐེབས།" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་རིམ་སྒྲིག་འབད་ནི་ཨིན།་འ་ནི་འདི་གིས་ ངོ་བཤུས་རྫུན་མ་" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:བཀོད་རྒྱ་ཚུ་ཆེ་རིམ་ནང་རྐྱངམ་ཅིག་བྱིན་ཚུགས།" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"ཡང་ན་བརླག་སྟོར་ཞུགས་ཡོད་པའི་རྟེན་འབྲེལ་གི་རྒྱུ་རྐྱེན་ལས་བརྟེན་པའི་འཛོལ་བ་ཚུ་ནང་ལུ་གྲུབ་འབྲས་འཐོན་འོང་། " -"འདི་དེ་བཏུབ་པས་" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:འདུ་འཛོམས་འབད་འབདཝ་ལེ་ཤཱ་གྲངས་སུ་བཙུགསཔ་ཨིན།" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "" -"འ་ནི་འཕྲིན་དོན་གྱི་ལྟག་ལས་ཡོད་པའི་འཛོལ་བ་དེ་ཚུ་གལ་ཅན་ཅིག་ཨིན། འདི་ཚུ་གི་དཀའ་ངལ་སེལ་བཞིནམ་ལས་ " -"[I] གཞི་བཙུགས་དེ་ལོག་སྟེ་རང་གཡོག་བཀོལ།" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: ནཱ་ལས་རང་འགོ་བཙུགས་གྲངས་སུ་བཙུགས་ཏེ་ཡོད།" -#: dselect/update:30 -msgid "Merging available information" -msgstr "འཐོབ་ཚུགས་པའི་བརྡ་དོན་མཉམ་བསྡོམས་འབད་དོ།" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: རྒྱབ་སྐྱོར་མ་འབད་བར་ཡོད་པའི་'%s'བཀོད་རྒྱ།" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "ད་ལྟོ་ཡང་འབྲེལ་ལམ་ཡོད་པའི་མཐུད་མཚམས་གུར་བཀོག་བཞག་མཐུད་མཚམས་དེ་བོད་བརྡ་འབད་འདི་ཡོད།" +#: apt-pkg/contrib/configuration.cc:900 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:བཀོད་རྒྱ་ཚུ་ཆེ་རིམ་ནང་རྐྱངམ་ཅིག་བྱིན་ཚུགས།" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "དྲྭ་རྟགས་རྒྱུ་རྫས་འདི་ག་ཡོད་འཚོལ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད!" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: ཡིག་སྣོད་ཀྱི་མཇུག་ལུ་མཁོ་མེད་ཐེབས།" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "ཁ་ཕྱོགས་སྤྲོད་བཞག་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "གཞི་བཙུགས་བར་བཤོལ་འབད་དོ།" + +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "བརྡ་བཀོད་གྲལ་ཐིག་གྱི་གདམ་ཁ་'%c'[%s་ནང་ལས་]འདི་མ་ཤེས་པས།" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "ཁ་ཕྱོགས་ཁ་སྐོང་རྐྱབ་ནི་ནང་ ནང་འཁོད་ཀྱི་འཛོལ་བ།" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "བ་རྡ་བཀོད་གྲལ་ཐིག་གི་གདམ་ཁ་%s་འདི་ཧ་མ་གོ་བས།" -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "%s -> %s ་དང་ %s/%s་ཁ་ཕྱོགས་ཅིག་ཚབ་སྲུང་འབད་ནི་ལུ་འབད་རྩོལ་བསྐྱེད་དོ།" +msgid "Command line option %s is not boolean" +msgstr "བརྡ་བཀོད་གྲལ་ཐིག་གི་གདམ་ཁ་%s་འདི་བུ་ལིན་མེན་པས།" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "%s -> %s་ཁ་ཕྱོགས་ཀྱི་ལོག་བལྟབ་ཁ་སྐོང་།" +msgid "Option %s requires an argument." +msgstr "གདམ་ཁ་%s་ལུ་སྒྲུབ་རྟགས་ཅིག་དགོ་པས།" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "རིམ་སྒྲིག་ཡིག་སྣོད་%s/%s་འདི་ངོ་བཤུས་བཟོ།" +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "གདམ་ཁ་%s:རིམ་སྒྲིག་གི་རྣམ་གྲངས་གསལ་བཀོད་ལུ་ =<val> ་ཅིག་དགོཔ་ཨིན།" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "The path %s is too long" -msgstr "%s་འགྲུལ་ལམ་དེ་གནམ་མེད་ས་མེད་རིངམ་འདུག" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "གདམ་ཁ་ %s ་ལུ་'%s'་མེན་པར་ ཧྲིལ་ཨང་སྒྲུབ་རྟགས་ཅིག་དགོས་མཁོ་ཡོདཔ་ཨིན" -#: apt-inst/extract.cc:132 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Unpacking %s more than once" -msgstr "སྦུང་ཚན་བཟོ་བཤོལ་%s་གཅིག་ལས་ལྷག་སྟེ་འདུག" +msgid "Option '%s' is too long" +msgstr "གདམ་ཁ་'%s'འདི་གནམ་མེད་ས་མེད་རིངམ་འདུག" -#: apt-inst/extract.cc:142 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "The directory %s is diverted" -msgstr "སྣོད་ཐོ་%s་འདི་ཁ་ཕྱོགས་སྒྱུར་དེ་ཡོད།" +msgid "Sense %s is not understood, try true or false." +msgstr "དྲན་ཤེས་ %s་འདི་ཧ་གོ་མ་ཚུགས་པས་ བདེན་པ་ཡང་ན་རྫུན་པ་ལུ་འབད་རྩོལ་བསྐྱེདཔ།" -#: apt-inst/extract.cc:152 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "ཐུམ་སྒྲིལ་འདི་གིས་ག་སྒྱུར་དམིགས་གཏད་%s/%s་ལུ་འབྲི་ནིའི་འབད་རྩོལ་བསྐྱེདཔ་དེ་ཡོད།" +msgid "Invalid operation %s" +msgstr "ནུས་མེད་བཀོལ་སྤྱོད་%s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "ཁ་སྒྱུར་འགྲུལ་ལམ་འདི་གནམ་མེད་ས་མེད་རིངམ་ཨིན་པས།" +#: apt-pkg/deb/dpkgpm.cc:95 +#, fuzzy, c-format +msgid "Installing %s" +msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་%s།" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "Failed to stat %s" -msgstr "%s་སིཊེཊི་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" +msgid "Configuring %s" +msgstr "%s་རིམ་སྒྲིག་འབད་དོ།" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "Failed to rename %s to %s" -msgstr "%s་ལུ་%s་བསྐྱར་མིང་བཏགས་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +msgid "Removing %s" +msgstr "%s་རྩ་བསྐྲད་གཏང་དོ།" -#: apt-inst/extract.cc:249 +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "%s མཇུག་བསྡུཝ་སྦེ་རང་རྩ་བསྐྲད་བཏང་ཡོད།" + +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "སྣོད་ཡིག་%s་འདི་སྣོད་ཡིག་མེན་མི་ཅིག་གིས་ཚབ་བཙུག་དེ་ཡོདཔ་ཨིན།" +msgid "Noting disappearance of %s" +msgstr "" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "ཁོང་རའི་དྲྭ་རྟགས། (#)རྡོབ་ནང་ལུ་མཐུད་མཚམས་ག་ཡོད་འཚོལ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "འགྲུལ་ལམ་དེ་གནམ་མེད་ས་མེད་རིངམ་ཅིག་ཨིན་པས།" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, fuzzy, c-format +msgid "Directory '%s' missing" +msgstr "ཐོ་བཀོད་འབད་མི་སྣོད་ཐོ་%s་ཆ་ཤས་འདི་བརླག་སྟོར་ཟུགས་ཏེ་འདུག" -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "%s་གི་དོན་ལུ་ཚབ་སྲུང་འབད་བའི་ཐུམ་སྒྲིལ་དེ་གིས་འཐོན་རིམ་གཅིག་ད་ཡང་མཐུན་སྒྲིག་མི་འབད་བས།" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "ཐུམ་སྒྲིལ་%s་ནང་ལུ་་ཡིག་སྣོད་%s/%sགིས་གཅིག་ཚབ་སྲུང་འབདཝ་ཨིན།" +msgid "Preparing %s" +msgstr "%s་ གྲ་སྒྲིག་འབད་དོ།" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Unable to stat %s" -msgstr "%s་འདི་ལུ་ངོ་བཤུས་འབད་མ་ཚུགས།" +msgid "Unpacking %s" +msgstr " %s་ གི་སྦུང་ཚན་བཟོ་བཤོལ་འབད་དོ།" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Failed to write file %s" -msgstr "%s་ཡིག་སྣོད་འདི་འབྲི་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +msgid "Preparing to configure %s" +msgstr "%s་ རིམ་སྒྲིག་ལུ་གྲ་སྒྲིག་འབད་དོ།" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Failed to close file %s" -msgstr "%s་ཡིག་སྣོད་འདི་ཁ་བསྡམས་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +msgid "Installed %s" +msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་%s།" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "འ་ནི་འདི་ ཌི་ཨི་བི་ཡིག་མཛོད་ནུས་ཅན་ཅིག་མེན་པས་ '%s'འཐུས་མི་བརླག་སྟོར་ཞུགས་དོ།" +msgid "Preparing for removal of %s" +msgstr "%s་ རྩ་བསྐྲད་གཏང་ནིའི་དོན་ལུ་གྲ་སྒྲིག་འབད་དོ།" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "ནང་འཁོད་འཛོལ་བ་གིས་འཐུས་མི་%sའདི་ག་ཡོད་འཚོལ་མ་འཐོབ།" +msgid "Removed %s" +msgstr "རྩ་བསྐྲད་བཏང་ཡོད་པའི་%s" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "མིང་དཔྱད་འབད་མ་བཏུབ་པའི་ཚད་འཛིན་ཡིག་སྣོད།" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "%s མཇུག་བསྡུཝ་སྦེ་རང་རྩ་བསྐྲད་གཏང་ནིའི་དོན་ལུ་གྲ་སྒྲིག་འབད་དོ།" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "ནུས་མེད་ཡིག་མཛོད་ཀྱི་མིང་རྟགས།" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "%s མཇུག་བསྡུཝ་སྦེ་རང་རྩ་བསྐྲད་བཏང་ཡོད།" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "ཡིག་མཛོད་འཐུས་མི་མགོ་ཡིག་ལྷག་ནིའི་འཛོལ་བ།" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:96 +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "ནུས་མེད་ཡིག་མཛོད་འཐུས་མི་གི་མགོ་ཡིག་" +msgid "Can not write log (%s)" +msgstr " %sལུ་འབྲི་མ་ཚུགས།" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "ནུས་མེད་ཡིག་མཛོད་འཐུས་མི་གི་མགོ་ཡིག་" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "ཡིག་མཛོད་འདི་གནམ་མེད་ས་མེད་ཐུང་ཀུ་འདུག" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "ཡིག་མཛོད་མགོ་ཡིག་ཚུ་ལྷག་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "རྒྱུད་དུང་ཚུ་གསར་བསྐྲུན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "ཇི་ཛིཔ་འདི་ལག་ལེན་འཐབ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "ངན་ཅན་གྱི་ཡིག་མཛོད།" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "ཊར་ཅེག་སམ་དེ་འཐུས་ཤོར་བྱུང་ཡོད་ ཡིག་མཛོད་ངན་ཅན་བྱུང་ནུག" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "མ་ཤེས་པའི་ ཊཱར་་མགོ་ཡིག་་དབྱེ་བ་ %u་ འཐུས་མི་ %s།" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "ཐོ་བཀོད་འབད་ཡོད་པའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རྐྱབ་མ་ཚུགས།" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/el.po b/po/el.po index 731f981cf..e22a7c527 100644 --- a/po/el.po +++ b/po/el.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_el\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2008-08-26 18:25+0300\n" "Last-Translator: Θανάσης Νάτσης <natsisthanasis@gmail.com>\n" "Language-Team: Greek <debian-l10n-greek@lists.debian.org>\n" @@ -27,3182 +27,3183 @@ msgstr "" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "Ο τύπος αρχείου ευρετηρίου '%s' δεν υποστηρίζεται" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "Αδύνατη η ανάγνωση του %s" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Αδύνατη η αλλαγή σε %s" - -#: apt-pkg/clean.cc:64 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Unable to stat %s." -msgstr "Αδύνατη η εύρεση της κατάστασης του %s." +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Το πακέτο %s με έκδοση %s έχει ανικανοποίητες εξαρτήσεις:\n" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Συνολικά Ονόματα Πακέτων : " -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Συνολο Δομών Πακέτου : " -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Το σύστημα συσκευασίας '%s' δεν υποστηρίζεται" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Κανονικά Πακέτα: " -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Αδύνατος ο καθορισμός ενός κατάλληλου τύπου συστήματος πακέτων" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Πλήρως Εικονικά Πακέτα: " -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Εγιναν %i εγγραφές.\n" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Μονά Εικονικά Πακέτα: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Εγιναν %i εγγραφές με %i απώντα αρχεία.\n" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Μικτά Εικονικά Πακέτα: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Εγιναν %i εγγραφές με %i ασύμβατα αρχεία.\n" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr "Αγνοούμενα: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "Εγιναν %i εγγραφές με %i απώντα αρχεία και %i ασύμβατα αρχεία\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Σύνολο Διαφορετικών Εκδόσεων: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Σύνολο Διαφορετικών Εκδόσεων: " -#: apt-pkg/indexcopy.cc:521 -#, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Ανόμοιο MD5Sum" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Σύνολο Εξαρτήσεων: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Ο οδηγός μεθόδου %s δεν μπορεί να εντοπιστεί." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Σύνολο σχέσεων Εκδ/Αρχείων: " -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Ελέγξτε αν είναι εγκαταστημένο το πακέτο 'dpkg-dev'.\n" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Σύνολο σχέσεων Εκδ/Αρχείων: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Η μέθοδος %s δεν εκκινήθηκε σωστά" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Σύνολο Αντιστοιχίσεων Παροχών: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "" -"Παρακαλώ εισάγετε το δίσκο με ετικέτα '%s' στη συσκευή '%s' και πατήστε " -"enter." +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Σύνολο Κοινών Στοιχειοσειρών : " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "" -"Αδύνατο το άνοιγμα ή η ανάλυση των λιστών πακέτων ή του αρχείου κατάστασης." +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Συνολικός χώρος Εξαρτήσεων Εκδόσεων: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "" -"Ίσως να πρέπει να τρέξετε apt-get update για να διορθώσετε αυτά τα προβλήματα" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Σύνολο χώρου ασφαλείας: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Αδύνατη η ανάγνωση της λίστας πηγών." +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Συνολικός Καταμετρημένος Χώρος: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Άδειο cache πακέτων" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "Το αρχείο πακέτου %s δεν είναι ενημερωμένο." -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Το αρχείο cache των πακέτων είναι κατεστραμμένο" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Δε βρέθηκαν πακέτα" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Το αρχείο cache των πακέτων είναι ασύμβατης έκδοσης" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Πρέπει να δώσετε τουλάχιστον ένα μοτίβο αναζήτησης" -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "Το αρχείο cache των πακέτων είναι κατεστραμμένο" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Αυτό το APT δεν υποστηρίζει το Σύστημα Απόδοσης Έκδοσης '%s'" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Η cache πακέτων κατασκευάστηκε για μια διαφορετική αρχιτεκτονική" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Εξαρτάται από" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "ΠροΕξαρτάται από" +msgid "Unable to locate package %s" +msgstr "Αδυναμία εντοπισμού του πακέτου %s" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Προτείνει" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Αρχεία Πακέτου:" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Συστήνει" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" +"Η cache δεν είναι ενημερωμένη, αδυναμία παραπομπής σε ένα αρχείο πακέτου" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Ασύμβατο με" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Καθηλωμένα Πακέτα:" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Αντικαθιστά" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(δε βρέθηκαν)" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Απαρχαιώνει" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Εγκατεστημένα: " -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Χαλάει" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Υποψήφιο: " -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(κανένα)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "σημαντικό" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Καθήλωση Πακέτου: " -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "απαιτούμενο" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Πίνακας Έκδοσης:" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "καθιερωμένο" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s για %s είναι μεταγλωττισμένο σε %s %s\n" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "προαιρετικό" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Χρήση: apt-cache [επιλογές] εντολή\n" +" apt-cache [επιλογές] add file1 [file2 ...]\n" +" apt-cache [επιλογές] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [επιλογές] showsrc pkg1 [pkg2 ...]\n" +"\n" +"το apt-cache είναι ένα χαμηλού επιπέδου εργαλείο που χρησιμοποιείται για \n" +"το χειρισμό των δυαδικών αρχείων cache του APT, και να εξάγει πληροφορίες\n" +"από αυτά\n" +"\n" +"Εντολές:\n" +" add - Προσθέτει ένα αρχείο πακέτου στη cache πηγών\n" +" gencaches - Κατασκευή της cache των πακέτων και των πηγών\n" +" showpkg - Εμφάνιση μερικών γενικών πληροφοριών για ένα πακέτο\n" +" showsrc - Εμφάνιση εγγραφών για πηγαίο πακέτο\n" +" stats - Εμφάνιση μερικών βασικών στατιστικών\n" +" dump - Εμφάνιση όλου του αρχείου σε περιληπτική μορφή.\n" +" dumpavail - Εκτύπωση της λίστας των διαθέσιμων πακέτων στην κανονική " +"έξοδο\n" +" unmet - Εμφάνιση μη ικανοποιούμενων εξαρτήσεων\n" +" search - Αναζήτηση στη λίστα πακέτων για αυτή τη κανονική παράσταση\n" +" show - Εμφάνιση μιας αναγνώσιμης εγγραφής για το πακέτο\n" +" depends - Εμφάνιση των εξαρτήσεων ενός πακέτου\n" +" rdepends - Εμφάνιση αντίστροφων εξαρτήσεων ενός πακέτου\n" +" pkgnames - Εμφάνιση λίστας με τα ονόματα όλων των πακέτων\n" +" dotty - Παραγωγή γραφημάτων πακέτων για το GraphViz\n" +" xvcg - Παραγωγή γραφημάτων πακέτων για το xvcg\n" +" policy - Εμφάνιση προτεραιοτήτων πηγών\n" +"\n" +"Επιλογές:\n" +" -h Αυτό το κείμενο βοήθειας.\n" +" -p=? Η cache πακέτων.\n" +" -s=? Η cache πηγών.\n" +" -q Απενεργοποίηση του δείκτη προόδου.\n" +" -i Εμφάνιση μόνο των σημαντικών εξαρτήσεων για την εντολή unmet.\n" +" -c=? Ανάγνωση αυτού του αρχείου ρυθμίσεων\n" +" -o=? Χρήση μιας αυθαίρετη επιλογής ρυθμίσεων, πχ -o dir::cache=/tmp\n" +"Δείτε τις σελίδες man του apt-cache(8) και apt.conf(5) για πληροφορίες.\n" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "επιπλέον" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "" +"Παρακαλώ δώστε ένα όνομα για αυτόν τον δίσκο, όπως 'Debian 5.0.3 Disk 1'" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Ο τύπος αρχείου ευρετηρίου '%s' δεν υποστηρίζεται" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Παρακαλώ εισάγετε το δίσκο στη συσκευή και πατήστε enter" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Regex compilation error - %s" -msgstr "σφάλμα μεταγλωτισμου - %s" +msgid "Failed to mount '%s' to '%s'" +msgstr "Αποτυχία σύνδεσης του %s σε %s" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Η cache έχει ασύμβατο σύστημα απόδοσης έκδοσης" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Προέκυψε σφάλμα κατά την επεξεργασία του %s (FindPkg)" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Επαναλάβετε την διαδικασία για τα υπόλοιπα CD από το σετ σας." -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Τα ορίσματα δεν είναι σε ζεύγη" + +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -"Εκπληκτικό, υπερβήκατε τον αριθμό των ονομάτων πακέτων που υποστηρίζει το " -"APT." +"Χρήση: apt-config [επιλογές] εντολή\n" +"\n" +"το apt-config είναι ένα απλό εργαλείο για την ανάγνωση του αρχείου ρυθμίσεων " +"APT\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Εκπληκτικό, υπερβήκατε τον αριθμό των εκδόσεων που υποστηρίζει το APT." +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Αδύνατη η εύρεση του πακέτου %s" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "" -"Εκπληκτικό, υπερβήκατε τον αριθμό των περιγραφών που υποστηρίζει το APT." +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Αδύνατη η εύρεση του πακέτου %s" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "" -"Εκπληκτικό, υπερβήκατε τον αριθμό των εξαρτήσεων που υποστηρίζει το APT." +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Αδύνατη η εύρεση του πακέτου %s" -#: apt-pkg/pkgcachegen.cc:576 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "Το πακέτο %s %s δε βρέθηκε κατά την επεξεργασία εξαρτήσεων του αρχείου" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Επιλογή του %s ώς λίστας πηγαίων πακέτων αντί της %s\n" -#: apt-pkg/pkgcachegen.cc:1211 +#: cmdline/apt-get.cc:423 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Αδύνατη η εύρεση της κατάστασης της λίστας πηγαίων πακέτων %s" - -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Ανάγνωση Λιστών Πακέτων" +msgid "Can not find version '%s' of package '%s'" +msgstr "" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Συλλογή Παροχών Αρχείου" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Αδύνατη η εύρεση του πακέτου %s" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Unable to write to %s" -msgstr "Αδύνατη η εγγραφή στο %s" +msgid "%s set to manually installed.\n" +msgstr "το %s έχει εγκατασταθεί με το χέρι\n" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Σφάλμα IO κατά την αποθήκευση της cache πηγών" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "το %s έχει εγκατασταθεί αυτόματα\n" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" msgstr "" +"Εσωτερικό Σφάλμα, η προσπάθεια επίλυσης του προβλήματος \"έσπασε\" κάποιο " +"υλικό" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Αδύνατο το κλείδωμα του καταλόγου μεταφόρτωσης" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" msgstr "" +"Θα πρέπει να καθορίσετε τουλάχιστον ένα πακέτο για να μεταφορτώσετε τον " +"κωδικάτου" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "Αδυναμία εντοπισμού του κώδικά του πακέτου %s" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:786 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "απέτυχε η μετονομασία, %s (%s -> %s)." +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Ανόμοιο MD5Sum" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Ανόμοιο μέγεθος" - -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Μη έγκυρη λειτουργία %s" - -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:791 #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: apt-pkg/acquire-item.cc:1589 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (1)" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Δεν υπάρχει διαθέσιμο δημόσιο κλειδί για τα ακολουθα κλειδιά:\n" +#: cmdline/apt-get.cc:843 +#, c-format +msgid "Skipping already downloaded file '%s'\n" +msgstr "Παράκαμψη του ήδη μεταφορτωμένου αρχείου `%s`\n" -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +msgid "Couldn't determine free space in %s" +msgstr "Δεν μπόρεσα να προσδιορίσω τον ελεύθερο χώρο στο %s" -#: apt-pkg/acquire-item.cc:1691 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" +msgid "You don't have enough free space in %s" +msgstr "Δεν διαθέτετε αρκετό ελεύθερο χώρο στο %s" -#: apt-pkg/acquire-item.cc:1721 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Χρειάζεται να μεταφορτωθούν %sB/%sB πηγαίου κώδικα.\n" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "GPG error: %s: %s" -msgstr "" +msgid "Need to get %sB of source archives.\n" +msgstr "Χρειάζεται να μεταφορτωθούν %sB πηγαίου κώδικα.\n" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:902 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"Αδύνατος ο εντοπισμός ενός αρχείου για το πακέτο %s. Αυτό ίσως σημαίνει ότι " -"χρειάζεται να διορθώσετε χειροκίνητα το πακέτο. (λόγω χαμένου αρχείου)" +msgid "Fetch source %s\n" +msgstr "Μεταφόρτωση Κωδικα %s\n" -#: apt-pkg/acquire-item.cc:1925 +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Αποτυχία μεταφόρτωσης μερικών αρχειοθηκών." + +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Ολοκληρώθηκε η μεταφόρτωση μόνο" + +#: cmdline/apt-get.cc:950 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Παράκαμψη της αποσυμπίεσης ήδη μεταφορτωμένου κώδικα στο %s\n" -#: apt-pkg/acquire-item.cc:1983 +#: cmdline/apt-get.cc:963 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Κατεστραμμένα αρχεία ευρετηρίου πακέτων. Δεν υπάρχει πεδίο Filename: στο " -"πακέτο %s." +msgid "Unpack command '%s' failed.\n" +msgstr "Απέτυχε η εντολή αποσυμπίεσης %s\n" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Η εγγραφή κατασκευαστή %s δεν περιέχει ταυτότητα" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Ελέγξτε αν είναι εγκαταστημένο το πακέτο 'dpkg-dev'.\n" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "Ο φάκελος λιστών %spartial αγνοείται." +#: cmdline/apt-get.cc:992 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Απέτυχε η εντολή χτισίματος %s.\n" -#: apt-pkg/acquire.cc:91 -#, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "Ο φάκελος αρχειοθηκών %spartial αγνοείται." +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Η απογονική διεργασία απέτυχε" -#: apt-pkg/acquire.cc:99 -#, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "Αδύνατο το κλείδωμα του καταλόγου" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "" +"Θα πρέπει να καθορίσετε τουλάχιστον ένα πακέτο για έλεγχο των εξαρτήσεων του" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:1055 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Κατέβασμα του αρχείου %li του %li (απομένουν %s)" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Λήψη αρχείου %li του %li" +msgid "Unable to get build-dependency information for %s" +msgstr "Αδύνατη η εύρεση πληροφοριών χτισίματος για το %s" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Αποτυχία ανάκτησης του %s %s\n" +msgid "%s has no build depends.\n" +msgstr "το %s δεν έχει εξαρτήσεις χτισίματος.\n" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy +#: cmdline/apt-get.cc:1272 +#, c-format msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" msgstr "" -"Μερικά αρχεία δεν μεταφορτώθηκαν, αγνοήθηκαν ή χρησιμοποιήθηκαν παλαιότερα " -"στη θέση τους." - -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Πρέπει να τοποθετήσετε μερικά URI 'πηγών' στο sources.list" +"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή το %s δεν επιτρέπεται στο " +"πακέτο %s" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" +"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή το πακέτο %s δεν βρέθηκε" -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Μη έγκυρη εγγραφή στο αρχείο προτιμήσεων, καμία επικεφαλίδα Package" - -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Did not understand pin type %s" -msgstr "Αδύνατη η κατανόηση του τύπου καθήλωσης %s" - -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -"Δεν έχει οριστεί προτεραιότητα (ή έχει οριστεί μηδενική) για την καθήλωση" +"Αποτυχία ικανοποίησης %s εξαρτήσεων για το %s: Το εγκατεστημένο πακέτο %s " +"είναι νεώτερο" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1352 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" +"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή δεν υπάρχουν διαθέσιμες " +"εκδόσεις του πακέτου %s που να ικανοποιούν τις απαιτήσεις της έκδοσης" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Αδύνατο το άνοιγμα του αρχείου %s" - -#: apt-pkg/packagemanager.cc:583 +#: cmdline/apt-get.cc:1358 #, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -"Αυτή η προσπάθεια εγκατάστασης απαιτεί προσωρινή αφαίρεση του σημαντικού " -"πακέτου %s λόγω ενός βρόγχου Ασυμβατότητας/ΠροΕξάρτησης. Αυτό συνήθως δεν " -"είναι καλό, αλλά εάν πραγματικά θέλετε να συνεχίσετε ενεργοποιήστε την " -"επιλογή APT::Force-LoopBreak option." +"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή το πακέτο %s δεν έχει " +"υποψήφιαέκδοση" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Line %u too long in source list %s." -msgstr "Η γραμμή %u έχει υπερβολικό μήκος στη λίστα πηγών %s." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Αποπροσάρτηση του CD-ROM...\n" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Αποτυχία ικανοποίησης %s εξάρτησης για το %s: %s" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Χρησιμοποιείται το σημείο προσάρτησης %s\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Αναμονή για δίσκο...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Προσάρτηση του CD-ROM...\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Οι εξαρτήσεις χτισίματος για το %s δεν ικανοποιούνται." -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Αναγνώριση..." +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Αποτυχία επεξεργασίας εξαρτήσεων χτισίματος" -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 #, c-format -msgid "Stored label: %s\n" -msgstr "Αποθήκευση Ετικέτας: %s \n" - -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Σάρωση του δίσκου για περιεχόμενα...\n" +msgid "Changelog for %s (%s)" +msgstr "Changelog για %s (%s)" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Βρέθηκαν %zu κατάλογοι πακέτων, %zu κατάλογοι πηγαίων, %zu κατάλογοι " -"μεταφράσεων και %zu υπογραφές\n" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Υποστηριζόμενοι Οδηγοί:" -#: apt-pkg/cdrom.cc:744 +#: cmdline/apt-get.cc:1633 +#, fuzzy msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" - -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Εύρεση ετικέτας: %s \n" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Αυτό δεν είναι έγκυρο όνομα, προσπαθείστε ξανά. \n" - -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"Ο δίσκος αυτός ονομάζεται: \n" -"'%s'\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Αντιγραφή λιστών πακέτων..." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Eγγραφή νέας λίστας πηγών\n" +"Χρήση: apt-get [παράμετροι] εντολή\n" +" apt-get [παράμετροι] install|remove pkg1 [pkg2 ...]\n" +" apt-get [παράμετροι] source pkg1 [pkg2 ...]\n" +"\n" +"η apt-get είναι μια απλή διασύνδεση για τη μεταφόρτωση και την\n" +"εγκατάσταση πακέτων. Οι πιο συχνές εντολές είναι η update\n" +"και η install.\n" +"\n" +"Εντολές:\n" +" update - Ανάκτηση νέων καταλόγων πακέτων\n" +" upgrade - Διενέργεια αναβάθμισης\n" +" install - Εγκατάσταση νέων πακέτων (χωρίς την επέκταση .deb)\n" +" remove - Αφαίρεση πακέτων\n" +" source - Μεταφόρτωση πακέτων πηγαίου κώδικα\n" +" build-dep - Ρύθμιση εξαρτήσεων χτισίματος για πακέτα πηγαίου κώδικα\n" +" dist-upgrade - Αναβάθμιση διανομής, δες το apt-get(8)\n" +" dselect-upgrade - Τήρηση των επιλογών του dselect\n" +" clean - Καθαρισμός των μεταφορτωμένων αρχείων\n" +" autoclean - Καθαρισμός παλαιότερα μεταφορτωμένων αρχείων\n" +" check - Εξακρίβωση για τυχόν σπασμένες εξαρτήσεις\n" +"\n" +"Παράμετροι:\n" +" -h Αυτό το βοηθητικό κείμενο.\n" +" -q Χωρίς αναλυτική ένδειξη προόδου (κατάλληλο για αποθήκευση της εξόδου)\n" +" -qq Χωρίς λεπτομέρειες εκτός από τα λάθη\n" +" -d Μεταφόρτωση μόνο - ΜΗΝ αποσυμπιέσεις ή εγκαταστήσεις αρχεία\n" +" -s Χωρίς ενέργεια. Διενέργεια προσομοίωσης βημάτων εγκατάστασης\n" +" -y Υπόθεσε Ναι για όλες τις ερωτήσεις και μην περιμένεις απάντηση\n" +" -f Προσπάθησε να συνεχίσεις αν αποτύχει ο έλεγχος ακεραιότητας\n" +" -m Προσπάθησε να συνεχίσεις αν υπάρχουν άγνωστα πακέτα\n" +" -u Εμφάνισε επίσης ένα κατάλογο από αναβαθμιζόμενα πακέτα\n" +" -b Χτίσε το πηγαίο πακέτο μετά την μεταφόρτωση του\n" +" -V Εμφάνισε λεπτομερείς αριθμούς εκδόσεων\n" +" -c=? Διάβασε αυτό το αρχείο ρυθμίσεων\n" +" -o=? Θέσε μια αυθαίρετη παράμετρο, πχ -o dir::cache=/tmp\n" +"Δείτε τις σελίδες εγχειριδίου apt-get(8), sources.list(5) και apt.conf(5)\n" +"για περισσότερες πληροφορίες και επιλογές.\n" +" This APT has Super Cow Powers.\n" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Οι κατάλογοι με τις πηγές αυτού του δίσκου είναι: \n" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "" +"Θα πρέπει να καθορίσετε τουλάχιστον ένα πακέτο για να μεταφορτώσετε τον " +"κωδικάτου" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"Το πακέτο '%s' χρειάζεται να επανεγκατασταθεί, αλλά είναι αδύνατη η εύρεση " -"κάποιας κατάλληλης αρχείοθήκης." -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-helper.cc:66 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Σφάλμα, το pkgProblemResolver::Resolve παρήγαγε διακοπές, αυτό ίσως " -"προκλήθηκε από κρατούμενα πακέτα." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Αδύνατη η διόρθωση προβλημάτων, έχετε κρατούμενα ελαττωματικά πακέτα." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Κατασκευή Δένδρου Εξαρτήσεων" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Υποψήφιες Εκδόσεις" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Παραγωγή Εξαρτήσεων" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Ανάγνωση περιγραφής της τρέχουσας κατάσταση" - -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Αποτυχία ανοίγματος του αρχείου κατάστασης %s" - -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Αποτυχία εγγραφής του αρχείου κατάστασης %s" - -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (1)" - -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (2)" - -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Η έκδοση %s για το %s δεν βρέθηκε" - -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Η έκδοση %s για το %s δεν βρέθηκε" - -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "Αδυναμία εντοπισμού του πακέτου %s" -#: apt-pkg/cacheset.cc:603 +#: cmdline/apt-mark.cc:68 #, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "Αδύνατη η εύρεση του συνόλου πακέτων %s" +msgid "%s can not be marked as it is not installed.\n" +msgstr "αλλά δεν είναι εγκατεστημένο" -#: apt-pkg/cacheset.cc:609 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Αδύνατη η εύρεση του πακέτου %s" +msgid "%s was already set to manually installed.\n" +msgstr "το %s έχει εγκατασταθεί με το χέρι\n" -#: apt-pkg/cacheset.cc:615 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Αδύνατη η εύρεση του πακέτου %s" - -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" - -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" +msgid "%s was already set to automatically installed.\n" +msgstr "το %s έχει εγκατασταθεί με το χέρι\n" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "το %s είναι ήδη η τελευταία έκδοση.\n" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "το %s είναι ήδη η τελευταία έκδοση.\n" -#: apt-pkg/cacheset.cc:663 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" +msgid "Waited for %s but it wasn't there" +msgstr "Αναμονή του %s, αλλά δε βρισκόταν εκεί" -#: apt-pkg/indexrecords.cc:78 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (1)" +msgid "%s set on hold.\n" +msgstr "το %s έχει εγκατασταθεί με το χέρι\n" -#: apt-pkg/indexrecords.cc:86 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "Σημείωση, επιλέχθηκε το %s αντί του%s\n" +msgid "Canceled hold on %s.\n" +msgstr "Αποτυχία ανοίγματος του %s" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Μη έγκυρη γραμμή στο αρχείο παρακάμψεων: %s" - -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (1)" - -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση URI)" - -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση dist)" +#: cmdline/apt-mark.cc:392 +msgid "" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." +msgstr "" -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (dist)" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/sourcelist.cc:184 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση dist)" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Αδύνατη η ανάγνωση της βάσης δεδομένων του cdrom %s" -#: apt-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση dist)" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" +msgstr "" +"Παρακαλώ χρησιμοποιείστε το apt-cdrom για να αναγνωριστεί αυτό το CD από το " +"APT. Το apt-get update δε χρησιμεύει για να προσθέτει νέα CD" -#: apt-pkg/sourcelist.cc:193 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση dist)" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Λάθος CD" -#: apt-pkg/sourcelist.cc:206 +#: methods/cdrom.cc:249 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (URI)" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Αδυναμία απόσυναρμογής του CD-ROM στο %s, μπορεί να είναι σε χρήση." -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (dist)" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Ο δίσκος δεν βρέθηκε." -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση URI)" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Το αρχείο Δε Βρέθηκε" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Απόλυτο dist)" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Αποτυχία εύρεσης της κατάστασης" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση dist)" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Αποτυχία ορισμού του χρόνου τροποποίησης" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Άνοιγμα του %s" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Μη έγκυρο URI, τα τοπικά URI δεν πρέπει να αρχίζουν με //" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Λάθος μορφή της γραμμής %u στη λίστα πηγών %s (τύπος)" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Σύνδεση στο σύστημα" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Ο τύπος '%s' στη γραμμή %u στη λίστα πηγών %s είναι άγνωστος " +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Αδύνατος ο καθορισμός του ονόματος του ομότιμου (peer)" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Ο τύπος '%s' στη γραμμή %u στη λίστα πηγών %s είναι άγνωστος " +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Αδύνατος ο καθορισμός του τοπικού ονόματος" -#: apt-pkg/deb/dpkgpm.cc:95 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Installing %s" -msgstr "Εγκατάσταση του %s" +msgid "The server refused the connection and said: %s" +msgstr "Ο διακομιστής αρνήθηκε την σύνδεση με μήνυμα: %s" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#: methods/ftp.cc:225 #, c-format -msgid "Configuring %s" -msgstr "Ρύθμιση του %s" +msgid "USER failed, server said: %s" +msgstr "Η εντολή USER απέτυχε, ο διακομιστής απάντησε: %s" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#: methods/ftp.cc:232 #, c-format -msgid "Removing %s" -msgstr "Αφαιρώ το %s" - -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "Το %s διαγράφηκε πλήρως" +msgid "PASS failed, server said: %s" +msgstr "Η εντολή PASS απέτυχε, ο διακομιστής απάντησε: %s" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" +"Ο διαμεσολαβητής έχει οριστεί αλλά χωρίς σενάριο εισόδου, το Acquire::ftp::" +"ProxyLogin είναι άδειο" -#: apt-pkg/deb/dpkgpm.cc:100 +#: methods/ftp.cc:280 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Εκτέλεση του post-installation trigger %s" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Η εντολή '%s' στο σενάριο εισόδου απέτυχε, ο διακομιστής απάντησε: %s" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#: methods/ftp.cc:306 #, c-format -msgid "Directory '%s' missing" -msgstr "Ο φάκελος %s αγνοείται." +msgid "TYPE failed, server said: %s" +msgstr "Η εντολή TYPE απέτυχε, ο διακομιστής απάντησε: %s" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "Αδύνατο το άνοιγμα του αρχείου %s" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Λήξη χρόνου σύνδεσης" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "Προετοιμασία του %s" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Ο διακομιστής έκλεισε την σύνδεση" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Ξεπακετάρισμα του %s" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Σφάλμα ανάγνωσης" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Προετοιμασία ρύθμισης του %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Το μήνυμα απάντησης υπερχείλισε την ενδιάμεση μνήμη." -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "Έγινε εγκατάσταση του %s" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Αλλοίωση του πρωτοκόλλου" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "Προετοιμασία για την αφαίρεση του %s" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Σφάλμα εγγραφής" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "Αφαίρεσα το %s" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Αδύνατη η δημιουργία μιας υποδοχής (socket)" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Προετοιμασία πλήρης αφαίρεσης του %s" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Αδύνατη η σύνδεση υποδοχής δεδομένων, λήξη χρόνου σύνδεσης" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "Το %s διαγράφηκε πλήρως" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Αδύνατη η εγγραφή στο %s" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Απέτυχε" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Αδύνατη η σύνδεση σε παθητική υποδοχή (socket)." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "Το getaddrinfo ήταν αδύνατο να δέσμευση υποδοχή παρακολούθησης" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 -#, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Αναμονή του %s, αλλά δε βρισκόταν εκεί" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Αδύνατη η πρόσδεση στην υποδοχή (socket)" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Αδύνατη η παρακολούθηση της υποδοχής (socket)" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Αδύνατος ο καθορισμός του ονόματος της υποδοχής (socket)" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Αδύνατη η αποστολή της εντολής PORT" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "Άγνωστη οικογένεια διευθύνσεων %u (AF_*)" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "Το EPRT απέτυχε, ο διακομιστής απάντησε: %s" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Λήξη χρόνου σύνδεσης στην υποδοχή δεδομένων" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Αδύνατη η αποδοχή συνδέσεων" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Πρόβλημα κατά το hashing του αρχείου" -#: apt-pkg/deb/debsystem.cc:91 +#: methods/ftp.cc:890 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" +msgid "Unable to fetch file, server said '%s'" +msgstr "Αδυναμία λήψης του αρχείου, ο διακομιστής απάντησε '%s'" -#: apt-pkg/deb/debsystem.cc:94 -#, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Αδύνατο το κλείδωμα του καταλόγου" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Λήξη χρόνου υποδοχής δεδομένων" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: methods/ftp.cc:935 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" +msgid "Data transfer failed, server said '%s'" +msgstr "Αποτυχία κατά τη μεταφορά δεδομένων, ο διακομιστής απάντησε '%s'" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Επερώτηση" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Αδύνατη η εκτέλεση" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: methods/connect.cc:76 #, c-format -msgid "%lih %limin %lis" -msgstr "" +msgid "Connecting to %s (%s)" +msgstr "Σύνδεση στο %s (%s)" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: methods/connect.cc:87 #, c-format -msgid "%limin %lis" -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: methods/connect.cc:94 #, c-format -msgid "%lis" -msgstr "" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Αδύνατη η δημιουργία υποδοχής για το %s (f=%u t=%u p=%u)" -#: apt-pkg/contrib/strutl.cc:1243 +#: methods/connect.cc:100 #, c-format -msgid "Selection %s not found" -msgstr "Η επιλογή %s δε βρέθηκε" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Αδύνατη η αρχικοποίηση της σύνδεσης στο %s:%s (%s)." -#: apt-pkg/contrib/fileutl.cc:190 +#: methods/connect.cc:108 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "" -"Δε θα χρησιμοποιηθεί κλείδωμα για το ανάγνωσης μόνο αρχείο κλειδώματος %s" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Αδύνατη η σύνδεση στο %s:%s (%s), λήξη χρόνου σύνδεσης" -#: apt-pkg/contrib/fileutl.cc:195 +#: methods/connect.cc:126 #, c-format -msgid "Could not open lock file %s" -msgstr "Αδύνατο το άνοιγμα του αρχείου κλειδώματος %s" +msgid "Could not connect to %s:%s (%s)." +msgstr "Αδύνατη η σύνδεση στο %s:%s (%s)." -#: apt-pkg/contrib/fileutl.cc:218 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "" -"Δε θα χρησιμοποιηθεί κλείδωμα για το συναρμοσμένο από nfs αρχείο κλειδώματος " -"%s" +msgid "Connecting to %s" +msgstr "Σύνδεση στο %s" -#: apt-pkg/contrib/fileutl.cc:223 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Could not get lock %s" -msgstr "Αδύνατο το κλείδωμα %s" +msgid "Could not resolve '%s'" +msgstr "Αδύνατη η εύρεση του '%s'" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: methods/connect.cc:205 #, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +msgid "Temporary failure resolving '%s'" +msgstr "Προσωρινή αποτυχία στην εύρεση του '%s'" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Κάτι παράξενο συνέβη κατά την εύρεση του '%s:%s' (%i)" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#: methods/connect.cc:211 +#, fuzzy, c-format +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Κάτι παράξενο συνέβη κατά την εύρεση του '%s:%s' (%i)" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: methods/connect.cc:258 +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Αδύνατη η σύνδεση στο %s %s:" + +#: methods/gpgv.cc:168 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" +"Εσωτερικό σφάλμα: Η υπογραφή είναι καλή, αλλά αδυναμία προσδιορισμού του " +"αποτυπώματος?!" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Η υποδιεργασία %s έλαβε ένα σφάλμα καταμερισμού (segfault)" - -#: apt-pkg/contrib/fileutl.cc:826 -#, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "Η υποδιεργασία %s έλαβε ένα σφάλμα καταμερισμού (segfault)" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Βρέθηκε τουλάχιστον μια μη έγκυρη υπογραφή." -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Η υποδιεργασία %s επέστρεψε ένα κωδικός σφάλματος (%u)" +#: methods/gpgv.cc:174 +#, fuzzy +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "" +"Αδυναμία εκτέλεσης του '%s' για την επαλήθευση της υπογραφής (είναι " +"εγκατεστημένο το gpgv;)" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Η υποδιεργασία %s εγκατέλειψε απρόσμενα" +msgid "" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Σφάλμα εγγραφής" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Άγνωστο σφάλμα κατά την εκτέλεση του gpgv" -#: apt-pkg/contrib/fileutl.cc:913 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Πρόβλημα κατά το κλείσιμο του αρχείου" - -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Αδύνατο το άνοιγμα του αρχείου %s" - -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "Αδύνατο το άνοιγμα διασωλήνωσης για το %s" - -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Αποτυχία δημιουργίας IPC στην υποδιεργασία" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Οι παρακάτω υπογραφές ήταν μη έγκυρες:\n" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Αποτυχία εκτέλεσης του συμπιεστή " +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "" +"Οι παρακάτω υπογραφές δεν ήταν δυνατόν να επαληθευτούν επειδή δεν ήταν " +"διαθέσιμο το δημόσιο κλειδί:\n" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Σφάλμα ανάγνωσης" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "αναγνώστηκαν, απομένουν ακόμη %lu για ανάγνωση αλλά δεν απομένουν άλλα" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Σφάλμα στην εγγραφή στο αρχείο" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "γράφτηκαν, απομένουν %lu για εγγραφή αλλά χωρίς επιτυχία" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "" +"Σφάλμα στην ανάγνωση από το διακομιστή, το άλλο άκρο έκλεισε τη σύνδεση" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Πρόβλημα κατά το κλείσιμο του αρχείου" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Σφάλμα στην ανάγνωση από το διακομιστή" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Πρόβλημα κατά τον συγχρονισμό του αρχείου" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Σφάλμα στην εγγραφή στο αρχείο" -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "Πρόβλημα κατά την διαγραφή του αρχείου" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Η επιλογή απέτυχε" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Πρόβλημα κατά τον συγχρονισμό του αρχείου" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Λήξη χρόνου σύνδεσης" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Σφάλμα!" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Σφάλμα στην εγγραφή στο αρχείο εξόδου" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Ολοκληρώθηκε" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Αναμονή επικεφαλίδων" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Ελαττωματική γραμμή επικεφαλίδας" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Ολοκληρώθηκε" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Ο διακομιστής http έστειλε μια άκυρη επικεφαλίδα απάντησης" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Αδύνατη η απεικόνιση mmap ενός άδειου αρχείου" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "Ο διακομιστής http έστειλε μια άκυρη επικεφαλίδα Content-Length" -#: apt-pkg/contrib/mmap.cc:111 -#, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Αδύνατο το άνοιγμα διασωλήνωσης για το %s" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "Ο διακομιστής http έστειλε μια άκυρη επικεφαλίδα Content-Range" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Αδύνατη η απεικόνιση μέσω mmap %lu bytes" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Ο διακομιστής http δεν υποστηρίζει πλήρως το range" -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "Αδύνατο το άνοιγμα του %s" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Άγνωστη μορφή ημερομηνίας" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -#, fuzzy -msgid "Unable to synchronize mmap" -msgstr "Αδύνατη η εκτέλεση" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Ελαττωματικά δεδομένα επικεφαλίδας" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Αδύνατη η απεικόνιση μέσω mmap %lu bytes" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Η σύνδεση απέτυχε" -#: apt-pkg/contrib/mmap.cc:322 -#, fuzzy -msgid "Failed to truncate file" -msgstr "Αποτυχία εγγραφής του αρχείου %s" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Εσωτερικό Σφάλμα" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Εσωτερικό σφάλμα, έγινε κλήση του Install Packages με σπασμένα πακέτα!" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." msgstr "" +"Μερικά πακέτα πρέπει να αφαιρεθούν αλλά η Αφαίρεση είναι απενεργοποιημένη." -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Αδύνατη η εύρεση της κατάστασης του σημείου επαφής %s" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Εσωτερικό Σφάλμα, η Ταξινόμηση δεν ολοκληρώθηκε" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Αδύνατη η εύρεση της κατάστασης του cdrom" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Πολύ περίεργο! Τα μεγέθη δεν ταιριάζουν, στείλτε μήνυμα στο apt@packages." +"debian.org" -#: apt-pkg/contrib/configuration.cc:519 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Μη αναγνωρισμένος τύπος σύντμησης: '%c'" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Χρειάζεται να μεταφορτωθούν %sB/%sB από αρχεία.\n" -#: apt-pkg/contrib/configuration.cc:633 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "Opening configuration file %s" -msgstr "Άνοιγμα του αρχείου ρυθμίσεων %s" +msgid "Need to get %sB of archives.\n" +msgstr "Χρειάζεται να μεταφορτωθούν %sB από αρχεία.\n" -#: apt-pkg/contrib/configuration.cc:801 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Συντακτικό σφάλμα %s:%u: Το block αρχίζει χωρίς όνομα." +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "" +"Μετά από αυτή τη λειτουργία, θα χρησιμοποιηθούν %sB χώρου από το δίσκο.\n" -#: apt-pkg/contrib/configuration.cc:820 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Συντακτικό σφάλμα %s:%u: Λάθος μορφή Ετικέτας (Tag)" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Μετά από αυτή τη λειτουργία, θα ελευθερωθούν %sB χώρου από το δίσκο.\n" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-private/private-install.cc:200 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Συντακτικό σφάλμα %s:%u: Άχρηστοι χαρακτήρες μετά την τιμή" +msgid "You don't have enough free space in %s." +msgstr "Δεν διαθέτετε αρκετό ελεύθερο χώρο στο %s." -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" -"Συντακτικό σφάλμα %s:%u: Οι οδηγίες βρίσκονται μόνο στο ανώτατο επίπεδο" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Υπάρχουν προβλήματα και δώσατε -y χωρίς το --force-yes" -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Συντακτικό σφάλμα %s:%u: Υπερβολικός αριθμός συνδυασμένων includes" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Καθορίσατε συνηθισμένο, αλλά αυτή δεν είναι μια συνηθισμένη εργασία" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Συντακτικό σφάλμα %s:%u: Συμπεριλαμβάνεται από εδώ" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Ναι, κανε ότι λέω!" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-private/private-install.cc:222 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Συντακτικό σφάλμα %s:%u: Μη υποστηριζόμενη εντολή '%s'" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Πρόκειται να κάνετε κάτι πιθανόν πολύ επιζήμιο.\n" +"Για να συνεχίσετε πληκτρολογήστε τη φράση '%s'\n" +" ?] " -#: apt-pkg/contrib/configuration.cc:900 -#, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Εγκατάλειψη." + +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Θέλετε να συνεχίσετε;" + +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Για μερικά αρχεία απέτυχε η μεταφόρτωση" + +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -"Συντακτικό σφάλμα %s:%u: Οι οδηγίες βρίσκονται μόνο στο ανώτατο επίπεδο" +"Αδύνατη η μεταφόρτωση μερικών αρχείων, ίσως αν δοκιμάζατε με apt-get update " +"ή το --fix-missing;" -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Συντακτικό σφάλμα %s:%u: Άχρηστοι χαρακτήρες στο τέλος του αρχείου" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "" +"ο συνδυασμός --fix-missing με εναλλαγή μέσων δεν υποστηρίζεται για την ώρα" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Αδύνατη η επίλυση των χαμένων πακέτων." + +#: apt-private/private-install.cc:330 +msgid "Aborting install." msgstr "Εγκατάλειψη της εγκατάστασης." -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Η επιλογή γραμμής εντολών '%c' [από %s] δεν είναι γνωστή." +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "Η επιλογή γραμμής εντολών %s δεν είναι κατανοητή" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "" +"Δεν επιτρέπεται οποιαδήποτε διαγραφή· αδυναμία εκκίνησης του AutoRemover" + +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" +"Φαίνεται πως το AutoRemover κατέστρεψε κάτι ενώ δεν θα έπρεπε. Παρακαλείστε " +"να υποβάλλετε αναφορά σφάλματος για το apt." + +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Οι ακόλουθες πληροφορίες ίσως βοηθήσουν στην επίλυση του προβλήματος:" + +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Εσωτερικό Σφάλμα, το AutoRemover δημιούργησε κάποιο πρόβλημα" + +#: apt-private/private-install.cc:513 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "Το ακόλουθο πακέτο εγκαταστάθηκε αυτόματα και δεν χρειάζεται πλέον:" +msgstr[1] "" +"Τα ακόλουθα πακέτα εγκαταστάθηκαν αυτόματα και δεν χρειάζονται πλέον:" + +#: apt-private/private-install.cc:517 +#, fuzzy, c-format +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "" +"%lu το ακόλουθο πακέτο εγκαταστάθηκε αυτόματα και δεν χρειάζεται πλέον:" +msgstr[1] "" +"%lu τα ακόλουθα πακέτα εγκαταστάθηκαν αυτόματα και δεν χρειάζονται πλέον:" + +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Χρησιμοποιήστε 'apt-get autoremove' για να το διαγράψετε." +msgstr[1] "Χρησιμοποιήστε 'apt-get autoremove' για να τα διαγράψετε." + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Aν τρέξετε 'apt-get -f install' ίσως να διορθώσετε αυτά τα προβλήματα:" + +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"Ανεπίλυτες εξαρτήσεις. Δοκιμάστε 'apt-get -f install' χωρίς να ορίσετε " +"πακέτο (ή καθορίστε μια λύση)." + +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"Μερικά πακέτα είναι αδύνατον να εγκατασταθούν. Αυτό μπορεί να σημαίνει ότι\n" +"δημιουργήσατε μια απίθανη κατάσταση ή αν χρησιμοποιείτε την ασταθή\n" +"διανομή, ότι μερικά από τα πακέτα δεν έχουν ακόμα δημιουργηθεί ή έχουν\n" +"μετακινηθεί από τα εισερχόμενα." + +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Χαλασμένα πακέτα" + +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Τα ακόλουθα επιπλέον πακέτα θα εγκατασταθούν:" + +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Προτεινόμενα πακέτα:" + +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Συνιστώμενα πακέτα:" + +#: apt-private/private-install.cc:825 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Η επιλογή γραμμής εντολών %s δεν είναι boolean" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "" +"Παράκαμψη του %s, είναι εγκατεστημένο και η αναβάθμιση δεν έχει οριστεί.\n" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-private/private-install.cc:829 #, c-format -msgid "Option %s requires an argument." -msgstr "Η επιλογή %s απαιτεί ένα όρισμα." +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"Παράκαμψη του %s, είναι εγκατεστημένο και μόνο αναβαθμίσεις έχουν οριστεί.\n" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-private/private-install.cc:841 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" -"Επιλογή %s: Οι προδιαγραφές του αντικειμένου ρυθμίσεων απαιτούν =<val>." +"Η επανεγκατάσταση του %s δεν είναι εφικτή, δεν είναι δυνατή η μεταφόρτωσή " +"του\n" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-private/private-install.cc:846 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Επιλογή %s: απαιτείται ένας ακέραιος αριθμός ως όρισμα, όχι '%s'" +msgid "%s is already the newest version.\n" +msgstr "το %s είναι ήδη η τελευταία έκδοση.\n" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-private/private-install.cc:894 #, c-format -msgid "Option '%s' is too long" -msgstr "Η επιλογή '%s' έχει υπερβολικό μήκος" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Επιλέχθηκε η έκδοση %s (%s) για το %s\n" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-private/private-install.cc:899 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Η τιμή %s δεν είναι κατανοητή, δοκιμάστε σωστό (true) ή λάθος (false)." +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Επιλέχθηκε η έκδοση %s (%s) για το %s λόγω του %s\n" -#: apt-pkg/contrib/cmndline.cc:391 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Invalid operation %s" -msgstr "Μη έγκυρη λειτουργία %s" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "" +"Το πακέτο %s δεν είναι εγκατεστημένο και δεν θα αφαιρεθεί. Εννοείτε '%s'?\n" -#: cmdline/apt-cache.cc:149 +#: apt-private/private-install.cc:947 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Το πακέτο %s με έκδοση %s έχει ανικανοποίητες εξαρτήσεις:\n" +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Το πακέτο %s δεν είναι εγκατεστημένο και δεν θα αφαιρεθεί\n" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Συνολικά Ονόματα Πακέτων : " +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Συνολο Δομών Πακέτου : " +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Κανονικά Πακέτα: " +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Διόρθωση εξαρτήσεων..." -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Πλήρως Εικονικά Πακέτα: " +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " απέτυχε." -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Μονά Εικονικά Πακέτα: " +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Αδύνατη η διόρθωση των εξαρτήσεων" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Μικτά Εικονικά Πακέτα: " +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Αδύνατη η ελαχιστοποίηση του συνόλου αναβαθμίσεων" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr "Αγνοούμενα: " +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Ετοιμο" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Σύνολο Διαφορετικών Εκδόσεων: " +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "" +"Ίσως να πρέπει να τρέξετε apt-get -f install για να διορθώσετε αυτά τα " +"προβλήματα." -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Σύνολο Διαφορετικών Εκδόσεων: " +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Ανεπίλυτες εξαρτήσεις. Δοκιμάστε με το -f." -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Σύνολο Εξαρτήσεων: " +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Σύνολο σχέσεων Εκδ/Αρχείων: " +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Εγκατεστημένα]" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Σύνολο σχέσεων Εκδ/Αρχείων: " +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Εγκατεστημένα]" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Σύνολο Αντιστοιχίσεων Παροχών: " +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Σύνολο Κοινών Στοιχειοσειρών : " +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Εγκατεστημένα]" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Συνολικός χώρος Εξαρτήσεων Εκδόσεων: " +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Εγκατεστημένα]" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Σύνολο χώρου ασφαλείας: " +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Συνολικός Καταμετρημένος Χώρος: " +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 +#: apt-private/private-output.cc:435 #, c-format -msgid "Package file %s is out of sync." -msgstr "Το αρχείο πακέτου %s δεν είναι ενημερωμένο." +msgid "but %s is installed" +msgstr "αλλά το %s είναι εγκατεστημένο" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Δε βρέθηκαν πακέτα" +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "αλλά το %s πρόκειται να εγκατασταθεί" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Πρέπει να δώσετε τουλάχιστον ένα μοτίβο αναζήτησης" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "αλλά δεν είναι εγκαταστάσημο" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "αλλά είναι ένα εικονικό πακέτο" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Αρχεία Πακέτου:" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "αλλά δεν είναι εγκατεστημένο" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "" -"Η cache δεν είναι ενημερωμένη, αδυναμία παραπομπής σε ένα αρχείο πακέτου" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "αλλά δεν πρόκειται να εγκατασταθεί" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Καθηλωμένα Πακέτα:" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " η" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(δε βρέθηκαν)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Τα ακόλουθα πακέτα έχουν ανεπίλυτες εξαρτήσεις:" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Εγκατεστημένα: " +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Τα ακόλουθα ΝΕΑ πακέτα θα εγκατασταθούν:" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Υποψήφιο: " +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Τα ακόλουθα πακέτα θα ΑΦΑΙΡΕΘΟΥΝ:" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(κανένα)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Τα ακόλουθα πακέτα θα μείνουν ως έχουν:" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Καθήλωση Πακέτου: " +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Τα ακόλουθα πακέτα θα αναβαθμιστούν:" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Πίνακας Έκδοσης:" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Τα ακόλουθα πακέτα θα ΥΠΟΒΑΘΜΙΣΤΟΥΝ:" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Τα ακόλουθα κρατημένα πακέτα θα αλλαχθούν:" + +#: apt-private/private-output.cc:668 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s για %s είναι μεταγλωττισμένο σε %s %s\n" +msgid "%s (due to %s) " +msgstr "%s (λόγω του %s) " -#: cmdline/apt-cache.cc:1749 -#, fuzzy +#: apt-private/private-output.cc:676 msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Χρήση: apt-cache [επιλογές] εντολή\n" -" apt-cache [επιλογές] add file1 [file2 ...]\n" -" apt-cache [επιλογές] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [επιλογές] showsrc pkg1 [pkg2 ...]\n" -"\n" -"το apt-cache είναι ένα χαμηλού επιπέδου εργαλείο που χρησιμοποιείται για \n" -"το χειρισμό των δυαδικών αρχείων cache του APT, και να εξάγει πληροφορίες\n" -"από αυτά\n" -"\n" -"Εντολές:\n" -" add - Προσθέτει ένα αρχείο πακέτου στη cache πηγών\n" -" gencaches - Κατασκευή της cache των πακέτων και των πηγών\n" -" showpkg - Εμφάνιση μερικών γενικών πληροφοριών για ένα πακέτο\n" -" showsrc - Εμφάνιση εγγραφών για πηγαίο πακέτο\n" -" stats - Εμφάνιση μερικών βασικών στατιστικών\n" -" dump - Εμφάνιση όλου του αρχείου σε περιληπτική μορφή.\n" -" dumpavail - Εκτύπωση της λίστας των διαθέσιμων πακέτων στην κανονική " -"έξοδο\n" -" unmet - Εμφάνιση μη ικανοποιούμενων εξαρτήσεων\n" -" search - Αναζήτηση στη λίστα πακέτων για αυτή τη κανονική παράσταση\n" -" show - Εμφάνιση μιας αναγνώσιμης εγγραφής για το πακέτο\n" -" depends - Εμφάνιση των εξαρτήσεων ενός πακέτου\n" -" rdepends - Εμφάνιση αντίστροφων εξαρτήσεων ενός πακέτου\n" -" pkgnames - Εμφάνιση λίστας με τα ονόματα όλων των πακέτων\n" -" dotty - Παραγωγή γραφημάτων πακέτων για το GraphViz\n" -" xvcg - Παραγωγή γραφημάτων πακέτων για το xvcg\n" -" policy - Εμφάνιση προτεραιοτήτων πηγών\n" -"\n" -"Επιλογές:\n" -" -h Αυτό το κείμενο βοήθειας.\n" -" -p=? Η cache πακέτων.\n" -" -s=? Η cache πηγών.\n" -" -q Απενεργοποίηση του δείκτη προόδου.\n" -" -i Εμφάνιση μόνο των σημαντικών εξαρτήσεων για την εντολή unmet.\n" -" -c=? Ανάγνωση αυτού του αρχείου ρυθμίσεων\n" -" -o=? Χρήση μιας αυθαίρετη επιλογής ρυθμίσεων, πχ -o dir::cache=/tmp\n" -"Δείτε τις σελίδες man του apt-cache(8) και apt.conf(5) για πληροφορίες.\n" +"ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Τα ακόλουθα απαραίτητα πακέτα θα αφαιρεθούν\n" +"Αυτό ΔΕΝ θα έπρεπε να συμβεί, εκτός αν ξέρετε τι ακριβώς κάνετε!" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "" -"Παρακαλώ δώστε ένα όνομα για αυτόν τον δίσκο, όπως 'Debian 5.0.3 Disk 1'" +#: apt-private/private-output.cc:707 +#, c-format +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu αναβαθμίστηκαν, %lu νέο εγκατεστημένα, " -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Παρακαλώ εισάγετε το δίσκο στη συσκευή και πατήστε enter" +#: apt-private/private-output.cc:711 +#, c-format +msgid "%lu reinstalled, " +msgstr "%lu επανεγκατεστημένα," -#: cmdline/apt-cdrom.cc:139 +#: apt-private/private-output.cc:713 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Αποτυχία σύνδεσης του %s σε %s" +msgid "%lu downgraded, " +msgstr "%lu υποβαθμισμένα, " -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-private/private-output.cc:715 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu θα αφαιρεθούν και %lu δεν αναβαθμίζονται.\n" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Επαναλάβετε την διαδικασία για τα υπόλοιπα CD από το σετ σας." +#: apt-private/private-output.cc:719 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "%lu μη πλήρως εγκατεστημένα ή αφαιρέθηκαν.\n" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Τα ορίσματα δεν είναι σε ζεύγη" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[Ν/ο]" -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[ν/Ο]" + +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" msgstr "" -"Χρήση: apt-config [επιλογές] εντολή\n" -"\n" -"το apt-config είναι ένα απλό εργαλείο για την ανάγνωση του αρχείου ρυθμίσεων " -"APT\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Αδύνατη η εύρεση του πακέτου %s" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Αδύνατη η εύρεση του πακέτου %s" +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 +#, c-format +msgid "Regex compilation error - %s" +msgstr "σφάλμα μεταγλωτισμου - %s" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Αδύνατη η εύρεση του πακέτου %s" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Η εντολή update δεν παίρνει ορίσματα" -#: cmdline/apt-get.cc:367 +#: apt-private/private-update.cc:90 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Επιλογή του %s ώς λίστας πηγαίων πακέτων αντί της %s\n" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "Αδύνατη η εύρεση του πακέτου %s" - -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-private/private-show.cc:156 #, c-format -msgid "%s set to manually installed.\n" -msgstr "το %s έχει εγκατασταθεί με το χέρι\n" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, c-format -msgid "%s set to automatically installed.\n" -msgstr "το %s έχει εγκατασταθεί αυτόματα\n" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +#: apt-private/private-main.cc:32 msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "" -"Εσωτερικό Σφάλμα, η προσπάθεια επίλυσης του προβλήματος \"έσπασε\" κάποιο " -"υλικό" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Τα ακόλουθα πακέτα δεν εξακριβώθηκαν!" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Αδύνατο το κλείδωμα του καταλόγου μεταφόρτωσης" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Παράκαμψη προειδοποίησης ταυτοποίησης.\n" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "" -"Θα πρέπει να καθορίσετε τουλάχιστον ένα πακέτο για να μεταφορτώσετε τον " -"κωδικάτου" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Μερικά πακέτα δεν εξαακριβώθηκαν" + +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Εγκατάσταση των πακέτων χωρίς επαλήθευση;" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Αδυναμία εντοπισμού του κώδικά του πακέτου %s" +msgid "Failed to fetch %s %s\n" +msgstr "Αποτυχία ανάκτησης του %s %s\n" -#: cmdline/apt-get.cc:786 +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Αποτυχία μετονομασίας του %s σε %s" + +#: apt-private/private-sources.cc:70 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: cmdline/apt-get.cc:791 -#, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" msgstr "" -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Παράκαμψη του ήδη μεταφορτωμένου αρχείου `%s`\n" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Υπολογισμός της αναβάθμισης... " -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "Δεν μπόρεσα να προσδιορίσω τον ελεύθερο χώρο στο %s" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Ετοιμο" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "Δεν διαθέτετε αρκετό ελεύθερο χώρο στο %s" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Hit " -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Χρειάζεται να μεταφορτωθούν %sB/%sB πηγαίου κώδικα.\n" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Φέρε:" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Αγνόησε " + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Σφάλμα " + +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Χρειάζεται να μεταφορτωθούν %sB πηγαίου κώδικα.\n" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Μεταφορτώθηκαν %sB σε %s (%sB/s)\n" -#: cmdline/apt-get.cc:902 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Fetch source %s\n" -msgstr "Μεταφόρτωση Κωδικα %s\n" +msgid " [Working]" +msgstr " [Επεξεργασία]" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Αποτυχία μεταφόρτωσης μερικών αρχειοθηκών." - -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Ολοκληρώθηκε η μεταφόρτωση μόνο" +#: apt-private/acqprogress.cc:297 +#, c-format +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Αλλαγή Μέσου: Παρακαλώ εισάγετε το δίσκο με ετικέτα\n" +" '%s'\n" +"στη συσκευή '%s' και πιέστε enter\n" -#: cmdline/apt-get.cc:950 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Παράκαμψη της αποσυμπίεσης ήδη μεταφορτωμένου κώδικα στο %s\n" +msgid "Unable to read %s" +msgstr "Αδύνατη η ανάγνωση του %s" -#: cmdline/apt-get.cc:962 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Απέτυχε η εντολή αποσυμπίεσης %s\n" +msgid "Unable to change to %s" +msgstr "Αδύνατη η αλλαγή σε %s" -#: cmdline/apt-get.cc:963 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Ελέγξτε αν είναι εγκαταστημένο το πακέτο 'dpkg-dev'.\n" +msgid "No mirror file '%s' found " +msgstr "" -#: cmdline/apt-get.cc:991 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 +#, fuzzy, c-format +msgid "Can not read mirror file '%s'" +msgstr "Αδύνατο το άνοιγμα του αρχείου %s" + +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Αδύνατο το άνοιγμα του αρχείου %s" + +#: methods/mirror.cc:445 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Απέτυχε η εντολή χτισίματος %s.\n" +msgid "[Mirror: %s]" +msgstr "" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Η απογονική διεργασία απέτυχε" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Αποτυχία κατά τη δημιουργία διασωλήνωσης IPC στην υποδιεργασία" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Η σύνδεση έκλεισε πρόωρα" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Κακή προκαθορισμένη ρύθμιση!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Πιέστε enter για συνέχεια." + +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Επιθυμείτε τη διαγραφή ήδη μεταφορτωμένων αρχείων .deb;" + +#: dselect/install:102 +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Προέκυψανσφάλματα κατά την αποσυμπίεση. Θα ρυθμίσω τα " + +#: dselect/install:103 +#, fuzzy +msgid "will be configured. This may result in duplicate errors" +msgstr "πακέτα που εγκαταστάθηκαν. Αυτό μπορεί να παράγει διπλά λάθη" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -"Θα πρέπει να καθορίσετε τουλάχιστον ένα πακέτο για έλεγχο των εξαρτήσεων του" +"ή σφάλματα που προκύπτουν από χαλασμένες εξαρτήσεις. Αυτό είναι εντάξει, " +"μόνο τα λάθη" -#: cmdline/apt-get.cc:1054 -#, c-format +#: dselect/install:105 msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" +"πριν από το μήνυμα αυτό έχει σημασία. Παρακαλώ διορθώστε τα και τρέξτε " +"[I]nstall ξανά" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Αδύνατη η εύρεση πληροφοριών χτισίματος για το %s" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Σύμπτυξη Διαθέσιμων Πληροφοριών" -#: cmdline/apt-get.cc:1101 +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "Κλήση του DropNode σε έναν ήδη συνδεδεμένο κόμβο" + +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Αποτυχία εντοπισμού του στοιχείου hash!" + +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Αδυναμία εντοπισμού εκτροπής" + +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Εσωτερικό Σφάλμα στο AddDiversion" + +#: apt-inst/filelist.cc:477 #, c-format -msgid "%s has no build depends.\n" -msgstr "το %s δεν έχει εξαρτήσεις χτισίματος.\n" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Προσπάθεια για αντικατάσταση εκτροπής, %s -> %s και %s/%s" -#: cmdline/apt-get.cc:1271 +#: apt-inst/filelist.cc:506 #, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή το %s δεν επιτρέπεται στο " -"πακέτο %s" +msgid "Double add of diversion %s -> %s" +msgstr "Διπλή προσθήκη εκτροπής %s -> %s" -#: cmdline/apt-get.cc:1289 +#: apt-inst/filelist.cc:549 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" -"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή το πακέτο %s δεν βρέθηκε" +msgid "Duplicate conf file %s/%s" +msgstr "Διπλό αρχείο ρυθμίσεων %s/%s" -#: cmdline/apt-get.cc:1312 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"Αποτυχία ικανοποίησης %s εξαρτήσεων για το %s: Το εγκατεστημένο πακέτο %s " -"είναι νεώτερο" +msgid "The path %s is too long" +msgstr "Η διαδρομή %s έχει υπερβολικό μήκος" -#: cmdline/apt-get.cc:1351 +#: apt-inst/extract.cc:132 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή δεν υπάρχουν διαθέσιμες " -"εκδόσεις του πακέτου %s που να ικανοποιούν τις απαιτήσεις της έκδοσης" +msgid "Unpacking %s more than once" +msgstr "Αποσυμπίεση του %s πάνω από μια φορά" -#: cmdline/apt-get.cc:1357 +#: apt-inst/extract.cc:142 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "" -"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή το πακέτο %s δεν έχει " -"υποψήφιαέκδοση" +msgid "The directory %s is diverted" +msgstr "Ο φάκελος %s έχει εκτραπεί" -#: cmdline/apt-get.cc:1380 +#: apt-inst/extract.cc:152 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Αποτυχία ικανοποίησης %s εξάρτησης για το %s: %s" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Το πακέτο προσπαθεί να γράψει στον προορισμό εκτροπής %s/%s" + +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Η διαδρομή εκτροπής έχει υπερβολικό μήκος" -#: cmdline/apt-get.cc:1395 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Οι εξαρτήσεις χτισίματος για το %s δεν ικανοποιούνται." +msgid "Failed to stat %s" +msgstr "Αποτυχία εύρεσης της κατάστασης του %s." -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Αποτυχία επεξεργασίας εξαρτήσεων χτισίματος" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Αποτυχία μετονομασίας του %s σε %s" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-inst/extract.cc:249 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Changelog για %s (%s)" +msgid "The directory %s is being replaced by a non-directory" +msgstr "Ο φάκελος %s αντικαθίσταται από ένα μη-φάκελο" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Υποστηριζόμενοι Οδηγοί:" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Αποτυχία εντοπισμού του κόμβου στην ομάδα hash του" -#: cmdline/apt-get.cc:1632 -#, fuzzy -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -msgstr "" -"Χρήση: apt-get [παράμετροι] εντολή\n" -" apt-get [παράμετροι] install|remove pkg1 [pkg2 ...]\n" -" apt-get [παράμετροι] source pkg1 [pkg2 ...]\n" -"\n" -"η apt-get είναι μια απλή διασύνδεση για τη μεταφόρτωση και την\n" -"εγκατάσταση πακέτων. Οι πιο συχνές εντολές είναι η update\n" -"και η install.\n" -"\n" -"Εντολές:\n" -" update - Ανάκτηση νέων καταλόγων πακέτων\n" -" upgrade - Διενέργεια αναβάθμισης\n" -" install - Εγκατάσταση νέων πακέτων (χωρίς την επέκταση .deb)\n" -" remove - Αφαίρεση πακέτων\n" -" source - Μεταφόρτωση πακέτων πηγαίου κώδικα\n" -" build-dep - Ρύθμιση εξαρτήσεων χτισίματος για πακέτα πηγαίου κώδικα\n" -" dist-upgrade - Αναβάθμιση διανομής, δες το apt-get(8)\n" -" dselect-upgrade - Τήρηση των επιλογών του dselect\n" -" clean - Καθαρισμός των μεταφορτωμένων αρχείων\n" -" autoclean - Καθαρισμός παλαιότερα μεταφορτωμένων αρχείων\n" -" check - Εξακρίβωση για τυχόν σπασμένες εξαρτήσεις\n" -"\n" -"Παράμετροι:\n" -" -h Αυτό το βοηθητικό κείμενο.\n" -" -q Χωρίς αναλυτική ένδειξη προόδου (κατάλληλο για αποθήκευση της εξόδου)\n" -" -qq Χωρίς λεπτομέρειες εκτός από τα λάθη\n" -" -d Μεταφόρτωση μόνο - ΜΗΝ αποσυμπιέσεις ή εγκαταστήσεις αρχεία\n" -" -s Χωρίς ενέργεια. Διενέργεια προσομοίωσης βημάτων εγκατάστασης\n" -" -y Υπόθεσε Ναι για όλες τις ερωτήσεις και μην περιμένεις απάντηση\n" -" -f Προσπάθησε να συνεχίσεις αν αποτύχει ο έλεγχος ακεραιότητας\n" -" -m Προσπάθησε να συνεχίσεις αν υπάρχουν άγνωστα πακέτα\n" -" -u Εμφάνισε επίσης ένα κατάλογο από αναβαθμιζόμενα πακέτα\n" -" -b Χτίσε το πηγαίο πακέτο μετά την μεταφόρτωση του\n" -" -V Εμφάνισε λεπτομερείς αριθμούς εκδόσεων\n" -" -c=? Διάβασε αυτό το αρχείο ρυθμίσεων\n" -" -o=? Θέσε μια αυθαίρετη παράμετρο, πχ -o dir::cache=/tmp\n" -"Δείτε τις σελίδες εγχειριδίου apt-get(8), sources.list(5) και apt.conf(5)\n" -"για περισσότερες πληροφορίες και επιλογές.\n" -" This APT has Super Cow Powers.\n" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Η διαδρομή έχει υπερβολικό μήκος" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "" -"Θα πρέπει να καθορίσετε τουλάχιστον ένα πακέτο για να μεταφορτώσετε τον " -"κωδικάτου" +#: apt-inst/extract.cc:421 +#, c-format +msgid "Overwrite package match with no version for %s" +msgstr "Αντικατάσταση πακέτου χωρίς καμία έκδοση %s" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: apt-inst/extract.cc:438 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Το αρχείο %s/%s αντικαθιστά αυτό στο πακέτο %s" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" +#: apt-inst/extract.cc:498 +#, c-format +msgid "Unable to stat %s" +msgstr "Αδύνατη η εύρεση της κατάστασης του %s" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "αλλά δεν είναι εγκατεστημένο" +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, c-format +msgid "Failed to write file %s" +msgstr "Αποτυχία εγγραφής του αρχείου %s" -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "το %s έχει εγκατασταθεί με το χέρι\n" +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "Αποτυχία στο κλείσιμο του αρχείου %s" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "το %s έχει εγκατασταθεί με το χέρι\n" +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Αυτό δεν είναι ένα έγκυρο αρχείο DEB, αγνοείται το μέλος '%s'" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "το %s είναι ήδη η τελευταία έκδοση.\n" +#: apt-inst/deb/debfile.cc:132 +#, c-format +msgid "Internal error, could not locate member %s" +msgstr "Εσωτερικό Σφάλμα, αδυναμία εντοπισμού του μέλους %s" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "το %s είναι ήδη η τελευταία έκδοση.\n" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Μη αναλύσιμο αρχείο control" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "το %s έχει εγκατασταθεί με το χέρι\n" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Μη έγκυρη υπογραφή αρχειοθήκης" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Αποτυχία ανοίγματος του %s" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Σφάλμα κατά την ανάγνωση της επικεφαλίδας του μέλους της αρχειοθήκης" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Μη έγκυρη επικεφαλίδα μέλος της αρχειοθήκης" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Μη έγκυρη επικεφαλίδα μέλος της αρχειοθήκης" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Η αρχειοθήκη είναι πολύ μικρή" -#: methods/cdrom.cc:203 -#, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Αδύνατη η ανάγνωση της βάσης δεδομένων του cdrom %s" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Αποτυχία ανάγνωσης των επικεφαλίδων της αρχειοθήκης" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"Παρακαλώ χρησιμοποιείστε το apt-cdrom για να αναγνωριστεί αυτό το CD από το " -"APT. Το apt-get update δε χρησιμεύει για να προσθέτει νέα CD" +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Αποτυχία κατά τη δημιουργία διασωληνώσεων" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Λάθος CD" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Αποτυχία κατά την εκτέλεση του gzip " -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Αδυναμία απόσυναρμογής του CD-ROM στο %s, μπορεί να είναι σε χρήση." +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Κατεστραμμένη αρχειοθήκη" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Ο δίσκος δεν βρέθηκε." +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Το Checksum του tar απέτυχε, η αρχείοθήκη είναι κατεστραμμένη" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Το αρχείο Δε Βρέθηκε" +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Άγνωστη επικεφαλίδα TAR τύπος %u, μέλος %s" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Αποτυχία εύρεσης της κατάστασης" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Αποτυχία ορισμού του χρόνου τροποποίησης" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Μη έγκυρο URI, τα τοπικά URI δεν πρέπει να αρχίζουν με //" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Το σύστημα συσκευασίας '%s' δεν υποστηρίζεται" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Σύνδεση στο σύστημα" +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Αδύνατος ο καθορισμός ενός κατάλληλου τύπου συστήματος πακέτων" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Αδύνατος ο καθορισμός του ονόματος του ομότιμου (peer)" +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "Εγιναν %i εγγραφές.\n" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Αδύνατος ο καθορισμός του τοπικού ονόματος" +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "Εγιναν %i εγγραφές με %i απώντα αρχεία.\n" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Ο διακομιστής αρνήθηκε την σύνδεση με μήνυμα: %s" +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Εγιναν %i εγγραφές με %i ασύμβατα αρχεία.\n" -#: methods/ftp.cc:225 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 #, c-format -msgid "USER failed, server said: %s" -msgstr "Η εντολή USER απέτυχε, ο διακομιστής απάντησε: %s" +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "Εγιναν %i εγγραφές με %i απώντα αρχεία και %i ασύμβατα αρχεία\n" -#: methods/ftp.cc:232 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "PASS failed, server said: %s" -msgstr "Η εντολή PASS απέτυχε, ο διακομιστής απάντησε: %s" +msgid "Can't find authentication record for: %s" +msgstr "" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "Ανόμοιο MD5Sum" + +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." msgstr "" -"Ο διαμεσολαβητής έχει οριστεί αλλά χωρίς σενάριο εισόδου, το Acquire::ftp::" -"ProxyLogin είναι άδειο" +"Αδύνατο το άνοιγμα ή η ανάλυση των λιστών πακέτων ή του αρχείου κατάστασης." -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Η εντολή '%s' στο σενάριο εισόδου απέτυχε, ο διακομιστής απάντησε: %s" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "" +"Ίσως να πρέπει να τρέξετε apt-get update για να διορθώσετε αυτά τα προβλήματα" -#: methods/ftp.cc:306 -#, c-format -msgid "TYPE failed, server said: %s" -msgstr "Η εντολή TYPE απέτυχε, ο διακομιστής απάντησε: %s" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Αδύνατη η ανάγνωση της λίστας πηγών." -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Λήξη χρόνου σύνδεσης" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Άδειο cache πακέτων" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Ο διακομιστής έκλεισε την σύνδεση" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Το αρχείο cache των πακέτων είναι κατεστραμμένο" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Το μήνυμα απάντησης υπερχείλισε την ενδιάμεση μνήμη." +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Το αρχείο cache των πακέτων είναι ασύμβατης έκδοσης" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Αλλοίωση του πρωτοκόλλου" +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "Το αρχείο cache των πακέτων είναι κατεστραμμένο" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Αδύνατη η δημιουργία μιας υποδοχής (socket)" +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "Αυτό το APT δεν υποστηρίζει το Σύστημα Απόδοσης Έκδοσης '%s'" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Αδύνατη η σύνδεση υποδοχής δεδομένων, λήξη χρόνου σύνδεσης" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Η cache πακέτων κατασκευάστηκε για μια διαφορετική αρχιτεκτονική" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Απέτυχε" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Εξαρτάται από" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Αδύνατη η σύνδεση σε παθητική υποδοχή (socket)." +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "ΠροΕξαρτάται από" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "Το getaddrinfo ήταν αδύνατο να δέσμευση υποδοχή παρακολούθησης" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Προτείνει" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Αδύνατη η πρόσδεση στην υποδοχή (socket)" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Συστήνει" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Αδύνατη η παρακολούθηση της υποδοχής (socket)" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Ασύμβατο με" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Αδύνατος ο καθορισμός του ονόματος της υποδοχής (socket)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Αντικαθιστά" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Αδύνατη η αποστολή της εντολής PORT" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Απαρχαιώνει" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Άγνωστη οικογένεια διευθύνσεων %u (AF_*)" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Χαλάει" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "Το EPRT απέτυχε, ο διακομιστής απάντησε: %s" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Λήξη χρόνου σύνδεσης στην υποδοχή δεδομένων" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "σημαντικό" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Αδύνατη η αποδοχή συνδέσεων" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "απαιτούμενο" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Πρόβλημα κατά το hashing του αρχείου" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "καθιερωμένο" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Αδυναμία λήψης του αρχείου, ο διακομιστής απάντησε '%s'" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "προαιρετικό" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Λήξη χρόνου υποδοχής δεδομένων" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "επιπλέον" -#: methods/ftp.cc:935 +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Αποτυχία κατά τη μεταφορά δεδομένων, ο διακομιστής απάντησε '%s'" - -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Επερώτηση" +msgid "The method driver %s could not be found." +msgstr "Ο οδηγός μεθόδου %s δεν μπορεί να εντοπιστεί." -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Αδύνατη η εκτέλεση" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Ελέγξτε αν είναι εγκαταστημένο το πακέτο 'dpkg-dev'.\n" -#: methods/connect.cc:76 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Σύνδεση στο %s (%s)" +msgid "Method %s did not start correctly" +msgstr "Η μέθοδος %s δεν εκκινήθηκε σωστά" -#: methods/connect.cc:87 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Παρακαλώ εισάγετε το δίσκο με ετικέτα '%s' στη συσκευή '%s' και πατήστε " +"enter." -#: methods/connect.cc:94 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Αδύνατη η δημιουργία υποδοχής για το %s (f=%u t=%u p=%u)" +msgid "Index file type '%s' is not supported" +msgstr "Ο τύπος αρχείου ευρετηρίου '%s' δεν υποστηρίζεται" -#: methods/connect.cc:100 -#, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Αδύνατη η αρχικοποίηση της σύνδεσης στο %s:%s (%s)." +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Κατασκευή Δένδρου Εξαρτήσεων" -#: methods/connect.cc:108 -#, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Αδύνατη η σύνδεση στο %s:%s (%s), λήξη χρόνου σύνδεσης" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Υποψήφιες Εκδόσεις" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Αδύνατη η σύνδεση στο %s:%s (%s)." +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Παραγωγή Εξαρτήσεων" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Ανάγνωση περιγραφής της τρέχουσας κατάσταση" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Connecting to %s" -msgstr "Σύνδεση στο %s" +msgid "Failed to open StateFile %s" +msgstr "Αποτυχία ανοίγματος του αρχείου κατάστασης %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Could not resolve '%s'" -msgstr "Αδύνατη η εύρεση του '%s'" +msgid "Failed to write temporary StateFile %s" +msgstr "Αποτυχία εγγραφής του αρχείου κατάστασης %s" -#: methods/connect.cc:205 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Προσωρινή αποτυχία στην εύρεση του '%s'" +msgid "rename failed, %s (%s -> %s)." +msgstr "απέτυχε η μετονομασία, %s (%s -> %s)." -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Κάτι παράξενο συνέβη κατά την εύρεση του '%s:%s' (%i)" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Ανόμοιο MD5Sum" -#: methods/connect.cc:211 -#, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Κάτι παράξενο συνέβη κατά την εύρεση του '%s:%s' (%i)" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Ανόμοιο μέγεθος" -#: methods/connect.cc:258 -#, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Αδύνατη η σύνδεση στο %s %s:" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Μη έγκυρη λειτουργία %s" -#: methods/gpgv.cc:168 +#: apt-pkg/acquire-item.cc:1573 +#, c-format msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"Εσωτερικό σφάλμα: Η υπογραφή είναι καλή, αλλά αδυναμία προσδιορισμού του " -"αποτυπώματος?!" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Βρέθηκε τουλάχιστον μια μη έγκυρη υπογραφή." +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (1)" -#: methods/gpgv.cc:174 -#, fuzzy -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "" -"Αδυναμία εκτέλεσης του '%s' για την επαλήθευση της υπογραφής (είναι " -"εγκατεστημένο το gpgv;)" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Δεν υπάρχει διαθέσιμο δημόσιο κλειδί για τα ακολουθα κλειδιά:\n" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1669 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Άγνωστο σφάλμα κατά την εκτέλεση του gpgv" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Οι παρακάτω υπογραφές ήταν μη έγκυρες:\n" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1721 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -"Οι παρακάτω υπογραφές δεν ήταν δυνατόν να επαληθευτούν επειδή δεν ήταν " -"διαθέσιμο το δημόσιο κλειδί:\n" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Σφάλμα στην εγγραφή στο αρχείο" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" +#: apt-pkg/acquire-item.cc:1859 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" msgstr "" -"Σφάλμα στην ανάγνωση από το διακομιστή, το άλλο άκρο έκλεισε τη σύνδεση" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Σφάλμα στην ανάγνωση από το διακομιστή" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Σφάλμα στην εγγραφή στο αρχείο" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Η επιλογή απέτυχε" - -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Λήξη χρόνου σύνδεσης" +"Αδύνατος ο εντοπισμός ενός αρχείου για το πακέτο %s. Αυτό ίσως σημαίνει ότι " +"χρειάζεται να διορθώσετε χειροκίνητα το πακέτο. (λόγω χαμένου αρχείου)" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Σφάλμα στην εγγραφή στο αρχείο εξόδου" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Αναμονή επικεφαλίδων" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Κατεστραμμένα αρχεία ευρετηρίου πακέτων. Δεν υπάρχει πεδίο Filename: στο " +"πακέτο %s." -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Ελαττωματική γραμμή επικεφαλίδας" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Ο τύπος αρχείου ευρετηρίου '%s' δεν υποστηρίζεται" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Ο διακομιστής http έστειλε μια άκυρη επικεφαλίδα απάντησης" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Αδύνατη η εύρεση της κατάστασης του %s." -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Ο διακομιστής http έστειλε μια άκυρη επικεφαλίδα Content-Length" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Η cache έχει ασύμβατο σύστημα απόδοσης έκδοσης" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Ο διακομιστής http έστειλε μια άκυρη επικεφαλίδα Content-Range" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Προέκυψε σφάλμα κατά την επεξεργασία του %s (FindPkg)" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Ο διακομιστής http δεν υποστηρίζει πλήρως το range" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "" +"Εκπληκτικό, υπερβήκατε τον αριθμό των ονομάτων πακέτων που υποστηρίζει το " +"APT." -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Άγνωστη μορφή ημερομηνίας" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Εκπληκτικό, υπερβήκατε τον αριθμό των εκδόσεων που υποστηρίζει το APT." -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Ελαττωματικά δεδομένα επικεφαλίδας" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "" +"Εκπληκτικό, υπερβήκατε τον αριθμό των περιγραφών που υποστηρίζει το APT." -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Η σύνδεση απέτυχε" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "" +"Εκπληκτικό, υπερβήκατε τον αριθμό των εξαρτήσεων που υποστηρίζει το APT." -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Εσωτερικό Σφάλμα" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Το πακέτο %s %s δε βρέθηκε κατά την επεξεργασία εξαρτήσεων του αρχείου" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Υπολογισμός της αναβάθμισης... " +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Αδύνατη η εύρεση της κατάστασης της λίστας πηγαίων πακέτων %s" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Ετοιμο" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Ανάγνωση Λιστών Πακέτων" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Συλλογή Παροχών Αρχείου" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Αδύνατη η εγγραφή στο %s" -#: apt-private/private-list.cc:164 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Σφάλμα IO κατά την αποθήκευση της cache πηγών" + +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Vendor block %s contains no fingerprint" +msgstr "Η εγγραφή κατασκευαστή %s δεν περιέχει ταυτότητα" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Διόρθωση εξαρτήσεων..." +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "Ο φάκελος λιστών %spartial αγνοείται." -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " απέτυχε." +#: apt-pkg/acquire.cc:91 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "Ο φάκελος αρχειοθηκών %spartial αγνοείται." -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Αδύνατη η διόρθωση των εξαρτήσεων" +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "Αδύνατο το κλείδωμα του καταλόγου" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Αδύνατη η ελαχιστοποίηση του συνόλου αναβαθμίσεων" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Κατέβασμα του αρχείου %li του %li (απομένουν %s)" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Ετοιμο" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Λήψη αρχείου %li του %li" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"Ίσως να πρέπει να τρέξετε apt-get -f install για να διορθώσετε αυτά τα " -"προβλήματα." +"Μερικά αρχεία δεν μεταφορτώθηκαν, αγνοήθηκαν ή χρησιμοποιήθηκαν παλαιότερα " +"στη θέση τους." -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Ανεπίλυτες εξαρτήσεις. Δοκιμάστε με το -f." +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Πρέπει να τοποθετήσετε μερικά URI 'πηγών' στο sources.list" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -#: apt-private/private-output.cc:234 +#: apt-pkg/policy.cc:422 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Εγκατεστημένα]" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Μη έγκυρη εγγραφή στο αρχείο προτιμήσεων, καμία επικεφαλίδα Package" -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [Εγκατεστημένα]" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Αδύνατη η κατανόηση του τύπου καθήλωσης %s" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" msgstr "" +"Δεν έχει οριστεί προτεραιότητα (ή έχει οριστεί μηδενική) για την καθήλωση" -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Εγκατεστημένα]" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Εγκατεστημένα]" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Αδύνατο το άνοιγμα του αρχείου %s" -#: apt-private/private-output.cc:249 +#: apt-pkg/packagemanager.cc:630 #, c-format -msgid "[upgradable from: %s]" +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." msgstr "" +"Αυτή η προσπάθεια εγκατάστασης απαιτεί προσωρινή αφαίρεση του σημαντικού " +"πακέτου %s λόγω ενός βρόγχου Ασυμβατότητας/ΠροΕξάρτησης. Αυτό συνήθως δεν " +"είναι καλό, αλλά εάν πραγματικά θέλετε να συνεχίσετε ενεργοποιήστε την " +"επιλογή APT::Force-LoopBreak option." -#: apt-private/private-output.cc:253 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "Η γραμμή %u έχει υπερβολικό μήκος στη λίστα πηγών %s." -#: apt-private/private-output.cc:435 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Αποπροσάρτηση του CD-ROM...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "but %s is installed" -msgstr "αλλά το %s είναι εγκατεστημένο" +msgid "Using CD-ROM mount point %s\n" +msgstr "Χρησιμοποιείται το σημείο προσάρτησης %s\n" -#: apt-private/private-output.cc:437 +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Αναμονή για δίσκο...\n" + +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Προσάρτηση του CD-ROM...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Αναγνώριση..." + +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "but %s is to be installed" -msgstr "αλλά το %s πρόκειται να εγκατασταθεί" +msgid "Stored label: %s\n" +msgstr "Αποθήκευση Ετικέτας: %s \n" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "αλλά δεν είναι εγκαταστάσημο" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Σάρωση του δίσκου για περιεχόμενα...\n" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "αλλά είναι ένα εικονικό πακέτο" +#: apt-pkg/cdrom.cc:734 +#, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" +"Βρέθηκαν %zu κατάλογοι πακέτων, %zu κατάλογοι πηγαίων, %zu κατάλογοι " +"μεταφράσεων και %zu υπογραφές\n" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "αλλά δεν είναι εγκατεστημένο" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "αλλά δεν πρόκειται να εγκατασταθεί" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "Εύρεση ετικέτας: %s \n" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " η" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Αυτό δεν είναι έγκυρο όνομα, προσπαθείστε ξανά. \n" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Τα ακόλουθα πακέτα έχουν ανεπίλυτες εξαρτήσεις:" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Ο δίσκος αυτός ονομάζεται: \n" +"'%s'\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Τα ακόλουθα ΝΕΑ πακέτα θα εγκατασταθούν:" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Αντιγραφή λιστών πακέτων..." -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Τα ακόλουθα πακέτα θα ΑΦΑΙΡΕΘΟΥΝ:" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Eγγραφή νέας λίστας πηγών\n" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Τα ακόλουθα πακέτα θα μείνουν ως έχουν:" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Οι κατάλογοι με τις πηγές αυτού του δίσκου είναι: \n" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Τα ακόλουθα πακέτα θα αναβαθμιστούν:" +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"Το πακέτο '%s' χρειάζεται να επανεγκατασταθεί, αλλά είναι αδύνατη η εύρεση " +"κάποιας κατάλληλης αρχείοθήκης." -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Τα ακόλουθα πακέτα θα ΥΠΟΒΑΘΜΙΣΤΟΥΝ:" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Σφάλμα, το pkgProblemResolver::Resolve παρήγαγε διακοπές, αυτό ίσως " +"προκλήθηκε από κρατούμενα πακέτα." -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Τα ακόλουθα κρατημένα πακέτα θα αλλαχθούν:" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Αδύνατη η διόρθωση προβλημάτων, έχετε κρατούμενα ελαττωματικά πακέτα." -#: apt-private/private-output.cc:668 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (λόγω του %s) " +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" msgstr "" -"ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Τα ακόλουθα απαραίτητα πακέτα θα αφαιρεθούν\n" -"Αυτό ΔΕΝ θα έπρεπε να συμβεί, εκτός αν ξέρετε τι ακριβώς κάνετε!" -#: apt-private/private-output.cc:707 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu αναβαθμίστηκαν, %lu νέο εγκατεστημένα, " +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: apt-private/private-output.cc:711 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu επανεγκατεστημένα," +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: apt-private/private-output.cc:713 -#, c-format -msgid "%lu downgraded, " -msgstr "%lu υποβαθμισμένα, " +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" -#: apt-private/private-output.cc:715 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu θα αφαιρεθούν και %lu δεν αναβαθμίζονται.\n" +msgid "Unable to parse package file %s (1)" +msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (1)" -#: apt-private/private-output.cc:719 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu μη πλήρως εγκατεστημένα ή αφαιρέθηκαν.\n" +msgid "Unable to parse package file %s (2)" +msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (2)" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[Ν/ο]" +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (1)" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[ν/Ο]" +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "Σημείωση, επιλέχθηκε το %s αντί του%s\n" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" msgstr "" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Μη έγκυρη γραμμή στο αρχείο παρακάμψεων: %s" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Η εντολή update δεν παίρνει ορίσματα" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (1)" -#: apt-private/private-update.cc:90 -#, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση URI)" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: apt-pkg/sourcelist.cc:170 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση dist)" -#: apt-private/private-show.cc:156 -#, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/sourcelist.cc:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (dist)" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/sourcelist.cc:184 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση dist)" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Εσωτερικό σφάλμα, έγινε κλήση του Install Packages με σπασμένα πακέτα!" +#: apt-pkg/sourcelist.cc:190 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση dist)" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "" -"Μερικά πακέτα πρέπει να αφαιρεθούν αλλά η Αφαίρεση είναι απενεργοποιημένη." +#: apt-pkg/sourcelist.cc:193 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση dist)" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Εσωτερικό Σφάλμα, η Ταξινόμηση δεν ολοκληρώθηκε" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (URI)" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Πολύ περίεργο! Τα μεγέθη δεν ταιριάζουν, στείλτε μήνυμα στο apt@packages." -"debian.org" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (dist)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Χρειάζεται να μεταφορτωθούν %sB/%sB από αρχεία.\n" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση URI)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Χρειάζεται να μεταφορτωθούν %sB από αρχεία.\n" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Απόλυτο dist)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "" -"Μετά από αυτή τη λειτουργία, θα χρησιμοποιηθούν %sB χώρου από το δίσκο.\n" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση dist)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Μετά από αυτή τη λειτουργία, θα ελευθερωθούν %sB χώρου από το δίσκο.\n" +msgid "Opening %s" +msgstr "Άνοιγμα του %s" -#: apt-private/private-install.cc:200 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Δεν διαθέτετε αρκετό ελεύθερο χώρο στο %s." +msgid "Malformed line %u in source list %s (type)" +msgstr "Λάθος μορφή της γραμμής %u στη λίστα πηγών %s (τύπος)" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Υπάρχουν προβλήματα και δώσατε -y χωρίς το --force-yes" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Ο τύπος '%s' στη γραμμή %u στη λίστα πηγών %s είναι άγνωστος " -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Καθορίσατε συνηθισμένο, αλλά αυτή δεν είναι μια συνηθισμένη εργασία" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Ο τύπος '%s' στη γραμμή %u στη λίστα πηγών %s είναι άγνωστος " -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Ναι, κανε ότι λέω!" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Η έκδοση %s για το %s δεν βρέθηκε" -#: apt-private/private-install.cc:222 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Πρόκειται να κάνετε κάτι πιθανόν πολύ επιζήμιο.\n" -"Για να συνεχίσετε πληκτρολογήστε τη φράση '%s'\n" -" ?] " +msgid "Version '%s' for '%s' was not found" +msgstr "Η έκδοση %s για το %s δεν βρέθηκε" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Εγκατάλειψη." +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "Αδύνατη η εύρεση του συνόλου πακέτων %s" + +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Αδύνατη η εύρεση του πακέτου %s" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Θέλετε να συνεχίσετε;" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Αδύνατη η εύρεση του πακέτου %s" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Για μερικά αρχεία απέτυχε η μεταφόρτωση" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" -#: apt-private/private-install.cc:320 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Αδύνατη η μεταφόρτωση μερικών αρχείων, ίσως αν δοκιμάζατε με apt-get update " -"ή το --fix-missing;" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -"ο συνδυασμός --fix-missing με εναλλαγή μέσων δεν υποστηρίζεται για την ώρα" - -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Αδύνατη η επίλυση των χαμένων πακέτων." -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Εγκατάλειψη της εγκατάστασης." +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" msgstr "" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" msgstr "" -"Δεν επιτρέπεται οποιαδήποτε διαγραφή· αδυναμία εκκίνησης του AutoRemover" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" msgstr "" -"Φαίνεται πως το AutoRemover κατέστρεψε κάτι ενώ δεν θα έπρεπε. Παρακαλείστε " -"να υποβάλλετε αναφορά σφάλματος για το apt." -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "Οι ακόλουθες πληροφορίες ίσως βοηθήσουν στην επίλυση του προβλήματος:" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Εσωτερικό Σφάλμα, το AutoRemover δημιούργησε κάποιο πρόβλημα" +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "Η επιλογή %s δε βρέθηκε" -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "Το ακόλουθο πακέτο εγκαταστάθηκε αυτόματα και δεν χρειάζεται πλέον:" -msgstr[1] "" -"Τα ακόλουθα πακέτα εγκαταστάθηκαν αυτόματα και δεν χρειάζονται πλέον:" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "" +"Δε θα χρησιμοποιηθεί κλείδωμα για το ανάγνωσης μόνο αρχείο κλειδώματος %s" -#: apt-private/private-install.cc:517 -#, fuzzy, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "" -"%lu το ακόλουθο πακέτο εγκαταστάθηκε αυτόματα και δεν χρειάζεται πλέον:" -msgstr[1] "" -"%lu τα ακόλουθα πακέτα εγκαταστάθηκαν αυτόματα και δεν χρειάζονται πλέον:" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Αδύνατο το άνοιγμα του αρχείου κλειδώματος %s" -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Χρησιμοποιήστε 'apt-get autoremove' για να το διαγράψετε." -msgstr[1] "Χρησιμοποιήστε 'apt-get autoremove' για να τα διαγράψετε." +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "" +"Δε θα χρησιμοποιηθεί κλείδωμα για το συναρμοσμένο από nfs αρχείο κλειδώματος " +"%s" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Aν τρέξετε 'apt-get -f install' ίσως να διορθώσετε αυτά τα προβλήματα:" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Αδύνατο το κλείδωμα %s" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -"Ανεπίλυτες εξαρτήσεις. Δοκιμάστε 'apt-get -f install' χωρίς να ορίσετε " -"πακέτο (ή καθορίστε μια λύση)." -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -"Μερικά πακέτα είναι αδύνατον να εγκατασταθούν. Αυτό μπορεί να σημαίνει ότι\n" -"δημιουργήσατε μια απίθανη κατάσταση ή αν χρησιμοποιείτε την ασταθή\n" -"διανομή, ότι μερικά από τα πακέτα δεν έχουν ακόμα δημιουργηθεί ή έχουν\n" -"μετακινηθεί από τα εισερχόμενα." -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Χαλασμένα πακέτα" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Τα ακόλουθα επιπλέον πακέτα θα εγκατασταθούν:" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Προτεινόμενα πακέτα:" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Η υποδιεργασία %s έλαβε ένα σφάλμα καταμερισμού (segfault)" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Συνιστώμενα πακέτα:" +#: apt-pkg/contrib/fileutl.cc:826 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "Η υποδιεργασία %s έλαβε ένα σφάλμα καταμερισμού (segfault)" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "" -"Παράκαμψη του %s, είναι εγκατεστημένο και η αναβάθμιση δεν έχει οριστεί.\n" +msgid "Sub-process %s returned an error code (%u)" +msgstr "Η υποδιεργασία %s επέστρεψε ένα κωδικός σφάλματος (%u)" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"Παράκαμψη του %s, είναι εγκατεστημένο και μόνο αναβαθμίσεις έχουν οριστεί.\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "Η υποδιεργασία %s εγκατέλειψε απρόσμενα" -#: apt-private/private-install.cc:841 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "" -"Η επανεγκατάσταση του %s δεν είναι εφικτή, δεν είναι δυνατή η μεταφόρτωσή " -"του\n" +#: apt-pkg/contrib/fileutl.cc:913 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Πρόβλημα κατά το κλείσιμο του αρχείου" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "%s is already the newest version.\n" -msgstr "το %s είναι ήδη η τελευταία έκδοση.\n" +msgid "Could not open file %s" +msgstr "Αδύνατο το άνοιγμα του αρχείου %s" + +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Αδύνατο το άνοιγμα διασωλήνωσης για το %s" + +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Αποτυχία δημιουργίας IPC στην υποδιεργασία" + +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Αποτυχία εκτέλεσης του συμπιεστή " + +#: apt-pkg/contrib/fileutl.cc:1514 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "αναγνώστηκαν, απομένουν ακόμη %lu για ανάγνωση αλλά δεν απομένουν άλλα" + +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "γράφτηκαν, απομένουν %lu για εγγραφή αλλά χωρίς επιτυχία" + +#: apt-pkg/contrib/fileutl.cc:1915 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Πρόβλημα κατά το κλείσιμο του αρχείου" + +#: apt-pkg/contrib/fileutl.cc:1927 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Πρόβλημα κατά τον συγχρονισμό του αρχείου" -#: apt-private/private-install.cc:894 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Επιλέχθηκε η έκδοση %s (%s) για το %s\n" +#: apt-pkg/contrib/fileutl.cc:1938 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "Πρόβλημα κατά την διαγραφή του αρχείου" -#: apt-private/private-install.cc:899 -#, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Επιλέχθηκε η έκδοση %s (%s) για το %s λόγω του %s\n" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Πρόβλημα κατά τον συγχρονισμό του αρχείου" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" -"Το πακέτο %s δεν είναι εγκατεστημένο και δεν θα αφαιρεθεί. Εννοείτε '%s'?\n" +msgid "%c%s... Error!" +msgstr "%c%s... Σφάλμα!" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Το πακέτο %s δεν είναι εγκατεστημένο και δεν θα αφαιρεθεί\n" +msgid "%c%s... Done" +msgstr "%c%s... Ολοκληρώθηκε" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Τα ακόλουθα πακέτα δεν εξακριβώθηκαν!" - -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Παράκαμψη προειδοποίησης ταυτοποίησης.\n" - -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Μερικά πακέτα δεν εξαακριβώθηκαν" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Ολοκληρώθηκε" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Εγκατάσταση των πακέτων χωρίς επαλήθευση;" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Αδύνατη η απεικόνιση mmap ενός άδειου αρχείου" -#: apt-private/private-sources.cc:58 +#: apt-pkg/contrib/mmap.cc:111 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Αποτυχία μετονομασίας του %s σε %s" - -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "Couldn't duplicate file descriptor %i" +msgstr "Αδύνατο το άνοιγμα διασωλήνωσης για το %s" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Αδύνατη η απεικόνιση μέσω mmap %lu bytes" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Hit " +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Αδύνατο το άνοιγμα του %s" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Φέρε:" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "Αδύνατη η εκτέλεση" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Αγνόησε " +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Αδύνατη η απεικόνιση μέσω mmap %lu bytes" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Σφάλμα " +#: apt-pkg/contrib/mmap.cc:322 +#, fuzzy +msgid "Failed to truncate file" +msgstr "Αποτυχία εγγραφής του αρχείου %s" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Μεταφορτώθηκαν %sB σε %s (%sB/s)\n" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid " [Working]" -msgstr " [Επεξεργασία]" +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" -#: apt-private/acqprogress.cc:297 -#, c-format +#: apt-pkg/contrib/mmap.cc:449 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -"Αλλαγή Μέσου: Παρακαλώ εισάγετε το δίσκο με ετικέτα\n" -" '%s'\n" -"στη συσκευή '%s' και πιέστε enter\n" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "No mirror file '%s' found " -msgstr "" +msgid "Unable to stat the mount point %s" +msgstr "Αδύνατη η εύρεση της κατάστασης του σημείου επαφής %s" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Αδύνατο το άνοιγμα του αρχείου %s" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Αδύνατη η εύρεση της κατάστασης του cdrom" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Αδύνατο το άνοιγμα του αρχείου %s" +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Μη αναγνωρισμένος τύπος σύντμησης: '%c'" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "[Mirror: %s]" -msgstr "" +msgid "Opening configuration file %s" +msgstr "Άνοιγμα του αρχείου ρυθμίσεων %s" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Αποτυχία κατά τη δημιουργία διασωλήνωσης IPC στην υποδιεργασία" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Συντακτικό σφάλμα %s:%u: Το block αρχίζει χωρίς όνομα." -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Η σύνδεση έκλεισε πρόωρα" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Συντακτικό σφάλμα %s:%u: Λάθος μορφή Ετικέτας (Tag)" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Κακή προκαθορισμένη ρύθμιση!" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Συντακτικό σφάλμα %s:%u: Άχρηστοι χαρακτήρες μετά την τιμή" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Πιέστε enter για συνέχεια." +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "" +"Συντακτικό σφάλμα %s:%u: Οι οδηγίες βρίσκονται μόνο στο ανώτατο επίπεδο" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Επιθυμείτε τη διαγραφή ήδη μεταφορτωμένων αρχείων .deb;" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Συντακτικό σφάλμα %s:%u: Υπερβολικός αριθμός συνδυασμένων includes" -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Προέκυψανσφάλματα κατά την αποσυμπίεση. Θα ρυθμίσω τα " +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Συντακτικό σφάλμα %s:%u: Συμπεριλαμβάνεται από εδώ" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "πακέτα που εγκαταστάθηκαν. Αυτό μπορεί να παράγει διπλά λάθη" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Συντακτικό σφάλμα %s:%u: Μη υποστηριζόμενη εντολή '%s'" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" +#: apt-pkg/contrib/configuration.cc:900 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"ή σφάλματα που προκύπτουν από χαλασμένες εξαρτήσεις. Αυτό είναι εντάξει, " -"μόνο τα λάθη" +"Συντακτικό σφάλμα %s:%u: Οι οδηγίες βρίσκονται μόνο στο ανώτατο επίπεδο" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "" -"πριν από το μήνυμα αυτό έχει σημασία. Παρακαλώ διορθώστε τα και τρέξτε " -"[I]nstall ξανά" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Συντακτικό σφάλμα %s:%u: Άχρηστοι χαρακτήρες στο τέλος του αρχείου" -#: dselect/update:30 -msgid "Merging available information" -msgstr "Σύμπτυξη Διαθέσιμων Πληροφοριών" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "Εγκατάλειψη της εγκατάστασης." -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "Κλήση του DropNode σε έναν ήδη συνδεδεμένο κόμβο" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Η επιλογή γραμμής εντολών '%c' [από %s] δεν είναι γνωστή." + +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Η επιλογή γραμμής εντολών %s δεν είναι κατανοητή" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Αποτυχία εντοπισμού του στοιχείου hash!" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Η επιλογή γραμμής εντολών %s δεν είναι boolean" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Αδυναμία εντοπισμού εκτροπής" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Η επιλογή %s απαιτεί ένα όρισμα." -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Εσωτερικό Σφάλμα στο AddDiversion" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "" +"Επιλογή %s: Οι προδιαγραφές του αντικειμένου ρυθμίσεων απαιτούν =<val>." -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Προσπάθεια για αντικατάσταση εκτροπής, %s -> %s και %s/%s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Επιλογή %s: απαιτείται ένας ακέραιος αριθμός ως όρισμα, όχι '%s'" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Διπλή προσθήκη εκτροπής %s -> %s" +msgid "Option '%s' is too long" +msgstr "Η επιλογή '%s' έχει υπερβολικό μήκος" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Διπλό αρχείο ρυθμίσεων %s/%s" +msgid "Sense %s is not understood, try true or false." +msgstr "Η τιμή %s δεν είναι κατανοητή, δοκιμάστε σωστό (true) ή λάθος (false)." -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The path %s is too long" -msgstr "Η διαδρομή %s έχει υπερβολικό μήκος" +msgid "Invalid operation %s" +msgstr "Μη έγκυρη λειτουργία %s" -#: apt-inst/extract.cc:132 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unpacking %s more than once" -msgstr "Αποσυμπίεση του %s πάνω από μια φορά" +msgid "Installing %s" +msgstr "Εγκατάσταση του %s" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The directory %s is diverted" -msgstr "Ο φάκελος %s έχει εκτραπεί" +msgid "Configuring %s" +msgstr "Ρύθμιση του %s" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Το πακέτο προσπαθεί να γράψει στον προορισμό εκτροπής %s/%s" +msgid "Removing %s" +msgstr "Αφαιρώ το %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Η διαδρομή εκτροπής έχει υπερβολικό μήκος" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "Το %s διαγράφηκε πλήρως" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to stat %s" -msgstr "Αποτυχία εύρεσης της κατάστασης του %s." +msgid "Noting disappearance of %s" +msgstr "" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Αποτυχία μετονομασίας του %s σε %s" +msgid "Running post-installation trigger %s" +msgstr "Εκτέλεση του post-installation trigger %s" -#: apt-inst/extract.cc:249 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Ο φάκελος %s αντικαθίσταται από ένα μη-φάκελο" +msgid "Directory '%s' missing" +msgstr "Ο φάκελος %s αγνοείται." -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Αποτυχία εντοπισμού του κόμβου στην ομάδα hash του" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "Αδύνατο το άνοιγμα του αρχείου %s" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Η διαδρομή έχει υπερβολικό μήκος" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Προετοιμασία του %s" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Αντικατάσταση πακέτου χωρίς καμία έκδοση %s" +msgid "Unpacking %s" +msgstr "Ξεπακετάρισμα του %s" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Το αρχείο %s/%s αντικαθιστά αυτό στο πακέτο %s" +msgid "Preparing to configure %s" +msgstr "Προετοιμασία ρύθμισης του %s" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Unable to stat %s" -msgstr "Αδύνατη η εύρεση της κατάστασης του %s" +msgid "Installed %s" +msgstr "Έγινε εγκατάσταση του %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to write file %s" -msgstr "Αποτυχία εγγραφής του αρχείου %s" +msgid "Preparing for removal of %s" +msgstr "Προετοιμασία για την αφαίρεση του %s" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Failed to close file %s" -msgstr "Αποτυχία στο κλείσιμο του αρχείου %s" +msgid "Removed %s" +msgstr "Αφαίρεσα το %s" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Αυτό δεν είναι ένα έγκυρο αρχείο DEB, αγνοείται το μέλος '%s'" +msgid "Preparing to completely remove %s" +msgstr "Προετοιμασία πλήρης αφαίρεσης του %s" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Εσωτερικό Σφάλμα, αδυναμία εντοπισμού του μέλους %s" +msgid "Completely removed %s" +msgstr "Το %s διαγράφηκε πλήρως" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Μη αναλύσιμο αρχείο control" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Μη έγκυρη υπογραφή αρχειοθήκης" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Αδύνατη η εγγραφή στο %s" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Σφάλμα κατά την ανάγνωση της επικεφαλίδας του μέλους της αρχειοθήκης" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:96 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Μη έγκυρη επικεφαλίδα μέλος της αρχειοθήκης" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Μη έγκυρη επικεφαλίδα μέλος της αρχειοθήκης" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Η αρχειοθήκη είναι πολύ μικρή" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Αποτυχία ανάγνωσης των επικεφαλίδων της αρχειοθήκης" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Αποτυχία κατά τη δημιουργία διασωληνώσεων" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Αποτυχία κατά την εκτέλεση του gzip " +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Κατεστραμμένη αρχειοθήκη" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Το Checksum του tar απέτυχε, η αρχείοθήκη είναι κατεστραμμένη" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Άγνωστη επικεφαλίδα TAR τύπος %u, μέλος %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Αδύνατο το κλείδωμα του καταλόγου" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/es.po b/po/es.po index c4d991737..6403972ce 100644 --- a/po/es.po +++ b/po/es.po @@ -33,7 +33,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.8.10\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2011-01-24 11:47+0100\n" "Last-Translator: Javier Fernández-Sanguino Peña <jfs@debian.org>\n" "Language-Team: Debian Spanish <debian-l10n-spanish@lists.debian.org>\n" @@ -72,3248 +72,3249 @@ msgstr "" "X-POFile-SpellExtra: autoclean showsrc desactualizados clean gzip TYPE\n" "X-POFile-SpellExtra: sinfo Acquire\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "No se da soporte para el tipo de archivo de índice «%s»" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "No pude leer %s" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "No se pudo cambiar a %s" - -#: apt-pkg/clean.cc:64 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Unable to stat %s." -msgstr "No se pudo leer %s." +msgid "Package %s version %s has an unmet dep:\n" +msgstr "El paquete %s versión %s tiene dependencias incumplidas:\n" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Nombres de paquetes totales: " -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Ejecutando dpkg" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Estructuras de paquetes totales: " -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "No está soportado el sistema de paquetes «%s»" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Paquetes normales: " -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "No se pudo determinar un tipo de sistema de paquetes adecuado" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Paquetes virtuales puros: " -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "%i registros escritos.\n" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Paquetes virtuales únicos: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "%i registros escritos con %i fichero de menos.\n" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Paquetes virtuales mixtos: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "%i registros escritos con %i fichero mal emparejado\n" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Faltan: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"%i registros escritos con %i fichero de menos y %i ficheros mal emparejados\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Versiones diferentes totales: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "No se pudo encontrar un registro de autenticación para: %s" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Descripciones diferentes totales: " -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "La suma hash difiere para: %s" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Dependencias totales: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "No se pudo encontrar el método %s." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Relaciones versión/archivo totales: " -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Compruebe que el paquete «dpkg-dev» esté instalado.\n" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Relaciones descripción/archivo totales: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "El método %s no se inició correctamente" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Mapeo Total de Provisiones: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Por favor, inserte el disco «%s» en la unidad «%s» y pulse Intro." +# globbed -> globalizadas ? (jfs) +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Cadenas globalizadas totales: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "" -"No se pudieron analizar o abrir las listas de paquetes o el archivo de " -"estado." +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Espacio de versión de dependencias total: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Tal vez quiera ejecutar «apt-get update» para corregir estos problemas" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Espacio desperdiciado total: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "No se pudieron leer las listas de fuentes." +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Espacio registrado total: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Caché de paquetes vacía." +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "El archivo de paquetes %s está desincronizado." -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "El archivo de caché de paquetes está dañado" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "No se encontró ningún paquete" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "El archivo de caché de paquetes es una versión incompatible" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Debe proporcionar al menos un patrón de búsqueda" -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "El archivo de caché de paquetes está dañado" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Esta versión de APT no soporta el sistema de versiones «%s»" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "La caché de paquetes se había creado para una arquitectura diferente" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Depende" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "PreDepende" +msgid "Unable to locate package %s" +msgstr "No se ha podido localizar el paquete %s" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Sugiere" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Archivos de paquetes:" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Recomienda" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" +"Caché fuera de sincronismo, no se puede hacer x-ref a un archivo de paquetes" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Entra en conflicto" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Paquetes con pin:" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Reemplaza" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(no encontrado)" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Hace obsoleto" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Instalados: " -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Rompe" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Candidato: " -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Mejora" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(ninguno)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "importante" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Pin del paquete: " -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "requiere" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Tabla de versión:" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "estándar" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s para %s compilado en %s %s\n" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opcional" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Modo de uso: apt-cache [opciones] orden\n" +" apt-cache [opciones] add archivo1 [archivo2 ...]\n" +" apt-cache [opciones] showpkg paq1 [paq2 ...]\n" +" apt-cache [opciones] showsrc paq1 [paq2 ...]\n" +"\n" +"apt-cache es una herramienta de bajo nivel que se utiliza para manipular\n" +"los archivos binarios de caché de APT y consultar información sobre éstos\n" +"\n" +"Órdenes:\n" +" add - Agrega un archivo de paquete a la caché de fuentes\n" +" gencaches - Crea ambas cachés, la de paquetes y la de fuentes\n" +" showpkg - Muestra información general para un solo paquete\n" +" showsrc - Muestra la información de fuentes\n" +" stats - Muestra algunas estadísticas básicas\n" +" dump - Muestra el archivo entero en un formato terso\n" +" dumpavail - Imprime un archivo disponible a la salida estándar\n" +" unmet - Muestra dependencias incumplidas\n" +" search - Busca en la lista de paquetes por un patrón de expresión " +"regular\n" +" show - Muestra un registro legible para el paquete\n" +" showauto - Muestra una lista de los paquetes instalados de forma " +"automática\n" +" depends - Muestra la información de dependencias en bruto para el " +"paquete\n" +" rdepends - Muestra la información de dependencias inversas del paquete\n" +" pkgnames - Lista los nombres de todos los paquetes en el sistema\n" +" dotty - Genera gráficas del paquete para GraphViz\n" +" xvcg - Genera gráficas del paquete para xvcg\n" +" policy - Muestra parámetros de las normas\n" +"\n" +"Opciones:\n" +" -h Este texto de ayuda.\n" +" -p=? La caché de paquetes.\n" +" -s=? La caché de fuentes.\n" +" -q Deshabilita el indicador de progreso.\n" +" -i Muestra sólo dependencias importantes para la orden incumplida.\n" +" -c=? Lee este archivo de configuración\n" +" -o=? Establece una opción de configuración arbitraria, \n" +" p.ej. -o dir::cache=/tmp\n" +"Vea las páginas del manual apt-cache(8) y apt.conf(5) para más información.\n" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "" +"Proporcione un nombre para este disco, como pueda ser «Debian 5.0.3 Disco 1»" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "No se da soporte para el tipo de archivo de índice «%s»" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Por favor, introduzca un disco en la unidad y pulse Intro" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Regex compilation error - %s" -msgstr "Error de compilación de expresiones regulares - %s" - -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "La caché tiene una versión incompatible de sistema de versiones" - -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Se produjo un error mientras se procesaba %s (FindPkg)" +msgid "Failed to mount '%s' to '%s'" +msgstr "No se pudo montar «%s» como «%s»" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"Vaya, excedió el número de nombres de paquetes que este APT es capaz de " -"manejar." -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Vaya, excedió el número de versiones que este APT es capaz de manejar." +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Repita este proceso para el resto de los CDs del conjunto." -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "" -"Vaya, excedió el número de descripciones que este APT es capaz de manejar." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumentos no emparejados" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -"Vaya, excedió el número de dependencias que este APT es capaz de manejar." +"Uso: apt-config [opciones] orden\n" +"\n" +"apt-config es una herramienta para leer el archivo de configuración de APT.\n" +"\n" +"Comandos:\n" +" shell - Modo shell\n" +" dump - Muestra la configuración\n" +"\n" +"Opciones:\n" +" -h Este texto de ayuda.\n" +" -c=? Lee este archivo de configuración\n" +" -o=? Establece una opción de configuración arbitraria, p. ej. -o dir::\n" +" cache=/tmp\n" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "" -"Al procesar las dependencias de archivos no se encontró el paquete %s %s" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "No se pudo encontrar ningún paquete con la expresión regular «%s»" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "No se puede leer la lista de paquetes fuente %s" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "No se pudo encontrar ningún paquete con la expresión regular «%s»" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Leyendo lista de paquetes" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "No se pudo encontrar ningún paquete con la expresión regular «%s»" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Recogiendo archivos que proveen" +#: cmdline/apt-get.cc:367 +#, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Escogiendo «%s» como paquete fuente en lugar de «%s»\n" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Ignorar la versión no disponible «%s» del paquete «%s»" + +#: cmdline/apt-get.cc:454 #, c-format -msgid "Unable to write to %s" -msgstr "No se puede escribir en %s" +msgid "Couldn't find package %s" +msgstr "No se pudo encontrar el paquete %s" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Error de E/S guardando caché fuente" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "fijado %s como instalado manualmente.\n" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "fijado %s como instalado automáticamente.\n" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" msgstr "" +"Error interno, el sistema de solución de problemas rompió algunas cosas" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "No se puede bloquear el directorio de descarga" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Debe especificar al menos un paquete para obtener su código fuente" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "falló el cambio de nombre, %s (%s -> %s)." +msgid "Unable to find a source package for %s" +msgstr "No se pudo encontrar un paquete de fuentes para %s" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "La suma hash difiere" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "El tamaño difiere" - -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Operación inválida: %s" - -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:786 #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" +"NOTA: el empaquetamiento de «%s» se mantiene en el sistema de control de " +"versiones «%s» en:\n" +"%s\n" -#: apt-pkg/acquire-item.cc:1589 +#: cmdline/apt-get.cc:791 #, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "No se pudo leer el archivo «Release» %s" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "" -"No existe ninguna clave pública disponible para los siguientes " -"identificadores de clave:\n" - -#: apt-pkg/acquire-item.cc:1669 -#, c-format msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" +"Por favor, utilice:\n" +"bzr get %s\n" +"para obtener las últimas actualizaciones (posiblemente no publicadas aún) " +"del paquete.\n" -#: apt-pkg/acquire-item.cc:1691 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Distribución conflictiva: %s (se esperaba %s, pero se obtuvo %s)" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Omitiendo el fichero ya descargado «%s»\n" -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Se produjo un error durante la verificación de las firmas. El repositorio no " -"está actualizado y se utilizarán los ficheros de índice antiguos. El error " -"GPG es: %s: %s\n" +msgid "Couldn't determine free space in %s" +msgstr "No pude determinar el espacio libre en %s" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:882 #, c-format -msgid "GPG error: %s: %s" -msgstr "Error de GPG: %s: %s" +msgid "You don't have enough free space in %s" +msgstr "No tiene suficiente espacio libre en %s" -#: apt-pkg/acquire-item.cc:1859 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"No se pudo localizar un archivo para el paquete %s. Esto puede significar " -"que necesita arreglar manualmente este paquete (debido a que falta una " -"arquitectura)" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Necesito descargar %sB/%sB de archivos fuente.\n" -#: apt-pkg/acquire-item.cc:1925 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Need to get %sB of source archives.\n" +msgstr "Necesito descargar %sB de archivos fuente.\n" -#: apt-pkg/acquire-item.cc:1983 +#: cmdline/apt-get.cc:902 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Los archivos de índice de paquetes están dañados. No existe un campo " -"«Filename:» para el paquete %s." +msgid "Fetch source %s\n" +msgstr "Fuente obtenida %s\n" -#: apt-pkg/vendorlist.cc:85 -#, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Bloque de fabricante %s sin huella digital" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "No se pudieron obtener algunos archivos." -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, c-format -msgid "List directory %spartial is missing." -msgstr "Falta el directorio de listas %spartial." +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Descarga completa y en modo de sólo descarga" -#: apt-pkg/acquire.cc:91 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Falta el directorio de archivos %spartial." +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Ignorando desempaquetamiento de paquetes ya desempaquetados en %s\n" -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Unable to lock directory %s" -msgstr "No se pudo bloquear el directorio %s" +msgid "Unpack command '%s' failed.\n" +msgstr "Falló la orden de desempaquetamiento «%s».\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Descargando fichero %li de %li (falta %s)" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Compruebe que el paquete «dpkg-dev» esté instalado.\n" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Descargando fichero %li de %li" +msgid "Build command '%s' failed.\n" +msgstr "Falló la orden de construcción «%s».\n" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Imposible obtener %s %s\n" +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Falló el proceso hijo" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" msgstr "" -"No se han podido descargar algunos archivos de índice, se han ignorado, o se " -"ha utilizado unos antiguos en su lugar." - -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Debe poner algunos URIs fuente («source») en su sources.list" +"Debe especificar al menos un paquete para verificar sus dependencias de " +"construcción" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-pkg/policy.cc:422 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "" -"Registro inválido en el archivo de preferencias %s, no hay cabecera «Package»" +msgid "Unable to get build-dependency information for %s" +msgstr "No se pudo obtener información de dependencias de construcción para %s" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Did not understand pin type %s" -msgstr "No se entiende el pin tipo %s" +msgid "%s has no build depends.\n" +msgstr "%s no tiene dependencias de construcción.\n" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "No hay prioridad especificada para pin (o es cero)" +#: cmdline/apt-get.cc:1272 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"La dependencia %s en %s no puede satisfacerse porque no se puede encontrar " +"el paquete %s" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -"No se pudo realizar la configuración inmediata de «%s». Consulte la página " -"de manual con «man 5 apt.conf» bajo «APT::Immediate-Configure» para más " -"información. (%d)" +"La dependencia %s en %s no puede satisfacerse porque no se puede encontrar " +"el paquete %s" + +#: cmdline/apt-get.cc:1313 +#, c-format +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"No se pudo satisfacer la dependencia %s para %s: El paquete instalado %s es " +"demasiado nuevo" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:1352 #, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "No pude abrir el fichero «%s»" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"La dependencia %s en %s no puede satisfacerse porque ninguna versión " +"disponible del paquete %s satisface los requisitos de versión" -#: apt-pkg/packagemanager.cc:583 -#, c-format +#: cmdline/apt-get.cc:1358 +#, fuzzy, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -"Esta ejecución de la instalación requiere eliminar temporalmente el paquete " -"esencial %s debido a un bucle de Conflictos/Pre-Dependencias. Esto " -"generalmente es malo, pero si realmente quiere hacerlo, active la opción |" -"APT::Force-LoopBreak»." +"La dependencia %s en %s no puede satisfacerse porque no se puede encontrar " +"el paquete %s" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Line %u too long in source list %s." -msgstr "Línea %u demasiado larga en la lista de fuentes %s." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Desmontando el CD-ROM...\n" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "No se pudo satisfacer la dependencia %s para %s: %s" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Usando el punto de montaje del CD-ROM %s\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Esperando el disco...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Montando el CD-ROM...\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "No se pudieron satisfacer las dependencias de construcción de %s." -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identificando... " +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "No se pudieron procesar las dependencias de construcción" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Etiqueta guardada: %s \n" +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Conectando a %s (%s)" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Buscando en el disco archivos de índices...\n" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Módulos soportados:" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Se encontraron %zu índices de paquetes, %zu índices de fuentes, %zu índices " -"de traducción y %zu firmas\n" - -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"No pude localizar ningún archivo de paquete, ¿quizás este no sea un disco de " -"Debian o sea de otra arquitectura?" - -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Se encontró la etiqueta: «%s»\n" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Ese no es un nombre válido, inténtelo de nuevo.\n" - -#: apt-pkg/cdrom.cc:817 -#, c-format +#: cmdline/apt-get.cc:1633 +#, fuzzy msgid "" -"This disc is called: \n" -"'%s'\n" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"Este disco se llama: \n" -"«%s»\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Copiando las listas de paquetes..." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Escribiendo nueva lista de fuente\n" +"Uso: apt-get [opciones] orden\n" +" apt-get [opciones] install|remove paq1 [paq2 ...]\n" +" apt-get [opciones] source paq1 [paq2 ...]\n" +"\n" +"apt-get es una sencilla interfaz de línea de órdenes para descargar e\n" +"instalar paquetes. Las órdenes más utilizadas son update e install.\n" +"\n" +"Órdenes:\n" +" update - Descarga nuevas listas de paquetes\n" +" upgrade - Realiza una actualización\n" +" install - Instala nuevos paquetes (paquete es libc6 y no libc6.deb)\n" +" remove - Elimina paquetes\n" +" purge - Elimina y purga paquetes\n" +" source - Descarga archivos fuente\n" +" build-dep - Configura las dependencias de construcción para paquetes " +"fuente\n" +" dist-upgrade - Actualiza la distribución, vea apt-get(8)\n" +" dselect-upgrade - Sigue las selecciones de dselect\n" +" clean - Elimina los archivos descargados\n" +" autoclean - Elimina los archivos descargados antiguos\n" +" check - Verifica que no haya dependencias incumplidas\n" +" markauto - Marca los paquetes indicados como instalados de forma " +"automática\n" +" unmarkauto - Marca los paquetes indicados como instalado de forma manual\n" +"\n" +"Opciones:\n" +" -h Este texto de ayuda.\n" +" -q Salida registrable - sin indicador de progreso\n" +" -qq Sin salida, excepto si hay errores\n" +" -d Sólo descarga - NO instala o desempaqueta los archivos\n" +" -s No actúa. Realiza una simulación\n" +" -y Asume Sí para todas las consultas\n" +" -f Intenta continuar si la comprobación de integridad falla\n" +" -m Intenta continuar si los archivos no son localizables\n" +" -u Muestra también una lista de paquetes actualizados\n" +" -b Construye el paquete fuente después de obtenerlo\n" +" -V Muesta números de versión detallados\n" +" -c=? Lee este archivo de configuración\n" +" -o=? Establece una opción de configuración arbitraria, p. ej. \n" +" -o dir::cache=/tmp\n" +"Consulte las páginas del manual de apt-get(8), sources.list(5) y apt." +"conf(5)\n" +"para más información y opciones.\n" +" Este APT tiene poderes de Super Vaca.\n" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Las entradas de la lista de fuentes para este disco son:\n" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Debe especificar al menos un paquete para obtener su código fuente" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"El paquete %s necesita ser reinstalado, pero no se encuentra un archivo para " -"éste." -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-helper.cc:66 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Error, pkgProblemResolver::Resolve generó cortes, esto puede haber sido " -"causado por paquetes retenidos." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"No se pudieron corregir los problemas, usted ha retenido paquetes rotos." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Creando árbol de dependencias" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Versiones candidatas" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Generación de dependencias" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Leyendo la información de estado" - -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "No se pudo abrir el fichero de estado %s" - -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Falló la escritura del fichero de estado temporal %s" - -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "No se pudo tratar el archivo de paquetes %s (1)" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "pero no está instalado" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "No se pudo tratar el archivo de paquetes %s (2)" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "fijado %s como instalado manualmente.\n" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "No se encontró la Distribución «%s» para «%s»" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "fijado %s como instalado automáticamente.\n" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "No se encontró la versión «%s» para «%s»" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s ya está en su versión más reciente.\n" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "No se ha podido localizar el paquete %s" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s ya está en su versión más reciente.\n" -#: apt-pkg/cacheset.cc:603 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Couldn't find task '%s'" -msgstr "No se pudo encontrar la tarea «%s»" +msgid "Waited for %s but it wasn't there" +msgstr "Esperaba %s pero no estaba allí" -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "No se pudo encontrar ningún paquete con la expresión regular «%s»" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "fijado %s como instalado manualmente.\n" -#: apt-pkg/cacheset.cc:615 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "No se pudo encontrar ningún paquete con la expresión regular «%s»" +msgid "Canceled hold on %s.\n" +msgstr "No se pudo abrir %s" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -"No se pueden seleccionar distintas versiones del paquete «%s» porque es " -"puramente virtual" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format +#: cmdline/apt-mark.cc:392 msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" -"No se puede seleccionar una versión instalada o candidata para el paquete " -"«%s» dado que éste no tiene ninguna de éstas" - -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"No se puede seleccionar la última versión del paquete «%s» dado que es " -"puramente virtual" - -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" -"No se puede seleccionar una versión candidata del paquete %s dado que no " -"tiene candidatos" - -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" -"No se puede seleccionar una versión instalada del paquete «%s» puesto que no " -"está instalado" - -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "No se pudo leer el archivo «Release» %s" - -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "No se encontraron secciones en el archivo «Release» %s" - -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "No existe una entrada «Hash» en el archivo «Release» %s" - -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Entrada «Valid-Until» inválida en el archivo «Release» %s" - -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Entrada «Date» inválida en el archivo «Release» %s" - -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Línea %lu mal formada en la lista de fuentes %s (análisis de URI)" - -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -"Línea %lu mal formada en la lista de fuentes %s ([opción] no parseable)" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -"Línea %lu mal formada en la lista de fuentes %s ([opción] demasiado corta)" -#: apt-pkg/sourcelist.cc:184 +#: methods/cdrom.cc:203 #, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "" -"Línea %lu mal formada en la lista de fuentes %s ([%s] no es una asignación)" +msgid "Unable to read the cdrom database %s" +msgstr "No pude leer la base de datos %s del cdrom" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" msgstr "" -"Línea %lu mal formada en la lista de fuentes %s (no hay clave para [%s])" +"Por favor, utilice «apt-cdrom» para hacer que APT reconozca este CD. No " +"puede utilizar «apt-get update» para añadir nuevos CDs" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Línea %lu mal formada en la lista de fuentes %s ([%s] la clave %s no tiene " -"asociado un valor)" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD equivocado" -#: apt-pkg/sourcelist.cc:206 +#: methods/cdrom.cc:249 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Línea %lu mal formada en la lista de fuentes %s (URI)" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "No pude desmontar el CD-ROM de %s, tal vez todavía este en uso." -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Línea %lu mal formada en la lista de fuentes %s (dist)" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disco no encontrado." -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Línea %lu mal formada en la lista de fuentes %s (análisis de URI)" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Fichero no encontrado" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Línea %lu mal formada en la lista de fuentes %s (dist absoluta)" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "No pude leer" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Línea %lu mal formada en la lista de fuentes %s (análisis de dist)" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "No pude poner el tiempo de modificación" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Abriendo %s" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI inválido, los URIS locales no deben de empezar con //" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Línea %u mal formada en la lista de fuentes %s (tipo)" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Entrando" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Tipo «%s» desconocido en la línea %u de lista de fuentes %s" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "No pude determinar el nombre del par" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Tipo «%s» desconocido en la línea %u de lista de fuentes %s" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Imposible determinar el nombre local" -#: apt-pkg/deb/dpkgpm.cc:95 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Installing %s" -msgstr "Instalando %s" +msgid "The server refused the connection and said: %s" +msgstr "El servidor rechazó nuestra conexión y dijo: %s" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#: methods/ftp.cc:225 #, c-format -msgid "Configuring %s" -msgstr "Configurando %s" +msgid "USER failed, server said: %s" +msgstr "Usuario (USER) falló, el servidor dijo: %s" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#: methods/ftp.cc:232 #, c-format -msgid "Removing %s" -msgstr "Eliminando %s" +msgid "PASS failed, server said: %s" +msgstr "Clave (PASS) falló, el servidor dijo: %s" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "Borrando completamente %s" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"Se especificó un servidor proxy pero no un script de entrada, «Acquire::ftp::" +"ProxyLogin» está vacío." -#: apt-pkg/deb/dpkgpm.cc:99 +#: methods/ftp.cc:280 #, c-format -msgid "Noting disappearance of %s" -msgstr "Se detectó la desaparición de %s" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Falló la orden «%s» del script de entrada, el servidor dijo: %s" -#: apt-pkg/deb/dpkgpm.cc:100 +#: methods/ftp.cc:306 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Ejecutando disparador post-instalación %s" +msgid "TYPE failed, server said: %s" +msgstr "Tipo (TYPE) falló, el servidor dijo: %s" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Falta el directorio «%s»." +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "La conexión expiró" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "No pude abrir el fichero «%s»" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "El servidor cerró la conexión" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "Preparando %s" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Error de lectura" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Desempaquetando %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "No pude crear un socket." -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Preparándose para configurar %s" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Fallo del protocolo" -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "%s instalado" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Error de escritura" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "Preparándose para eliminar %s" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "No pude crear un socket" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "%s eliminado" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "No pude conectar el socket de datos, expiró el tiempo de conexión" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Preparándose para eliminar completamente %s" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Falló" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "Se borró completamente %s" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "No pude conectar un socket pasivo." -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo no pude obtener un socket oyente" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "No se puede escribir en %s" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "No pude ligar un socket" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "No pude escuchar en el socket" + +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "No pude determinar el nombre del socket" + +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "No pude mandar la orden PORT" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "Dirección de familia %u desconocida (AF_*)" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/ftp.cc:811 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Esperaba %s pero no estaba allí" +msgid "EPRT failed, server said: %s" +msgstr "EPRT falló, el servidor dijo: %s" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Expiró conexión a socket de datos" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" -"No se escribió ningún informe «apport» porque ya se ha alcanzado el valor de " -"«MaxReports»" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "No pude aceptar la conexión" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "problemas de dependencias - dejando sin instalar" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Se produjo un problema al hacer un hash del archivo" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"No se escribió un informe «apport» porque el mensaje de error indica que es " -"un mensaje de error asociado a un fallo previo." +#: methods/ftp.cc:890 +#, c-format +msgid "Unable to fetch file, server said '%s'" +msgstr "Imposible traer archivo, el servidor dijo «%s»" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"No se escribió un informe «apport» porque el mensaje de error indica que el " -"error es de disco lleno" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Expiró el socket de datos" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"No se escribió un informe «apport» porque el mensaje de error indica un " -"error de memoria excedida" +#: methods/ftp.cc:935 +#, c-format +msgid "Data transfer failed, server said '%s'" +msgstr "Falló transferencia de datos, el servidor dijo «%s»" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" -"No se escribió un informe «apport» porque el mensaje de error indica que el " -"error es de disco lleno" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Consulta" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" -"No se escribió un informe «apport» porque el mensaje de error indica un " -"error de E/S de dpkg" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "No pude invocar " -#: apt-pkg/deb/debsystem.cc:91 +#: methods/connect.cc:76 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"No se pudo bloquear el directorio de administración (%s), ¿quizás haya algún " -"otro proceso utilizándolo?" +msgid "Connecting to %s (%s)" +msgstr "Conectando a %s (%s)" -#: apt-pkg/deb/debsystem.cc:94 +#: methods/connect.cc:87 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "No se encontró un archivo de réplica «%s»" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: methods/connect.cc:94 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" -"se interrumpió la ejecución de dpkg, debe ejecutar manualmente «%s» para " -"corregir el problema" - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "No bloqueado" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "No pude crear un socket para %s (f=%u t=%u p=%u)" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 +#: methods/connect.cc:100 #, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lid %lih %limin. %liseg." +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "No puedo iniciar la conexión a %s:%s (%s)." -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: methods/connect.cc:108 #, c-format -msgid "%lih %limin %lis" -msgstr "%lih %limin. %liseg." +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "No pude conectarme a %s:%s (%s), expiró tiempo para conexión" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: methods/connect.cc:126 #, c-format -msgid "%limin %lis" -msgstr "%limin. %liseg." +msgid "Could not connect to %s:%s (%s)." +msgstr "No pude conectarme a %s:%s (%s)." -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "%lis" -msgstr "%liseg." +msgid "Connecting to %s" +msgstr "Conectando a %s" -#: apt-pkg/contrib/strutl.cc:1243 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Selection %s not found" -msgstr "Selección %s no encontrada" +msgid "Could not resolve '%s'" +msgstr "No se pudo resolver «%s»" -#: apt-pkg/contrib/fileutl.cc:190 +#: methods/connect.cc:205 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "No se utiliza bloqueos para el fichero de bloqueo de sólo lectura %s" +msgid "Temporary failure resolving '%s'" +msgstr "Fallo temporal al resolver «%s»" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "No se pudo abrir el fichero de bloqueo «%s»" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Algo raro pasó al resolver «%s:%s» (%i - %s)" -#: apt-pkg/contrib/fileutl.cc:218 +#: methods/connect.cc:211 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "No se utilizan bloqueos para el fichero de bloqueo de montaje nfs %s" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Algo raro pasó al resolver «%s:%s» (%i - %s)" -#: apt-pkg/contrib/fileutl.cc:223 +#: methods/connect.cc:258 #, c-format -msgid "Could not get lock %s" -msgstr "No se pudo bloquear %s" +msgid "Unable to connect to %s:%s:" +msgstr "No se pudo conectar a %s:%s:" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" +"Error interno: Firma correcta, ¡¿pero no se pudo determinar su huella " +"digital?!" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Se encontró al menos una firma inválida." + +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" +"No se pudo ejecutar «gpgv» para verificar la firma (¿está instalado gpgv?)" -#: apt-pkg/contrib/fileutl.cc:412 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgid "" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Error desconocido ejecutando gpgv" + +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Las siguientes firms fueron inválidas:\n" + +#: methods/gpgv.cc:231 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "" +"Las firmas siguientes no se pudieron verificar porque su llave pública no " +"está disponible:\n" + +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "El subproceso %s recibió un fallo de segmentación." +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Error escribiendo al archivo" + +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Error leyendo del servidor, el lado remoto cerró la conexión." + +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Error leyendo del servidor" + +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Error escribiendo a archivo" + +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Falló la selección" + +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Expiró la conexión" + +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Error escribiendo al archivo de salida" + +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Esperando las cabeceras" + +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Mala línea de cabecera" + +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "El servidor de http envió una cabecera de respuesta inválida" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "El subproceso %s recibió la señal %u." +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "El servidor de http envió una cabecera de Content-Length inválida" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "El subproceso %s devolvió un código de error (%u)" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "El servidor de http envió una cabecera de Content-Range inválida" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "El subproceso %s terminó de forma inesperada" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Éste servidor de http tiene el soporte de alcance roto" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Error de escritura" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Formato de fecha desconocido" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Se produjo un problema al cerrar el fichero gzip %s" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Mala cabecera Data" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "No pude abrir el fichero %s" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Fallo la conexión" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "No se pudo abrir el descriptor de fichero %d" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Error interno" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "No se pudo crear el subproceso IPC" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "No se pudo ejecutar el compresor " +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Error interno, ¡se llamó a «InstallPackages» con paquetes rotos!" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Error de lectura" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "" +"Los paquetes necesitan eliminarse pero está deshabilitado la posibilidad de " +"eliminar." -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "leídos, todavía debía leer %lu pero no queda nada" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Error interno, no terminó la ordenación" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "escritos, todavía tenía que escribir %lu pero no pude hacerlo" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Qué raro... Los tamaños no concuerdan, mande un correo a apt@packages.debian." +"org" -#: apt-pkg/contrib/fileutl.cc:1915 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Problem closing the file %s" -msgstr "Se produjo un problema al cerrar el fichero %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Se necesita descargar %sB/%sB de archivos.\n" -#: apt-pkg/contrib/fileutl.cc:1927 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Se produjo un problema al renombrar el fichero %s a %s" +msgid "Need to get %sB of archives.\n" +msgstr "Necesito descargar %sB de archivos.\n" -#: apt-pkg/contrib/fileutl.cc:1938 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "Problem unlinking the file %s" -msgstr "Se produjo un problema al desligar el fichero %s" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Se produjo un problema al sincronizar el fichero" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "" +"Se utilizarán %sB de espacio de disco adicional después de esta operación.\n" -#: apt-pkg/contrib/progress.cc:148 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... ¡Error!" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Se liberarán %sB después de esta operación.\n" -#: apt-pkg/contrib/progress.cc:150 +#: apt-private/private-install.cc:200 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Hecho" +msgid "You don't have enough free space in %s." +msgstr "No tiene suficiente espacio libre en %s." -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Hay problemas y se utilizó -y sin --force-yes" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Hecho" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Se especificó Trivial Only pero ésta no es una operación trivial." -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "No puedo hacer mmap de un fichero vacío" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Sí, ¡haga lo que le digo!" -#: apt-pkg/contrib/mmap.cc:111 +#: apt-private/private-install.cc:222 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "No pude duplicar el descriptor de fichero %i" - -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "No pude hacer mmap de %lu bytes" - -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "No se pudo cerrar «mmap»" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Está a punto de hacer algo potencialmente dañino\n" +"Para continuar escriba la frase «%s»\n" +" ?] " -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "No pude sincronizar «mmap»" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Abortado." -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "No pude hacer mmap de %lu bytes" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "¿Desea continuar?" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Falló al truncar el archivo" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "No se pudieron descargar algunos archivos" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format +#: apt-private/private-install.cc:320 msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -"La asignación dinámica MMap no tiene más espacio. Por favor, incrementa el " -"valor de «APT::Cache-Start». El valor actual es: %lu (man 5 apt.conf)" +"No se pudieron obtener algunos archivos, ¿quizás deba ejecutar «apt-get " +"update» o deba intentarlo de nuevo con --fix-missing?" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" -"No se pudo incrementar el tamaño del MMap dado que se ha alcanzado ya el " -"límite de %lu bytes." +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "Actualmente no están soportados --fix-missing e intercambio de medio" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" -"No se pudo incrementar el tamaño de MMap dado que el usuario ha " -"deshabilitado el crecimiento automático." +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "No se pudieron corregir los paquetes que faltan." -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "No se puede obtener información del punto de montaje %s" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Abortando la instalación." -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "No pude montar el cdrom" +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"El paquete mostrado a continuación ha desaparecido de su sistema\n" +"dado que todos sus ficheros han sido sobreescritos por otros paquetes:" +msgstr[1] "" +"Los paquetes mostrados a continuación han desaparecido de su sistema\n" +"dado que todos sus ficheros han sido sobreescritos por otros paquetes:" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Tipo de abreviación no reconocida: «%c»" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Nota: Dpkg realiza esto de forma automática y a propósito." -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Abriendo fichero de configuración %s" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "" +"Se supone que no vamos a eliminar cosas, no se pudo iniciar «AutoRemover»" -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Error de sintaxis %s:%u: No hay un nombre al comienzo del bloque." +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" +"Hmmm. Parece que «AutoRemover» destruyó algo y eso no debería haber pasado. " +"Por favor, envíe un informe de fallo al programa apt." -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Error de sintaxis %s:%u: Marca mal formada" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "La siguiente información puede ayudar a resolver la situación:" -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Error de sintaxis %s:%u: Basura extra después del valor" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Error interno, «AutoRemover» rompió cosas" -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" -"Error de sintaxis %s:%u: Las directivas sólo se pueden poner en el primer " -"nivel" +#: apt-private/private-install.cc:513 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "" +"El paquete indicado a continuación se instaló de forma automática y ya no es " +"necesarios." +msgstr[1] "" +"Los paquetes indicados a continuación se instalaron de forma automática y ya " +"no son necesarios." -#: apt-pkg/contrib/configuration.cc:884 +#: apt-private/private-install.cc:517 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Error de sintaxis %s:%u: Demasiadas inclusiones anidadas" +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "Se instaló de forma automática %lu paquete y ya no es necesario.\n" +msgstr[1] "" +"Se instalaron de forma automática %lu paquetes y ya no son necesarios.\n" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Error de sintaxis %s:%u: Incluido desde aquí" +#: apt-private/private-install.cc:519 +#, fuzzy +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Utilice «apt-get autoremove» para eliminarlos." +msgstr[1] "Utilice «apt-get autoremove» para eliminarlos." -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Error de sintaxis %s:%u: Directiva «%s» no soportada" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Tal vez quiera ejecutar «apt-get -f install» para corregirlo:" -#: apt-pkg/contrib/configuration.cc:900 -#, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"Error de sintaxis %s:%u: la directiva «clear» tiene que incluir un árbol de " -"opciones como argumento" +"Dependencias incumplidas. Intente «apt-get -f install» sin paquetes (o " +"especifique una solución)." -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Error de sintaxis %s:%u: Basura extra al final del archivo" +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"No se pudieron instalar algunos paquetes. Esto puede significar que\n" +"usted pidió una situación imposible o, si está usando la distribución\n" +"inestable, que algunos paquetes necesarios no han sido creados o han\n" +"sido movidos fuera de Incoming." -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, c-format -msgid "No keyring installed in %s." -msgstr "No se instaló ningún anillo de claves %s." +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Paquetes rotos" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "No se conoce la opción de línea de órdenes «%c» [de %s]." +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Se instalarán los siguientes paquetes extras:" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "No se entiende la opción de línea de órdenes %s" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Paquetes sugeridos:" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "La opción de línea de órdenes %s no es un booleano" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Paquetes recomendados:" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-private/private-install.cc:825 #, c-format -msgid "Option %s requires an argument." -msgstr "La opción %s necesita un argumento." +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Ignorando %s, ya está instalado y no está activada la actualización.\n" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-private/private-install.cc:829 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" -"Opción %s: La especificación del elemento de configuración debe tener un " -"=<val>." - -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "La opción %s exige un argumento entero, no «%s»" - -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Opción «%s» demasiado larga" +"Ignorando %s, no está instalado y sólo se están solicitando " +"actualizaciones.\n" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-private/private-install.cc:841 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "El sentido %s no se entiende, pruebe verdadero o falso." +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "No es posible reinstalar el paquete %s, no se puede descargar.\n" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-private/private-install.cc:846 #, c-format -msgid "Invalid operation %s" -msgstr "Operación inválida: %s" +msgid "%s is already the newest version.\n" +msgstr "%s ya está en su versión más reciente.\n" -#: cmdline/apt-cache.cc:149 +#: apt-private/private-install.cc:894 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "El paquete %s versión %s tiene dependencias incumplidas:\n" - -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Nombres de paquetes totales: " - -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Estructuras de paquetes totales: " - -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Paquetes normales: " - -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Paquetes virtuales puros: " - -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Paquetes virtuales únicos: " - -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Paquetes virtuales mixtos: " - -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Faltan: " - -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Versiones diferentes totales: " +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Versión seleccionada «%s» (%s) para «%s»\n" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Descripciones diferentes totales: " +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Versión seleccionada «%s» (%s) para «%s»\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Dependencias totales: " +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "El paquete %s no está instalado, no se eliminará\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Relaciones versión/archivo totales: " +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "El paquete %s no está instalado, no se eliminará\n" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Relaciones descripción/archivo totales: " +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Mapeo Total de Provisiones: " +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -# globbed -> globalizadas ? (jfs) -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Cadenas globalizadas totales: " +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Corrigiendo dependencias..." -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Espacio de versión de dependencias total: " +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " falló." -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Espacio desperdiciado total: " +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "No se puede corregir las dependencias" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Espacio registrado total: " +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "No se puede minimizar el conjunto de actualización" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "El archivo de paquetes %s está desincronizado." +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Listo" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "No se encontró ningún paquete" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Tal vez quiera ejecutar «apt-get -f install» para corregirlo." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Debe proporcionar al menos un patrón de búsqueda" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Dependencias incumplidas. Pruebe de nuevo usando -f." -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" msgstr "" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Archivos de paquetes:" +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Instalado]" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Instalado]" + +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"Caché fuera de sincronismo, no se puede hacer x-ref a un archivo de paquetes" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Paquetes con pin:" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Instalado]" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(no encontrado)" +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Instalado]" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Instalados: " +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidato: " +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ninguno)" +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "pero %s está instalado" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Pin del paquete: " +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "pero %s va a ser instalado" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabla de versión:" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "pero no es instalable" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s para %s compilado en %s %s\n" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "pero es un paquete virtual" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" -msgstr "" -"Modo de uso: apt-cache [opciones] orden\n" -" apt-cache [opciones] add archivo1 [archivo2 ...]\n" -" apt-cache [opciones] showpkg paq1 [paq2 ...]\n" -" apt-cache [opciones] showsrc paq1 [paq2 ...]\n" -"\n" -"apt-cache es una herramienta de bajo nivel que se utiliza para manipular\n" -"los archivos binarios de caché de APT y consultar información sobre éstos\n" -"\n" -"Órdenes:\n" -" add - Agrega un archivo de paquete a la caché de fuentes\n" -" gencaches - Crea ambas cachés, la de paquetes y la de fuentes\n" -" showpkg - Muestra información general para un solo paquete\n" -" showsrc - Muestra la información de fuentes\n" -" stats - Muestra algunas estadísticas básicas\n" -" dump - Muestra el archivo entero en un formato terso\n" -" dumpavail - Imprime un archivo disponible a la salida estándar\n" -" unmet - Muestra dependencias incumplidas\n" -" search - Busca en la lista de paquetes por un patrón de expresión " -"regular\n" -" show - Muestra un registro legible para el paquete\n" -" showauto - Muestra una lista de los paquetes instalados de forma " -"automática\n" -" depends - Muestra la información de dependencias en bruto para el " -"paquete\n" -" rdepends - Muestra la información de dependencias inversas del paquete\n" -" pkgnames - Lista los nombres de todos los paquetes en el sistema\n" -" dotty - Genera gráficas del paquete para GraphViz\n" -" xvcg - Genera gráficas del paquete para xvcg\n" -" policy - Muestra parámetros de las normas\n" -"\n" -"Opciones:\n" -" -h Este texto de ayuda.\n" -" -p=? La caché de paquetes.\n" -" -s=? La caché de fuentes.\n" -" -q Deshabilita el indicador de progreso.\n" -" -i Muestra sólo dependencias importantes para la orden incumplida.\n" -" -c=? Lee este archivo de configuración\n" -" -o=? Establece una opción de configuración arbitraria, \n" -" p.ej. -o dir::cache=/tmp\n" -"Vea las páginas del manual apt-cache(8) y apt.conf(5) para más información.\n" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "pero no está instalado" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "" -"Proporcione un nombre para este disco, como pueda ser «Debian 5.0.3 Disco 1»" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "pero no va a instalarse" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Por favor, introduzca un disco en la unidad y pulse Intro" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " o" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "No se pudo montar «%s» como «%s»" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Los siguientes paquetes tienen dependencias incumplidas:" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Se instalarán los siguientes paquetes NUEVOS:" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Repita este proceso para el resto de los CDs del conjunto." +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Los siguientes paquetes se ELIMINARÁN:" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumentos no emparejados" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Los siguientes paquetes se han retenido:" + +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Se actualizarán los siguientes paquetes:" -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -msgstr "" -"Uso: apt-config [opciones] orden\n" -"\n" -"apt-config es una herramienta para leer el archivo de configuración de APT.\n" -"\n" -"Comandos:\n" -" shell - Modo shell\n" -" dump - Muestra la configuración\n" -"\n" -"Opciones:\n" -" -h Este texto de ayuda.\n" -" -c=? Lee este archivo de configuración\n" -" -o=? Establece una opción de configuración arbitraria, p. ej. -o dir::\n" -" cache=/tmp\n" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Se DESACTUALIZARÁN los siguientes paquetes:" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "No se pudo encontrar ningún paquete con la expresión regular «%s»" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Se cambiarán los siguientes paquetes retenidos:" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "No se pudo encontrar ningún paquete con la expresión regular «%s»" +#: apt-private/private-output.cc:668 +#, c-format +msgid "%s (due to %s) " +msgstr "%s (por %s) " -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "No se pudo encontrar ningún paquete con la expresión regular «%s»" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"AVISO: Se van a eliminar los siguientes paquetes esenciales.\n" +"¡NO debe hacerse a menos que sepa exactamente lo que está haciendo!" -#: cmdline/apt-get.cc:367 +#: apt-private/private-output.cc:707 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Escogiendo «%s» como paquete fuente en lugar de «%s»\n" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu actualizados, %lu se instalarán, " -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Ignorar la versión no disponible «%s» del paquete «%s»" +#: apt-private/private-output.cc:711 +#, c-format +msgid "%lu reinstalled, " +msgstr "%lu reinstalados, " -#: cmdline/apt-get.cc:454 +#: apt-private/private-output.cc:713 #, c-format -msgid "Couldn't find package %s" -msgstr "No se pudo encontrar el paquete %s" +msgid "%lu downgraded, " +msgstr "%lu desactualizados, " -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-private/private-output.cc:715 #, c-format -msgid "%s set to manually installed.\n" -msgstr "fijado %s como instalado manualmente.\n" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu para eliminar y %lu no actualizados.\n" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-private/private-output.cc:719 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "fijado %s como instalado automáticamente.\n" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu no instalados del todo o eliminados.\n" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[S/n]" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[s/N]" + +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "S" + +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" msgstr "" -"Error interno, el sistema de solución de problemas rompió algunas cosas" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "No se puede bloquear el directorio de descarga" +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Error de compilación de expresiones regulares - %s" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Debe especificar al menos un paquete para obtener su código fuente" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "El comando de actualización no toma argumentos" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/private-update.cc:90 #, c-format -msgid "Unable to find a source package for %s" -msgstr "No se pudo encontrar un paquete de fuentes para %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:786 +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" + +#: apt-private/private-show.cc:156 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" msgstr "" -"NOTA: el empaquetamiento de «%s» se mantiene en el sistema de control de " -"versiones «%s» en:\n" -"%s\n" -#: cmdline/apt-get.cc:791 -#, fuzzy, c-format +#: apt-private/private-main.cc:32 msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -"Por favor, utilice:\n" -"bzr get %s\n" -"para obtener las últimas actualizaciones (posiblemente no publicadas aún) " -"del paquete.\n" +"NOTA: ¡Esto es sólo una simulación\n" +" apt-get necesita privilegios de administrador para la ejecución real.\n" +" Tenga también en cuenta que se han desactivado los bloqueos,\n" +" ¡no dependa de la relevancia a la situación real actual!" -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Omitiendo el fichero ya descargado «%s»\n" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "AVISO: ¡No se han podido autenticar los siguientes paquetes!" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "No pude determinar el espacio libre en %s" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Aviso de autenticación ignorado.\n" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "No tiene suficiente espacio libre en %s" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Algunos paquetes no se pueden autenticar" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Necesito descargar %sB/%sB de archivos fuente.\n" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "¿Instalar estos paquetes sin verificación?" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Necesito descargar %sB de archivos fuente.\n" +msgid "Failed to fetch %s %s\n" +msgstr "Imposible obtener %s %s\n" -#: cmdline/apt-get.cc:902 +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "No pude abrir %s.new" + +#: apt-private/private-sources.cc:70 #, c-format -msgid "Fetch source %s\n" -msgstr "Fuente obtenida %s\n" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "No se pudieron obtener algunos archivos." +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Descarga completa y en modo de sólo descarga" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Calculando la actualización... " + +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Listo" + +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Obj " + +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Des:" + +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Ignorando desempaquetamiento de paquetes ya desempaquetados en %s\n" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Err " -#: cmdline/apt-get.cc:962 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Falló la orden de desempaquetamiento «%s».\n" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Descargados %sB en %s (%sB/s)\n" -#: cmdline/apt-get.cc:963 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Compruebe que el paquete «dpkg-dev» esté instalado.\n" +msgid " [Working]" +msgstr " [Trabajando]" -#: cmdline/apt-get.cc:991 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Falló la orden de construcción «%s».\n" - -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Falló el proceso hijo" - -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"Debe especificar al menos un paquete para verificar sus dependencias de " -"construcción" +"Cambio de medio: Por favor, inserte el disco etiquetado como\n" +" «%s»\n" +"en la unidad «%s» y pulse Intro\n" -#: cmdline/apt-get.cc:1054 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" +msgid "Unable to read %s" +msgstr "No pude leer %s" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "No se pudo obtener información de dependencias de construcción para %s" +msgid "Unable to change to %s" +msgstr "No se pudo cambiar a %s" -#: cmdline/apt-get.cc:1101 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s no tiene dependencias de construcción.\n" +msgid "No mirror file '%s' found " +msgstr "No se encontró un archivo de réplica «%s»" -#: cmdline/apt-get.cc:1271 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"La dependencia %s en %s no puede satisfacerse porque no se puede encontrar " -"el paquete %s" +msgid "Can not read mirror file '%s'" +msgstr "No se encontró un archivo de réplica «%s»" -#: cmdline/apt-get.cc:1289 -#, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" -"La dependencia %s en %s no puede satisfacerse porque no se puede encontrar " -"el paquete %s" +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "No se encontró un archivo de réplica «%s»" -#: cmdline/apt-get.cc:1312 +#: methods/mirror.cc:445 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "[Mirror: %s]" +msgstr "[Réplica: %s]" + +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Falló la creación de una tubería IPC para el subproceso" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "La conexión se cerró prematuramente" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "¡Parámetro por omisión incorrecto!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Pulse Intro para continuar." + +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "¿Desea borrar los archivos .deb descargados con anterioridad?" + +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" -"No se pudo satisfacer la dependencia %s para %s: El paquete instalado %s es " -"demasiado nuevo" +"Se produjeron algunos problemas mientras se desempaquetaba. Los paquetes que " +"se instalaron" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "van a configurarse. Esto puede dar lugar a errores duplicados" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -"La dependencia %s en %s no puede satisfacerse porque ninguna versión " -"disponible del paquete %s satisface los requisitos de versión" +"o errores causados por dependencias no presentes. Esto está BIEN, sólo los " +"errores" -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format +#: dselect/install:105 msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"La dependencia %s en %s no puede satisfacerse porque no se puede encontrar " -"el paquete %s" +"encima de este mensaje son importantes. Por favor, corríjalas y ejecute " +"«[I]nstall» otra vez" -#: cmdline/apt-get.cc:1380 -#, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "No se pudo satisfacer la dependencia %s para %s: %s" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Fusionando información disponible" -#: cmdline/apt-get.cc:1395 -#, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "No se pudieron satisfacer las dependencias de construcción de %s." +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode llamado en un nodo todavía ligado" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "No se pudieron procesar las dependencias de construcción" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "¡No pude localizar el elemento enlazado!" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Conectando a %s (%s)" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "No pude asignar una desviación" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Módulos soportados:" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Error interno en AddDiversion" -#: cmdline/apt-get.cc:1632 -#, fuzzy -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -msgstr "" -"Uso: apt-get [opciones] orden\n" -" apt-get [opciones] install|remove paq1 [paq2 ...]\n" -" apt-get [opciones] source paq1 [paq2 ...]\n" -"\n" -"apt-get es una sencilla interfaz de línea de órdenes para descargar e\n" -"instalar paquetes. Las órdenes más utilizadas son update e install.\n" -"\n" -"Órdenes:\n" -" update - Descarga nuevas listas de paquetes\n" -" upgrade - Realiza una actualización\n" -" install - Instala nuevos paquetes (paquete es libc6 y no libc6.deb)\n" -" remove - Elimina paquetes\n" -" purge - Elimina y purga paquetes\n" -" source - Descarga archivos fuente\n" -" build-dep - Configura las dependencias de construcción para paquetes " -"fuente\n" -" dist-upgrade - Actualiza la distribución, vea apt-get(8)\n" -" dselect-upgrade - Sigue las selecciones de dselect\n" -" clean - Elimina los archivos descargados\n" -" autoclean - Elimina los archivos descargados antiguos\n" -" check - Verifica que no haya dependencias incumplidas\n" -" markauto - Marca los paquetes indicados como instalados de forma " -"automática\n" -" unmarkauto - Marca los paquetes indicados como instalado de forma manual\n" -"\n" -"Opciones:\n" -" -h Este texto de ayuda.\n" -" -q Salida registrable - sin indicador de progreso\n" -" -qq Sin salida, excepto si hay errores\n" -" -d Sólo descarga - NO instala o desempaqueta los archivos\n" -" -s No actúa. Realiza una simulación\n" -" -y Asume Sí para todas las consultas\n" -" -f Intenta continuar si la comprobación de integridad falla\n" -" -m Intenta continuar si los archivos no son localizables\n" -" -u Muestra también una lista de paquetes actualizados\n" -" -b Construye el paquete fuente después de obtenerlo\n" -" -V Muesta números de versión detallados\n" -" -c=? Lee este archivo de configuración\n" -" -o=? Establece una opción de configuración arbitraria, p. ej. \n" -" -o dir::cache=/tmp\n" -"Consulte las páginas del manual de apt-get(8), sources.list(5) y apt." -"conf(5)\n" -"para más información y opciones.\n" -" Este APT tiene poderes de Super Vaca.\n" +#: apt-inst/filelist.cc:477 +#, c-format +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Tratando de sobreescribir una desviación, %s -> %s y %s/%s" + +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "Doble suma de desviación %s -> %s" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Debe especificar al menos un paquete para obtener su código fuente" +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "Archivo de configuración duplicado %s/%s" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" +msgstr "La trayectoria %s es demasiado larga" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" +msgstr "Desempaquetando %s más de una vez" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "pero no está instalado" +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "El directorio %s está desviado" -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "fijado %s como instalado manualmente.\n" +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "El paquete está tratando de escribir al blanco desviado %s/%s" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "fijado %s como instalado automáticamente.\n" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "La trayectoria de desviación es demasiado larga" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s ya está en su versión más reciente.\n" +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 +#, c-format +msgid "Failed to stat %s" +msgstr "No pude leer %s" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s ya está en su versión más reciente.\n" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Falló el renombre de %s a %s" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "fijado %s como instalado manualmente.\n" +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "El directorio %s está siendo reemplazado por un no-directorio" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "No se pudo abrir %s" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "No pude localizar el nodo en su bote de enlace" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "La trayectoria es muy larga" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" +#: apt-inst/extract.cc:421 +#, c-format +msgid "Overwrite package match with no version for %s" +msgstr "Sobreescribiendo concordancia del paquete sin versión para %s" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-inst/extract.cc:438 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" +msgstr "El archivo %s/%s sobreescribe al que está en el paquete %s" -#: methods/cdrom.cc:203 +#: apt-inst/extract.cc:498 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "No pude leer la base de datos %s del cdrom" +msgid "Unable to stat %s" +msgstr "No pude leer %s" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"Por favor, utilice «apt-cdrom» para hacer que APT reconozca este CD. No " -"puede utilizar «apt-get update» para añadir nuevos CDs" +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, c-format +msgid "Failed to write file %s" +msgstr "Falló la escritura del archivo %s" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD equivocado" +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "No pude cerrar el archivo %s" -#: methods/cdrom.cc:249 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "No pude desmontar el CD-ROM de %s, tal vez todavía este en uso." +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Este no es un archivo DEB válido, falta el miembro «%s»" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disco no encontrado." +#: apt-inst/deb/debfile.cc:132 +#, c-format +msgid "Internal error, could not locate member %s" +msgstr "Error interno, no pude localizar el miembro %s" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Fichero no encontrado" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Archivo de control inanalizable" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "No pude leer" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Firma del archivo inválida" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "No pude poner el tiempo de modificación" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Error leyendo la cabecera de miembro del archivo" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI inválido, los URIS locales no deben de empezar con //" +#: apt-inst/contrib/arfile.cc:96 +#, c-format +msgid "Invalid archive member header %s" +msgstr "Cabecera de miembro del archivo inválida %s" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Entrando" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Cabecera de miembro del archivo inválida" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "El archivo es muy pequeño" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "No pude leer las cabeceras del archivo" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "No pude crear las tuberías" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "No pude ejecutar gzip" + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Archivo dañado" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "" +"Se produjo un fallo al calcular la suma de control de tar, archive dañado" + +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Cabecera del TAR tipo %u desconocida, miembro %s" + +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" + +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Ejecutando dpkg" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "No pude determinar el nombre del par" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "No está soportado el sistema de paquetes «%s»" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Imposible determinar el nombre local" +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "No se pudo determinar un tipo de sistema de paquetes adecuado" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "El servidor rechazó nuestra conexión y dijo: %s" +msgid "Wrote %i records.\n" +msgstr "%i registros escritos.\n" -#: methods/ftp.cc:225 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "USER failed, server said: %s" -msgstr "Usuario (USER) falló, el servidor dijo: %s" +msgid "Wrote %i records with %i missing files.\n" +msgstr "%i registros escritos con %i fichero de menos.\n" -#: methods/ftp.cc:232 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "PASS failed, server said: %s" -msgstr "Clave (PASS) falló, el servidor dijo: %s" +msgid "Wrote %i records with %i mismatched files\n" +msgstr "%i registros escritos con %i fichero mal emparejado\n" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" -"Se especificó un servidor proxy pero no un script de entrada, «Acquire::ftp::" -"ProxyLogin» está vacío." +"%i registros escritos con %i fichero de menos y %i ficheros mal emparejados\n" -#: methods/ftp.cc:280 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Falló la orden «%s» del script de entrada, el servidor dijo: %s" +msgid "Can't find authentication record for: %s" +msgstr "No se pudo encontrar un registro de autenticación para: %s" -#: methods/ftp.cc:306 +#: apt-pkg/indexcopy.cc:521 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "Tipo (TYPE) falló, el servidor dijo: %s" +msgid "Hash mismatch for: %s" +msgstr "La suma hash difiere para: %s" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "La conexión expiró" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"No se pudieron analizar o abrir las listas de paquetes o el archivo de " +"estado." -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "El servidor cerró la conexión" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Tal vez quiera ejecutar «apt-get update» para corregir estos problemas" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "No pude crear un socket." +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "No se pudieron leer las listas de fuentes." -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Fallo del protocolo" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Caché de paquetes vacía." -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "No pude crear un socket" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "El archivo de caché de paquetes está dañado" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "No pude conectar el socket de datos, expiró el tiempo de conexión" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "El archivo de caché de paquetes es una versión incompatible" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Falló" +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "El archivo de caché de paquetes está dañado" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "No pude conectar un socket pasivo." +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "Esta versión de APT no soporta el sistema de versiones «%s»" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo no pude obtener un socket oyente" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "La caché de paquetes se había creado para una arquitectura diferente" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "No pude ligar un socket" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Depende" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "No pude escuchar en el socket" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "PreDepende" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "No pude determinar el nombre del socket" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Sugiere" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "No pude mandar la orden PORT" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Recomienda" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Dirección de familia %u desconocida (AF_*)" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Entra en conflicto" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT falló, el servidor dijo: %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Reemplaza" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Expiró conexión a socket de datos" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Hace obsoleto" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "No pude aceptar la conexión" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Rompe" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Se produjo un problema al hacer un hash del archivo" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Mejora" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Imposible traer archivo, el servidor dijo «%s»" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "importante" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Expiró el socket de datos" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "requiere" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Falló transferencia de datos, el servidor dijo «%s»" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "estándar" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Consulta" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "opcional" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "No pude invocar " +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" -#: methods/connect.cc:76 +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Conectando a %s (%s)" +msgid "The method driver %s could not be found." +msgstr "No se pudo encontrar el método %s." -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Compruebe que el paquete «dpkg-dev» esté instalado.\n" -#: methods/connect.cc:94 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "No pude crear un socket para %s (f=%u t=%u p=%u)" +msgid "Method %s did not start correctly" +msgstr "El método %s no se inició correctamente" -#: methods/connect.cc:100 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "No puedo iniciar la conexión a %s:%s (%s)." +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Por favor, inserte el disco «%s» en la unidad «%s» y pulse Intro." -#: methods/connect.cc:108 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "No pude conectarme a %s:%s (%s), expiró tiempo para conexión" +msgid "Index file type '%s' is not supported" +msgstr "No se da soporte para el tipo de archivo de índice «%s»" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "No pude conectarme a %s:%s (%s)." +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Creando árbol de dependencias" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Versiones candidatas" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Generación de dependencias" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Leyendo la información de estado" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Connecting to %s" -msgstr "Conectando a %s" +msgid "Failed to open StateFile %s" +msgstr "No se pudo abrir el fichero de estado %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Could not resolve '%s'" -msgstr "No se pudo resolver «%s»" +msgid "Failed to write temporary StateFile %s" +msgstr "Falló la escritura del fichero de estado temporal %s" -#: methods/connect.cc:205 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Fallo temporal al resolver «%s»" +msgid "rename failed, %s (%s -> %s)." +msgstr "falló el cambio de nombre, %s (%s -> %s)." -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Algo raro pasó al resolver «%s:%s» (%i - %s)" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "La suma hash difiere" -#: methods/connect.cc:211 -#, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Algo raro pasó al resolver «%s:%s» (%i - %s)" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "El tamaño difiere" -#: methods/connect.cc:258 -#, c-format -msgid "Unable to connect to %s:%s:" -msgstr "No se pudo conectar a %s:%s:" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Operación inválida: %s" -#: methods/gpgv.cc:168 +#: apt-pkg/acquire-item.cc:1573 +#, c-format msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"Error interno: Firma correcta, ¡¿pero no se pudo determinar su huella " -"digital?!" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Se encontró al menos una firma inválida." +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "No se pudo leer el archivo «Release» %s" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" msgstr "" -"No se pudo ejecutar «gpgv» para verificar la firma (¿está instalado gpgv?)" +"No existe ninguna clave pública disponible para los siguientes " +"identificadores de clave:\n" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1669 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Error desconocido ejecutando gpgv" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Distribución conflictiva: %s (se esperaba %s, pero se obtuvo %s)" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Las siguientes firms fueron inválidas:\n" +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"Se produjo un error durante la verificación de las firmas. El repositorio no " +"está actualizado y se utilizarán los ficheros de índice antiguos. El error " +"GPG es: %s: %s\n" -#: methods/gpgv.cc:231 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "Error de GPG: %s: %s" + +#: apt-pkg/acquire-item.cc:1859 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" msgstr "" -"Las firmas siguientes no se pudieron verificar porque su llave pública no " -"está disponible:\n" +"No se pudo localizar un archivo para el paquete %s. Esto puede significar " +"que necesita arreglar manualmente este paquete (debido a que falta una " +"arquitectura)" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Error escribiendo al archivo" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Los archivos de índice de paquetes están dañados. No existe un campo " +"«Filename:» para el paquete %s." -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Error leyendo del servidor, el lado remoto cerró la conexión." +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "No se da soporte para el tipo de archivo de índice «%s»" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Error leyendo del servidor" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "No se pudo leer %s." -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Error escribiendo a archivo" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "La caché tiene una versión incompatible de sistema de versiones" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Falló la selección" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Se produjo un error mientras se procesaba %s (FindPkg)" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Expiró la conexión" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "" +"Vaya, excedió el número de nombres de paquetes que este APT es capaz de " +"manejar." -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Error escribiendo al archivo de salida" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Vaya, excedió el número de versiones que este APT es capaz de manejar." -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Esperando las cabeceras" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "" +"Vaya, excedió el número de descripciones que este APT es capaz de manejar." -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Mala línea de cabecera" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "" +"Vaya, excedió el número de dependencias que este APT es capaz de manejar." -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "El servidor de http envió una cabecera de respuesta inválida" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "" +"Al procesar las dependencias de archivos no se encontró el paquete %s %s" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "El servidor de http envió una cabecera de Content-Length inválida" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "No se puede leer la lista de paquetes fuente %s" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "El servidor de http envió una cabecera de Content-Range inválida" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Leyendo lista de paquetes" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Éste servidor de http tiene el soporte de alcance roto" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Recogiendo archivos que proveen" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Formato de fecha desconocido" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "No se puede escribir en %s" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Mala cabecera Data" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Error de E/S guardando caché fuente" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Fallo la conexión" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Bloque de fabricante %s sin huella digital" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Error interno" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Falta el directorio de listas %spartial." -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Calculando la actualización... " +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Falta el directorio de archivos %spartial." + +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "No se pudo bloquear el directorio %s" + +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Descargando fichero %li de %li (falta %s)" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Listo" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Descargando fichero %li de %li" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" +"No se han podido descargar algunos archivos de índice, se han ignorado, o se " +"ha utilizado unos antiguos en su lugar." -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Debe poner algunos URIs fuente («source») en su sources.list" + +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/policy.cc:422 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "" +"Registro inválido en el archivo de preferencias %s, no hay cabecera «Package»" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Corrigiendo dependencias..." +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "No se entiende el pin tipo %s" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " falló." +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "No hay prioridad especificada para pin (o es cero)" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "No se puede corregir las dependencias" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" +"No se pudo realizar la configuración inmediata de «%s». Consulte la página " +"de manual con «man 5 apt.conf» bajo «APT::Immediate-Configure» para más " +"información. (%d)" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "No se puede minimizar el conjunto de actualización" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "No pude abrir el fichero «%s»" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Listo" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"Esta ejecución de la instalación requiere eliminar temporalmente el paquete " +"esencial %s debido a un bucle de Conflictos/Pre-Dependencias. Esto " +"generalmente es malo, pero si realmente quiere hacerlo, active la opción |" +"APT::Force-LoopBreak»." -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Tal vez quiera ejecutar «apt-get -f install» para corregirlo." +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "Línea %u demasiado larga en la lista de fuentes %s." -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dependencias incumplidas. Pruebe de nuevo usando -f." +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Desmontando el CD-ROM...\n" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "Usando el punto de montaje del CD-ROM %s\n" -#: apt-private/private-output.cc:234 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Instalado]" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Esperando el disco...\n" -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [Instalado]" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Montando el CD-ROM...\n" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identificando... " -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Instalado]" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Etiqueta guardada: %s \n" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Instalado]" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Buscando en el disco archivos de índices...\n" -#: apt-private/private-output.cc:249 +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "[upgradable from: %s]" +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"Se encontraron %zu índices de paquetes, %zu índices de fuentes, %zu índices " +"de traducción y %zu firmas\n" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" +"No pude localizar ningún archivo de paquete, ¿quizás este no sea un disco de " +"Debian o sea de otra arquitectura?" -#: apt-private/private-output.cc:435 -#, c-format -msgid "but %s is installed" -msgstr "pero %s está instalado" - -#: apt-private/private-output.cc:437 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "but %s is to be installed" -msgstr "pero %s va a ser instalado" - -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "pero no es instalable" +msgid "Found label '%s'\n" +msgstr "Se encontró la etiqueta: «%s»\n" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "pero es un paquete virtual" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Ese no es un nombre válido, inténtelo de nuevo.\n" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "pero no está instalado" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Este disco se llama: \n" +"«%s»\n" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "pero no va a instalarse" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Copiando las listas de paquetes..." -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " o" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Escribiendo nueva lista de fuente\n" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Los siguientes paquetes tienen dependencias incumplidas:" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Las entradas de la lista de fuentes para este disco son:\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Se instalarán los siguientes paquetes NUEVOS:" +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"El paquete %s necesita ser reinstalado, pero no se encuentra un archivo para " +"éste." -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Los siguientes paquetes se ELIMINARÁN:" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Error, pkgProblemResolver::Resolve generó cortes, esto puede haber sido " +"causado por paquetes retenidos." -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Los siguientes paquetes se han retenido:" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "" +"No se pudieron corregir los problemas, usted ha retenido paquetes rotos." -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Se actualizarán los siguientes paquetes:" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Se DESACTUALIZARÁN los siguientes paquetes:" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Se cambiarán los siguientes paquetes retenidos:" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: apt-private/private-output.cc:668 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (por %s) " +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" msgstr "" -"AVISO: Se van a eliminar los siguientes paquetes esenciales.\n" -"¡NO debe hacerse a menos que sepa exactamente lo que está haciendo!" -#: apt-private/private-output.cc:707 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu actualizados, %lu se instalarán, " +msgid "Unable to parse package file %s (1)" +msgstr "No se pudo tratar el archivo de paquetes %s (1)" -#: apt-private/private-output.cc:711 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinstalados, " +msgid "Unable to parse package file %s (2)" +msgstr "No se pudo tratar el archivo de paquetes %s (2)" -#: apt-private/private-output.cc:713 +#: apt-pkg/indexrecords.cc:78 #, c-format -msgid "%lu downgraded, " -msgstr "%lu desactualizados, " +msgid "Unable to parse Release file %s" +msgstr "No se pudo leer el archivo «Release» %s" -#: apt-private/private-output.cc:715 +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu para eliminar y %lu no actualizados.\n" +msgid "No sections in Release file %s" +msgstr "No se encontraron secciones en el archivo «Release» %s" -#: apt-private/private-output.cc:719 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu no instalados del todo o eliminados.\n" +msgid "No Hash entry in Release file %s" +msgstr "No existe una entrada «Hash» en el archivo «Release» %s" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[S/n]" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Entrada «Valid-Until» inválida en el archivo «Release» %s" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[s/N]" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Entrada «Date» inválida en el archivo «Release» %s" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "S" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Línea %lu mal formada en la lista de fuentes %s (análisis de URI)" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" +"Línea %lu mal formada en la lista de fuentes %s ([opción] no parseable)" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "El comando de actualización no toma argumentos" - -#: apt-private/private-update.cc:90 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" +"Línea %lu mal formada en la lista de fuentes %s ([opción] demasiado corta)" -#: apt-private/private-show.cc:156 +#: apt-pkg/sourcelist.cc:184 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "" +"Línea %lu mal formada en la lista de fuentes %s ([%s] no es una asignación)" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Error interno, ¡se llamó a «InstallPackages» con paquetes rotos!" - -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" -"Los paquetes necesitan eliminarse pero está deshabilitado la posibilidad de " -"eliminar." - -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Error interno, no terminó la ordenación" +"Línea %lu mal formada en la lista de fuentes %s (no hay clave para [%s])" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -"Qué raro... Los tamaños no concuerdan, mande un correo a apt@packages.debian." -"org" +"Línea %lu mal formada en la lista de fuentes %s ([%s] la clave %s no tiene " +"asociado un valor)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Se necesita descargar %sB/%sB de archivos.\n" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Línea %lu mal formada en la lista de fuentes %s (URI)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Necesito descargar %sB de archivos.\n" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Línea %lu mal formada en la lista de fuentes %s (dist)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "" -"Se utilizarán %sB de espacio de disco adicional después de esta operación.\n" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Línea %lu mal formada en la lista de fuentes %s (análisis de URI)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Se liberarán %sB después de esta operación.\n" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Línea %lu mal formada en la lista de fuentes %s (dist absoluta)" -#: apt-private/private-install.cc:200 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "You don't have enough free space in %s." -msgstr "No tiene suficiente espacio libre en %s." - -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Hay problemas y se utilizó -y sin --force-yes" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Línea %lu mal formada en la lista de fuentes %s (análisis de dist)" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Se especificó Trivial Only pero ésta no es una operación trivial." +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Abriendo %s" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Sí, ¡haga lo que le digo!" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Línea %u mal formada en la lista de fuentes %s (tipo)" -#: apt-private/private-install.cc:222 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Está a punto de hacer algo potencialmente dañino\n" -"Para continuar escriba la frase «%s»\n" -" ?] " +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Tipo «%s» desconocido en la línea %u de lista de fuentes %s" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Abortado." +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Tipo «%s» desconocido en la línea %u de lista de fuentes %s" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "¿Desea continuar?" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "No se encontró la Distribución «%s» para «%s»" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "No se pudieron descargar algunos archivos" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "No se encontró la versión «%s» para «%s»" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"No se pudieron obtener algunos archivos, ¿quizás deba ejecutar «apt-get " -"update» o deba intentarlo de nuevo con --fix-missing?" +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "No se pudo encontrar la tarea «%s»" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "Actualmente no están soportados --fix-missing e intercambio de medio" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "No se pudo encontrar ningún paquete con la expresión regular «%s»" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "No se pudieron corregir los paquetes que faltan." +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "No se pudo encontrar ningún paquete con la expresión regular «%s»" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Abortando la instalación." +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" +"No se pueden seleccionar distintas versiones del paquete «%s» porque es " +"puramente virtual" -#: apt-private/private-install.cc:366 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -"El paquete mostrado a continuación ha desaparecido de su sistema\n" -"dado que todos sus ficheros han sido sobreescritos por otros paquetes:" -msgstr[1] "" -"Los paquetes mostrados a continuación han desaparecido de su sistema\n" -"dado que todos sus ficheros han sido sobreescritos por otros paquetes:" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" +"No se puede seleccionar una versión instalada o candidata para el paquete " +"«%s» dado que éste no tiene ninguna de éstas" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Nota: Dpkg realiza esto de forma automática y a propósito." +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"No se puede seleccionar la última versión del paquete «%s» dado que es " +"puramente virtual" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -"Se supone que no vamos a eliminar cosas, no se pudo iniciar «AutoRemover»" +"No se puede seleccionar una versión candidata del paquete %s dado que no " +"tiene candidatos" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" msgstr "" -"Hmmm. Parece que «AutoRemover» destruyó algo y eso no debería haber pasado. " -"Por favor, envíe un informe de fallo al programa apt." +"No se puede seleccionar una versión instalada del paquete «%s» puesto que no " +"está instalado" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "La siguiente información puede ayudar a resolver la situación:" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%lid %lih %limin. %liseg." -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Error interno, «AutoRemover» rompió cosas" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%lih %limin. %liseg." -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "" -"El paquete indicado a continuación se instaló de forma automática y ya no es " -"necesarios." -msgstr[1] "" -"Los paquetes indicados a continuación se instalaron de forma automática y ya " -"no son necesarios." +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin. %liseg." -#: apt-private/private-install.cc:517 +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 #, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "Se instaló de forma automática %lu paquete y ya no es necesario.\n" -msgstr[1] "" -"Se instalaron de forma automática %lu paquetes y ya no son necesarios.\n" +msgid "%lis" +msgstr "%liseg." -#: apt-private/private-install.cc:519 -#, fuzzy -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Utilice «apt-get autoremove» para eliminarlos." -msgstr[1] "Utilice «apt-get autoremove» para eliminarlos." +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "Selección %s no encontrada" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Tal vez quiera ejecutar «apt-get -f install» para corregirlo:" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "No se utiliza bloqueos para el fichero de bloqueo de sólo lectura %s" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "No se pudo abrir el fichero de bloqueo «%s»" + +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "No se utilizan bloqueos para el fichero de bloqueo de montaje nfs %s" + +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "No se pudo bloquear %s" + +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -"Dependencias incumplidas. Intente «apt-get -f install» sin paquetes (o " -"especifique una solución)." -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -"No se pudieron instalar algunos paquetes. Esto puede significar que\n" -"usted pidió una situación imposible o, si está usando la distribución\n" -"inestable, que algunos paquetes necesarios no han sido creados o han\n" -"sido movidos fuera de Incoming." -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Paquetes rotos" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Se instalarán los siguientes paquetes extras:" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Paquetes sugeridos:" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "El subproceso %s recibió un fallo de segmentación." -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Paquetes recomendados:" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "El subproceso %s recibió la señal %u." -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Ignorando %s, ya está instalado y no está activada la actualización.\n" +msgid "Sub-process %s returned an error code (%u)" +msgstr "El subproceso %s devolvió un código de error (%u)" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"Ignorando %s, no está instalado y sólo se están solicitando " -"actualizaciones.\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "El subproceso %s terminó de forma inesperada" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "No es posible reinstalar el paquete %s, no se puede descargar.\n" +msgid "Problem closing the gzip file %s" +msgstr "Se produjo un problema al cerrar el fichero gzip %s" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s ya está en su versión más reciente.\n" +msgid "Could not open file %s" +msgstr "No pude abrir el fichero %s" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Versión seleccionada «%s» (%s) para «%s»\n" +msgid "Could not open file descriptor %d" +msgstr "No se pudo abrir el descriptor de fichero %d" -#: apt-private/private-install.cc:899 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Versión seleccionada «%s» (%s) para «%s»\n" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "No se pudo crear el subproceso IPC" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "El paquete %s no está instalado, no se eliminará\n" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "No se pudo ejecutar el compresor " -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/fileutl.cc:1514 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "El paquete %s no está instalado, no se eliminará\n" +msgid "read, still have %llu to read but none left" +msgstr "leídos, todavía debía leer %lu pero no queda nada" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" -"NOTA: ¡Esto es sólo una simulación\n" -" apt-get necesita privilegios de administrador para la ejecución real.\n" -" Tenga también en cuenta que se han desactivado los bloqueos,\n" -" ¡no dependa de la relevancia a la situación real actual!" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "escritos, todavía tenía que escribir %lu pero no pude hacerlo" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "AVISO: ¡No se han podido autenticar los siguientes paquetes!" +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Se produjo un problema al cerrar el fichero %s" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Aviso de autenticación ignorado.\n" +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Se produjo un problema al renombrar el fichero %s a %s" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Algunos paquetes no se pueden autenticar" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Se produjo un problema al desligar el fichero %s" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "¿Instalar estos paquetes sin verificación?" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Se produjo un problema al sincronizar el fichero" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "No pude abrir %s.new" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... ¡Error!" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%c%s... Done" +msgstr "%c%s... Hecho" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Obj " +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Hecho" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Des:" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "No puedo hacer mmap de un fichero vacío" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "No pude duplicar el descriptor de fichero %i" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "No pude hacer mmap de %lu bytes" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "No se pudo cerrar «mmap»" + +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "No pude sincronizar «mmap»" + +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Descargados %sB en %s (%sB/s)\n" +msgid "Couldn't make mmap of %lu bytes" +msgstr "No pude hacer mmap de %lu bytes" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Falló al truncar el archivo" + +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid " [Working]" -msgstr " [Trabajando]" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" +"La asignación dinámica MMap no tiene más espacio. Por favor, incrementa el " +"valor de «APT::Cache-Start». El valor actual es: %lu (man 5 apt.conf)" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/mmap.cc:446 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -"Cambio de medio: Por favor, inserte el disco etiquetado como\n" -" «%s»\n" -"en la unidad «%s» y pulse Intro\n" +"No se pudo incrementar el tamaño del MMap dado que se ha alcanzado ya el " +"límite de %lu bytes." -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"No se pudo incrementar el tamaño de MMap dado que el usuario ha " +"deshabilitado el crecimiento automático." + +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "No mirror file '%s' found " -msgstr "No se encontró un archivo de réplica «%s»" +msgid "Unable to stat the mount point %s" +msgstr "No se puede obtener información del punto de montaje %s" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "No se encontró un archivo de réplica «%s»" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "No pude montar el cdrom" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "No se encontró un archivo de réplica «%s»" +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Tipo de abreviación no reconocida: «%c»" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "[Mirror: %s]" -msgstr "[Réplica: %s]" +msgid "Opening configuration file %s" +msgstr "Abriendo fichero de configuración %s" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Falló la creación de una tubería IPC para el subproceso" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Error de sintaxis %s:%u: No hay un nombre al comienzo del bloque." -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "La conexión se cerró prematuramente" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Error de sintaxis %s:%u: Marca mal formada" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "¡Parámetro por omisión incorrecto!" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Error de sintaxis %s:%u: Basura extra después del valor" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Pulse Intro para continuar." +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "" +"Error de sintaxis %s:%u: Las directivas sólo se pueden poner en el primer " +"nivel" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "¿Desea borrar los archivos .deb descargados con anterioridad?" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Error de sintaxis %s:%u: Demasiadas inclusiones anidadas" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "" -"Se produjeron algunos problemas mientras se desempaquetaba. Los paquetes que " -"se instalaron" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Error de sintaxis %s:%u: Incluido desde aquí" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "van a configurarse. Esto puede dar lugar a errores duplicados" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Error de sintaxis %s:%u: Directiva «%s» no soportada" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"o errores causados por dependencias no presentes. Esto está BIEN, sólo los " -"errores" +"Error de sintaxis %s:%u: la directiva «clear» tiene que incluir un árbol de " +"opciones como argumento" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "" -"encima de este mensaje son importantes. Por favor, corríjalas y ejecute " -"«[I]nstall» otra vez" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Error de sintaxis %s:%u: Basura extra al final del archivo" -#: dselect/update:30 -msgid "Merging available information" -msgstr "Fusionando información disponible" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "No se instaló ningún anillo de claves %s." -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode llamado en un nodo todavía ligado" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "No se conoce la opción de línea de órdenes «%c» [de %s]." -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "¡No pude localizar el elemento enlazado!" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "No se entiende la opción de línea de órdenes %s" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "No pude asignar una desviación" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "La opción de línea de órdenes %s no es un booleano" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Error interno en AddDiversion" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "La opción %s necesita un argumento." -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Tratando de sobreescribir una desviación, %s -> %s y %s/%s" +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "" +"Opción %s: La especificación del elemento de configuración debe tener un " +"=<val>." -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Doble suma de desviación %s -> %s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "La opción %s exige un argumento entero, no «%s»" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Archivo de configuración duplicado %s/%s" +msgid "Option '%s' is too long" +msgstr "Opción «%s» demasiado larga" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "The path %s is too long" -msgstr "La trayectoria %s es demasiado larga" +msgid "Sense %s is not understood, try true or false." +msgstr "El sentido %s no se entiende, pruebe verdadero o falso." -#: apt-inst/extract.cc:132 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "Unpacking %s more than once" -msgstr "Desempaquetando %s más de una vez" +msgid "Invalid operation %s" +msgstr "Operación inválida: %s" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "The directory %s is diverted" -msgstr "El directorio %s está desviado" +msgid "Installing %s" +msgstr "Instalando %s" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "El paquete está tratando de escribir al blanco desviado %s/%s" +msgid "Configuring %s" +msgstr "Configurando %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "La trayectoria de desviación es demasiado larga" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Eliminando %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "Failed to stat %s" -msgstr "No pude leer %s" +msgid "Completely removing %s" +msgstr "Borrando completamente %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Falló el renombre de %s a %s" +msgid "Noting disappearance of %s" +msgstr "Se detectó la desaparición de %s" -#: apt-inst/extract.cc:249 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "El directorio %s está siendo reemplazado por un no-directorio" +msgid "Running post-installation trigger %s" +msgstr "Ejecutando disparador post-instalación %s" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "No pude localizar el nodo en su bote de enlace" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Falta el directorio «%s»." -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "La trayectoria es muy larga" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "No pude abrir el fichero «%s»" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Sobreescribiendo concordancia del paquete sin versión para %s" +msgid "Preparing %s" +msgstr "Preparando %s" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "El archivo %s/%s sobreescribe al que está en el paquete %s" +msgid "Unpacking %s" +msgstr "Desempaquetando %s" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Unable to stat %s" -msgstr "No pude leer %s" +msgid "Preparing to configure %s" +msgstr "Preparándose para configurar %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Failed to write file %s" -msgstr "Falló la escritura del archivo %s" +msgid "Installed %s" +msgstr "%s instalado" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to close file %s" -msgstr "No pude cerrar el archivo %s" +msgid "Preparing for removal of %s" +msgstr "Preparándose para eliminar %s" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Este no es un archivo DEB válido, falta el miembro «%s»" +msgid "Removed %s" +msgstr "%s eliminado" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Error interno, no pude localizar el miembro %s" +msgid "Preparing to completely remove %s" +msgstr "Preparándose para eliminar completamente %s" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Archivo de control inanalizable" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Se borró completamente %s" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Firma del archivo inválida" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Error leyendo la cabecera de miembro del archivo" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "No se puede escribir en %s" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Cabecera de miembro del archivo inválida %s" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Cabecera de miembro del archivo inválida" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "El archivo es muy pequeño" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "No pude leer las cabeceras del archivo" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" +"No se escribió ningún informe «apport» porque ya se ha alcanzado el valor de " +"«MaxReports»" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "No pude crear las tuberías" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "problemas de dependencias - dejando sin instalar" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "No pude ejecutar gzip" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"No se escribió un informe «apport» porque el mensaje de error indica que es " +"un mensaje de error asociado a un fallo previo." -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Archivo dañado" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"No se escribió un informe «apport» porque el mensaje de error indica que el " +"error es de disco lleno" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" msgstr "" -"Se produjo un fallo al calcular la suma de control de tar, archive dañado" +"No se escribió un informe «apport» porque el mensaje de error indica un " +"error de memoria excedida" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"No se escribió un informe «apport» porque el mensaje de error indica que el " +"error es de disco lleno" + +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"No se escribió un informe «apport» porque el mensaje de error indica un " +"error de E/S de dpkg" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Cabecera del TAR tipo %u desconocida, miembro %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"No se pudo bloquear el directorio de administración (%s), ¿quizás haya algún " +"otro proceso utilizándolo?" + +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "No se encontró un archivo de réplica «%s»" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"se interrumpió la ejecución de dpkg, debe ejecutar manualmente «%s» para " +"corregir el problema" + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "No bloqueado" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/eu.po b/po/eu.po index 74d165084..eca0ea10f 100644 --- a/po/eu.po +++ b/po/eu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_eu\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2009-05-17 00:41+0200\n" "Last-Translator: Piarres Beobide <pi@beobide.net>\n" "Language-Team: Euskara <debian-l10n-basque@lists.debian.org>\n" @@ -18,3161 +18,3162 @@ msgstr "" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "'%s' motako indize fitxategirik ez da onartzen" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "Ezin da %s irakurri" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Ezin da %s(e)ra aldatu" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "Ezin da %s atzitu." - -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Progress: [%3i%%]" -msgstr "" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "%s paketeak (%s bertsioa) mendekotasun arazo bat du:\n" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Pakete Izenak Guztira : " -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "'%s' pakete sistema ez da onartzen" +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "Pakete Izenak Guztira : " -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Ezin da pakete sistemaren mota egokirik zehaztu" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Pakete normalak:" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "%i erregistro grabaturik.\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Pakete birtual puruak:" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "%i erregistro eta %i galdutako fitxategi grabaturik.\n" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Bakanako pakete birtualak: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "%i erregistro eta %i okerreko fitxategi grabaturik\n" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Nahastutako pakete birtualak: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"%i erregistro, %i galdutako fitxategi eta %i okerreko fitxategi grabaturik\n" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Falta direnak: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Bertsio Ezberdinak Guztira: " -#: apt-pkg/indexcopy.cc:521 -#, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Egiaztapena ez dator bat" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Azalpen Ezberdinak Guztira: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Ezin izan da %s metodo kontrolatzailea aurkitu." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Dependentziak Guztira: " -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Egiaztatu 'dpkg-dev' paketea instalaturik dagoen.\n" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Guztira Bertsio/fitxategi erlazioak: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "%s metodoa ez da behar bezala abiarazi" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Fitx/Azalpen erlazioak guztira: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Mesedez sa ''%s' izeneko diska '%s' gailuan eta enter sakatu" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Guztira Saltzaile Mapatzea: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Pakete zerrenda edo egoera fitxategia ezin dira analizatu edo ireki." +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Guztira bateratutako kateak: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Beharbada 'apt-get update' exekutatu nahiko duzu arazoak konpontzeko" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Guztira bertsio dependentzia lekua: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Ezin izan da Iturburu zerrenda irakurri." +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Guztira galdutako tokia:" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Paketeen katxea hutsik" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Guztira erregistratutako lekua: " -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Paketeen katxe fitxategia hondatuta dago" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "%s pakete fitxategia ez dago sinkronizatuta." -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Paketeen katxe fixategiaren bertsioa ez da bateragarria" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Ez da paketerik aurkitu" -#: apt-pkg/pkgcache.cc:169 +#: cmdline/apt-cache.cc:1254 #, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "Paketeen katxe fitxategia hondatuta dago" - -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "APT honek ez du '%s' bertsio sistema onartzen" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Paketeen katxea beste arkitektura batentzat sortuta dago" +msgid "You must give at least one search pattern" +msgstr "Zehazki eredu bat eman behar duzu." -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Mendekotasuna:" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Aurremendekotasuna:" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "Ezin da %s paketea lokalizatu" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Iradokizuna:" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Pakete Fitxategiak:" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Gomendioa:" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" +"Katxea ez dago sinkronizatuta, ezin zaio erreferentziarik (x-ref) egin " +"pakete fitxategi bati" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Gatazka:" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Pin duten Paketeak:" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Ordeztea:" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(ez da aurkitu)" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Zaharkitzea:" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Instalatuta: " -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Apurturik" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Hautagaia: " -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(bat ere ez)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "garrantzitsua" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Paketearen pin-a:" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "beharrezkoa" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Bertsio taula:" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "estandarra" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s %s-rentzat %s %s-ean konpilatua\n" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "aukerakoa" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Erabilera: apt-cache [aukerak] komandoa\n" +" apt-cache [aukerak] add fitxategia1 [fitxategia2 ...]\n" +" apt-cache [aukerak] showpkg pak1 [pak2 ...]\n" +" apt-cache [aukerak] showsrc pak1 [pak2 ...]\n" +"\n" +"APTren katxe fitxategi bitarrak manipulatzeko eta kontsultatzeko erabiltzen\n" +"den behe-mailako tresna bat da, apt-cache.\n" +"\n" +"Komandoak:\n" +" add - Pakete fitxategi bat gehitzen du iturburuko katxean\n" +" gencaches - Bi katxeak sortzen ditu: paketeena eta iturburuena\n" +" showpkg - Pakete baten informazio orokorra erakusten du\n" +" showsrc - Iturburu erregistroak erakusten ditu\n" +" stats - Oinarrizko estatistika batzuk erakusten ditu\n" +" dump - Fitxategi osoa erakusten du formatu laburrean\n" +" dumpavail - Fitxategi erabilgarri bat irteera estandarrean inprimatu\n" +" unmet - Bete gabeko mendekotasunak erakusten ditu\n" +" search - Adierazpen erregularrak bilatzen ditu pakete zerrendan \n" +" show - Paketearen erregistro irakurgarri bat erakusten du\n" +" depends - Pakete baten mendekotasunak erakusten ditu\n" +" pkgnames - Pakete guztien izenak zerrendatzen ditu\n" +" dotty - GraphViz-ekin erabiltzeko pakete grafikoak sortzen ditu\n" +" xvcg - xvcg-ekin erabiltzeko pakete grafikoak sortzen ditu\n" +" policy - Gidalerroen ezarpenak erakusten ditu\n" +"\n" +"Aukerak:\n" +" -h Laguntza testu hau.\n" +" -p=? Paketearen katxea.\n" +" -s=? Iturburuaren katxea.\n" +" -q Desgaitu progresio adierazlea.\n" +" -i Mendekotasun nagusiak soilik erakutsi.\n" +" -c=? Irakurri konfigurazio fitxategi hau\n" +" -o=? Ezarri konfigurazio aukera arbitrario bat. Adib.: -o dir::cache=/tmp\n" +"Informazio gehiago nahi izanez gero: ikus apt-cache(8) eta apt.conf(5).\n" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "estra" +#: cmdline/apt-cdrom.cc:76 +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "" +"Mesedez idatzi izen bat diska honentzat, 'Debian 2.1r1 1 Diska' antzerakoan" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "'%s' motako indize fitxategirik ez da onartzen" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Mesedez sar diska bat gailuan eta enter sakatu" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Adierazpen erregularren konpilazio errorea - %s" +#: cmdline/apt-cdrom.cc:139 +#, fuzzy, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Huts egin du %s izenaren ordez %s ipintzean" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Katxearen bertsio sistema ez da bateragarria" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Errorea gertatu da %s prozesatzean (FindPkg)" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Prozesu hau bildumako beste CD guztiekin errepikatu." -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "APT honek maneia dezakeen pakete izenen kopurua gainditu duzu." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Parekatu gabeko argumentuak" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "APT honek maneia dezakeen bertsio kopurua gainditu duzu." +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"Erabilera: apt-config [aukerak] komandoa\n" +"\n" +"apt-config APT konfigurazio fitxategia irakurtzeko tresna soil bat da\n" +"\n" +"Komandoak:\n" +" shell - Shell modua\n" +" dump - Konfigurazioa erakusten du\n" +"\n" +"Aukerak:\n" +" -h Laguntza testu hau.\n" +" -c=? Irakurri konfigurazio fitxategi hau\n" +" -o=? Ezarri konfigurazio aukera arbitrario bat. Adib.: -o dir::cache=/tmp\n" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "APT honek maneia dezakeen azalpen kopurua gainditu duzu." +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Ezin izan da %s paketea aurkitu" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "APT honek maneia dezakeen mendekotasun muga gainditu duzu." +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Ezin izan da %s paketea aurkitu" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "%s %s paketea ez da aurkitu fitxategi mendekotasunak prozesatzean" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Ezin izan da %s paketea aurkitu" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" +#: cmdline/apt-get.cc:367 +#, fuzzy, c-format +msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Ezin da atzitu %s iturburu paketeen zerrenda" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Pakete Zerrenda irakurtzen" +#: cmdline/apt-get.cc:423 +#, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Fitxategiaren erreferentziak biltzen" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Ezin izan da %s paketea aurkitu" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Unable to write to %s" -msgstr "%s : ezin da idatzi" +msgid "%s set to manually installed.\n" +msgstr "%s eskuz instalatua bezala ezarri.\n" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "S/I errorea iturburu katxea gordetzean" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s eskuz instalatua bezala ezarri.\n" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Barne Errorea, arazo konpontzaileak zerbait apurtu du" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Ezin da deskarga direktorioa blokeatu" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Gutxienez pakete bat zehaztu behar duzu iturburua lortzeko" + +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "Ezin da iturburu paketerik aurkitu %s(r)entzat" + +#: cmdline/apt-get.cc:786 +#, c-format +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" +#: cmdline/apt-get.cc:791 +#, c-format +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:843 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "huts egin du izen-aldaketak, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Egiaztapena ez dator bat" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Tamaina ez dator bat" - -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Eragiketa baliogabea: %s" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Dagoeneko deskargaturiko '%s' fitxategia saltatzen\n" -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" - -#: apt-pkg/acquire-item.cc:1589 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Ezin da %s pakete fitxategia analizatu (1)" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Ez dago gako publiko erabilgarririk hurrengo gako ID hauentzat:\n" +msgid "Couldn't determine free space in %s" +msgstr "Ezin da %s(e)n duzun leku librea atzeman." -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:882 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +msgid "You don't have enough free space in %s" +msgstr "Ez daukazu nahikoa leku libre %s(e)n." -#: apt-pkg/acquire-item.cc:1691 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Iturburu artxiboetako %sB/%sB eskuratu behar dira.\n" -#: apt-pkg/acquire-item.cc:1721 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +msgid "Need to get %sB of source archives.\n" +msgstr "Iturburu artxiboetako %sB eskuratu behar dira.\n" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:902 #, c-format -msgid "GPG error: %s: %s" -msgstr "" +msgid "Fetch source %s\n" +msgstr "Eskuratu %s iturburua\n" -#: apt-pkg/acquire-item.cc:1859 -#, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"Ezin izan dut %s paketeko fitxategi bat lokalizatu. Beharbada eskuz konpondu " -"beharko duzu paketea. (arkitektura falta delako)" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Huts egin du zenbat artxibo lortzean." -#: apt-pkg/acquire-item.cc:1925 +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Deskarga amaituta eta deskarga soileko moduan" + +#: cmdline/apt-get.cc:950 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" +msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" +"%s(e)n dagoeneko deskonprimitutako iturburua deskonprimitzea saltatzen\n" -#: apt-pkg/acquire-item.cc:1983 +#: cmdline/apt-get.cc:963 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Paketearen indize fitxategiak hondatuta daude. 'Filename:' eremurik ez %s " -"paketearentzat." +msgid "Unpack command '%s' failed.\n" +msgstr "Deskonprimitzeko '%s' komandoak huts egin du.\n" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "%s saltzaile blokeak ez du egiaztapen markarik" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Egiaztatu 'dpkg-dev' paketea instalaturik dagoen.\n" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "%spartial zerrenda-direktorioa falta da." +#: cmdline/apt-get.cc:992 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Eraikitzeko '%s' komandoak huts egin du.\n" -#: apt-pkg/acquire.cc:91 -#, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "%spartial artxibo direktorioa falta da." +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Prozesu umeak huts egin du" -#: apt-pkg/acquire.cc:99 -#, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "Ezin da zerrenda direktorioa blokeatu" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "" +"Gutxienez pakete bat zehaztu behar duzu eraikitze mendekotasunak egiaztatzeko" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:1055 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "%li fitxategi deskargatzen %li -tik (%s falta da)" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Retrieving file %li of %li" -msgstr "%li fitxategia jasotzen %li-tik" +msgid "Unable to get build-dependency information for %s" +msgstr "Ezin izan da %s(r)en eraikitze mendekotasunen informazioa eskuratu" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Ezin da lortu %s %s\n" +msgid "%s has no build depends.\n" +msgstr "%s: ez du eraikitze mendekotasunik.\n" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy +#: cmdline/apt-get.cc:1272 +#, fuzzy, c-format msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" msgstr "" -"Indize fitxategi batzuk ezin izan dira deskargatu; ez ikusi egin zaie, edo " -"zaharrak erabili dira haien ordez." - -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "'Iturburu' URI batzuk jarri behar dituzu sources.list-en" +"%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" +"%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu" -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Erregistro baliogabea hobespenen fitxategian, pakete goibururik ez" - -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Did not understand pin type %s" -msgstr "Ez da ulertu %s orratz-mota (pin)" - -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Ez da lehentasunik zehaztu orratzarentzat (pin) (edo zero da)" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"Huts egin du %2$s(r)en %1$s mendekotasuna betetzean: instalatutako %3$s " +"paketea berriegia da" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: cmdline/apt-get.cc:1352 +#, fuzzy, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" +"%2$s(r)en %1$s mendekotasuna ezin da bete, ez baitago bertsio-eskakizunak " +"betetzen dituen %3$s paketearen bertsio erabilgarririk" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:1358 #, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "%s fitxategia ezin izan da ireki" - -#: apt-pkg/packagemanager.cc:583 -#, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -"Instalazio hau exekutatzeko, funtsezko %s paketea aldi baterako kendu behar " -"da, Gatazka/Aurre-mendekotasun begizta baten ondorioz. Normalean arriskutsua " -"izaten da, baina hala ere egin nahi baduzu, aktibatu APT::Force-LoopBreak " -"aukera." +"%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Line %u too long in source list %s." -msgstr "%2$s iturburu zerrendako %1$u lerroa luzeegia da." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "CD-ROM Desmuntatzen...\n" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Huts egin du %2$s(r)en %1$s mendekotasuna betetzean: %3$s" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "%s CD-ROM muntatze puntua erabiltzen\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Diska itxaroten...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "CD-ROM-a muntatzen...\n" - -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Egiaztatzen... " +msgid "Build-dependencies for %s could not be satisfied." +msgstr "%s(r)en eraikitze mendekotasunak ezin izan dira bete." -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Gordetako Etiketa: %s \n" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Huts egin du eraikitze mendekotasunak prozesatzean" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Indize fitxategien bila diska arakatzen...\n" +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Konektatzen -> %s.(%s)" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"%zu pakete indize, %zu jatorri indize %zu itzulpen indize eta %zu sinadura " -"aurkitu dira\n" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Onartutako Moduluak:" -#: apt-pkg/cdrom.cc:744 +#: cmdline/apt-get.cc:1633 +#, fuzzy msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" - -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Aurkitutako Etiketa: '%s' \n" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Hau ez baliozko izen bat, froga berriro.\n" - -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"Diskaren izen:\n" -"'%s'\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Pakete zerrendak kopiatzen..." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Jatorri zerrenda berria idazten\n" +"Erabilera: apt-get [aukerak] komandoa\n" +" apt-get [aukerak] install|remove pkg1 [pkg2 ...]\n" +" apt-get [aukerak] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get paketeak deskargatu eta instalatzeko komando lerroko interfaze soil\n" +"bat da. Gehien erabiltzen diren komandoak eguneratzekoa eta instalatzekoa \n" +"dira: update eta install.\n" +"\n" +"Komandoak:\n" +" update - Eskuratu pakete zerrenda berriak\n" +" upgrade - Egin bertsio berritzea\n" +" install - Instalatu pakete berriak (paketea libc6 da, eta ez libc6.deb)\n" +" remove - Kendu paketeak\n" +" autoremove - Automatikoki kendu erabiltzen ez diren paketeak\n" +" purge - Paketeak kendu eta garbitu\n" +" source - Deskargatu iturburu artxiboak\n" +" build-dep - Konfiguratu iturburu paketeen eraikitze dependentziak\n" +" dist-upgrade - Banaketaren bertsio berritzea: ikus apt-get(8)\n" +" dselect-upgrade - Jarraitu dselect hautapenak\n" +" clean - Ezabatu deskargatutako artxibo fitxategiak\n" +" autoclean - Ezabatu deskargatutako artxibo fitxategi zaharrak\n" +" check - Egiaztatu ez dagoela hautsitako mendekotasunik\n" +"\n" +"Aukerak:\n" +" -h Laguntza testu hau.\n" +" -q Egunkarian erregistratzeko irteera - progresio adierazlerik gabe\n" +" -qq Irteerarik ez, erroreentzat izan ezik\n" +" -d Deskargatu bakarrik - EZ instalatu edo deskonprimitu artxiboak\n" +" -s Ekintzarik ez. Simulazio bat egiten du\n" +" -y Galdera guztiei Bai erantzun, galdetu gabe\n" +" -f Saiatu jarraitzen, osotasun egiaztapenak huts egiten badu\n" +" -m Saiatu jarraitzen, artxiboak ezin badira lokalizatu\n" +" -u Erakutsi bertsio-berritutako paketeen zerrenda ere\n" +" -b Sortu iturburu paketea lortu ondoren\n" +" -V Erakutsi bertsio-zenbaki xeheak\n" +" -c=? Irakurri konfigurazio fitxategi hau\n" +" -o=? Ezarri konfigurazio aukera arbitrario bat. Adib.:-o dir::cache=/tmp\n" +"Informazio eta aukera gehiago nahi izanez gero, ikus apt-get(8), \n" +"sources.list(5) eta apt.conf(5) orrialdeak eskuliburuan.\n" +" APT honek Super Behiaren Ahalmenak ditu.\n" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Diskoarentzako jatorri sarrerak:\n" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Gutxienez pakete bat zehaztu behar duzu iturburua lortzeko" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"%s paketea berriro instalatu behar da, baina ezin dut artxiborik aurkitu." -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-helper.cc:66 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Errorea: pkgProblemResolver::Resolve. Etenak sortu ditu, beharbada " -"atxikitako paketeek eraginda." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Ezin dira arazoak konpondu; hautsitako paketeak atxiki dituzu." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Dependentzia zuhaitza eraikitzen" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Hautagaien bertsioak" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Dependentzi Sormena" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Egoera argibideak irakurtzen" - -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Huts egin du %s EgoeraFitxategia irekitzean" - -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Ezin izan da %s aldiroko EgoeraFitrxategia idatzi" - -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Ezin da %s pakete fitxategia analizatu (1)" - -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Ezin da %s pakete fitxategia analizatu (2)" - -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "'%2$s'(r)en '%1$s' banaketa ez da aurkitu" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "'%2$s'(r)en '%1$s' bertsioa ez da aurkitu" - -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "Ezin da %s paketea lokalizatu" - -#: apt-pkg/cacheset.cc:603 +#: cmdline/apt-mark.cc:68 #, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "Ezin izan da %s zeregina aurkitu" +msgid "%s can not be marked as it is not installed.\n" +msgstr "baina ez dago instalatuta" -#: apt-pkg/cacheset.cc:609 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Ezin izan da %s paketea aurkitu" +msgid "%s was already set to manually installed.\n" +msgstr "%s eskuz instalatua bezala ezarri.\n" -#: apt-pkg/cacheset.cc:615 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Ezin izan da %s paketea aurkitu" - -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" - -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" +msgid "%s was already set to automatically installed.\n" +msgstr "%s eskuz instalatua bezala ezarri.\n" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s bertsiorik berriena da jada.\n" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s bertsiorik berriena da jada.\n" -#: apt-pkg/cacheset.cc:663 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" +msgid "Waited for %s but it wasn't there" +msgstr "%s espero zen baina ez zegoen han" -#: apt-pkg/indexrecords.cc:78 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "Ezin da %s pakete fitxategia analizatu (1)" +msgid "%s set on hold.\n" +msgstr "%s eskuz instalatua bezala ezarri.\n" -#: apt-pkg/indexrecords.cc:86 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "Oharra, %s hautatzen %s(r)en ordez\n" +msgid "Canceled hold on %s.\n" +msgstr "Huts egin du %s irekitzean" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Lerro baliogabea desbideratze fitxategian: %s" - -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Ezin da %s pakete fitxategia analizatu (1)" - -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (URI analisia)" - -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)" +#: cmdline/apt-mark.cc:392 +msgid "" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." +msgstr "" -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist)" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/sourcelist.cc:184 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Ezin da cdrom-eko %s datu-basea irakurri" -#: apt-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" +msgstr "" +"Mesedez erabili apt-cdrom APT-k CD hau ezagutu dezan.\n" +"apt-get update ezin da erabili CD berriak gehitzeko" -#: apt-pkg/sourcelist.cc:193 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD okerra" -#: apt-pkg/sourcelist.cc:206 +#: methods/cdrom.cc:249 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (URI)" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "" +"Ezin izan da %s(e)ko CD-ROMa desmuntatu; beharbada erabiltzen ariko da." -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist)" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Ez da diska aurkitu" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (URI analisia)" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Ez da fitxategia aurkitu" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Gaizkieratutako %lu lerroa %s iturburu zerrendan (banaketa orokorra)" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Huts egin du atzitzean" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Huts egin du aldaketa ordua ezartzean" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "%s irekitzen" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI baliogabea. URI lokalek ezin dute // eduki hasieran" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Gaizki osatutako %u lerroa %s Iturburu zerrendan (type)" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Sartzen" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "'%s' mota ez da ezagutzen %u lerroan %s Iturburu zerrendan" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Ezin izan da peer edo parekoaren izena zehaztu" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "'%s' mota ez da ezagutzen %u lerroan %s Iturburu zerrendan" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Ezin izan da izen lokala zehaztu" -#: apt-pkg/deb/dpkgpm.cc:95 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Installing %s" -msgstr "%s Instalatzen" +msgid "The server refused the connection and said: %s" +msgstr "Zerbitzariak gure konexioa ukatu eta hau esan du: %s" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#: methods/ftp.cc:225 #, c-format -msgid "Configuring %s" -msgstr "%s konfiguratzen" +msgid "USER failed, server said: %s" +msgstr "USERek huts egin du, eta zerbitzariak hau esan du: %s" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#: methods/ftp.cc:232 #, c-format -msgid "Removing %s" -msgstr "%s kentzen" +msgid "PASS failed, server said: %s" +msgstr "PASSek huts egin du, eta zerbitzariak hau esan du: %s" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "%s guztiz ezabatu da" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"Proxy zerbitzari bat zehaztu da, baina sarrerako script-ik ez. Acquire::ftp::" +"ProxyLogin hutsik dago." -#: apt-pkg/deb/dpkgpm.cc:99 +#: methods/ftp.cc:280 #, c-format -msgid "Noting disappearance of %s" +msgid "Login script command '%s' failed, server said: %s" msgstr "" +"Sarrerako script-eko '%s' komandoak huts egin du, eta zerbitzariak hau esan " +"du: %s" -#: apt-pkg/deb/dpkgpm.cc:100 +#: methods/ftp.cc:306 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Inbstalazio-ondorengo %s abiarazlea exekutatzen" +msgid "TYPE failed, server said: %s" +msgstr "TYPEk huts egin du, eta zerbitzariak hau esan du: %s" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "'%s' direktorioa falta da" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Konexioa denboraz kanpo" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "%s fitxategia ezin izan da ireki" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Zerbitzariak konexioa itxi du" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "%s prestatzen" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Irakurketa errorea" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "%s irekitzen" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Erantzun batek bufferrari gainez eragin dio." -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "%s konfiguratzeko prestatzen" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protokolo hondatzea" -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "%s Instalatuta" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Idazketa errorea" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "%s kentzeko prestatzen" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Ezin izan da socket-a sortu" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "%s kendurik" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "" +"Ezin izan da datu-socketa konektatu; konexioak denbora muga gainditu du" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "%s guztiz ezabatzeko prestatzen" - -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "%s guztiz ezabatu da" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "%s : ezin da idatzi" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Huts egin du" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Ezin izan da socket pasibora konektatu." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo-k ezin izan du socket entzule bat eskuratu" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 -#, c-format -msgid "Waited for %s but it wasn't there" -msgstr "%s espero zen baina ez zegoen han" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Ezin izan da socket bat lotu" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Ezin izan da socket-ean entzun" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Ezin izan da socket-aren izena zehaztu" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Ezin da PORT komandoa bidali" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "Helbide familia ezezagunaa: %u (AF_*)" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "EPRTek huts egin du, eta zerbitzariak hau esan du: %s" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Datu-socket konexioak denbora muga gainditu du" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Ezin da konexioa onartu" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Arazoa fitxategiaren hash egitean" -#: apt-pkg/deb/debsystem.cc:91 +#: methods/ftp.cc:890 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" +msgid "Unable to fetch file, server said '%s'" +msgstr "Ezin da fitxategia lortu; zerbitzariak hau esan du: '%s'" -#: apt-pkg/deb/debsystem.cc:94 -#, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Ezin da zerrenda direktorioa blokeatu" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Datu-socketak denbora muga gainditu du" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: methods/ftp.cc:935 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" +msgid "Data transfer failed, server said '%s'" +msgstr "Datu transferentziak huts egin du, eta zerbitzariak hau esan du: '%s'" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Kontsulta" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Ezin da deitu " -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: methods/connect.cc:76 #, c-format -msgid "%lih %limin %lis" -msgstr "" +msgid "Connecting to %s (%s)" +msgstr "Konektatzen -> %s.(%s)" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: methods/connect.cc:87 #, c-format -msgid "%limin %lis" -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: methods/connect.cc:94 #, c-format -msgid "%lis" -msgstr "" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Ezin izan da socket-ik sortu honentzat: %s (f=%u t=%u p=%u)" -#: apt-pkg/contrib/strutl.cc:1243 +#: methods/connect.cc:100 #, c-format -msgid "Selection %s not found" -msgstr "%s hautapena ez da aurkitu" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Ezin izan da konexioa hasi -> %s:%s (%s)." -#: apt-pkg/contrib/fileutl.cc:190 +#: methods/connect.cc:108 #, c-format -msgid "Not using locking for read only lock file %s" +msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "" -"Ez da blokeorik erabiltzen ari irakurtzeko soilik den %s blokeo " -"fitxategiarentzat" +"Ezin izan da konektatu -> %s:%s (%s). Konexioak denbora muga gainditu du" -#: apt-pkg/contrib/fileutl.cc:195 +#: methods/connect.cc:126 #, c-format -msgid "Could not open lock file %s" -msgstr "Ezin izan da %s blokeo fitxategia ireki" +msgid "Could not connect to %s:%s (%s)." +msgstr "Ezin izan da konektatu -> %s:%s (%s)" -#: apt-pkg/contrib/fileutl.cc:218 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "" -"Ez da blokeorik erabiltzen ari nfs %s muntatutako blokeo fitxategiarentzat" +msgid "Connecting to %s" +msgstr "Konektatzen -> %s..." -#: apt-pkg/contrib/fileutl.cc:223 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Could not get lock %s" -msgstr "Ezin izan da %s blokeoa hartu" +msgid "Could not resolve '%s'" +msgstr "Ezin izan da '%s' ebatzi" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: methods/connect.cc:205 #, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +msgid "Temporary failure resolving '%s'" +msgstr "Aldi baterako akatsa '%s' ebaztean" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Zerbait arraroa pasatu da '%s:%s' (%i) ebaztean" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#: methods/connect.cc:211 +#, fuzzy, c-format +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Zerbait arraroa pasatu da '%s:%s' (%i) ebaztean" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: methods/connect.cc:258 +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Ezin da konektatu -> %s %s:" + +#: methods/gpgv.cc:168 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" -msgstr "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "Barne errorea: Sinadura zuzena, baina ezin da egiaztapen marka zehaztu" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "%s azpiprozesuak segmentaziuo hutsegitea jaso du." +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Beintza sinadura baliogabe bat aurkitu da." -#: apt-pkg/contrib/fileutl.cc:826 -#, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "%s azpiprozesuak segmentaziuo hutsegitea jaso du." +#: methods/gpgv.cc:174 +#, fuzzy +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "Ezin da %s abiarazi sinadura egiaztatzeko (gpgv instalaturik al dago?)" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "%s azpiprozesuak errore kode bat itzuli du (%u)" +msgid "" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "%s azpiprozesua ustekabean amaitu da" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Errore ezezaguna gpgv exekutatzean" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Idazketa errorea" - -#: apt-pkg/contrib/fileutl.cc:913 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Arazoa fitxategia ixtean" - -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "%s fitxategia ezin izan da ireki" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Ondorengo sinadurak baliogabeak dira:\n" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "Ezin izan da %s(r)en kanalizazioa ireki" +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "" +"Ondorengo sinadurak ezin dira egiaztatu gako publikoa ez bait dago " +"eskuragarri:\n" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Huts egin du IPC azpiprozesua sortzean" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Huts egin du konpresorea exekutatzean " +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Errorea fitxategian idaztean" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Irakurketa errorea" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Errorea zerbitzaritik irakurtzen Urrunetik amaitutako konexio itxiera" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "irakurrita; oraindik %lu irakurtzeke, baina ez da ezer geratzen" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Errorea zerbitzaritik irakurtzean" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "idatzita; oraindik %lu idazteke, baina ezin da" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Errorea fitxategian idaztean" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Arazoa fitxategia ixtean" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Hautapenak huts egin du" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Arazoa fitxategia sinkronizatzean" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Konexioaren denbora muga gainditu da" -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "Arazoa fitxategia desestekatzean" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Errorea irteerako fitxategian idaztean" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Arazoa fitxategia sinkronizatzean" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Goiburuen zain" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Errorea!" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Okerreko goiburu-lerroa" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Eginda" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "http zerbitzariak erantzun goiburu baliogabe bat bidali du." -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "http zerbitzariak Content-Length buru baliogabe bat bidali du" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Eginda" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "http zerbitzariak Content-Range buru baliogabe bat bidali du" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Ezin da fitxategi huts baten mmap egin" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "http zerbitzariak barruti onarpena apurturik du" -#: apt-pkg/contrib/mmap.cc:111 -#, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Ezin izan da %s(r)en kanalizazioa ireki" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Datu formatu ezezaguna" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Ezin izan da %lu byteren mmap egin" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Goiburu data gaizki dago" -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "Ezin da %s ireki" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Konexioak huts egin du" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -#, fuzzy -msgid "Unable to synchronize mmap" -msgstr "Ezin da deitu " +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Barne errorea" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Ezin izan da %lu byteren mmap egin" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Huts fitxategia mozterakoan" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Barne errorea, InstallPackages apurturiko paketeez deitu da!" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" -msgstr "" -"MMAP dinamikoa memoriaz kanpo. Mesedez handitu APT::Cache-Start muga. Uneko " -"balioa: %lu. (man 5 apt.conf)" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Paketeak ezabatu beharra dute baina Ezabatzea ezgaiturik dago." -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Barne errorea, ez da ordenatzeaz amaitu" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" +"Hau bitxia... Tamainak ez dira berdina, idatzi apt@packages.debian.org-ra " +"berri emanez (ingelesez)" -#: apt-pkg/contrib/cdromutl.cc:65 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "Ezin da atzitu %s muntatze puntua" - -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Huts egin du CDROMa atzitzean" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Artxiboetako %sB/%sB eskuratu behar dira.\n" -#: apt-pkg/contrib/configuration.cc:519 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Mota ezezaguneko laburtzapena: '%c'" +msgid "Need to get %sB of archives.\n" +msgstr "Artxiboetako %sB eskuratu behar dira.\n" -#: apt-pkg/contrib/configuration.cc:633 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "Opening configuration file %s" -msgstr "%s konfigurazio fitxategia irekitzen" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Ekintza honen ondoren, %sB gehiago erabiliko dira diskoan.\n" -#: apt-pkg/contrib/configuration.cc:801 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Sintaxi errorea, %s:%u: Blokearen hasieran ez dago izenik." +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Ekintza honen ondoren, %sB libratuko dira diskoan.\n" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-private/private-install.cc:200 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Sintaxi errorea %s:%u: Gaizki eratutako" +msgid "You don't have enough free space in %s." +msgstr "Ez daukazu nahikoa leku libre %s(e)n." -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Sintaxi errorea, %s:%u: Zabor gehigarria balioaren ondoren" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Arazoak daude, eta -y erabili da --force-yes gabe" -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "Sintaxi errorea, %s:%u: Direktibak goi-mailan bakarrik egin daitezke" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "'Trivial Only' zehaztu da, baina hau ez da eragiketa tribial bat." -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Sintaxi errorea, %s:%u: habiaratutako elementu gehiegi" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Bai, egin esandakoa!" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-private/private-install.cc:222 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Sintaxi errorea, %s:%u: hemendik barne hartuta" - -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Sintaxi errorea, %s:%u: onartu gabeko '%s' direktiba" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Egin nahi duzunak kalte larriak eragin ditzake\n" +"Jarraitzeko, idatzi '%s' esaldia\n" +" ?] " -#: apt-pkg/contrib/configuration.cc:900 -#, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "Sintaxi errorea, %s:%u: Direktibak goi-mailan bakarrik egin daitezke" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Abortatu." -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Sintaxi errorea, %s:%u: Zabor gehigarria fitxategi amaieran" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Aurrera jarraitu nahi al duzu?" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "Abortatu instalazioa." +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Fitxategi batzuk ezin izan dira deskargatu" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Ez da ezagutzen komando lerroko '%c' aukera [%s]." +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"Ezin izan dira artxibo batzuk lortu; beharbada apt-get update exekutatu, edo " +"--fix-missing aukerarekin saiatu?" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "Ez da ulertzen komando lerroko %s aukera" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing eta euskarri aldaketa ez dira onartzen oraingoz" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "Komando lerroko %s aukera ez da boolearra." +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Falta diren paketeak ezin dira zuzendu." -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "%s aukerak argumentu bat behar du." +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Abortatu instalazioa." -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -"%s aukera: konfigurazio elementuaren zehaztapenak =<val> eduki behar du." -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "%s aukerak osoko argumentu bat behar du, eta ez '%s'" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Suposatu ez dugun zerbait ezabatuko da, ezin da AutoRemover abiarazi" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "'%s' aukera luzeegia da" +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" +"Hmm, dirudienez AutoRemover-ek gertatu behar ez zen apurtu du\n" +"Mesedez programa errore txosten bat bete mesedez." -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "%s zentzua ez da ulertzen; probatu egiazkoa edo faltsua." +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Informazio honek arazoa konpontzen lagun dezake:" -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "Eragiketa baliogabea: %s" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Barne Errorea, AutoRemover-ek zerbait apurtu du" -#: cmdline/apt-cache.cc:149 -#, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "%s paketeak (%s bertsioa) mendekotasun arazo bat du:\n" +#: apt-private/private-install.cc:513 +#, fuzzy +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "" +"Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago " +"behar." +msgstr[1] "" +"Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago " +"behar." -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Pakete Izenak Guztira : " +#: apt-private/private-install.cc:517 +#, fuzzy, c-format +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "" +"Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago " +"behar." +msgstr[1] "" +"Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago " +"behar." -#: cmdline/apt-cache.cc:279 +#: apt-private/private-install.cc:519 #, fuzzy -msgid "Total package structures: " -msgstr "Pakete Izenak Guztira : " +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "'apt-get autoremove' erabili ezabatzeko." +msgstr[1] "'apt-get autoremove' erabili ezabatzeko." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Pakete normalak:" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Beharbada 'apt-get -f install' exekutatu nahiko duzu hauek zuzentzeko:" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Pakete birtual puruak:" +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"Bete gabeko mendekotasunak. Probatu 'apt-get -f install' paketerik gabe (edo " +"zehaztu konponbide bat)." -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Bakanako pakete birtualak: " +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"Pakete batzuk ezin izan dira instalatu. Beharbada ezinezko egoera \n" +"bat eskatu duzu, edo, banaketa ezegonkorra erabiltzen ari bazara,\n" +"beharrezko pakete batzuk ez ziren sortuko oraindik, edo \n" +"Sarrerakoetan (Incoming) egoten jarraituko dute." -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Nahastutako pakete birtualak: " +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Hautsitako paketeak" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Falta direnak: " +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Ondorengo pakete gehigarriak instalatuko dira:" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Bertsio Ezberdinak Guztira: " +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Iradokitako paketeak:" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Azalpen Ezberdinak Guztira: " +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Gomendatutako paketeak:" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Dependentziak Guztira: " +#: apt-private/private-install.cc:825 +#, c-format +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "%s saltatzen. Instalatuta dago, eta ez dago bertsio-berritzerik.\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Guztira Bertsio/fitxategi erlazioak: " +#: apt-private/private-install.cc:829 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "%s saltatzen. Instalatuta dago, eta ez dago bertsio-berritzerik.\n" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Fitx/Azalpen erlazioak guztira: " +#: apt-private/private-install.cc:841 +#, c-format +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "%s berriro instalatzea ez da posible; ezin da deskargatu.\n" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Guztira Saltzaile Mapatzea: " +#: apt-private/private-install.cc:846 +#, c-format +msgid "%s is already the newest version.\n" +msgstr "%s bertsiorik berriena da jada.\n" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Guztira bateratutako kateak: " +#: apt-private/private-install.cc:894 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Hautatutako bertsioa: %s (%s) -- %s\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Guztira bertsio dependentzia lekua: " +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Hautatutako bertsioa: %s (%s) -- %s\n" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Guztira galdutako tokia:" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "%s paketea ez dago instalatuta, eta, beraz, ez da kenduko\n" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Guztira erregistratutako lekua: " +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "%s paketea ez dago instalatuta, eta, beraz, ez da kenduko\n" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "%s pakete fitxategia ez dago sinkronizatuta." +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Ez da paketerik aurkitu" +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "Zehazki eredu bat eman behar duzu." +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Mendekotasunak zuzentzen..." -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " : huts egin du." -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Pakete Fitxategiak:" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Ezin dira mendekotasunak zuzendu" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "" -"Katxea ez dago sinkronizatuta, ezin zaio erreferentziarik (x-ref) egin " -"pakete fitxategi bati" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Ezin da bertsio berritzeko multzoa minimizatu" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Pin duten Paketeak:" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Eginda" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(ez da aurkitu)" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Beharbada 'apt-get -f install' exekutatu nahiko duzu zuzentzeko." -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Instalatuta: " +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Bete gabeko mendekotasunak. Probatu -f erabiliz." -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Hautagaia: " +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(bat ere ez)" +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Instalatuta]" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Paketearen pin-a:" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Instalatuta]" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Bertsio taula:" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s %s-rentzat %s %s-ean konpilatua\n" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Instalatuta]" -#: cmdline/apt-cache.cc:1749 +#: apt-private/private-output.cc:245 #, fuzzy -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgid "[installed]" +msgstr " [Instalatuta]" + +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" msgstr "" -"Erabilera: apt-cache [aukerak] komandoa\n" -" apt-cache [aukerak] add fitxategia1 [fitxategia2 ...]\n" -" apt-cache [aukerak] showpkg pak1 [pak2 ...]\n" -" apt-cache [aukerak] showsrc pak1 [pak2 ...]\n" -"\n" -"APTren katxe fitxategi bitarrak manipulatzeko eta kontsultatzeko erabiltzen\n" -"den behe-mailako tresna bat da, apt-cache.\n" -"\n" -"Komandoak:\n" -" add - Pakete fitxategi bat gehitzen du iturburuko katxean\n" -" gencaches - Bi katxeak sortzen ditu: paketeena eta iturburuena\n" -" showpkg - Pakete baten informazio orokorra erakusten du\n" -" showsrc - Iturburu erregistroak erakusten ditu\n" -" stats - Oinarrizko estatistika batzuk erakusten ditu\n" -" dump - Fitxategi osoa erakusten du formatu laburrean\n" -" dumpavail - Fitxategi erabilgarri bat irteera estandarrean inprimatu\n" -" unmet - Bete gabeko mendekotasunak erakusten ditu\n" -" search - Adierazpen erregularrak bilatzen ditu pakete zerrendan \n" -" show - Paketearen erregistro irakurgarri bat erakusten du\n" -" depends - Pakete baten mendekotasunak erakusten ditu\n" -" pkgnames - Pakete guztien izenak zerrendatzen ditu\n" -" dotty - GraphViz-ekin erabiltzeko pakete grafikoak sortzen ditu\n" -" xvcg - xvcg-ekin erabiltzeko pakete grafikoak sortzen ditu\n" -" policy - Gidalerroen ezarpenak erakusten ditu\n" -"\n" -"Aukerak:\n" -" -h Laguntza testu hau.\n" -" -p=? Paketearen katxea.\n" -" -s=? Iturburuaren katxea.\n" -" -q Desgaitu progresio adierazlea.\n" -" -i Mendekotasun nagusiak soilik erakutsi.\n" -" -c=? Irakurri konfigurazio fitxategi hau\n" -" -o=? Ezarri konfigurazio aukera arbitrario bat. Adib.: -o dir::cache=/tmp\n" -"Informazio gehiago nahi izanez gero: ikus apt-cache(8) eta apt.conf(5).\n" -#: cmdline/apt-cdrom.cc:76 -#, fuzzy -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -"Mesedez idatzi izen bat diska honentzat, 'Debian 2.1r1 1 Diska' antzerakoan" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Mesedez sar diska bat gailuan eta enter sakatu" +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "baina %s instalatuta dago" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Huts egin du %s izenaren ordez %s ipintzean" +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "baina %s instalatzeko dago" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "baina ez da instalagarria" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Prozesu hau bildumako beste CD guztiekin errepikatu." +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "baina pakete birtuala da" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Parekatu gabeko argumentuak" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "baina ez dago instalatuta" -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -msgstr "" -"Erabilera: apt-config [aukerak] komandoa\n" -"\n" -"apt-config APT konfigurazio fitxategia irakurtzeko tresna soil bat da\n" -"\n" -"Komandoak:\n" -" shell - Shell modua\n" -" dump - Konfigurazioa erakusten du\n" -"\n" -"Aukerak:\n" -" -h Laguntza testu hau.\n" -" -c=? Irakurri konfigurazio fitxategi hau\n" -" -o=? Ezarri konfigurazio aukera arbitrario bat. Adib.: -o dir::cache=/tmp\n" - -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Ezin izan da %s paketea aurkitu" - -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Ezin izan da %s paketea aurkitu" - -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Ezin izan da %s paketea aurkitu" - -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Ezin da atzitu %s iturburu paketeen zerrenda" - -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "baina ez da instalatuko" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "Ezin izan da %s paketea aurkitu" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " edo" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s eskuz instalatua bezala ezarri.\n" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Ondorengo paketeetan bete gabeko mendekotasunak daude:" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s eskuz instalatua bezala ezarri.\n" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Ondorengo pakete BERRIAK instalatuko dira:" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Ondorengo paketeak KENDUKO dira:" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Barne Errorea, arazo konpontzaileak zerbait apurtu du" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Ondorengo paketeak mantendu egin dira:" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Ezin da deskarga direktorioa blokeatu" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Ondorengo paketeak bertsio-berrituko dira:" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Gutxienez pakete bat zehaztu behar duzu iturburua lortzeko" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Ondorengo paketeak AURREKO BERTSIORA itzuliko dira:" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "Ezin da iturburu paketerik aurkitu %s(r)entzat" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Ondorengo pakete atxikiak aldatu egingo dira:" -#: cmdline/apt-get.cc:786 +#: apt-private/private-output.cc:668 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" +msgid "%s (due to %s) " +msgstr "%s (arrazoia: %s) " -#: cmdline/apt-get.cc:791 -#, c-format +#: apt-private/private-output.cc:676 msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" +"KONTUZ: Ondorengo funtsezko paketeak kendu egingo dira\n" +"EZ ezazu horrelakorik egin, ez badakizu ondo zertan ari zaren!" -#: cmdline/apt-get.cc:843 +#: apt-private/private-output.cc:707 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Dagoeneko deskargaturiko '%s' fitxategia saltatzen\n" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu bertsio berritua(k), %lu berriki instalatuta, " -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-private/private-output.cc:711 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Ezin da %s(e)n duzun leku librea atzeman." +msgid "%lu reinstalled, " +msgstr "%lu berrinstalatuta, " -#: cmdline/apt-get.cc:882 +#: apt-private/private-output.cc:713 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Ez daukazu nahikoa leku libre %s(e)n." +msgid "%lu downgraded, " +msgstr "%lu aurreko bertsiora itzulita, " -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: apt-private/private-output.cc:715 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Iturburu artxiboetako %sB/%sB eskuratu behar dira.\n" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu kentzeko, eta %lu bertsio-berritu gabe.\n" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 +#: apt-private/private-output.cc:719 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Iturburu artxiboetako %sB eskuratu behar dira.\n" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu ez erabat instalatuta edo kenduta.\n" -#: cmdline/apt-get.cc:902 -#, c-format -msgid "Fetch source %s\n" -msgstr "Eskuratu %s iturburua\n" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[B/e]" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Huts egin du zenbat artxibo lortzean." +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[b/E]" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Deskarga amaituta eta deskarga soileko moduan" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "" -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" msgstr "" -"%s(e)n dagoeneko deskonprimitutako iturburua deskonprimitzea saltatzen\n" -#: cmdline/apt-get.cc:962 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Deskonprimitzeko '%s' komandoak huts egin du.\n" +msgid "Regex compilation error - %s" +msgstr "Adierazpen erregularren konpilazio errorea - %s" -#: cmdline/apt-get.cc:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Egiaztatu 'dpkg-dev' paketea instalaturik dagoen.\n" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Eguneratzeko komandoak ez du argumenturik hartzen" -#: cmdline/apt-get.cc:991 +#: apt-private/private-update.cc:90 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Eraikitzeko '%s' komandoak huts egin du.\n" - -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Prozesu umeak huts egin du" - -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "" -"Gutxienez pakete bat zehaztu behar duzu eraikitze mendekotasunak egiaztatzeko" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:1054 -#, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Ezin izan da %s(r)en eraikitze mendekotasunen informazioa eskuratu" - -#: cmdline/apt-get.cc:1101 +#: apt-private/private-show.cc:156 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s: ez du eraikitze mendekotasunik.\n" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" msgstr "" -"%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu" -#: cmdline/apt-get.cc:1289 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -"%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu" -#: cmdline/apt-get.cc:1312 -#, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"Huts egin du %2$s(r)en %1$s mendekotasuna betetzean: instalatutako %3$s " -"paketea berriegia da" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "KONTUZ: Hurrengo paketeak ezin dira egiaztatu!" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"%2$s(r)en %1$s mendekotasuna ezin da bete, ez baitago bertsio-eskakizunak " -"betetzen dituen %3$s paketearen bertsio erabilgarririk" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Egiaztapen abisua gainidazten.\n" + +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Zenbait pakete ezin dira egiaztatu" + +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Paketeak egiaztapen gabe instalatu?" -#: cmdline/apt-get.cc:1357 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 +#, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Ezin da lortu %s %s\n" + +#: apt-private/private-sources.cc:58 #, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Huts egin du %s izenaren ordez %s ipintzean" + +#: apt-private/private-sources.cc:70 +#, c-format +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" + +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" + +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Berriketak kalkulatzen... " + +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Eginda" + +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Atzituta " + +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Hartu:" + +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ez ikusi " + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Err " + +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Lortuta: %sB (%s) (%sB/s)\n" + +#: apt-private/acqprogress.cc:236 +#, c-format +msgid " [Working]" +msgstr " [Lanean]" + +#: apt-private/acqprogress.cc:297 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu" +"Medio Aldaketa: Mesedez sar\n" +" '%s'\n" +"izeneko diska '%s' gailuan eta enter sakatu\n" -#: cmdline/apt-get.cc:1380 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Huts egin du %2$s(r)en %1$s mendekotasuna betetzean: %3$s" +msgid "Unable to read %s" +msgstr "Ezin da %s irakurri" -#: cmdline/apt-get.cc:1395 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "%s(r)en eraikitze mendekotasunak ezin izan dira bete." +msgid "Unable to change to %s" +msgstr "Ezin da %s(e)ra aldatu" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Huts egin du eraikitze mendekotasunak prozesatzean" +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 +#, c-format +msgid "No mirror file '%s' found " +msgstr "" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Konektatzen -> %s.(%s)" +msgid "Can not read mirror file '%s'" +msgstr "%s fitxategia ezin izan da ireki" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Onartutako Moduluak:" +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "%s fitxategia ezin izan da ireki" -#: cmdline/apt-get.cc:1632 -#, fuzzy -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" +#: methods/mirror.cc:445 +#, c-format +msgid "[Mirror: %s]" msgstr "" -"Erabilera: apt-get [aukerak] komandoa\n" -" apt-get [aukerak] install|remove pkg1 [pkg2 ...]\n" -" apt-get [aukerak] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get paketeak deskargatu eta instalatzeko komando lerroko interfaze soil\n" -"bat da. Gehien erabiltzen diren komandoak eguneratzekoa eta instalatzekoa \n" -"dira: update eta install.\n" -"\n" -"Komandoak:\n" -" update - Eskuratu pakete zerrenda berriak\n" -" upgrade - Egin bertsio berritzea\n" -" install - Instalatu pakete berriak (paketea libc6 da, eta ez libc6.deb)\n" -" remove - Kendu paketeak\n" -" autoremove - Automatikoki kendu erabiltzen ez diren paketeak\n" -" purge - Paketeak kendu eta garbitu\n" -" source - Deskargatu iturburu artxiboak\n" -" build-dep - Konfiguratu iturburu paketeen eraikitze dependentziak\n" -" dist-upgrade - Banaketaren bertsio berritzea: ikus apt-get(8)\n" -" dselect-upgrade - Jarraitu dselect hautapenak\n" -" clean - Ezabatu deskargatutako artxibo fitxategiak\n" -" autoclean - Ezabatu deskargatutako artxibo fitxategi zaharrak\n" -" check - Egiaztatu ez dagoela hautsitako mendekotasunik\n" -"\n" -"Aukerak:\n" -" -h Laguntza testu hau.\n" -" -q Egunkarian erregistratzeko irteera - progresio adierazlerik gabe\n" -" -qq Irteerarik ez, erroreentzat izan ezik\n" -" -d Deskargatu bakarrik - EZ instalatu edo deskonprimitu artxiboak\n" -" -s Ekintzarik ez. Simulazio bat egiten du\n" -" -y Galdera guztiei Bai erantzun, galdetu gabe\n" -" -f Saiatu jarraitzen, osotasun egiaztapenak huts egiten badu\n" -" -m Saiatu jarraitzen, artxiboak ezin badira lokalizatu\n" -" -u Erakutsi bertsio-berritutako paketeen zerrenda ere\n" -" -b Sortu iturburu paketea lortu ondoren\n" -" -V Erakutsi bertsio-zenbaki xeheak\n" -" -c=? Irakurri konfigurazio fitxategi hau\n" -" -o=? Ezarri konfigurazio aukera arbitrario bat. Adib.:-o dir::cache=/tmp\n" -"Informazio eta aukera gehiago nahi izanez gero, ikus apt-get(8), \n" -"sources.list(5) eta apt.conf(5) orrialdeak eskuliburuan.\n" -" APT honek Super Behiaren Ahalmenak ditu.\n" -#: cmdline/apt-helper.cc:35 +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Huts egin du azpiprozesuarentzako IPC kanalizazio bat sortzean" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Konexioa behar baino lehenago itxi da" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Okerreko ezarpen lehenetsia!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Jarraitzeko, sakatu Sartu." + +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Deskargaturiko .deb fitxategi guztiak ezabatu nahi al dituzu?" + +#: dselect/install:102 #, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Gutxienez pakete bat zehaztu behar duzu iturburua lortzeko" +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Errore batzuk gertatu dira deskonprimitzean. Konfiguratu egingo ditut" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: dselect/install:103 +#, fuzzy +msgid "will be configured. This may result in duplicate errors" +msgstr "instalatutako paketeak. Horrek errore bikoiztuak eragin ditzake" -#: cmdline/apt-helper.cc:66 +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "edo falta diren mendekotasunen erroreak. Hori ondo dago; mezu honen" + +#: dselect/install:105 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" +"aurreko erroreak dira garrantzitsuak. Konpondu eta exekutatu [I]nstall " +"berriro" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "baina ez dago instalatuta" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Eskuragarrien datuak biltzen" -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s eskuz instalatua bezala ezarri.\n" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode-ri dei egin zaio oraindik estekatutako nodoan" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s eskuz instalatua bezala ezarri.\n" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Huts egin du hash-elementua lokalizatzean!" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s bertsiorik berriena da jada.\n" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Huts egin du desbideratzea lokalizatzean" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s bertsiorik berriena da jada.\n" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "AddDiversion-n barne errorea" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s eskuz instalatua bezala ezarri.\n" +#: apt-inst/filelist.cc:477 +#, c-format +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Desbideratze bat gainidazten saiatzen: %s -> %s eta %s/%s" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Huts egin du %s irekitzean" +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "Desbideratzearen gehitze bikoitza: %s -> %s" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "Konfigurazio fitxategi bikoiztua: %s/%s" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" +msgstr "%s bidea luzeegia da" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" +msgstr "%s behin baino gehiagotan deskonprimitzen" -#: methods/cdrom.cc:203 +#: apt-inst/extract.cc:142 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Ezin da cdrom-eko %s datu-basea irakurri" +msgid "The directory %s is diverted" +msgstr "%s direktorioa desbideratuta dago" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"Mesedez erabili apt-cdrom APT-k CD hau ezagutu dezan.\n" -"apt-get update ezin da erabili CD berriak gehitzeko" +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Paketea desbideratze helburuan %s/%s idazten saiatzen ari da" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD okerra" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Desbideratzearen bidea luzeegia da" -#: methods/cdrom.cc:249 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "" -"Ezin izan da %s(e)ko CD-ROMa desmuntatu; beharbada erabiltzen ariko da." +msgid "Failed to stat %s" +msgstr "Huts egin du %s(e)tik datuak lortzean" + +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Huts egin du %s izenaren ordez %s ipintzean" + +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "%s direktorioa ez-direktorio batekin ordezten ari da" + +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Huts egin du nodoa bere hash-ontzian lokalizatzean" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Bidea luzeegia da" + +#: apt-inst/extract.cc:421 +#, c-format +msgid "Overwrite package match with no version for %s" +msgstr "Gainidatzi pakete-konkordantzia %s(r)en bertsiorik gabe" + +#: apt-inst/extract.cc:438 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" +msgstr "%s/%s fitxategiak %s paketekoa gainidazten du" + +#: apt-inst/extract.cc:498 +#, c-format +msgid "Unable to stat %s" +msgstr "Ezin da daturik lortu %s(e)tik" + +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, c-format +msgid "Failed to write file %s" +msgstr "Ezin izan da %s fitxategian idatzi" + +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "Ezin izan da %s fitxategia itxi" + +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Ez da baliozko DEB artxiboa; '%s' kidea falta da" + +#: apt-inst/deb/debfile.cc:132 +#, c-format +msgid "Internal error, could not locate member %s" +msgstr "Barne Errorea, ezin da %s atala kokatu" + +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Kontrol fitxategi ezin analizagarria" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Artxibo sinadura baliogabea" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Errorea artxiboko kidearen goiburua irakurtzean" + +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Artxiboko kidearen goiburua baliogabea da" + +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Artxiboko kidearen goiburua baliogabea da" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Artxiboa laburregia da" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Huts egin artxibo goiburuak irakurtzean" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Ez da diska aurkitu" +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Huts egin du kanalizazioak sortzean" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Ez da fitxategia aurkitu" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Huts egin du gzip exekutatzean " -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Huts egin du atzitzean" +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Hondatutako artxiboa" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Huts egin du aldaketa ordua ezartzean" +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar egiaztapenak huts egin, hondatutakofitxategia" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI baliogabea. URI lokalek ezin dute // eduki hasieran" +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "%u TAR goiburu mota ezezaguna, %s kidea" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Sartzen" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Ezin izan da peer edo parekoaren izena zehaztu" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Ezin izan da izen lokala zehaztu" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "'%s' pakete sistema ez da onartzen" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Ezin da pakete sistemaren mota egokirik zehaztu" + +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Zerbitzariak gure konexioa ukatu eta hau esan du: %s" +msgid "Wrote %i records.\n" +msgstr "%i erregistro grabaturik.\n" -#: methods/ftp.cc:225 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "USER failed, server said: %s" -msgstr "USERek huts egin du, eta zerbitzariak hau esan du: %s" +msgid "Wrote %i records with %i missing files.\n" +msgstr "%i erregistro eta %i galdutako fitxategi grabaturik.\n" -#: methods/ftp.cc:232 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASSek huts egin du, eta zerbitzariak hau esan du: %s" +msgid "Wrote %i records with %i mismatched files\n" +msgstr "%i erregistro eta %i okerreko fitxategi grabaturik\n" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" -"Proxy zerbitzari bat zehaztu da, baina sarrerako script-ik ez. Acquire::ftp::" -"ProxyLogin hutsik dago." +"%i erregistro, %i galdutako fitxategi eta %i okerreko fitxategi grabaturik\n" -#: methods/ftp.cc:280 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "Login script command '%s' failed, server said: %s" +msgid "Can't find authentication record for: %s" msgstr "" -"Sarrerako script-eko '%s' komandoak huts egin du, eta zerbitzariak hau esan " -"du: %s" -#: methods/ftp.cc:306 -#, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPEk huts egin du, eta zerbitzariak hau esan du: %s" +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "Egiaztapena ez dator bat" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Konexioa denboraz kanpo" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Pakete zerrenda edo egoera fitxategia ezin dira analizatu edo ireki." -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Zerbitzariak konexioa itxi du" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Beharbada 'apt-get update' exekutatu nahiko duzu arazoak konpontzeko" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Erantzun batek bufferrari gainez eragin dio." +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Ezin izan da Iturburu zerrenda irakurri." -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protokolo hondatzea" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Paketeen katxea hutsik" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Ezin izan da socket-a sortu" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Paketeen katxe fitxategia hondatuta dago" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "" -"Ezin izan da datu-socketa konektatu; konexioak denbora muga gainditu du" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Paketeen katxe fixategiaren bertsioa ez da bateragarria" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Huts egin du" +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "Paketeen katxe fitxategia hondatuta dago" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Ezin izan da socket pasibora konektatu." +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "APT honek ez du '%s' bertsio sistema onartzen" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo-k ezin izan du socket entzule bat eskuratu" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Paketeen katxea beste arkitektura batentzat sortuta dago" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Ezin izan da socket bat lotu" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Mendekotasuna:" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Ezin izan da socket-ean entzun" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Aurremendekotasuna:" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Ezin izan da socket-aren izena zehaztu" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Iradokizuna:" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Ezin da PORT komandoa bidali" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Gomendioa:" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Helbide familia ezezagunaa: %u (AF_*)" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Gatazka:" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRTek huts egin du, eta zerbitzariak hau esan du: %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Ordeztea:" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Datu-socket konexioak denbora muga gainditu du" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Zaharkitzea:" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Ezin da konexioa onartu" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Apurturik" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Arazoa fitxategiaren hash egitean" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Ezin da fitxategia lortu; zerbitzariak hau esan du: '%s'" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "garrantzitsua" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Datu-socketak denbora muga gainditu du" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "beharrezkoa" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Datu transferentziak huts egin du, eta zerbitzariak hau esan du: '%s'" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "estandarra" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Kontsulta" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "aukerakoa" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Ezin da deitu " +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "estra" -#: methods/connect.cc:76 +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Konektatzen -> %s.(%s)" +msgid "The method driver %s could not be found." +msgstr "Ezin izan da %s metodo kontrolatzailea aurkitu." + +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Egiaztatu 'dpkg-dev' paketea instalaturik dagoen.\n" -#: methods/connect.cc:87 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Method %s did not start correctly" +msgstr "%s metodoa ez da behar bezala abiarazi" -#: methods/connect.cc:94 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Ezin izan da socket-ik sortu honentzat: %s (f=%u t=%u p=%u)" +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Mesedez sa ''%s' izeneko diska '%s' gailuan eta enter sakatu" -#: methods/connect.cc:100 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Ezin izan da konexioa hasi -> %s:%s (%s)." +msgid "Index file type '%s' is not supported" +msgstr "'%s' motako indize fitxategirik ez da onartzen" -#: methods/connect.cc:108 -#, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "" -"Ezin izan da konektatu -> %s:%s (%s). Konexioak denbora muga gainditu du" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Dependentzia zuhaitza eraikitzen" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Ezin izan da konektatu -> %s:%s (%s)" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Hautagaien bertsioak" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 -#, c-format -msgid "Connecting to %s" -msgstr "Konektatzen -> %s..." +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Dependentzi Sormena" -#: methods/connect.cc:180 methods/connect.cc:199 -#, c-format -msgid "Could not resolve '%s'" -msgstr "Ezin izan da '%s' ebatzi" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Egoera argibideak irakurtzen" -#: methods/connect.cc:205 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Aldi baterako akatsa '%s' ebaztean" - -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Zerbait arraroa pasatu da '%s:%s' (%i) ebaztean" +msgid "Failed to open StateFile %s" +msgstr "Huts egin du %s EgoeraFitxategia irekitzean" -#: methods/connect.cc:211 -#, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Zerbait arraroa pasatu da '%s:%s' (%i) ebaztean" +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Ezin izan da %s aldiroko EgoeraFitrxategia idatzi" -#: methods/connect.cc:258 -#, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Ezin da konektatu -> %s %s:" +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "huts egin du izen-aldaketak, %s (%s -> %s)." -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "Barne errorea: Sinadura zuzena, baina ezin da egiaztapen marka zehaztu" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Egiaztapena ez dator bat" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Beintza sinadura baliogabe bat aurkitu da." +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Tamaina ez dator bat" -#: methods/gpgv.cc:174 +#: apt-pkg/acquire-item.cc:173 #, fuzzy -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "Ezin da %s abiarazi sinadura egiaztatzeko (gpgv instalaturik al dago?)" +msgid "Invalid file format" +msgstr "Eragiketa baliogabea: %s" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1573 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Errore ezezaguna gpgv exekutatzean" +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Ezin da %s pakete fitxategia analizatu (1)" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Ondorengo sinadurak baliogabeak dira:\n" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Ez dago gako publiko erabilgarririk hurrengo gako ID hauentzat:\n" -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1669 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -"Ondorengo sinadurak ezin dira egiaztatu gako publikoa ez bait dago " -"eskuragarri:\n" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Errorea fitxategian idaztean" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Errorea zerbitzaritik irakurtzen Urrunetik amaitutako konexio itxiera" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Errorea zerbitzaritik irakurtzean" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Errorea fitxategian idaztean" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Hautapenak huts egin du" - -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Konexioaren denbora muga gainditu da" - -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Errorea irteerako fitxategian idaztean" - -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Goiburuen zain" - -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Okerreko goiburu-lerroa" +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "http zerbitzariak erantzun goiburu baliogabe bat bidali du." +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "http zerbitzariak Content-Length buru baliogabe bat bidali du" +#: apt-pkg/acquire-item.cc:1859 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"Ezin izan dut %s paketeko fitxategi bat lokalizatu. Beharbada eskuz konpondu " +"beharko duzu paketea. (arkitektura falta delako)" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "http zerbitzariak Content-Range buru baliogabe bat bidali du" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "http zerbitzariak barruti onarpena apurturik du" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Paketearen indize fitxategiak hondatuta daude. 'Filename:' eremurik ez %s " +"paketearentzat." -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Datu formatu ezezaguna" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "'%s' motako indize fitxategirik ez da onartzen" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Goiburu data gaizki dago" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Ezin da %s atzitu." -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Konexioak huts egin du" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Katxearen bertsio sistema ez da bateragarria" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Barne errorea" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Errorea gertatu da %s prozesatzean (FindPkg)" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Berriketak kalkulatzen... " +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "APT honek maneia dezakeen pakete izenen kopurua gainditu duzu." -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Eginda" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "APT honek maneia dezakeen bertsio kopurua gainditu duzu." -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "APT honek maneia dezakeen azalpen kopurua gainditu duzu." -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "APT honek maneia dezakeen mendekotasun muga gainditu duzu." -#: apt-private/private-list.cc:164 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "%s %s paketea ez da aurkitu fitxategi mendekotasunak prozesatzean" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Mendekotasunak zuzentzen..." +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Ezin da atzitu %s iturburu paketeen zerrenda" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " : huts egin du." +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Pakete Zerrenda irakurtzen" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Ezin dira mendekotasunak zuzendu" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Fitxategiaren erreferentziak biltzen" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Ezin da bertsio berritzeko multzoa minimizatu" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "%s : ezin da idatzi" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Eginda" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "S/I errorea iturburu katxea gordetzean" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Beharbada 'apt-get -f install' exekutatu nahiko duzu zuzentzeko." +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "%s saltzaile blokeak ez du egiaztapen markarik" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Bete gabeko mendekotasunak. Probatu -f erabiliz." +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "%spartial zerrenda-direktorioa falta da." -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/acquire.cc:91 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "%spartial artxibo direktorioa falta da." -#: apt-private/private-output.cc:234 +#: apt-pkg/acquire.cc:99 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Instalatuta]" +msgid "Unable to lock directory %s" +msgstr "Ezin da zerrenda direktorioa blokeatu" -#: apt-private/private-output.cc:238 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "%li fitxategi deskargatzen %li -tik (%s falta da)" + +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "%li fitxategia jasotzen %li-tik" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 #, fuzzy -msgid "[installed,local]" -msgstr " [Instalatuta]" +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"Indize fitxategi batzuk ezin izan dira deskargatu; ez ikusi egin zaie, edo " +"zaharrak erabili dira haien ordez." -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "'Iturburu' URI batzuk jarri behar dituzu sources.list-en" + +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Instalatuta]" +#: apt-pkg/policy.cc:422 +#, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Erregistro baliogabea hobespenen fitxategian, pakete goibururik ez" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Instalatuta]" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Ez da ulertu %s orratz-mota (pin)" -#: apt-private/private-output.cc:249 +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Ez da lehentasunik zehaztu orratzarentzat (pin) (edo zero da)" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 #, c-format -msgid "[upgradable from: %s]" +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "%s fitxategia ezin izan da ireki" + +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." msgstr "" +"Instalazio hau exekutatzeko, funtsezko %s paketea aldi baterako kendu behar " +"da, Gatazka/Aurre-mendekotasun begizta baten ondorioz. Normalean arriskutsua " +"izaten da, baina hala ere egin nahi baduzu, aktibatu APT::Force-LoopBreak " +"aukera." -#: apt-private/private-output.cc:435 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "but %s is installed" -msgstr "baina %s instalatuta dago" +msgid "Line %u too long in source list %s." +msgstr "%2$s iturburu zerrendako %1$u lerroa luzeegia da." -#: apt-private/private-output.cc:437 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "CD-ROM Desmuntatzen...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "but %s is to be installed" -msgstr "baina %s instalatzeko dago" +msgid "Using CD-ROM mount point %s\n" +msgstr "%s CD-ROM muntatze puntua erabiltzen\n" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "baina ez da instalagarria" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Diska itxaroten...\n" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "baina pakete birtuala da" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "CD-ROM-a muntatzen...\n" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "baina ez dago instalatuta" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Egiaztatzen... " -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "baina ez da instalatuko" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Gordetako Etiketa: %s \n" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " edo" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Indize fitxategien bila diska arakatzen...\n" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Ondorengo paketeetan bete gabeko mendekotasunak daude:" +#: apt-pkg/cdrom.cc:734 +#, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" +"%zu pakete indize, %zu jatorri indize %zu itzulpen indize eta %zu sinadura " +"aurkitu dira\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Ondorengo pakete BERRIAK instalatuko dira:" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Ondorengo paketeak KENDUKO dira:" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "Aurkitutako Etiketa: '%s' \n" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Ondorengo paketeak mantendu egin dira:" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Hau ez baliozko izen bat, froga berriro.\n" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Ondorengo paketeak bertsio-berrituko dira:" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Diskaren izen:\n" +"'%s'\n" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Ondorengo paketeak AURREKO BERTSIORA itzuliko dira:" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Pakete zerrendak kopiatzen..." + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Jatorri zerrenda berria idazten\n" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Ondorengo pakete atxikiak aldatu egingo dira:" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Diskoarentzako jatorri sarrerak:\n" -#: apt-private/private-output.cc:668 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "%s (due to %s) " -msgstr "%s (arrazoia: %s) " +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"%s paketea berriro instalatu behar da, baina ezin dut artxiborik aurkitu." -#: apt-private/private-output.cc:676 +#: apt-pkg/algorithms.cc:1086 msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -"KONTUZ: Ondorengo funtsezko paketeak kendu egingo dira\n" -"EZ ezazu horrelakorik egin, ez badakizu ondo zertan ari zaren!" +"Errorea: pkgProblemResolver::Resolve. Etenak sortu ditu, beharbada " +"atxikitako paketeek eraginda." -#: apt-private/private-output.cc:707 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu bertsio berritua(k), %lu berriki instalatuta, " +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Ezin dira arazoak konpondu; hautsitako paketeak atxiki dituzu." -#: apt-private/private-output.cc:711 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu berrinstalatuta, " +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: apt-private/private-output.cc:713 -#, c-format -msgid "%lu downgraded, " -msgstr "%lu aurreko bertsiora itzulita, " +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: apt-private/private-output.cc:715 +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" + +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" + +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" + +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu kentzeko, eta %lu bertsio-berritu gabe.\n" +msgid "Unable to parse package file %s (1)" +msgstr "Ezin da %s pakete fitxategia analizatu (1)" -#: apt-private/private-output.cc:719 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu ez erabat instalatuta edo kenduta.\n" +msgid "Unable to parse package file %s (2)" +msgstr "Ezin da %s pakete fitxategia analizatu (2)" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[B/e]" +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "Ezin da %s pakete fitxategia analizatu (1)" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[b/E]" +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "Oharra, %s hautatzen %s(r)en ordez\n" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" msgstr "" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Lerro baliogabea desbideratze fitxategian: %s" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Eguneratzeko komandoak ez du argumenturik hartzen" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Ezin da %s pakete fitxategia analizatu (1)" -#: apt-private/private-update.cc:90 -#, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (URI analisia)" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: apt-pkg/sourcelist.cc:170 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)" -#: apt-private/private-show.cc:156 -#, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/sourcelist.cc:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist)" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/sourcelist.cc:184 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Barne errorea, InstallPackages apurturiko paketeez deitu da!" +#: apt-pkg/sourcelist.cc:190 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Paketeak ezabatu beharra dute baina Ezabatzea ezgaiturik dago." +#: apt-pkg/sourcelist.cc:193 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Barne errorea, ez da ordenatzeaz amaitu" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (URI)" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Hau bitxia... Tamainak ez dira berdina, idatzi apt@packages.debian.org-ra " -"berri emanez (ingelesez)" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Artxiboetako %sB/%sB eskuratu behar dira.\n" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (URI analisia)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Artxiboetako %sB eskuratu behar dira.\n" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Gaizkieratutako %lu lerroa %s iturburu zerrendan (banaketa orokorra)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Ekintza honen ondoren, %sB gehiago erabiliko dira diskoan.\n" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Ekintza honen ondoren, %sB libratuko dira diskoan.\n" +msgid "Opening %s" +msgstr "%s irekitzen" -#: apt-private/private-install.cc:200 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Ez daukazu nahikoa leku libre %s(e)n." +msgid "Malformed line %u in source list %s (type)" +msgstr "Gaizki osatutako %u lerroa %s Iturburu zerrendan (type)" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Arazoak daude, eta -y erabili da --force-yes gabe" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "'%s' mota ez da ezagutzen %u lerroan %s Iturburu zerrendan" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "'Trivial Only' zehaztu da, baina hau ez da eragiketa tribial bat." +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "'%s' mota ez da ezagutzen %u lerroan %s Iturburu zerrendan" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Bai, egin esandakoa!" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "'%2$s'(r)en '%1$s' banaketa ez da aurkitu" -#: apt-private/private-install.cc:222 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Egin nahi duzunak kalte larriak eragin ditzake\n" -"Jarraitzeko, idatzi '%s' esaldia\n" -" ?] " +msgid "Version '%s' for '%s' was not found" +msgstr "'%2$s'(r)en '%1$s' bertsioa ez da aurkitu" + +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "Ezin izan da %s zeregina aurkitu" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Abortatu." +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Ezin izan da %s paketea aurkitu" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Aurrera jarraitu nahi al duzu?" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Ezin izan da %s paketea aurkitu" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Fitxategi batzuk ezin izan dira deskargatu" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" -#: apt-private/private-install.cc:320 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Ezin izan dira artxibo batzuk lortu; beharbada apt-get update exekutatu, edo " -"--fix-missing aukerarekin saiatu?" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing eta euskarri aldaketa ez dira onartzen oraingoz" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Falta diren paketeak ezin dira zuzendu." +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Abortatu instalazioa." +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -msgstr[1] "" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" msgstr "" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Suposatu ez dugun zerbait ezabatuko da, ezin da AutoRemover abiarazi" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" msgstr "" -"Hmm, dirudienez AutoRemover-ek gertatu behar ez zen apurtu du\n" -"Mesedez programa errore txosten bat bete mesedez." -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "Informazio honek arazoa konpontzen lagun dezake:" +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "%s hautapena ez da aurkitu" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Barne Errorea, AutoRemover-ek zerbait apurtu du" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "" +"Ez da blokeorik erabiltzen ari irakurtzeko soilik den %s blokeo " +"fitxategiarentzat" -#: apt-private/private-install.cc:513 -#, fuzzy -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "" -"Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago " -"behar." -msgstr[1] "" -"Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago " -"behar." +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Ezin izan da %s blokeo fitxategia ireki" -#: apt-private/private-install.cc:517 -#, fuzzy, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "" -"Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago " -"behar." -msgstr[1] "" -"Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago " -"behar." +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "" +"Ez da blokeorik erabiltzen ari nfs %s muntatutako blokeo fitxategiarentzat" -#: apt-private/private-install.cc:519 -#, fuzzy -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "'apt-get autoremove' erabili ezabatzeko." -msgstr[1] "'apt-get autoremove' erabili ezabatzeko." +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Ezin izan da %s blokeoa hartu" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Beharbada 'apt-get -f install' exekutatu nahiko duzu hauek zuzentzeko:" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -"Bete gabeko mendekotasunak. Probatu 'apt-get -f install' paketerik gabe (edo " -"zehaztu konponbide bat)." -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -"Pakete batzuk ezin izan dira instalatu. Beharbada ezinezko egoera \n" -"bat eskatu duzu, edo, banaketa ezegonkorra erabiltzen ari bazara,\n" -"beharrezko pakete batzuk ez ziren sortuko oraindik, edo \n" -"Sarrerakoetan (Incoming) egoten jarraituko dute." -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Hautsitako paketeak" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Ondorengo pakete gehigarriak instalatuko dira:" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "%s azpiprozesuak segmentaziuo hutsegitea jaso du." -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Iradokitako paketeak:" +#: apt-pkg/contrib/fileutl.cc:826 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "%s azpiprozesuak segmentaziuo hutsegitea jaso du." -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Gomendatutako paketeak:" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "%s azpiprozesuak errore kode bat itzuli du (%u)" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "%s saltatzen. Instalatuta dago, eta ez dago bertsio-berritzerik.\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "%s azpiprozesua ustekabean amaitu da" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:913 #, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "%s saltatzen. Instalatuta dago, eta ez dago bertsio-berritzerik.\n" +msgid "Problem closing the gzip file %s" +msgstr "Arazoa fitxategia ixtean" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "%s berriro instalatzea ez da posible; ezin da deskargatu.\n" +msgid "Could not open file %s" +msgstr "%s fitxategia ezin izan da ireki" -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s bertsiorik berriena da jada.\n" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Ezin izan da %s(r)en kanalizazioa ireki" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Huts egin du IPC azpiprozesua sortzean" + +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Huts egin du konpresorea exekutatzean " + +#: apt-pkg/contrib/fileutl.cc:1514 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Hautatutako bertsioa: %s (%s) -- %s\n" +msgid "read, still have %llu to read but none left" +msgstr "irakurrita; oraindik %lu irakurtzeke, baina ez da ezer geratzen" -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Hautatutako bertsioa: %s (%s) -- %s\n" +msgid "write, still have %llu to write but couldn't" +msgstr "idatzita; oraindik %lu idazteke, baina ezin da" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/fileutl.cc:1915 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "%s paketea ez dago instalatuta, eta, beraz, ez da kenduko\n" +msgid "Problem closing the file %s" +msgstr "Arazoa fitxategia ixtean" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/fileutl.cc:1927 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "%s paketea ez dago instalatuta, eta, beraz, ez da kenduko\n" +msgid "Problem renaming the file %s to %s" +msgstr "Arazoa fitxategia sinkronizatzean" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1938 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "Arazoa fitxategia desestekatzean" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "KONTUZ: Hurrengo paketeak ezin dira egiaztatu!" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Arazoa fitxategia sinkronizatzean" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Egiaztapen abisua gainidazten.\n" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Errorea!" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Zenbait pakete ezin dira egiaztatu" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Eginda" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Paketeak egiaztapen gabe instalatu?" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-sources.cc:58 +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Huts egin du %s izenaren ordez %s ipintzean" - -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%c%s... %u%%" +msgstr "%c%s... Eginda" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Ezin da fitxategi huts baten mmap egin" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Atzituta " +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Ezin izan da %s(r)en kanalizazioa ireki" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Hartu:" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Ezin izan da %lu byteren mmap egin" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ez ikusi " +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Ezin da %s ireki" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "Ezin da deitu " -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Lortuta: %sB (%s) (%sB/s)\n" +msgid "Couldn't make mmap of %lu bytes" +msgstr "Ezin izan da %lu byteren mmap egin" -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [Lanean]" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Huts fitxategia mozterakoan" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/mmap.cc:341 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -"Medio Aldaketa: Mesedez sar\n" -" '%s'\n" -"izeneko diska '%s' gailuan eta enter sakatu\n" +"MMAP dinamikoa memoriaz kanpo. Mesedez handitu APT::Cache-Start muga. Uneko " +"balioa: %lu. (man 5 apt.conf)" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "No mirror file '%s' found " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "%s fitxategia ezin izan da ireki" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "%s fitxategia ezin izan da ireki" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Ezin da atzitu %s muntatze puntua" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Huts egin du CDROMa atzitzean" + +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "[Mirror: %s]" -msgstr "" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Mota ezezaguneko laburtzapena: '%c'" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Huts egin du azpiprozesuarentzako IPC kanalizazio bat sortzean" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "%s konfigurazio fitxategia irekitzen" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Konexioa behar baino lehenago itxi da" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Sintaxi errorea, %s:%u: Blokearen hasieran ez dago izenik." -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Okerreko ezarpen lehenetsia!" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Sintaxi errorea %s:%u: Gaizki eratutako" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Jarraitzeko, sakatu Sartu." +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Sintaxi errorea, %s:%u: Zabor gehigarria balioaren ondoren" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Deskargaturiko .deb fitxategi guztiak ezabatu nahi al dituzu?" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "Sintaxi errorea, %s:%u: Direktibak goi-mailan bakarrik egin daitezke" -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Errore batzuk gertatu dira deskonprimitzean. Konfiguratu egingo ditut" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Sintaxi errorea, %s:%u: habiaratutako elementu gehiegi" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "instalatutako paketeak. Horrek errore bikoiztuak eragin ditzake" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Sintaxi errorea, %s:%u: hemendik barne hartuta" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "edo falta diren mendekotasunen erroreak. Hori ondo dago; mezu honen" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Sintaxi errorea, %s:%u: onartu gabeko '%s' direktiba" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "" -"aurreko erroreak dira garrantzitsuak. Konpondu eta exekutatu [I]nstall " -"berriro" +#: apt-pkg/contrib/configuration.cc:900 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "Sintaxi errorea, %s:%u: Direktibak goi-mailan bakarrik egin daitezke" -#: dselect/update:30 -msgid "Merging available information" -msgstr "Eskuragarrien datuak biltzen" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Sintaxi errorea, %s:%u: Zabor gehigarria fitxategi amaieran" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode-ri dei egin zaio oraindik estekatutako nodoan" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "Abortatu instalazioa." + +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Ez da ezagutzen komando lerroko '%c' aukera [%s]." + +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Ez da ulertzen komando lerroko %s aukera" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Huts egin du hash-elementua lokalizatzean!" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Komando lerroko %s aukera ez da boolearra." -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Huts egin du desbideratzea lokalizatzean" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "%s aukerak argumentu bat behar du." -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "AddDiversion-n barne errorea" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "" +"%s aukera: konfigurazio elementuaren zehaztapenak =<val> eduki behar du." -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Desbideratze bat gainidazten saiatzen: %s -> %s eta %s/%s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "%s aukerak osoko argumentu bat behar du, eta ez '%s'" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Desbideratzearen gehitze bikoitza: %s -> %s" +msgid "Option '%s' is too long" +msgstr "'%s' aukera luzeegia da" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Konfigurazio fitxategi bikoiztua: %s/%s" +msgid "Sense %s is not understood, try true or false." +msgstr "%s zentzua ez da ulertzen; probatu egiazkoa edo faltsua." -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The path %s is too long" -msgstr "%s bidea luzeegia da" +msgid "Invalid operation %s" +msgstr "Eragiketa baliogabea: %s" -#: apt-inst/extract.cc:132 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unpacking %s more than once" -msgstr "%s behin baino gehiagotan deskonprimitzen" +msgid "Installing %s" +msgstr "%s Instalatzen" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The directory %s is diverted" -msgstr "%s direktorioa desbideratuta dago" +msgid "Configuring %s" +msgstr "%s konfiguratzen" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Paketea desbideratze helburuan %s/%s idazten saiatzen ari da" +msgid "Removing %s" +msgstr "%s kentzen" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Desbideratzearen bidea luzeegia da" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "%s guztiz ezabatu da" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to stat %s" -msgstr "Huts egin du %s(e)tik datuak lortzean" +msgid "Noting disappearance of %s" +msgstr "" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Huts egin du %s izenaren ordez %s ipintzean" +msgid "Running post-installation trigger %s" +msgstr "Inbstalazio-ondorengo %s abiarazlea exekutatzen" -#: apt-inst/extract.cc:249 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "%s direktorioa ez-direktorio batekin ordezten ari da" +msgid "Directory '%s' missing" +msgstr "'%s' direktorioa falta da" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Huts egin du nodoa bere hash-ontzian lokalizatzean" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "%s fitxategia ezin izan da ireki" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Bidea luzeegia da" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "%s prestatzen" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Gainidatzi pakete-konkordantzia %s(r)en bertsiorik gabe" +msgid "Unpacking %s" +msgstr "%s irekitzen" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "%s/%s fitxategiak %s paketekoa gainidazten du" +msgid "Preparing to configure %s" +msgstr "%s konfiguratzeko prestatzen" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Unable to stat %s" -msgstr "Ezin da daturik lortu %s(e)tik" +msgid "Installed %s" +msgstr "%s Instalatuta" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to write file %s" -msgstr "Ezin izan da %s fitxategian idatzi" +msgid "Preparing for removal of %s" +msgstr "%s kentzeko prestatzen" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Failed to close file %s" -msgstr "Ezin izan da %s fitxategia itxi" +msgid "Removed %s" +msgstr "%s kendurik" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Ez da baliozko DEB artxiboa; '%s' kidea falta da" +msgid "Preparing to completely remove %s" +msgstr "%s guztiz ezabatzeko prestatzen" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Barne Errorea, ezin da %s atala kokatu" +msgid "Completely removed %s" +msgstr "%s guztiz ezabatu da" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Kontrol fitxategi ezin analizagarria" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Artxibo sinadura baliogabea" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "%s : ezin da idatzi" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Errorea artxiboko kidearen goiburua irakurtzean" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:96 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Artxiboko kidearen goiburua baliogabea da" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Artxiboko kidearen goiburua baliogabea da" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Artxiboa laburregia da" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Huts egin artxibo goiburuak irakurtzean" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Huts egin du kanalizazioak sortzean" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Huts egin du gzip exekutatzean " +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Hondatutako artxiboa" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar egiaztapenak huts egin, hondatutakofitxategia" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "%u TAR goiburu mota ezezaguna, %s kidea" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Ezin da zerrenda direktorioa blokeatu" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/fi.po b/po/fi.po index 6712128b4..37829d556 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.26\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2008-12-11 14:52+0200\n" "Last-Translator: Tapio Lehtonen <tale@debian.org>\n" "Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n" @@ -18,3149 +18,3150 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "Hakemistotiedoston tyyppi \"%s\" ei ole tuettu" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "Tiedostoa %s ei voi lukea" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Kansioon %s vaihto ei onnistu" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "stat %s ei onnistu." - -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Progress: [%3i%%]" -msgstr "" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Paketin %s versiossa %s on tyydyttämätön riippuvuus:\n" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Pakettien kokonaismäärä : " -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Paketointijärjestelmä \"%s\" ei ole tuettu" +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "Pakettien kokonaismäärä : " -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Sopivaa paketointijärjestelmän tyyppiä ei saa selvitettyä" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Tavallisia paketteja: " -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Kirjoitettiin %i tietuetta.\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Aitoja näennäispaketteja: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Kirjoitettiin %i tietuetta joissa oli %i puuttuvaa tiedostoa.\n" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Yksinkertaisia näennäispaketteja: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Kirjoitettiin %i tietuetta joissa oli %i paritonta tiedostoa\n" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Sekanäennäispaketteja: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"Kirjoitettiin %i tietuetta joissa oli %i puuttuvaa ja %i paritonta " -"tiedostoa\n" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Puuttuu: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Eri versioita yhteensä: " -#: apt-pkg/indexcopy.cc:521 -#, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Kohteen %s tarkistussumma ei täsmää" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Eri kuvauksia yhteensä: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Menetelmän ajuria %s ei löytynyt" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Riippuvuuksia yhteensä: " -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Tarkista onko paketti \"dpkg-dev\" asennettu.\n" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Versio/tdsto suhteita yht: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Menetelmä %s ei käynnistynyt oikein" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Kuvaus/tdsto suhteita yht: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Pistä levy nimeltään: \"%s\" asemaan \"%s\" ja paina Enter." +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Tarjoamiskuvauksia yhteensä: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "" -"Pakettiluettelonn tai tilatiedoston avaaminen tai jäsennys epäonnistui." +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Erilaisia merkkijonoja yhteensä: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Voit haluta suorittaa apt-get update näiden pulmien korjaamiseksi" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Versioriippuvuustila yhteensä: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Lähteiden luetteloa ei pystynyt lukemaan." +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Löysää tilaa yhteensä: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Pakettivarasto on tyhjä" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Käytetty tila yhteensä: " -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Pakettivarasto on turmeltunut" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "Pakettitiedosto %s ei ole ajan tasalla." -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Pakettivaraston versio on yhteensopimaton" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Yhtään pakettia ei löytynyt" -#: apt-pkg/pkgcache.cc:169 +#: cmdline/apt-cache.cc:1254 #, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "Pakettivarasto on turmeltunut" - -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Tämä APT ei tue versionhallintajärjestelmää \"%s\"" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Pakettivarasto on tehty muulle arkkitehtuurille" +msgid "You must give at least one search pattern" +msgstr "On annettava täsmälleen yksi lauseke" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Riippuvuudet" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Esiriippuvuudet" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "Pakettia %s ei löydy" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Ehdotukset" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Pakettitiedostot:" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Suosittelut" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Varasto ei ole ajan tasalla, pakettitiedostoa ei löydy kansiosta" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Ristiriidat" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Paketit joissa tunniste:" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Korvaavuudet" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(ei löydy)" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Täydet korvaavuudet" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Asennettu: " -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Rikkoo" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Ehdokas: " -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(ei mitään)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "tärkeä" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Paketin tunnistenumero: " -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "välttämätön" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Versiotaulukko:" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "perus" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s laitealustalle %s käännöksen päiväys %s %s\n" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "valinnainen" - -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "ylimääräinen" - -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Hakemistotiedoston tyyppi \"%s\" ei ole tuettu" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Käyttö : apt-cache [valitsimet] komento\n" +" apt-cache [valitsimet] add tdsto1 [tdsto2 ...]\n" +" apt-cache [valitsimet] showpkg pkt1 [pkt2 ...]\n" +" apt-cache [valitsimet] showsrc pkt1 [pkt2 ...]\n" +"\n" +"apt-cache on alemman tason työkalu APT:n konekielisten\n" +"välimuistitiedostojen käsittelyyn ja tutkimiseen\n" +"Komennot:\n" +" add - Lisää paketti lähdevälimuistiin\n" +" gencaches - Tee sekä pakettivarasto että lähdevälimuisti\n" +" showpkg - Näytä joitain perustietoja yhdestä paketista\n" +" showsrc - Näytä lähdetietueet\n" +" stats - Näytä joitain perustilastoja\n" +" dump - Näytä koko tiedosto suppeassa muodossa\n" +" dumpavail - Tulosta saatavissa olevien luettelo oletustulosteeseen\n" +" unmet - Näytä tyydyttymättömät riippuvuudet\n" +" search - Etsi pakettiluettelosta säännöllisellä lausekkeella\n" +" show - Näytä paketin tietue luettavassa muodossa\n" +" depends - Näytä paketin riippuvuustiedot käsittelemättömässä muodossa\n" +" rdepends - Näytä paketin käänteiset riippuvuudet\n" +" pkgnames - Luettele järjestelmän kaikkien pakettien nimet\n" +" dotty - Tee paketeista graafit GraphViz-muodossa\n" +" xvcg - Tee paketeista graafit xvcg-muodossa\n" +" policy - Näytä mistä asennuspaketteja haetaan\n" +"\n" +"Valitsimet:\n" +" -h Tämä ohje\n" +" -p=? Pakettivarasto\n" +" -s=? Lähdevälimuisti\n" +" -q Poista edistymisen ilmaisin\n" +" -i Näytä vain tärkeät riippuvuudet unmet-komennossa\n" +" -c=? Lue tämä asetustiedosto\n" +" -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n" +"Lisätietoja apt-cache(8) ja apt.conf(5) käsikirjasivuilla.\n" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Käännösvirhe lausekkeessa - %s" +#: cmdline/apt-cdrom.cc:76 +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Kirjoita levylle nimi, kuten \"Debian 2.1r1 Levy 1\"" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Pakettivaraston versionhallintajärjestelmä ei ole yhteensopiva" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Aseta levy asemaan ja paina Enter" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Tapahtui virhe käsiteltäessä %s (FindPkg)" +msgid "Failed to mount '%s' to '%s'" +msgstr "Nimen muuttaminen %s -> %s ei onnistunut" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"Jummijammi, annoit enemmän pakettien nimiä kuin tämä APT osaa käsitellä." -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Jummijammi, annoit enemmän versioita kuin tämä APT osaa käsitellä." +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Toista tämä lopuille rompuille kasassasi." -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Jummijammi, tämä APT ei osaa käsitellä noin montaa kuvausta." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Parametrit eivät ole pareittain" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "Jummijammi, annoit enemmän riippuvuuksia kuin tämä APT osaa käsitellä." +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"Käyttö: apt-config [valitsimet] komento\n" +"\n" +"apt-config on yksinkertainen työkalu APT:n asetustiedoston lukemiseen\n" +"\n" +"Komennot:\n" +" shell - Muista ohjelmista käytettäväksi\n" +" dump - Näytä asetukset\n" +"\n" +"Valitsimet:\n" +" -h Tämä ohje\n" +" -c=? Lue tämä asetustiedosto\n" +" -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "Pakettia %s %s ei löytynyt käsiteltäessä tiedostojen riippuvuuksia." +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Pakettia %s ei löytynyt" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Pakettia %s ei löytynyt" + +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Pakettia %s ei löytynyt" + +#: cmdline/apt-get.cc:367 +#, fuzzy, c-format +msgid "Picking '%s' as source package instead of '%s'\n" msgstr "stat ei toiminut lähdepakettiluettelolle %s" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Luetaan pakettiluetteloita" +#: cmdline/apt-get.cc:423 +#, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Kootaan tiedostojen tarjoamistietoja" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Pakettia %s ei löytynyt" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Unable to write to %s" -msgstr "Tiedostoon %s kirjoittaminen ei onnistu" +msgid "%s set to manually installed.\n" +msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Syöttö/Tulostus -virhe tallennettaessa pakettivarastoa" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Sisäinen virhe, resolver rikkoi jotain" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Noutokansiota ei saatu lukittua" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "On annettava ainakin yksi paketti jonka lähdekoodi noudetaan" + +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "Paketin %s lähdekoodipakettia ei löytynyt" + +#: cmdline/apt-get.cc:786 +#, c-format +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" +#: cmdline/apt-get.cc:791 +#, c-format +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:843 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "nimen vaihto ei onnistunut, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Tarkistussumma ei täsmää" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Koko ei täsmää" - -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Virheellinen toiminto %s" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Ohitetaan jo noudettu tiedosto \"%s\"\n" -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" - -#: apt-pkg/acquire-item.cc:1589 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Pakettitiedostoa %s (1) ei voi jäsentää" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Julkisia avaimia ei ole saatavilla, avainten ID:t ovat:\n" +msgid "Couldn't determine free space in %s" +msgstr "Kansion %s vapaan tilan määrä ei selvinnyt" -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:882 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +msgid "You don't have enough free space in %s" +msgstr "Kansiossa %s ei ole riittävästi vapaata tilaa" -#: apt-pkg/acquire-item.cc:1691 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "On noudettava %st/%st lähdekoodiarkistoja.\n" -#: apt-pkg/acquire-item.cc:1721 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +msgid "Need to get %sB of source archives.\n" +msgstr "On noudettava %st lähdekoodiarkistoja.\n" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:902 #, c-format -msgid "GPG error: %s: %s" -msgstr "" +msgid "Fetch source %s\n" +msgstr "Nouda lähdekoodi %s\n" -#: apt-pkg/acquire-item.cc:1859 -#, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"En löytänyt pakettia %s vastaavaa tiedostoa. Voit ehkä joutua korjaamaan " -"tämän paketin itse (puuttuvan arkkitehtuurin vuoksi)" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Joidenkin arkistojen noutaminen ei onnistunut." -#: apt-pkg/acquire-item.cc:1925 +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Nouto on valmis ja määrätty vain nouto" + +#: cmdline/apt-get.cc:950 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Ohitetaan purku jo puretun lähdekoodin %s kohdalla\n" -#: apt-pkg/acquire-item.cc:1983 +#: cmdline/apt-get.cc:963 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Pakettihakemistotiedostot ovat turmeltuneet. Paketille %s ei ole Filename-" -"kenttää." +msgid "Unpack command '%s' failed.\n" +msgstr "Purkukomento \"%s\" ei onnistunut.\n" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Toimittajan lohkosta %s puuttuu sormenjälki" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Tarkista onko paketti \"dpkg-dev\" asennettu.\n" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "Luettelokansio %spartial puuttuu." +#: cmdline/apt-get.cc:992 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Paketointikomento \"%s\" ei onnistunut.\n" -#: apt-pkg/acquire.cc:91 -#, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "Arkistokansio %spartial puuttuu." +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Lapsiprosessi kaatui" -#: apt-pkg/acquire.cc:99 -#, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "Luettelokansiota ei voitu lukita" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "" +"On annettava ainakin yksi paketti jonka paketointiriippuvuudet tarkistetaan" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:1055 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Noudetaan tiedosto %li / %li (jäljellä %s)" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Noudetaan tiedosto %li / %li" +msgid "Unable to get build-dependency information for %s" +msgstr "Paketille %s ei ole saatavilla riippuvuustietoja" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Tiedoston %s nouto ei onnistunut %s\n" +msgid "%s has no build depends.\n" +msgstr "Paketille %s ei ole määritetty paketointiriippuvuuksia.\n" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy +#: cmdline/apt-get.cc:1272 +#, fuzzy, c-format msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" msgstr "" -"Joidenkin hakemistotiedostojen nouto ei onnistunut, ne on ohitettu tai " -"käytetty vanhoja. " - -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Tiedostossa sources.list on oltava rivejä joissa \"lähde\"-URI" +"riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" +"riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy" -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Asetustiedostossa on virheellinen tietue, Package-otsikko puuttuu" - -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Did not understand pin type %s" -msgstr "Tunnistetyyppi %s on tuntematon" - -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Tärkeysjärjestystä ei määritetty tunnisteelle (tai se on nolla)" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"Riippuvutta %s paketille %s ei voi tyydyttää: Asennettu paketti %s on liian " +"uusi" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: cmdline/apt-get.cc:1352 +#, fuzzy, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" +"%s riippuvuutta paketille %s ei voi tyydyttää koska mikään paketin %s versio " +"ei vastaa versioriippuvuuksia" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:1358 #, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Tiedostoa %s ei voitu avata" - -#: apt-pkg/packagemanager.cc:583 -#, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -"Tämän asennusajo vaatii tilapäisesti poistettavaksi välttämättömän paketin " -"%s Conflicts/Pre-Depends -kehämäärittelyn takia. Tämä on usein pahasta, " -"mutta jos varmasti haluat tehdä niin, käytä APT::Force-LoopBreak -valitsinta." +"riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Line %u too long in source list %s." -msgstr "Rivi %u on liian pitkä lähdeluettelossa %s." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Irrotetaan romppu...\n" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Riippuvuutta %s paketille %s ei voi tyydyttää: %s" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Käytetään rompun liitoskohtaa %s\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Odotetaan levyä...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Liitetään romppu...\n" - -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Tunnistetaan... " +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Paketointiriippuvuuksia paketille %s ei voi tyydyttää." -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Tallennettu nimio: %s \n" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Paketointiriippuvuuksien käsittely ei onnistunut" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Etsitään levyltä hakemistotiedostoja...\n" +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Avataan yhteys %s (%s)" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Hakemistoja löytyi: Asennuspakettien %zu, lähdekoodipakettien %zu, " -"käännösten %zu ja allekirjoituksia löytyi %zu\n" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Tuetut moduulit:" -#: apt-pkg/cdrom.cc:744 +#: cmdline/apt-get.cc:1633 +#, fuzzy msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" - -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Löytyi nimiö: \"%s\"\n" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Tuo ei kelpaa nimeksi, yritä uudelleen.\n" - -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"Tämä levy on: \n" -"\"%s\"\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopioidaan pakettiluetteloita..." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Kirjoitetaan uusi lähdeluettelo\n" +"Käyttö: apt-get [valitsimet] komento\n" +" apt-get [valitsimet] install|remove pkt1 [pkt2 ...]\n" +" apt-get [valitsimet] source pkt1 [pkt2 ...]\n" +"\n" +"apt-get on yksinkertainen komentorivityökalu pakettien noutamiseen\n" +"ja asentamiseen. Useimmiten käytetyt komennot ovat update ja \n" +"install.\n" +"Komennot:\n" +" update - Nouda uusi pakettiluettelo\n" +" upgrade - Tee päivitys\n" +" install - Asenna uusia paketteja (esim. libc6 eikä libc6.deb)\n" +" remove - Poista paketteja\n" +" autoremove - Poista kaikki käyttämättömät paketit\n" +" purge - Poista paketit asennustiedostoineen\n" +" source - Nouda lähdekoodiarkistoja\n" +" build-dep - Määritä paketointiriippuvuudet lähdekoodipaketeille\n" +" dist-upgrade - Koko jakelun päivitys, katso apt-get(8)\n" +" dselect-upgrade - Noudata dselect:n valintoja\n" +" clean - Poista noudetut pakettitiedostot\n" +" autoclean - Poista vanhat noudetut tiedostot\n" +" check - Tarkasta ettei ole tyydyttämättömiä riippuvuuksia\n" +"\n" +"Valitsimet:\n" +" -h Tämä ohje\n" +" -q Lokiin sopiva tulostus - edistymisen ilmaisin jätetään pois\n" +" -qq Ei lainkaan tulostusta paitsi virheistä\n" +" -d Vain nouto - paketteja EI asenneta tai pureta\n" +" -s Älä tee mitään. Oikean toiminnan simulaatio\n" +" -y Vastataan Kyllä kaikkiin kysymyksiin eikä kehoitetta näytetä\n" +" -f Yritä jatkaa jos eheystarkastus löysi virheen\n" +" -m Yritä jatkaa jos arkistojen sijainti ei selviä\n" +" -u Näytä luettelo myös päivitetyistä paketeista\n" +" -b Käännä lähdekoodipaketti noudon jälkeen\n" +" -V Näytä pitkät versionumerot\n" +" -c=? Lue tämä asetustiedosto\n" +" -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n" +"Katso apt-get(8), sources.list(5) ja apt.conf(5) käsikirjasivuilta\n" +"lisätietoja ja lisää valitsimia.\n" +" This APT has Super Cow Powers.\n" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Tämän levyn lähdekoodipakettien luettelon tietueita ovat:\n" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "On annettava ainakin yksi paketti jonka lähdekoodi noudetaan" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "Paketti %s olisi asennettava uudelleen, mutta sen arkistoa ei löydy." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-helper.cc:66 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Virhe, pkgProblemResolver::Resolve tuotti katkoja, syynä voi olla pysytetyt " -"paketit." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Pulmia ei voi korjata, rikkinäisiä paketteja on pysytetty." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Muodostetaan riippuvuussuhteiden puu" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Mahdolliset versiot" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Luodaan riippuvuudet" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Luetaan tilatiedot" - -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Tilatiedoston %s avaaminen ei onnistunut" - -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Tilapäisen tilatiedoston %s kirjoittaminen ei onnistunut" - -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Pakettitiedostoa %s (1) ei voi jäsentää" - -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Pakettitiedostoa %s (2) ei voi jäsentää" - -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Julkaisua \"%s\" paketille \"%s\" ei löytynyt" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Versiota \"%s\" paketille \"%s\" ei löytynyt" - -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "Pakettia %s ei löydy" - -#: apt-pkg/cacheset.cc:603 +#: cmdline/apt-mark.cc:68 #, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "Tehtävää %s ei löytynyt" +msgid "%s can not be marked as it is not installed.\n" +msgstr "mutta ei ole asennettu" -#: apt-pkg/cacheset.cc:609 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Pakettia %s ei löytynyt" +msgid "%s was already set to manually installed.\n" +msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" -#: apt-pkg/cacheset.cc:615 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Pakettia %s ei löytynyt" - -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" - -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" +msgid "%s was already set to automatically installed.\n" +msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s on jo uusin versio.\n" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s on jo uusin versio.\n" -#: apt-pkg/cacheset.cc:663 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" +msgid "Waited for %s but it wasn't there" +msgstr "Odotettiin %s, mutta sitä ei ollut" -#: apt-pkg/indexrecords.cc:78 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "Pakettitiedostoa %s (1) ei voi jäsentää" +msgid "%s set on hold.\n" +msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" -#: apt-pkg/indexrecords.cc:86 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "Huomautus, valitaan %s eikä %s\n" +msgid "Canceled hold on %s.\n" +msgstr "Tiedoston %s avaaminen ei onnistunut" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Virheellinen rivi korvautustiedostossa: %s" - -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Pakettitiedostoa %s (1) ei voi jäsentää" - -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (URI-jäsennys)" - -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist-jäsennys)" +#: cmdline/apt-mark.cc:392 +msgid "" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." +msgstr "" -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist)" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/sourcelist.cc:184 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist-jäsennys)" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Rompputietokantaa %s ei voi lukea" -#: apt-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist-jäsennys)" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" +msgstr "" +"Käytä komentoa apt-cdrom jotta APT tunnistaa tämän rompun, apt-get update ei " +"osaa lisätä uusia romppuja" -#: apt-pkg/sourcelist.cc:193 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist-jäsennys)" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Väärä romppu" -#: apt-pkg/sourcelist.cc:206 +#: methods/cdrom.cc:249 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (URI)" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Rompun %s irrottaminen ei onnistu, se on ehkä käytössä." -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist)" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Levyä ei löydy" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (URI-jäsennys)" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Tiedostoa ei löydy" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (Absoluuttinen dist)" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Komento stat ei toiminut" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist-jäsennys)" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Tiedoston muutospäivämäärää ei saatu vaihdettua" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Avataan %s" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI on kelvoton, paikallinen URI ei saa alkaa //" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Rivi %u on väärän muotoinen lähdeluettelossa %s (tyyppi)" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Kirjaudutaan sisään" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Tyyppi \"%s\" on tuntematon rivillä %u lähdeluettelossa %s" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Vastapään nimeä ei saa selville" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Tyyppi \"%s\" on tuntematon rivillä %u lähdeluettelossa %s" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Paikallista nimeä ei saa selville" -#: apt-pkg/deb/dpkgpm.cc:95 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Installing %s" -msgstr "Asennetaan %s" +msgid "The server refused the connection and said: %s" +msgstr "Palvelin ei huolinut yhteyttä ilmoituksella: %s" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#: methods/ftp.cc:225 #, c-format -msgid "Configuring %s" -msgstr "Tehdään asetukset: %s" +msgid "USER failed, server said: %s" +msgstr "USER ei onnistunut, palvelimen ilmoitus: %s" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#: methods/ftp.cc:232 #, c-format -msgid "Removing %s" -msgstr "Poistetaan %s" - -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "%s poistettiin kokonaan" +msgid "PASS failed, server said: %s" +msgstr "PASS ei onnistunut, palvelimen ilmoitus: %s" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" +"Määritettiin välipalvelin mutta ei komentotiedostoa kirjautumiseen, Acquire::" +"ftp::ProxyLogin on tyhjä." -#: apt-pkg/deb/dpkgpm.cc:100 +#: methods/ftp.cc:280 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Suoritetaan jälkiasennusliipaisin %s" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Komentotiedoston rivi \"%s\" ei toiminut, palvelin ilmoitti: %s" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#: methods/ftp.cc:306 #, c-format -msgid "Directory '%s' missing" -msgstr "Kansio \"%s\" puuttuu." +msgid "TYPE failed, server said: %s" +msgstr "TYPE ei toiminut, palvelin ilmoitti: %s" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "Tiedostoa %s ei voitu avata" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Yhteys aikakatkaistiin" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "Valmistellaan %s" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Palvelin sulki yhteyden" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Puretaan %s" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Lukuvirhe" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Valmistaudutaan tekemään asetukset: %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Vastaus aiheutti puskurin ylivuodon." -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "%s asennettu" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Yhteyskäytäntö on turmeltunut" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "Valmistaudutaan poistamaan %s" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Virhe kirjoitettaessa" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "%s poistettu" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Pistoketta ei voitu luoda" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Valmistaudutaan poistamaan %s kokonaan" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Pistoketta ei voitu kytkeä, yhteys aikakatkaistiin" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "%s poistettiin kokonaan" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Tiedostoon %s kirjoittaminen ei onnistu" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Ei onnistunut" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Passiivista pistoketta ei voitu kytkeä." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo ei saanut kuuntelupistoketta" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 -#, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Odotettiin %s, mutta sitä ei ollut" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Pistoketta ei voitu nimetä" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Pistoketta ei voitu kuunnella" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Pistokkeen nimeä ei saatu selville" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Komennon PORT lähetys ei onnistu" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "Tuntematon osoiteperhe %u (AF_*)" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "EPRT ei onnistunut, palvelin ilmoitti: %s" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Pistokkeen kytkeminen aikakatkaistiin" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Yhteyttä ei voitu hyväksyä" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Pulmia tiedoston hajautuksessa" -#: apt-pkg/deb/debsystem.cc:91 +#: methods/ftp.cc:890 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" +msgid "Unable to fetch file, server said '%s'" +msgstr "Tiedostoa ei saatu noudettua, palvelin ilmoitti \"%s\"" -#: apt-pkg/deb/debsystem.cc:94 -#, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Luettelokansiota ei voitu lukita" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Pistoke aikakatkaistiin" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: methods/ftp.cc:935 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" +msgid "Data transfer failed, server said '%s'" +msgstr "Tiedonsiirto ei onnistunut, palvelin ilmoitti \"%s\"" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Kysely" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Käynnistys ei onnistu" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: methods/connect.cc:76 #, c-format -msgid "%lih %limin %lis" -msgstr "" +msgid "Connecting to %s (%s)" +msgstr "Avataan yhteys %s (%s)" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: methods/connect.cc:87 #, c-format -msgid "%limin %lis" -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: methods/connect.cc:94 #, c-format -msgid "%lis" -msgstr "" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Pistokeen luonti ei onnistu %s (f=%u t=%u p=%u)" -#: apt-pkg/contrib/strutl.cc:1243 +#: methods/connect.cc:100 #, c-format -msgid "Selection %s not found" -msgstr "Valintaa %s ei löydy" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Yhteyden %s avaus ei onnistu: %s (%s)." -#: apt-pkg/contrib/fileutl.cc:190 +#: methods/connect.cc:108 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Lukkoa ei käytetä kirjoitussuojatulle tiedostolle %s" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Yhteyttä %s ei voitu muodostaa: %s (%s), yhteys aikakatkaistiin" -#: apt-pkg/contrib/fileutl.cc:195 +#: methods/connect.cc:126 #, c-format -msgid "Could not open lock file %s" -msgstr "Lukkotiedostoa %s ei voitu avata" +msgid "Could not connect to %s:%s (%s)." +msgstr "Yhteyttä %s ei voitu muodostaa: %s (%s)" -#: apt-pkg/contrib/fileutl.cc:218 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Lukitusta ei käytetä NFS-liitetylle tiedostolle %s" +msgid "Connecting to %s" +msgstr "Avataan yhteys %s" -#: apt-pkg/contrib/fileutl.cc:223 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Could not get lock %s" -msgstr "Lukkoa %s ei saada" +msgid "Could not resolve '%s'" +msgstr "Nimeä \"%s\" ei voitu selvittää" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: methods/connect.cc:205 #, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +msgid "Temporary failure resolving '%s'" +msgstr "Tilapäinen häiriö selvitettäessä \"%s\"" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Jotain kenkkua tapahtui selvitettäessä \"%s: %s\" (%i)" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#: methods/connect.cc:211 +#, fuzzy, c-format +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Jotain kenkkua tapahtui selvitettäessä \"%s: %s\" (%i)" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: methods/connect.cc:258 +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Ei ole mahdollista muodostaa yhteyttä %s %s:" + +#: methods/gpgv.cc:168 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" +"Sisäinen virhe: Allekirjoitus kelpaa, mutta avaimen sormenjälki tuntematon?!" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Aliprosessi %s aiheutti suojausvirheen." +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "LÖytyi ainakin yksi kelvoton allekirjoitus." -#: apt-pkg/contrib/fileutl.cc:826 -#, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "Aliprosessi %s aiheutti suojausvirheen." +#: methods/gpgv.cc:174 +#, fuzzy +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "" +"Ei käynnistynyt \"%s\" allekirjoitusta tarkistamaan (onko gpgv asennettu?)" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Aliprosessi %s palautti virhekoodin (%u)" +msgid "" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Aliprosessi %s lopetti odottamatta" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Tapahtui tuntematon virhe suoritettaessa gpgv" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Virhe kirjoitettaessa" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Seuraavat allekirjoitukset eivät olleet kelvollisia:\n" -#: apt-pkg/contrib/fileutl.cc:913 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Pulmia tiedoston sulkemisessa" - -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Tiedostoa %s ei voitu avata" - -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "Putkea %s ei voitu avata" +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "" +"Seuraavia allekirjoituksia ei voinut varmentaa koska julkista avainta ei ole " +"saatavilla:\n" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Prosessien välistä kommunikaatiota aliprosessiin ei saatu luotua" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Pakkaajan käynnistäminen ei onnistunut" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Tapahtui virhe kirjoitettaessa tiedostoon" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Lukuvirhe" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Tapahtui virhe luettaessa palvelimelta. Etäpää sulki yhteyden" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "read, vielä %lu lukematta mutta tiedosto loppui" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Tapahtui virhe luettaessa palvelimelta" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "write, vielä %lu kirjoittamatta mutta epäonnistui" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Tapahtui virhe kirjoitettaessa tiedostoon" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Pulmia tiedoston sulkemisessa" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Select ei toiminut" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Pulmia tehtäessä tiedostolle sync" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Yhteys aikakatkaistiin" -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "Pulmia tehtäessä tiedostolle unlink" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Tapahtui virhe kirjoitettaessa tulostustiedostoon" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Pulmia tehtäessä tiedostolle sync" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Odotetaan otsikoita" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Virhe!" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Virheellinen otsikkorivi" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Valmis" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "HTTP-palvelin lähetti virheellisen vastausotsikon" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "HTTP-palvelin lähetti virheellisen Content-Length-otsikon" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Valmis" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "HTTP-palvelin lähetti virheellisen Content-Range-otsikon" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Tyhjälle tiedostolle ei voi tehdä mmap:ia" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "HTTP-palvelimen arvoaluetuki on rikki" -#: apt-pkg/contrib/mmap.cc:111 -#, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Putkea %s ei voitu avata" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Tuntematon päiväysmuoto" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Ei voitu tehdä %lu tavun mmap:ia" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Virheellinen otsikkotieto" -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "Tiedoston %s avaaminen ei onnistunut" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Yhteys ei toiminut" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -#, fuzzy -msgid "Unable to synchronize mmap" -msgstr "Käynnistys ei onnistu" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Sisäinen virhe" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Ei voitu tehdä %lu tavun mmap:ia" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Tiedoston typistäminen ei onnistunut" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Sisäinen virhe, InstallPackages kutsuttiin rikkinäisille paketeille!" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" -msgstr "" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Paketteja pitäisi poistaa mutta Remove ei ole käytössä." -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Tapahtui sisäinen virhe, järjestäminen keskeytyi" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" +"No jo on... Koot eivät täsmää, sähköpostita email apt@packages.debian.org" -#: apt-pkg/contrib/cdromutl.cc:65 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "Komento stat ei toiminut liitoskohdalle %s" - -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Komento stat ei toiminut rompulle" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Noudettavaa arkistoa %st/%st.\n" -#: apt-pkg/contrib/configuration.cc:519 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Tuntematon tyypin lyhenne: \"%c\"" +msgid "Need to get %sB of archives.\n" +msgstr "Noudettavaa arkistoa %st.\n" -#: apt-pkg/contrib/configuration.cc:633 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "Opening configuration file %s" -msgstr "Avataan asetustiedosto %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Toiminnon jälkeen käytetään %s t lisää levytilaa.\n" -#: apt-pkg/contrib/configuration.cc:801 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Syntaksivirhe %s: %u: Lohko alkaa ilman nimeä." +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Toiminnon jälkeen vapautuu %s t levytilaa.\n" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-private/private-install.cc:200 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Syntaksivirhe %s: %u: väärän muotoinen nimikenttä" +msgid "You don't have enough free space in %s." +msgstr "Kansiossa %s ei ole riittävästi vapaata tilaa." -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Syntaksivirhe %s: %u: Arvon jälkeen ylimääräistä roskaa" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Oli pulmia ja -y käytettiin ilman valitsinta --force-yes" -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "Syntaksivirhe %s: %u: Direktiivejä voi olla vain ylimmällä tasolla" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "" +"On määritetty Trivial Only mutta tämä ei ole itsestäänselvä toimenpide." -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Syntaksivirhe %s: %u: Liian monta sisäkkäistä includea" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Kyllä, tee kuten käsketään!" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-private/private-install.cc:222 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Syntaksivirhe %s: %u: Sisällytetty tästä" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Olet aikeissa tehdä mahdollisesti vahingollisen toimenpiteen.\n" +"Jatka kirjoittamalla \"%s\"\n" +" ?] " -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Syntaksivirhe %s: %u: Tätä direktiiviä ei tueta \"%s\"" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Keskeytä." -#: apt-pkg/contrib/configuration.cc:900 -#, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "Syntaksivirhe %s: %u: Direktiivejä voi olla vain ylimmällä tasolla" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Haluatko jatkaa?" -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Syntaksivirhe %s: %u: Ylimääräistä roskaa tiedoston lopussa" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Joidenkin tiedostojen nouto ei onnistunut" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "Asennus keskeytetään." +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"Joidenkin arkistojen nouto ei onnistunut, ehkä \"apt-get update\" auttaa tai " +"kokeile --fix-missing?" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Komentorivin valitsin \"%c\" [%s] on tuntematon." +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing ja taltion vaihto ei ole nyt tuettu" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "Komentorivin valitsin %s on tuntematon" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Puuttuvia paketteja ei voi korjata." -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "Komentorivin valitsin %s ei ole totuusarvoinen" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Asennus keskeytetään." -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "Valitsin %s tarvitsee parametrin" +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Valitsin %s: Asetusarvon määrityksessä on oltava =<arvo>." +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Valitsin %s tarvitsee kokonaislukuparametrin, ei \"%s\"" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "" +"On tarkoitus olla poistamatta mitään, joten AutoRemover:ia ei voi käynnistää" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Valitsin \"%s\" on liian pitkä" +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" +"Hmm, nähtävästi AutoRemover tuhosi jotain, mitä ei pitäisi tapahtua.\n" +"Tekisitkö vikailmoituksen apt:sta." -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Arvo %s on tuntematon, yritä tosi tai epätosi." +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Seuraavista tiedoista voi olla hyötyä selvitettäessä tilannetta:" -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "Virheellinen toiminto %s" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Sisäinen virhe, AutoRemover rikkoi jotain" -#: cmdline/apt-cache.cc:149 -#, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Paketin %s versiossa %s on tyydyttämätön riippuvuus:\n" +#: apt-private/private-install.cc:513 +#, fuzzy +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "" +"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " +"vaadittuja:" +msgstr[1] "" +"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " +"vaadittuja:" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Pakettien kokonaismäärä : " +#: apt-private/private-install.cc:517 +#, fuzzy, c-format +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "" +"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " +"vaadittuja:" +msgstr[1] "" +"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " +"vaadittuja:" -#: cmdline/apt-cache.cc:279 +#: apt-private/private-install.cc:519 #, fuzzy -msgid "Total package structures: " -msgstr "Pakettien kokonaismäärä : " - -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Tavallisia paketteja: " +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Poista ne komennolla \"apt-get autoremove\"." +msgstr[1] "Poista ne komennolla \"apt-get autoremove\"." -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Aitoja näennäispaketteja: " +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Saatat haluta suorittaa \"apt-get -f install\" korjaamaan nämä:" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Yksinkertaisia näennäispaketteja: " +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"Kaikkia riippuvuuksia ei ole tyydytetty. Kokeile \"apt-get -f install\" " +"ilmanpaketteja (tai ratkaise itse)." -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Sekanäennäispaketteja: " +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"Joitakin paketteja ei voitu asentaa. On ehkä vaadittu mahdottomia tai,\n" +"jos käytetään epävakaata jakelua, joitain vaadittuja paketteja ei ole\n" +"vielä luotu tai siirretty Incoming-kansiosta." -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Puuttuu: " +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Rikkinäiset paketit" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Eri versioita yhteensä: " +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Seuraavat ylimääräiset paketit on merkitty asennettaviksi:" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Eri kuvauksia yhteensä: " +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Ehdotetut paketit:" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Riippuvuuksia yhteensä: " +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Suositellut paketit:" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Versio/tdsto suhteita yht: " +#: apt-private/private-install.cc:825 +#, c-format +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Ohitetaan %s, se on jo asennettu eikä ole komennettu päivitystä.\n" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Kuvaus/tdsto suhteita yht: " +#: apt-private/private-install.cc:829 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "Ohitetaan %s, se on jo asennettu eikä ole komennettu päivitystä.\n" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Tarjoamiskuvauksia yhteensä: " +#: apt-private/private-install.cc:841 +#, c-format +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Paketin %s uudelleenasennus ei ole mahdollista, sitä ei voi noutaa.\n" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Erilaisia merkkijonoja yhteensä: " +#: apt-private/private-install.cc:846 +#, c-format +msgid "%s is already the newest version.\n" +msgstr "%s on jo uusin versio.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Versioriippuvuustila yhteensä: " +#: apt-private/private-install.cc:894 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Valittiin versio %s (%s) paketille %s\n" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Löysää tilaa yhteensä: " +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Valittiin versio %s (%s) paketille %s\n" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Käytetty tila yhteensä: " - -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Pakettitiedosto %s ei ole ajan tasalla." - -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Yhtään pakettia ei löytynyt" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "Pakettia %s ei ole asennettu, niinpä sitä ei poisteta\n" -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "On annettava täsmälleen yksi lauseke" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Pakettia %s ei ole asennettu, niinpä sitä ei poisteta\n" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Pakettitiedostot:" +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Varasto ei ole ajan tasalla, pakettitiedostoa ei löydy kansiosta" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Korjataan riippuvuuksia..." -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Paketit joissa tunniste:" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " ei onnistunut." -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(ei löydy)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Riippuvuuksien korjaus ei onnistu" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Asennettu: " +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Päivitysjoukon minimointi ei onnistu" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Ehdokas: " +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Valmis" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ei mitään)" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Halunnet suorittaa \"apt-get -f install\" korjaamaan nämä." -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Paketin tunnistenumero: " +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Tyydyttämättömiä riippuvuuksia. Koita käyttää -f." -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Versiotaulukko:" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s laitealustalle %s käännöksen päiväys %s %s\n" +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Asennettu]" -#: cmdline/apt-cache.cc:1749 +#: apt-private/private-output.cc:238 #, fuzzy -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgid "[installed,local]" +msgstr " [Asennettu]" + +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"Käyttö : apt-cache [valitsimet] komento\n" -" apt-cache [valitsimet] add tdsto1 [tdsto2 ...]\n" -" apt-cache [valitsimet] showpkg pkt1 [pkt2 ...]\n" -" apt-cache [valitsimet] showsrc pkt1 [pkt2 ...]\n" -"\n" -"apt-cache on alemman tason työkalu APT:n konekielisten\n" -"välimuistitiedostojen käsittelyyn ja tutkimiseen\n" -"Komennot:\n" -" add - Lisää paketti lähdevälimuistiin\n" -" gencaches - Tee sekä pakettivarasto että lähdevälimuisti\n" -" showpkg - Näytä joitain perustietoja yhdestä paketista\n" -" showsrc - Näytä lähdetietueet\n" -" stats - Näytä joitain perustilastoja\n" -" dump - Näytä koko tiedosto suppeassa muodossa\n" -" dumpavail - Tulosta saatavissa olevien luettelo oletustulosteeseen\n" -" unmet - Näytä tyydyttymättömät riippuvuudet\n" -" search - Etsi pakettiluettelosta säännöllisellä lausekkeella\n" -" show - Näytä paketin tietue luettavassa muodossa\n" -" depends - Näytä paketin riippuvuustiedot käsittelemättömässä muodossa\n" -" rdepends - Näytä paketin käänteiset riippuvuudet\n" -" pkgnames - Luettele järjestelmän kaikkien pakettien nimet\n" -" dotty - Tee paketeista graafit GraphViz-muodossa\n" -" xvcg - Tee paketeista graafit xvcg-muodossa\n" -" policy - Näytä mistä asennuspaketteja haetaan\n" -"\n" -"Valitsimet:\n" -" -h Tämä ohje\n" -" -p=? Pakettivarasto\n" -" -s=? Lähdevälimuisti\n" -" -q Poista edistymisen ilmaisin\n" -" -i Näytä vain tärkeät riippuvuudet unmet-komennossa\n" -" -c=? Lue tämä asetustiedosto\n" -" -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n" -"Lisätietoja apt-cache(8) ja apt.conf(5) käsikirjasivuilla.\n" -#: cmdline/apt-cdrom.cc:76 +#: apt-private/private-output.cc:243 #, fuzzy -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Kirjoita levylle nimi, kuten \"Debian 2.1r1 Levy 1\"" +msgid "[installed,automatic]" +msgstr " [Asennettu]" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Aseta levy asemaan ja paina Enter" +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Asennettu]" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Nimen muuttaminen %s -> %s ei onnistunut" +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Toista tämä lopuille rompuille kasassasi." +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "mutta %s on asennettu" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Parametrit eivät ole pareittain" +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "mutta %s on merkitty asennettavaksi" -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -msgstr "" -"Käyttö: apt-config [valitsimet] komento\n" -"\n" -"apt-config on yksinkertainen työkalu APT:n asetustiedoston lukemiseen\n" -"\n" -"Komennot:\n" -" shell - Muista ohjelmista käytettäväksi\n" -" dump - Näytä asetukset\n" -"\n" -"Valitsimet:\n" -" -h Tämä ohje\n" -" -c=? Lue tämä asetustiedosto\n" -" -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "mutta ei ole asennuskelpoinen" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Pakettia %s ei löytynyt" - -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Pakettia %s ei löytynyt" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "mutta on näennäispaketti" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Pakettia %s ei löytynyt" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "mutta ei ole asennettu" -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "stat ei toiminut lähdepakettiluettelolle %s" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "mutta ei ole merkitty asennettavaksi" -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " tai" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "Pakettia %s ei löytynyt" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Näillä paketeilla on tyydyttämättömiä riippuvuuksia:" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Seuraavat UUDET paketit asennetaan:" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Seuraavat paketit POISTETAAN:" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Nämä paketit on jätetty odottamaan:" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Sisäinen virhe, resolver rikkoi jotain" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Nämä paketit päivitetään:" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Noutokansiota ei saatu lukittua" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Nämä paketit VARHENNETAAN:" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "On annettava ainakin yksi paketti jonka lähdekoodi noudetaan" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Seuraavat pysytetyt paketit muutetaan:" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/private-output.cc:668 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Paketin %s lähdekoodipakettia ei löytynyt" +msgid "%s (due to %s) " +msgstr "%s (syynä %s) " -#: cmdline/apt-get.cc:786 -#, c-format +#: apt-private/private-output.cc:676 msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" +"VAROITUS: Seuraavat välttämättömät paketit poistetaan.\n" +"Näin EI PITÄISI tehdä jos ei aivan tarkkaan tiedä mitä tekee!" -#: cmdline/apt-get.cc:791 +#: apt-private/private-output.cc:707 #, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" -msgstr "" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu päivitetty, %lu uutta asennusta, " -#: cmdline/apt-get.cc:843 +#: apt-private/private-output.cc:711 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Ohitetaan jo noudettu tiedosto \"%s\"\n" +msgid "%lu reinstalled, " +msgstr "%lu uudelleen asennettua, " -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-private/private-output.cc:713 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Kansion %s vapaan tilan määrä ei selvinnyt" +msgid "%lu downgraded, " +msgstr "%lu varhennettua, " -#: cmdline/apt-get.cc:882 +#: apt-private/private-output.cc:715 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Kansiossa %s ei ole riittävästi vapaata tilaa" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu poistettavaa ja %lu päivittämätöntä.\n" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: apt-private/private-output.cc:719 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "On noudettava %st/%st lähdekoodiarkistoja.\n" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu ei asennettu kokonaan tai poistettiin.\n" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "On noudettava %st lähdekoodiarkistoja.\n" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[K/e]" -#: cmdline/apt-get.cc:902 -#, c-format -msgid "Fetch source %s\n" -msgstr "Nouda lähdekoodi %s\n" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Joidenkin arkistojen noutaminen ei onnistunut." +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "K" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Nouto on valmis ja määrätty vain nouto" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: cmdline/apt-get.cc:950 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Ohitetaan purku jo puretun lähdekoodin %s kohdalla\n" +msgid "Regex compilation error - %s" +msgstr "Käännösvirhe lausekkeessa - %s" -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Purkukomento \"%s\" ei onnistunut.\n" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Komento update ei käytä parametreja" -#: cmdline/apt-get.cc:963 +#: apt-private/private-update.cc:90 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Tarkista onko paketti \"dpkg-dev\" asennettu.\n" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "Paketointikomento \"%s\" ei onnistunut.\n" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Lapsiprosessi kaatui" +#: apt-private/private-show.cc:156 +#, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" msgstr "" -"On annettava ainakin yksi paketti jonka paketointiriippuvuudet tarkistetaan" -#: cmdline/apt-get.cc:1054 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Paketille %s ei ole saatavilla riippuvuustietoja" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "VAROITUS: Seuraavian pakettien alkuperää ei voi varmistaa!" + +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Varoitus varmistamisesta on ohitettu.\n" + +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Joidenkin pakettien alkuperästä ei voitu varmistua" + +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Asennetaanko nämä paketit ilman todennusta?" -#: cmdline/apt-get.cc:1101 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "%s has no build depends.\n" -msgstr "Paketille %s ei ole määritetty paketointiriippuvuuksia.\n" +msgid "Failed to fetch %s %s\n" +msgstr "Tiedoston %s nouto ei onnistunut %s\n" -#: cmdline/apt-get.cc:1271 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy" +msgid "Failed to parse %s. Edit again? " +msgstr "Nimen muuttaminen %s -> %s ei onnistunut" -#: cmdline/apt-get.cc:1289 +#: apt-private/private-sources.cc:70 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -"riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy" -#: cmdline/apt-get.cc:1312 -#, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" msgstr "" -"Riippuvutta %s paketille %s ei voi tyydyttää: Asennettu paketti %s on liian " -"uusi" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"%s riippuvuutta paketille %s ei voi tyydyttää koska mikään paketin %s versio " -"ei vastaa versioriippuvuuksia" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Käsitellään päivitystä ... " -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Valmis" + +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Löytyi " + +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Nouda:" + +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Siv " + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Vrhe " + +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Noudettiin %st ajassa %s (%st/s)\n" + +#: apt-private/acqprogress.cc:236 +#, c-format +msgid " [Working]" +msgstr " [Työskennellään]" + +#: apt-private/acqprogress.cc:297 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy" +"Taltion vaihto: Pistä levy \n" +"\"%s\"\n" +"asemaan \"%s\" ja paina Enter\n" -#: cmdline/apt-get.cc:1380 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Riippuvuutta %s paketille %s ei voi tyydyttää: %s" +msgid "Unable to read %s" +msgstr "Tiedostoa %s ei voi lukea" -#: cmdline/apt-get.cc:1395 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Paketointiriippuvuuksia paketille %s ei voi tyydyttää." +msgid "Unable to change to %s" +msgstr "Kansioon %s vaihto ei onnistu" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Paketointiriippuvuuksien käsittely ei onnistunut" +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 +#, c-format +msgid "No mirror file '%s' found " +msgstr "" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Avataan yhteys %s (%s)" +msgid "Can not read mirror file '%s'" +msgstr "Tiedostoa %s ei voitu avata" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Tuetut moduulit:" +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Tiedostoa %s ei voitu avata" -#: cmdline/apt-get.cc:1632 -#, fuzzy -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" +#: methods/mirror.cc:445 +#, c-format +msgid "[Mirror: %s]" msgstr "" -"Käyttö: apt-get [valitsimet] komento\n" -" apt-get [valitsimet] install|remove pkt1 [pkt2 ...]\n" -" apt-get [valitsimet] source pkt1 [pkt2 ...]\n" -"\n" -"apt-get on yksinkertainen komentorivityökalu pakettien noutamiseen\n" -"ja asentamiseen. Useimmiten käytetyt komennot ovat update ja \n" -"install.\n" -"Komennot:\n" -" update - Nouda uusi pakettiluettelo\n" -" upgrade - Tee päivitys\n" -" install - Asenna uusia paketteja (esim. libc6 eikä libc6.deb)\n" -" remove - Poista paketteja\n" -" autoremove - Poista kaikki käyttämättömät paketit\n" -" purge - Poista paketit asennustiedostoineen\n" -" source - Nouda lähdekoodiarkistoja\n" -" build-dep - Määritä paketointiriippuvuudet lähdekoodipaketeille\n" -" dist-upgrade - Koko jakelun päivitys, katso apt-get(8)\n" -" dselect-upgrade - Noudata dselect:n valintoja\n" -" clean - Poista noudetut pakettitiedostot\n" -" autoclean - Poista vanhat noudetut tiedostot\n" -" check - Tarkasta ettei ole tyydyttämättömiä riippuvuuksia\n" -"\n" -"Valitsimet:\n" -" -h Tämä ohje\n" -" -q Lokiin sopiva tulostus - edistymisen ilmaisin jätetään pois\n" -" -qq Ei lainkaan tulostusta paitsi virheistä\n" -" -d Vain nouto - paketteja EI asenneta tai pureta\n" -" -s Älä tee mitään. Oikean toiminnan simulaatio\n" -" -y Vastataan Kyllä kaikkiin kysymyksiin eikä kehoitetta näytetä\n" -" -f Yritä jatkaa jos eheystarkastus löysi virheen\n" -" -m Yritä jatkaa jos arkistojen sijainti ei selviä\n" -" -u Näytä luettelo myös päivitetyistä paketeista\n" -" -b Käännä lähdekoodipaketti noudon jälkeen\n" -" -V Näytä pitkät versionumerot\n" -" -c=? Lue tämä asetustiedosto\n" -" -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n" -"Katso apt-get(8), sources.list(5) ja apt.conf(5) käsikirjasivuilta\n" -"lisätietoja ja lisää valitsimia.\n" -" This APT has Super Cow Powers.\n" -#: cmdline/apt-helper.cc:35 +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "IPC-putken luominen aliprosessiin ei onnistunut" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Yhteys katkesi ennenaikaisesti" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Oletusasetus ei kelpaa!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Jatka painamalla Enter." + +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Haluatko poistaa aiemmin noudettuja .deb-tiedostoja?" + +#: dselect/install:102 #, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "On annettava ainakin yksi paketti jonka lähdekoodi noudetaan" +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Tapahtui virheitä purettaessa. Tehdään asennettujen" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: dselect/install:103 +#, fuzzy +msgid "will be configured. This may result in duplicate errors" +msgstr "pakettien asetukset. Samat virheet voivat tulla toiseen kertaan" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" +"tai tyydyttämättömät riippuvuudet aiheuttavat virheitä. Tämä ei haittaa" -#: cmdline/apt-helper.cc:66 +#: dselect/install:105 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" +"vain tätä viestiä ennen tulleilla virheillä on merkitystä. Korjaa ne ja aja " +"[I]nstall uudestaan" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "mutta ei ole asennettu" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Yhdistetään saatavuustiedot" -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "Kutsuttiin DropNode mutta tiedostoon on vielä linkki" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Hajautusalkiota ei löytynyt!" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s on jo uusin versio.\n" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Korvautuksen varaus ei onnistunut" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s on jo uusin versio.\n" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "AddDiversion: sisäinen virhe" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" +#: apt-inst/filelist.cc:477 +#, c-format +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Yritetään kirjoittaa korvautuksen päälle, %s -> %s ja %s/%s" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Tiedoston %s avaaminen ei onnistunut" +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "Korvautuksen kaksoislisäys %s -> %s" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "Asetustiedoston kaksoiskappale %s/%s" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" +msgstr "Polku %s on liian pitkä" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" +msgstr "Purettiin %s useammin kuin kerran" -#: methods/cdrom.cc:203 +#: apt-inst/extract.cc:142 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Rompputietokantaa %s ei voi lukea" +msgid "The directory %s is diverted" +msgstr "Kansio %s on korvautunut" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"Käytä komentoa apt-cdrom jotta APT tunnistaa tämän rompun, apt-get update ei " -"osaa lisätä uusia romppuja" +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Paketti yrittää kirjoittaa korvautuksen kohteeseen %s/%s" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Väärä romppu" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Korvautuspolku on liian pitkä" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 +#, c-format +msgid "Failed to stat %s" +msgstr "Tiedostolle %s ei toimi stat" + +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Nimen muuttaminen %s -> %s ei onnistunut" + +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "Kansiota %s ollaan korvaamassa muulla kuin kansiolla" + +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Solmua ei löytynyt sen hajautuslokerosta" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Polku on liian pitkä" + +#: apt-inst/extract.cc:421 +#, c-format +msgid "Overwrite package match with no version for %s" +msgstr "Päälle kirjoitettava paketti täsmää mutta paketille %s ei ole versiota" + +#: apt-inst/extract.cc:438 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Tiedosto %s/%s kirjoitetaan paketista %s tulleen päälle" + +#: apt-inst/extract.cc:498 +#, c-format +msgid "Unable to stat %s" +msgstr "Tiedostolle %s ei toimi stat" + +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, c-format +msgid "Failed to write file %s" +msgstr "Tiedoston %s kirjoittaminen ei onnistunut" + +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "Tiedoston %s sulkeminen ei onnistunut" + +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Tämä ei ole kelvollinen DEB-arkisto, puuttuu tiedosto \"%s\"" + +#: apt-inst/deb/debfile.cc:132 +#, c-format +msgid "Internal error, could not locate member %s" +msgstr "Tapahtui sisäinen virhe, tiedostoa %s ei löydy" + +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Ohjaustiedosto ei jäsenny" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Arkiston tarkistussumma on virheellinen" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Tapahtui virhe luettaessa arkiston tiedoston otsikkoa" + +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Arkiston tiedoston otsikko on virheellinen" + +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Arkiston tiedoston otsikko on virheellinen" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Arkisto on pienempi kuin pitäisi" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Arkiston otsikoiden luku ei onnistunut" -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Rompun %s irrottaminen ei onnistu, se on ehkä käytössä." +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Putkien luonti ei onnistunut" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Levyä ei löydy" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "exec gzip ei onnistunut" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Tiedostoa ei löydy" +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Arkisto on turmeltunut" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Komento stat ei toiminut" +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar-ohjelman laskema tarkistussumma ei täsmää, arkisto on turmeltunut" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Tiedoston muutospäivämäärää ei saatu vaihdettua" +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Tuntematon TAR-otsikon tyyppi %u, tiedosto %s" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI on kelvoton, paikallinen URI ei saa alkaa //" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Kirjaudutaan sisään" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Vastapään nimeä ei saa selville" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Paketointijärjestelmä \"%s\" ei ole tuettu" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Paikallista nimeä ei saa selville" +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Sopivaa paketointijärjestelmän tyyppiä ei saa selvitettyä" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Palvelin ei huolinut yhteyttä ilmoituksella: %s" +msgid "Wrote %i records.\n" +msgstr "Kirjoitettiin %i tietuetta.\n" -#: methods/ftp.cc:225 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER ei onnistunut, palvelimen ilmoitus: %s" +msgid "Wrote %i records with %i missing files.\n" +msgstr "Kirjoitettiin %i tietuetta joissa oli %i puuttuvaa tiedostoa.\n" -#: methods/ftp.cc:232 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS ei onnistunut, palvelimen ilmoitus: %s" +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Kirjoitettiin %i tietuetta joissa oli %i paritonta tiedostoa\n" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" -"Määritettiin välipalvelin mutta ei komentotiedostoa kirjautumiseen, Acquire::" -"ftp::ProxyLogin on tyhjä." +"Kirjoitettiin %i tietuetta joissa oli %i puuttuvaa ja %i paritonta " +"tiedostoa\n" -#: methods/ftp.cc:280 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Komentotiedoston rivi \"%s\" ei toiminut, palvelin ilmoitti: %s" +msgid "Can't find authentication record for: %s" +msgstr "" -#: methods/ftp.cc:306 -#, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE ei toiminut, palvelin ilmoitti: %s" +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "Kohteen %s tarkistussumma ei täsmää" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Yhteys aikakatkaistiin" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"Pakettiluettelonn tai tilatiedoston avaaminen tai jäsennys epäonnistui." -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Palvelin sulki yhteyden" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Voit haluta suorittaa apt-get update näiden pulmien korjaamiseksi" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Vastaus aiheutti puskurin ylivuodon." +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Lähteiden luetteloa ei pystynyt lukemaan." -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Yhteyskäytäntö on turmeltunut" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Pakettivarasto on tyhjä" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Pistoketta ei voitu luoda" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Pakettivarasto on turmeltunut" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Pistoketta ei voitu kytkeä, yhteys aikakatkaistiin" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Pakettivaraston versio on yhteensopimaton" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Ei onnistunut" +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "Pakettivarasto on turmeltunut" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Passiivista pistoketta ei voitu kytkeä." +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "Tämä APT ei tue versionhallintajärjestelmää \"%s\"" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo ei saanut kuuntelupistoketta" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Pakettivarasto on tehty muulle arkkitehtuurille" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Pistoketta ei voitu nimetä" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Riippuvuudet" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Pistoketta ei voitu kuunnella" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Esiriippuvuudet" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Pistokkeen nimeä ei saatu selville" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Ehdotukset" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Komennon PORT lähetys ei onnistu" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Suosittelut" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Tuntematon osoiteperhe %u (AF_*)" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Ristiriidat" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT ei onnistunut, palvelin ilmoitti: %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Korvaavuudet" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Pistokkeen kytkeminen aikakatkaistiin" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Täydet korvaavuudet" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Yhteyttä ei voitu hyväksyä" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Rikkoo" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Pulmia tiedoston hajautuksessa" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Tiedostoa ei saatu noudettua, palvelin ilmoitti \"%s\"" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "tärkeä" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Pistoke aikakatkaistiin" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "välttämätön" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Tiedonsiirto ei onnistunut, palvelin ilmoitti \"%s\"" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "perus" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Kysely" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "valinnainen" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Käynnistys ei onnistu" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "ylimääräinen" + +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Menetelmän ajuria %s ei löytynyt" + +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Tarkista onko paketti \"dpkg-dev\" asennettu.\n" -#: methods/connect.cc:76 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Avataan yhteys %s (%s)" +msgid "Method %s did not start correctly" +msgstr "Menetelmä %s ei käynnistynyt oikein" -#: methods/connect.cc:87 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Pistä levy nimeltään: \"%s\" asemaan \"%s\" ja paina Enter." -#: methods/connect.cc:94 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Pistokeen luonti ei onnistu %s (f=%u t=%u p=%u)" +msgid "Index file type '%s' is not supported" +msgstr "Hakemistotiedoston tyyppi \"%s\" ei ole tuettu" -#: methods/connect.cc:100 -#, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Yhteyden %s avaus ei onnistu: %s (%s)." +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Muodostetaan riippuvuussuhteiden puu" -#: methods/connect.cc:108 -#, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Yhteyttä %s ei voitu muodostaa: %s (%s), yhteys aikakatkaistiin" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Mahdolliset versiot" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Yhteyttä %s ei voitu muodostaa: %s (%s)" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Luodaan riippuvuudet" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Luetaan tilatiedot" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Connecting to %s" -msgstr "Avataan yhteys %s" +msgid "Failed to open StateFile %s" +msgstr "Tilatiedoston %s avaaminen ei onnistunut" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Could not resolve '%s'" -msgstr "Nimeä \"%s\" ei voitu selvittää" +msgid "Failed to write temporary StateFile %s" +msgstr "Tilapäisen tilatiedoston %s kirjoittaminen ei onnistunut" -#: methods/connect.cc:205 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Tilapäinen häiriö selvitettäessä \"%s\"" +msgid "rename failed, %s (%s -> %s)." +msgstr "nimen vaihto ei onnistunut, %s (%s -> %s)." -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Jotain kenkkua tapahtui selvitettäessä \"%s: %s\" (%i)" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Tarkistussumma ei täsmää" -#: methods/connect.cc:211 -#, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Jotain kenkkua tapahtui selvitettäessä \"%s: %s\" (%i)" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Koko ei täsmää" -#: methods/connect.cc:258 -#, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Ei ole mahdollista muodostaa yhteyttä %s %s:" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Virheellinen toiminto %s" -#: methods/gpgv.cc:168 +#: apt-pkg/acquire-item.cc:1573 +#, c-format msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"Sisäinen virhe: Allekirjoitus kelpaa, mutta avaimen sormenjälki tuntematon?!" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "LÖytyi ainakin yksi kelvoton allekirjoitus." +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Pakettitiedostoa %s (1) ei voi jäsentää" -#: methods/gpgv.cc:174 -#, fuzzy -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "" -"Ei käynnistynyt \"%s\" allekirjoitusta tarkistamaan (onko gpgv asennettu?)" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Julkisia avaimia ei ole saatavilla, avainten ID:t ovat:\n" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1669 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Tapahtui tuntematon virhe suoritettaessa gpgv" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Seuraavat allekirjoitukset eivät olleet kelvollisia:\n" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1721 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -"Seuraavia allekirjoituksia ei voinut varmentaa koska julkista avainta ei ole " -"saatavilla:\n" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Tapahtui virhe kirjoitettaessa tiedostoon" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Tapahtui virhe luettaessa palvelimelta. Etäpää sulki yhteyden" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Tapahtui virhe luettaessa palvelimelta" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Tapahtui virhe kirjoitettaessa tiedostoon" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Select ei toiminut" - -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Yhteys aikakatkaistiin" - -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Tapahtui virhe kirjoitettaessa tulostustiedostoon" - -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Odotetaan otsikoita" - -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Virheellinen otsikkorivi" - -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP-palvelin lähetti virheellisen vastausotsikon" - -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP-palvelin lähetti virheellisen Content-Length-otsikon" - -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP-palvelin lähetti virheellisen Content-Range-otsikon" - -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "HTTP-palvelimen arvoaluetuki on rikki" +#: apt-pkg/acquire-item.cc:1859 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"En löytänyt pakettia %s vastaavaa tiedostoa. Voit ehkä joutua korjaamaan " +"tämän paketin itse (puuttuvan arkkitehtuurin vuoksi)" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Tuntematon päiväysmuoto" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Virheellinen otsikkotieto" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Pakettihakemistotiedostot ovat turmeltuneet. Paketille %s ei ole Filename-" +"kenttää." -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Yhteys ei toiminut" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Hakemistotiedoston tyyppi \"%s\" ei ole tuettu" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Sisäinen virhe" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "stat %s ei onnistu." -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Käsitellään päivitystä ... " +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Pakettivaraston versionhallintajärjestelmä ei ole yhteensopiva" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Valmis" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Tapahtui virhe käsiteltäessä %s (FindPkg)" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" +"Jummijammi, annoit enemmän pakettien nimiä kuin tämä APT osaa käsitellä." -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Jummijammi, annoit enemmän versioita kuin tämä APT osaa käsitellä." -#: apt-private/private-list.cc:164 +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Jummijammi, tämä APT ei osaa käsitellä noin montaa kuvausta." + +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "Jummijammi, annoit enemmän riippuvuuksia kuin tämä APT osaa käsitellä." + +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Pakettia %s %s ei löytynyt käsiteltäessä tiedostojen riippuvuuksia." -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Korjataan riippuvuuksia..." +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "stat ei toiminut lähdepakettiluettelolle %s" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " ei onnistunut." +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Luetaan pakettiluetteloita" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Riippuvuuksien korjaus ei onnistu" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Kootaan tiedostojen tarjoamistietoja" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Päivitysjoukon minimointi ei onnistu" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Tiedostoon %s kirjoittaminen ei onnistu" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Valmis" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Syöttö/Tulostus -virhe tallennettaessa pakettivarastoa" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Halunnet suorittaa \"apt-get -f install\" korjaamaan nämä." +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Toimittajan lohkosta %s puuttuu sormenjälki" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Tyydyttämättömiä riippuvuuksia. Koita käyttää -f." +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "Luettelokansio %spartial puuttuu." -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/acquire.cc:91 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "Arkistokansio %spartial puuttuu." -#: apt-private/private-output.cc:234 +#: apt-pkg/acquire.cc:99 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Asennettu]" +msgid "Unable to lock directory %s" +msgstr "Luettelokansiota ei voitu lukita" -#: apt-private/private-output.cc:238 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Noudetaan tiedosto %li / %li (jäljellä %s)" + +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Noudetaan tiedosto %li / %li" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 #, fuzzy -msgid "[installed,local]" -msgstr " [Asennettu]" +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"Joidenkin hakemistotiedostojen nouto ei onnistunut, ne on ohitettu tai " +"käytetty vanhoja. " -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Tiedostossa sources.list on oltava rivejä joissa \"lähde\"-URI" + +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Asennettu]" +#: apt-pkg/policy.cc:422 +#, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Asetustiedostossa on virheellinen tietue, Package-otsikko puuttuu" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Asennettu]" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Tunnistetyyppi %s on tuntematon" -#: apt-private/private-output.cc:249 +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Tärkeysjärjestystä ei määritetty tunnisteelle (tai se on nolla)" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 #, c-format -msgid "[upgradable from: %s]" +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Tiedostoa %s ei voitu avata" + +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." msgstr "" +"Tämän asennusajo vaatii tilapäisesti poistettavaksi välttämättömän paketin " +"%s Conflicts/Pre-Depends -kehämäärittelyn takia. Tämä on usein pahasta, " +"mutta jos varmasti haluat tehdä niin, käytä APT::Force-LoopBreak -valitsinta." -#: apt-private/private-output.cc:435 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "but %s is installed" -msgstr "mutta %s on asennettu" +msgid "Line %u too long in source list %s." +msgstr "Rivi %u on liian pitkä lähdeluettelossa %s." -#: apt-private/private-output.cc:437 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Irrotetaan romppu...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "but %s is to be installed" -msgstr "mutta %s on merkitty asennettavaksi" +msgid "Using CD-ROM mount point %s\n" +msgstr "Käytetään rompun liitoskohtaa %s\n" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "mutta ei ole asennuskelpoinen" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Odotetaan levyä...\n" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "mutta on näennäispaketti" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Liitetään romppu...\n" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "mutta ei ole asennettu" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Tunnistetaan... " -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "mutta ei ole merkitty asennettavaksi" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Tallennettu nimio: %s \n" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " tai" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Etsitään levyltä hakemistotiedostoja...\n" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Näillä paketeilla on tyydyttämättömiä riippuvuuksia:" +#: apt-pkg/cdrom.cc:734 +#, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" +"Hakemistoja löytyi: Asennuspakettien %zu, lähdekoodipakettien %zu, " +"käännösten %zu ja allekirjoituksia löytyi %zu\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Seuraavat UUDET paketit asennetaan:" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Seuraavat paketit POISTETAAN:" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "Löytyi nimiö: \"%s\"\n" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Nämä paketit on jätetty odottamaan:" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Tuo ei kelpaa nimeksi, yritä uudelleen.\n" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Nämä paketit päivitetään:" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Tämä levy on: \n" +"\"%s\"\n" + +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopioidaan pakettiluetteloita..." -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Nämä paketit VARHENNETAAN:" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Kirjoitetaan uusi lähdeluettelo\n" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Seuraavat pysytetyt paketit muutetaan:" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Tämän levyn lähdekoodipakettien luettelon tietueita ovat:\n" -#: apt-private/private-output.cc:668 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "%s (due to %s) " -msgstr "%s (syynä %s) " +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "Paketti %s olisi asennettava uudelleen, mutta sen arkistoa ei löydy." -#: apt-private/private-output.cc:676 +#: apt-pkg/algorithms.cc:1086 msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -"VAROITUS: Seuraavat välttämättömät paketit poistetaan.\n" -"Näin EI PITÄISI tehdä jos ei aivan tarkkaan tiedä mitä tekee!" +"Virhe, pkgProblemResolver::Resolve tuotti katkoja, syynä voi olla pysytetyt " +"paketit." -#: apt-private/private-output.cc:707 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu päivitetty, %lu uutta asennusta, " +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Pulmia ei voi korjata, rikkinäisiä paketteja on pysytetty." -#: apt-private/private-output.cc:711 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu uudelleen asennettua, " +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: apt-private/private-output.cc:713 -#, c-format -msgid "%lu downgraded, " -msgstr "%lu varhennettua, " +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: apt-private/private-output.cc:715 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu poistettavaa ja %lu päivittämätöntä.\n" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: apt-private/private-output.cc:719 +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" + +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" + +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu ei asennettu kokonaan tai poistettiin.\n" +msgid "Unable to parse package file %s (1)" +msgstr "Pakettitiedostoa %s (1) ei voi jäsentää" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[K/e]" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Pakettitiedostoa %s (2) ei voi jäsentää" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "" +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "Pakettitiedostoa %s (1) ei voi jäsentää" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "K" +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "Huomautus, valitaan %s eikä %s\n" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" msgstr "" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Komento update ei käytä parametreja" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Virheellinen rivi korvautustiedostossa: %s" -#: apt-private/private-update.cc:90 -#, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Pakettitiedostoa %s (1) ei voi jäsentää" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (URI-jäsennys)" -#: apt-private/private-show.cc:156 -#, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/sourcelist.cc:170 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist-jäsennys)" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/sourcelist.cc:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist)" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Sisäinen virhe, InstallPackages kutsuttiin rikkinäisille paketeille!" +#: apt-pkg/sourcelist.cc:184 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist-jäsennys)" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Paketteja pitäisi poistaa mutta Remove ei ole käytössä." +#: apt-pkg/sourcelist.cc:190 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist-jäsennys)" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Tapahtui sisäinen virhe, järjestäminen keskeytyi" +#: apt-pkg/sourcelist.cc:193 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist-jäsennys)" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"No jo on... Koot eivät täsmää, sähköpostita email apt@packages.debian.org" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (URI)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Noudettavaa arkistoa %st/%st.\n" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Noudettavaa arkistoa %st.\n" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (URI-jäsennys)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Toiminnon jälkeen käytetään %s t lisää levytilaa.\n" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (Absoluuttinen dist)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Toiminnon jälkeen vapautuu %s t levytilaa.\n" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist-jäsennys)" -#: apt-private/private-install.cc:200 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Kansiossa %s ei ole riittävästi vapaata tilaa." +msgid "Opening %s" +msgstr "Avataan %s" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Oli pulmia ja -y käytettiin ilman valitsinta --force-yes" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Rivi %u on väärän muotoinen lähdeluettelossa %s (tyyppi)" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "" -"On määritetty Trivial Only mutta tämä ei ole itsestäänselvä toimenpide." +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Tyyppi \"%s\" on tuntematon rivillä %u lähdeluettelossa %s" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Kyllä, tee kuten käsketään!" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Tyyppi \"%s\" on tuntematon rivillä %u lähdeluettelossa %s" -#: apt-private/private-install.cc:222 +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Olet aikeissa tehdä mahdollisesti vahingollisen toimenpiteen.\n" -"Jatka kirjoittamalla \"%s\"\n" -" ?] " +msgid "Release '%s' for '%s' was not found" +msgstr "Julkaisua \"%s\" paketille \"%s\" ei löytynyt" + +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Versiota \"%s\" paketille \"%s\" ei löytynyt" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Keskeytä." +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "Tehtävää %s ei löytynyt" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Haluatko jatkaa?" +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Pakettia %s ei löytynyt" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Joidenkin tiedostojen nouto ei onnistunut" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Pakettia %s ei löytynyt" -#: apt-private/private-install.cc:320 +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" + +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Joidenkin arkistojen nouto ei onnistunut, ehkä \"apt-get update\" auttaa tai " -"kokeile --fix-missing?" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing ja taltion vaihto ei ole nyt tuettu" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Puuttuvia paketteja ei voi korjata." +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Asennus keskeytetään." +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -msgstr[1] "" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" msgstr "" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" msgstr "" -"On tarkoitus olla poistamatta mitään, joten AutoRemover:ia ei voi käynnistää" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" msgstr "" -"Hmm, nähtävästi AutoRemover tuhosi jotain, mitä ei pitäisi tapahtua.\n" -"Tekisitkö vikailmoituksen apt:sta." -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "Seuraavista tiedoista voi olla hyötyä selvitettäessä tilannetta:" +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "Valintaa %s ei löydy" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Sisäinen virhe, AutoRemover rikkoi jotain" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Lukkoa ei käytetä kirjoitussuojatulle tiedostolle %s" -#: apt-private/private-install.cc:513 -#, fuzzy -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "" -"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " -"vaadittuja:" -msgstr[1] "" -"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " -"vaadittuja:" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Lukkotiedostoa %s ei voitu avata" -#: apt-private/private-install.cc:517 -#, fuzzy, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "" -"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " -"vaadittuja:" -msgstr[1] "" -"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " -"vaadittuja:" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Lukitusta ei käytetä NFS-liitetylle tiedostolle %s" -#: apt-private/private-install.cc:519 -#, fuzzy -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Poista ne komennolla \"apt-get autoremove\"." -msgstr[1] "Poista ne komennolla \"apt-get autoremove\"." +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Lukkoa %s ei saada" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Saatat haluta suorittaa \"apt-get -f install\" korjaamaan nämä:" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -"Kaikkia riippuvuuksia ei ole tyydytetty. Kokeile \"apt-get -f install\" " -"ilmanpaketteja (tai ratkaise itse)." -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -"Joitakin paketteja ei voitu asentaa. On ehkä vaadittu mahdottomia tai,\n" -"jos käytetään epävakaata jakelua, joitain vaadittuja paketteja ei ole\n" -"vielä luotu tai siirretty Incoming-kansiosta." -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Rikkinäiset paketit" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Seuraavat ylimääräiset paketit on merkitty asennettaviksi:" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Aliprosessi %s aiheutti suojausvirheen." -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Ehdotetut paketit:" +#: apt-pkg/contrib/fileutl.cc:826 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "Aliprosessi %s aiheutti suojausvirheen." -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Suositellut paketit:" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "Aliprosessi %s palautti virhekoodin (%u)" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Ohitetaan %s, se on jo asennettu eikä ole komennettu päivitystä.\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "Aliprosessi %s lopetti odottamatta" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:913 #, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "Ohitetaan %s, se on jo asennettu eikä ole komennettu päivitystä.\n" +msgid "Problem closing the gzip file %s" +msgstr "Pulmia tiedoston sulkemisessa" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Paketin %s uudelleenasennus ei ole mahdollista, sitä ei voi noutaa.\n" +msgid "Could not open file %s" +msgstr "Tiedostoa %s ei voitu avata" -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s on jo uusin versio.\n" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Putkea %s ei voitu avata" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Prosessien välistä kommunikaatiota aliprosessiin ei saatu luotua" + +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Pakkaajan käynnistäminen ei onnistunut" + +#: apt-pkg/contrib/fileutl.cc:1514 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Valittiin versio %s (%s) paketille %s\n" +msgid "read, still have %llu to read but none left" +msgstr "read, vielä %lu lukematta mutta tiedosto loppui" -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Valittiin versio %s (%s) paketille %s\n" +msgid "write, still have %llu to write but couldn't" +msgstr "write, vielä %lu kirjoittamatta mutta epäonnistui" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/fileutl.cc:1915 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "Pakettia %s ei ole asennettu, niinpä sitä ei poisteta\n" +msgid "Problem closing the file %s" +msgstr "Pulmia tiedoston sulkemisessa" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/fileutl.cc:1927 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Pakettia %s ei ole asennettu, niinpä sitä ei poisteta\n" +msgid "Problem renaming the file %s to %s" +msgstr "Pulmia tehtäessä tiedostolle sync" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1938 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "Pulmia tehtäessä tiedostolle unlink" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "VAROITUS: Seuraavian pakettien alkuperää ei voi varmistaa!" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Pulmia tehtäessä tiedostolle sync" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Varoitus varmistamisesta on ohitettu.\n" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Virhe!" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Joidenkin pakettien alkuperästä ei voitu varmistua" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Valmis" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Asennetaanko nämä paketit ilman todennusta?" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-sources.cc:58 +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Nimen muuttaminen %s -> %s ei onnistunut" - -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%c%s... %u%%" +msgstr "%c%s... Valmis" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Tyhjälle tiedostolle ei voi tehdä mmap:ia" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Löytyi " +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Putkea %s ei voitu avata" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Nouda:" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Ei voitu tehdä %lu tavun mmap:ia" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Siv " +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Tiedoston %s avaaminen ei onnistunut" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Vrhe " +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "Käynnistys ei onnistu" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Noudettiin %st ajassa %s (%st/s)\n" +msgid "Couldn't make mmap of %lu bytes" +msgstr "Ei voitu tehdä %lu tavun mmap:ia" -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [Työskennellään]" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Tiedoston typistäminen ei onnistunut" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/mmap.cc:341 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -"Taltion vaihto: Pistä levy \n" -"\"%s\"\n" -"asemaan \"%s\" ja paina Enter\n" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "No mirror file '%s' found " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Tiedostoa %s ei voitu avata" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Tiedostoa %s ei voitu avata" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Komento stat ei toiminut liitoskohdalle %s" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Komento stat ei toiminut rompulle" + +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "[Mirror: %s]" -msgstr "" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Tuntematon tyypin lyhenne: \"%c\"" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "IPC-putken luominen aliprosessiin ei onnistunut" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Avataan asetustiedosto %s" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Yhteys katkesi ennenaikaisesti" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntaksivirhe %s: %u: Lohko alkaa ilman nimeä." -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Oletusasetus ei kelpaa!" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntaksivirhe %s: %u: väärän muotoinen nimikenttä" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Jatka painamalla Enter." +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntaksivirhe %s: %u: Arvon jälkeen ylimääräistä roskaa" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Haluatko poistaa aiemmin noudettuja .deb-tiedostoja?" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "Syntaksivirhe %s: %u: Direktiivejä voi olla vain ylimmällä tasolla" -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Tapahtui virheitä purettaessa. Tehdään asennettujen" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntaksivirhe %s: %u: Liian monta sisäkkäistä includea" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "pakettien asetukset. Samat virheet voivat tulla toiseen kertaan" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntaksivirhe %s: %u: Sisällytetty tästä" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"tai tyydyttämättömät riippuvuudet aiheuttavat virheitä. Tämä ei haittaa" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntaksivirhe %s: %u: Tätä direktiiviä ei tueta \"%s\"" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "" -"vain tätä viestiä ennen tulleilla virheillä on merkitystä. Korjaa ne ja aja " -"[I]nstall uudestaan" +#: apt-pkg/contrib/configuration.cc:900 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "Syntaksivirhe %s: %u: Direktiivejä voi olla vain ylimmällä tasolla" -#: dselect/update:30 -msgid "Merging available information" -msgstr "Yhdistetään saatavuustiedot" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Syntaksivirhe %s: %u: Ylimääräistä roskaa tiedoston lopussa" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "Kutsuttiin DropNode mutta tiedostoon on vielä linkki" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "Asennus keskeytetään." + +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Komentorivin valitsin \"%c\" [%s] on tuntematon." + +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Komentorivin valitsin %s on tuntematon" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Hajautusalkiota ei löytynyt!" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Komentorivin valitsin %s ei ole totuusarvoinen" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Korvautuksen varaus ei onnistunut" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Valitsin %s tarvitsee parametrin" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "AddDiversion: sisäinen virhe" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Valitsin %s: Asetusarvon määrityksessä on oltava =<arvo>." -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Yritetään kirjoittaa korvautuksen päälle, %s -> %s ja %s/%s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Valitsin %s tarvitsee kokonaislukuparametrin, ei \"%s\"" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Korvautuksen kaksoislisäys %s -> %s" +msgid "Option '%s' is too long" +msgstr "Valitsin \"%s\" on liian pitkä" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Asetustiedoston kaksoiskappale %s/%s" +msgid "Sense %s is not understood, try true or false." +msgstr "Arvo %s on tuntematon, yritä tosi tai epätosi." -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The path %s is too long" -msgstr "Polku %s on liian pitkä" +msgid "Invalid operation %s" +msgstr "Virheellinen toiminto %s" -#: apt-inst/extract.cc:132 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unpacking %s more than once" -msgstr "Purettiin %s useammin kuin kerran" +msgid "Installing %s" +msgstr "Asennetaan %s" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The directory %s is diverted" -msgstr "Kansio %s on korvautunut" +msgid "Configuring %s" +msgstr "Tehdään asetukset: %s" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Paketti yrittää kirjoittaa korvautuksen kohteeseen %s/%s" +msgid "Removing %s" +msgstr "Poistetaan %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Korvautuspolku on liian pitkä" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "%s poistettiin kokonaan" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to stat %s" -msgstr "Tiedostolle %s ei toimi stat" +msgid "Noting disappearance of %s" +msgstr "" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Nimen muuttaminen %s -> %s ei onnistunut" +msgid "Running post-installation trigger %s" +msgstr "Suoritetaan jälkiasennusliipaisin %s" -#: apt-inst/extract.cc:249 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Kansiota %s ollaan korvaamassa muulla kuin kansiolla" +msgid "Directory '%s' missing" +msgstr "Kansio \"%s\" puuttuu." -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Solmua ei löytynyt sen hajautuslokerosta" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "Tiedostoa %s ei voitu avata" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Polku on liian pitkä" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Valmistellaan %s" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Päälle kirjoitettava paketti täsmää mutta paketille %s ei ole versiota" +msgid "Unpacking %s" +msgstr "Puretaan %s" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Tiedosto %s/%s kirjoitetaan paketista %s tulleen päälle" +msgid "Preparing to configure %s" +msgstr "Valmistaudutaan tekemään asetukset: %s" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Unable to stat %s" -msgstr "Tiedostolle %s ei toimi stat" +msgid "Installed %s" +msgstr "%s asennettu" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to write file %s" -msgstr "Tiedoston %s kirjoittaminen ei onnistunut" +msgid "Preparing for removal of %s" +msgstr "Valmistaudutaan poistamaan %s" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Failed to close file %s" -msgstr "Tiedoston %s sulkeminen ei onnistunut" +msgid "Removed %s" +msgstr "%s poistettu" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Tämä ei ole kelvollinen DEB-arkisto, puuttuu tiedosto \"%s\"" +msgid "Preparing to completely remove %s" +msgstr "Valmistaudutaan poistamaan %s kokonaan" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Tapahtui sisäinen virhe, tiedostoa %s ei löydy" +msgid "Completely removed %s" +msgstr "%s poistettiin kokonaan" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Ohjaustiedosto ei jäsenny" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Arkiston tarkistussumma on virheellinen" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Tiedostoon %s kirjoittaminen ei onnistu" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Tapahtui virhe luettaessa arkiston tiedoston otsikkoa" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:96 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Arkiston tiedoston otsikko on virheellinen" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Arkiston tiedoston otsikko on virheellinen" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arkisto on pienempi kuin pitäisi" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Arkiston otsikoiden luku ei onnistunut" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Putkien luonti ei onnistunut" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "exec gzip ei onnistunut" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Arkisto on turmeltunut" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar-ohjelman laskema tarkistussumma ei täsmää, arkisto on turmeltunut" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Tuntematon TAR-otsikon tyyppi %u, tiedosto %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Luettelokansiota ei voitu lukita" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/fr.po b/po/fr.po index cbca53399..52f171b91 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2013-08-17 07:57+0200\n" "Last-Translator: Christian Perrier <bubulle@debian.org>\n" "Language-Team: French <debian-l10n-french@lists.debian.org>\n" @@ -19,3338 +19,3339 @@ msgstr "" "X-Generator: Lokalize 1.5\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "Le type de fichier d'index « %s » n'est pas accepté" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "Impossible de lire %s" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Impossible d'accéder à %s" - -#: apt-pkg/clean.cc:64 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Unable to stat %s." -msgstr "Impossible de localiser %s." +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Le paquet %s de version %s contient une dépendance absente :\n" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Nombre total de paquets : " -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Exécution de dpkg" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Nombre total de structures de paquets : " -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Le système de paquet « %s » n'est pas supporté" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Paquets ordinaires : " -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Impossible de déterminer un type du système de paquets adéquat" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Paquets entièrement virtuels : " -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "%i enregistrements écrits.\n" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Paquets virtuels simples : " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "%i enregistrements écrits avec %i fichiers manquants.\n" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Paquets virtuels mixtes : " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "%i enregistrements écrits avec %i fichiers qui ne correspondent pas\n" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Manquants : " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"%i enregistrements écrits avec %i fichiers manquants et %i qui ne " -"correspondent pas\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Nombre de versions distinctes : " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "Impossible de trouver l'enregistrement d'authentification pour %s" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Nombre de descriptions distinctes : " -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "Somme de contrôle de hachage incohérente pour %s" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Nombre de dépendances : " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Le pilote pour la méthode %s n'a pu être trouvé." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Nombre de relations version/fichier : " -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Veuillez vérifier si le paquet dpkg-dev est installé.\n" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Nombre de relations description/fichier : " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "La méthode %s n'a pas démarré correctement" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Nombre de relations « Provides » : " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "" -"Veuillez insérer le disque « %s » dans le lecteur « %s » et appuyez sur la " -"touche Entrée." +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Nombre de motifs rationnels : " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "" -"Les listes de paquets ou le fichier « status » ne peuvent être analysés ou " -"lus." +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Espace occupé par les versions des dépendances : " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Vous pouvez lancer « apt-get update » pour corriger ces problèmes." +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Espace disque gaspillé : " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "La liste des sources ne peut être lue." +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Total de l'espace attribué : " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Cache des paquets vide" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "Fichier %s désynchronisé." -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Le fichier de cache des paquets est corrompu" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Aucun paquet n'a été trouvé" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Le fichier de cache des paquets a une version incompatible" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Vous devez fournir au moins un motif de recherche" -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Le fichier de cache des paquets est corrompu, il est trop petit." +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "Cette commande est obsolète. Veuillez utiliser « apt-mark showauto »." -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Cet APT ne supporte pas le système de version « %s »" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Le cache des paquets a été construit pour une architecture différente" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Dépend" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Pré-Dépend" +msgid "Unable to locate package %s" +msgstr "Impossible de trouver le paquet %s" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Suggère" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Fichiers du paquet :" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Recommande" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Le cache est désynchronisé, impossible de référencer un fichier" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Est en conflit avec" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Paquets épinglés :" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Remplace" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(non trouvé)" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Rend obsolète" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Installé : " -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Casse" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Candidat : " -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Améliore" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(aucun)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "important" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Épinglage de paquet : " -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "nécessaire" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Table de version :" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standard" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s pour %s compilé sur %s %s\n" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "optionnel" +#: cmdline/apt-cache.cc:1749 +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Usage : apt-cache [options] commande\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache est un outil de bas niveau pour manipuler les fichiers de cache\n" +"pour les binaires, et pour en obtenir des informations.\n" +"\n" +"Commandes :\n" +" gencaches - Construit le cache des sources et celui des binaires\n" +" showpkg - Affiche quelques informations générales pour un unique paquet\n" +" showsrc - Affiche les enregistrements des sources\n" +" stats - Affiche quelques statistiques de base\n" +" dump - Affiche la totalité des fichiers dans un formulaire succinct\n" +" dumpavail - Affiche une liste de fichiers disponibles sur la sortie " +"standard\n" +" unmet - Affiche les dépendances manquantes\n" +" search - Cherche une expression rationnelle dans la liste des paquets\n" +" show - Affiche la description du paquet\n" +" depends - Affiche toutes les dépendances d'un paquet\n" +" rdepends - Affiche les dépendances inverses d'un paquet\n" +" pkgnames - Liste le nom de tous les paquets du système\n" +" dotty - Génère un graphe des paquets pour GraphViz\n" +" xvcg - Génère un graphe des paquets pour xvcg\n" +" policy - Affiche l'épinglage (Pin) en vigueur\n" +"\n" +"Options :\n" +" -h Ce texte d'aide\n" +" -p=? Le cache des paquets\n" +" -s=? Le cache des sources\n" +" -q Enlève l'indicateur de progression\n" +" -i Affiche seulement les dépendances importantes pour la commande " +"« unmet »\n" +" -c=? Lit ce fichier de configuration\n" +" -o=? Spécifie une option de configuration, p. ex. -o dir::cache=/tmp\n" +"Veuillez consulter les pages de manuel de apt-cache(8) et apt.conf(5) pour " +"plus\n" +"d'informations.\n" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "supplémentaire" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "" +"Veuillez indiquer le nom de ce disque, par exemple « Debian 5.0.3 Disk 1 »" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Le type de fichier d'index « %s » n'est pas accepté" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "" +"Veuillez insérer un disque dans le lecteur et appuyez sur la touche Entrée" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Regex compilation error - %s" -msgstr "Erreur de compilation de l'expression rationnelle - %s" - -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Le cache possède un système de version incompatible" +msgid "Failed to mount '%s' to '%s'" +msgstr "Impossible de monter « %s » sur « %s »" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Erreur apparue lors du traitement de %s (%s%d)" +#: cmdline/apt-cdrom.cc:178 +#, fuzzy +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" +"Aucun CD n'a été détecté sur le point de montage par défaut.\n" +"Vous pouvez utiliser l'option --cdrom pour indiquer le point de montage du " +"CD-ROM. Voir la page de manuel d'apt-cdrom pour plus d'informations sur " +"l'auto-détection des CD et le point de montage." -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." msgstr "" -"Vous avez dépassé le nombre de noms de paquets que cette version d'APT est " -"capable de traiter." +"Veuillez répéter cette opération pour tous les disques de votre jeu de " +"cédéroms." -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Les paramètres ne sont pas appariés" + +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -"Vous avez dépassé le nombre de versions que cette version d'APT est capable " -"de traiter." +"Usage : apt-config [options] commande\n" +"\n" +"apt-config est un outil simple pour lire le fichier de configuration d'APT\n" +"\n" +"Commandes :\n" +" shell - Mode console\n" +" dump - Affiche la configuration\n" +"\n" +"Options :\n" +" -h Ce texte d'aide\n" +" -c=? Lit ce fichier de configuration\n" +" -o=? Spécifie une option de configuration, p. ex. -o dir::cache=/tmp\n" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" msgstr "" -"Vous avez dépassé le nombre de descriptions que cette version d'APT est " -"capable de traiter." +"Impossible de trouver de paquet correspondant à l'expression rationnelle " +"« %s »" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" msgstr "" -"Vous avez dépassé le nombre de dépendances que cette version d'APT est " -"capable de traiter." +"Impossible de trouver de paquet correspondant à l'expression rationnelle " +"« %s »" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" msgstr "" -"Le paquet %s %s n'a pu être trouvé lors du traitement des dépendances des " -"fichiers" +"Impossible de trouver de paquet correspondant à l'expression rationnelle " +"« %s »" -#: apt-pkg/pkgcachegen.cc:1211 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Impossible de localiser la liste des paquets sources %s" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Choix de « %s » comme paquet source à la place de « %s »\n" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Lecture des listes de paquets" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "La version « %s » indisponible du paquet « %s » est ignorée" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Assemblage des fichiers listés dans les champs Provides" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Impossible de trouver le paquet %s" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Unable to write to %s" -msgstr "Impossible d'écrire sur %s" +msgid "%s set to manually installed.\n" +msgstr "%s passé en « installé manuellement ».\n" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s passé en « installé automatiquement ».\n" + +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -"Erreur d'entrée/sortie lors de la sauvegarde du fichier de cache des sources" +"Cette commande est obsolète. Veuillez utiliser « apt-mark auto » et « apt-" +"mark manual »." -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "Envoi du scénario au solveur" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "" +"Erreur interne, la tentative de résolution du problème a cassé certaines " +"parties" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "Envoi d'une requête au solveur" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Impossible de verrouiller le répertoire de téléchargement" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "Préparation à la réception de la solution" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Vous devez spécifier au moins un paquet source" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "Échec du solveur externe sans message d'erreur adapté" - -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "Exécu tion du solveur externe" - -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "impossible de changer le nom, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Somme de contrôle de hachage incohérente" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Taille incohérente" - -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "L'opération %s n'est pas valable" +msgid "Unable to find a source package for %s" +msgstr "Impossible de trouver une source de paquet pour %s" -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:786 #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" -"Impossible de trouver l'entrée « %s » attendue dans le fichier « Release » : " -" ligne non valable dans sources.list ou fichier corrompu" - -#: apt-pkg/acquire-item.cc:1589 -#, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "" -"Impossible de trouver la comme de contrôle de « %s » dans le fichier Release" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"Aucune clé publique n'est disponible pour la/les clé(s) suivante(s) :\n" +"Note : la maintenance du paquet de « %s » est réalisée dans le système de " +"suivi de versions « %s » à l'adresse :\n" +"%s\n" -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:791 #, c-format msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -"Le fichier « Release » pour %s a expiré (plus valable depuis %s). Les mises " -"à jour depuis ce dépôt ne s'effectueront pas." +"Veuillez utiliser la commande :\n" +"bzr branch %s\n" +"pour récupérer les dernières mises à jour (éventuellement non encore " +"publiées) du paquet.\n" -#: apt-pkg/acquire-item.cc:1691 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Distribution en conflit : %s (%s attendu, mais %s obtenu)" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Saut du téléchargement du fichier « %s », déjà téléchargé\n" -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Une erreur s'est produite lors du contrôle de la signature. Le dépôt n'est " -"pas mis à jour et les fichiers d'index précédents seront utilisés. Erreur de " -"GPG : %s : %s\n" +msgid "Couldn't determine free space in %s" +msgstr "Impossible de déterminer l'espace disponible sur %s" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:882 #, c-format -msgid "GPG error: %s: %s" -msgstr "Erreur de GPG : %s : %s" +msgid "You don't have enough free space in %s" +msgstr "Pas assez d'espace disponible sur %s" -#: apt-pkg/acquire-item.cc:1859 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"Impossible de localiser un fichier du paquet %s. Cela signifie que vous " -"devrez corriger ce paquet vous-même (absence d'architecture)." +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Nécessité de prendre %so/%so dans les sources.\n" -#: apt-pkg/acquire-item.cc:1925 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" -"Impossible de trouver une source de téléchargement de la version « %s » de " -"« %s »" +msgid "Need to get %sB of source archives.\n" +msgstr "Nécessité de prendre %so dans les sources.\n" -#: apt-pkg/acquire-item.cc:1983 +#: cmdline/apt-get.cc:902 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Les fichiers d'index des paquets sont corrompus. Aucun champ « Filename: » " -"pour le paquet %s." +msgid "Fetch source %s\n" +msgstr "Récupération des sources %s\n" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Échec lors de la récupération de quelques archives." + +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Téléchargement achevé et dans le mode téléchargement uniquement" + +#: cmdline/apt-get.cc:950 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Le bloc de fournisseur %s ne comporte pas d'empreinte" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Saut du décompactage des paquets sources déjà décompactés dans %s\n" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: cmdline/apt-get.cc:963 #, c-format -msgid "List directory %spartial is missing." -msgstr "Le répertoire %spartial pour les listes n'existe pas." +msgid "Unpack command '%s' failed.\n" +msgstr "La commande de décompactage « %s » a échoué.\n" -#: apt-pkg/acquire.cc:91 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Le répertoire d'archive %spartial n'existe pas." +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Veuillez vérifier si le paquet dpkg-dev est installé.\n" -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Unable to lock directory %s" -msgstr "Impossible de verrouiller le répertoire %s" +msgid "Build command '%s' failed.\n" +msgstr "La commande de construction « %s » a échoué.\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Échec du processus fils" + +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "" +"Il faut spécifier au moins un paquet pour vérifier les dépendances de " +"construction" + +#: cmdline/apt-get.cc:1055 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Téléchargement du fichier %li sur %li (%s restant)" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" +"Aucune information sur l'architecture n'est disponible pour %s. Veuillez " +"consulter la section à propos de APT::Architectures dans la page de manuel " +"apt.conf(5)." -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Téléchargement du fichier %li sur %li" +msgid "Unable to get build-dependency information for %s" +msgstr "Impossible d'obtenir les dépendances de construction pour %s" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Impossible de récupérer %s %s\n" +msgid "%s has no build depends.\n" +msgstr "%s n'a pas de dépendance de construction.\n" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#: cmdline/apt-get.cc:1272 +#, c-format msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Le téléchargement de quelques fichiers d'index a échoué, ils ont été " -"ignorés, ou les anciens ont été utilisés à la place." - -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" msgstr "" -"Vous devez insérer quelques adresses « sources » dans votre sources.list" +"La dépendance %s vis-à-vis de %s ne peut être satisfaite car %s n'est pas " +"autorisé avec les paquets « %s »." -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -"La valeur « %s » n'est pas valable pour APT::Default-Release car cette " -"version ne fait pas partie des sources disponibles." +"La dépendance %s vis-à-vis de %s ne peut être satisfaite car le paquet %s ne " +"peut être trouvé" -#: apt-pkg/policy.cc:422 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -"Enregistrement non valable dans le fichier de préférences %s, aucune entrée " -"« Package »." +"Impossible de satisfaire la dépendance %s pour %s : le paquet installé %s " +"est trop récent" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1352 #, c-format -msgid "Did not understand pin type %s" -msgstr "Type d'épinglage %s inconnu" - -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Aucune priorité (ou zéro) n'a été spécifiée pour l'épinglage" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"La dépendance %s vis-à-vis de %s ne peut être satisfaite car aucune version " +"disponible du paquet %s ne peut satisfaire les prérequis de version." -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1358 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -"Impossible d'effectuer la configuration immédiate de « %s ». Veuillez " -"consulter la page de manuel apt.conf(5) et notamment la section à propos de " -"APT::Immediate-Configure, pour plus d'informations. (%d)" +"La dépendance %s vis-à-vis de %s ne peut être satisfaite car le paquet %s " +"n'a pas de version disponible." -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Could not configure '%s'. " -msgstr "Impossible de configurer « %s »." +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Impossible de satisfaire les dépendances %s pour %s : %s" -#: apt-pkg/packagemanager.cc:583 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +msgid "Build-dependencies for %s could not be satisfied." msgstr "" -"Cette installation va temporairement nécessiter l'enlèvement du paquet " -"essentiel %s en raison d'une boucle entre les champs Conflicts et Pre-" -"Depends. C'est souvent une mauvaise chose, mais si vous souhaitez réellement " -"le faire, activez l'option APT::Force-LoopBreak." +"Les dépendances de compilation pour %s ne peuvent pas être satisfaites." -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Impossible d'activer les dépendances de construction" + +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 #, c-format -msgid "Line %u too long in source list %s." -msgstr "La ligne %u du fichier des listes de sources %s est trop longue." +msgid "Changelog for %s (%s)" +msgstr "Journal des modifications pour %s (%s)" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Démontage du cédérom...\n" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Modules reconnus :" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Utilisation du point de montage %s pour le cédérom\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Attente du disque...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Montage du cédérom...\n" - -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identification..." - -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Étiquette stockée : %s\n" - -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Examen du disque à la recherche de fichiers d'index...\n" - -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"%zu index de paquets trouvés, %zu index de sources, %zu index de traductions " -"et %zu signatures\n" - -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"Aucun fichier de paquets trouvé. Ceci n'est peut-être pas un disque Debian " -"ou bien l'architecture est-elle incorrecte." - -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Étiquette « %s » trouvée\n" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Ce nom n'est pas valable, veuillez recommencer.\n" - -#: apt-pkg/cdrom.cc:817 -#, c-format +#: cmdline/apt-get.cc:1633 msgid "" -"This disc is called: \n" -"'%s'\n" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"Ce disque s'appelle :\n" -"« %s »\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Copie des listes de paquets..." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Écriture de la nouvelle liste de sources\n" +"Usage : apt-get [options] commandes\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get est une interface simple en ligne de commande servant à\n" +"télécharger et à installer les paquets. Les commandes les plus\n" +"fréquemment employées sont update et install.\n" +"\n" +"Commandes :\n" +" update - Récupère les nouvelles listes de paquets\n" +" upgrade - Réalise une mise à jour\n" +" install - Installe de nouveaux paquets (pkg1 est libc6 et non libc6.deb)\n" +" remove - Supprime des paquets\n" +" autoremove - Supprime tous les paquets installés automatiquement\n" +" purge - Supprime des paquets et leurs fichiers de configuration\n" +" source - Télécharge les archives de sources\n" +" build-dep - Configure build-dependencies pour les paquets sources\n" +" dist-upgrade - Met à jour la distribution, reportez-vous à apt-get(8)\n" +" dselect-upgrade - Suit les sélections de dselect\n" +" clean - Supprime dans le cache local tous les fichiers téléchargés\n" +" autoclean - Supprime dans le cache local les fichiers inutiles\n" +" check - Vérifie qu'il n'y a pas de rupture de dépendances\n" +" changelog - Télécharge et affiche le journal des modifications\n" +" («  changelog ») du paquet indiqué\n" +" download - Télécharge le paquet binaire dans le répertoire courant\n" +"\n" +"Options :\n" +" -h Ce texte d'aide\n" +" -q Message de sortie enregistrable - aucun indicateur de progression\n" +" -qq Aucun message de sortie, exceptés les messages d'erreur\n" +" -d Simple téléchargement - n'installe pas ou ne décompacte pas les " +"archives\n" +" -s N'agit pas. Réalise uniquement une simulation de commande\n" +" -y Répond oui à toutes les questions et n'interroge pas l'utilisateur\n" +" -f Tente de poursuivre si le contrôle d'intégrité échoue\n" +" -m Tente de poursuivre si les archives ne sont pas localisables\n" +" -u Affiche une liste des paquets mis à jour\n" +" -b Construit la source du paquet après l'avoir récupérée\n" +" -V Affiche les numéros des versions de façon détaillée\n" +" -c=? Lit ce fichier de configuration\n" +" -o=? Place une option de configuration arbitraire, ex. -o dir::cache=/tmp\n" +"Reportez-vous aux pages de manuels d'apt-get(8), sources.list(5) et\n" +"apt.conf(5) pour plus d'informations et d'options.\n" +" Cet APT a les « Super Cow Powers »\n" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Les entrées de listes de sources pour ce disque sont :\n" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Vous devez spécifier au moins un paquet source" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"Le paquet %s doit être réinstallé, mais il est impossible de trouver son " -"archive." -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-helper.cc:66 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Erreur, pkgProblem::Resolve a généré des ruptures, ce qui a pu être causé " -"par les paquets devant être gardés en l'état." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Impossible de corriger les problèmes, des paquets défectueux sont en mode " -"« garder en l'état »." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Construction de l'arbre des dépendances" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Versions possibles" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Génération des dépendances" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Lecture des informations d'état" -#: apt-pkg/depcache.cc:250 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Failed to open StateFile %s" -msgstr "Impossible d'ouvrir le fichier d'état %s" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s ne peut pas être marqué car il n'est pas installé.\n" -#: apt-pkg/depcache.cc:256 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Erreur d'écriture du fichier d'état temporaire %s" +msgid "%s was already set to manually installed.\n" +msgstr "%s était déjà marqué comme installé manuellement.\n" -#: apt-pkg/tagfile.cc:140 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Impossible de traiter le fichier %s (1)" +msgid "%s was already set to automatically installed.\n" +msgstr "%s était déjà marqué comme installé automatiquement.\n" -#: apt-pkg/tagfile.cc:237 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Impossible de traiter le fichier %s (2)" +msgid "%s was already set on hold.\n" +msgstr "%s était déjà marqué comme figé (« hold »).\n" -#: apt-pkg/cacheset.cc:489 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "La version « %s » de « %s » est introuvable" +msgid "%s was already not hold.\n" +msgstr "%s était déjà marqué comme non figé.\n" -#: apt-pkg/cacheset.cc:492 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "La version « %s » de « %s » n'a pu être trouvée" +msgid "Waited for %s but it wasn't there" +msgstr "A attendu %s mais il n'était pas présent" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Unable to locate package %s" -msgstr "Impossible de trouver le paquet %s" +msgid "%s set on hold.\n" +msgstr "%s passé en figé (« hold »).\n" -#: apt-pkg/cacheset.cc:603 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "Couldn't find task '%s'" -msgstr "Impossible de trouver la tâche « %s »" +msgid "Canceled hold on %s.\n" +msgstr "Annulation de l'état figé pour %s.\n" -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -"Impossible de trouver de paquet correspondant à l'expression rationnelle " -"« %s »" +"Échec de l'exécution de dpkg. Possédez-vous les privilèges du " +"superutilisateur ?" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" +#: cmdline/apt-mark.cc:392 +#, fuzzy +msgid "" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -"Impossible de trouver de paquet correspondant à l'expression rationnelle " -"« %s »" +"Utilisation: apt-mark [options] {auto|manual} paquet 1 [paquet2 ...]\n" +"\n" +"apt-mark est une interface simple, en ligne de commande, qui permet\n" +"de marquer des paquets comme installés manuellement ou automatiquement.\n" +"Cette commande permet également d'afficher cet état.\n" +"\n" +"Commandes :\n" +" auto - marquer les paquets indiqués comme installés automatiquement\n" +" manual - marquer les paquets indiqués comme installés manuellement\n" +"\n" +"Options:\n" +" -h Affiche la présente aide.\n" +" -q Affichage journalisable - pas de barre de progression\n" +" -qq Pas d'affichage à part les erreurs\n" +" -s Mode simulation : aucune action effectuée.\n" +" Affiche simplement ce qui serait effectué.\n" +" -f lecture/écriture des états dans le fichier indiqué\n" +" -c=? lecture du fichier de configuration indiqué\n" +" -o=? utilisation d'une option de configuration,\n" +" p. ex. -o dir::cache=/tmp\n" +"Veuillez consulter les pages de manuel apt-mark(8) et apt.conf(5)\n" +"pour plus d'informations." -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -"Impossible de choisir les versions du paquet « %s » qui n'est qu'un paquet " -"virtuel" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: methods/cdrom.cc:203 #, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Impossible de lire la base de données %s du cédérom" + +#: methods/cdrom.cc:212 msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" msgstr "" -"Impossible de choisir une version installée ou candidate du paquet « %s » " -"qui n'en n'a aucune" +"Veuillez utiliser apt-cdrom afin de faire reconnaître ce cédérom par votre " +"APT. apt-get update ne peut être employé pour ajouter de nouveaux cédéroms" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"Impossible de choisir une nouvelle version du paquet « %s » qui n'est qu'un " -"paquet virtuel" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Mauvais cédérom" -#: apt-pkg/cacheset.cc:655 +#: methods/cdrom.cc:249 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "" -"Impossible de choisir une version candidate du paquet « %s » qui n'en n'a pas" +"Impossible de démonter le cédérom dans %s, il doit toujours être en cours " +"d'utilisation." -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" -"Impossible de choisir la version installée du paquet « %s » qui n'est pas " -"installé" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disque non trouvé." -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "Impossible d'analyser le fichier Release %s" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Fichier non trouvé" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "Pas de sections dans le fichier Release %s" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Impossible de statuer" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Pas d'entrée de hachage dans le fichier Release %s" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Impossible de modifier l'heure " -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Entrée « Valid-Until » non valable dans le fichier Release %s" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Liens invalides, les liens locaux ne doivent pas débuter avec //" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Entrée « Date » non valable dans le fichier Release %s" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Connexion en cours" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Ligne %lu mal formée dans la liste des sources %s (analyse de l'URI)" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Impossible de déterminer le nom de la machine distante" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"Ligne %lu mal formée dans la liste des sources %s (impossible d'analyser " -"[option])" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Impossible de déterminer le nom local" -#: apt-pkg/sourcelist.cc:173 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "" -"Ligne %lu mal formée dans la liste de sources %s ([option] trop courte)" +msgid "The server refused the connection and said: %s" +msgstr "Le serveur a refusé notre connexion et a répondu : %s" -#: apt-pkg/sourcelist.cc:184 +#: methods/ftp.cc:225 #, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "" -"Ligne %lu mal formée dans la liste des sources %s ([%s] n'est pas une " -"affectation)" +msgid "USER failed, server said: %s" +msgstr "USER incorrect, le serveur a répondu : %s" -#: apt-pkg/sourcelist.cc:190 +#: methods/ftp.cc:232 #, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgid "PASS failed, server said: %s" +msgstr "PASS incorrect, le serveur a répondu : %s" + +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -"Ligne %lu mal formée dans la liste des sources %s ([%s] n'a pas de clé)" +"Un serveur proxy a été spécifié, mais aucun script de connexion, Acquire::" +"ftp::ProxyLogin est vide." -#: apt-pkg/sourcelist.cc:193 +#: methods/ftp.cc:280 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgid "Login script command '%s' failed, server said: %s" msgstr "" -"Ligne %lu mal formée dans la liste des sources %s ([%s] la clé %s n'a pas de " -"valeur)" +"La commande « %s » du script de connexion a échoué, le serveur a répondu : %s" -#: apt-pkg/sourcelist.cc:206 +#: methods/ftp.cc:306 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Ligne %lu mal formée dans le fichier de source %s (URI)" +msgid "TYPE failed, server said: %s" +msgstr "Échec de TYPE, le serveur a répondu : %s" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Ligne %lu mal formée dans la liste de sources %s (distribution)" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Dépassement du délai de connexion" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Ligne %lu mal formée dans la liste des sources %s (analyse de l'URI)" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Le serveur a fermé la connexion" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "" -"Ligne %lu mal formée dans la liste des sources %s (distribution absolue)" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Erreur de lecture" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "" -"Ligne %lu mal formée dans la liste des sources %s (analyse de distribution)" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Une réponse a fait déborder le tampon." -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Ouverture de %s" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Corruption du protocole" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Ligne %u mal formée dans la liste des sources %s (type)" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Erreur d'écriture" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "" -"Le type « %s » est inconnu sur la ligne %u dans la liste des sources %s" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Impossible de créer un connecteur" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" msgstr "" -"Le type « %s » est inconnu sur la ligne %u dans la liste des sources %s" +"Impossible de se connecter sur le port de données, délai de connexion dépassé" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Installation de %s" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Échec" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Configuration de %s" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Impossible de se connecter au port en mode passif." -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Suppression de %s" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "gettaddrinfo n'a pu obtenir un port d'écoute" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "Suppression complète de %s" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Impossible de se connecter à un port" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "Disparition de %s constatée" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Impossible d'écouter sur le port" -#: apt-pkg/deb/dpkgpm.cc:100 +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Impossible de déterminer le nom du port" + +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Impossible d'envoyer la commande PORT" + +#: methods/ftp.cc:802 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Exécution des actions différées (« trigger ») de %s" +msgid "Unknown address family %u (AF_*)" +msgstr "Famille d'adresses %u inconnue (AF_*)" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#: methods/ftp.cc:811 #, c-format -msgid "Directory '%s' missing" -msgstr "Répertoire %s inexistant" +msgid "EPRT failed, server said: %s" +msgstr "EPRT a échoué, le serveur a répondu : %s" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Délai de connexion au port de données dépassé" + +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Impossible d'accepter une connexion" + +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problème de hachage du fichier" + +#: methods/ftp.cc:890 #, c-format -msgid "Could not open file '%s'" -msgstr "Impossible d'ouvrir le fichier « %s »" +msgid "Unable to fetch file, server said '%s'" +msgstr "Impossible de récupérer le fichier, le serveur a répondu « %s »" -#: apt-pkg/deb/dpkgpm.cc:989 +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Pas de réponse du port données dans les délais" + +#: methods/ftp.cc:935 #, c-format -msgid "Preparing %s" -msgstr "Préparation de %s" +msgid "Data transfer failed, server said '%s'" +msgstr "Le transfert de données a échoué, le serveur a répondu « %s »" -#: apt-pkg/deb/dpkgpm.cc:990 +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Requête" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Impossible d'invoquer " + +#: methods/connect.cc:76 #, c-format -msgid "Unpacking %s" -msgstr "Décompression de %s" +msgid "Connecting to %s (%s)" +msgstr "Connexion à %s (%s)" -#: apt-pkg/deb/dpkgpm.cc:995 +#: methods/connect.cc:87 #, c-format -msgid "Preparing to configure %s" -msgstr "Préparation de la configuration de %s" +msgid "[IP: %s %s]" +msgstr "[IP : %s %s]" -#: apt-pkg/deb/dpkgpm.cc:997 +#: methods/connect.cc:94 #, c-format -msgid "Installed %s" -msgstr "%s installé" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Impossible de créer de connexion pour %s (f=%u t=%u p=%u)" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: methods/connect.cc:100 #, c-format -msgid "Preparing for removal of %s" -msgstr "Préparation de la suppression de %s" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Impossible d'initialiser la connexion à %s: %s (%s)." -#: apt-pkg/deb/dpkgpm.cc:1004 +#: methods/connect.cc:108 #, c-format -msgid "Removed %s" -msgstr "%s supprimé" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Connexion à %s: %s (%s) impossible, délai de connexion dépassé" -#: apt-pkg/deb/dpkgpm.cc:1009 +#: methods/connect.cc:126 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Préparation de la suppression complète de %s" +msgid "Could not connect to %s:%s (%s)." +msgstr "Connexion à %s: %s (%s) impossible." -#: apt-pkg/deb/dpkgpm.cc:1010 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Completely removed %s" -msgstr "%s complètement supprimé" +msgid "Connecting to %s" +msgstr "Connexion à %s" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: methods/connect.cc:180 methods/connect.cc:199 +#, c-format +msgid "Could not resolve '%s'" +msgstr "Ne parvient pas à résoudre « %s »" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Impossible d'écrire sur %s" +#: methods/connect.cc:205 +#, c-format +msgid "Temporary failure resolving '%s'" +msgstr "Erreur temporaire de résolution de « %s »" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: methods/connect.cc:209 +#, c-format +msgid "System error resolving '%s:%s'" +msgstr "Erreur système lors de la résolution de « %s:%s »" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: methods/connect.cc:211 +#, c-format +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" +"Quelque chose d'imprévisible est survenu lors de la détermination de « %s:" +"%s » (%i - %s)" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/connect.cc:258 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "A attendu %s mais il n'était pas présent" - -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "L'opération a été interrompue avant de se terminer" - -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "Aucun rapport « apport » écrit car MaxReports a déjà été atteint" - -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "problème de dépendances : laissé non configuré" +msgid "Unable to connect to %s:%s:" +msgstr "Impossible de se connecter à %s:%s :" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: methods/gpgv.cc:168 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Aucun rapport « apport » n'a été créé car le message d'erreur indique une " -"erreur consécutive à un échec précédent." +"Erreur interne : signature correcte, mais il est impossible de déterminer " +"l'empreinte de la clé." -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Aucun rapport « apport » n'a été créé car un disque plein a été signalé" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Au moins une signature non valable a été rencontrée." -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"Aucun « apport » n'a été créé car une erreur de dépassement de capacité " -"mémoire a été signalée" +"Impossible d'exécuter « gpgv » pour contrôler la signature (veuillez " +"vérifier si gpgv est installé)." -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 +#, c-format msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"Aucun rapport « apport » n'a été créé car un disque plein a été signalé" +"Le fichier signé en clair n'est pas valable, ce qui a été reçu est « %s ». " +"Peut-être le réseau nécessite-t-il une authentification." -#: apt-pkg/deb/dpkgpm.cc:1685 +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Erreur inconnue à l'exécution de gpgv" + +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Les signatures suivantes ne sont pas valables :\n" + +#: methods/gpgv.cc:231 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -"Aucun « apport » n'a été créé car une erreur d'entrée/sortie de dpkg a été " -"signalée" +"Les signatures suivantes n'ont pas pu être vérifiées car la clé publique " +"n'est pas disponible :\n" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"Impossible de verrouiller le répertoire d'administration (%s). Il est " -"possible qu'un autre processus l'utilise." +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Les fichiers vides ne peuvent être des archives valables" -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "" -"Impossible de verrouiller le répertoire d'administration (%s). Avez-vous les " -"privilèges du superutilisateur ?" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Erreur d'écriture sur le fichier" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" -"dpkg a été interrompu. Il est nécessaire d'utiliser « %s » pour corriger le " -"problème." +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Erreur de lecture depuis le serveur distant et clôture de la connexion" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Non verrouillé" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Erreur de lecture du serveur" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lid %lih %limin %lis" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Erreur d'écriture sur un fichier" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%lih %limin %lis" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Sélection défaillante" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%limin %lis" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Délai de connexion dépassé" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%lis" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Erreur d'écriture du fichier de sortie" -#: apt-pkg/contrib/strutl.cc:1243 -#, c-format -msgid "Selection %s not found" -msgstr "La sélection %s n'a pu être trouvée" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Attente des fichiers d'en-tête" -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Verrou non utilisé pour le fichier %s en lecture seule" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Mauvaise ligne d'en-tête" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Impossible d'ouvrir le fichier verrou %s" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Le serveur http a envoyé une réponse dont l'en-tête est invalide" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Verrou non utilisé pour le fichier %s se situant sur une partition nfs" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "Le serveur http a envoyé un en-tête « Content-Length » invalide" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Impossible d'obtenir le verrou %s" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "Le serveur http a envoyé un en-tête « Content-Range » invalide" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" -"La liste des fichiers ne peut pas être créée car « %s » n'est pas un " -"répertoire" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Ce serveur http possède un support des limites non-valide" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" -"« %s » dans le répertoire « %s » a été ignoré car ce n'est pas un fichier " -"ordinaire" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Format de date inconnu" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Mauvais en-tête de donnée" + +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Échec de la connexion" + +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Erreur interne" + +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -"« %s » dans le répertoire « %s » a été ignoré car il n'utilise pas " -"d'extension" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Erreur interne, « InstallPackages » appelé avec des paquets cassés." + +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." msgstr "" -"« %s » dans le répertoire « %s » a été ignoré car il utilise une extension " -"non valable" +"Les paquets doivent être enlevés mais la désinstallation est désactivée." -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Le sous-processus %s a commis une violation d'accès mémoire" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Erreur interne. Le tri a été interrompu." -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "Le sous-processus %s a reçu le signal %u" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Étrangement, les tailles ne correspondent pas. Veuillez le signaler par " +"courriel à apt@packages.debian.org." -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Le sous-processus %s a renvoyé un code d'erreur (%u)" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Il est nécessaire de prendre %so/%so dans les archives.\n" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Le sous-processus %s s'est arrêté prématurément" - -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Erreur d'écriture" +msgid "Need to get %sB of archives.\n" +msgstr "Il est nécessaire de prendre %so dans les archives.\n" -#: apt-pkg/contrib/fileutl.cc:913 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problème de fermeture du fichier gzip %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "" +"Après cette opération, %so d'espace disque supplémentaires seront utilisés.\n" -#: apt-pkg/contrib/fileutl.cc:1101 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "Could not open file %s" -msgstr "Impossible d'ouvrir le fichier %s" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Après cette opération, %so d'espace disque seront libérés.\n" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#: apt-private/private-install.cc:200 #, c-format -msgid "Could not open file descriptor %d" -msgstr "Impossible d'ouvrir le descripteur de fichier %d" +msgid "You don't have enough free space in %s." +msgstr "Pas assez d'espace disponible sur %s" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Impossible de créer un sous-processus IPC" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Il y a des problèmes et -y a été employé sans --force-yes" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Impossible d'exécuter la compression " +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "" +"L'option --trivial-only a été indiquée mais il ne s'agit pas d'une opération " +"triviale." -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Erreur de lecture" +# The space before the exclamation mark must not be a non-breaking space; this +# sentence is supposed to be typed by a user who cannot see the difference. +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Oui, faites ce que je vous dis !" -#: apt-pkg/contrib/fileutl.cc:1514 +#: apt-private/private-install.cc:222 #, c-format -msgid "read, still have %llu to read but none left" -msgstr "lu(s), %llu restant à lire, mais rien n'est disponible" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Vous êtes sur le point de faire quelque chose de potentiellement dangereux\n" +"Pour continuer, tapez la phrase « %s »\n" +" ?]" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "écrit(s), %llu restant à écrire, mais l'écriture est impossible" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Annulation." -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Problème de fermeture du fichier %s" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Souhaitez-vous continuer ?" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problème de renommage du fichier %s en %s" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Certains fichiers n'ont pu être téléchargés." -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "Problème de suppression du lien %s" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"Impossible de récupérer quelques archives, peut-être devrez-vous lancer apt-" +"get update ou essayer avec --fix-missing ?" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problème de synchronisation du fichier" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "" +"l'option --fix-missing et l'échange de support ne sont pas encore reconnus." -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Erreur !" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Impossible de corriger le fait que les paquets manquent." -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Fait" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Annulation de l'installation." -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "…" +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"Le paquet suivant a disparu du système car tous ses fichiers\n" +"ont été remplacés par d'autres paquets :" +msgstr[1] "" +"Les paquets suivants ont disparu du système car tous leurs fichiers\n" +"ont été remplacés par d'autres paquets :" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, c-format -msgid "%c%s... %u%%" -msgstr "%c%s… %u%%" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "" +"Note : cette opération volontaire (effectuée par dpkg) est automatique." -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Impossible de mapper un fichier vide en mémoire" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "" +"Aucune suppression n'est censée se produire : impossible de lancer " +"« Autoremover »" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Impossible de dupliquer le descripteur de fichier %i" +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" +"Il semble que l'outil de suppression automatique (« Autoremover ») ait\n" +"supprimé quelque chose, ce qui est inattendu. Veuillez envoyer un\n" +"rapport de bogue pour le paquet « apt »." -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Impossible de réaliser un mapping de %llu octets en mémoire" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "L'information suivante devrait vous aider à résoudre la situation : " -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Impossible de fermer la « mmap »" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "" +"Erreur interne, l'outil de suppression automatique a cassé quelque chose." -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Impossible de synchroniser la « mmap »" +#: apt-private/private-install.cc:513 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "" +"Le paquet suivant a été installé automatiquement et n'est plus nécessaire :" +msgstr[1] "" +"Les paquets suivants ont été installés automatiquement et ne sont plus " +"nécessaires :" -#: apt-pkg/contrib/mmap.cc:290 +#: apt-private/private-install.cc:517 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Impossible de réaliser un mapping de %lu octets en mémoire" +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "" +"%lu paquet a été installé automatiquement et n'est plus nécessaire.\n" +msgstr[1] "" +"%lu paquets ont été installés automatiquement et ne sont plus nécessaires.\n" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Échec de la troncature du fichier" +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Veuillez utiliser « apt-get autoremove » pour le supprimer." +msgstr[1] "Veuillez utiliser « apt-get autoremove » pour les supprimer." -#: apt-pkg/contrib/mmap.cc:341 -#, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -"La zone dynamique d'allocation mémoire (« Dynamic MMap ») n'a plus de place. " -"Vous devriez augmenter la taille de APT::Cache-Start, dont la valeur " -"actuelle est de %lu (voir « man 5 apt.conf »)." +"Vous pouvez lancer « apt-get -f install » pour corriger ces problèmes :" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format +#: apt-private/private-install.cc:614 msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"Impossible d'augmenter la taille de la « mmap » car la limite de %lu octets " -"est déjà atteinte." +"Dépendances non satisfaites. Essayez « apt-get -f install » sans paquet\n" +"(ou indiquez une solution)." -#: apt-pkg/contrib/mmap.cc:449 +#: apt-private/private-install.cc:638 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." msgstr "" -"Impossible d'augmenter la taille de la « mmap » car l'augmentation " -"automatique a été désactivée par une option utilisateur." - -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Impossible de localiser le point de montage %s" +"Certains paquets ne peuvent être installés. Ceci peut signifier\n" +"que vous avez demandé l'impossible, ou bien, si vous utilisez\n" +"la distribution unstable, que certains paquets n'ont pas encore\n" +"été créés ou ne sont pas sortis d'Incoming." -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Impossible d'accéder au cédérom." +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Paquets défectueux" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Type d'abréviation non reconnue : « %c »" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Les paquets supplémentaires suivants seront installés : " -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Ouverture du fichier de configuration %s" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Paquets suggérés :" -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Erreur syntaxique %s:%u : le bloc commence sans aucun nom." +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Paquets recommandés :" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-private/private-install.cc:825 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Erreur syntaxique %s:%u : balise mal formée" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Passe %s, il est déjà installé et la mise à jour n'est pas prévue.\n" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-private/private-install.cc:829 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Erreur syntaxique %s:%u : valeur suivie de choses illicites" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"%s ignoré : il n'est pas installé et seules des mises à jour ont été " +"demandées.\n" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-private/private-install.cc:841 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" -"Erreur syntaxique %s:%u : ces directives ne peuvent être appliquées qu'au " -"niveau le plus haut" +"La réinstallation de %s est impossible, il ne peut pas être téléchargé.\n" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-private/private-install.cc:846 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Erreur syntaxique %s:%u: trop de niveaux d'imbrication d'includes" +msgid "%s is already the newest version.\n" +msgstr "%s est déjà la plus récente version disponible.\n" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-private/private-install.cc:894 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Erreur syntaxique %s:%u : inclus à partir d'ici" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Version choisie « %s » (%s) pour « %s »\n" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-private/private-install.cc:899 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Erreur syntaxique %s:%u : directive « %s » non tolérée" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Version choisie « %s » (%s) pour « %s » à cause de « %s »\n" -#: apt-pkg/contrib/configuration.cc:900 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" msgstr "" -"Erreur de syntaxe %s:%u : la directive « clear » a besoin d'un arbre " -"d'options comme paramètre" - -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Erreur syntaxique %s:%u : valeur aberrante à la fin du fichier" +"Le paquet « %s » n'est pas installé, et ne peut donc être supprimé. Peut-" +"être vouliez-vous écrire « %s » ?\n" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-private/private-install.cc:947 #, c-format -msgid "No keyring installed in %s." -msgstr "Pas de porte-clés installé dans %s." +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Le paquet « %s » n'est pas installé, et ne peut donc être supprimé\n" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "L'option « %c » de la ligne de commande [d'origine %s] est inconnue." +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-private/private-list.cc:164 #, c-format -msgid "Command line option %s is not understood" -msgstr "L'option %s de la ligne de commande n'est pas reconnue" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "L'option %s de la ligne de commande n'est pas une valeur booléenne" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Correction des dépendances..." -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "L'option %s nécessite un paramètre." +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " a échoué." -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Option %s : l'item configuration doit être spécifiée avec un =<val>." +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Impossible de corriger les dépendances" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "L'option %s prend un nombre entier en paramètre, et non « %s »" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Impossible de minimiser le nombre des paquets mis à jour" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "L'option « %s » est trop longue" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Fait" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "La signification %s n'est pas comprise, veuillez essayer vrai ou faux." +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Vous pouvez lancer « apt-get -f install » pour corriger ces problèmes." -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "L'opération %s n'est pas valable" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Dépendances manquantes. Essayez d'utiliser l'option -f." -#: cmdline/apt-cache.cc:149 -#, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Le paquet %s de version %s contient une dépendance absente :\n" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Nombre total de paquets : " +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Installé]" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Nombre total de structures de paquets : " +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Installé]" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Paquets ordinaires : " +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Paquets entièrement virtuels : " +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Installé]" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Paquets virtuels simples : " +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Installé]" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Paquets virtuels mixtes : " +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Manquants : " +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Nombre de versions distinctes : " +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "mais %s est installé" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Nombre de descriptions distinctes : " +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "mais %s devra être installé" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Nombre de dépendances : " +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "mais il n'est pas installable" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Nombre de relations version/fichier : " +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "mais c'est un paquet virtuel" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Nombre de relations description/fichier : " +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "mais il n'est pas installé" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Nombre de relations « Provides » : " +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "mais ne sera pas installé" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Nombre de motifs rationnels : " +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " ou" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Espace occupé par les versions des dépendances : " +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Les paquets suivants contiennent des dépendances non satisfaites :" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Espace disque gaspillé : " +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Les NOUVEAUX paquets suivants seront installés :" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Total de l'espace attribué : " +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Les paquets suivants seront ENLEVÉS :" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Fichier %s désynchronisé." +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Les paquets suivants ont été conservés :" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Aucun paquet n'a été trouvé" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Les paquets suivants seront mis à jour :" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Vous devez fournir au moins un motif de recherche" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Les paquets suivants seront mis à une VERSION INFÉRIEURE :" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "Cette commande est obsolète. Veuillez utiliser « apt-mark showauto »." +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Les paquets retenus suivants seront changés :" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Fichiers du paquet :" +#: apt-private/private-output.cc:668 +#, c-format +msgid "%s (due to %s) " +msgstr "%s (en raison de %s) " -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Le cache est désynchronisé, impossible de référencer un fichier" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"ATTENTION : Les paquets essentiels suivants vont être enlevés.\n" +"Vous NE devez PAS faire ceci, à moins de savoir exactement ce\n" +"que vous êtes en train de faire." -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Paquets épinglés :" +#: apt-private/private-output.cc:707 +#, c-format +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu mis à jour, %lu nouvellement installés, " -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(non trouvé)" +#: apt-private/private-output.cc:711 +#, c-format +msgid "%lu reinstalled, " +msgstr "%lu réinstallés, " -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Installé : " +#: apt-private/private-output.cc:713 +#, c-format +msgid "%lu downgraded, " +msgstr "%lu remis à une version inférieure, " -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidat : " +#: apt-private/private-output.cc:715 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu à enlever et %lu non mis à jour.\n" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(aucun)" +#: apt-private/private-output.cc:719 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "%lu partiellement installés ou enlevés.\n" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Épinglage de paquet : " +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[O/n]" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Table de version :" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[o/N]" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s pour %s compilé sur %s %s\n" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "O" -#: cmdline/apt-cache.cc:1749 -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" -msgstr "" -"Usage : apt-cache [options] commande\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache est un outil de bas niveau pour manipuler les fichiers de cache\n" -"pour les binaires, et pour en obtenir des informations.\n" -"\n" -"Commandes :\n" -" gencaches - Construit le cache des sources et celui des binaires\n" -" showpkg - Affiche quelques informations générales pour un unique paquet\n" -" showsrc - Affiche les enregistrements des sources\n" -" stats - Affiche quelques statistiques de base\n" -" dump - Affiche la totalité des fichiers dans un formulaire succinct\n" -" dumpavail - Affiche une liste de fichiers disponibles sur la sortie " -"standard\n" -" unmet - Affiche les dépendances manquantes\n" -" search - Cherche une expression rationnelle dans la liste des paquets\n" -" show - Affiche la description du paquet\n" -" depends - Affiche toutes les dépendances d'un paquet\n" -" rdepends - Affiche les dépendances inverses d'un paquet\n" -" pkgnames - Liste le nom de tous les paquets du système\n" -" dotty - Génère un graphe des paquets pour GraphViz\n" -" xvcg - Génère un graphe des paquets pour xvcg\n" -" policy - Affiche l'épinglage (Pin) en vigueur\n" -"\n" -"Options :\n" -" -h Ce texte d'aide\n" -" -p=? Le cache des paquets\n" -" -s=? Le cache des sources\n" -" -q Enlève l'indicateur de progression\n" -" -i Affiche seulement les dépendances importantes pour la commande " -"« unmet »\n" -" -c=? Lit ce fichier de configuration\n" -" -o=? Spécifie une option de configuration, p. ex. -o dir::cache=/tmp\n" -"Veuillez consulter les pages de manuel de apt-cache(8) et apt.conf(5) pour " -"plus\n" -"d'informations.\n" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "" -"Veuillez indiquer le nom de ce disque, par exemple « Debian 5.0.3 Disk 1 »" +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Erreur de compilation de l'expression rationnelle - %s" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "" -"Veuillez insérer un disque dans le lecteur et appuyez sur la touche Entrée" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "La commande de mise à jour ne prend pas de paramètre" -#: cmdline/apt-cdrom.cc:139 +#: apt-private/private-update.cc:90 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Impossible de monter « %s » sur « %s »" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cdrom.cc:178 -#, fuzzy -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -"Aucun CD n'a été détecté sur le point de montage par défaut.\n" -"Vous pouvez utiliser l'option --cdrom pour indiquer le point de montage du " -"CD-ROM. Voir la page de manuel d'apt-cdrom pour plus d'informations sur " -"l'auto-détection des CD et le point de montage." -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "" -"Veuillez répéter cette opération pour tous les disques de votre jeu de " -"cédéroms." +#: apt-private/private-show.cc:156 +#, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Les paramètres ne sont pas appariés" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: cmdline/apt-config.cc:89 +#: apt-private/private-main.cc:32 msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -"Usage : apt-config [options] commande\n" -"\n" -"apt-config est un outil simple pour lire le fichier de configuration d'APT\n" -"\n" -"Commandes :\n" -" shell - Mode console\n" -" dump - Affiche la configuration\n" -"\n" -"Options :\n" -" -h Ce texte d'aide\n" -" -c=? Lit ce fichier de configuration\n" -" -o=? Spécifie une option de configuration, p. ex. -o dir::cache=/tmp\n" +"NOTE: Ceci n'est qu'une simulation !\n" +" apt-get a besoin des privilèges du superutilisateur\n" +" pour pouvoir vraiment fonctionner.\n" +" Veuillez aussi noter que le verrouillage est désactivé,\n" +" et la situation n'est donc pas forcément représentative\n" +" de la réalité !" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "" -"Impossible de trouver de paquet correspondant à l'expression rationnelle " -"« %s »" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "ATTENTION : les paquets suivants n'ont pas été authentifiés." -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "" -"Impossible de trouver de paquet correspondant à l'expression rationnelle " -"« %s »" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Avertissement d'authentification ignoré.\n" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "" -"Impossible de trouver de paquet correspondant à l'expression rationnelle " -"« %s »" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Certains paquets n'ont pas pu être authentifiés" -#: cmdline/apt-get.cc:367 +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Faut-il installer ces paquets sans vérification ?" + +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Choix de « %s » comme paquet source à la place de « %s »\n" +msgid "Failed to fetch %s %s\n" +msgstr "Impossible de récupérer %s %s\n" -#: cmdline/apt-get.cc:423 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "La version « %s » indisponible du paquet « %s » est ignorée" +msgid "Failed to parse %s. Edit again? " +msgstr "Impossible de changer le nom %s en %s" -#: cmdline/apt-get.cc:454 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Couldn't find package %s" -msgstr "Impossible de trouver le paquet %s" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s passé en « installé manuellement ».\n" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s passé en « installé automatiquement ».\n" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Calcul de la mise à jour... " -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"Cette commande est obsolète. Veuillez utiliser « apt-mark auto » et « apt-" -"mark manual »." +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Fait" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "" -"Erreur interne, la tentative de résolution du problème a cassé certaines " -"parties" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Atteint " -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Impossible de verrouiller le répertoire de téléchargement" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Réception de : " -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Vous devez spécifier au moins un paquet source" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Err " + +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Impossible de trouver une source de paquet pour %s" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "%so réceptionnés en %s (%so/s)\n" -#: cmdline/apt-get.cc:786 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" -"Note : la maintenance du paquet de « %s » est réalisée dans le système de " -"suivi de versions « %s » à l'adresse :\n" -"%s\n" +msgid " [Working]" +msgstr " [En cours]" -#: cmdline/apt-get.cc:791 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"Veuillez utiliser la commande :\n" -"bzr branch %s\n" -"pour récupérer les dernières mises à jour (éventuellement non encore " -"publiées) du paquet.\n" +"Changement de support : veuillez insérer le disque\n" +"« %s »\n" +"dans le lecteur « %s » et appuyez sur la touche Entrée\n" -#: cmdline/apt-get.cc:843 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Saut du téléchargement du fichier « %s », déjà téléchargé\n" +msgid "Unable to read %s" +msgstr "Impossible de lire %s" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Impossible de déterminer l'espace disponible sur %s" +msgid "Unable to change to %s" +msgstr "Impossible d'accéder à %s" -#: cmdline/apt-get.cc:882 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Pas assez d'espace disponible sur %s" +msgid "No mirror file '%s' found " +msgstr "Aucun fichier miroir « %s » n'a été trouvé" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Nécessité de prendre %so/%so dans les sources.\n" +msgid "Can not read mirror file '%s'" +msgstr "Impossible de lire le fichier de miroir « %s »." -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 +#: methods/mirror.cc:315 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Nécessité de prendre %so dans les sources.\n" +msgid "No entry found in mirror file '%s'" +msgstr "Pas d'entrée trouvée dans le fichier de miroir « %s »." -#: cmdline/apt-get.cc:902 +#: methods/mirror.cc:445 #, c-format -msgid "Fetch source %s\n" -msgstr "Récupération des sources %s\n" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Échec lors de la récupération de quelques archives." +msgid "[Mirror: %s]" +msgstr "[Miroir : %s]" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Téléchargement achevé et dans le mode téléchargement uniquement" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Impossible de créer le tube IPC sur le sous-processus" -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Saut du décompactage des paquets sources déjà décompactés dans %s\n" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Connexion fermée prématurément" -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "La commande de décompactage « %s » a échoué.\n" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Mauvais paramètre par défaut !" -#: cmdline/apt-get.cc:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Veuillez vérifier si le paquet dpkg-dev est installé.\n" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Veuillez appuyer sur Entrée pour continuer." -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "La commande de construction « %s » a échoué.\n" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Voulez-vous effacer les fichiers .deb précédemment téléchargés ?" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Échec du processus fils" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Quelques erreurs sont apparues lors du décompactage. Les paquets qui" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" msgstr "" -"Il faut spécifier au moins un paquet pour vérifier les dépendances de " -"construction" +"ont été installés vont être configurés . Il peut en résulter d'autres erreurs" -#: cmdline/apt-get.cc:1054 -#, c-format +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "" +"ou des erreurs provoquées par les dépendances manquantes. C'est bénin, " +"seules les erreurs." + +#: dselect/install:105 msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"Aucune information sur l'architecture n'est disponible pour %s. Veuillez " -"consulter la section à propos de APT::Architectures dans la page de manuel " -"apt.conf(5)." +"précédant ce message sont importantes. Veuillez les corriger et\n" +"démarrer l'[I]nstallation une nouvelle fois." -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Impossible d'obtenir les dépendances de construction pour %s" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Fusion des informations disponibles" -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s n'a pas de dépendance de construction.\n" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode appelé sur un nœud toujours lié" -#: cmdline/apt-get.cc:1271 -#, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"La dépendance %s vis-à-vis de %s ne peut être satisfaite car %s n'est pas " -"autorisé avec les paquets « %s »." +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Impossible de situer l'élément haché !" -#: cmdline/apt-get.cc:1289 -#, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" -"La dépendance %s vis-à-vis de %s ne peut être satisfaite car le paquet %s ne " -"peut être trouvé" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Échec lors de l'allocation de la déviation" -#: cmdline/apt-get.cc:1312 +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Erreur interne dans AddDiversion" + +#: apt-inst/filelist.cc:477 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"Impossible de satisfaire la dépendance %s pour %s : le paquet installé %s " -"est trop récent" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Essaye d'écraser une déviation, %s -> %s et %s/%s" -#: cmdline/apt-get.cc:1351 +#: apt-inst/filelist.cc:506 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"La dépendance %s vis-à-vis de %s ne peut être satisfaite car aucune version " -"disponible du paquet %s ne peut satisfaire les prérequis de version." +msgid "Double add of diversion %s -> %s" +msgstr "Addition double d'une déviation %s -> %s" -#: cmdline/apt-get.cc:1357 +#: apt-inst/filelist.cc:549 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "" -"La dépendance %s vis-à-vis de %s ne peut être satisfaite car le paquet %s " -"n'a pas de version disponible." +msgid "Duplicate conf file %s/%s" +msgstr "Fichier de configuration en double %s/%s" -#: cmdline/apt-get.cc:1380 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Impossible de satisfaire les dépendances %s pour %s : %s" +msgid "The path %s is too long" +msgstr "Le chemin %s est trop long" -#: cmdline/apt-get.cc:1395 +#: apt-inst/extract.cc:132 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "" -"Les dépendances de compilation pour %s ne peuvent pas être satisfaites." +msgid "Unpacking %s more than once" +msgstr "Veuillez décompresser %s plus d'une fois" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Impossible d'activer les dépendances de construction" +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "Le répertoire %s est détourné" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-inst/extract.cc:152 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Journal des modifications pour %s (%s)" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Le paquet est en train d'essayer d'écrire sur la cible détournée %s/%s" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Modules reconnus :" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Le chemin de déviation est trop long" -#: cmdline/apt-get.cc:1632 -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -msgstr "" -"Usage : apt-get [options] commandes\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get est une interface simple en ligne de commande servant à\n" -"télécharger et à installer les paquets. Les commandes les plus\n" -"fréquemment employées sont update et install.\n" -"\n" -"Commandes :\n" -" update - Récupère les nouvelles listes de paquets\n" -" upgrade - Réalise une mise à jour\n" -" install - Installe de nouveaux paquets (pkg1 est libc6 et non libc6.deb)\n" -" remove - Supprime des paquets\n" -" autoremove - Supprime tous les paquets installés automatiquement\n" -" purge - Supprime des paquets et leurs fichiers de configuration\n" -" source - Télécharge les archives de sources\n" -" build-dep - Configure build-dependencies pour les paquets sources\n" -" dist-upgrade - Met à jour la distribution, reportez-vous à apt-get(8)\n" -" dselect-upgrade - Suit les sélections de dselect\n" -" clean - Supprime dans le cache local tous les fichiers téléchargés\n" -" autoclean - Supprime dans le cache local les fichiers inutiles\n" -" check - Vérifie qu'il n'y a pas de rupture de dépendances\n" -" changelog - Télécharge et affiche le journal des modifications\n" -" («  changelog ») du paquet indiqué\n" -" download - Télécharge le paquet binaire dans le répertoire courant\n" -"\n" -"Options :\n" -" -h Ce texte d'aide\n" -" -q Message de sortie enregistrable - aucun indicateur de progression\n" -" -qq Aucun message de sortie, exceptés les messages d'erreur\n" -" -d Simple téléchargement - n'installe pas ou ne décompacte pas les " -"archives\n" -" -s N'agit pas. Réalise uniquement une simulation de commande\n" -" -y Répond oui à toutes les questions et n'interroge pas l'utilisateur\n" -" -f Tente de poursuivre si le contrôle d'intégrité échoue\n" -" -m Tente de poursuivre si les archives ne sont pas localisables\n" -" -u Affiche une liste des paquets mis à jour\n" -" -b Construit la source du paquet après l'avoir récupérée\n" -" -V Affiche les numéros des versions de façon détaillée\n" -" -c=? Lit ce fichier de configuration\n" -" -o=? Place une option de configuration arbitraire, ex. -o dir::cache=/tmp\n" -"Reportez-vous aux pages de manuels d'apt-get(8), sources.list(5) et\n" -"apt.conf(5) pour plus d'informations et d'options.\n" -" Cet APT a les « Super Cow Powers »\n" +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 +#, c-format +msgid "Failed to stat %s" +msgstr "Impossible de statuer %s" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Vous devez spécifier au moins un paquet source" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Impossible de changer le nom %s en %s" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "Le répertoire %s va être remplacé par un non-répertoire" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Échec pour localiser le nœud dans la table de hachage" -#: cmdline/apt-mark.cc:68 +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Le chemin est trop long" + +#: apt-inst/extract.cc:421 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s ne peut pas être marqué car il n'est pas installé.\n" +msgid "Overwrite package match with no version for %s" +msgstr "Écrase la correspondance de paquet sans version pour %s " -#: cmdline/apt-mark.cc:74 +#: apt-inst/extract.cc:438 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s était déjà marqué comme installé manuellement.\n" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Le fichier %s/%s écrase celui inclus dans le paquet %s" -#: cmdline/apt-mark.cc:76 +#: apt-inst/extract.cc:498 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s était déjà marqué comme installé automatiquement.\n" +msgid "Unable to stat %s" +msgstr "Impossible de statuer pour %s." -#: cmdline/apt-mark.cc:241 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s était déjà marqué comme figé (« hold »).\n" +msgid "Failed to write file %s" +msgstr "Erreur d'écriture du fichier %s" -#: cmdline/apt-mark.cc:243 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s était déjà marqué comme non figé.\n" +msgid "Failed to close file %s" +msgstr "Échec de clôture du fichier %s" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "%s set on hold.\n" -msgstr "%s passé en figé (« hold »).\n" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Ce n'est pas une archive DEB valide, partie « %s » manquante" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Annulation de l'état figé pour %s.\n" +msgid "Internal error, could not locate member %s" +msgstr "Erreur interne, ne peut localiser la partie %s" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" -"Échec de l'exécution de dpkg. Possédez-vous les privilèges du " -"superutilisateur ?" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Fichier de contrôle non traitable" -#: cmdline/apt-mark.cc:392 -#, fuzzy -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" -"Utilisation: apt-mark [options] {auto|manual} paquet 1 [paquet2 ...]\n" -"\n" -"apt-mark est une interface simple, en ligne de commande, qui permet\n" -"de marquer des paquets comme installés manuellement ou automatiquement.\n" -"Cette commande permet également d'afficher cet état.\n" -"\n" -"Commandes :\n" -" auto - marquer les paquets indiqués comme installés automatiquement\n" -" manual - marquer les paquets indiqués comme installés manuellement\n" -"\n" -"Options:\n" -" -h Affiche la présente aide.\n" -" -q Affichage journalisable - pas de barre de progression\n" -" -qq Pas d'affichage à part les erreurs\n" -" -s Mode simulation : aucune action effectuée.\n" -" Affiche simplement ce qui serait effectué.\n" -" -f lecture/écriture des états dans le fichier indiqué\n" -" -c=? lecture du fichier de configuration indiqué\n" -" -o=? utilisation d'une option de configuration,\n" -" p. ex. -o dir::cache=/tmp\n" -"Veuillez consulter les pages de manuel apt-mark(8) et apt.conf(5)\n" -"pour plus d'informations." +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Signature d'archive invalide" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Erreur de lecture de l'en-tête du membre d'archive" -#: methods/cdrom.cc:203 +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Impossible de lire la base de données %s du cédérom" +msgid "Invalid archive member header %s" +msgstr "En-tête du membre d'archive %s non valable" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"Veuillez utiliser apt-cdrom afin de faire reconnaître ce cédérom par votre " -"APT. apt-get update ne peut être employé pour ajouter de nouveaux cédéroms" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "En-tête du membre d'archive non-valable" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Mauvais cédérom" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "L'archive est trop petite" -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "" -"Impossible de démonter le cédérom dans %s, il doit toujours être en cours " -"d'utilisation." +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Échec de la lecture des en-têtes d'archive" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disque non trouvé." +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Échec de création de tubes" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Fichier non trouvé" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Impossible d'exécuter gzip " -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Impossible de statuer" +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Archive corrompue" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Impossible de modifier l'heure " +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Échec dans la somme de contrôle de tar, l'archive est corrompue" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Liens invalides, les liens locaux ne doivent pas débuter avec //" +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Type d'en-tête %u inconnu pour TAR, partie %s" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Connexion en cours" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Impossible de déterminer le nom de la machine distante" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Exécution de dpkg" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Impossible de déterminer le nom local" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Le système de paquet « %s » n'est pas supporté" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Impossible de déterminer un type du système de paquets adéquat" + +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Le serveur a refusé notre connexion et a répondu : %s" +msgid "Wrote %i records.\n" +msgstr "%i enregistrements écrits.\n" -#: methods/ftp.cc:225 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER incorrect, le serveur a répondu : %s" +msgid "Wrote %i records with %i missing files.\n" +msgstr "%i enregistrements écrits avec %i fichiers manquants.\n" -#: methods/ftp.cc:232 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS incorrect, le serveur a répondu : %s" +msgid "Wrote %i records with %i mismatched files\n" +msgstr "%i enregistrements écrits avec %i fichiers qui ne correspondent pas\n" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" -"Un serveur proxy a été spécifié, mais aucun script de connexion, Acquire::" -"ftp::ProxyLogin est vide." +"%i enregistrements écrits avec %i fichiers manquants et %i qui ne " +"correspondent pas\n" + +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "Impossible de trouver l'enregistrement d'authentification pour %s" -#: methods/ftp.cc:280 +#: apt-pkg/indexcopy.cc:521 #, c-format -msgid "Login script command '%s' failed, server said: %s" +msgid "Hash mismatch for: %s" +msgstr "Somme de contrôle de hachage incohérente pour %s" + +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." msgstr "" -"La commande « %s » du script de connexion a échoué, le serveur a répondu : %s" +"Les listes de paquets ou le fichier « status » ne peuvent être analysés ou " +"lus." -#: methods/ftp.cc:306 -#, c-format -msgid "TYPE failed, server said: %s" -msgstr "Échec de TYPE, le serveur a répondu : %s" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Vous pouvez lancer « apt-get update » pour corriger ces problèmes." -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Dépassement du délai de connexion" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "La liste des sources ne peut être lue." -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Le serveur a fermé la connexion" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Cache des paquets vide" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Une réponse a fait déborder le tampon." +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Le fichier de cache des paquets est corrompu" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Corruption du protocole" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Le fichier de cache des paquets a une version incompatible" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Impossible de créer un connecteur" +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "Le fichier de cache des paquets est corrompu, il est trop petit." -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "" -"Impossible de se connecter sur le port de données, délai de connexion dépassé" +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "Cet APT ne supporte pas le système de version « %s »" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Échec" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Le cache des paquets a été construit pour une architecture différente" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Impossible de se connecter au port en mode passif." +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Dépend" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "gettaddrinfo n'a pu obtenir un port d'écoute" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Pré-Dépend" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Impossible de se connecter à un port" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Suggère" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Impossible d'écouter sur le port" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Recommande" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Impossible de déterminer le nom du port" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Est en conflit avec" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Impossible d'envoyer la commande PORT" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Remplace" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Famille d'adresses %u inconnue (AF_*)" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Rend obsolète" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT a échoué, le serveur a répondu : %s" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Casse" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Délai de connexion au port de données dépassé" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Améliore" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Impossible d'accepter une connexion" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "important" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problème de hachage du fichier" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "nécessaire" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Impossible de récupérer le fichier, le serveur a répondu « %s »" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standard" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Pas de réponse du port données dans les délais" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "optionnel" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Le transfert de données a échoué, le serveur a répondu « %s »" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "supplémentaire" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Requête" +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Le pilote pour la méthode %s n'a pu être trouvé." -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Impossible d'invoquer " +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Veuillez vérifier si le paquet dpkg-dev est installé.\n" -#: methods/connect.cc:76 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Connexion à %s (%s)" +msgid "Method %s did not start correctly" +msgstr "La méthode %s n'a pas démarré correctement" -#: methods/connect.cc:87 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP : %s %s]" +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Veuillez insérer le disque « %s » dans le lecteur « %s » et appuyez sur la " +"touche Entrée." -#: methods/connect.cc:94 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Impossible de créer de connexion pour %s (f=%u t=%u p=%u)" +msgid "Index file type '%s' is not supported" +msgstr "Le type de fichier d'index « %s » n'est pas accepté" -#: methods/connect.cc:100 -#, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Impossible d'initialiser la connexion à %s: %s (%s)." +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Construction de l'arbre des dépendances" -#: methods/connect.cc:108 -#, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Connexion à %s: %s (%s) impossible, délai de connexion dépassé" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Versions possibles" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Connexion à %s: %s (%s) impossible." +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Génération des dépendances" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 -#, c-format -msgid "Connecting to %s" -msgstr "Connexion à %s" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Lecture des informations d'état" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Could not resolve '%s'" -msgstr "Ne parvient pas à résoudre « %s »" +msgid "Failed to open StateFile %s" +msgstr "Impossible d'ouvrir le fichier d'état %s" -#: methods/connect.cc:205 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Erreur temporaire de résolution de « %s »" +msgid "Failed to write temporary StateFile %s" +msgstr "Erreur d'écriture du fichier d'état temporaire %s" -#: methods/connect.cc:209 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "System error resolving '%s:%s'" -msgstr "Erreur système lors de la résolution de « %s:%s »" +msgid "rename failed, %s (%s -> %s)." +msgstr "impossible de changer le nom, %s (%s -> %s)." -#: methods/connect.cc:211 -#, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "" -"Quelque chose d'imprévisible est survenu lors de la détermination de « %s:" -"%s » (%i - %s)" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Somme de contrôle de hachage incohérente" -#: methods/connect.cc:258 -#, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Impossible de se connecter à %s:%s :" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Taille incohérente" -#: methods/gpgv.cc:168 +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "L'opération %s n'est pas valable" + +#: apt-pkg/acquire-item.cc:1573 +#, c-format msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"Erreur interne : signature correcte, mais il est impossible de déterminer " -"l'empreinte de la clé." +"Impossible de trouver l'entrée « %s » attendue dans le fichier « Release » : " +" ligne non valable dans sources.list ou fichier corrompu" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Au moins une signature non valable a été rencontrée." +#: apt-pkg/acquire-item.cc:1589 +#, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "" +"Impossible de trouver la comme de contrôle de « %s » dans le fichier Release" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" msgstr "" -"Impossible d'exécuter « gpgv » pour contrôler la signature (veuillez " -"vérifier si gpgv est installé)." +"Aucune clé publique n'est disponible pour la/les clé(s) suivante(s) :\n" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1669 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -"Le fichier signé en clair n'est pas valable, ce qui a été reçu est « %s ». " -"Peut-être le réseau nécessite-t-il une authentification." - -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Erreur inconnue à l'exécution de gpgv" +"Le fichier « Release » pour %s a expiré (plus valable depuis %s). Les mises " +"à jour depuis ce dépôt ne s'effectueront pas." -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Les signatures suivantes ne sont pas valables :\n" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Distribution en conflit : %s (%s attendu, mais %s obtenu)" -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1721 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -"Les signatures suivantes n'ont pas pu être vérifiées car la clé publique " -"n'est pas disponible :\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Les fichiers vides ne peuvent être des archives valables" - -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Erreur d'écriture sur le fichier" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Erreur de lecture depuis le serveur distant et clôture de la connexion" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Erreur de lecture du serveur" +"Une erreur s'est produite lors du contrôle de la signature. Le dépôt n'est " +"pas mis à jour et les fichiers d'index précédents seront utilisés. Erreur de " +"GPG : %s : %s\n" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Erreur d'écriture sur un fichier" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "Erreur de GPG : %s : %s" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Sélection défaillante" +#: apt-pkg/acquire-item.cc:1859 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"Impossible de localiser un fichier du paquet %s. Cela signifie que vous " +"devrez corriger ce paquet vous-même (absence d'architecture)." -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Délai de connexion dépassé" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" +"Impossible de trouver une source de téléchargement de la version « %s » de " +"« %s »" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Erreur d'écriture du fichier de sortie" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Les fichiers d'index des paquets sont corrompus. Aucun champ « Filename: » " +"pour le paquet %s." -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Attente des fichiers d'en-tête" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Le type de fichier d'index « %s » n'est pas accepté" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Mauvaise ligne d'en-tête" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Impossible de localiser %s." -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Le serveur http a envoyé une réponse dont l'en-tête est invalide" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Le cache possède un système de version incompatible" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Le serveur http a envoyé un en-tête « Content-Length » invalide" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Erreur apparue lors du traitement de %s (%s%d)" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Le serveur http a envoyé un en-tête « Content-Range » invalide" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "" +"Vous avez dépassé le nombre de noms de paquets que cette version d'APT est " +"capable de traiter." -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Ce serveur http possède un support des limites non-valide" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "" +"Vous avez dépassé le nombre de versions que cette version d'APT est capable " +"de traiter." -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Format de date inconnu" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "" +"Vous avez dépassé le nombre de descriptions que cette version d'APT est " +"capable de traiter." -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Mauvais en-tête de donnée" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "" +"Vous avez dépassé le nombre de dépendances que cette version d'APT est " +"capable de traiter." -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Échec de la connexion" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "" +"Le paquet %s %s n'a pu être trouvé lors du traitement des dépendances des " +"fichiers" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Erreur interne" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Impossible de localiser la liste des paquets sources %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Calcul de la mise à jour... " +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Lecture des listes de paquets" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Fait" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Assemblage des fichiers listés dans les champs Provides" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Impossible d'écrire sur %s" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" msgstr "" +"Erreur d'entrée/sortie lors de la sauvegarde du fichier de cache des sources" -#: apt-private/private-list.cc:164 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Correction des dépendances..." - -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " a échoué." +msgid "Vendor block %s contains no fingerprint" +msgstr "Le bloc de fournisseur %s ne comporte pas d'empreinte" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Impossible de corriger les dépendances" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Le répertoire %spartial pour les listes n'existe pas." -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Impossible de minimiser le nombre des paquets mis à jour" +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Le répertoire d'archive %spartial n'existe pas." -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Fait" +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "Impossible de verrouiller le répertoire %s" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Vous pouvez lancer « apt-get -f install » pour corriger ces problèmes." +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Téléchargement du fichier %li sur %li (%s restant)" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dépendances manquantes. Essayez d'utiliser l'option -f." +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Téléchargement du fichier %li sur %li" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" +"Le téléchargement de quelques fichiers d'index a échoué, ils ont été " +"ignorés, ou les anciens ont été utilisés à la place." -#: apt-private/private-output.cc:234 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Installé]" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "" +"Vous devez insérer quelques adresses « sources » dans votre sources.list" -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [Installé]" +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" +"La valeur « %s » n'est pas valable pour APT::Default-Release car cette " +"version ne fait pas partie des sources disponibles." -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" +#: apt-pkg/policy.cc:422 +#, c-format +msgid "Invalid record in the preferences file %s, no Package header" msgstr "" +"Enregistrement non valable dans le fichier de préférences %s, aucune entrée " +"« Package »." -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Installé]" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Type d'épinglage %s inconnu" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Installé]" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Aucune priorité (ou zéro) n'a été spécifiée pour l'épinglage" -#: apt-private/private-output.cc:249 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 #, c-format -msgid "[upgradable from: %s]" +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" +"Impossible d'effectuer la configuration immédiate de « %s ». Veuillez " +"consulter la page de manuel apt.conf(5) et notamment la section à propos de " +"APT::Immediate-Configure, pour plus d'informations. (%d)" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Impossible de configurer « %s »." + +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." msgstr "" +"Cette installation va temporairement nécessiter l'enlèvement du paquet " +"essentiel %s en raison d'une boucle entre les champs Conflicts et Pre-" +"Depends. C'est souvent une mauvaise chose, mais si vous souhaitez réellement " +"le faire, activez l'option APT::Force-LoopBreak." -#: apt-private/private-output.cc:435 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "but %s is installed" -msgstr "mais %s est installé" +msgid "Line %u too long in source list %s." +msgstr "La ligne %u du fichier des listes de sources %s est trop longue." -#: apt-private/private-output.cc:437 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Démontage du cédérom...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "but %s is to be installed" -msgstr "mais %s devra être installé" +msgid "Using CD-ROM mount point %s\n" +msgstr "Utilisation du point de montage %s pour le cédérom\n" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "mais il n'est pas installable" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Attente du disque...\n" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "mais c'est un paquet virtuel" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Montage du cédérom...\n" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "mais il n'est pas installé" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identification..." -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "mais ne sera pas installé" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Étiquette stockée : %s\n" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " ou" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Examen du disque à la recherche de fichiers d'index...\n" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Les paquets suivants contiennent des dépendances non satisfaites :" +#: apt-pkg/cdrom.cc:734 +#, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" +"%zu index de paquets trouvés, %zu index de sources, %zu index de traductions " +"et %zu signatures\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Les NOUVEAUX paquets suivants seront installés :" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" +"Aucun fichier de paquets trouvé. Ceci n'est peut-être pas un disque Debian " +"ou bien l'architecture est-elle incorrecte." -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Les paquets suivants seront ENLEVÉS :" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "Étiquette « %s » trouvée\n" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Les paquets suivants ont été conservés :" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Ce nom n'est pas valable, veuillez recommencer.\n" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Les paquets suivants seront mis à jour :" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Ce disque s'appelle :\n" +"« %s »\n" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Les paquets suivants seront mis à une VERSION INFÉRIEURE :" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Copie des listes de paquets..." -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Les paquets retenus suivants seront changés :" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Écriture de la nouvelle liste de sources\n" -#: apt-private/private-output.cc:668 +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Les entrées de listes de sources pour ce disque sont :\n" + +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "%s (due to %s) " -msgstr "%s (en raison de %s) " +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"Le paquet %s doit être réinstallé, mais il est impossible de trouver son " +"archive." -#: apt-private/private-output.cc:676 +#: apt-pkg/algorithms.cc:1086 msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -"ATTENTION : Les paquets essentiels suivants vont être enlevés.\n" -"Vous NE devez PAS faire ceci, à moins de savoir exactement ce\n" -"que vous êtes en train de faire." +"Erreur, pkgProblem::Resolve a généré des ruptures, ce qui a pu être causé " +"par les paquets devant être gardés en l'état." -#: apt-private/private-output.cc:707 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu mis à jour, %lu nouvellement installés, " +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "" +"Impossible de corriger les problèmes, des paquets défectueux sont en mode " +"« garder en l'état »." -#: apt-private/private-output.cc:711 +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Envoi du scénario au solveur" + +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Envoi d'une requête au solveur" + +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Préparation à la réception de la solution" + +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "Échec du solveur externe sans message d'erreur adapté" + +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Exécu tion du solveur externe" + +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu réinstallés, " +msgid "Unable to parse package file %s (1)" +msgstr "Impossible de traiter le fichier %s (1)" -#: apt-private/private-output.cc:713 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%lu downgraded, " -msgstr "%lu remis à une version inférieure, " +msgid "Unable to parse package file %s (2)" +msgstr "Impossible de traiter le fichier %s (2)" -#: apt-private/private-output.cc:715 +#: apt-pkg/indexrecords.cc:78 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu à enlever et %lu non mis à jour.\n" +msgid "Unable to parse Release file %s" +msgstr "Impossible d'analyser le fichier Release %s" -#: apt-private/private-output.cc:719 +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu partiellement installés ou enlevés.\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[O/n]" +msgid "No sections in Release file %s" +msgstr "Pas de sections dans le fichier Release %s" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[o/N]" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Pas d'entrée de hachage dans le fichier Release %s" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "O" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Entrée « Valid-Until » non valable dans le fichier Release %s" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "N" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Entrée « Date » non valable dans le fichier Release %s" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "La commande de mise à jour ne prend pas de paramètre" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Ligne %lu mal formée dans la liste des sources %s (analyse de l'URI)" -#: apt-private/private-update.cc:90 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" +"Ligne %lu mal formée dans la liste des sources %s (impossible d'analyser " +"[option])" -#: apt-private/private-show.cc:156 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" +"Ligne %lu mal formée dans la liste de sources %s ([option] trop courte)" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Erreur interne, « InstallPackages » appelé avec des paquets cassés." - -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "" -"Les paquets doivent être enlevés mais la désinstallation est désactivée." - -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Erreur interne. Le tri a été interrompu." +"Ligne %lu mal formée dans la liste des sources %s ([%s] n'est pas une " +"affectation)" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" -"Étrangement, les tailles ne correspondent pas. Veuillez le signaler par " -"courriel à apt@packages.debian.org." +"Ligne %lu mal formée dans la liste des sources %s ([%s] n'a pas de clé)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Il est nécessaire de prendre %so/%so dans les archives.\n" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "" +"Ligne %lu mal formée dans la liste des sources %s ([%s] la clé %s n'a pas de " +"valeur)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Il est nécessaire de prendre %so dans les archives.\n" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Ligne %lu mal formée dans le fichier de source %s (URI)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "" -"Après cette opération, %so d'espace disque supplémentaires seront utilisés.\n" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Ligne %lu mal formée dans la liste de sources %s (distribution)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Après cette opération, %so d'espace disque seront libérés.\n" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Ligne %lu mal formée dans la liste des sources %s (analyse de l'URI)" -#: apt-private/private-install.cc:200 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Pas assez d'espace disponible sur %s" - -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Il y a des problèmes et -y a été employé sans --force-yes" - -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." +msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "" -"L'option --trivial-only a été indiquée mais il ne s'agit pas d'une opération " -"triviale." - -# The space before the exclamation mark must not be a non-breaking space; this -# sentence is supposed to be typed by a user who cannot see the difference. -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Oui, faites ce que je vous dis !" +"Ligne %lu mal formée dans la liste des sources %s (distribution absolue)" -#: apt-private/private-install.cc:222 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" -"Vous êtes sur le point de faire quelque chose de potentiellement dangereux\n" -"Pour continuer, tapez la phrase « %s »\n" -" ?]" - -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Annulation." +"Ligne %lu mal formée dans la liste des sources %s (analyse de distribution)" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Souhaitez-vous continuer ?" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Ouverture de %s" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Certains fichiers n'ont pu être téléchargés." +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Ligne %u mal formée dans la liste des sources %s (type)" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" msgstr "" -"Impossible de récupérer quelques archives, peut-être devrez-vous lancer apt-" -"get update ou essayer avec --fix-missing ?" +"Le type « %s » est inconnu sur la ligne %u dans la liste des sources %s" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" msgstr "" -"l'option --fix-missing et l'échange de support ne sont pas encore reconnus." +"Le type « %s » est inconnu sur la ligne %u dans la liste des sources %s" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Impossible de corriger le fait que les paquets manquent." +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "La version « %s » de « %s » est introuvable" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Annulation de l'installation." +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "La version « %s » de « %s » n'a pu être trouvée" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -"Le paquet suivant a disparu du système car tous ses fichiers\n" -"ont été remplacés par d'autres paquets :" -msgstr[1] "" -"Les paquets suivants ont disparu du système car tous leurs fichiers\n" -"ont été remplacés par d'autres paquets :" +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Impossible de trouver la tâche « %s »" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "" +"Impossible de trouver de paquet correspondant à l'expression rationnelle " +"« %s »" + +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" msgstr "" -"Note : cette opération volontaire (effectuée par dpkg) est automatique." +"Impossible de trouver de paquet correspondant à l'expression rationnelle " +"« %s »" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -"Aucune suppression n'est censée se produire : impossible de lancer " -"« Autoremover »" +"Impossible de choisir les versions du paquet « %s » qui n'est qu'un paquet " +"virtuel" -#: apt-private/private-install.cc:499 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Il semble que l'outil de suppression automatique (« Autoremover ») ait\n" -"supprimé quelque chose, ce qui est inattendu. Veuillez envoyer un\n" -"rapport de bogue pour le paquet « apt »." +"Impossible de choisir une version installée ou candidate du paquet « %s » " +"qui n'en n'a aucune" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "L'information suivante devrait vous aider à résoudre la situation : " +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"Impossible de choisir une nouvelle version du paquet « %s » qui n'est qu'un " +"paquet virtuel" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -"Erreur interne, l'outil de suppression automatique a cassé quelque chose." +"Impossible de choisir une version candidate du paquet « %s » qui n'en n'a pas" -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "" -"Le paquet suivant a été installé automatiquement et n'est plus nécessaire :" -msgstr[1] "" -"Les paquets suivants ont été installés automatiquement et ne sont plus " -"nécessaires :" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"Impossible de choisir la version installée du paquet « %s » qui n'est pas " +"installé" -#: apt-private/private-install.cc:517 +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "" -"%lu paquet a été installé automatiquement et n'est plus nécessaire.\n" -msgstr[1] "" -"%lu paquets ont été installés automatiquement et ne sont plus nécessaires.\n" +msgid "%lid %lih %limin %lis" +msgstr "%lid %lih %limin %lis" -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Veuillez utiliser « apt-get autoremove » pour le supprimer." -msgstr[1] "Veuillez utiliser « apt-get autoremove » pour les supprimer." +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%lih %limin %lis" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "" -"Vous pouvez lancer « apt-get -f install » pour corriger ces problèmes :" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Dépendances non satisfaites. Essayez « apt-get -f install » sans paquet\n" -"(ou indiquez une solution)." +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." -msgstr "" -"Certains paquets ne peuvent être installés. Ceci peut signifier\n" -"que vous avez demandé l'impossible, ou bien, si vous utilisez\n" -"la distribution unstable, que certains paquets n'ont pas encore\n" -"été créés ou ne sont pas sortis d'Incoming." +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "La sélection %s n'a pu être trouvée" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Paquets défectueux" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Verrou non utilisé pour le fichier %s en lecture seule" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Les paquets supplémentaires suivants seront installés : " +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Impossible d'ouvrir le fichier verrou %s" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Paquets suggérés :" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Verrou non utilisé pour le fichier %s se situant sur une partition nfs" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Paquets recommandés :" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Impossible d'obtenir le verrou %s" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Passe %s, il est déjà installé et la mise à jour n'est pas prévue.\n" +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" +"La liste des fichiers ne peut pas être créée car « %s » n'est pas un " +"répertoire" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:394 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -"%s ignoré : il n'est pas installé et seules des mises à jour ont été " -"demandées.\n" +"« %s » dans le répertoire « %s » a été ignoré car ce n'est pas un fichier " +"ordinaire" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:412 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -"La réinstallation de %s est impossible, il ne peut pas être téléchargé.\n" +"« %s » dans le répertoire « %s » a été ignoré car il n'utilise pas " +"d'extension" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/fileutl.cc:421 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s est déjà la plus récente version disponible.\n" +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" +"« %s » dans le répertoire « %s » a été ignoré car il utilise une extension " +"non valable" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Version choisie « %s » (%s) pour « %s »\n" +msgid "Sub-process %s received a segmentation fault." +msgstr "Le sous-processus %s a commis une violation d'accès mémoire" -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/fileutl.cc:826 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Version choisie « %s » (%s) pour « %s » à cause de « %s »\n" +msgid "Sub-process %s received signal %u." +msgstr "Le sous-processus %s a reçu le signal %u" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" -"Le paquet « %s » n'est pas installé, et ne peut donc être supprimé. Peut-" -"être vouliez-vous écrire « %s » ?\n" +msgid "Sub-process %s returned an error code (%u)" +msgstr "Le sous-processus %s a renvoyé un code d'erreur (%u)" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Le paquet « %s » n'est pas installé, et ne peut donc être supprimé\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "Le sous-processus %s s'est arrêté prématurément" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" -"NOTE: Ceci n'est qu'une simulation !\n" -" apt-get a besoin des privilèges du superutilisateur\n" -" pour pouvoir vraiment fonctionner.\n" -" Veuillez aussi noter que le verrouillage est désactivé,\n" -" et la situation n'est donc pas forcément représentative\n" -" de la réalité !" +#: apt-pkg/contrib/fileutl.cc:913 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problème de fermeture du fichier gzip %s" + +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Impossible d'ouvrir le fichier %s" + +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Impossible d'ouvrir le descripteur de fichier %d" + +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Impossible de créer un sous-processus IPC" + +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Impossible d'exécuter la compression " + +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "lu(s), %llu restant à lire, mais rien n'est disponible" + +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "écrit(s), %llu restant à écrire, mais l'écriture est impossible" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ATTENTION : les paquets suivants n'ont pas été authentifiés." +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Problème de fermeture du fichier %s" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Avertissement d'authentification ignoré.\n" +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Problème de renommage du fichier %s en %s" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Certains paquets n'ont pas pu être authentifiés" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Problème de suppression du lien %s" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Faut-il installer ces paquets sans vérification ?" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Problème de synchronisation du fichier" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Impossible de changer le nom %s en %s" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Erreur !" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%c%s... Done" +msgstr "%c%s... Fait" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "…" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Atteint " +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, c-format +msgid "%c%s... %u%%" +msgstr "%c%s… %u%%" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Réception de : " +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Impossible de mapper un fichier vide en mémoire" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Impossible de dupliquer le descripteur de fichier %i" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: apt-pkg/contrib/mmap.cc:119 +#, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Impossible de réaliser un mapping de %llu octets en mémoire" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Impossible de fermer la « mmap »" + +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Impossible de synchroniser la « mmap »" + +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "%so réceptionnés en %s (%so/s)\n" +msgid "Couldn't make mmap of %lu bytes" +msgstr "Impossible de réaliser un mapping de %lu octets en mémoire" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Échec de la troncature du fichier" + +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid " [Working]" -msgstr " [En cours]" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" +"La zone dynamique d'allocation mémoire (« Dynamic MMap ») n'a plus de place. " +"Vous devriez augmenter la taille de APT::Cache-Start, dont la valeur " +"actuelle est de %lu (voir « man 5 apt.conf »)." -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/mmap.cc:446 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -"Changement de support : veuillez insérer le disque\n" -"« %s »\n" -"dans le lecteur « %s » et appuyez sur la touche Entrée\n" +"Impossible d'augmenter la taille de la « mmap » car la limite de %lu octets " +"est déjà atteinte." -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"Impossible d'augmenter la taille de la « mmap » car l'augmentation " +"automatique a été désactivée par une option utilisateur." + +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "No mirror file '%s' found " -msgstr "Aucun fichier miroir « %s » n'a été trouvé" +msgid "Unable to stat the mount point %s" +msgstr "Impossible de localiser le point de montage %s" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Impossible d'accéder au cédérom." + +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Impossible de lire le fichier de miroir « %s »." +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Type d'abréviation non reconnue : « %c »" -#: methods/mirror.cc:315 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Pas d'entrée trouvée dans le fichier de miroir « %s »." +msgid "Opening configuration file %s" +msgstr "Ouverture du fichier de configuration %s" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "[Mirror: %s]" -msgstr "[Miroir : %s]" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Erreur syntaxique %s:%u : le bloc commence sans aucun nom." -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Impossible de créer le tube IPC sur le sous-processus" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Erreur syntaxique %s:%u : balise mal formée" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Connexion fermée prématurément" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Erreur syntaxique %s:%u : valeur suivie de choses illicites" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Mauvais paramètre par défaut !" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "" +"Erreur syntaxique %s:%u : ces directives ne peuvent être appliquées qu'au " +"niveau le plus haut" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Veuillez appuyer sur Entrée pour continuer." +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Erreur syntaxique %s:%u: trop de niveaux d'imbrication d'includes" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Voulez-vous effacer les fichiers .deb précédemment téléchargés ?" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Erreur syntaxique %s:%u : inclus à partir d'ici" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Quelques erreurs sont apparues lors du décompactage. Les paquets qui" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Erreur syntaxique %s:%u : directive « %s » non tolérée" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"ont été installés vont être configurés . Il peut en résulter d'autres erreurs" +"Erreur de syntaxe %s:%u : la directive « clear » a besoin d'un arbre " +"d'options comme paramètre" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"ou des erreurs provoquées par les dépendances manquantes. C'est bénin, " -"seules les erreurs." +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Erreur syntaxique %s:%u : valeur aberrante à la fin du fichier" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "" -"précédant ce message sont importantes. Veuillez les corriger et\n" -"démarrer l'[I]nstallation une nouvelle fois." +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "Pas de porte-clés installé dans %s." -#: dselect/update:30 -msgid "Merging available information" -msgstr "Fusion des informations disponibles" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "L'option « %c » de la ligne de commande [d'origine %s] est inconnue." -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode appelé sur un nœud toujours lié" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "L'option %s de la ligne de commande n'est pas reconnue" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Impossible de situer l'élément haché !" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "L'option %s de la ligne de commande n'est pas une valeur booléenne" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Échec lors de l'allocation de la déviation" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "L'option %s nécessite un paramètre." -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Erreur interne dans AddDiversion" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Option %s : l'item configuration doit être spécifiée avec un =<val>." -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Essaye d'écraser une déviation, %s -> %s et %s/%s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "L'option %s prend un nombre entier en paramètre, et non « %s »" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Addition double d'une déviation %s -> %s" +msgid "Option '%s' is too long" +msgstr "L'option « %s » est trop longue" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Fichier de configuration en double %s/%s" +msgid "Sense %s is not understood, try true or false." +msgstr "La signification %s n'est pas comprise, veuillez essayer vrai ou faux." -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The path %s is too long" -msgstr "Le chemin %s est trop long" +msgid "Invalid operation %s" +msgstr "L'opération %s n'est pas valable" -#: apt-inst/extract.cc:132 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unpacking %s more than once" -msgstr "Veuillez décompresser %s plus d'une fois" +msgid "Installing %s" +msgstr "Installation de %s" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The directory %s is diverted" -msgstr "Le répertoire %s est détourné" +msgid "Configuring %s" +msgstr "Configuration de %s" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Le paquet est en train d'essayer d'écrire sur la cible détournée %s/%s" +msgid "Removing %s" +msgstr "Suppression de %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Le chemin de déviation est trop long" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "Suppression complète de %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to stat %s" -msgstr "Impossible de statuer %s" +msgid "Noting disappearance of %s" +msgstr "Disparition de %s constatée" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Impossible de changer le nom %s en %s" +msgid "Running post-installation trigger %s" +msgstr "Exécution des actions différées (« trigger ») de %s" -#: apt-inst/extract.cc:249 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Le répertoire %s va être remplacé par un non-répertoire" +msgid "Directory '%s' missing" +msgstr "Répertoire %s inexistant" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Échec pour localiser le nœud dans la table de hachage" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Impossible d'ouvrir le fichier « %s »" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Le chemin est trop long" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Préparation de %s" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Écrase la correspondance de paquet sans version pour %s " +msgid "Unpacking %s" +msgstr "Décompression de %s" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Le fichier %s/%s écrase celui inclus dans le paquet %s" +msgid "Preparing to configure %s" +msgstr "Préparation de la configuration de %s" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Unable to stat %s" -msgstr "Impossible de statuer pour %s." +msgid "Installed %s" +msgstr "%s installé" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to write file %s" -msgstr "Erreur d'écriture du fichier %s" +msgid "Preparing for removal of %s" +msgstr "Préparation de la suppression de %s" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Failed to close file %s" -msgstr "Échec de clôture du fichier %s" +msgid "Removed %s" +msgstr "%s supprimé" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Ce n'est pas une archive DEB valide, partie « %s » manquante" +msgid "Preparing to completely remove %s" +msgstr "Préparation de la suppression complète de %s" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Erreur interne, ne peut localiser la partie %s" +msgid "Completely removed %s" +msgstr "%s complètement supprimé" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Fichier de contrôle non traitable" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Signature d'archive invalide" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Impossible d'écrire sur %s" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Erreur de lecture de l'en-tête du membre d'archive" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "En-tête du membre d'archive %s non valable" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "En-tête du membre d'archive non-valable" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "L'opération a été interrompue avant de se terminer" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "L'archive est trop petite" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "Aucun rapport « apport » écrit car MaxReports a déjà été atteint" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Échec de la lecture des en-têtes d'archive" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "problème de dépendances : laissé non configuré" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Échec de création de tubes" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Aucun rapport « apport » n'a été créé car le message d'erreur indique une " +"erreur consécutive à un échec précédent." -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Impossible d'exécuter gzip " +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Aucun rapport « apport » n'a été créé car un disque plein a été signalé" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Archive corrompue" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Aucun « apport » n'a été créé car une erreur de dépassement de capacité " +"mémoire a été signalée" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Échec dans la somme de contrôle de tar, l'archive est corrompue" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Aucun rapport « apport » n'a été créé car un disque plein a été signalé" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Aucun « apport » n'a été créé car une erreur d'entrée/sortie de dpkg a été " +"signalée" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Type d'en-tête %u inconnu pour TAR, partie %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Impossible de verrouiller le répertoire d'administration (%s). Il est " +"possible qu'un autre processus l'utilise." + +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "" +"Impossible de verrouiller le répertoire d'administration (%s). Avez-vous les " +"privilèges du superutilisateur ?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"dpkg a été interrompu. Il est nécessaire d'utiliser « %s » pour corriger le " +"problème." + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Non verrouillé" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/gl.po b/po/gl.po index e7fe6d30f..4515d3212 100644 --- a/po/gl.po +++ b/po/gl.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_gl\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2011-05-12 15:28+0100\n" "Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>\n" "Language-Team: galician <proxecto@trasno.net>\n" @@ -22,3241 +22,3242 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Poedit-Language: Galician\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "O tipo de ficheiros de índices «%s» non está admitido" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "Non é posíbel ler %s" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Non é posíbel cambiar a %s" - -#: apt-pkg/clean.cc:64 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Unable to stat %s." -msgstr "Non é posíbel analizar %s." +msgid "Package %s version %s has an unmet dep:\n" +msgstr "O paquete %s versión %s ten unha dependencia incumprida:\n" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Número total de nomes de paquetes : " -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Executando dpkg" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Estruturas de paquetes totais: " -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "O sistema de empaquetado «%s» non está admitido" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Paquetes normais: " -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Non é posíbel determinar un tipo de sistema de empaquetado axeitado" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Paquetes virtuais puros: " -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Escribíronse %i rexistros.\n" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Paquetes virtuais simples: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Escribíronse %i rexistros con %i ficheiros que faltan.\n" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Paquetes virtuais mixtos: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Escribíronse %i rexistros con %i ficheiros que non coinciden\n" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Non atopados: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"Escribíronse %i rexistros con %i ficheiros que faltan e %i ficheiros que non " -"coinciden\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Número total de versións distintas: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "Non é posíbel atopar un rexistro de autenticación para: %s" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Número total de descricións distintas: " -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "Valor de hash non coincidente para: %s" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Número total de dependencias: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Non foi posíbel atopar o controlador de métodos %s." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Número total de relacións versión/ficheiro: " -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Comprobe que o paquete «dpkg-dev» estea instalado.\n" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Número total de relacións descrición/ficheiro: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "O método %s non se iniciou correctamente" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Número total de asignacións provistas: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Insira o disco etiquetado: «%s» na unidade «%s» e prema Intro." +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Número total de cadeas: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "" -"Non foi posíbel analizar ou abrir as listas de paquetes ou ficheiro de " -"estado." +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Espazo total de versións de dependencias: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Pode querer executar «apt-get update» para corrixir estes problemas" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Espazo de reserva total: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Non foi posíbel ler a lista de orixes." +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Espazo total contabilizado: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Caché de paquetes baleira" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "O ficheiro de paquete %s está sen sincronizar." -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "O ficheiro de caché de paquetes está danado" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Non se atopou ningún paquete" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "O ficheiro de caché de paquetes é unha versión incompatíbel" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Debe fornecer cando menos un patrón de busca" -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "O ficheiro de caché de paquetes está danado" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Este APT non admite o sistema de versionado «%s»" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "A caché de paquetes construíuse para unha arquitectura diferente" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Depende" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "PreDepende" +msgid "Unable to locate package %s" +msgstr "Non foi posíbel atopar o paquete %s" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Suxire" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Ficheiros de paquetes:" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Recomenda" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" +"A caché está sen sincronizar, non se pode facer referencia a un ficheiro de " +"paquetes" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Conflitos" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Paquetes inmobilizados:" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Substitúe a" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(non se atopou)" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Fai obsoleto a" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Instalado: " -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Estraga" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Candidato: " -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Mellora" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(ningún)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "importante" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Inmobilizado: " -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "requirido" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Táboa de versións:" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "estándar" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s para %s compilado en %s %s\n" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opcional" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Uso: apt-cache [opcións] orde\n" +" apt-cache [opcións] showpkg paquete1 [paquete2 ...]\n" +" apt-cache [opcións] showsrc paquete1 [paquete2 ...]\n" +"\n" +"apt-cache é unha ferramenta de baixo nivel usada para consultar\n" +"informacións dos ficheiros binarios da cache do APT\n" +"\n" +"Ordes:\n" +" gencaches - Constrúe as caches de paquete e fonte\n" +" showpkg - Mostra algunhas informacións xerais dun único paquete\n" +" showsrc - Mostra rexistros da fonte\n" +" stats - Mostra algunhas estatísticas básicas\n" +" dump - Mostra o ficheiro enteiro nun formato concreto\n" +" dumpavail - Imprime un ficheiro dispoñíbel para stdout\n" +" unmet - Mostra dependencias non atopadas\n" +" search - Busca na lista de paquetes por unha expresión regular\n" +" show - Mostra un rexistro lexíbel para o paquete\n" +" showauto - Mostra unha lista dos paquetes instalados automaticamente\n" +" depends - Mostra informacións brutas de dependencia para un paquete\n" +" rdepends - Mostra informacións de dependencia inversa para un paquete\n" +" pkgnames - Lista os nomes de todos os paquetes no sistema\n" +" dotty - Xera gráficos de paquete para o GraphViz\n" +" xvcg - Xera gráficos de paquete para o xvcg\n" +" policy - Mostra configuracións da política\n" +"\n" +"Options:\n" +" -h Este texto de axuda.\n" +" -p=? A cache do paquete.\n" +" -s=? A cache da fonte.\n" +" -q Desactiva o indicador de progreso.\n" +" -i Mostra soamente dependencias importantes para a orde unmet.\n" +" -c=? Ler este ficheiro de configuración\n" +" -o=? Define unha opción arbitraria de configuración, ex. -o dir::cache=/" +"tmp\n" +"Vexa a páxina de manual apt-cache(8) e apt.conf(5) para obter mais " +"información.\n" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Forneza un nome para este disco, como «Debian 5.0.3 Disco 1»" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "O tipo de ficheiros de índices «%s» non está admitido" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Insira un disco na unidade e prema Intro" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Regex compilation error - %s" -msgstr "Produciuse un erro na compilación da expresión regular - %s" +msgid "Failed to mount '%s' to '%s'" +msgstr "Produciuse un fallo ao montar «%s» en «%s»" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "A caché ten un sistema de versionado incompatíbel" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Produciuse un erro ao procesar %s (FindPkg)" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Repita este proceso para o resto de CD do seu conxunto." -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" -"Vaites!, superou o número de nomes de paquetes que este APT pode manexar." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Os argumentos non van en parellas" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Vaites!, superou o número de versións que este APT pode manexar." +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"Uso: apt-config [opcións] orde\n" +"\n" +"apt-config é unha ferramenta simple para ler a configuración de APT\n" +"\n" +"Ordes:\n" +" shell - Modo de intérprete de ordes\n" +" dump - Amosa a configuración\n" +"\n" +"Opcións:\n" +" -h Este texto de axuda.\n" +" -c=? Le este ficheiro de configuración\n" +" -o=? Estabelece unha opción de configuración, por exemplo: -o dir::cache=/" +"tmp\n" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Vaites!, superou o número de descricións que este APT pode manexar." +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "Vaites!, superou o número de dependencias que este APT pode manexar." +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "" -"Non foi posíbel atopar o paquete %s %s ao procesar as dependencias de " -"ficheiros" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»" -#: apt-pkg/pkgcachegen.cc:1211 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Non foi posíbel atopar a lista de paquetes fonte %s" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Tome «%s» como paquete fonte no canto de «%s»\n" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Lendo as listas de paquetes" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Ignorar a versión non dispoñíbel «%s» do paquete «%s»" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Recollendo as provisións de ficheiros" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Non foi posíbel atopar o paquete %s" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Unable to write to %s" -msgstr "Non é posíbel escribir en %s" +msgid "%s set to manually installed.\n" +msgstr "%s cambiado a instalado manualmente.\n" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Produciuse un erro de E/S ao gravar a caché de fontes" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s está estabelecido para a súa instalación automática.\n" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Produciuse un erro interno, o solucionador interno estragou cousas" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Non é posíbel bloquear o directorio de descargas" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Ten que especificar polo menos un paquete para obter o código fonte" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "Non sé posíbel atopar un paquete fonte para %s" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:786 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "non foi posíbel cambiar o nome, %s (%s -> %s)." +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"AVISO: o paquete «%s» mantense no sistema de control de versións «%s» en:\n" +"%s\n" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "A sumas «hash» non coinciden" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Os tamaños non coinciden" - -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Operación incorrecta: %s" - -#: apt-pkg/acquire-item.cc:1573 -#, c-format +#: cmdline/apt-get.cc:791 +#, fuzzy, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -"Non é posíbel atopar a entrada agardada «%s» no ficheiro de publicación " -"(entrada sources.list incorrecta ou ficheiro con formato incorrecto)" +"Empregue:\n" +"bzr get %s\n" +"para obter as últimas actualizacións (posibelmente non publicadas) do " +"paquete.\n" -#: apt-pkg/acquire-item.cc:1589 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "" -"Non é posíbel ler a suma de comprobación para «%s» no ficheiro de publicación" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Non hai unha chave pública dispoñíbel para os seguintes ID de chave:\n" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Omítese o ficheiro xa descargado «%s»\n" -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +msgid "Couldn't determine free space in %s" +msgstr "Non foi posíbel determinar o espazo libre en %s" -#: apt-pkg/acquire-item.cc:1691 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Conflito na distribución: %s (agardábase %s mais obtívose %s)" +msgid "You don't have enough free space in %s" +msgstr "Non hai espazo libre abondo en %s" -#: apt-pkg/acquire-item.cc:1721 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Produciuse un erro durante a verificación da sinatura. O repositorio non foi " -"actualizado, empregaranse os ficheiros de índice anteriores. Erro de GPG: " -"%s: %s\n" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Ten que recibir %sB/%sB de arquivos de fonte.\n" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "GPG error: %s: %s" -msgstr "Produciuse un erro de GPG: %s %s" +msgid "Need to get %sB of source archives.\n" +msgstr "Ten que recibir %sB de arquivos de fonte.\n" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:902 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"Non é posíbel atopar un ficheiro para o paquete %s. Isto pode significar que " -"ten que arranxar este paquete a man. (Falta a arquitectura)" +msgid "Fetch source %s\n" +msgstr "Obter fonte %s\n" -#: apt-pkg/acquire-item.cc:1925 -#, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Non se puideron obter algúns arquivos." -#: apt-pkg/acquire-item.cc:1983 -#, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Os ficheiros de índices de paquetes están danados. Non hai un campo " -"Filename: para o paquete %s." +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Completouse a descarga no modo de só descargas" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "O bloque de provedor %s non contén unha pegada dixital" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Omítese o desempaquetado do código fonte xa desempaquetado en %s\n" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: cmdline/apt-get.cc:963 #, c-format -msgid "List directory %spartial is missing." -msgstr "Non se atopa a lista de directorios %sparcial." +msgid "Unpack command '%s' failed.\n" +msgstr "Fallou a orde de desempaquetado «%s».\n" -#: apt-pkg/acquire.cc:91 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Non se atopa a lista de arquivos %sparcial." +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Comprobe que o paquete «dpkg-dev» estea instalado.\n" -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Unable to lock directory %s" -msgstr "Non é posíbel bloquear o directorio %s" +msgid "Build command '%s' failed.\n" +msgstr "Fallou a orde de construción de «%s».\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 -#, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Obtendo o ficheiro %li de %li (restan %s)" +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "O proceso fillo fallou" -#: apt-pkg/acquire.cc:904 -#, c-format -msgid "Retrieving file %li of %li" -msgstr "Obtendo o ficheiro %li de %li" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "" +"Ten que especificar polo menos un paquete para comprobarlle as dependencias " +"de compilación" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:1055 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Non foi posíbel obter %s %s\n" - -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -"Algúns ficheiros de índice fallaron durante a descarga. Ignoráronse, ou " -"foron utilizados algúns antigos no seu lugar" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Debe introducir algúns URI «orixe» no seu ficheiro sources.list" +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "Non é posíbel obter a información de dependencias de compilación de %s" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1102 #, c-format +msgid "%s has no build depends.\n" +msgstr "%s non ten dependencias de compilación.\n" + +#: cmdline/apt-get.cc:1272 +#, fuzzy, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" msgstr "" +"A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o " +"paquete %s" -#: apt-pkg/policy.cc:422 +#: cmdline/apt-get.cc:1290 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -"Rexistro incorrecto no ficheiro de preferencias %s; falta a cabeceira Package" +"A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o " +"paquete %s" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Did not understand pin type %s" -msgstr "Non se entendeu o tipo de inmobilización %s" - -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -"Non se indicou unha prioridade (ou indicouse cero) para a inmobilización" +"Non foi posíbel satisfacer a dependencia «%s» de %s: O paquete instalado %s " +"é novo de máis" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: cmdline/apt-get.cc:1352 +#, fuzzy, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" -"Non foi posíbel facer a configuración inmediata en «%s». Vexa man 5 apt.conf " -"baixo APT::Immediate-Configure para obter máis detalles. (%d)" +"A dependencia «%s» de %s non se pode satisfacer porque ningunha versión " +"dispoñíbel do paquete %s satisfai os requirimentos de versión" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:1358 #, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Non foi posíbel abrir o ficheiro «%s»" - -#: apt-pkg/packagemanager.cc:583 -#, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -"Esta instalación requirirá que se retire temporalmente o paquete esencial %s " -"por mor dun bucle de Conflitos e Pre-dependencias. Isto adoita ser malo, " -"pero se o quere facer, active a opción APT::Force-LoopBreak." +"A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o " +"paquete %s" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Line %u too long in source list %s." -msgstr "Liña %u longa de máis na lista de orixes %s." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Desmontando o CD-ROM...\n" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Non foi posíbel satisfacer a dependencia «%s» de %s: %s" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Empregando o punto de montaxe de CD-ROM %s\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Agardando polo disco...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Montando o CD-ROM...\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Non se puideron satisfacer as dependencias de construción de %s." -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identificando... " +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Non se puideron procesar as dependencias de construción" -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 #, c-format -msgid "Stored label: %s\n" -msgstr "Etiqueta almacenada: %s\n" +msgid "Changelog for %s (%s)" +msgstr "Rexistro de cambios de %s (%s)" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Buscando os ficheiros de índices no disco...\n" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Módulos admitidos:" -#: apt-pkg/cdrom.cc:734 -#, c-format +#: cmdline/apt-get.cc:1633 +#, fuzzy msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Atopáronse %zu índices de paquetes, %zu índices de orixes, %zu índices de " -"traducións e %zu sinaturas\n" - -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"Non é posíbel localizar ningún ficheiro de paquetes. É posíbel que non sexa " -"un disco de Debian ou que a arquitectura sexa incorrecta." +"Uso: apt-get [opcións] orde\n" +" apt-get [opcións] install|remove paquete1 [paquete2 ...]\n" +" apt-get [opcións] source paquete1 [paquete2 ...]\n" +"\n" +"apt-get é unha sinxela interface de liña de ordes para a descarga e\n" +"instalación de paquetes. As ordes empregadas con máis frecuencia\n" +"son actualizadas e instaladas. \n" +"\n" +"Ordes:\n" +" update - Recupera unha nova lista de paquetes\n" +" upgrade - Executa unha actualización\n" +" install - Instala novos paquetes (o paquete é libc6 non libc6.deb)\n" +" remove - Retira paquetes\n" +" autoremove - Retira automaticamente todos os paquetes sen uso\n" +" purge - Retira paquetes e ficheiros de configuración\n" +" source - Descarga os arquivos de fontes\n" +" build-dep - Configura as dependencias para paquetes de fontes\n" +" dist-upgrade - Actualiza a distribución, vexa apt-get(8)\n" +" dselect-upgrade - Segue as seleccións de dselect\n" +" clean - Borra os arquivos de ficheiros\n" +" autoclean - Borra os arquivos de ficheiros antigos\n" +" check - Comproba que non haxa dependencias sen cumprir\n" +" markauto - Marca os paquetes como instalados automaticamente\n" +" unmarkauto - Marca os paquetes como instalados manualmente\n" +" changelog - Descarga e mostra o rexistro de cambios para o paquete " +"proposto\n" +" download - Descarga o paquete binario no directorio actual\n" +"\n" +"Opçións:\n" +" -h Este texto de axuda\n" +" -q Saída rexistrábel - sen indicador de progreso\n" +" -qq Sen saída, agás para os erros \n" +" -d Só descarga - NON instala ou desempaqueta os arquivos\n" +" -s Sen acción. Fai unha simulación\n" +" -y Asume Si para todas as preguntas e non as presenta\n" +" -f Tenta corrixir un sistema con dependencias non cumpridas\n" +" -m Tenta continuar se os arquivos non son localizados\n" +" -u Mostra tamén unha lista de paquetes actualizados\n" +" -b Constrúe o paquete fonte despois de descargalo\n" +" -V Mostra os números detallados da versión\n" +" -c=? Ler este ficheiro de configuración\n" +" -o=? Define unha opción arbitraria de configuración, p.ex. -o dir::cache=/" +"tmp\n" +"Vexa as páxinas do manual sobre apt-get(8), sources.list(5) e apt.conf(5) \n" +"para obter mais información e opcións\n" +" Este APT ten poderes da Super Vaca.\n" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Atopouse a etiqueta «%s»\n" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Ten que especificar polo menos un paquete para obter o código fonte" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Ese non é un nome correcto, volva tentalo.\n" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: apt-pkg/cdrom.cc:817 -#, c-format +#: cmdline/apt-helper.cc:66 msgid "" -"This disc is called: \n" -"'%s'\n" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Este disco chámase: \n" -"«%s»\n" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Copiando as listas de paquetes..." +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "mais non está instalado" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Escribindo a nova lista de orixes\n" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s cambiado a instalado manualmente.\n" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "As entradas da lista de orixes deste disco son:\n" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s está estabelecido para a súa instalación automática.\n" -#: apt-pkg/algorithms.cc:265 +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s xa é a versión máis recente.\n" + +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s xa é a versión máis recente.\n" + +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +msgid "Waited for %s but it wasn't there" +msgstr "Agardouse por %s pero non estaba alí" + +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "%s cambiado a instalado manualmente.\n" + +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "Non foi posíbel abrir %s" + +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -"O paquete %s ten que ser reinstalado, mais non é posíbel atopar o seu " -"arquivo." -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-mark.cc:392 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -"Erro, pkgProblemResolver::Resolve xerou interrupcións, isto pode estar " -"causado por paquetes retidos." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Non é posíbel solucionar os problemas, ten retidos paquetes rotos." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Construindo a árbore de dependencias" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Versións candidatas" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Xeración de dependencias" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Non é posíbel ler a base de datos do CD-ROM %s" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Lendo a información do estado" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" +msgstr "" +"Empregue apt-cdrom para que APT poida recoñecer este CD-ROM. Non foi posíbel " +"empregar apt-get update para engadir un CD-ROM" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Non foi posíbel abrir o ficheiro de estado %s" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD-ROM incorrecto" -#: apt-pkg/depcache.cc:256 +#: methods/cdrom.cc:249 #, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Non foi posíbel gravar o ficheiro de estado temporal %s" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Non é posíbel desmontar o CD-ROM de %s, pode estarse empregando aínda." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Non é posíbel analizar o ficheiro de paquetes %s (1)" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Non se atopou o disco" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Non é posíbel analizar o ficheiro de paquetes %s (2)" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Non se atopou o ficheiro" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Non se atopou a publicación «%s» de «%s»" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Non foi posíbel determinar o estado" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Non se atopou a versión «%s» de «%s»" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Non foi posíbel estabelecer a hora de modificación" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "Non foi posíbel atopar o paquete %s" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI incorrecto, os URI locais non deben comezar por //" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Non foi posíbel atopar a tarefa «%s»" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Identificándose" -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Non é posíbel determinar o nome do outro extremo" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Non é posíbel determinar o nome local" -#: apt-pkg/cacheset.cc:626 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" -"Non é posíbel seleccionar distintas versións do paquete «%s» xa que é " -"puramente virtual" +msgid "The server refused the connection and said: %s" +msgstr "O servidor rexeitou a conexión e dixo: %s" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: methods/ftp.cc:225 #, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" -"Non é posíbel seleccionar nin a versión instalada nin a candidata do paquete " -"«%s» xa que non ten ningunha delas" +msgid "USER failed, server said: %s" +msgstr "Fallou a orde USER, o servidor dixo: %s" -#: apt-pkg/cacheset.cc:647 +#: methods/ftp.cc:232 #, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"Non é posíbel seleccionar a versión máis recente do paquete «%s» xa que é " -"puramente virtual" +msgid "PASS failed, server said: %s" +msgstr "Fallou a orde PASS, o servidor dixo: %s" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -"Non é posíbel seleccionar a versión candidata do paquete %s xa que non ten " -"candidata" +"Especificouse un servidor proxy pero non un script de conexión, Acquire::" +"ftp::ProxyLogin está baleiro." -#: apt-pkg/cacheset.cc:663 +#: methods/ftp.cc:280 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" -"Non é posíbel seleccionar a versión instalada do paquete %s xa que non está " -"instalado" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Fallou a orde do script de acceso «%s», o servidor dixo: %s" -#: apt-pkg/indexrecords.cc:78 +#: methods/ftp.cc:306 #, c-format -msgid "Unable to parse Release file %s" -msgstr "Non se puido analizar o ficheiro de publicación %s" +msgid "TYPE failed, server said: %s" +msgstr "Fallou a orde TYPE, o servidor dixo: %s" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "Non hai seccións no ficheiro de publicación %s" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Esgotouse o tempo para a conexión" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Non hai entrada de Hash no ficheiro de publicación %s" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "O servidor pechou a conexión" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "A entrada «Valid-Until» no ficheiro de publicación %s non é válida" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Produciuse un erro de lectura" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "A entrada «Date» no ficheiro de publicación %s non é válida" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Unha resposta desbordou o búfer." -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Liña %lu mal construída na lista de orixes %s (análise de URI)" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Dano no protocolo" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"Liña %lu mal construída na lista de fontes %s ([opción] non analizábel)" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Produciuse un erro de escritura" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "" -"Liña %lu mal construída na lista de fontes %s ([opción] demasiado curta)" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Non é posíbel crear un socket" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" msgstr "" -"Liña %lu mal construída na lista de fontes %s ([%s] non é unha asignación)" - -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Liña %lu mal construída na lista de fontes %s ([%s] non ten chave)" +"Non é posíbel conectar o socket de datos, o tempo esgotouse para a conexión" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Liña %lu mal construída na lista de fontes %s ([%s] a chave %s non ten valor)" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Fallou" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Liña %lu mal construída na lista de orixes %s (URI)" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Non é posíbel conectar o socket pasivo." -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Liña %lu mal construída na lista de orixes %s (dist)" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo non puido obter un socket no que atender" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Liña %lu mal construída na lista de orixes %s (análise de URI)" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Non é posíbel ligar un socket" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Liña %lu mal construída na lista de orixes %s (dist absoluta)" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Non é posíbel escoitar no socket" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Liña %lu mal construída na lista de orixes %s (análise de dist)" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Non é posíbel determinar o nome do socket" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Abrindo %s" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Non é posíbel enviar a orde PORT" -#: apt-pkg/sourcelist.cc:371 +#: methods/ftp.cc:802 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Liña %u mal construída na lista de orixes %s (tipo)" +msgid "Unknown address family %u (AF_*)" +msgstr "Familia de enderezos %u (AF_*) descoñecida" -#: apt-pkg/sourcelist.cc:375 +#: methods/ftp.cc:811 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "O tipo «%s» non se coñece na liña %u da lista de orixes %s" - -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "O tipo «%s» non se coñece na liña %u da lista de orixes %s" +msgid "EPRT failed, server said: %s" +msgstr "Produciuse un fallou na orde EPRT, o servidor dixo: %s" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Instalando %s" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "A conexión do socket de datos esgotou o tempo" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Configurando %s" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Non é posíbel aceptar a conexión" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Retirando %s" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Xurdiu un problema ao calcular o hash do ficheiro" -#: apt-pkg/deb/dpkgpm.cc:98 +#: methods/ftp.cc:890 #, c-format -msgid "Completely removing %s" -msgstr "%s completamente retirado" +msgid "Unable to fetch file, server said '%s'" +msgstr "Non é posíbel obter o ficheiro, o servidor dixo «%s»" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "Tomando nota da desaparición de %s" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "O socket de datos esgotou o tempo" -#: apt-pkg/deb/dpkgpm.cc:100 +#: methods/ftp.cc:935 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Executando o disparador de post-instalación %s" +msgid "Data transfer failed, server said '%s'" +msgstr "Produciuse un fallou na transferencia de datos, o servidor dixo «%s»" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Falta o directorio «%s»" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Petición" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "Non foi posíbel abrir o ficheiro «%s»" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Non é posíbel chamar a " -#: apt-pkg/deb/dpkgpm.cc:989 +#: methods/connect.cc:76 #, c-format -msgid "Preparing %s" -msgstr "Preparando %s" +msgid "Connecting to %s (%s)" +msgstr "Conectando a %s (%s)" -#: apt-pkg/deb/dpkgpm.cc:990 +#: methods/connect.cc:87 #, c-format -msgid "Unpacking %s" -msgstr "Desempaquetando %s" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/deb/dpkgpm.cc:995 +#: methods/connect.cc:94 #, c-format -msgid "Preparing to configure %s" -msgstr "Preparandose para configurar %s" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Non foi posíbel crear un socket para %s (f=%u t=%u p=%u)" -#: apt-pkg/deb/dpkgpm.cc:997 +#: methods/connect.cc:100 #, c-format -msgid "Installed %s" -msgstr "Instalouse %s" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Non é posíbel iniciar a conexión a %s:%s (%s)." -#: apt-pkg/deb/dpkgpm.cc:1002 +#: methods/connect.cc:108 #, c-format -msgid "Preparing for removal of %s" -msgstr "Preparándose para o retirado de %s" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Non foi posíbel conectar a %s:%s (%s), a conexión esgotou o tempo" -#: apt-pkg/deb/dpkgpm.cc:1004 +#: methods/connect.cc:126 #, c-format -msgid "Removed %s" -msgstr "Retirouse %s" +msgid "Could not connect to %s:%s (%s)." +msgstr "Non foi posíbel conectar a %s:%s (%s)." -#: apt-pkg/deb/dpkgpm.cc:1009 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Preparándose para retirar %s completamente" +msgid "Connecting to %s" +msgstr "Conectando a %s" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Completely removed %s" -msgstr "Retirouse %s completamente" +msgid "Could not resolve '%s'" +msgstr "Non foi posíbel atopar «%s»" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: methods/connect.cc:205 +#, c-format +msgid "Temporary failure resolving '%s'" +msgstr "Produciuse un fallo temporal ao buscar «%s»" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#: methods/connect.cc:209 #, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Non é posíbel escribir en %s" - -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +msgid "System error resolving '%s:%s'" +msgstr "Aconteceu algo malo, buscando «%s:%s» (%i - %s)" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/connect.cc:211 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Agardouse por %s pero non estaba alí" - -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" -"Non se escribiu ningún informe de Apport porque xa se acadou o nivel " -"MaxReports" - -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "problemas de dependencias - déixase sen configurar" - -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"Non se escribiu ningún informe de Apport porque a mensaxe de erro indica que " -"é un error provinte dun fallo anterior." +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Aconteceu algo malo, buscando «%s:%s» (%i - %s)" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Non se escribiu ningún informe de Apport porque a mensaxe de erro indica un " -"erro de disco cheo." +#: methods/connect.cc:258 +#, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Non é posíbel conectar %s:%s:" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: methods/gpgv.cc:168 msgid "" -"No apport report written because the error message indicates a out of memory " -"error" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Non se escribiu un informe de contribución porque a mensaxe de erro indica " -"un erro de falta de memoria" +"Erro interno: Sinatura correcta, pero non foi posíbel determinar a pegada " +"dixital da chave" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" -"Non se escribiu ningún informe de Apport porque a mensaxe de erro indica un " -"erro de disco cheo." +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Atopouse polo menos unha sinatura incorrecta." -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"Non se escribiu ningún informe de Apport porque a mensaxe de erro indica un " -"erro de E/S en dpkg" +"Non é posíbel executar «gpgv» para verificar a sinatura (Está instalado " +"gpgv?)" -#: apt-pkg/deb/debsystem.cc:91 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"Non é posíbel bloquear o directorio de administración (%s). Esta usandoo " -"algún outro proceso?" -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "" -"Non é posíbel bloquear o directorio de administración (%s). É o " -"administrador?" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Produciuse un erro descoñecido ao executar gpgv" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "As seguintes sinaturas non eran correctas:\n" + +#: methods/gpgv.cc:231 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -"dpkg interrompeuse, debe executar manualmente «%s» para corrixir o problema. " - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Non está bloqueado" - -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lid %lih %limin %lis" - -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%lih %limin %lis" - -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%limin %lis" - -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%lis" +"Non se puideron verificar as seguintes sinaturas porque a chave pública non " +"está dispoñíbel:\n" -#: apt-pkg/contrib/strutl.cc:1243 -#, c-format -msgid "Selection %s not found" -msgstr "Non se atopou a selección %s" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Os ficheiros baleiros non poden ser arquivadores válidos" -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Non se empregan bloqueos para o ficheiro de bloqueo de só lectura %s" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Produciuse un erro ao escribir no ficheiro" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Non foi posíbel abrir o ficheiro de bloqueo %s" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "" +"Produciuse un erro ao ler do servidor. O extremo remoto pechou a conexión" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Non se empregan bloqueos para o ficheiro de bloqueo montado por NFS %s" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Produciuse un erro ao ler do servidor" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Non foi posíbel obter o bloqueo %s" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Produciuse un erro ao escribir nun ficheiro" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "A lista de ficheiros non pode ser creada como «%s» non é un directorio" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Fallou a chamada a select" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "Ignorando «%s» no directorio «%s» xa que non é un ficheiro regular" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "A conexión esgotou o tempo" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" -"Ignorando o ficheiro «%s» no directorio «%s» xa que non ten extensión de nome" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Produciuse un erro ao escribir no ficheiro de saída" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" -msgstr "" -"Ignorando o ficheiro «%s» no directorio «%s» xa que ten unha extensión de " -"nome incorrecta" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Agardando polas cabeceiras" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "O subproceso %s recibiu un fallo de segmento." +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Liña de cabeceira incorrecta" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "O subproceso %s recibiu o sinal %u." +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "O servidor HTTP enviou unha cabeceira de resposta incorrecta" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "O subproceso %s devolveu un código de erro (%u)" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "" +"O servidor HTTP enviou unha cabeceira cunha lonxitude de contido incorrecta" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "O subproceso %s saíu de xeito inesperado" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "O servidor HTTP enviou unha cabeceira cun rango de contido incorrecto" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Produciuse un erro de escritura" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Este servidor HTTP ten a compatibilidade de rangos estragada" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Produciuse un problema ao pechar o arquivo gzip %s" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Formato de datos descoñecido" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Non foi posíbel abrir o ficheiro %s" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Datos da cabeceira incorrectos" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "Non foi posíbel abrir o descritor de ficheiro %d" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Produciuse un fallo na conexión" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Non foi posíbel crear o IPC do subproceso" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Produciuse un erro interno" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Non foi posíbel executar o compresor " +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Produciuse un erro de lectura" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "" +"Produciuse un erro interno, chamouse a InstallPackages con paquetes " +"estragados." -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "lectura, aínda hai %lu para ler pero non queda ningún" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Hai que retirar paquetes mais o retirado está desactivado." -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "escritura, aínda hai %lu para escribir pero non se puido" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Produciuse un erro interno; non rematou a ordenación" -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Produciuse un problema ao pechar o ficheiro %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Que estraño... Os tamaños non coinciden; envíe un correo-e a apt@packages." +"debian.org" -#: apt-pkg/contrib/fileutl.cc:1927 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Produciuse un problema ao renomear o ficheiro %s a %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Ten que recibir %sB/%sB de arquivos.\n" -#: apt-pkg/contrib/fileutl.cc:1938 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "Problem unlinking the file %s" -msgstr "Produciuse un problema ao desligar o ficheiro %s" +msgid "Need to get %sB of archives.\n" +msgstr "Ten que recibir %sB de arquivos.\n" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Produciuse un problema ao sincronizar o ficheiro" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 +#, c-format +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Despois desta operación ocuparanse %sB de disco adicionais.\n" -#: apt-pkg/contrib/progress.cc:148 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Erro!" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Despois desta operación liberaranse %sB de espazo de disco.\n" -#: apt-pkg/contrib/progress.cc:150 +#: apt-private/private-install.cc:200 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Feito" +msgid "You don't have enough free space in %s." +msgstr "Non hai espazo libre abondo en %s." -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Xurdiron problemas e empregouse -y sen --force-yes" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Feito" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Especificouse «Só triviais» mais esta non é unha operación trivial." -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Non é posíbel facer mmap sobre un ficheiro baleiro" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Si, fai o que digo!" -#: apt-pkg/contrib/mmap.cc:111 +#: apt-private/private-install.cc:222 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Non foi posíbel duplicar o descritor de ficheiro %i" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Está a piques de facer algo perigoso.\n" +"Para continuar escriba a frase «%s»\n" +" ?] " -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Non foi posíbel facer mmap de %lu bytes" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Interromper." -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Non é posíbel pechar mmap" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Quere continuar?" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Non é posíbel sincronizar mmap" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Non foi posíbel descargar algúns ficheiros" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Non foi posíbel facer mmap de %lu bytes" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"Non foi posíbel obter algúns arquivos; probe con apt-get update ou --fix-" +"missing." -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Non foi posíbel truncar o ficheiro" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "" +"O emprego conxunto de --fix-missing e intercambio de discos non está admitido" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Non é posíbel corrixir os paquetes non dispoñíbeis." + +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Interrompendo a instalación." + +#: apt-private/private-install.cc:366 msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" -msgstr "" -"Dynamic MMap executouse fora do lugar. Incremente o tamaño de APT::Cache-" -"Start. O valor actual é : %lu. (man 5 apt.conf)" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"O seguinte paquete desapareceu do seu sistema e todos os \n" +"ficheiros serán sobrescritos por outros paquetes:" +msgstr[1] "" +"Os seguintes paquetes desapareceron do seu sistema e todos os \n" +"ficheiros serán sobrescritos por outros paquetes:" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Nota: Isto será feito automaticamente por dpkg." -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -"Non é posíbel aumentar o tamaño de MMap xa que o límite de %lu bytes xa foi " -"acadado." +"Non se agarda que eliminemos cousas, non se pode iniciar o Retirado " +"automático" -#: apt-pkg/contrib/mmap.cc:449 +#: apt-private/private-install.cc:499 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Non é posíbel aumentar o tamaño de MMap xa que o crecemento automático foi " -"desactivado polo usuario." - -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Non é posíbel analizar o punto de montaxe %s" +"Vaia, semella que o Retirado automático destruíu algo que realmente\n" +"non debería ter feito. Informe deste erro de apt." -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Non foi posíbel analizar o CD-ROM" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "A seguinte información pode axudar a solucionar a situación:" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Abreviatura de tipo «%c» descoñecida" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Produciuse un erro interno, o Retirado automático estragou cousas" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Abrindo o ficheiro de configuración %s" +#: apt-private/private-install.cc:513 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "" +"O seguinte paquete foi instalado automaticamente e xa non é necesario:" +msgstr[1] "" +"Os seguintes paquetes foron instalados automaticamente e xa non son " +"necesarios:" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-private/private-install.cc:517 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Produciuse un erro de sintaxe %s:%u: O bloque comeza sen un nome." +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "%lu paquete foi instalado automaticamente e xa non é necesario.\n" +msgstr[1] "" +"%lu paquetes foron instalados automaticamente e xa non son necesarios.\n" -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Produciuse un erro de sintaxe %s:%u: Etiqueta mal formada" +#: apt-private/private-install.cc:519 +#, fuzzy +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Empregue «apt-get autoremove» para eliminalos." +msgstr[1] "Empregue «apt-get autoremove» para eliminalos." -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Produciuse un erro de sintaxe %s:%u: Lixo extra despois do valor" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Pode querer executar «apt-get -f install» para corrixir isto:" -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"Produciuse un erro de sintaxe %s:%u: Só se poden facer directivas no nivel " -"superior" - -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Produciuse un erro de sintaxe %s:%u: Includes aniñados de máis" - -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Produciuse un erro de sintaxe %s:%u: Incluído de aquí" - -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Produciuse un erro de sintaxe %s:%u: Non se admite a directiva «%s»" +"Dependencias incumpridas. Probe «apt-get -f install» sen paquetes (ou " +"especifique unha solución)." -#: apt-pkg/contrib/configuration.cc:900 -#, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." msgstr "" -"Produciuse un erro de sintaxe %s:%u: a directiva «clear» require unha árbore " -"de opción como argumento" +"Non foi posíbel instalar algúns paquetes. Isto pode significar que " +"solicitou\n" +"unha situación imposíbel ou, se emprega a distribución inestábel, que\n" +"algúns paquetes solicitados aínda non se creasen ou que se movesen da " +"entrada." -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Produciuse un erro de sintaxe %s:%u: Lixo extra á fin da liña" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Paquetes estragados" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, c-format -msgid "No keyring installed in %s." -msgstr "Non ha ningún chaveiro instalado en %s." +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Instalaranse os seguintes paquetes extra:" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Non se coñece a opción de liña de ordes «%c» [de %s]." +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Paquetes suxeridos:" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "Non se entende a opción de liña de ordes %s" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Paquetes recomendados:" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-private/private-install.cc:825 #, c-format -msgid "Command line option %s is not boolean" -msgstr "A opción de liña de ordes %s non é booleana" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Omítese %s, xa está instalado e non se especificou a anovación.\n" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-private/private-install.cc:829 #, c-format -msgid "Option %s requires an argument." -msgstr "A opción %s precisa dun argumento." +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "Omitindo %s, non está instalado e só se solicitaron as anovacións.\n" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-private/private-install.cc:841 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "" -"Opción %s: A especificación de elemento de configuración debe ter un =<val>." +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "A reinstalación de %s non é posíbel, non se pode descargar.\n" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-private/private-install.cc:846 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "A opción %s precisa dun argumento enteiro, non «%s»" +msgid "%s is already the newest version.\n" +msgstr "%s xa é a versión máis recente.\n" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-private/private-install.cc:894 #, c-format -msgid "Option '%s' is too long" -msgstr "A opción «%s» é longa de máis" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Versión seleccionada «%s» (%s) para «%s»\n" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-private/private-install.cc:899 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "O senso %s non se entende, probe «true» ou «false»." +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Versión seleccionada «%s» (%s) para «%s» xa que «%s»\n" -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "Operación incorrecta: %s" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "O paquete %s non está instalado, así que non foi retirado\n" -#: cmdline/apt-cache.cc:149 -#, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "O paquete %s versión %s ten unha dependencia incumprida:\n" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "O paquete %s non está instalado, así que non foi retirado\n" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Número total de nomes de paquetes : " +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Estruturas de paquetes totais: " +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Paquetes normais: " +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Corrixindo as dependencias..." -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Paquetes virtuais puros: " +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " fallou." -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Paquetes virtuais simples: " +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Non foi posíbel corrixir as dependencias." -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Paquetes virtuais mixtos: " +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Non foi posíbel minimizar o conxunto de anovacións" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Non atopados: " +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Feito" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Número total de versións distintas: " +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Pode querer executar «apt-get -f install» para corrixilos." -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Número total de descricións distintas: " +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Dependencias incumpridas. Probe a empregar -f." -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Número total de dependencias: " +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Número total de relacións versión/ficheiro: " +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Instalado]" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Número total de relacións descrición/ficheiro: " +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Instalado]" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Número total de asignacións provistas: " +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Número total de cadeas: " +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Instalado]" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Espazo total de versións de dependencias: " +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Instalado]" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Espazo de reserva total: " +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Espazo total contabilizado: " +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 +#: apt-private/private-output.cc:435 #, c-format -msgid "Package file %s is out of sync." -msgstr "O ficheiro de paquete %s está sen sincronizar." +msgid "but %s is installed" +msgstr "mais %s está instalado" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Non se atopou ningún paquete" +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "mais vaise instalar %s" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Debe fornecer cando menos un patrón de busca" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "mais non é instalábel" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "mais é un paquete virtual" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Ficheiros de paquetes:" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "mais non está instalado" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "" -"A caché está sen sincronizar, non se pode facer referencia a un ficheiro de " -"paquetes" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "mais non se vai a instalar" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Paquetes inmobilizados:" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " ou" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(non se atopou)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Os seguintes paquetes teñen dependencias sen cumprir:" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Instalado: " +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Os seguintes paquetes NOVOS hanse instalar:" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidato: " +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Vanse RETIRAR os paquetes seguintes:" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ningún)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Consérvanse os seguintes paquetes:" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Inmobilizado: " +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Vanse anovar os paquetes seguintes:" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Táboa de versións:" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Vanse REVERTER os seguintes paquetes :" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Vanse modificar os paquetes retidos seguintes:" + +#: apt-private/private-output.cc:668 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s para %s compilado en %s %s\n" +msgid "%s (due to %s) " +msgstr "%s (por mor de %s) " -#: cmdline/apt-cache.cc:1749 -#, fuzzy +#: apt-private/private-output.cc:676 msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Uso: apt-cache [opcións] orde\n" -" apt-cache [opcións] showpkg paquete1 [paquete2 ...]\n" -" apt-cache [opcións] showsrc paquete1 [paquete2 ...]\n" -"\n" -"apt-cache é unha ferramenta de baixo nivel usada para consultar\n" -"informacións dos ficheiros binarios da cache do APT\n" -"\n" -"Ordes:\n" -" gencaches - Constrúe as caches de paquete e fonte\n" -" showpkg - Mostra algunhas informacións xerais dun único paquete\n" -" showsrc - Mostra rexistros da fonte\n" -" stats - Mostra algunhas estatísticas básicas\n" -" dump - Mostra o ficheiro enteiro nun formato concreto\n" -" dumpavail - Imprime un ficheiro dispoñíbel para stdout\n" -" unmet - Mostra dependencias non atopadas\n" -" search - Busca na lista de paquetes por unha expresión regular\n" -" show - Mostra un rexistro lexíbel para o paquete\n" -" showauto - Mostra unha lista dos paquetes instalados automaticamente\n" -" depends - Mostra informacións brutas de dependencia para un paquete\n" -" rdepends - Mostra informacións de dependencia inversa para un paquete\n" -" pkgnames - Lista os nomes de todos os paquetes no sistema\n" -" dotty - Xera gráficos de paquete para o GraphViz\n" -" xvcg - Xera gráficos de paquete para o xvcg\n" -" policy - Mostra configuracións da política\n" -"\n" -"Options:\n" -" -h Este texto de axuda.\n" -" -p=? A cache do paquete.\n" -" -s=? A cache da fonte.\n" -" -q Desactiva o indicador de progreso.\n" -" -i Mostra soamente dependencias importantes para a orde unmet.\n" -" -c=? Ler este ficheiro de configuración\n" -" -o=? Define unha opción arbitraria de configuración, ex. -o dir::cache=/" -"tmp\n" -"Vexa a páxina de manual apt-cache(8) e apt.conf(5) para obter mais " -"información.\n" - -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Forneza un nome para este disco, como «Debian 5.0.3 Disco 1»" - -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Insira un disco na unidade e prema Intro" +"AVISO: Retiraranse os seguintes paquetes esenciais.\n" +"Isto NON se debe facer a menos que saiba exactamente o que está a facer!" -#: cmdline/apt-cdrom.cc:139 +#: apt-private/private-output.cc:707 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Produciuse un fallo ao montar «%s» en «%s»" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu anovados, %lu instalados, " -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-private/private-output.cc:711 +#, c-format +msgid "%lu reinstalled, " +msgstr "%lu reinstalados, " -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Repita este proceso para o resto de CD do seu conxunto." +#: apt-private/private-output.cc:713 +#, c-format +msgid "%lu downgraded, " +msgstr "%lu revertidos, " -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Os argumentos non van en parellas" +#: apt-private/private-output.cc:715 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "Vanse retirar %lu e deixar %lu sen anovar.\n" -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -msgstr "" -"Uso: apt-config [opcións] orde\n" -"\n" -"apt-config é unha ferramenta simple para ler a configuración de APT\n" -"\n" -"Ordes:\n" -" shell - Modo de intérprete de ordes\n" -" dump - Amosa a configuración\n" -"\n" -"Opcións:\n" -" -h Este texto de axuda.\n" -" -c=? Le este ficheiro de configuración\n" -" -o=? Estabelece unha opción de configuración, por exemplo: -o dir::cache=/" -"tmp\n" +#: apt-private/private-output.cc:719 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "%lu non instalados ou retirados de todo.\n" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[S/n]" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[s/N]" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "S" -#: cmdline/apt-get.cc:367 +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" + +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Tome «%s» como paquete fonte no canto de «%s»\n" +msgid "Regex compilation error - %s" +msgstr "Produciuse un erro na compilación da expresión regular - %s" -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Ignorar a versión non dispoñíbel «%s» do paquete «%s»" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "A orde «update» non toma argumentos" -#: cmdline/apt-get.cc:454 +#: apt-private/private-update.cc:90 #, c-format -msgid "Couldn't find package %s" -msgstr "Non foi posíbel atopar o paquete %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s cambiado a instalado manualmente.\n" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-private/private-show.cc:156 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s está estabelecido para a súa instalación automática.\n" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" + +#: apt-private/private-main.cc:32 msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" +"NOTA: Isto é só unha simulación!\n" +" apt-get precisa de privilexios de administrador para executarse " +"realmente.\n" +" Lembre tamén que o bloqueo está desactivado,\n" +" polo que non debe depender da relevancia da situación actual real." -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Produciuse un erro interno, o solucionador interno estragou cousas" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "AVISO: Non se poden autenticar os seguintes paquetes!" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Non é posíbel bloquear o directorio de descargas" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Ignórase o aviso de autenticación.\n" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Ten que especificar polo menos un paquete para obter o código fonte" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Non foi posíbel autenticar algúns paquetes" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "Non sé posíbel atopar un paquete fonte para %s" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Instalar estes paquetes sen verificación?" -#: cmdline/apt-get.cc:786 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" -"AVISO: o paquete «%s» mantense no sistema de control de versións «%s» en:\n" -"%s\n" +msgid "Failed to fetch %s %s\n" +msgstr "Non foi posíbel obter %s %s\n" -#: cmdline/apt-get.cc:791 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" -msgstr "" -"Empregue:\n" -"bzr get %s\n" -"para obter as últimas actualizacións (posibelmente non publicadas) do " -"paquete.\n" +msgid "Failed to parse %s. Edit again? " +msgstr "Non foi posíbel cambiar o nome de %s a %s" -#: cmdline/apt-get.cc:843 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Omítese o ficheiro xa descargado «%s»\n" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "Non foi posíbel determinar o espazo libre en %s" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "Non hai espazo libre abondo en %s" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Calculando a anovación... " -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Ten que recibir %sB/%sB de arquivos de fonte.\n" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Feito" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Ten que recibir %sB de arquivos de fonte.\n" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Teño " -#: cmdline/apt-get.cc:902 -#, c-format -msgid "Fetch source %s\n" -msgstr "Obter fonte %s\n" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Rcb:" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Non se puideron obter algúns arquivos." +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Completouse a descarga no modo de só descargas" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Err " -#: cmdline/apt-get.cc:950 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Omítese o desempaquetado do código fonte xa desempaquetado en %s\n" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Obtivéronse %sB en %s (%sB/s)\n" -#: cmdline/apt-get.cc:962 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Fallou a orde de desempaquetado «%s».\n" +msgid " [Working]" +msgstr " [Traballando]" -#: cmdline/apt-get.cc:963 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Comprobe que o paquete «dpkg-dev» estea instalado.\n" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Cambio de soporte: introduza o disco etiquetado\n" +" «%s»\n" +"na unidade «%s» e prema Intro\n" -#: cmdline/apt-get.cc:991 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Fallou a orde de construción de «%s».\n" - -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "O proceso fillo fallou" - -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "" -"Ten que especificar polo menos un paquete para comprobarlle as dependencias " -"de compilación" +msgid "Unable to read %s" +msgstr "Non é posíbel ler %s" -#: cmdline/apt-get.cc:1054 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" +msgid "Unable to change to %s" +msgstr "Non é posíbel cambiar a %s" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Non é posíbel obter a información de dependencias de compilación de %s" +msgid "No mirror file '%s' found " +msgstr "Non se atopou ningún ficheiro de replica «%s» " -#: cmdline/apt-get.cc:1101 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s non ten dependencias de compilación.\n" +msgid "Can not read mirror file '%s'" +msgstr "Non é posíbel ler o ficheiro de replica «%s»" -#: cmdline/apt-get.cc:1271 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o " -"paquete %s" +msgid "No entry found in mirror file '%s'" +msgstr "Non é posíbel ler o ficheiro de replica «%s»" -#: cmdline/apt-get.cc:1289 +#: methods/mirror.cc:445 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" -"A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o " -"paquete %s" +msgid "[Mirror: %s]" +msgstr "[Replica: %s]" -#: cmdline/apt-get.cc:1312 -#, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Non foi posíbel crear a canle IPC ao subproceso" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "A conexión pechouse prematuramente" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Configuración predeterminada incorrecta!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Prema Intro para continuar." + +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Quere borrar os ficheiros .deb descargados anteriormente?" + +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" -"Non foi posíbel satisfacer a dependencia «%s» de %s: O paquete instalado %s " -"é novo de máis" +"Ocorreron algúns erros ao desempaquetar, Os paquetes que se instalaron" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "serán configurados, Isto pode dar erros de duplicación" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -"A dependencia «%s» de %s non se pode satisfacer porque ningunha versión " -"dispoñíbel do paquete %s satisfai os requirimentos de versión" +"ou erros causados por dependencias incumpridas. Isto é normal, só os erros" -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format +#: dselect/install:105 msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o " -"paquete %s" +"que hai enriba desta mensaxe son importantes. Arránxeos e volva a instalar." -#: cmdline/apt-get.cc:1380 -#, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Non foi posíbel satisfacer a dependencia «%s» de %s: %s" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Mesturando a información sobre paquetes dispoñíbeis" -#: cmdline/apt-get.cc:1395 -#, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Non se puideron satisfacer as dependencias de construción de %s." +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "Chamouse a DropNode nun nodo aínda ligado" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Non se puideron procesar as dependencias de construción" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Non foi posíbel atopar o elemento hash" + +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Non foi posíbel reservar un desvío" + +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Produciuse un erro interno en AddDiversion" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Rexistro de cambios de %s (%s)" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Téntase sobrescribir un desvío, %s -> %s e %s/%s" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Módulos admitidos:" +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "Desvío %s -> %s engadido dúas veces" -#: cmdline/apt-get.cc:1632 -#, fuzzy -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -msgstr "" -"Uso: apt-get [opcións] orde\n" -" apt-get [opcións] install|remove paquete1 [paquete2 ...]\n" -" apt-get [opcións] source paquete1 [paquete2 ...]\n" -"\n" -"apt-get é unha sinxela interface de liña de ordes para a descarga e\n" -"instalación de paquetes. As ordes empregadas con máis frecuencia\n" -"son actualizadas e instaladas. \n" -"\n" -"Ordes:\n" -" update - Recupera unha nova lista de paquetes\n" -" upgrade - Executa unha actualización\n" -" install - Instala novos paquetes (o paquete é libc6 non libc6.deb)\n" -" remove - Retira paquetes\n" -" autoremove - Retira automaticamente todos os paquetes sen uso\n" -" purge - Retira paquetes e ficheiros de configuración\n" -" source - Descarga os arquivos de fontes\n" -" build-dep - Configura as dependencias para paquetes de fontes\n" -" dist-upgrade - Actualiza a distribución, vexa apt-get(8)\n" -" dselect-upgrade - Segue as seleccións de dselect\n" -" clean - Borra os arquivos de ficheiros\n" -" autoclean - Borra os arquivos de ficheiros antigos\n" -" check - Comproba que non haxa dependencias sen cumprir\n" -" markauto - Marca os paquetes como instalados automaticamente\n" -" unmarkauto - Marca os paquetes como instalados manualmente\n" -" changelog - Descarga e mostra o rexistro de cambios para o paquete " -"proposto\n" -" download - Descarga o paquete binario no directorio actual\n" -"\n" -"Opçións:\n" -" -h Este texto de axuda\n" -" -q Saída rexistrábel - sen indicador de progreso\n" -" -qq Sen saída, agás para os erros \n" -" -d Só descarga - NON instala ou desempaqueta os arquivos\n" -" -s Sen acción. Fai unha simulación\n" -" -y Asume Si para todas as preguntas e non as presenta\n" -" -f Tenta corrixir un sistema con dependencias non cumpridas\n" -" -m Tenta continuar se os arquivos non son localizados\n" -" -u Mostra tamén unha lista de paquetes actualizados\n" -" -b Constrúe o paquete fonte despois de descargalo\n" -" -V Mostra os números detallados da versión\n" -" -c=? Ler este ficheiro de configuración\n" -" -o=? Define unha opción arbitraria de configuración, p.ex. -o dir::cache=/" -"tmp\n" -"Vexa as páxinas do manual sobre apt-get(8), sources.list(5) e apt.conf(5) \n" -"para obter mais información e opcións\n" -" Este APT ten poderes da Super Vaca.\n" +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "Ficheiro de configuración %s/%s duplicado" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Ten que especificar polo menos un paquete para obter o código fonte" +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" +msgstr "A ruta %s é longa de máis" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" +msgstr "Desempaquetando %s máis dunha vez" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "O directorio %s está desviado" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "mais non está instalado" +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "O paquete tenta escribir no destino do desvío %s/%s" -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s cambiado a instalado manualmente.\n" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "A ruta do desvío é longa de máis" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s está estabelecido para a súa instalación automática.\n" +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 +#, c-format +msgid "Failed to stat %s" +msgstr "Non foi posíbel determinar o estado %s" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s xa é a versión máis recente.\n" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Non foi posíbel cambiar o nome de %s a %s" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s xa é a versión máis recente.\n" +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "O directorio %s estase a substituír por algo que non é un directorio" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s cambiado a instalado manualmente.\n" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Non foi posíbel atopar o nodo no seu contedor hash" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Non foi posíbel abrir %s" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "A ruta é longa de máis" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-inst/extract.cc:421 +#, c-format +msgid "Overwrite package match with no version for %s" +msgstr "Coincidencia na sobrescritura sen versión para %s" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" +#: apt-inst/extract.cc:438 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" +msgstr "O ficheiro %s/%s sobrescribe o do paquete %s" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-inst/extract.cc:498 +#, c-format +msgid "Unable to stat %s" +msgstr "Non é posíbel determinar o estado %s" -#: methods/cdrom.cc:203 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Non é posíbel ler a base de datos do CD-ROM %s" +msgid "Failed to write file %s" +msgstr "Non foi posíbel escribir no ficheiro «%s»" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"Empregue apt-cdrom para que APT poida recoñecer este CD-ROM. Non foi posíbel " -"empregar apt-get update para engadir un CD-ROM" +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "Non foi posíbel pechar o ficheiro %s" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD-ROM incorrecto" +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Este non é un arquivo DEB correcto, falta o membro «%s»" -#: methods/cdrom.cc:249 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Non é posíbel desmontar o CD-ROM de %s, pode estarse empregando aínda." +msgid "Internal error, could not locate member %s" +msgstr "Produciuse un erro interno, non foi posíbel atopar o membro %s" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Non se atopou o disco" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Ficheiro de control non analizábel" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Non se atopou o ficheiro" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Sinatura de arquivo incorrecta" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Non foi posíbel determinar o estado" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Produciuse un erro ao ler a cabeceira do membro do arquivo" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Non foi posíbel estabelecer a hora de modificación" +#: apt-inst/contrib/arfile.cc:96 +#, c-format +msgid "Invalid archive member header %s" +msgstr "Cabeceira do membro do arquivo incorrecta %s" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI incorrecto, os URI locais non deben comezar por //" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Cabeceira do membro do arquivo incorrecta" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "O arquivo é curto de máis" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Non foi posíbel ler as cabeceiras dos arquivos" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Non foi posíbel crear as canles" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Non foi posíbel executar gzip " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Arquivo danado" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "A suma de comprobación do arquivo tar non coincide, está danado" + +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Tipo de cabeceira TAR %u descoñecido, membro %s" + +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" + +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Executando dpkg" + +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "O sistema de empaquetado «%s» non está admitido" + +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Non é posíbel determinar un tipo de sistema de empaquetado axeitado" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Identificándose" +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "Escribíronse %i rexistros.\n" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Non é posíbel determinar o nome do outro extremo" +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "Escribíronse %i rexistros con %i ficheiros que faltan.\n" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Non é posíbel determinar o nome local" +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Escribíronse %i rexistros con %i ficheiros que non coinciden\n" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "O servidor rexeitou a conexión e dixo: %s" +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" +"Escribíronse %i rexistros con %i ficheiros que faltan e %i ficheiros que non " +"coinciden\n" -#: methods/ftp.cc:225 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "USER failed, server said: %s" -msgstr "Fallou a orde USER, o servidor dixo: %s" +msgid "Can't find authentication record for: %s" +msgstr "Non é posíbel atopar un rexistro de autenticación para: %s" -#: methods/ftp.cc:232 +#: apt-pkg/indexcopy.cc:521 #, c-format -msgid "PASS failed, server said: %s" -msgstr "Fallou a orde PASS, o servidor dixo: %s" +msgid "Hash mismatch for: %s" +msgstr "Valor de hash non coincidente para: %s" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." msgstr "" -"Especificouse un servidor proxy pero non un script de conexión, Acquire::" -"ftp::ProxyLogin está baleiro." +"Non foi posíbel analizar ou abrir as listas de paquetes ou ficheiro de " +"estado." -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Fallou a orde do script de acceso «%s», o servidor dixo: %s" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Pode querer executar «apt-get update» para corrixir estes problemas" -#: methods/ftp.cc:306 +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Non foi posíbel ler a lista de orixes." + +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Caché de paquetes baleira" + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "O ficheiro de caché de paquetes está danado" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "O ficheiro de caché de paquetes é unha versión incompatíbel" + +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "O ficheiro de caché de paquetes está danado" + +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "Fallou a orde TYPE, o servidor dixo: %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "Este APT non admite o sistema de versionado «%s»" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Esgotouse o tempo para a conexión" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "A caché de paquetes construíuse para unha arquitectura diferente" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "O servidor pechou a conexión" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Depende" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Unha resposta desbordou o búfer." +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "PreDepende" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Dano no protocolo" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Suxire" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Non é posíbel crear un socket" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Recomenda" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "" -"Non é posíbel conectar o socket de datos, o tempo esgotouse para a conexión" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Conflitos" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Fallou" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Substitúe a" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Non é posíbel conectar o socket pasivo." +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Fai obsoleto a" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo non puido obter un socket no que atender" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Estraga" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Non é posíbel ligar un socket" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Mellora" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Non é posíbel escoitar no socket" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "importante" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Non é posíbel determinar o nome do socket" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "requirido" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Non é posíbel enviar a orde PORT" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "estándar" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Familia de enderezos %u (AF_*) descoñecida" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "opcional" -#: methods/ftp.cc:811 +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" + +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "Produciuse un fallou na orde EPRT, o servidor dixo: %s" +msgid "The method driver %s could not be found." +msgstr "Non foi posíbel atopar o controlador de métodos %s." -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "A conexión do socket de datos esgotou o tempo" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Comprobe que o paquete «dpkg-dev» estea instalado.\n" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Non é posíbel aceptar a conexión" +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "O método %s non se iniciou correctamente" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Xurdiu un problema ao calcular o hash do ficheiro" +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Insira o disco etiquetado: «%s» na unidade «%s» e prema Intro." -#: methods/ftp.cc:890 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Non é posíbel obter o ficheiro, o servidor dixo «%s»" +msgid "Index file type '%s' is not supported" +msgstr "O tipo de ficheiros de índices «%s» non está admitido" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "O socket de datos esgotou o tempo" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Construindo a árbore de dependencias" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Produciuse un fallou na transferencia de datos, o servidor dixo «%s»" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Versións candidatas" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Petición" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Xeración de dependencias" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Non é posíbel chamar a " +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Lendo a información do estado" -#: methods/connect.cc:76 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Conectando a %s (%s)" +msgid "Failed to open StateFile %s" +msgstr "Non foi posíbel abrir o ficheiro de estado %s" -#: methods/connect.cc:87 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Failed to write temporary StateFile %s" +msgstr "Non foi posíbel gravar o ficheiro de estado temporal %s" + +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "non foi posíbel cambiar o nome, %s (%s -> %s)." + +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "A sumas «hash» non coinciden" -#: methods/connect.cc:94 -#, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Non foi posíbel crear un socket para %s (f=%u t=%u p=%u)" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Os tamaños non coinciden" -#: methods/connect.cc:100 -#, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Non é posíbel iniciar a conexión a %s:%s (%s)." +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Operación incorrecta: %s" -#: methods/connect.cc:108 +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Non foi posíbel conectar a %s:%s (%s), a conexión esgotou o tempo" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" +"Non é posíbel atopar a entrada agardada «%s» no ficheiro de publicación " +"(entrada sources.list incorrecta ou ficheiro con formato incorrecto)" -#: methods/connect.cc:126 +#: apt-pkg/acquire-item.cc:1589 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Non foi posíbel conectar a %s:%s (%s)." +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "" +"Non é posíbel ler a suma de comprobación para «%s» no ficheiro de publicación" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 -#, c-format -msgid "Connecting to %s" -msgstr "Conectando a %s" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Non hai unha chave pública dispoñíbel para os seguintes ID de chave:\n" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Could not resolve '%s'" -msgstr "Non foi posíbel atopar «%s»" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: methods/connect.cc:205 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Produciuse un fallo temporal ao buscar «%s»" - -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Aconteceu algo malo, buscando «%s:%s» (%i - %s)" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Conflito na distribución: %s (agardábase %s mais obtívose %s)" -#: methods/connect.cc:211 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Aconteceu algo malo, buscando «%s:%s» (%i - %s)" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"Produciuse un erro durante a verificación da sinatura. O repositorio non foi " +"actualizado, empregaranse os ficheiros de índice anteriores. Erro de GPG: " +"%s: %s\n" -#: methods/connect.cc:258 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Non é posíbel conectar %s:%s:" +msgid "GPG error: %s: %s" +msgstr "Produciuse un erro de GPG: %s %s" -#: methods/gpgv.cc:168 +#: apt-pkg/acquire-item.cc:1859 +#, c-format msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" msgstr "" -"Erro interno: Sinatura correcta, pero non foi posíbel determinar a pegada " -"dixital da chave" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Atopouse polo menos unha sinatura incorrecta." +"Non é posíbel atopar un ficheiro para o paquete %s. Isto pode significar que " +"ten que arranxar este paquete a man. (Falta a arquitectura)" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -"Non é posíbel executar «gpgv» para verificar a sinatura (Está instalado " -"gpgv?)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1983 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" +"Os ficheiros de índices de paquetes están danados. Non hai un campo " +"Filename: para o paquete %s." -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Produciuse un erro descoñecido ao executar gpgv" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "As seguintes sinaturas non eran correctas:\n" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "O tipo de ficheiros de índices «%s» non está admitido" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "" -"Non se puideron verificar as seguintes sinaturas porque a chave pública non " -"está dispoñíbel:\n" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Non é posíbel analizar %s." -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Os ficheiros baleiros non poden ser arquivadores válidos" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "A caché ten un sistema de versionado incompatíbel" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Produciuse un erro ao escribir no ficheiro" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Produciuse un erro ao procesar %s (FindPkg)" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -"Produciuse un erro ao ler do servidor. O extremo remoto pechou a conexión" +"Vaites!, superou o número de nomes de paquetes que este APT pode manexar." -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Produciuse un erro ao ler do servidor" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Vaites!, superou o número de versións que este APT pode manexar." -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Produciuse un erro ao escribir nun ficheiro" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Vaites!, superou o número de descricións que este APT pode manexar." -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Fallou a chamada a select" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "Vaites!, superou o número de dependencias que este APT pode manexar." -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "A conexión esgotou o tempo" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "" +"Non foi posíbel atopar o paquete %s %s ao procesar as dependencias de " +"ficheiros" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Produciuse un erro ao escribir no ficheiro de saída" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Non foi posíbel atopar a lista de paquetes fonte %s" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Agardando polas cabeceiras" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Lendo as listas de paquetes" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Liña de cabeceira incorrecta" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Recollendo as provisións de ficheiros" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "O servidor HTTP enviou unha cabeceira de resposta incorrecta" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Non é posíbel escribir en %s" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "" -"O servidor HTTP enviou unha cabeceira cunha lonxitude de contido incorrecta" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Produciuse un erro de E/S ao gravar a caché de fontes" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "O servidor HTTP enviou unha cabeceira cun rango de contido incorrecto" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "O bloque de provedor %s non contén unha pegada dixital" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Este servidor HTTP ten a compatibilidade de rangos estragada" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Non se atopa a lista de directorios %sparcial." -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Formato de datos descoñecido" +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Non se atopa a lista de arquivos %sparcial." -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Datos da cabeceira incorrectos" +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "Non é posíbel bloquear o directorio %s" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Produciuse un fallo na conexión" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Obtendo o ficheiro %li de %li (restan %s)" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Produciuse un erro interno" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Obtendo o ficheiro %li de %li" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Calculando a anovación... " +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"Algúns ficheiros de índice fallaron durante a descarga. Ignoráronse, ou " +"foron utilizados algúns antigos no seu lugar" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Feito" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Debe introducir algúns URI «orixe» no seu ficheiro sources.list" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/policy.cc:422 +#, c-format +msgid "Invalid record in the preferences file %s, no Package header" msgstr "" +"Rexistro incorrecto no ficheiro de preferencias %s; falta a cabeceira Package" -#: apt-private/private-list.cc:164 +#: apt-pkg/policy.cc:444 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Corrixindo as dependencias..." +msgid "Did not understand pin type %s" +msgstr "Non se entendeu o tipo de inmobilización %s" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " fallou." +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "" +"Non se indicou unha prioridade (ou indicouse cero) para a inmobilización" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Non foi posíbel corrixir as dependencias." +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" +"Non foi posíbel facer a configuración inmediata en «%s». Vexa man 5 apt.conf " +"baixo APT::Immediate-Configure para obter máis detalles. (%d)" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Non foi posíbel minimizar o conxunto de anovacións" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Non foi posíbel abrir o ficheiro «%s»" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Feito" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"Esta instalación requirirá que se retire temporalmente o paquete esencial %s " +"por mor dun bucle de Conflitos e Pre-dependencias. Isto adoita ser malo, " +"pero se o quere facer, active a opción APT::Force-LoopBreak." -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Pode querer executar «apt-get -f install» para corrixilos." +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "Liña %u longa de máis na lista de orixes %s." -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dependencias incumpridas. Probe a empregar -f." +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Desmontando o CD-ROM...\n" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "Empregando o punto de montaxe de CD-ROM %s\n" -#: apt-private/private-output.cc:234 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Instalado]" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Agardando polo disco...\n" -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [Instalado]" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Montando o CD-ROM...\n" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identificando... " -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Instalado]" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Etiqueta almacenada: %s\n" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Instalado]" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Buscando os ficheiros de índices no disco...\n" -#: apt-private/private-output.cc:249 +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "[upgradable from: %s]" +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"Atopáronse %zu índices de paquetes, %zu índices de orixes, %zu índices de " +"traducións e %zu sinaturas\n" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" +"Non é posíbel localizar ningún ficheiro de paquetes. É posíbel que non sexa " +"un disco de Debian ou que a arquitectura sexa incorrecta." -#: apt-private/private-output.cc:435 -#, c-format -msgid "but %s is installed" -msgstr "mais %s está instalado" - -#: apt-private/private-output.cc:437 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "but %s is to be installed" -msgstr "mais vaise instalar %s" - -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "mais non é instalábel" +msgid "Found label '%s'\n" +msgstr "Atopouse a etiqueta «%s»\n" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "mais é un paquete virtual" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Ese non é un nome correcto, volva tentalo.\n" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "mais non está instalado" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Este disco chámase: \n" +"«%s»\n" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "mais non se vai a instalar" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Copiando as listas de paquetes..." -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " ou" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Escribindo a nova lista de orixes\n" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Os seguintes paquetes teñen dependencias sen cumprir:" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "As entradas da lista de orixes deste disco son:\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Os seguintes paquetes NOVOS hanse instalar:" +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"O paquete %s ten que ser reinstalado, mais non é posíbel atopar o seu " +"arquivo." -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Vanse RETIRAR os paquetes seguintes:" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Erro, pkgProblemResolver::Resolve xerou interrupcións, isto pode estar " +"causado por paquetes retidos." -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Consérvanse os seguintes paquetes:" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Non é posíbel solucionar os problemas, ten retidos paquetes rotos." -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Vanse anovar os paquetes seguintes:" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Vanse REVERTER os seguintes paquetes :" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Vanse modificar os paquetes retidos seguintes:" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: apt-private/private-output.cc:668 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (por mor de %s) " +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" msgstr "" -"AVISO: Retiraranse os seguintes paquetes esenciais.\n" -"Isto NON se debe facer a menos que saiba exactamente o que está a facer!" -#: apt-private/private-output.cc:707 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu anovados, %lu instalados, " +msgid "Unable to parse package file %s (1)" +msgstr "Non é posíbel analizar o ficheiro de paquetes %s (1)" -#: apt-private/private-output.cc:711 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinstalados, " +msgid "Unable to parse package file %s (2)" +msgstr "Non é posíbel analizar o ficheiro de paquetes %s (2)" -#: apt-private/private-output.cc:713 +#: apt-pkg/indexrecords.cc:78 #, c-format -msgid "%lu downgraded, " -msgstr "%lu revertidos, " +msgid "Unable to parse Release file %s" +msgstr "Non se puido analizar o ficheiro de publicación %s" -#: apt-private/private-output.cc:715 +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "Vanse retirar %lu e deixar %lu sen anovar.\n" +msgid "No sections in Release file %s" +msgstr "Non hai seccións no ficheiro de publicación %s" -#: apt-private/private-output.cc:719 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu non instalados ou retirados de todo.\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[S/n]" - -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[s/N]" +msgid "No Hash entry in Release file %s" +msgstr "Non hai entrada de Hash no ficheiro de publicación %s" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "S" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "A entrada «Valid-Until» no ficheiro de publicación %s non é válida" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "N" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "A entrada «Date» no ficheiro de publicación %s non é válida" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "A orde «update» non toma argumentos" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Liña %lu mal construída na lista de orixes %s (análise de URI)" -#: apt-private/private-update.cc:90 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" +"Liña %lu mal construída na lista de fontes %s ([opción] non analizábel)" -#: apt-private/private-show.cc:156 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "" +"Liña %lu mal construída na lista de fontes %s ([opción] demasiado curta)" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "" +"Liña %lu mal construída na lista de fontes %s ([%s] non é unha asignación)" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Liña %lu mal construída na lista de fontes %s ([%s] non ten chave)" + +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -"Produciuse un erro interno, chamouse a InstallPackages con paquetes " -"estragados." +"Liña %lu mal construída na lista de fontes %s ([%s] a chave %s non ten valor)" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Hai que retirar paquetes mais o retirado está desactivado." +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Liña %lu mal construída na lista de orixes %s (URI)" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Produciuse un erro interno; non rematou a ordenación" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Liña %lu mal construída na lista de orixes %s (dist)" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Que estraño... Os tamaños non coinciden; envíe un correo-e a apt@packages." -"debian.org" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Liña %lu mal construída na lista de orixes %s (análise de URI)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Ten que recibir %sB/%sB de arquivos.\n" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Liña %lu mal construída na lista de orixes %s (dist absoluta)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Ten que recibir %sB de arquivos.\n" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Liña %lu mal construída na lista de orixes %s (análise de dist)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Despois desta operación ocuparanse %sB de disco adicionais.\n" +msgid "Opening %s" +msgstr "Abrindo %s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Despois desta operación liberaranse %sB de espazo de disco.\n" +msgid "Malformed line %u in source list %s (type)" +msgstr "Liña %u mal construída na lista de orixes %s (tipo)" -#: apt-private/private-install.cc:200 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Non hai espazo libre abondo en %s." +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "O tipo «%s» non se coñece na liña %u da lista de orixes %s" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Xurdiron problemas e empregouse -y sen --force-yes" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "O tipo «%s» non se coñece na liña %u da lista de orixes %s" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Especificouse «Só triviais» mais esta non é unha operación trivial." +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Non se atopou a publicación «%s» de «%s»" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Si, fai o que digo!" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Non se atopou a versión «%s» de «%s»" -#: apt-private/private-install.cc:222 +#: apt-pkg/cacheset.cc:603 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Está a piques de facer algo perigoso.\n" -"Para continuar escriba a frase «%s»\n" -" ?] " +msgid "Couldn't find task '%s'" +msgstr "Non foi posíbel atopar a tarefa «%s»" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Interromper." +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Quere continuar?" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Non foi posíbel descargar algúns ficheiros" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" +"Non é posíbel seleccionar distintas versións do paquete «%s» xa que é " +"puramente virtual" -#: apt-private/private-install.cc:320 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Non foi posíbel obter algúns arquivos; probe con apt-get update ou --fix-" -"missing." +"Non é posíbel seleccionar nin a versión instalada nin a candidata do paquete " +"«%s» xa que non ten ningunha delas" + +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"Non é posíbel seleccionar a versión máis recente do paquete «%s» xa que é " +"puramente virtual" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -"O emprego conxunto de --fix-missing e intercambio de discos non está admitido" +"Non é posíbel seleccionar a versión candidata do paquete %s xa que non ten " +"candidata" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Non é posíbel corrixir os paquetes non dispoñíbeis." +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"Non é posíbel seleccionar a versión instalada do paquete %s xa que non está " +"instalado" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Interrompendo a instalación." +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%lid %lih %limin %lis" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -"O seguinte paquete desapareceu do seu sistema e todos os \n" -"ficheiros serán sobrescritos por outros paquetes:" -msgstr[1] "" -"Os seguintes paquetes desapareceron do seu sistema e todos os \n" -"ficheiros serán sobrescritos por outros paquetes:" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%lih %limin %lis" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Nota: Isto será feito automaticamente por dpkg." +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" -"Non se agarda que eliminemos cousas, non se pode iniciar o Retirado " -"automático" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Vaia, semella que o Retirado automático destruíu algo que realmente\n" -"non debería ter feito. Informe deste erro de apt." +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "Non se atopou a selección %s" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "A seguinte información pode axudar a solucionar a situación:" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Non se empregan bloqueos para o ficheiro de bloqueo de só lectura %s" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Produciuse un erro interno, o Retirado automático estragou cousas" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Non foi posíbel abrir o ficheiro de bloqueo %s" -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "" -"O seguinte paquete foi instalado automaticamente e xa non é necesario:" -msgstr[1] "" -"Os seguintes paquetes foron instalados automaticamente e xa non son " -"necesarios:" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Non se empregan bloqueos para o ficheiro de bloqueo montado por NFS %s" -#: apt-private/private-install.cc:517 +#: apt-pkg/contrib/fileutl.cc:223 #, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "%lu paquete foi instalado automaticamente e xa non é necesario.\n" -msgstr[1] "" -"%lu paquetes foron instalados automaticamente e xa non son necesarios.\n" +msgid "Could not get lock %s" +msgstr "Non foi posíbel obter o bloqueo %s" -#: apt-private/private-install.cc:519 -#, fuzzy -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Empregue «apt-get autoremove» para eliminalos." -msgstr[1] "Empregue «apt-get autoremove» para eliminalos." +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "A lista de ficheiros non pode ser creada como «%s» non é un directorio" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Pode querer executar «apt-get -f install» para corrixir isto:" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "Ignorando «%s» no directorio «%s» xa que non é un ficheiro regular" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -"Dependencias incumpridas. Probe «apt-get -f install» sen paquetes (ou " -"especifique unha solución)." +"Ignorando o ficheiro «%s» no directorio «%s» xa que non ten extensión de nome" -#: apt-private/private-install.cc:638 +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"Non foi posíbel instalar algúns paquetes. Isto pode significar que " -"solicitou\n" -"unha situación imposíbel ou, se emprega a distribución inestábel, que\n" -"algúns paquetes solicitados aínda non se creasen ou que se movesen da " -"entrada." - -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Paquetes estragados" - -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Instalaranse os seguintes paquetes extra:" - -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Paquetes suxeridos:" +"Ignorando o ficheiro «%s» no directorio «%s» xa que ten unha extensión de " +"nome incorrecta" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Paquetes recomendados:" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "O subproceso %s recibiu un fallo de segmento." -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:826 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Omítese %s, xa está instalado e non se especificou a anovación.\n" +msgid "Sub-process %s received signal %u." +msgstr "O subproceso %s recibiu o sinal %u." -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "Omitindo %s, non está instalado e só se solicitaron as anovacións.\n" +msgid "Sub-process %s returned an error code (%u)" +msgstr "O subproceso %s devolveu un código de erro (%u)" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "A reinstalación de %s non é posíbel, non se pode descargar.\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "O subproceso %s saíu de xeito inesperado" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s xa é a versión máis recente.\n" +msgid "Problem closing the gzip file %s" +msgstr "Produciuse un problema ao pechar o arquivo gzip %s" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Versión seleccionada «%s» (%s) para «%s»\n" +msgid "Could not open file %s" +msgstr "Non foi posíbel abrir o ficheiro %s" -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Versión seleccionada «%s» (%s) para «%s» xa que «%s»\n" +msgid "Could not open file descriptor %d" +msgstr "Non foi posíbel abrir o descritor de ficheiro %d" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "O paquete %s non está instalado, así que non foi retirado\n" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Non foi posíbel crear o IPC do subproceso" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Non foi posíbel executar o compresor " + +#: apt-pkg/contrib/fileutl.cc:1514 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "O paquete %s non está instalado, así que non foi retirado\n" +msgid "read, still have %llu to read but none left" +msgstr "lectura, aínda hai %lu para ler pero non queda ningún" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" -"NOTA: Isto é só unha simulación!\n" -" apt-get precisa de privilexios de administrador para executarse " -"realmente.\n" -" Lembre tamén que o bloqueo está desactivado,\n" -" polo que non debe depender da relevancia da situación actual real." +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "escritura, aínda hai %lu para escribir pero non se puido" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "AVISO: Non se poden autenticar os seguintes paquetes!" +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Produciuse un problema ao pechar o ficheiro %s" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Ignórase o aviso de autenticación.\n" +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Produciuse un problema ao renomear o ficheiro %s a %s" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Non foi posíbel autenticar algúns paquetes" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Produciuse un problema ao desligar o ficheiro %s" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Instalar estes paquetes sen verificación?" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Produciuse un problema ao sincronizar o ficheiro" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Non foi posíbel cambiar o nome de %s a %s" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Erro!" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%c%s... Done" +msgstr "%c%s... Feito" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Teño " +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Feito" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Rcb:" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Non é posíbel facer mmap sobre un ficheiro baleiro" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Non foi posíbel duplicar o descritor de ficheiro %i" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Non foi posíbel facer mmap de %lu bytes" -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Obtivéronse %sB en %s (%sB/s)\n" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Non é posíbel pechar mmap" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Non é posíbel sincronizar mmap" + +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid " [Working]" -msgstr " [Traballando]" +msgid "Couldn't make mmap of %lu bytes" +msgstr "Non foi posíbel facer mmap de %lu bytes" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Non foi posíbel truncar o ficheiro" + +#: apt-pkg/contrib/mmap.cc:341 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -"Cambio de soporte: introduza o disco etiquetado\n" -" «%s»\n" -"na unidade «%s» e prema Intro\n" +"Dynamic MMap executouse fora do lugar. Incremente o tamaño de APT::Cache-" +"Start. O valor actual é : %lu. (man 5 apt.conf)" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "No mirror file '%s' found " -msgstr "Non se atopou ningún ficheiro de replica «%s» " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" +"Non é posíbel aumentar o tamaño de MMap xa que o límite de %lu bytes xa foi " +"acadado." -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"Non é posíbel aumentar o tamaño de MMap xa que o crecemento automático foi " +"desactivado polo usuario." + +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Non é posíbel ler o ficheiro de replica «%s»" +msgid "Unable to stat the mount point %s" +msgstr "Non é posíbel analizar o punto de montaxe %s" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Non é posíbel ler o ficheiro de replica «%s»" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Non foi posíbel analizar o CD-ROM" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "[Mirror: %s]" -msgstr "[Replica: %s]" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Non foi posíbel crear a canle IPC ao subproceso" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Abreviatura de tipo «%c» descoñecida" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "A conexión pechouse prematuramente" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Abrindo o ficheiro de configuración %s" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Configuración predeterminada incorrecta!" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Produciuse un erro de sintaxe %s:%u: O bloque comeza sen un nome." -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Prema Intro para continuar." +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Produciuse un erro de sintaxe %s:%u: Etiqueta mal formada" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Quere borrar os ficheiros .deb descargados anteriormente?" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Produciuse un erro de sintaxe %s:%u: Lixo extra despois do valor" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -"Ocorreron algúns erros ao desempaquetar, Os paquetes que se instalaron" +"Produciuse un erro de sintaxe %s:%u: Só se poden facer directivas no nivel " +"superior" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "serán configurados, Isto pode dar erros de duplicación" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Produciuse un erro de sintaxe %s:%u: Includes aniñados de máis" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"ou erros causados por dependencias incumpridas. Isto é normal, só os erros" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Produciuse un erro de sintaxe %s:%u: Incluído de aquí" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Produciuse un erro de sintaxe %s:%u: Non se admite a directiva «%s»" + +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"que hai enriba desta mensaxe son importantes. Arránxeos e volva a instalar." +"Produciuse un erro de sintaxe %s:%u: a directiva «clear» require unha árbore " +"de opción como argumento" -#: dselect/update:30 -msgid "Merging available information" -msgstr "Mesturando a información sobre paquetes dispoñíbeis" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Produciuse un erro de sintaxe %s:%u: Lixo extra á fin da liña" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "Chamouse a DropNode nun nodo aínda ligado" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "Non ha ningún chaveiro instalado en %s." -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Non foi posíbel atopar o elemento hash" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Non se coñece a opción de liña de ordes «%c» [de %s]." -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Non foi posíbel reservar un desvío" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Non se entende a opción de liña de ordes %s" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Produciuse un erro interno en AddDiversion" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "A opción de liña de ordes %s non é booleana" + +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "A opción %s precisa dun argumento." + +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "" +"Opción %s: A especificación de elemento de configuración debe ter un =<val>." -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Téntase sobrescribir un desvío, %s -> %s e %s/%s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "A opción %s precisa dun argumento enteiro, non «%s»" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Desvío %s -> %s engadido dúas veces" +msgid "Option '%s' is too long" +msgstr "A opción «%s» é longa de máis" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Ficheiro de configuración %s/%s duplicado" +msgid "Sense %s is not understood, try true or false." +msgstr "O senso %s non se entende, probe «true» ou «false»." -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The path %s is too long" -msgstr "A ruta %s é longa de máis" +msgid "Invalid operation %s" +msgstr "Operación incorrecta: %s" -#: apt-inst/extract.cc:132 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unpacking %s more than once" -msgstr "Desempaquetando %s máis dunha vez" +msgid "Installing %s" +msgstr "Instalando %s" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The directory %s is diverted" -msgstr "O directorio %s está desviado" +msgid "Configuring %s" +msgstr "Configurando %s" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "O paquete tenta escribir no destino do desvío %s/%s" +msgid "Removing %s" +msgstr "Retirando %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "A ruta do desvío é longa de máis" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "%s completamente retirado" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to stat %s" -msgstr "Non foi posíbel determinar o estado %s" +msgid "Noting disappearance of %s" +msgstr "Tomando nota da desaparición de %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Non foi posíbel cambiar o nome de %s a %s" +msgid "Running post-installation trigger %s" +msgstr "Executando o disparador de post-instalación %s" -#: apt-inst/extract.cc:249 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "O directorio %s estase a substituír por algo que non é un directorio" +msgid "Directory '%s' missing" +msgstr "Falta o directorio «%s»" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Non foi posíbel atopar o nodo no seu contedor hash" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Non foi posíbel abrir o ficheiro «%s»" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "A ruta é longa de máis" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Preparando %s" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Coincidencia na sobrescritura sen versión para %s" +msgid "Unpacking %s" +msgstr "Desempaquetando %s" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "O ficheiro %s/%s sobrescribe o do paquete %s" +msgid "Preparing to configure %s" +msgstr "Preparandose para configurar %s" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Unable to stat %s" -msgstr "Non é posíbel determinar o estado %s" +msgid "Installed %s" +msgstr "Instalouse %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to write file %s" -msgstr "Non foi posíbel escribir no ficheiro «%s»" +msgid "Preparing for removal of %s" +msgstr "Preparándose para o retirado de %s" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Failed to close file %s" -msgstr "Non foi posíbel pechar o ficheiro %s" +msgid "Removed %s" +msgstr "Retirouse %s" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Este non é un arquivo DEB correcto, falta o membro «%s»" +msgid "Preparing to completely remove %s" +msgstr "Preparándose para retirar %s completamente" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Produciuse un erro interno, non foi posíbel atopar o membro %s" +msgid "Completely removed %s" +msgstr "Retirouse %s completamente" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Ficheiro de control non analizábel" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Sinatura de arquivo incorrecta" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Non é posíbel escribir en %s" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Produciuse un erro ao ler a cabeceira do membro do arquivo" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Cabeceira do membro do arquivo incorrecta %s" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Cabeceira do membro do arquivo incorrecta" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "O arquivo é curto de máis" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" +"Non se escribiu ningún informe de Apport porque xa se acadou o nivel " +"MaxReports" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Non foi posíbel ler as cabeceiras dos arquivos" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "problemas de dependencias - déixase sen configurar" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Non foi posíbel crear as canles" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Non se escribiu ningún informe de Apport porque a mensaxe de erro indica que " +"é un error provinte dun fallo anterior." -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Non foi posíbel executar gzip " +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Non se escribiu ningún informe de Apport porque a mensaxe de erro indica un " +"erro de disco cheo." -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Arquivo danado" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Non se escribiu un informe de contribución porque a mensaxe de erro indica " +"un erro de falta de memoria" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "A suma de comprobación do arquivo tar non coincide, está danado" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Non se escribiu ningún informe de Apport porque a mensaxe de erro indica un " +"erro de disco cheo." -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Non se escribiu ningún informe de Apport porque a mensaxe de erro indica un " +"erro de E/S en dpkg" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Tipo de cabeceira TAR %u descoñecido, membro %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Non é posíbel bloquear o directorio de administración (%s). Esta usandoo " +"algún outro proceso?" + +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "" +"Non é posíbel bloquear o directorio de administración (%s). É o " +"administrador?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"dpkg interrompeuse, debe executar manualmente «%s» para corrixir o problema. " + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Non está bloqueado" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/hu.po b/po/hu.po index 70925afaa..fd8d3e1b3 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt trunk\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2012-06-25 17:09+0200\n" "Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n" "Language-Team: Hungarian <gnome-hu-list@gnome.org>\n" @@ -21,3241 +21,3242 @@ msgstr "" "X-Poedit-Country: HUNGARY\n" "X-Poedit-Language: Hungarian\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "A(z) „%s” indexfájltípus nem támogatott" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "%s nem olvasható" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Nem sikerült ide váltani: %s" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "%s nem érhető el." - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" - -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "A dpkg futtatása" - -#: apt-pkg/init.cc:146 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "A(z) „%s” csomagrendszer nem támogatott" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "A megfelelő csomagrendszertípus nem határozható meg" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "%s csomag %s verziójának teljesítetlen függősége van:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "%i rekord kiírva.\n" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Csomagnevek összesen : " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "%i rekord kiírva, %i hiányzó fájllal.\n" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Csomagstruktúrák összesen: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "%i rekord kiírva %i eltérő fájllal\n" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Normális csomagok: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "%i rekord kiírva %i hiányzó és %i eltérő fájllal\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Teljesen virtuális csomagok: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "%s hitelesítési rekordja nem található" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Egyedi virtuális csomagok: " -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "%s ellenőrzőösszege nem megfelelő" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Vegyes virtuális csomagok: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "A(z) %s metódusvezérlő nem található." +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Hiányzik: " -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Ellenőrizze, hogy a „dpkg-dev” csomag telepítve van-e.\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Különböző verziók összesen: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "A(z) %s metódus nem indult el megfelelően" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Összes különböző leírás: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "" -"Helyezze be a(z) „%s” címkéjű lemezt a(z) „%s” meghajtóba, és nyomja meg az " -"Entert." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Függőségek összesen: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "" -"A csomaglisták vagy az állapotfájl nem dolgozhatók fel vagy nem nyithatók " -"meg." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Verzió/Fájl kapcsolatok összesen: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Próbálja futtatni az „apt-get update” parancsot ezen hibák javításához" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Leírás/Fájl kapcsolatok összesen: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "A források listája olvashatatlan." +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "„Biztosítja” kapcsolatok összesen: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Üres csomaggyorsítótár" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Minták összesen: " -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "A csomaggyorsítótár fájl megsérült" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Függőségiverzió-terület összesen: " -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "A csomaggyorsítótár-fájl inkompatibilis verziójú" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Slack terület összesen: " -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "A csomaggyorsítótár-fájl sérült, túl kicsi" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Nyilvántartott terület összesen: " -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Ez az APT nem támogatja a(z) „%s” verziórendszert" +msgid "Package file %s is out of sync." +msgstr "%s csomagfájl nincs szinkronban." -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "A csomaggyorsítótár egy másik architektúrához készült" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Nem találhatók csomagok" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Függ ettől" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Legalább egy keresési mintát meg kell adnia" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Függ ettől (előfüggés)" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "Ez a parancs elavult. Használja helyette az „apt-mark showauto”-t." -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Javasolja" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "Ez a csomag nem található: %s" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Ajánlja" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Csomagfájlok:" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Ütközik" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" +"A gyorsítótár nincs szinkronban, nem lehet kereszthivatkozni a csomagfájlra" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Kicseréli" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Rögzített csomagok:" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Elavulttá teszi" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(nem található)" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Töri" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Telepítve: " -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Bővíti" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Jelölt: " -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "fontos" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(nincs)" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "szükséges" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Csomagrögzítés: " -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "szabványos" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Verziótáblázat:" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opcionális" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s erre: %s lefordítva ekkor: %s %s\n" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" - -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "A(z) „%s” indexfájltípus nem támogatott" +#: cmdline/apt-cache.cc:1749 +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Használat: apt-cache [kapcsolók] parancs\n" +" apt-cache [kapcsolók] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [kapcsolók] showsrc pkg1 [pkg2 ...]\n" +"\n" +"Az apt-cache egy alacsony szintű eszköz információk lekérdezésére\n" +"az APT bináris gyorsítótár-fájljaiból\n" +"\n" +"Parancsok: \n" +" gencaches - Felépíti a csomag- és a forrás-gyorsítótárat \n" +" showpkg - Megjeleníti az általános információkat egy csomagról \n" +" showsrc - Megjeleníti a forrásrekordokat\n" +" stats - Alapvető statisztikákat jelenít meg\n" +" dump - A teljes fájlt megjeleníti tömör formában\n" +" dumpavail - Kiír egy elérhető fájlt az stdoutra\n" +" unmet - Megjeleníti a teljesítetlen függőségeket\n" +" search - A csomaglistában keres reguláris kifejezéseket\n" +" show - Megjeleníti a csomag leírását\n" +" depends - Nyers függőségi információt mutat a csomagról\n" +" rdepends - Fordított függőségi információkat jelenít meg a csomagról\n" +" pkgnames - Kilistázza az összes csomag nevét\n" +" dotty - GraphVizhez való csomaggrafikonokat generál\n" +" xvcg - xvcg-hez való csomaggrafikonokat generál\n" +" policy - Megjeleníti a policy beállításokat\n" +"\n" +"Kapcsolók:\n" +" -h Ez a súgó szöveg. \n" +" -p=? A csomag-gyorsítótár.\n" +" -s=? A forrás-gyorsítótár.\n" +" -q Letiltja az állapotjelzőt.\n" +" -i Csak a fontos függőségeket jeleníti meg az unmet parancsnál.\n" +" -c=? Ezt a konfigurációs fájlt olvassa be\n" +" -o=? Beállít egy tetszőleges konfigurációs opciót, pl. -o dir::cache=/tmp\n" +"Lásd az apt-cache(8) és apt.conf(5) kézikönyvlapokat további " +"információkért.\n" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Regex fordítási hiba - %s" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Adja meg a lemez nevét, mint például „Debian 5.0.3 1. lemez”" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "A gyorsítótárnak inkompatibilis verziórendszere van" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Helyezzen be egy lemezt a meghajtóba, és nyomja meg az Entert" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Hiba történt a(z) %s feldolgozása során (%s%d)" - -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "Az APT által kezelhető csomagnevek száma túllépve." +msgid "Failed to mount '%s' to '%s'" +msgstr "„%s” csatolása a(z) „%s” könyvtárba meghiúsult" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Az APT által kezelhető csomagverziók száma túllépve." +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Az APT által kezelhető csomagleírások száma túllépve." +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Ismételje meg a folyamatot készlete többi CD-jével is." -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "Az APT által kezelhető függőségek száma túllépve." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Az argumentumok nincsenek párban" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -"A(z) %s %s csomag nem volt megtalálható a fájl függőségeinek feldolgozása " -"közben" +"Használat: apt-config [kapcsolók] parancs\n" +"\n" +"Az apt-config egy egyszerű eszköz az APT konfigurációs fájl olvasására\n" +"\n" +"Parancsok:\n" +" shell - Shell mód\n" +" dump - Megmutatja a konfigurációt\n" +"Kapcsolók:\n" +" -h Ez a súgó szöveg\n" +" -c=? Ezt a konfigurációs fájlt olvassa be\n" +" -o=? Beállít egy tetszőleges konfigurációs opciót, pl -o dir::cache=/tmp\n" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "Nem lehet a(z) %s forrás csomaglistáját elérni" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Csomaglisták olvasása" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel" -# FIXME -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "„Biztosítja” kapcsolatok összegyűjtése" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Unable to write to %s" -msgstr "Nem lehet írni ebbe: %s" - -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "IO hiba a forrás-gyorsítótár mentésekor" - -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "A helyzet elküldése a solvernek" - -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "Kérés küldése a solvernek" - -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "Felkészülés megoldás fogadására" - -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "A külső solver megfelelő hibaüzenet nélkül hibázott" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "„%s” kiválasztása forráscsomagként „%s” helyett\n" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "Külső solver végrehajtása" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "" +"A(z) „%2$s” csomag el nem érhető „%1$s” verziójának figyelmen kívül hagyása" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:454 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "sikertelen átnevezés, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "A Hash Sum nem megfelelő" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "A méret nem megfelelő" +msgid "Couldn't find package %s" +msgstr "Az alábbi csomag nem található: %s" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "%s érvénytelen művelet" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s kézi telepítésűre állítva.\n" -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s megjelölve automatikusan telepítettként.\n" + +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -"A várt „%s” bejegyzés nem található a Release fájlban (Rossz sources.list " -"bejegyzés vagy helytelenül formázott fájl)" +"Ez a parancs elavult. Használja helyette az „apt-mark auto” és az „apt-mark " +"auto” parancsokat." -#: apt-pkg/acquire-item.cc:1589 -#, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Nem található a(z) „%s” ellenőrzőösszege a Release fájlban" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Belső hiba, a problémamegoldó hibát okozott" -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Nem érhető el nyilvános kulcs az alábbi kulcsazonosítókhoz:\n" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Nem lehet zárolni a letöltési könyvtárat" -#: apt-pkg/acquire-item.cc:1669 -#, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" msgstr "" -"A Release fájl elavult ehhez: %s (érvénytelen ez óta: %s). A tároló " -"frissítései nem kerülnek alkalmazásra." +"Legalább egy csomagot meg kell adni, amelynek a forrását le kell tölteni" -#: apt-pkg/acquire-item.cc:1691 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Ütköző disztribúció: %s (a várt %s helyett %s érkezett)" +msgid "Unable to find a source package for %s" +msgstr "Nem található forráscsomag ehhez: %s" -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:786 #, c-format msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"Hiba történt az aláírás ellenőrzése közben. A tároló nem frissült, és az " -"előző indexfájl lesz használva. GPG hiba: %s: %s\n" - -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 -#, c-format -msgid "GPG error: %s: %s" -msgstr "GPG hiba: %s: %s" +"MEGJEGYZÉS: a(z) „%s” csomagolása a(z) „%s” verziókövető rendszerben van " +"karbantartva:\n" +"%s\n" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:791 #, c-format msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -"Egy fájl nem található a(z) %s csomaghoz. Ez azt jelentheti, hogy kézzel " -"kell kijavítani a csomagot. (hiányzó arch. miatt)" +"Használja a következő parancsot:\n" +"bzr branch %s\n" +"a csomag legújabb (esetleg kiadatlan) frissítéseinek letöltéséhez.\n" -#: apt-pkg/acquire-item.cc:1925 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "Nem található forrás a(z) „%2$s” „%1$s” verziójának letöltéséhez" +msgid "Skipping already downloaded file '%s'\n" +msgstr "A már letöltött „%s” fájl kihagyása\n" -#: apt-pkg/acquire-item.cc:1983 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"A csomagindexfájlok megsérültek. Nincs Filename: mező a(z) %s csomaghoz." +msgid "Couldn't determine free space in %s" +msgstr "Nem határozható meg a szabad hely mennyisége itt: %s" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "A(z) %s terjesztőblokk nem tartalmaz ujjlenyomatot" +msgid "You don't have enough free space in %s" +msgstr "Nincs elég szabad hely itt: %s" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "List directory %spartial is missing." -msgstr "A(z) %spartial listakönyvtár hiányzik." +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Letöltendő forrásadat-mennyiség: %sB/%sB.\n" -#: apt-pkg/acquire.cc:91 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "A(z) %spartial archívumkönyvtár hiányzik." +msgid "Need to get %sB of source archives.\n" +msgstr "Letöltendő forrásadat-mennyiség: %sB.\n" -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Unable to lock directory %s" -msgstr "%s könyvtár zárolása sikertelen" +msgid "Fetch source %s\n" +msgstr "Forrás letöltése: %s\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Nem sikerült néhány archívumot letölteni." + +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "A letöltés befejeződött a „csak letöltés” módban" + +#: cmdline/apt-get.cc:950 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "%li/%li fájl letöltése (%s marad)" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Egy már kibontott forrás kibontásának kihagyása itt: %s\n" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Retrieving file %li of %li" -msgstr "%li/%li fájl letöltése" +msgid "Unpack command '%s' failed.\n" +msgstr "„%s” kibontási parancs nem sikerült.\n" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Sikertelen letöltés: %s %s\n" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Ellenőrizze, hogy a „dpkg-dev” csomag telepítve van-e.\n" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Néhány indexfájlt nem sikerült letölteni. Figyelmen kívül lettek hagyva, " -"vagy régebbiek lettek felhasználva." +#: cmdline/apt-get.cc:992 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "„%s” elkészítési parancs nem sikerült.\n" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Néhány „source” URI-t el kell helyezni a sources.list fájlban" +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Hiba a gyermekfolyamatnál" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "" +"Legalább egy csomagot adjon meg, amelynek fordítási függőségeit ellenőrizni " +"kell" + +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -"A(z) „%s” érték érvénytelen az APT::Default-Release beállításhoz, mert nincs " -"ilyen kiadás a forrásokban" +"Nem érhetők el architektúrainformációk ehhez: %s. A beállításokkal " +"kapcsolatban lásd az apt.conf(5) APT::Architectures részét." -#: apt-pkg/policy.cc:422 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Érvénytelen rekord a(z) %s beállításfájlban, nincs Package fejléc" +msgid "Unable to get build-dependency information for %s" +msgstr "Nem lehet %s fordítási függőségeinek információit letölteni" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Did not understand pin type %s" -msgstr "A(z) %s rögzítéstípus nem értelmezhető" +msgid "%s has no build depends.\n" +msgstr "Nincs fordítási függősége a következőnek: %s.\n" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Nincs prioritás (vagy nulla) megadva a rögzítéshez" +#: cmdline/apt-get.cc:1272 +#, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"%2$s csomag %1$s függősége nem elégíthető ki, mert a(z) %3$s nem " +"engedélyezett a(z) „%4$s” csomagokon" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -"Nem lehetett a(z) „%s” közvetlen beállítását végrehajtani. A részletekért " -"lásd a man 5 apt.conf oldalt az APT::Immediate-Configure címszó alatt. (%d)" +"%2$s csomag %1$s függősége nem elégíthető ki, mert a(z) %3$s csomag nem " +"található" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Could not configure '%s'. " -msgstr "A(z) „%s” beállítása sikertelen" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"%2$s csomag %1$s függősége nem elégíthető ki: a telepített %3$s csomag túl " +"friss" -#: apt-pkg/packagemanager.cc:583 +#: cmdline/apt-get.cc:1352 #, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" -"Ez a telepítési lépés átmenetileg megköveteli a(z) %s alapvető csomag " -"eltávolítását, ami ütközési/előfüggőségi hurkot okoz. Ez gyakran rossz, de " -"ha tényleg ezt akarja tenni, aktiválja az APT::Force-LoopBreak opciót." +"%2$s csomag %1$s függősége nem elégíthető ki, mert a(z) %3$s csomag elérhető " +"verziója nem elégíti ki a verziókövetelményeket" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-get.cc:1358 #, c-format -msgid "Line %u too long in source list %s." -msgstr "A(z) %u. sor túl hosszú a(z) %s forráslistában." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "CD-ROM leválasztása...\n" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"%2$s csomag %1$s függősége nem elégíthető ki, mert a(z) %3$s csomagnak nincs " +"jelölt verziója" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "%s CD-ROM csatolási pont használata\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Várakozás a lemezre...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "CD-ROM csatolása...\n" - -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Azonosítás... " +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "%2$s csomag %1$s függősége nem elégíthető ki: %3$s" -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Stored label: %s\n" -msgstr "Tárolt címke: %s\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "%s építési függőségei nem elégíthetők ki." -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Indexfájlok keresése a lemezen...\n" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Nem sikerült az építési függőségeket feldolgozni" -#: apt-pkg/cdrom.cc:734 +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 #, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"%zu csomagindex, %zu forrásindex, %zu fordításindex és %zu aláírás " -"megtalálva\n" +msgid "Changelog for %s (%s)" +msgstr "Változási napló ehhez: %s (%s)" -#: apt-pkg/cdrom.cc:744 +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Támogatott modulok:" + +#: cmdline/apt-get.cc:1633 msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"Nem találhatók csomagfájlok, lehet hogy ez nem Debian lemez, vagy nem " -"megfelelő az architektúra?" - -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Talált címke: „%s”\n" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "A név érvénytelen, próbálja újra.\n" +"Használat: apt-get [kapcsolók] parancs\n" +" apt-get [kapcsolók] install|remove pkg1 [pkg2 ...]\n" +" apt-get [kapcsolók] source pkg1 [pkg2 ...]\n" +"\n" +"Az apt-get egy egyszerű parancssori felület csomagok letöltéséhez és\n" +"telepítéséhez. A leggyakrabban használt parancsok az update és az install. \n" +"\n" +"Parancsok:\n" +" update - Frissíti a csomaglistákat\n" +" upgrade - Frissítés végrehajtása\n" +" install - Új csomagok telepítése (csomag a libc6 és nem a libc6.deb)\n" +" remove - Csomagok eltávolítása\n" +" autoremove - Automatikusan eltávolítja a nem használt csomagokat \n" +" purge - Eltávolítja és teljesen törli a csomagokat\n" +" source - Forrásarchívumok letöltése\n" +" build-dep - Forráscsomagok építési függőségét konfigurálja\n" +" dist-upgrade - Disztribúciófrissítés, lásd apt-get(8)\n" +" dselect-upgrade - Követi a dselect kijelöléseit\n" +" clean - Törli a letöltött archívumfájlokat\n" +" autoclean - Törli a régi letöltött archívumfájlokat\n" +" check - Ellenőrzi, hogy nincsenek-e törött függőségek\n" +" changelog - Adott csomag változási naplójának letöltése és megjelenítése\n" +" download - Bináris csomag letöltése a jelenlegi mappába\n" +"\n" +"Opciók:\n" +" -h Ez a súgó szöveg.\n" +" -q Naplózható kimenet - nincs folyamatjelző\n" +" -qq Nincs kimenet, kivéve a hibákat\n" +" -d Csak letöltés - NEM telepíti vagy bontja ki az archívokat\n" +" -s Szimulációs mód.\n" +" -y Felteszi, hogy minden kérdésre igen a válasz, és nem kérdez\n" +" -f Próbálja folytatni, akkor is ha a sértetlenségi teszt hibát jelez\n" +" -m Próbálja folytatni, akkor is ha egyes archívumok nem találhatók\n" +" -u Megjeleníti a frissített csomagok listáját is\n" +" -b Megépíti a forráscsomagot miután letöltötte\n" +" -V Részletes verziószámok\n" +" -c=? Ezt a konfigurációs fájlt olvassa be\n" +" -o=? Beállít egy tetszőleges konfigurációs opciót, pl. -o dir::cache=/" +"tmp\n" +"Lásd még az apt-get(8), sources.list(5) és apt.conf(5) kézikönyvlapokat " +"további\n" +"információkért és opciókért.\n" +" Ez az APT a SzuperTehén Hatalmával rendelkezik.\n" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" msgstr "" -"A lemez neve: \n" -"„%s”\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Csomaglisták másolása..." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Új forráslista írása\n" - -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "A lemezhez tartozó forráslistabejegyzések a következők:\n" +"Legalább egy csomagot meg kell adni, amelynek a forrását le kell tölteni" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"A(z) %s csomagot újra kell telepíteni, de nem található hozzá archívum." -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-helper.cc:66 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Hiba, a pkgProblemResolver::Resolve töréseket generált, ezt visszafogott " -"csomagok okozhatják." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "A problémák nem javíthatók, sérült csomagokat fogott vissza." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Függőségi fa építése" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Lehetséges verziók" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Függőséggenerálás" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Állapotinformációk olvasása" - -#: apt-pkg/depcache.cc:250 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Failed to open StateFile %s" -msgstr "%s állapotfájl megnyitása sikertelen" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s nem jelölhető meg, mivel nincs telepítve.\n" -#: apt-pkg/depcache.cc:256 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "%s átmeneti állapotfájl írása sikertelen" +msgid "%s was already set to manually installed.\n" +msgstr "%s már be van állítva kézi telepítésűre.\n" -#: apt-pkg/tagfile.cc:140 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Nem lehet a(z) %s csomagfájlt feldolgozni (1)" +msgid "%s was already set to automatically installed.\n" +msgstr "%s már meg van jelölve automatikusan telepítettként.\n" -#: apt-pkg/tagfile.cc:237 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Nem lehet a(z) %s csomagfájlt feldolgozni (2)" +msgid "%s was already set on hold.\n" +msgstr "%s már be van állítva visszafogásra.\n" -#: apt-pkg/cacheset.cc:489 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "„%s” kiadás nem található ehhez: „%s”" +msgid "%s was already not hold.\n" +msgstr "%s eddig sem volt visszafogva.\n" -#: apt-pkg/cacheset.cc:492 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "„%s” verzió nem található ehhez: „%s”" +msgid "Waited for %s but it wasn't there" +msgstr "Nem található a(z) %s, a várakozás után sem" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Unable to locate package %s" -msgstr "Ez a csomag nem található: %s" +msgid "%s set on hold.\n" +msgstr "%s beállítva visszafogásra.\n" -#: apt-pkg/cacheset.cc:603 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "Couldn't find task '%s'" -msgstr "„%s” feladat nem található" +msgid "Canceled hold on %s.\n" +msgstr "Visszafogás törölve ezen: %s.\n" -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "A dpkg futtatása sikertelen. Van root jogosultsága?" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel" +#: cmdline/apt-mark.cc:392 +#, fuzzy +msgid "" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." +msgstr "" +"Használat: apt-mark [kapcsolók] {auto|manual} csom1 [csom2 ...]\n" +"\n" +"Az apt-mark egy egyszerű parancssori felület csomagok megjelölésére\n" +"kézileg vagy automatikusan telepítettként. Képes felsorolni a jelöléseket " +"is.\n" +"\n" +"Parancsok:\n" +" auto -Az adott csomagok megjelölése automatikusan telepítettként\n" +" manual - Az adott csomagok megjelölése kézzel telepítettként\n" +"\n" +"Kapcsolók:\n" +" -h Ez a súgó szöveg.\n" +" -q Naplózható kimenet - nincs folyamatjelző\n" +" -qq Nincs kimenet, kivéve a hibákat\n" +" -s Szimulációs mód. Csak kiírja, mi történne.\n" +" -f auto/kézi megjelölés olvasása/írása az adott fájlból/fájlba\n" +" -c=? Ezt a konfigurációs fájlt olvassa be\n" +" -o=? Beállít egy tetszőleges konfigurációs opciót, pl. -o dir::cache=/tmp\n" +"Lásd még az apt-mark(8) és apt.conf(5) kézikönyvlapokat további\n" +"információkért." + +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/cacheset.cc:626 +#: methods/cdrom.cc:203 #, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "„%s” csomagból nem választható verzió, mert teljesen virtuális" +msgid "Unable to read the cdrom database %s" +msgstr "%s CD-ROM adatbázis nem olvasható" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format +#: methods/cdrom.cc:212 msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" msgstr "" -"„%s” csomagból nem választható sem telepített, sem kiadásra jelölt verzió, " -"mert egyikkel sem rendelkezik" +"Használja az apt-cdrom parancsot a CD felismertetésére. Az apt-get update " +"nem használható új CD-k hozzáadására." -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"„%s” csomag legújabb verziója nem választható ki, mert teljesen virtuális" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Hibás CD" -#: apt-pkg/cacheset.cc:655 +#: methods/cdrom.cc:249 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "" -"„%s” csomag kiadásra jelölt verziója nem választható ki, mert nincs jelöltje" +"Nem lehet leválasztani az itt lévő CD-ROM-ot: %s, még használatban lehet." -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" -"„%s” csomag telepített verziója nem választható ki, mert nincs telepítve" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "A lemez nem található." -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "A(z) %s Release fájl nem dolgozható fel" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "A fájl nem található" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "A(z) %s Release fájl nem tartalmaz szakaszokat" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Nem érhető el" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Nincs Hash bejegyzés a(z) %s Release fájlban" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "A módosítási idő beállítása sikertelen" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Érvénytelen „Valid-Until” bejegyzés a(z) %s Release fájlban" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Érvénytelen URI, helyi URI-k nem kezdődhetnek //-rel" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Érvénytelen „Date” bejegyzés a(z) %s Release fájlban" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Bejelentkezés" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (URI-feldolgozás)" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Nem lehet a partner nevét megállapítani" -#: apt-pkg/sourcelist.cc:170 +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Nem lehet a helyi nevet megállapítani" + +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában (az [option] " -"feldolgozhatatlan)" +msgid "The server refused the connection and said: %s" +msgstr "A kiszolgáló visszautasította a kapcsolatot: %s" -#: apt-pkg/sourcelist.cc:173 +#: methods/ftp.cc:225 #, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "" -"Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában (az [option] túl " -"rövid)" +msgid "USER failed, server said: %s" +msgstr "Hibás USER, a kiszolgáló üzenete: %s" -#: apt-pkg/sourcelist.cc:184 +#: methods/ftp.cc:232 #, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgid "PASS failed, server said: %s" +msgstr "Hibás PASS, a kiszolgáló üzenete: %s" + +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -"Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában ([%s] nem " -"érvényes hozzárendelés)" +"Meg lett adva proxy kiszolgáló, de nincs bejelentkezési parancsfájl és az " +"Acquire::ftp::ProxyLogin üres." -#: apt-pkg/sourcelist.cc:190 +#: methods/ftp.cc:280 #, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgid "Login script command '%s' failed, server said: %s" msgstr "" -"Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában ([%s] nem " -"tartalmaz kulcsot)" +"A bejelentkezési parancsfájl „%s” parancsa sikertelen, a kiszolgáló üzenete: " +"%s" -#: apt-pkg/sourcelist.cc:193 +#: methods/ftp.cc:306 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgid "TYPE failed, server said: %s" +msgstr "Hibás TYPE, a kiszolgáló üzenete: %s" + +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Időtúllépés a kapcsolatban" + +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "A kiszolgáló lezárta a kapcsolatot" + +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Olvasási hiba" + +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "A válasz túlcsordította a puffert." + +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protokollhiba" + +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Írási hiba" + +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Nem lehet létrehozni a foglalatot" + +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" msgstr "" -"Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában ([%s] %s kulcsnak " -"nincs értéke)" +"Nem lehet kapcsolódni az adatfoglalathoz, a kapcsolat túllépte az időkorlátot" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (URI)" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Sikertelen" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (dist)" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Nem lehet kapcsolódni a passzív foglalathoz." -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (URI-feldolgozás)" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "A getaddrinfo nem talált figyelőfoglalatot" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (Abszolút dist)" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Nem lehet összekapcsolódni a foglalattal" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (dist feldolgozás)" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Nem lehet figyelni a foglalaton" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "%s megnyitása" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Nem lehet megállapítani a foglalat nevét" -#: apt-pkg/sourcelist.cc:371 +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Nem lehet PORT parancsot küldeni" + +#: methods/ftp.cc:802 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "A(z) %u. sor hibás a(z) %s forráslistában (típus)" +msgid "Unknown address family %u (AF_*)" +msgstr "Ismeretlen címcsalád: %u (AF_*)" -#: apt-pkg/sourcelist.cc:375 +#: methods/ftp.cc:811 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "„%1$s” típus nem ismert a(z) %3$s forráslista %2$u. sorában" +msgid "EPRT failed, server said: %s" +msgstr "Hibás EPRT, a kiszolgáló üzenete: %s" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "„%1$s” típus nem ismert a(z) %3$s forráslista %2$u. sorában" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Az adatfoglalathoz kapcsolódás túllépte az időkorlátot" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "%s telepítése" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Nem lehet elfogadni a kapcsolatot" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "%s konfigurálása" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Probléma a fájl hash értékének meghatározásakor" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#: methods/ftp.cc:890 #, c-format -msgid "Removing %s" -msgstr "%s eltávolítása" +msgid "Unable to fetch file, server said '%s'" +msgstr "Nem lehet letölteni a fájlt, a kiszolgáló üzenete: „%s”" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "%s teljes eltávolítása" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Az adatfoglalat túllépte az időkorlátot" -#: apt-pkg/deb/dpkgpm.cc:99 +#: methods/ftp.cc:935 #, c-format -msgid "Noting disappearance of %s" -msgstr "„%s” eltűnése feljegyezve" +msgid "Data transfer failed, server said '%s'" +msgstr "Az adatátvitel sikertelen, a kiszolgáló üzenete: „%s”" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "A(z) %s telepítés utáni trigger futtatása" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Lekérdezés" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "A(z) „%s” könyvtár hiányzik" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Nem lehet meghívni " -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#: methods/connect.cc:76 #, c-format -msgid "Could not open file '%s'" -msgstr "A(z) „%s” fájl megnyitása sikertelen" +msgid "Connecting to %s (%s)" +msgstr "Csatlakozás: %s (%s)" -#: apt-pkg/deb/dpkgpm.cc:989 +#: methods/connect.cc:87 #, c-format -msgid "Preparing %s" -msgstr "%s előkészítése" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/deb/dpkgpm.cc:990 +#: methods/connect.cc:94 #, c-format -msgid "Unpacking %s" -msgstr "%s kicsomagolása" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Foglalat létrehozása sikertelen ehhez: %s (f=%u t=%u p=%u)" -#: apt-pkg/deb/dpkgpm.cc:995 +#: methods/connect.cc:100 #, c-format -msgid "Preparing to configure %s" -msgstr "%s konfigurálásának előkészítése" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Kapcsolat létrehozása sikertelen ehhez: %s: %s (%s)." -#: apt-pkg/deb/dpkgpm.cc:997 +#: methods/connect.cc:108 #, c-format -msgid "Installed %s" -msgstr "%s telepítve" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Időtúllépés miatt nem lehet kapcsolódni a következőhöz: %s: %s (%s)" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: methods/connect.cc:126 #, c-format -msgid "Preparing for removal of %s" -msgstr "%s eltávolításának előkészítése" +msgid "Could not connect to %s:%s (%s)." +msgstr "Nem lehet kapcsolódni ehhez: %s: %s (%s)." -#: apt-pkg/deb/dpkgpm.cc:1004 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Removed %s" -msgstr "%s eltávolítva" +msgid "Connecting to %s" +msgstr "Kapcsolódás: %s" -#: apt-pkg/deb/dpkgpm.cc:1009 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Preparing to completely remove %s" -msgstr "%s teljes eltávolításának előkészítése" +msgid "Could not resolve '%s'" +msgstr "Nem lehet feloldani a következőt: „%s”" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: methods/connect.cc:205 #, c-format -msgid "Completely removed %s" -msgstr "%s teljesen eltávolítva" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +msgid "Temporary failure resolving '%s'" +msgstr "Átmeneti hiba „%s” feloldása közben" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#: methods/connect.cc:209 #, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Nem lehet írni ebbe: %s" - -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +msgid "System error resolving '%s:%s'" +msgstr "Hiba történt „%s:%s” feloldásakor (%i - %s)" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/connect.cc:211 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Nem található a(z) %s, a várakozás után sem" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Hiba történt „%s:%s” feloldásakor (%i - %s)" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "A művelet megszakadt, mielőtt befejeződhetett volna" +#: methods/connect.cc:258 +#, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Nem lehet csatlakozni ehhez: %s:%s:" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "Nem került írásra apport jelentés, mivel a MaxReports már elérve" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "Belső hiba: Jó aláírás, de nem állapítható meg a kulcs ujjlenyomata." -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "függőségi hibák - a csomag beállítatlan maradt" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Legalább egy aláírás érvénytelen." -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"Nem került kiírásra apport jelentés, mivel a hibaüzenet szerint ez a hiba " -"egy korábbi hiba következménye." +"Nem indítható el a „gpgv” az aláírás ellenőrzéséhez (telepítve van a gpgv?)" -#: apt-pkg/deb/dpkgpm.cc:1644 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 +#, c-format msgid "" -"No apport report written because the error message indicates a disk full " -"error" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"Nem került kiírásra apport jelentés, mivel a hibaüzenet szerint megtelt a " -"lemez" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Nem került kiírásra apport jelentés, mivel a hibaüzenet memóriaelfogyási " -"hibát jelez" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Ismeretlen gpgv futtatási hiba" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" -"Nem került kiírásra apport jelentés, mert a hibaüzenet a helyi rendszeren " -"lévő hibát jelez" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Az alábbi aláírások érvénytelenek voltak:\n" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: methods/gpgv.cc:231 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -"Nem került kiírásra apport jelentés, mert a hibaüzenet dpkg I/O hibát jelez" +"Az alábbi aláírások nem ellenőrizhetők, mert a nyilvános kulcs nem érhető " +"el:\n" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"Az adminisztrációs könyvtár (%s) nem zárolható, lehet hogy másik folyamat " -"használja?" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Az üres fájlok biztosan nem érvényes csomagok" -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "" -"Az adminisztrációs könyvtár (%s) nem zárolható, rendszergazdaként próbálja?" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Hiba a fájl írásakor" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" -"A dpkg megszakadt, saját kezűleg kell futtatnia a(z) „%s” parancsot a " -"probléma megoldásához. " +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Hiba a kiszolgálóról olvasáskor, a túloldal lezárta a kapcsolatot" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Nincs zárolva" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Hiba a kiszolgálóról olvasáskor" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lin %lió %lip %limp" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Hiba a fájl írásakor" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%lió %lip %limp" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "A kiválasztás sikertelen" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%lip %limp" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Időtúllépés a kapcsolatban" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%limp" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Hiba a kimeneti fájl írásakor" -#: apt-pkg/contrib/strutl.cc:1243 -#, c-format -msgid "Selection %s not found" -msgstr "%s kiválasztás nem található" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Várakozás a fejlécekre" + +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Rossz fejlécsor" + +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "A HTTP-kiszolgáló érvénytelen válaszfejlécet küldött" + +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "A HTTP-kiszolgáló érvénytelen Content-Length fejlécet küldött" -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Nem lesz zárolva a(z) „%s” csak olvasható zárolási fájl" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "A HTTP-kiszolgáló érvénytelen Content-Range fejlécet küldött" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "%s zárolási fájl nem nyitható meg" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "A HTTP-kiszolgáló tartománytámogatása sérült" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Nem lesz zárolva a(z) %s NFS-csatolású zárolási fájl" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Ismeretlen dátumformátum" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Nem sikerült zárolni: %s" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Rossz fejlécadatok" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "A fájlok listáját nem lehetett létrehozni, mert „%s” nem könyvtár" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Sikertelen kapcsolódás" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" -"„%s” figyelmen kívül hagyása a(z) „%s” könyvtárban, mert nem szabályos fájl" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Belső hiba" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -"„%s” fájl figyelmen kívül hagyása a(z) „%s” könyvtárban, mert nincs " -"fájlkiterjesztése" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" -msgstr "" -"„%s” fájl figyelmen kívül hagyása a(z) „%s” könyvtárban, mert érvénytelen " -"fájlkiterjesztése van" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Belső hiba, az InstallPackages törött csomagokkal lett meghívva!" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "%s alfolyamat szegmentálási hibát okozott." +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Csomagokat kellene eltávolítani, de az eltávolítás nem engedélyezett." -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "A(z) %s alfolyamat %u számú szignált kapott." +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Belső hiba, a rendezés nem fejeződött be" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "%s alfolyamat hibakóddal tért vissza (%u)" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "A méretek nem egyeznek, írjon az apt@packages.debian.org címre" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "%s alfolyamat váratlanul kilépett" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Letöltendő adatmennyiség: %sB/%sB.\n" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Írási hiba" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 +#, c-format +msgid "Need to get %sB of archives.\n" +msgstr "Letöltendő adatmennyiség: %sB.\n" -#: apt-pkg/contrib/fileutl.cc:913 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "Problem closing the gzip file %s" -msgstr "Hiba a(z) %s gzip fájl bezárásakor" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "A művelet után %sB lemezterület kerül felhasználásra.\n" -#: apt-pkg/contrib/fileutl.cc:1101 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "Could not open file %s" -msgstr "Nem lehet megnyitni a(z) %s fájlt" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "A művelet után %sB lemezterület szabadul fel.\n" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#: apt-private/private-install.cc:200 #, c-format -msgid "Could not open file descriptor %d" -msgstr "Nem lehet megnyitni a(z) %d fájlleírót" +msgid "You don't have enough free space in %s." +msgstr "Nincs elég szabad hely itt: %s." -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Nem sikerült az alfolyamat IPC-t létrehozni" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Problémák vannak, és a -y kapcsolót használta --force-yes nélkül" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Nem sikerült elindítani a tömörítőt " +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "A „Trivial Only” meg van adva, de ez nem egy triviális művelet." -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Olvasási hiba" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Igen, tedd amit mondok!" -#: apt-pkg/contrib/fileutl.cc:1514 +#: apt-private/private-install.cc:222 #, c-format -msgid "read, still have %llu to read but none left" -msgstr "olvasás, még kellene %llu, de már az összes elfogyott" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Ártalmasnak tűnő műveletet készül végrehajtani.\n" +"A folytatáshoz írja be ezt a mondatot: „%s”\n" +" ?] " -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "írás, még kiírandó %llu, de ez nem lehetséges" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Megszakítva." -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Hiba a(z) %s fájl bezárásakor" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Folytatni akarja?" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Hiba a(z) %s fájl átnevezésekor erre: %s" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Néhány fájlt nem sikerült letölteni" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "Hiba a(z) %s fájl törlésekor" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"Nem lehet letölteni néhány archívumot. Próbálja futtatni az „apt-get update” " +"parancsot, vagy használja a --fix-missing kapcsolót." -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Hiba a fájl szinkronizálásakor" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "A --fix-missing és az adathordozó-csere jelenleg nem támogatott" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Hiba!" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Nem lehet javítani a hiányzó csomagokat." -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Kész" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Telepítés megszakítása." -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"A következő csomag eltűnt a rendszerből, mivel\n" +"az összes fájlt más csomagok fölülírták:" +msgstr[1] "" +"A következő csomagok eltűntek a rendszerből, mivel\n" +"az összes fájlt más csomagok fölülírták:" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Kész" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Megjegyzés: ezt a dpkg automatikusan és szándékosan hajtja végre." -# FIXME -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Nem lehet mmap-olni egy üres fájlt" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Nem kellene semmit törölni, az AutoRemover nem indítható" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Nem lehetett kettőzni a(z) %i fájlleírót" +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" +"Úgy tűnik, az AutoRemover hibát okozott, ez nem történhetne meg.\n" +"Küldjön hibajelentést az apt csomaghoz." -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Nem sikerült %llu bájtot mmap-olni" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Az alábbi információk segíthetnek megoldani a problémát:" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Nem lehet bezárni az mmapot" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Belső hiba, az AutoRemover sérült" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Nem lehet szinkronizálni az mmapot" +#: apt-private/private-install.cc:513 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "" +"A következő csomag automatikusan lett telepítve, és már nincs rá szükség:" +msgstr[1] "" +"A következő csomagok automatikusan lettek telepítve, és már nincs rájuk " +"szükség:" -#: apt-pkg/contrib/mmap.cc:290 +#: apt-private/private-install.cc:517 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Nem sikerült %lu bájtot mmap-olni" +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "%lu csomag automatikusan lett telepítve, és már nincs rá szükség.\n" +msgstr[1] "" +"%lu csomag automatikusan lett telepítve, és már nincs rájuk szükség.\n" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "A fájl csonkítása meghiúsult" +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Ezt az „apt-get autoremove” paranccsal törölheti." +msgstr[1] "Ezeket az „apt-get autoremove” paranccsal törölheti." -#: apt-pkg/contrib/mmap.cc:341 -#, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -"A dinamikus MMap helye elfogyott. Növelje az APT::Cache-Start méretét. A " -"jelenlegi érték: %lu. (lásd: man 5 apt.conf)" +"Próbálja futtatni az „apt-get -f install” parancsot az alábbiak javításához:" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format +#: apt-private/private-install.cc:614 msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"Nem lehet növelni az MMap méretét, mert a(z) %lu bájt korlátot már elérte." +"Teljesítetlen függőségek. Próbálja kiadni az „apt-get -f install” parancsot " +"csomagok nélkül (vagy telepítse a függőségeket is!)." -#: apt-pkg/contrib/mmap.cc:449 +#: apt-private/private-install.cc:638 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." msgstr "" -"Nem lehet növelni az MMap méretét, mert a felhasználó letiltotta az " -"automatikus emelést." - -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "%s csatolási pont nem érhető el" +"Néhány csomagot nem lehetett telepíteni. Ez azt jelentheti, hogy\n" +"egy lehetetlen állapotot kért, vagy ha az unstable disztribúciót\n" +"használja, akkor néhány igényelt csomag még nem készült el vagy ki\n" +"lett mozdítva az Incoming-ból." -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Nem sikerült elérni a CD-ROM-ot." +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Törött csomagok" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Ismeretlen típusrövidítés: „%c”" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Az alábbi extra csomagok kerülnek telepítésre:" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "%s konfigurációs fájl megnyitása" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Javasolt csomagok:" -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Szintaktikai hiba %s: %u: A blokk név nélkül kezdődik." +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Ajánlott csomagok:" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-private/private-install.cc:825 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Szintaktikai hiba %s: %u: rosszul formázott címke" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "%s kihagyása, ez már telepítve van, és a frissítés nincs beállítva.\n" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-private/private-install.cc:829 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Szintaktikai hiba %s: %u: fölösleges szemét az érték után" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "„%s” kihagyása, nincs telepítve, és csak frissítések lettek kérve.\n" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-private/private-install.cc:841 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "Szintaktikai hiba %s: %u: Csak legfelső szinten használhatók előírások" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "%s újratelepítése nem lehetséges, mert nem lehet letölteni.\n" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-private/private-install.cc:846 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Szintaktikai hiba %s: %u: Túl sok beágyazott include" +msgid "%s is already the newest version.\n" +msgstr "%s már a legújabb verzió.\n" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-private/private-install.cc:894 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Szintaktikai hiba %s: %u: ugyaninnen include-olva" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "„%s” (%s) verzió lett kijelölve ehhez: „%s”\n" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-private/private-install.cc:899 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Szintaktikai hiba %s:%u: „%s” nem támogatott előírás" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "„%s” (%s) verzió lett kijelölve ehhez: „%s”, a(z) „%s” miatt\n" -#: apt-pkg/contrib/configuration.cc:900 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" msgstr "" -"Szintaktikai hiba %s:%u: a törlési parancs egy beállítási fát vár " -"argumentumként" - -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Szintaktikai hiba %s: %u: fölösleges szemét a fájl végén" - -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, c-format -msgid "No keyring installed in %s." -msgstr "Nincs kulcstartó telepítve ide: %s." - -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "A(z) „%c” parancssori kapcsoló [a következőből: %s] ismeretlen." - -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "%s parancssori kapcsoló értelmezhetetlen" - -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "%s parancssori kapcsoló nem logikai" +"A(z) „%s” csomag nincs telepítve, így nem lett törölve. Erre gondolt: „%s”?\n" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-private/private-install.cc:947 #, c-format -msgid "Option %s requires an argument." -msgstr "%s kapcsolóhoz argumentum szükséges." +msgid "Package '%s' is not installed, so not removed\n" +msgstr "A(z) „%s” csomag nincs telepítve, így nem lett törölve\n" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -"%s kapcsoló: a konfigurációs elem megadásához szükséges egy =<érték> rész." - -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "%s kapcsoló egész, és nem „%s” típusú argumentumot követel meg" - -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Túl hosszú „%s” kapcsoló" - -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "%s jelentés nem értelmezhető, próbálja a true vagy false értékeket." - -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "%s érvénytelen művelet" -#: cmdline/apt-cache.cc:149 +#: apt-private/private-list.cc:164 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "%s csomag %s verziójának teljesítetlen függősége van:\n" - -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Csomagnevek összesen : " - -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Csomagstruktúrák összesen: " - -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Normális csomagok: " - -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Teljesen virtuális csomagok: " - -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Egyedi virtuális csomagok: " - -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Vegyes virtuális csomagok: " - -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Hiányzik: " - -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Különböző verziók összesen: " - -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Összes különböző leírás: " +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Függőségek összesen: " +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Függőségek javítása..." -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Verzió/Fájl kapcsolatok összesen: " +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " sikertelen." -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Leírás/Fájl kapcsolatok összesen: " +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Nem lehet javítani a függőségeket" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "„Biztosítja” kapcsolatok összesen: " +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Nem lehet minimalizálni a frissítendő csomagok mennyiségét" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Minták összesen: " +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Kész" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Függőségiverzió-terület összesen: " +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Próbálja futtatni az „apt-get -f install” parancsot ezek javításához." -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Slack terület összesen: " +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Teljesítetlen függőségek. Próbálja a -f használatával." -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Nyilvántartott terület összesen: " +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "%s csomagfájl nincs szinkronban." +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Telepítve]" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Nem találhatók csomagok" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Telepítve]" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Legalább egy keresési mintát meg kell adnia" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "Ez a parancs elavult. Használja helyette az „apt-mark showauto”-t." +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Telepítve]" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Csomagfájlok:" +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Telepítve]" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" msgstr "" -"A gyorsítótár nincs szinkronban, nem lehet kereszthivatkozni a csomagfájlra" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Rögzített csomagok:" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(nem található)" +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "de %s van telepítve" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Telepítve: " +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "de csak %s telepíthető" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Jelölt: " +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "de az nem telepíthető" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(nincs)" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "de az egy virtuális csomag" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Csomagrögzítés: " +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "de az nincs telepítve" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Verziótáblázat:" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "de az nincs telepítésre megjelölve" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s erre: %s lefordítva ekkor: %s %s\n" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " vagy" -#: cmdline/apt-cache.cc:1749 -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" -msgstr "" -"Használat: apt-cache [kapcsolók] parancs\n" -" apt-cache [kapcsolók] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [kapcsolók] showsrc pkg1 [pkg2 ...]\n" -"\n" -"Az apt-cache egy alacsony szintű eszköz információk lekérdezésére\n" -"az APT bináris gyorsítótár-fájljaiból\n" -"\n" -"Parancsok: \n" -" gencaches - Felépíti a csomag- és a forrás-gyorsítótárat \n" -" showpkg - Megjeleníti az általános információkat egy csomagról \n" -" showsrc - Megjeleníti a forrásrekordokat\n" -" stats - Alapvető statisztikákat jelenít meg\n" -" dump - A teljes fájlt megjeleníti tömör formában\n" -" dumpavail - Kiír egy elérhető fájlt az stdoutra\n" -" unmet - Megjeleníti a teljesítetlen függőségeket\n" -" search - A csomaglistában keres reguláris kifejezéseket\n" -" show - Megjeleníti a csomag leírását\n" -" depends - Nyers függőségi információt mutat a csomagról\n" -" rdepends - Fordított függőségi információkat jelenít meg a csomagról\n" -" pkgnames - Kilistázza az összes csomag nevét\n" -" dotty - GraphVizhez való csomaggrafikonokat generál\n" -" xvcg - xvcg-hez való csomaggrafikonokat generál\n" -" policy - Megjeleníti a policy beállításokat\n" -"\n" -"Kapcsolók:\n" -" -h Ez a súgó szöveg. \n" -" -p=? A csomag-gyorsítótár.\n" -" -s=? A forrás-gyorsítótár.\n" -" -q Letiltja az állapotjelzőt.\n" -" -i Csak a fontos függőségeket jeleníti meg az unmet parancsnál.\n" -" -c=? Ezt a konfigurációs fájlt olvassa be\n" -" -o=? Beállít egy tetszőleges konfigurációs opciót, pl. -o dir::cache=/tmp\n" -"Lásd az apt-cache(8) és apt.conf(5) kézikönyvlapokat további " -"információkért.\n" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Az alábbi csomagoknak teljesítetlen függőségei vannak:" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Adja meg a lemez nevét, mint például „Debian 5.0.3 1. lemez”" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Az alábbi ÚJ csomagok lesznek telepítve:" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Helyezzen be egy lemezt a meghajtóba, és nyomja meg az Entert" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Az alábbi csomagok el lesznek TÁVOLÍTVA:" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "„%s” csatolása a(z) „%s” könyvtárba meghiúsult" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Az alábbi csomagok vissza lesznek tartva:" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Az alábbi csomagok frissítve lesznek:" + +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Az alábbi csomagok VISSZAFEJLESZTÉSRE kerülnek:" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Ismételje meg a folyamatot készlete többi CD-jével is." +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Az alábbi visszafogott csomagokat cserélem:" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Az argumentumok nincsenek párban" +#: apt-private/private-output.cc:668 +#, c-format +msgid "%s (due to %s) " +msgstr "%s (%s miatt) " -#: cmdline/apt-config.cc:89 +#: apt-private/private-output.cc:676 msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Használat: apt-config [kapcsolók] parancs\n" -"\n" -"Az apt-config egy egyszerű eszköz az APT konfigurációs fájl olvasására\n" -"\n" -"Parancsok:\n" -" shell - Shell mód\n" -" dump - Megmutatja a konfigurációt\n" -"Kapcsolók:\n" -" -h Ez a súgó szöveg\n" -" -c=? Ezt a konfigurációs fájlt olvassa be\n" -" -o=? Beállít egy tetszőleges konfigurációs opciót, pl -o dir::cache=/tmp\n" - -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel" - -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel" - -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel" +"FIGYELMEZTETÉS: Az alábbi alapvető csomagok el lesznek távolítva.\n" +"NE tegye ezt, hacsak nem tudja pontosan, mit csinál!" -#: cmdline/apt-get.cc:367 +#: apt-private/private-output.cc:707 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "„%s” kiválasztása forráscsomagként „%s” helyett\n" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu frissített, %lu újonnan telepített, " -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "" -"A(z) „%2$s” csomag el nem érhető „%1$s” verziójának figyelmen kívül hagyása" +#: apt-private/private-output.cc:711 +#, c-format +msgid "%lu reinstalled, " +msgstr "%lu újratelepítendő, " -#: cmdline/apt-get.cc:454 +#: apt-private/private-output.cc:713 #, c-format -msgid "Couldn't find package %s" -msgstr "Az alábbi csomag nem található: %s" +msgid "%lu downgraded, " +msgstr "%lu visszafejlesztendő, " -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-private/private-output.cc:715 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s kézi telepítésűre állítva.\n" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu eltávolítandó és %lu nem frissített.\n" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-private/private-output.cc:719 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s megjelölve automatikusan telepítettként.\n" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu nincs teljesen telepítve/eltávolítva.\n" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"Ez a parancs elavult. Használja helyette az „apt-mark auto” és az „apt-mark " -"auto” parancsokat." +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[I/n]" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Belső hiba, a problémamegoldó hibát okozott" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[i/N]" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Nem lehet zárolni a letöltési könyvtárat" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "I" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "" -"Legalább egy csomagot meg kell adni, amelynek a forrását le kell tölteni" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Nem található forráscsomag ehhez: %s" +msgid "Regex compilation error - %s" +msgstr "Regex fordítási hiba - %s" -#: cmdline/apt-get.cc:786 +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Az update parancsnak nincsenek argumentumai" + +#: apt-private/private-update.cc:90 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -"MEGJEGYZÉS: a(z) „%s” csomagolása a(z) „%s” verziókövető rendszerben van " -"karbantartva:\n" -"%s\n" -#: cmdline/apt-get.cc:791 +#: apt-private/private-show.cc:156 #, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" + +#: apt-private/private-main.cc:32 msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -"Használja a következő parancsot:\n" -"bzr branch %s\n" -"a csomag legújabb (esetleg kiadatlan) frissítéseinek letöltéséhez.\n" +"NE FELEDJE: Ez csak szimuláció!\n" +" Az apt-get rendszergazdai jogokat igényel a tényleges végrehajtáshoz.\n" +" Ne feledje, hogy a zárolás is ki van kapcsolva,\n" +" így ne számítson a jelenlegi helyzet valósságára!" -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "A már letöltött „%s” fájl kihagyása\n" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "FIGYELMEZTETÉS: Az alábbi csomagok nem hitelesíthetők!" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "Nem határozható meg a szabad hely mennyisége itt: %s" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "A hitelesítési figyelmeztetés felülbírálva.\n" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "Nincs elég szabad hely itt: %s" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Néhány csomag nem hitelesíthető" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Letöltendő forrásadat-mennyiség: %sB/%sB.\n" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Valóban ellenőrzés nélkül telepíti a csomagokat?" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Letöltendő forrásadat-mennyiség: %sB.\n" +msgid "Failed to fetch %s %s\n" +msgstr "Sikertelen letöltés: %s %s\n" -#: cmdline/apt-get.cc:902 +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "„%s” átnevezése sikertelen erre: %s" + +#: apt-private/private-sources.cc:70 #, c-format -msgid "Fetch source %s\n" -msgstr "Forrás letöltése: %s\n" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Nem sikerült néhány archívumot letölteni." +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "A letöltés befejeződött a „csak letöltés” módban" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Frissítés kiszámítása... " -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Egy már kibontott forrás kibontásának kihagyása itt: %s\n" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Kész" + +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Találat " + +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Letöltés:" -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "„%s” kibontási parancs nem sikerült.\n" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Mellőz " -#: cmdline/apt-get.cc:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Ellenőrizze, hogy a „dpkg-dev” csomag telepítve van-e.\n" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Hiba " -#: cmdline/apt-get.cc:991 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "„%s” elkészítési parancs nem sikerült.\n" - -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Hiba a gyermekfolyamatnál" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Letöltve %sB %s alatt (%sB/s)\n" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "" -"Legalább egy csomagot adjon meg, amelynek fordítási függőségeit ellenőrizni " -"kell" +#: apt-private/acqprogress.cc:236 +#, c-format +msgid " [Working]" +msgstr " [Folyamatban]" -#: cmdline/apt-get.cc:1054 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"Nem érhetők el architektúrainformációk ehhez: %s. A beállításokkal " -"kapcsolatban lásd az apt.conf(5) APT::Architectures részét." +"Helyezze be a(z)\n" +" „%s”\n" +"címkéjű lemezt a(z) %s meghajtóba, és nyomja meg az Entert\n" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Nem lehet %s fordítási függőségeinek információit letölteni" +msgid "Unable to read %s" +msgstr "%s nem olvasható" -#: cmdline/apt-get.cc:1101 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "%s has no build depends.\n" -msgstr "Nincs fordítási függősége a következőnek: %s.\n" +msgid "Unable to change to %s" +msgstr "Nem sikerült ide váltani: %s" -#: cmdline/apt-get.cc:1271 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"%2$s csomag %1$s függősége nem elégíthető ki, mert a(z) %3$s nem " -"engedélyezett a(z) „%4$s” csomagokon" +msgid "No mirror file '%s' found " +msgstr "Nem található a(z) „%s” tükörfájl " -#: cmdline/apt-get.cc:1289 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" -"%2$s csomag %1$s függősége nem elégíthető ki, mert a(z) %3$s csomag nem " -"található" +msgid "Can not read mirror file '%s'" +msgstr "A(z) „%s” tükörfájl nem olvasható" -#: cmdline/apt-get.cc:1312 -#, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"%2$s csomag %1$s függősége nem elégíthető ki: a telepített %3$s csomag túl " -"friss" +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "A(z) „%s” tükörfájl nem olvasható" -#: cmdline/apt-get.cc:1351 +#: methods/mirror.cc:445 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +msgid "[Mirror: %s]" +msgstr "[Tükör: %s]" + +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Nem sikerült IPC-adatcsatornát létrehozni az alfolyamathoz" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "A kapcsolat idő előtt lezárult" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Hibás alapértelmezett beállítás!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Nyomja meg az Entert a folytatáshoz." + +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Törli a korábban letöltött .deb fájlokat?" + +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Hiba történt a kicsomagolás során. A telepített csomagok" + +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "beállításra kerülnek. Ez többszörös" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -"%2$s csomag %1$s függősége nem elégíthető ki, mert a(z) %3$s csomag elérhető " -"verziója nem elégíti ki a verziókövetelményeket" +"vagy hiányzó függőségek miatti hibákat okozhat. Ez így van rendben, csak az " +"ezen üzenet" -#: cmdline/apt-get.cc:1357 -#, c-format +#: dselect/install:105 msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "" -"%2$s csomag %1$s függősége nem elégíthető ki, mert a(z) %3$s csomagnak nincs " -"jelölt verziója" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "előtti hibák fontosak. Javítsa azokat, és futtassa az [I]nstallt újra" -#: cmdline/apt-get.cc:1380 -#, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "%2$s csomag %1$s függősége nem elégíthető ki: %3$s" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Elérhető információk egyesítése" -#: cmdline/apt-get.cc:1395 -#, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "%s építési függőségei nem elégíthetők ki." +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "A DropNode hívása egy még mindig linkelt node-ra történt" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Nem sikerült az építési függőségeket feldolgozni" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "A hash elem nem található!" + +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Nem lehet eltérítést lefoglalni" + +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Belső hiba az AddDiversion hívásban" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Változási napló ehhez: %s (%s)" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Kísérlet eltérítés felülírására: %s -> %s és %s/%s" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Támogatott modulok:" +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "A(z) %s -> %s eltérítés hozzáadásának duplázása" -#: cmdline/apt-get.cc:1632 -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -msgstr "" -"Használat: apt-get [kapcsolók] parancs\n" -" apt-get [kapcsolók] install|remove pkg1 [pkg2 ...]\n" -" apt-get [kapcsolók] source pkg1 [pkg2 ...]\n" -"\n" -"Az apt-get egy egyszerű parancssori felület csomagok letöltéséhez és\n" -"telepítéséhez. A leggyakrabban használt parancsok az update és az install. \n" -"\n" -"Parancsok:\n" -" update - Frissíti a csomaglistákat\n" -" upgrade - Frissítés végrehajtása\n" -" install - Új csomagok telepítése (csomag a libc6 és nem a libc6.deb)\n" -" remove - Csomagok eltávolítása\n" -" autoremove - Automatikusan eltávolítja a nem használt csomagokat \n" -" purge - Eltávolítja és teljesen törli a csomagokat\n" -" source - Forrásarchívumok letöltése\n" -" build-dep - Forráscsomagok építési függőségét konfigurálja\n" -" dist-upgrade - Disztribúciófrissítés, lásd apt-get(8)\n" -" dselect-upgrade - Követi a dselect kijelöléseit\n" -" clean - Törli a letöltött archívumfájlokat\n" -" autoclean - Törli a régi letöltött archívumfájlokat\n" -" check - Ellenőrzi, hogy nincsenek-e törött függőségek\n" -" changelog - Adott csomag változási naplójának letöltése és megjelenítése\n" -" download - Bináris csomag letöltése a jelenlegi mappába\n" -"\n" -"Opciók:\n" -" -h Ez a súgó szöveg.\n" -" -q Naplózható kimenet - nincs folyamatjelző\n" -" -qq Nincs kimenet, kivéve a hibákat\n" -" -d Csak letöltés - NEM telepíti vagy bontja ki az archívokat\n" -" -s Szimulációs mód.\n" -" -y Felteszi, hogy minden kérdésre igen a válasz, és nem kérdez\n" -" -f Próbálja folytatni, akkor is ha a sértetlenségi teszt hibát jelez\n" -" -m Próbálja folytatni, akkor is ha egyes archívumok nem találhatók\n" -" -u Megjeleníti a frissített csomagok listáját is\n" -" -b Megépíti a forráscsomagot miután letöltötte\n" -" -V Részletes verziószámok\n" -" -c=? Ezt a konfigurációs fájlt olvassa be\n" -" -o=? Beállít egy tetszőleges konfigurációs opciót, pl. -o dir::cache=/" -"tmp\n" -"Lásd még az apt-get(8), sources.list(5) és apt.conf(5) kézikönyvlapokat " -"további\n" -"információkért és opciókért.\n" -" Ez az APT a SzuperTehén Hatalmával rendelkezik.\n" +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "Dupla %s/%s konfigurációs fájl" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "" -"Legalább egy csomagot meg kell adni, amelynek a forrását le kell tölteni" +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" +msgstr "A(z) %s útvonal túl hosszú" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" +msgstr "A(z) %s többszöri kicsomagolása" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "A(z) %s könyvtár eltérítve" -#: cmdline/apt-mark.cc:68 +#: apt-inst/extract.cc:152 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s nem jelölhető meg, mivel nincs telepítve.\n" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "A csomag megpróbál írni a(z) %s/%s eltérített célpontba" -#: cmdline/apt-mark.cc:74 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Az eltérített útvonal túl hosszú" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s már be van állítva kézi telepítésűre.\n" +msgid "Failed to stat %s" +msgstr "%s elérése sikertelen" -#: cmdline/apt-mark.cc:76 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s már meg van jelölve automatikusan telepítettként.\n" +msgid "Failed to rename %s to %s" +msgstr "„%s” átnevezése sikertelen erre: %s" -#: cmdline/apt-mark.cc:241 +#: apt-inst/extract.cc:249 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s már be van állítva visszafogásra.\n" +msgid "The directory %s is being replaced by a non-directory" +msgstr "A(z) %s könyvtár nem egy könyvtárral lesz helyettesítve" -#: cmdline/apt-mark.cc:243 +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Nem sikerült a node helyét megtalálni a hashtárolóban" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Az útvonal túl hosszú" + +#: apt-inst/extract.cc:421 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s eddig sem volt visszafogva.\n" +msgid "Overwrite package match with no version for %s" +msgstr "Csomagtalálat felülírása %s verziója nélkül" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-inst/extract.cc:438 #, c-format -msgid "%s set on hold.\n" -msgstr "%s beállítva visszafogásra.\n" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "A(z) %s/%s fájl felülírja a(z) %s csomagban levőt" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-inst/extract.cc:498 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Visszafogás törölve ezen: %s.\n" +msgid "Unable to stat %s" +msgstr "%s nem érhető el" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "A dpkg futtatása sikertelen. Van root jogosultsága?" +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, c-format +msgid "Failed to write file %s" +msgstr "A(z) %s fájl írása sikertelen" -#: cmdline/apt-mark.cc:392 -#, fuzzy -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" -"Használat: apt-mark [kapcsolók] {auto|manual} csom1 [csom2 ...]\n" -"\n" -"Az apt-mark egy egyszerű parancssori felület csomagok megjelölésére\n" -"kézileg vagy automatikusan telepítettként. Képes felsorolni a jelöléseket " -"is.\n" -"\n" -"Parancsok:\n" -" auto -Az adott csomagok megjelölése automatikusan telepítettként\n" -" manual - Az adott csomagok megjelölése kézzel telepítettként\n" -"\n" -"Kapcsolók:\n" -" -h Ez a súgó szöveg.\n" -" -q Naplózható kimenet - nincs folyamatjelző\n" -" -qq Nincs kimenet, kivéve a hibákat\n" -" -s Szimulációs mód. Csak kiírja, mi történne.\n" -" -f auto/kézi megjelölés olvasása/írása az adott fájlból/fájlba\n" -" -c=? Ezt a konfigurációs fájlt olvassa be\n" -" -o=? Beállít egy tetszőleges konfigurációs opciót, pl. -o dir::cache=/tmp\n" -"Lásd még az apt-mark(8) és apt.conf(5) kézikönyvlapokat további\n" -"információkért." +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "A(z) %s fájl bezárása sikertelen" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Ez nem egy érvényes DEB archívum, hiányzik a(z) „%s” tag" -#: methods/cdrom.cc:203 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "%s CD-ROM adatbázis nem olvasható" +msgid "Internal error, could not locate member %s" +msgstr "Belső hiba, %s tag nem található" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"Használja az apt-cdrom parancsot a CD felismertetésére. Az apt-get update " -"nem használható új CD-k hozzáadására." +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Értelmezhetetlen control fájl" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Hibás CD" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Érvénytelen archívum-aláírás" -#: methods/cdrom.cc:249 +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Hiba az archívumtag-fejléc olvasásakor" + +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "" -"Nem lehet leválasztani az itt lévő CD-ROM-ot: %s, még használatban lehet." +msgid "Invalid archive member header %s" +msgstr "Érvénytelen archívumtag-fejléc: %s" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "A lemez nem található." +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Érvénytelen archívumtag-fejléc" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "A fájl nem található" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Az archívum túl rövid" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Nem érhető el" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Nem sikerült olvasni az archívumfejléceket" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "A módosítási idő beállítása sikertelen" +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Nem sikerült adatcsatornákat létrehozni" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Érvénytelen URI, helyi URI-k nem kezdődhetnek //-rel" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Nem sikerült a gzipet futtatni " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Hibás archívum" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar ellenőrzőösszeg nem egyezik, az archívum megsérült" + +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Ismeretlen a(z) %u TAR fejléctípus, %s tag" + +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Bejelentkezés" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "A dpkg futtatása" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Nem lehet a partner nevét megállapítani" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "A(z) „%s” csomagrendszer nem támogatott" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Nem lehet a helyi nevet megállapítani" +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "A megfelelő csomagrendszertípus nem határozható meg" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "A kiszolgáló visszautasította a kapcsolatot: %s" +msgid "Wrote %i records.\n" +msgstr "%i rekord kiírva.\n" -#: methods/ftp.cc:225 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "USER failed, server said: %s" -msgstr "Hibás USER, a kiszolgáló üzenete: %s" +msgid "Wrote %i records with %i missing files.\n" +msgstr "%i rekord kiírva, %i hiányzó fájllal.\n" -#: methods/ftp.cc:232 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "PASS failed, server said: %s" -msgstr "Hibás PASS, a kiszolgáló üzenete: %s" +msgid "Wrote %i records with %i mismatched files\n" +msgstr "%i rekord kiírva %i eltérő fájllal\n" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"Meg lett adva proxy kiszolgáló, de nincs bejelentkezési parancsfájl és az " -"Acquire::ftp::ProxyLogin üres." +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "%i rekord kiírva %i hiányzó és %i eltérő fájllal\n" -#: methods/ftp.cc:280 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "" -"A bejelentkezési parancsfájl „%s” parancsa sikertelen, a kiszolgáló üzenete: " -"%s" +msgid "Can't find authentication record for: %s" +msgstr "%s hitelesítési rekordja nem található" -#: methods/ftp.cc:306 +#: apt-pkg/indexcopy.cc:521 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "Hibás TYPE, a kiszolgáló üzenete: %s" +msgid "Hash mismatch for: %s" +msgstr "%s ellenőrzőösszege nem megfelelő" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Időtúllépés a kapcsolatban" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"A csomaglisták vagy az állapotfájl nem dolgozhatók fel vagy nem nyithatók " +"meg." -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "A kiszolgáló lezárta a kapcsolatot" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Próbálja futtatni az „apt-get update” parancsot ezen hibák javításához" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "A válasz túlcsordította a puffert." +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "A források listája olvashatatlan." -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protokollhiba" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Üres csomaggyorsítótár" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Nem lehet létrehozni a foglalatot" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "A csomaggyorsítótár fájl megsérült" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "" -"Nem lehet kapcsolódni az adatfoglalathoz, a kapcsolat túllépte az időkorlátot" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "A csomaggyorsítótár-fájl inkompatibilis verziójú" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Sikertelen" +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "A csomaggyorsítótár-fájl sérült, túl kicsi" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Nem lehet kapcsolódni a passzív foglalathoz." +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "Ez az APT nem támogatja a(z) „%s” verziórendszert" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "A getaddrinfo nem talált figyelőfoglalatot" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "A csomaggyorsítótár egy másik architektúrához készült" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Nem lehet összekapcsolódni a foglalattal" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Függ ettől" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Nem lehet figyelni a foglalaton" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Függ ettől (előfüggés)" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Nem lehet megállapítani a foglalat nevét" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Javasolja" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Nem lehet PORT parancsot küldeni" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Ajánlja" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Ismeretlen címcsalád: %u (AF_*)" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Ütközik" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "Hibás EPRT, a kiszolgáló üzenete: %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Kicseréli" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Az adatfoglalathoz kapcsolódás túllépte az időkorlátot" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Elavulttá teszi" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Nem lehet elfogadni a kapcsolatot" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Töri" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Probléma a fájl hash értékének meghatározásakor" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Bővíti" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Nem lehet letölteni a fájlt, a kiszolgáló üzenete: „%s”" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "fontos" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Az adatfoglalat túllépte az időkorlátot" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "szükséges" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Az adatátvitel sikertelen, a kiszolgáló üzenete: „%s”" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "szabványos" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Lekérdezés" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "opcionális" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Nem lehet meghívni " +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" -#: methods/connect.cc:76 +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Csatlakozás: %s (%s)" +msgid "The method driver %s could not be found." +msgstr "A(z) %s metódusvezérlő nem található." -#: methods/connect.cc:87 +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Ellenőrizze, hogy a „dpkg-dev” csomag telepítve van-e.\n" + +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Method %s did not start correctly" +msgstr "A(z) %s metódus nem indult el megfelelően" -#: methods/connect.cc:94 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Foglalat létrehozása sikertelen ehhez: %s (f=%u t=%u p=%u)" +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Helyezze be a(z) „%s” címkéjű lemezt a(z) „%s” meghajtóba, és nyomja meg az " +"Entert." + +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "A(z) „%s” indexfájltípus nem támogatott" + +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Függőségi fa építése" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Lehetséges verziók" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Függőséggenerálás" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Állapotinformációk olvasása" -#: methods/connect.cc:100 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Kapcsolat létrehozása sikertelen ehhez: %s: %s (%s)." +msgid "Failed to open StateFile %s" +msgstr "%s állapotfájl megnyitása sikertelen" -#: methods/connect.cc:108 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Időtúllépés miatt nem lehet kapcsolódni a következőhöz: %s: %s (%s)" +msgid "Failed to write temporary StateFile %s" +msgstr "%s átmeneti állapotfájl írása sikertelen" -#: methods/connect.cc:126 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Nem lehet kapcsolódni ehhez: %s: %s (%s)." +msgid "rename failed, %s (%s -> %s)." +msgstr "sikertelen átnevezés, %s (%s -> %s)." -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 -#, c-format -msgid "Connecting to %s" -msgstr "Kapcsolódás: %s" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "A Hash Sum nem megfelelő" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "A méret nem megfelelő" + +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "%s érvénytelen művelet" + +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Could not resolve '%s'" -msgstr "Nem lehet feloldani a következőt: „%s”" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" +"A várt „%s” bejegyzés nem található a Release fájlban (Rossz sources.list " +"bejegyzés vagy helytelenül formázott fájl)" -#: methods/connect.cc:205 +#: apt-pkg/acquire-item.cc:1589 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Átmeneti hiba „%s” feloldása közben" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Nem található a(z) „%s” ellenőrzőösszege a Release fájlban" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Hiba történt „%s:%s” feloldásakor (%i - %s)" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Nem érhető el nyilvános kulcs az alábbi kulcsazonosítókhoz:\n" -#: methods/connect.cc:211 +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Hiba történt „%s:%s” feloldásakor (%i - %s)" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" +"A Release fájl elavult ehhez: %s (érvénytelen ez óta: %s). A tároló " +"frissítései nem kerülnek alkalmazásra." -#: methods/connect.cc:258 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Nem lehet csatlakozni ehhez: %s:%s:" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Ütköző disztribúció: %s (a várt %s helyett %s érkezett)" -#: methods/gpgv.cc:168 +#: apt-pkg/acquire-item.cc:1721 +#, c-format msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "Belső hiba: Jó aláírás, de nem állapítható meg a kulcs ujjlenyomata." - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Legalább egy aláírás érvénytelen." - -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -"Nem indítható el a „gpgv” az aláírás ellenőrzéséhez (telepítve van a gpgv?)" +"Hiba történt az aláírás ellenőrzése közben. A tároló nem frissült, és az " +"előző indexfájl lesz használva. GPG hiba: %s: %s\n" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "GPG hiba: %s: %s" + +#: apt-pkg/acquire-item.cc:1859 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" msgstr "" +"Egy fájl nem található a(z) %s csomaghoz. Ez azt jelentheti, hogy kézzel " +"kell kijavítani a csomagot. (hiányzó arch. miatt)" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Ismeretlen gpgv futtatási hiba" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Az alábbi aláírások érvénytelenek voltak:\n" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "Nem található forrás a(z) „%2$s” „%1$s” verziójának letöltéséhez" -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1983 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" -"Az alábbi aláírások nem ellenőrizhetők, mert a nyilvános kulcs nem érhető " -"el:\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Az üres fájlok biztosan nem érvényes csomagok" +"A csomagindexfájlok megsérültek. Nincs Filename: mező a(z) %s csomaghoz." -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Hiba a fájl írásakor" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "A(z) „%s” indexfájltípus nem támogatott" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Hiba a kiszolgálóról olvasáskor, a túloldal lezárta a kapcsolatot" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "%s nem érhető el." -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Hiba a kiszolgálóról olvasáskor" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "A gyorsítótárnak inkompatibilis verziórendszere van" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Hiba a fájl írásakor" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Hiba történt a(z) %s feldolgozása során (%s%d)" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "A kiválasztás sikertelen" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "Az APT által kezelhető csomagnevek száma túllépve." -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Időtúllépés a kapcsolatban" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Az APT által kezelhető csomagverziók száma túllépve." -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Hiba a kimeneti fájl írásakor" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Az APT által kezelhető csomagleírások száma túllépve." -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Várakozás a fejlécekre" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "Az APT által kezelhető függőségek száma túllépve." -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Rossz fejlécsor" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "" +"A(z) %s %s csomag nem volt megtalálható a fájl függőségeinek feldolgozása " +"közben" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "A HTTP-kiszolgáló érvénytelen válaszfejlécet küldött" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Nem lehet a(z) %s forrás csomaglistáját elérni" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "A HTTP-kiszolgáló érvénytelen Content-Length fejlécet küldött" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Csomaglisták olvasása" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "A HTTP-kiszolgáló érvénytelen Content-Range fejlécet küldött" +# FIXME +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "„Biztosítja” kapcsolatok összegyűjtése" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "A HTTP-kiszolgáló tartománytámogatása sérült" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Nem lehet írni ebbe: %s" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Ismeretlen dátumformátum" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "IO hiba a forrás-gyorsítótár mentésekor" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Rossz fejlécadatok" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "A(z) %s terjesztőblokk nem tartalmaz ujjlenyomatot" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Sikertelen kapcsolódás" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "A(z) %spartial listakönyvtár hiányzik." -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Belső hiba" +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "A(z) %spartial archívumkönyvtár hiányzik." -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Frissítés kiszámítása... " +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "%s könyvtár zárolása sikertelen" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Kész" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "%li/%li fájl letöltése (%s marad)" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "%li/%li fájl letöltése" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" +"Néhány indexfájlt nem sikerült letölteni. Figyelmen kívül lettek hagyva, " +"vagy régebbiek lettek felhasználva." -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Néhány „source” URI-t el kell helyezni a sources.list fájlban" + +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" +"A(z) „%s” érték érvénytelen az APT::Default-Release beállításhoz, mert nincs " +"ilyen kiadás a forrásokban" -#: apt-private/private-list.cc:164 +#: apt-pkg/policy.cc:422 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Érvénytelen rekord a(z) %s beállításfájlban, nincs Package fejléc" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Függőségek javítása..." +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "A(z) %s rögzítéstípus nem értelmezhető" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " sikertelen." +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Nincs prioritás (vagy nulla) megadva a rögzítéshez" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Nem lehet javítani a függőségeket" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" +"Nem lehetett a(z) „%s” közvetlen beállítását végrehajtani. A részletekért " +"lásd a man 5 apt.conf oldalt az APT::Immediate-Configure címszó alatt. (%d)" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Nem lehet minimalizálni a frissítendő csomagok mennyiségét" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, c-format +msgid "Could not configure '%s'. " +msgstr "A(z) „%s” beállítása sikertelen" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Kész" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"Ez a telepítési lépés átmenetileg megköveteli a(z) %s alapvető csomag " +"eltávolítását, ami ütközési/előfüggőségi hurkot okoz. Ez gyakran rossz, de " +"ha tényleg ezt akarja tenni, aktiválja az APT::Force-LoopBreak opciót." -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Próbálja futtatni az „apt-get -f install” parancsot ezek javításához." +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "A(z) %u. sor túl hosszú a(z) %s forráslistában." -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Teljesítetlen függőségek. Próbálja a -f használatával." +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "CD-ROM leválasztása...\n" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "%s CD-ROM csatolási pont használata\n" -#: apt-private/private-output.cc:234 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Telepítve]" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Várakozás a lemezre...\n" -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [Telepítve]" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "CD-ROM csatolása...\n" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Azonosítás... " -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Telepítve]" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Tárolt címke: %s\n" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Telepítve]" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Indexfájlok keresése a lemezen...\n" -#: apt-private/private-output.cc:249 +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "[upgradable from: %s]" +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"%zu csomagindex, %zu forrásindex, %zu fordításindex és %zu aláírás " +"megtalálva\n" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" +"Nem találhatók csomagfájlok, lehet hogy ez nem Debian lemez, vagy nem " +"megfelelő az architektúra?" -#: apt-private/private-output.cc:435 -#, c-format -msgid "but %s is installed" -msgstr "de %s van telepítve" - -#: apt-private/private-output.cc:437 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "but %s is to be installed" -msgstr "de csak %s telepíthető" - -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "de az nem telepíthető" - -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "de az egy virtuális csomag" +msgid "Found label '%s'\n" +msgstr "Talált címke: „%s”\n" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "de az nincs telepítve" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "A név érvénytelen, próbálja újra.\n" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "de az nincs telepítésre megjelölve" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"A lemez neve: \n" +"„%s”\n" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " vagy" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Csomaglisták másolása..." -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Az alábbi csomagoknak teljesítetlen függőségei vannak:" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Új forráslista írása\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Az alábbi ÚJ csomagok lesznek telepítve:" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "A lemezhez tartozó forráslistabejegyzések a következők:\n" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Az alábbi csomagok el lesznek TÁVOLÍTVA:" +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"A(z) %s csomagot újra kell telepíteni, de nem található hozzá archívum." -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Az alábbi csomagok vissza lesznek tartva:" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Hiba, a pkgProblemResolver::Resolve töréseket generált, ezt visszafogott " +"csomagok okozhatják." -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Az alábbi csomagok frissítve lesznek:" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "A problémák nem javíthatók, sérült csomagokat fogott vissza." -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Az alábbi csomagok VISSZAFEJLESZTÉSRE kerülnek:" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "A helyzet elküldése a solvernek" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Az alábbi visszafogott csomagokat cserélem:" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Kérés küldése a solvernek" -#: apt-private/private-output.cc:668 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (%s miatt) " +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Felkészülés megoldás fogadására" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" -msgstr "" -"FIGYELMEZTETÉS: Az alábbi alapvető csomagok el lesznek távolítva.\n" -"NE tegye ezt, hacsak nem tudja pontosan, mit csinál!" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "A külső solver megfelelő hibaüzenet nélkül hibázott" -#: apt-private/private-output.cc:707 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu frissített, %lu újonnan telepített, " +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Külső solver végrehajtása" -#: apt-private/private-output.cc:711 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu újratelepítendő, " +msgid "Unable to parse package file %s (1)" +msgstr "Nem lehet a(z) %s csomagfájlt feldolgozni (1)" -#: apt-private/private-output.cc:713 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%lu downgraded, " -msgstr "%lu visszafejlesztendő, " +msgid "Unable to parse package file %s (2)" +msgstr "Nem lehet a(z) %s csomagfájlt feldolgozni (2)" -#: apt-private/private-output.cc:715 +#: apt-pkg/indexrecords.cc:78 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu eltávolítandó és %lu nem frissített.\n" +msgid "Unable to parse Release file %s" +msgstr "A(z) %s Release fájl nem dolgozható fel" -#: apt-private/private-output.cc:719 +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu nincs teljesen telepítve/eltávolítva.\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[I/n]" +msgid "No sections in Release file %s" +msgstr "A(z) %s Release fájl nem tartalmaz szakaszokat" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[i/N]" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Nincs Hash bejegyzés a(z) %s Release fájlban" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "I" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Érvénytelen „Valid-Until” bejegyzés a(z) %s Release fájlban" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "N" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Érvénytelen „Date” bejegyzés a(z) %s Release fájlban" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Az update parancsnak nincsenek argumentumai" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (URI-feldolgozás)" -#: apt-private/private-update.cc:90 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "" +"Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában (az [option] " +"feldolgozhatatlan)" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" +"Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában (az [option] túl " +"rövid)" -#: apt-private/private-show.cc:156 +#: apt-pkg/sourcelist.cc:184 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "" +"Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában ([%s] nem " +"érvényes hozzárendelés)" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" +"Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában ([%s] nem " +"tartalmaz kulcsot)" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Belső hiba, az InstallPackages törött csomagokkal lett meghívva!" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "" +"Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában ([%s] %s kulcsnak " +"nincs értéke)" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Csomagokat kellene eltávolítani, de az eltávolítás nem engedélyezett." +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (URI)" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Belső hiba, a rendezés nem fejeződött be" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (dist)" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "A méretek nem egyeznek, írjon az apt@packages.debian.org címre" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (URI-feldolgozás)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Letöltendő adatmennyiség: %sB/%sB.\n" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (Abszolút dist)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Letöltendő adatmennyiség: %sB.\n" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (dist feldolgozás)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "A művelet után %sB lemezterület kerül felhasználásra.\n" +msgid "Opening %s" +msgstr "%s megnyitása" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "A művelet után %sB lemezterület szabadul fel.\n" +msgid "Malformed line %u in source list %s (type)" +msgstr "A(z) %u. sor hibás a(z) %s forráslistában (típus)" -#: apt-private/private-install.cc:200 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Nincs elég szabad hely itt: %s." +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "„%1$s” típus nem ismert a(z) %3$s forráslista %2$u. sorában" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Problémák vannak, és a -y kapcsolót használta --force-yes nélkül" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "„%1$s” típus nem ismert a(z) %3$s forráslista %2$u. sorában" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "A „Trivial Only” meg van adva, de ez nem egy triviális művelet." +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "„%s” kiadás nem található ehhez: „%s”" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Igen, tedd amit mondok!" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "„%s” verzió nem található ehhez: „%s”" -#: apt-private/private-install.cc:222 +#: apt-pkg/cacheset.cc:603 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Ártalmasnak tűnő műveletet készül végrehajtani.\n" -"A folytatáshoz írja be ezt a mondatot: „%s”\n" -" ?] " +msgid "Couldn't find task '%s'" +msgstr "„%s” feladat nem található" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Megszakítva." +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Folytatni akarja?" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Néhány fájlt nem sikerült letölteni" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "„%s” csomagból nem választható verzió, mert teljesen virtuális" + +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" +"„%s” csomagból nem választható sem telepített, sem kiadásra jelölt verzió, " +"mert egyikkel sem rendelkezik" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -"Nem lehet letölteni néhány archívumot. Próbálja futtatni az „apt-get update” " -"parancsot, vagy használja a --fix-missing kapcsolót." +"„%s” csomag legújabb verziója nem választható ki, mert teljesen virtuális" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "A --fix-missing és az adathordozó-csere jelenleg nem támogatott" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" +"„%s” csomag kiadásra jelölt verziója nem választható ki, mert nincs jelöltje" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Nem lehet javítani a hiányzó csomagokat." +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"„%s” csomag telepített verziója nem választható ki, mert nincs telepítve" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Telepítés megszakítása." +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%lin %lió %lip %limp" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -"A következő csomag eltűnt a rendszerből, mivel\n" -"az összes fájlt más csomagok fölülírták:" -msgstr[1] "" -"A következő csomagok eltűntek a rendszerből, mivel\n" -"az összes fájlt más csomagok fölülírták:" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%lió %lip %limp" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Megjegyzés: ezt a dpkg automatikusan és szándékosan hajtja végre." +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%lip %limp" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Nem kellene semmit törölni, az AutoRemover nem indítható" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%limp" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Úgy tűnik, az AutoRemover hibát okozott, ez nem történhetne meg.\n" -"Küldjön hibajelentést az apt csomaghoz." +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "%s kiválasztás nem található" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "Az alábbi információk segíthetnek megoldani a problémát:" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Nem lesz zárolva a(z) „%s” csak olvasható zárolási fájl" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Belső hiba, az AutoRemover sérült" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "%s zárolási fájl nem nyitható meg" -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "" -"A következő csomag automatikusan lett telepítve, és már nincs rá szükség:" -msgstr[1] "" -"A következő csomagok automatikusan lettek telepítve, és már nincs rájuk " -"szükség:" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Nem lesz zárolva a(z) %s NFS-csatolású zárolási fájl" -#: apt-private/private-install.cc:517 +#: apt-pkg/contrib/fileutl.cc:223 #, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "%lu csomag automatikusan lett telepítve, és már nincs rá szükség.\n" -msgstr[1] "" -"%lu csomag automatikusan lett telepítve, és már nincs rájuk szükség.\n" +msgid "Could not get lock %s" +msgstr "Nem sikerült zárolni: %s" -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Ezt az „apt-get autoremove” paranccsal törölheti." -msgstr[1] "Ezeket az „apt-get autoremove” paranccsal törölheti." +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "A fájlok listáját nem lehetett létrehozni, mert „%s” nem könyvtár" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -"Próbálja futtatni az „apt-get -f install” parancsot az alábbiak javításához:" +"„%s” figyelmen kívül hagyása a(z) „%s” könyvtárban, mert nem szabályos fájl" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -"Teljesítetlen függőségek. Próbálja kiadni az „apt-get -f install” parancsot " -"csomagok nélkül (vagy telepítse a függőségeket is!)." +"„%s” fájl figyelmen kívül hagyása a(z) „%s” könyvtárban, mert nincs " +"fájlkiterjesztése" -#: apt-private/private-install.cc:638 +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"Néhány csomagot nem lehetett telepíteni. Ez azt jelentheti, hogy\n" -"egy lehetetlen állapotot kért, vagy ha az unstable disztribúciót\n" -"használja, akkor néhány igényelt csomag még nem készült el vagy ki\n" -"lett mozdítva az Incoming-ból." +"„%s” fájl figyelmen kívül hagyása a(z) „%s” könyvtárban, mert érvénytelen " +"fájlkiterjesztése van" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Törött csomagok" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "%s alfolyamat szegmentálási hibát okozott." -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Az alábbi extra csomagok kerülnek telepítésre:" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "A(z) %s alfolyamat %u számú szignált kapott." -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Javasolt csomagok:" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "%s alfolyamat hibakóddal tért vissza (%u)" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Ajánlott csomagok:" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "%s alfolyamat váratlanul kilépett" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "%s kihagyása, ez már telepítve van, és a frissítés nincs beállítva.\n" +msgid "Problem closing the gzip file %s" +msgstr "Hiba a(z) %s gzip fájl bezárásakor" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "„%s” kihagyása, nincs telepítve, és csak frissítések lettek kérve.\n" +msgid "Could not open file %s" +msgstr "Nem lehet megnyitni a(z) %s fájlt" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "%s újratelepítése nem lehetséges, mert nem lehet letölteni.\n" +msgid "Could not open file descriptor %d" +msgstr "Nem lehet megnyitni a(z) %d fájlleírót" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Nem sikerült az alfolyamat IPC-t létrehozni" + +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Nem sikerült elindítani a tömörítőt " + +#: apt-pkg/contrib/fileutl.cc:1514 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s már a legújabb verzió.\n" +msgid "read, still have %llu to read but none left" +msgstr "olvasás, még kellene %llu, de már az összes elfogyott" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "„%s” (%s) verzió lett kijelölve ehhez: „%s”\n" +msgid "write, still have %llu to write but couldn't" +msgstr "írás, még kiírandó %llu, de ez nem lehetséges" -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/fileutl.cc:1915 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "„%s” (%s) verzió lett kijelölve ehhez: „%s”, a(z) „%s” miatt\n" +msgid "Problem closing the file %s" +msgstr "Hiba a(z) %s fájl bezárásakor" + +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Hiba a(z) %s fájl átnevezésekor erre: %s" + +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Hiba a(z) %s fájl törlésekor" + +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Hiba a fájl szinkronizálásakor" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" -"A(z) „%s” csomag nincs telepítve, így nem lett törölve. Erre gondolt: „%s”?\n" +msgid "%c%s... Error!" +msgstr "%c%s... Hiba!" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "A(z) „%s” csomag nincs telepítve, így nem lett törölve\n" +msgid "%c%s... Done" +msgstr "%c%s... Kész" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -"NE FELEDJE: Ez csak szimuláció!\n" -" Az apt-get rendszergazdai jogokat igényel a tényleges végrehajtáshoz.\n" -" Ne feledje, hogy a zárolás is ki van kapcsolva,\n" -" így ne számítson a jelenlegi helyzet valósságára!" - -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "FIGYELMEZTETÉS: Az alábbi csomagok nem hitelesíthetők!" - -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "A hitelesítési figyelmeztetés felülbírálva.\n" - -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Néhány csomag nem hitelesíthető" - -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Valóban ellenőrzés nélkül telepíti a csomagokat?" -#: apt-private/private-sources.cc:58 +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "„%s” átnevezése sikertelen erre: %s" +msgid "%c%s... %u%%" +msgstr "%c%s... Kész" -#: apt-private/private-sources.cc:70 +# FIXME +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Nem lehet mmap-olni egy üres fájlt" + +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "Couldn't duplicate file descriptor %i" +msgstr "Nem lehetett kettőzni a(z) %i fájlleírót" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: apt-pkg/contrib/mmap.cc:119 +#, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Nem sikerült %llu bájtot mmap-olni" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Találat " +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Nem lehet bezárni az mmapot" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Letöltés:" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Nem lehet szinkronizálni az mmapot" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Mellőz " +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Nem sikerült %lu bájtot mmap-olni" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Hiba " +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "A fájl csonkítása meghiúsult" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Letöltve %sB %s alatt (%sB/s)\n" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" +"A dinamikus MMap helye elfogyott. Növelje az APT::Cache-Start méretét. A " +"jelenlegi érték: %lu. (lásd: man 5 apt.conf)" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid " [Working]" -msgstr " [Folyamatban]" +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" +"Nem lehet növelni az MMap méretét, mert a(z) %lu bájt korlátot már elérte." -#: apt-private/acqprogress.cc:297 -#, c-format +#: apt-pkg/contrib/mmap.cc:449 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -"Helyezze be a(z)\n" -" „%s”\n" -"címkéjű lemezt a(z) %s meghajtóba, és nyomja meg az Entert\n" +"Nem lehet növelni az MMap méretét, mert a felhasználó letiltotta az " +"automatikus emelést." -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "No mirror file '%s' found " -msgstr "Nem található a(z) „%s” tükörfájl " +msgid "Unable to stat the mount point %s" +msgstr "%s csatolási pont nem érhető el" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, c-format -msgid "Can not read mirror file '%s'" -msgstr "A(z) „%s” tükörfájl nem olvasható" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Nem sikerült elérni a CD-ROM-ot." -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "A(z) „%s” tükörfájl nem olvasható" +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Ismeretlen típusrövidítés: „%c”" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "[Mirror: %s]" -msgstr "[Tükör: %s]" +msgid "Opening configuration file %s" +msgstr "%s konfigurációs fájl megnyitása" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Nem sikerült IPC-adatcsatornát létrehozni az alfolyamathoz" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Szintaktikai hiba %s: %u: A blokk név nélkül kezdődik." -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "A kapcsolat idő előtt lezárult" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Szintaktikai hiba %s: %u: rosszul formázott címke" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Hibás alapértelmezett beállítás!" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Szintaktikai hiba %s: %u: fölösleges szemét az érték után" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Nyomja meg az Entert a folytatáshoz." +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "Szintaktikai hiba %s: %u: Csak legfelső szinten használhatók előírások" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Törli a korábban letöltött .deb fájlokat?" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Szintaktikai hiba %s: %u: Túl sok beágyazott include" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Hiba történt a kicsomagolás során. A telepített csomagok" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Szintaktikai hiba %s: %u: ugyaninnen include-olva" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "beállításra kerülnek. Ez többszörös" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Szintaktikai hiba %s:%u: „%s” nem támogatott előírás" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"vagy hiányzó függőségek miatti hibákat okozhat. Ez így van rendben, csak az " -"ezen üzenet" +"Szintaktikai hiba %s:%u: a törlési parancs egy beállítási fát vár " +"argumentumként" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "előtti hibák fontosak. Javítsa azokat, és futtassa az [I]nstallt újra" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Szintaktikai hiba %s: %u: fölösleges szemét a fájl végén" -#: dselect/update:30 -msgid "Merging available information" -msgstr "Elérhető információk egyesítése" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "Nincs kulcstartó telepítve ide: %s." -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "A DropNode hívása egy még mindig linkelt node-ra történt" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "A(z) „%c” parancssori kapcsoló [a következőből: %s] ismeretlen." -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "A hash elem nem található!" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "%s parancssori kapcsoló értelmezhetetlen" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Nem lehet eltérítést lefoglalni" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "%s parancssori kapcsoló nem logikai" + +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "%s kapcsolóhoz argumentum szükséges." -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Belső hiba az AddDiversion hívásban" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "" +"%s kapcsoló: a konfigurációs elem megadásához szükséges egy =<érték> rész." -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Kísérlet eltérítés felülírására: %s -> %s és %s/%s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "%s kapcsoló egész, és nem „%s” típusú argumentumot követel meg" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "A(z) %s -> %s eltérítés hozzáadásának duplázása" +msgid "Option '%s' is too long" +msgstr "Túl hosszú „%s” kapcsoló" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Dupla %s/%s konfigurációs fájl" +msgid "Sense %s is not understood, try true or false." +msgstr "%s jelentés nem értelmezhető, próbálja a true vagy false értékeket." -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The path %s is too long" -msgstr "A(z) %s útvonal túl hosszú" +msgid "Invalid operation %s" +msgstr "%s érvénytelen művelet" -#: apt-inst/extract.cc:132 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unpacking %s more than once" -msgstr "A(z) %s többszöri kicsomagolása" +msgid "Installing %s" +msgstr "%s telepítése" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The directory %s is diverted" -msgstr "A(z) %s könyvtár eltérítve" +msgid "Configuring %s" +msgstr "%s konfigurálása" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "A csomag megpróbál írni a(z) %s/%s eltérített célpontba" +msgid "Removing %s" +msgstr "%s eltávolítása" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Az eltérített útvonal túl hosszú" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "%s teljes eltávolítása" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to stat %s" -msgstr "%s elérése sikertelen" +msgid "Noting disappearance of %s" +msgstr "„%s” eltűnése feljegyezve" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Failed to rename %s to %s" -msgstr "„%s” átnevezése sikertelen erre: %s" +msgid "Running post-installation trigger %s" +msgstr "A(z) %s telepítés utáni trigger futtatása" -#: apt-inst/extract.cc:249 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "A(z) %s könyvtár nem egy könyvtárral lesz helyettesítve" +msgid "Directory '%s' missing" +msgstr "A(z) „%s” könyvtár hiányzik" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Nem sikerült a node helyét megtalálni a hashtárolóban" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "A(z) „%s” fájl megnyitása sikertelen" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Az útvonal túl hosszú" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "%s előkészítése" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Csomagtalálat felülírása %s verziója nélkül" +msgid "Unpacking %s" +msgstr "%s kicsomagolása" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "A(z) %s/%s fájl felülírja a(z) %s csomagban levőt" +msgid "Preparing to configure %s" +msgstr "%s konfigurálásának előkészítése" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Unable to stat %s" -msgstr "%s nem érhető el" +msgid "Installed %s" +msgstr "%s telepítve" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to write file %s" -msgstr "A(z) %s fájl írása sikertelen" +msgid "Preparing for removal of %s" +msgstr "%s eltávolításának előkészítése" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Failed to close file %s" -msgstr "A(z) %s fájl bezárása sikertelen" +msgid "Removed %s" +msgstr "%s eltávolítva" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Ez nem egy érvényes DEB archívum, hiányzik a(z) „%s” tag" +msgid "Preparing to completely remove %s" +msgstr "%s teljes eltávolításának előkészítése" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Belső hiba, %s tag nem található" +msgid "Completely removed %s" +msgstr "%s teljesen eltávolítva" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Értelmezhetetlen control fájl" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Érvénytelen archívum-aláírás" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Nem lehet írni ebbe: %s" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Hiba az archívumtag-fejléc olvasásakor" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Érvénytelen archívumtag-fejléc: %s" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Érvénytelen archívumtag-fejléc" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "A művelet megszakadt, mielőtt befejeződhetett volna" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Az archívum túl rövid" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "Nem került írásra apport jelentés, mivel a MaxReports már elérve" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Nem sikerült olvasni az archívumfejléceket" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "függőségi hibák - a csomag beállítatlan maradt" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Nem sikerült adatcsatornákat létrehozni" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Nem került kiírásra apport jelentés, mivel a hibaüzenet szerint ez a hiba " +"egy korábbi hiba következménye." -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Nem sikerült a gzipet futtatni " +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Nem került kiírásra apport jelentés, mivel a hibaüzenet szerint megtelt a " +"lemez" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Hibás archívum" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Nem került kiírásra apport jelentés, mivel a hibaüzenet memóriaelfogyási " +"hibát jelez" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar ellenőrzőösszeg nem egyezik, az archívum megsérült" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Nem került kiírásra apport jelentés, mert a hibaüzenet a helyi rendszeren " +"lévő hibát jelez" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Nem került kiírásra apport jelentés, mert a hibaüzenet dpkg I/O hibát jelez" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Ismeretlen a(z) %u TAR fejléctípus, %s tag" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Az adminisztrációs könyvtár (%s) nem zárolható, lehet hogy másik folyamat " +"használja?" + +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "" +"Az adminisztrációs könyvtár (%s) nem zárolható, rendszergazdaként próbálja?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"A dpkg megszakadt, saját kezűleg kell futtatnia a(z) „%s” parancsot a " +"probléma megoldásához. " + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Nincs zárolva" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/it.po b/po/it.po index 9c946d300..4af061d11 100644 --- a/po/it.po +++ b/po/it.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2014-05-31 17:04+0100\n" "Last-Translator: Milo Casagrande <milo@milo.name>\n" "Language-Team: Italian <tp@lists.linux.it>\n" @@ -20,3338 +20,3339 @@ msgstr "" "X-Launchpad-Export-Date: 2012-06-25 19:48+0000\n" "X-Generator: Poedit 1.6.5\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "Il file indice di tipo \"%s\" non è supportato" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "Impossibile leggere %s" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Impossibile passare a %s" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "Impossibile eseguire stat su %s." - -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Progress: [%3i%%]" -msgstr "Avanzamento: [%3i%%]" - -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Esecuzione di dpkg" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Il pacchetto %s versione %s ha una dipendenza non soddisfatta:\n" -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Il sistema di pacchetti \"%s\" non è supportato" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Totale nomi dei pacchetti: " -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Impossibile determinare un tipo di sistema appropriato di pacchetti" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Totale strutture dei pacchetti: " -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Scritti %i record.\n" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Pacchetti normali: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Scritti %i record con %i file mancanti.\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Pacchetti virtuali puri: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Scritti %i record con %i file senza corrispondenze\n" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Pacchetti virtuali singoli: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"Scritti %i record con %i file mancanti e %i file senza corrispondenze\n" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Pacchetti virtuali misti: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "Impossibile trovare il record di autenticazione per %s" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Mancante: " -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "Hash non corrispondente per %s" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Totale versioni distinte: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Impossibile trovare un driver per il metodo %s." +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Totale descrizioni distinte: " -#: apt-pkg/acquire-worker.cc:118 -#, c-format -msgid "Is the package %s installed?" -msgstr "Il pacchetto %s è installato?" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Totale dipendenze: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Il metodo %s non si è avviato correttamente" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Totale relazioni ver/file: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Inserire il disco chiamato \"%s\" nell'unità \"%s\" e premere Invio." +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Totale relazioni desc/file: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "" -"L'elenco dei pacchetti o il file di stato non può essere letto o aperto." +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Totale corrispondenze fornite: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "" -"È consigliato eseguire \"apt-get update\" per correggere questi problemi" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Totale stringhe globalizzate: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Impossibile leggere l'elenco dei sorgenti." +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Totale spazio dipendenza di versione: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Cache dei pacchetti vuota" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Totale spazio inutilizzato: " -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Il file della cache dei pacchetti è danneggiato" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Totale spazio occupato: " -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "La versione del file della cache dei pacchetti è incompatibile" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "Il file dei pacchetti %s non è sincronizzato." -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Il file cache del pacchetto è danneggiato, è troppo piccolo" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Nessun pacchetto trovato" -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Questo APT non supporta il sistema di versione \"%s\"" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "È necessario specificare almeno un modello per la ricerca" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"Il file della cache dei pacchetti è stato generato per un'altra architettura" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Dipende" +"Questo comando è deprecato. Utilizzare \"apt-mark showauto\" al suo posto." -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Pre-dipende" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "Impossibile trovare il pacchetto %s" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Consiglia" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "File dei pacchetti:" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Raccomanda" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" +"La cache non è sincronizzata, impossibile referenziare un file di pacchetti" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Va in conflitto" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Pacchetti con gancio:" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Sostituisce" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(non trovato)" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Rende obsoleto" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Installato: " -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Rompe" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Candidato: " -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Migliora" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(nessuno)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "importante" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Gancio del pacchetto: " -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "richiesto" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Tabella versione:" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standard" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s per %s compilato il %s %s\n" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opzionale" +#: cmdline/apt-cache.cc:1749 +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Uso: apt-cache [OPZIONI] COMANDO\n" +" apt-cache [OPZIONI] showpkg PKG1 [PKG2 ...]\n" +" apt-cache [OPZIONI] showsrc PKG1 [PKG2 ...]\n" +"\n" +"apt-cache è uno strumento di basso livello usato per cercare informazioni \n" +"nei file di cache dei binari di APT\n" +"\n" +"Comandi:\n" +" gencaches - Costruisce sia la cache dei pacchetti sia quella dei " +"sorgenti\n" +" showpkg - Mostra informazioni generali per un singolo pacchetto\n" +" showsrc - Mostra i campi dei sorgenti\n" +" stats - Mostra alcune statistiche di base\n" +" dump - Mostra il file in forma compatta\n" +" dumpavail - Stampa un file \"available\" sullo stdout\n" +" unmet - Mostra le dipendenze non soddisfatte\n" +" search - Cerca nell'elenco dei pacchetti un'espressione regolare\n" +" show - Mostra un campo leggibile per il pacchetto specificato\n" +" depends - Mostra informazioni di dipendenza per un pacchetto\n" +" rdepends - Mostra informazioni di dipendenza all'incontrario per un " +"pacchetto\n" +" pkgnames - Elenca i nomi di tutti i pacchetti nel sistema\n" +" dotty - Genera un grafo dei pacchetti per GraphViz\n" +" xvcg - Genera un grafo dei pacchetti per xvcg\n" +" policy - Mostra le preferenze adottate\n" +"\n" +"Opzioni:\n" +" -h Mostra questo aiuto\n" +" -p=? La cache dei pacchetti\n" +" -s=? La cache dei sorgenti\n" +" -q Disabilita l'indicatore di avanzamento\n" +" -i Mostra solo dipendenze importanti per il comando unmet\n" +" -c=? Legge come configurazione il file specificato\n" +" -o=? Imposta un'opzione di configurazione, come -o dir::cache=/tmp\n" +"Per maggiori informazioni, consultare le pagine di manuale apt-cache(8) e \n" +"apt.conf(5).\n" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Dare un nome a questo disco, tipo \"Debian 5.0.3 Disco 1\"" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Il file indice di tipo \"%s\" non è supportato" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Inserire un disco nell'unità e premere Invio" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Regex compilation error - %s" -msgstr "Errore di compilazione dell'espressione regolare - %s" +msgid "Failed to mount '%s' to '%s'" +msgstr "Mount di \"%s\" su \"%s\" non riuscito" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "La cache ha un sistema di gestione delle versioni incompatibile" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" +"Impossibile rilevare automaticamente un CD-ROM oppure è stato trovato con " +"il\n" +"punto di mount predefinito.\n" +"Provare l'opzione --cdrom per impostare il punto di mount del CD-ROM.\n" +"Per maggiori informazioni sull'autorilevamento e sul punto di mount\n" +"del CD-ROM, consultare \"man apt-cdrom\"." -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Si è verificato un errore nell'elaborare %s (%s%d)" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Ripetere questo processo per il resto dei CD." -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" -"È stato superato il numero di nomi di pacchetti che questo APT può gestire." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argomenti non in coppia" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "È stato superato il numero di versioni che questo APT può gestire." +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"Uso: apt-config [OPZIONI] COMANDO\n" +"\n" +"apt-config è uno strumento per leggere il file di configurazione di APT\n" +"\n" +"Comandi:\n" +" shell - Modalità shell\n" +" dump - Mostra la configurazione\n" +"\n" +"Opzioni\n" +" -h Mostra questo aiuto\n" +" -c=? Legge come configurazione il file specificato\n" +" -o=? Imposta un'opzione di configurazione, come -o dir::cache=/tmp\n" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "È stato superato il numero di descrizioni che questo APT può gestire." +#: cmdline/apt-get.cc:245 +#, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Impossibile trovare un pacchetto per l'architettura \"%s\"" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "È stato superato il numero di dipendenze che questo APT può gestire." +#: cmdline/apt-get.cc:327 +#, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Impossibile trovare un pacchetto \"%s\" con versione \"%s\"" -# (ndt) il primo è il nome del pacchetto, il secondo la versione -#: apt-pkg/pkgcachegen.cc:576 +#: cmdline/apt-get.cc:330 #, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "" -"Il pacchetto %s v.%s non è stato trovato durante l'elaborazione delle " -"dipendenze" +msgid "Can not find a package '%s' with release '%s'" +msgstr "Impossibile trovare un pacchetto \"%s\" con release \"%s\"" -#: apt-pkg/pkgcachegen.cc:1211 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Impossibile eseguire stat sull'elenco dei pacchetti sorgente %s" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Scelto \"%s\" come pacchetto sorgente al posto di \"%s\"\n" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Lettura elenco dei pacchetti" +#: cmdline/apt-get.cc:423 +#, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Impossibile trovare la versione \"%s\" del pacchetto \"%s\"" -# (ndt) non mi convince per niente, ma vediamo cosa salta fuori -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Il file fornisce" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Impossibile trovare il pacchetto %s" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Unable to write to %s" -msgstr "Impossibile scrivere in %s" +msgid "%s set to manually installed.\n" +msgstr "È stato impostato %s per l'installazione manuale.\n" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Errore di I/O nel salvare la cache sorgente" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s impostato automaticamente come installato.\n" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "Invia lo scenario al solver" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" +"Questo comando è deprecato. Utilizzare \"apt-mark auto\" e \"apt-mark manual" +"\" al suo posto." -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "Invia la richiesta al solver" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Errore interno, \"problem resolver\" ha rovinato qualcosa" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "Preparazione alla ricezione della soluzione" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Impossibile bloccare la directory di scaricamento" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "Il solver esterno è terminato senza un errore di messaggio" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "" +"È necessario specificare almeno un pacchetto di cui recuperare il sorgente" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "Esecuzione solver esterno" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "Impossibile trovare un pacchetto sorgente per %s" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "rename() non riuscita: %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Somma hash non corrispondente" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Le dimensioni non corrispondono" - -#: apt-pkg/acquire-item.cc:173 -msgid "Invalid file format" -msgstr "Formato file non valido" - -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:786 #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" -"Impossibile trovare la voce \"%s\" nel file Release (voce in sources.list " -"errata o file danneggiato)" - -#: apt-pkg/acquire-item.cc:1589 -#, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Impossibile trovare la somma hash per \"%s\" nel file Release" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"Non è disponibile alcuna chiave pubblica per i seguenti ID di chiavi:\n" +"Nota: il processo di pacchettizzazione di \"%s\" è mantenuto\n" +"all'interno del sistema di controllo della versione \"%s\" presso:\n" +"%s\n" -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:791 #, c-format msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -"Il file Release per %s è scaduto (non valido dal %s). Gli aggiornamenti per " -"questo repository non verranno applicati." - -#: apt-pkg/acquire-item.cc:1691 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Distribuzione in conflitto: %s (atteso %s ma ottenuto %s)" +"Utilizzare:\n" +"bzr branch %s\n" +"per recuperare gli ultimi (forse non rilasciati) aggiornamenti del " +"pacchetto.\n" -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:843 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Si è verificato un errore nel verificare la firma. Il repository non è " -"aggiornato e verranno usati i file indice precedenti. Errore GPG: %s: %s\n" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Il pacchetto \"%s\" già scaricato viene saltato\n" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "GPG error: %s: %s" -msgstr "Errore GPG: %s: %s" +msgid "Couldn't determine free space in %s" +msgstr "Impossibile determinare lo spazio libero in %s" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:882 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"Impossibile trovare un file per il pacchetto %s. Potrebbe essere necessario " -"sistemare manualmente questo pacchetto (a causa dell'architettura mancante)." +msgid "You don't have enough free space in %s" +msgstr "Lo spazio libero in %s è insufficiente" -#: apt-pkg/acquire-item.cc:1925 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" -"Impossibile trovare una sorgente per scaricare la versione \"%s\" di \"%s\"" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "È necessario recuperare %sB/%sB di sorgenti.\n" -# (ndt) sarebbe da controllare se veramente possono esistere più file indice -#: apt-pkg/acquire-item.cc:1983 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"I file indice del pacchetto sono danneggiati. Manca il campo \"Filename:\" " -"per il pacchetto %s." +msgid "Need to get %sB of source archives.\n" +msgstr "È necessario scaricare %sB di sorgenti.\n" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Il blocco vendor %s non contiene impronte" +msgid "Fetch source %s\n" +msgstr "Recupero sorgente %s\n" -# (ndt) sarebbe da controllare meglio assieme a quella dopo -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, c-format -msgid "List directory %spartial is missing." -msgstr "Manca la directory di liste %spartial." +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Recupero di alcuni archivi non riuscito." -#: apt-pkg/acquire.cc:91 -#, c-format -msgid "Archives directory %spartial is missing." -msgstr "Manca la directory di archivio %spartial." +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Scaricamento completato e in modalità solo scaricamento" -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Unable to lock directory %s" -msgstr "Impossibile bloccare la directory %s" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Estrazione del pacchetto sorgente già estratto in %s saltata\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Scaricamento file %li di %li (%s rimanente)" +msgid "Unpack command '%s' failed.\n" +msgstr "Comando di estrazione \"%s\" non riuscito.\n" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Scaricamento file %li di %li" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Verificare che il pacchetto \"dpkg-dev\" sia installato.\n" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Impossibile recuperare %s %s\n" +msgid "Build command '%s' failed.\n" +msgstr "Comando \"%s\" di generazione non riuscito.\n" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Impossibile scaricare alcuni file di indice: saranno ignorati o verranno " -"usati quelli vecchi." +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Creazione processo figlio non riuscita" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" msgstr "" -"È necessario inserire alcuni URI di tipo \"source\" nel file sources.list" +"È necessario specificare almeno un pacchetto di cui controllare le " +"dipendenze di generazione" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -"Il valore \"%s\" non è valido per APT::Default-Release poiché tale release " -"non è disponibile dalle sorgenti" +"Informazioni sull'architettura non disponibili per %s. Consultare apt." +"conf(5) APT::Architectures per l'impostazione" -#: apt-pkg/policy.cc:422 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "" -"Campo non valido nel file delle preferenze %s, manca l'intestazione \"Package" -"\"" +msgid "Unable to get build-dependency information for %s" +msgstr "Impossibile ottenere informazioni di dipendenza di generazione per %s" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Did not understand pin type %s" -msgstr "Impossibile comprendere il tipo di gancio %s" +msgid "%s has no build depends.\n" +msgstr "%s non ha dipendenze di generazione.\n" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Priorità per il gancio non specificata (o zero)" +#: cmdline/apt-get.cc:1272 +#, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"La dipendenza %s per %s non può essere soddisfatta perché %s non è " +"consentito su pacchetti \"%s\"" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -"Impossibile eseguire immediatamente la configurazione su \"%s\". Per " -"maggiori informazioni, consultare \"man 5 apt.conf\" alla sezione \"APT::" -"Immediate-Configure\" (%d)." +"%s dipendenze per %s non possono essere soddisfatte perché il pacchetto %s " +"non può essere trovato" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Could not configure '%s'. " -msgstr "Impossibile configurare \"%s\". " +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"La dipendenza %s per %s non è stata soddisfatta: il pacchetto installato %s " +"è troppo recente" -#: apt-pkg/packagemanager.cc:583 +#: cmdline/apt-get.cc:1352 #, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" -"L'installazione necessita della rimozione temporanea del pacchetto " -"essenziale %s a causa di un ciclo conflitto/pre-dipendenza. Questa è una " -"situazione critica, ma se si vuole realmente procedere, attivare l'opzione " -"APT::Force-LoopBreak." +"La dipendenza %s per %s non può essere soddisfatta perché la versione " +"candidata del pacchetto %s non può soddisfare i requisiti di versione" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-get.cc:1358 #, c-format -msgid "Line %u too long in source list %s." -msgstr "Riga %u troppo lunga nel file %s." +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"La dipendenza %s per %s non può essere soddisfatta perché il pacchetto %s " +"non ha una versione candidata" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Smontaggio CD-ROM...\n" +#: cmdline/apt-get.cc:1381 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "La dipendenza %s per %s non è stata soddisfatta: %s" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Viene usato il punto di mount del CD-ROM %s\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Le dipendenze di generazione per %s non sono state soddisfatte." -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "In attesa del disco...\n" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Elaborazione delle dipendenze di generazione non riuscita" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Montaggio CD-ROM...\n" +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 +#, c-format +msgid "Changelog for %s (%s)" +msgstr "Changelog per %s (%s)" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identificazione... " +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Moduli supportati:" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Etichette archiviate: %s\n" - -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Analisi del disco per file indice...\n" - -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Trovati %zu indici di pacchetto, %zu indici di sorgente, %zu indici di " -"traduzione e %zu firme\n" - -#: apt-pkg/cdrom.cc:744 +#: cmdline/apt-get.cc:1633 msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"Impossibile trovare alcun file di pacchetto. Questo potrebbe non essere un " -"disco Debian o potrebbe essere l'architettura errata." +"Uso: apt-get [OPZIONI] COMANDO\n" +" apt-get [OPZIONI] install|remove PKG1 [PKG2 ...]\n" +" apt-get [OPZIONI] source PKG1 [PKG2 ...]\n" +"\n" +"apt-get è una semplice interfaccia a riga di comando per scaricare \n" +"e installare pacchetti. I comandi più usati sono update e install.\n" +"\n" +"Comandi:\n" +" update - Scarica l'elenco aggiornato dei pacchetti\n" +" upgrade - Esegue un aggiornamento dei pacchetti installati\n" +" install - Installa nuovi pacchetti (PKG è libc6 non libc6.deb)\n" +" remove - Rimuove i pacchetti\n" +" autoremove - Rimuove automaticamente i pacchetti inutilizzati\n" +" purge - Rimuove i pacchetti e la loro configurazione\n" +" source - Scarica i pacchetti sorgente\n" +" build-dep - Configura le dipendenze di generazione per i pacchetti " +"sorgente\n" +" dist-upgrade - Esegue un avanzamento della distribuzione, consultare apt-" +"get(8)\n" +" dselect-upgrade - Segue le selezioni di dselect\n" +" clean - Elimina i file dei pacchetti scaricati\n" +" autoclean - Elimina i vecchi pacchetti scaricati\n" +" check - Verifica che non ci siano dipendenze insoddisfatte\n" +" changelog - Scarica e visualizza il changelog per il pacchetto indicato\n" +" download - Scarica il pacchetto binario nella directory attuale\n" +"\n" +"Opzioni:\n" +" -h Mostra questo aiuto\n" +" -q Output registrabile, nessun indicatore di avanzamento\n" +" -qq Nessun output eccetto gli errori\n" +" -d Scarica solamente, NON installa o decomprime gli archivi\n" +" -s Nessuna azione, simula i passi in ordine\n" +" -y Assume una risposta affermativa a tutte le domande e non chiede " +"conferma\n" +" -f Tenta di continuare se il controllo di integrità non riesce\n" +" -m Tenta di continuare se gli archivi non sono localizzabili\n" +" -u Mostra anche un elenco dei pacchetti aggiornati\n" +" -b Genera il pacchetto sorgente dopo averlo recuperato\n" +" -V Mostra prolissamente i numeri di versione\n" +" -c=? Legge come configurazione il file specificato\n" +" -o=? Imposta un'opzione di configurazione, es. -o dir::cache=/tmp\n" +"Per maggiori informazioni e opzioni, consultare le pagine di manuale\n" +"apt-get(8), sources.list(5) e apt.conf(5).\n" +" Questo APT ha i poteri della Super Mucca.\n" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Trovata l'etichetta \"%s\"\n" +#: cmdline/apt-helper.cc:35 +msgid "Must specify at least one pair url/filename" +msgstr "È necessario specificare almeno una coppia URL/nome file" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Questo non è un nome valido, riprovare.\n" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "Scaricamento non riuscito" -#: apt-pkg/cdrom.cc:817 -#, c-format +#: cmdline/apt-helper.cc:66 msgid "" -"This disc is called: \n" -"'%s'\n" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Questo disco è chiamato: \n" -"\"%s\"\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Copia elenco pacchetti..." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Scrittura nuovo elenco sorgenti\n" - -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Le voci dell'elenco sorgenti per questo disco sono:\n" +"Uso: apt-helper [OPZIONI] COMANDO\n" +" apt-helper [OPZIONI] download-file uri percorso\n" +"\n" +"apt-helper è un programma d'aiuto interno per apt\n" +"\n" +"Comandi:\n" +" download-file Scarica l'URI fornito in percorso\n" +"\n" +" Questo APT ha super poteri.\n" -#: apt-pkg/algorithms.cc:265 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"Il pacchetto %s deve essere reinstallato, ma non è possibile trovarne un " -"archivio." - -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Errore, pkgProblemResolver::Resolve ha generato delle interruzioni. Questo " -"potrebbe essere causato da pacchetti bloccati." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "" -"Impossibile correggere i problemi, ci sono pacchetti danneggiati bloccati." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Generazione albero delle dipendenze" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Versioni candidate" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Generazione delle dipendenze" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Lettura informazioni sullo stato" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s non può essere segnato perché non è installato.\n" -#: apt-pkg/depcache.cc:250 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "Failed to open StateFile %s" -msgstr "Apertura del file di stato %s non riuscita" +msgid "%s was already set to manually installed.\n" +msgstr "%s è già stato impostato come installato manualmente.\n" -#: apt-pkg/depcache.cc:256 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Scrittura del file temporaneo di stato %s non riuscita" +msgid "%s was already set to automatically installed.\n" +msgstr "%s è già stato impostato come installato automaticamente.\n" -#: apt-pkg/tagfile.cc:140 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Impossibile analizzare il file di pacchetto %s (1)" +msgid "%s was already set on hold.\n" +msgstr "%s è già stato impostato come bloccato.\n" -#: apt-pkg/tagfile.cc:237 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Impossibile analizzare il file di pacchetto %s (2)" +msgid "%s was already not hold.\n" +msgstr "%s era già non bloccato.\n" -# (ndt) dovrebbe essere inteso il file Release -#: apt-pkg/cacheset.cc:489 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Release \"%s\" per \"%s\" non trovato." +msgid "Waited for %s but it wasn't there" +msgstr "In attesa di %s ma non era presente" -# (ndt) dovrebbe essere inteso il Version -#: apt-pkg/cacheset.cc:492 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Version \"%s\" per \"%s\" non trovato" +msgid "%s set on hold.\n" +msgstr "%s impostato come bloccato.\n" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "Unable to locate package %s" -msgstr "Impossibile trovare il pacchetto %s" +msgid "Canceled hold on %s.\n" +msgstr "Blocco su %s annullato.\n" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Impossibile trovare il task \"%s\"" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "Esecuzione di dpkg non riuscita. È stato lanciato come root?" -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" +#: cmdline/apt-mark.cc:392 +msgid "" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -"Impossibile trovare alcun pacchetto tramite l'espressione regolare \"%s\"" - -#: apt-pkg/cacheset.cc:615 -#, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Impossibile trovare alcun pacchetto tramite il glob \"%s\"" +"Uso: apt-mark [OPZIONI] {auto|manual} PKG1 [PKG2 ...]\n" +"\n" +"apt-mark è una semplice interfaccia a riga di comando per segnalare i " +"pacchetti\n" +"come installati manualmente o automaticamente. Può anche elencare le " +"segnalazioni.\n" +"\n" +"Comandi:\n" +" auto Segna i pacchetti forniti come installati automaticamente\n" +" manual Segna i pacchetti forniti come installati manualmente\n" +" hold Segna un pacchetto come bloccato a una vecchia versione\n" +" unhold Sblocca un pacchetto bloccato a una vecchia versione\n" +" showauto Stampa l'elenco dei pacchetti installati automaticamente\n" +" showmanual Stampa l'elenco dei pacchetti installati manualmente\n" +" showhold Stampa l'elenco dei pacchetti bloccati\n" +"\n" +"Opzioni:\n" +" -h Mostra questo aiuto\n" +" -q Output registrabile, nessun indicatore di avanzamento\n" +" -qq Nessun output eccetto gli errori\n" +" -s Nessuna azione, stampa solamente cosa verrebbe fatto\n" +" -f Legge/Scrivere la segnalazione nel file fornito\n" +" -c=? Legge come configurazione il file specificato\n" +" -o=? Imposta un'opzione di configurazione, es. -o dir::cache=/tm\n" +"Per maggiori informazioni, consultare le pagine di manuale apt-mark(8) e\n" +"apt.conf(5)." -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -"Impossibile selezionare le versioni dal pacchetto \"%s\" poiché è virtuale" +"Uso: apt [OPZIONI] COMANDO\n" +"\n" +"Interfaccia a riga di comando per apt.\n" +"Comandi di base:\n" +" list Elenca i pacchetti in base al nome\n" +" search Cerca tra le descrizioni dei pacchetti\n" +" show Mostra dettagli di un pacchetto\n" +"\n" +" update Aggiorna l'elenco dei pacchetti disponibili\n" +"\n" +" install Installa pacchetti\n" +" remove Rimuove pacchetti\n" +"\n" +" upgrade Esegue l'avanzamento di versione del sistema installando e\n" +" aggiornando i pacchetti\n" +" full-upgrade Esegue l'avanzamento di versione del sistema rimuovendo,\n" +" installando e aggiornando i pacchetti\n" +"\n" +" edit-sources Modifica il file sulle informazioni delle sorgenti\n" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: methods/cdrom.cc:203 #, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Impossibile leggere il database del CD-ROM %s" + +#: methods/cdrom.cc:212 msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" msgstr "" -"Impossibile selezionare la versione installata o la candidata dal pacchetto " -"\"%s\" poiché non sono presenti" +"Usare apt-cdrom per far riconoscere questo CD-ROM da APT. apt-get update non " +"può essere usato per aggiungere nuovi CD-ROM" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"Impossibile selezionare la versione più recente dal pacchetto \"%s\" poiché " -"è virtuale" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD-ROM sbagliato" -#: apt-pkg/cacheset.cc:655 +#: methods/cdrom.cc:249 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" -"Impossibile selezionare la versione candidata dal pacchetto %s poiché non ha " -"alcun candidato" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Impossibile smontare il CD-ROM in %s, potrebbe essere ancora in uso." -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" -"Impossibile selezionare la versione installata dal pacchetto %s poiché non è " -"installato" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disco non trovato" -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "Impossibile analizzare il file Release %s" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "File non trovato" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "Nessuna sezione nel file Release %s" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Esecuzione di stat non riuscita" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Nessuna voce Hash nel file Release %s" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Impostazione della data di modifica non riuscita" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Voce \"Valid-Until\" nel file Release %s non valida" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI non valido, gli URI locali non devono iniziare con //" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Voce \"Date\" nel file Release %s non valida" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Accesso in corso" -#: apt-pkg/sourcelist.cc:127 -#, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "La stanza %u nel file delle sorgenti %s non è corretta (analisi URI)" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Impossibile determinare il nome del nodo" + +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Impossibile determinare il nome locale" -#: apt-pkg/sourcelist.cc:170 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"La riga %lu nel file delle sorgenti %s non è corretta ([opzione] non " -"analizzabile)" +msgid "The server refused the connection and said: %s" +msgstr "Il server ha rifiutato la connessione e riporta: %s" -#: apt-pkg/sourcelist.cc:173 +#: methods/ftp.cc:225 #, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "" -"La riga %lu nel file delle sorgenti %s non è corretta ([opzione] troppo " -"corta)" +msgid "USER failed, server said: %s" +msgstr "USER non riuscito, il server riporta: %s" -#: apt-pkg/sourcelist.cc:184 +#: methods/ftp.cc:232 #, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "" -"La riga %lu nel file delle sorgenti %s non è corretta ([%s] non è " -"un'assegnazione)" +msgid "PASS failed, server said: %s" +msgstr "PASS non riuscito, il server riporta: %s" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -"La riga %lu nel file delle sorgenti %s non è corretta ([%s] non ha una " -"chiave)" +"È stato specificato un server proxy, ma nessuno script di accesso: Acquire::" +"ftp::ProxyLogin è vuoto." -#: apt-pkg/sourcelist.cc:193 +#: methods/ftp.cc:280 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgid "Login script command '%s' failed, server said: %s" msgstr "" -"La riga %lu nel file delle sorgenti %s non è corretta ([%s] la chiave %s non " -"ha un valore)" +"Comando dello script di accesso \"%s\" non riuscito, il server riporta: %s" -#: apt-pkg/sourcelist.cc:206 +#: methods/ftp.cc:306 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "La riga %lu nel file %s non è corretta (URI)" +msgid "TYPE failed, server said: %s" +msgstr "TYPE non riuscito, il server riporta: %s" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "La riga %lu nel file %s non è corretta (dist)" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Connessione scaduta" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "La riga %lu nel file %s non è corretta (URI parse)" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Il server ha chiuso la connessione" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "La riga %lu nel file %s non è corretta (absolute dist)" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Errore di lettura" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "La riga %lu nel file %s non è corretta (dist parse)" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Una risposta ha superato le dimensioni del buffer." -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Apertura di %s" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protocollo danneggiato" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "La riga %u nel file %s non è corretta (type)" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Errore di scrittura" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Tipo \"%s\" non riconosciuto alla riga %u nel file delle sorgenti %s" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Impossibile creare un socket" -#: apt-pkg/sourcelist.cc:416 -#, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" msgstr "" -"Tipo \"%s\" non riconosciuto nella stanza %u nel file delle sorgenti %s" +"Impossibile connettersi al socket dati, tempo esaurito per la connessione" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Installazione di %s" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Non riuscito" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Configurazione di %s" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Impossibile connettersi alla socket passiva." -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Rimozione di %s" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "Impossibile ottenere un socket in ascolto con getaddrinfo()" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "Rimozione completa di %s" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Impossibile eseguire bind() su un socket" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "Notata la sparizione di %s" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Impossibile eseguire listen() su un socket" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Esecuzione comando di post installazione %s" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Impossibile determinare il nome del socket" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Directory \"%s\" mancante" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Impossibile inviare il comando PORT" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#: methods/ftp.cc:802 #, c-format -msgid "Could not open file '%s'" -msgstr "Impossibile aprire il file \"%s\"" +msgid "Unknown address family %u (AF_*)" +msgstr "Famiglia di indirizzamento %u (AF_*) sconosciuta" -#: apt-pkg/deb/dpkgpm.cc:989 +#: methods/ftp.cc:811 #, c-format -msgid "Preparing %s" -msgstr "Preparazione di %s" +msgid "EPRT failed, server said: %s" +msgstr "EPRT non riuscito, il server riporta: %s" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Estrazione di %s" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Connessione al socket dati terminata" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Preparazione alla configurazione di %s" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Impossibile accettare connessioni" -#: apt-pkg/deb/dpkgpm.cc:997 +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Si è verificato un problema nel creare l'hash del file" + +#: methods/ftp.cc:890 #, c-format -msgid "Installed %s" -msgstr "Pacchetto %s installato" +msgid "Unable to fetch file, server said '%s'" +msgstr "Impossibile recuperare il file, il server riporta: \"%s\"" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Socket dati terminato" + +#: methods/ftp.cc:935 #, c-format -msgid "Preparing for removal of %s" -msgstr "Preparazione alla rimozione di %s" +msgid "Data transfer failed, server said '%s'" +msgstr "Trasferimento dati non riuscito, il server riporta: \"%s\"" -#: apt-pkg/deb/dpkgpm.cc:1004 +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Interrogazione" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Impossibile invocare " + +#: methods/connect.cc:76 #, c-format -msgid "Removed %s" -msgstr "Pacchetto %s rimosso" +msgid "Connecting to %s (%s)" +msgstr "Connessione a %s (%s)" -#: apt-pkg/deb/dpkgpm.cc:1009 +#: methods/connect.cc:87 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Preparazione alla rimozione completa di %s" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: methods/connect.cc:94 #, c-format -msgid "Completely removed %s" -msgstr "Pacchetto %s rimosso completamente" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Impossibile creare un socket per %s (f=%u t=%u p=%u)" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "ioctl(TIOCGWINSZ) non riuscita" +#: methods/connect.cc:100 +#, c-format +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Impossibile iniziare la connessione a %s:%s (%s)." -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#: methods/connect.cc:108 #, c-format -msgid "Can not write log (%s)" -msgstr "Impossibile scrivere il registro (%s)" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Impossibile connettersi a %s:%s (%s), connessione terminata" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "È /dev/pts montato?" +#: methods/connect.cc:126 +#, c-format +msgid "Could not connect to %s:%s (%s)." +msgstr "Impossibile connettersi a %s:%s (%s)." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "stdout è un terminale?" +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 +#, c-format +msgid "Connecting to %s" +msgstr "Connessione a %s" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "In attesa di %s ma non era presente" - -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "L'operazione è stata interrotta prima di essere completata" +msgid "Could not resolve '%s'" +msgstr "Impossibile risolvere \"%s\"" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" -"Segnalazione apport non scritta poiché è stato raggiunto il valore massimo " -"di MaxReports" +#: methods/connect.cc:205 +#, c-format +msgid "Temporary failure resolving '%s'" +msgstr "Risoluzione di \"%s\" temporaneamente non riuscita" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "Problemi con le dipendenze - Viene lasciato non configurato" +#: methods/connect.cc:209 +#, c-format +msgid "System error resolving '%s:%s'" +msgstr "Errore di sistema nella risoluzione di \"%s:%s\"" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +#: methods/connect.cc:211 +#, c-format +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" -"Segnalazione apport non scritta poiché il messaggio di errore indica la " -"presenza di un fallimento precedente." +"Si è verificato qualcosa di anormale nella risoluzione di \"%s:%s\" (%i - %s)" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Segnalazione apport non scritta poiché il messaggio di errore indica un " -"errore per disco pieno." +#: methods/connect.cc:258 +#, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Impossibile connettersi a %s:%s:" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: methods/gpgv.cc:168 msgid "" -"No apport report written because the error message indicates a out of memory " -"error" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Segnalazione apport non scritta poiché il messaggio di errore indica un " -"errore di memoria esaurita." +"Errore interno: firma corretta, ma non è possibile determinare l'impronta " +"della chiave." -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" -"Segnalazione apport non scritta poiché il messaggio di errore indica un " -"errore nel sistema locale." +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "È stata trovata almeno una firma non valida." -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"Segnalazione apport non scritta poiché il messaggio di errore indica un " -"errore di I/O di dpkg." +"Impossibile eseguire \"gpgv\" per verificare la firma (forse gpgv non è " +"installato)" -#: apt-pkg/deb/debsystem.cc:91 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"Impossibile acquisire il blocco sulla directory di amministrazione (%s). Un " -"altro processo potrebbe tenerla occupata." +"Il file con la firma in chiaro non è valido, ottenuto \"%s\" (la rete " +"richiede autenticazione?)" -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "" -"Impossibile acquisire il blocco sulla directory di amministrazione (%s). È " -"necessario essere root." +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Errore sconosciuto durante l'esecuzione di gpgv" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Le seguenti firme non erano valide:\n" + +#: methods/gpgv.cc:231 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -"dpkg è stato interrotto. È necessario eseguire \"%s\" per correggere il " -"problema. " +"Le seguenti firme non sono state verificate perché la chiave pubblica non è " +"disponibile:\n" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Non bloccato" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "File vuoti non possono essere archivi validi" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lig %lih %limin %lis" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Errore nello scrivere sul file" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%lih %limin %lis" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Errore nel leggere dal server. Il lato remoto ha chiuso la connessione" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%limin %lis" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Errore nel leggere dal server" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%lis" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Errore nello scrivere su file" -#: apt-pkg/contrib/strutl.cc:1243 -#, c-format -msgid "Selection %s not found" -msgstr "Selezione %s non trovata" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Select non riuscita" -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Blocco disabilitato per il file di blocco in sola lettura %s" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Connessione terminata" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Impossibile aprire il file di blocco %s" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Errore nello scrivere sul file di output" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Blocco disabilitato per il file di blocco %s montato via nfs" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "In attesa degli header" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Impossibile impostare il blocco %s" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Riga header non corretta" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" -"L'elenco dei file non può essere creato poiché \"%s\" non è una directory" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Il server HTTP ha inviato un header di risposta non valido" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" -"Viene ignorato \"%s\" nella directory \"%s\" poiché non è un file regolare" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "Il server HTTP ha inviato un header Content-Length non valido" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" -"Viene ignorato il file \"%s\" nella directory \"%s\" poiché non ha " -"un'estensione" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "Il server HTTP ha inviato un header Content-Range non valido" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Questo server HTTP ha un supporto del range non corretto" + +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Formato della data sconosciuto" + +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Header dati non corretto" + +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Connessione non riuscita" + +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Errore interno" + +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "Ordinamento" + +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" -"Viene ignorato il file \"%s\" nella directory \"%s\" poiché ha un'estensione " -"non valida" +"Errore interno, InstallPackages è stato chiamato con un pacchetto " +"danneggiato." -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Il sottoprocesso %s ha ricevuto un segmentation fault." +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "" +"I pacchetti devono essere rimossi, ma l'azione di rimozione è disabilitata." -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "Il sottoprocesso %s ha ricevuto il segnale %u." +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Errore interno, l'ordinamento non è stato terminato" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Il sottoprocesso %s ha restituito un codice d'errore (%u)" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Le dimensioni non corrispondono. Inviare un'email a: apt@packages.debian.org" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Il sottoprocesso %s è uscito inaspettatamente" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "È necessario scaricare %sB/%sB di archivi.\n" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Errore di scrittura" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 +#, c-format +msgid "Need to get %sB of archives.\n" +msgstr "È necessario scaricare %sB di archivi.\n" -#: apt-pkg/contrib/fileutl.cc:913 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "Problem closing the gzip file %s" -msgstr "Si è verificato un problema nel chiudere il file gzip %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Dopo quest'operazione, verranno occupati %sB di spazio su disco.\n" -#: apt-pkg/contrib/fileutl.cc:1101 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "Could not open file %s" -msgstr "Impossibile aprire il file %s" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Dopo quest'operazione, verranno liberati %sB di spazio su disco.\n" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#: apt-private/private-install.cc:200 #, c-format -msgid "Could not open file descriptor %d" -msgstr "Impossibile aprire il descrittore del file %d" +msgid "You don't have enough free space in %s." +msgstr "Spazio libero in %s insufficiente." -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Creazione di un sottoprocesso IPC non riuscita" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Si sono verificati dei problemi ed è stata usata -y senza --force-yes" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Esecuzione non riuscita del compressore " +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "" +"È stata specificata la modalità \"Trivial Only\", ma questa non è " +"un'operazione banale." -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Errore di lettura" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Sì, esegui come da richiesta." -#: apt-pkg/contrib/fileutl.cc:1514 +#: apt-private/private-install.cc:222 #, c-format -msgid "read, still have %llu to read but none left" -msgstr "lettura, ancora %llu da leggere, ma non è stato trovato nulla" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Si sta per compiere un'azione potenzialmente pericolosa.\n" +"Per continuare scrivere la frase \"%s\"\n" +" ?] " -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "scrittura, ancora %llu da scrivere, ma non è possibile" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Interrotto." -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Si è verificato un problema nel chiudere il file %s" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Continuare?" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Si è verificato un problema nel rinominare il file %s in %s" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Scaricamento di alcuni file non riuscito" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "Si è verificato un problema nell'eseguire l'unlink del file %s" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"Impossibile scaricare alcuni pacchetti. Potrebbe essere utile eseguire \"apt-" +"get update\" o provare l'opzione \"--fix-missing\"." -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Si è verificato un problema nel sincronizzare il file" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing su supporti estraibili non è ancora supportato" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Errore" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Impossibile correggere i pacchetti mancanti." -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Fatto" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Interruzione dell'installazione." -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "..." +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"Il seguente pacchetto è sparito dal sistema poiché\n" +"tutti i file sono stati sovrascritti da altri pacchetti:" +msgstr[1] "" +"I seguenti pacchetti sono spariti dal sistema poiché\n" +"tutti i file sono stati sovrascritti da altri pacchetti:" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... %u%%" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Nota: questo viene svolto automaticamente e volutamente da dpkg." -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Impossibile eseguire mmap su un file vuoto" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "" +"Non si è autorizzati a rimuovere nulla, impossibile avviare AutoRemover" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Impossibile duplicare il descrittore del file %i" +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" +"Sembra che AutoRemover abbia rovinato qualcosa e questo\n" +"non doveva accadere. Segnalare un bug riguardo apt." -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Impossibile creare mmap di %llu byte" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Le seguenti informazioni possono aiutare a risolvere la situazione:" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Impossibile chiudere mmap" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Errore interno, AutoRemover ha rovinato qualche cosa" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Impossibile sincronizzare mmap" +#: apt-private/private-install.cc:513 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "" +"Il seguente pacchetto è stato installato automaticamente e non è più " +"richiesto:" +msgstr[1] "" +"I seguenti pacchetti sono stati installati automaticamente e non sono più " +"richiesti:" -#: apt-pkg/contrib/mmap.cc:290 +#: apt-private/private-install.cc:517 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Impossibile eseguire mmap di %lu byte" +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "" +"%lu pacchetto è stato installato automaticamente e non è più richiesto.\n" +msgstr[1] "" +"%lu pacchetti sono stati installati automaticamente e non sono più " +"richiesti.\n" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Troncamento del file non riuscito" +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Usare \"apt-get autoremove\" per rimuoverlo." +msgstr[1] "Usare \"apt-get autoremove\" per rimuoverli." -#: apt-pkg/contrib/mmap.cc:341 -#, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -"MMap dinamica esaurita. Aumentare la dimensione di APT::Cache-Start. Il " -"valore attuale è: %lu (man 5 apt.conf)." +"È utile eseguire \"apt-get -f install\" per correggere questi problemi:" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format +#: apt-private/private-install.cc:614 msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"Impossibile incrementare la dimensione della MMap poiché il limite di %lu " -"byte è stato raggiunto." +"Dipendenze non soddisfatte. Provare \"apt-get -f install\" senza pacchetti " +"(o specificare una soluzione)." -# (ndt) lunghetta... -#: apt-pkg/contrib/mmap.cc:449 +#: apt-private/private-install.cc:638 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." msgstr "" -"Impossibile incrementare la dimensione della MMap poiché il " -"ridimensionamento automatico è stato disabilitato dall'utente." - -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Impossibile eseguire stat sul punto di mount %s" +"Alcuni pacchetti non possono essere installati. Questo può voler dire\n" +"che è stata richiesta una situazione impossibile oppure, se si sta\n" +"usando una distribuzione in sviluppo, che alcuni pacchetti richiesti\n" +"non sono ancora stati creati o sono stati rimossi da Incoming." -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Esecuzione di stat sul CD-ROM non riuscita" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Pacchetti danneggiati" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Tipo di abbreviazione non riconosciuto: \"%c\"" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "I seguenti pacchetti saranno inoltre installati:" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Apertura file di configurazione %s" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Pacchetti suggeriti:" -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Errore di sintassi %s:%u: il blocco inizia senza nome" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Pacchetti raccomandati:" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-private/private-install.cc:825 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Errore di sintassi %s:%u: tag non corretto" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "" +"Viene saltato %s poiché è già installato e l'aggiornamento non è impostato.\n" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-private/private-install.cc:829 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Errore di sintassi %s:%u: caratteri extra dopo il valore" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"Viene saltato %s poiché non è installato e sono richiesti solo gli " +"aggiornamenti.\n" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-private/private-install.cc:841 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" -"Errore di sintassi %s:%u: le direttive possono essere fatte solo al livello " -"più alto" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "La reinstallazione di %s non è possibile, non può essere scaricato.\n" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-private/private-install.cc:846 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Errore di sintassi %s:%u: troppe inclusioni annidate" +msgid "%s is already the newest version.\n" +msgstr "%s è già alla versione più recente.\n" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-private/private-install.cc:894 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Errore di sintassi %s:%u: incluso da qui" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Versione \"%s\" (%s) selezionata per \"%s\"\n" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-private/private-install.cc:899 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Errore di sintassi %s:%u: direttiva \"%s\" non supportata" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Versione \"%s\" (%s) selezionata per \"%s\" per via di \"%s\"\n" -# (ndt) sarebbe da controllare meglio... -#: apt-pkg/contrib/configuration.cc:900 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" msgstr "" -"Errore di sintassi %s:%u: la direttiva clear richiede un albero di opzioni " -"come argomento" +"Il pacchetto \"%s\" non è installato e quindi non è stato rimosso: si " +"intendeva \"%s\"?\n" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-private/private-install.cc:947 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Errore di sintassi %s:%u: caratteri extra alla fine del file" +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Il pacchetto \"%s\" non è installato e quindi non è stato rimosso\n" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, c-format -msgid "No keyring installed in %s." -msgstr "Nessun portachiavi installato in %s." +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "Elencazione" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-private/private-list.cc:164 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Opzione a riga di comando \"%c\" [da %s] sconosciuta." +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "C'è %i versione aggiuntiva: usare \"-a\" per visualizzarla" +msgstr[1] "Ci sono %i versioni aggiuntive: usare \"-a\" per visualizzarle" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "Opzione a riga di comando %s non comprensibile" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Correzione delle dipendenze..." -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "Opzione a riga di comando %s non booleana" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " non riuscita." -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "L'opzione %s richiede un argomento." +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Impossibile correggere le dipendenze" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "" -"Opzione %s: la specifica di configurazione dell'oggetto deve avere un " -"=<valore>." +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Impossibile minimizzare l'insieme da aggiornare" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "L'opzione %s richiede un argomento intero, non \"%s\"" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Fatto" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Opzione \"%s\" troppo lunga" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "È utile eseguire \"apt-get -f install\" per correggere ciò." -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Il valore %s non è comprensibile, provare \"true\" o \"false\"." +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Dipendenze non trovate. Riprovare usando -f." -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "Operazione %s non valida" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "sconosciuto" -#: cmdline/apt-cache.cc:149 +#: apt-private/private-output.cc:234 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Il pacchetto %s versione %s ha una dipendenza non soddisfatta:\n" - -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Totale nomi dei pacchetti: " +msgid "[installed,upgradable to: %s]" +msgstr "[installato, aggiornabile a: %s]" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Totale strutture dei pacchetti: " +#: apt-private/private-output.cc:238 +msgid "[installed,local]" +msgstr "[installato, locale]" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Pacchetti normali: " +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "[installato, auto-rimovibile]" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Pacchetti virtuali puri: " +#: apt-private/private-output.cc:243 +msgid "[installed,automatic]" +msgstr "[installato, automatico]" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Pacchetti virtuali singoli: " +#: apt-private/private-output.cc:245 +msgid "[installed]" +msgstr "[installato]" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Pacchetti virtuali misti: " +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "[aggiornabile da: %s]" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Mancante: " +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "[configurazione residua]" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Totale versioni distinte: " +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "ma la versione %s è installata" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Totale descrizioni distinte: " +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "ma la versione %s sta per essere installata" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Totale dipendenze: " +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "ma non è installabile" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Totale relazioni ver/file: " +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "ma è un pacchetto virtuale" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Totale relazioni desc/file: " +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "ma non è installato" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Totale corrispondenze fornite: " +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "ma non sta per essere installato" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Totale stringhe globalizzate: " +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " oppure" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Totale spazio dipendenza di versione: " +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "I seguenti pacchetti hanno dipendenze non soddisfatte:" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Totale spazio inutilizzato: " +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "I seguenti pacchetti NUOVI saranno installati:" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Totale spazio occupato: " +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "I seguenti pacchetti saranno RIMOSSI:" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Il file dei pacchetti %s non è sincronizzato." +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "I seguenti pacchetti sono stati mantenuti alla versione attuale:" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Nessun pacchetto trovato" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "I seguenti pacchetti saranno aggiornati:" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "È necessario specificare almeno un modello per la ricerca" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "I seguenti pacchetti saranno RETROCESSI:" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" -"Questo comando è deprecato. Utilizzare \"apt-mark showauto\" al suo posto." +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "I seguenti pacchetti bloccati saranno cambiati:" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "File dei pacchetti:" +#: apt-private/private-output.cc:668 +#, c-format +msgid "%s (due to %s) " +msgstr "%s (a causa di %s) " -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"La cache non è sincronizzata, impossibile referenziare un file di pacchetti" +"ATTENZIONE: i seguenti pacchetti essenziali stanno per essere rimossi.\n" +"Questo non dovrebbe essere fatto a meno che non si sappia esattamente cosa " +"si sta facendo." -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Pacchetti con gancio:" +#: apt-private/private-output.cc:707 +#, c-format +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu aggiornati, %lu installati, " -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(non trovato)" +#: apt-private/private-output.cc:711 +#, c-format +msgid "%lu reinstalled, " +msgstr "%lu reinstallati, " -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Installato: " +#: apt-private/private-output.cc:713 +#, c-format +msgid "%lu downgraded, " +msgstr "%lu retrocessi, " -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidato: " +#: apt-private/private-output.cc:715 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu da rimuovere e %lu non aggiornati.\n" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(nessuno)" +#: apt-private/private-output.cc:719 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "%lu non completamente installati o rimossi.\n" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Gancio del pacchetto: " +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[S/n]" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabella versione:" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[s/N]" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s per %s compilato il %s %s\n" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "S" -#: cmdline/apt-cache.cc:1749 -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" -msgstr "" -"Uso: apt-cache [OPZIONI] COMANDO\n" -" apt-cache [OPZIONI] showpkg PKG1 [PKG2 ...]\n" -" apt-cache [OPZIONI] showsrc PKG1 [PKG2 ...]\n" -"\n" -"apt-cache è uno strumento di basso livello usato per cercare informazioni \n" -"nei file di cache dei binari di APT\n" -"\n" -"Comandi:\n" -" gencaches - Costruisce sia la cache dei pacchetti sia quella dei " -"sorgenti\n" -" showpkg - Mostra informazioni generali per un singolo pacchetto\n" -" showsrc - Mostra i campi dei sorgenti\n" -" stats - Mostra alcune statistiche di base\n" -" dump - Mostra il file in forma compatta\n" -" dumpavail - Stampa un file \"available\" sullo stdout\n" -" unmet - Mostra le dipendenze non soddisfatte\n" -" search - Cerca nell'elenco dei pacchetti un'espressione regolare\n" -" show - Mostra un campo leggibile per il pacchetto specificato\n" -" depends - Mostra informazioni di dipendenza per un pacchetto\n" -" rdepends - Mostra informazioni di dipendenza all'incontrario per un " -"pacchetto\n" -" pkgnames - Elenca i nomi di tutti i pacchetti nel sistema\n" -" dotty - Genera un grafo dei pacchetti per GraphViz\n" -" xvcg - Genera un grafo dei pacchetti per xvcg\n" -" policy - Mostra le preferenze adottate\n" -"\n" -"Opzioni:\n" -" -h Mostra questo aiuto\n" -" -p=? La cache dei pacchetti\n" -" -s=? La cache dei sorgenti\n" -" -q Disabilita l'indicatore di avanzamento\n" -" -i Mostra solo dipendenze importanti per il comando unmet\n" -" -c=? Legge come configurazione il file specificato\n" -" -o=? Imposta un'opzione di configurazione, come -o dir::cache=/tmp\n" -"Per maggiori informazioni, consultare le pagine di manuale apt-cache(8) e \n" -"apt.conf(5).\n" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Dare un nome a questo disco, tipo \"Debian 5.0.3 Disco 1\"" +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Errore di compilazione dell'espressione regolare - %s" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Inserire un disco nell'unità e premere Invio" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Il comando update non accetta argomenti" -#: cmdline/apt-cdrom.cc:139 +#: apt-private/private-update.cc:90 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Mount di \"%s\" su \"%s\" non riuscito" - -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" -"Impossibile rilevare automaticamente un CD-ROM oppure è stato trovato con " -"il\n" -"punto di mount predefinito.\n" -"Provare l'opzione --cdrom per impostare il punto di mount del CD-ROM.\n" -"Per maggiori informazioni sull'autorilevamento e sul punto di mount\n" -"del CD-ROM, consultare \"man apt-cdrom\"." +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Ripetere questo processo per il resto dei CD." +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argomenti non in coppia" +#: apt-private/private-show.cc:156 +#, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "C'è %i record aggiuntivo: usare \"-a\" per visualizzarlo" +msgstr[1] "Ci sono %i record aggiuntivi: usare \"-a\" per visualizzarli" -#: cmdline/apt-config.cc:89 +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "non un vero pacchetto (virtuale)" + +#: apt-private/private-main.cc:32 msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -"Uso: apt-config [OPZIONI] COMANDO\n" -"\n" -"apt-config è uno strumento per leggere il file di configurazione di APT\n" -"\n" -"Comandi:\n" -" shell - Modalità shell\n" -" dump - Mostra la configurazione\n" -"\n" -"Opzioni\n" -" -h Mostra questo aiuto\n" -" -c=? Legge come configurazione il file specificato\n" -" -o=? Imposta un'opzione di configurazione, come -o dir::cache=/tmp\n" +"Nota: questa è solo una simulazione.\n" +" apt-get necessita dei privilegi di root per la normale esecuzione.\n" +" Inoltre, il meccanismo di blocco non è attivato e non è quindi\n" +" utile dare importanza a tutto ciò per una situazione reale." -#: cmdline/apt-get.cc:245 -#, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Impossibile trovare un pacchetto per l'architettura \"%s\"" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "ATTENZIONE: i seguenti pacchetti non possono essere autenticati." -#: cmdline/apt-get.cc:327 -#, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Impossibile trovare un pacchetto \"%s\" con versione \"%s\"" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Avviso di autenticazione disabilitato.\n" -#: cmdline/apt-get.cc:330 -#, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Impossibile trovare un pacchetto \"%s\" con release \"%s\"" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Alcuni pacchetti non possono essere autenticati" -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Scelto \"%s\" come pacchetto sorgente al posto di \"%s\"\n" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Installare questi pacchetti senza verificarli?" -#: cmdline/apt-get.cc:423 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Impossibile trovare la versione \"%s\" del pacchetto \"%s\"" +msgid "Failed to fetch %s %s\n" +msgstr "Impossibile recuperare %s %s\n" -#: cmdline/apt-get.cc:454 +#: apt-private/private-sources.cc:58 #, c-format -msgid "Couldn't find package %s" -msgstr "Impossibile trovare il pacchetto %s" +msgid "Failed to parse %s. Edit again? " +msgstr "Analisi di %s non riuscita: modificare nuovamente?" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-private/private-sources.cc:70 #, c-format -msgid "%s set to manually installed.\n" -msgstr "È stato impostato %s per l'installazione manuale.\n" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" +"Il proprio file \"%s\" è stato modificato: eseguire \"apt-get update\"." -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s impostato automaticamente come installato.\n" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "Ricerca sul testo" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"Questo comando è deprecato. Utilizzare \"apt-mark auto\" e \"apt-mark manual" -"\" al suo posto." +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Calcolo dell'aggiornamento... " -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Errore interno, \"problem resolver\" ha rovinato qualcosa" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Eseguito" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Impossibile bloccare la directory di scaricamento" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Trovato " -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "" -"È necessario specificare almeno un pacchetto di cui recuperare il sorgente" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Scaricamento di:" + +# (ndt) questa non so cosa voglia dire +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Err " -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Impossibile trovare un pacchetto sorgente per %s" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Recuperati %sB in %s (%sB/s)\n" -#: cmdline/apt-get.cc:786 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" -"Nota: il processo di pacchettizzazione di \"%s\" è mantenuto\n" -"all'interno del sistema di controllo della versione \"%s\" presso:\n" -"%s\n" +msgid " [Working]" +msgstr " [In lavorazione]" -#: cmdline/apt-get.cc:791 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"Utilizzare:\n" -"bzr branch %s\n" -"per recuperare gli ultimi (forse non rilasciati) aggiornamenti del " -"pacchetto.\n" +"Cambio disco: inserire il disco chiamato\n" +" \"%s\"\n" +"nell'unità \"%s\" e premere Invio\n" -#: cmdline/apt-get.cc:843 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Il pacchetto \"%s\" già scaricato viene saltato\n" +msgid "Unable to read %s" +msgstr "Impossibile leggere %s" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Impossibile determinare lo spazio libero in %s" +msgid "Unable to change to %s" +msgstr "Impossibile passare a %s" -#: cmdline/apt-get.cc:882 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Lo spazio libero in %s è insufficiente" +msgid "No mirror file '%s' found " +msgstr "Nessun file mirror \"%s\" trovato " -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "È necessario recuperare %sB/%sB di sorgenti.\n" +msgid "Can not read mirror file '%s'" +msgstr "Impossibile leggere il file mirror \"%s\"" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 +#: methods/mirror.cc:315 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "È necessario scaricare %sB di sorgenti.\n" +msgid "No entry found in mirror file '%s'" +msgstr "Nessuna voce trovata nel file mirror \"%s\"" -#: cmdline/apt-get.cc:902 +#: methods/mirror.cc:445 #, c-format -msgid "Fetch source %s\n" -msgstr "Recupero sorgente %s\n" +msgid "[Mirror: %s]" +msgstr "[Mirror: %s]" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Recupero di alcuni archivi non riuscito." +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Creazione di una pipe IPC verso il sottoprocesso non riuscita" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Connessione chiusa prematuramente" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Impostazione predefinita errata." + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Premere Invio per continuare." + +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Eliminare tutti i file .deb precedentemente scaricati?" + +# Note to translators: The following four messages belong together. It doesn't +# matter where sentences start, but it has to fit in just these four lines, and +# at only 80 characters per line, if possible. +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "" +"Si sono verificati alcuni errori nell'estrazione. Verrà tentata la " +"configurazione" + +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "dei pacchetti installati. Questo potrebbe generare errori duplicati" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Scaricamento completato e in modalità solo scaricamento" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "o errori causati da dipendenze mancanti. Questo non causa problemi," -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Estrazione del pacchetto sorgente già estratto in %s saltata\n" +#: dselect/install:105 +msgid "" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "" +"gli errori precedenti sono importanti. Correggerli e rieseguire " +"l'installazione [I]" -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Comando di estrazione \"%s\" non riuscito.\n" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Unione delle informazioni disponibili" -#: cmdline/apt-get.cc:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Verificare che il pacchetto \"dpkg-dev\" sia installato.\n" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode invocata su un nodo ancora collegato" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "Comando \"%s\" di generazione non riuscito.\n" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Localizzazione dell'elemento hash non riuscita." -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Creazione processo figlio non riuscita" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Allocazione della deviazione non riuscita" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "" -"È necessario specificare almeno un pacchetto di cui controllare le " -"dipendenze di generazione" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Errore interno in AddDiversion" -#: cmdline/apt-get.cc:1054 +#: apt-inst/filelist.cc:477 #, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" -"Informazioni sull'architettura non disponibili per %s. Consultare apt." -"conf(5) APT::Architectures per l'impostazione" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Tentativo di sovrascrivere una deviazione, %s -> %s e %s/%s" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Impossibile ottenere informazioni di dipendenza di generazione per %s" +msgid "Double add of diversion %s -> %s" +msgstr "Doppia aggiunta di deviazione %s -> %s" -#: cmdline/apt-get.cc:1101 +#: apt-inst/filelist.cc:549 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s non ha dipendenze di generazione.\n" +msgid "Duplicate conf file %s/%s" +msgstr "File di configurazione duplicato %s/%s" -#: cmdline/apt-get.cc:1271 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"La dipendenza %s per %s non può essere soddisfatta perché %s non è " -"consentito su pacchetti \"%s\"" +msgid "The path %s is too long" +msgstr "Il percorso %s è troppo lungo" -#: cmdline/apt-get.cc:1289 +#: apt-inst/extract.cc:132 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" -"%s dipendenze per %s non possono essere soddisfatte perché il pacchetto %s " -"non può essere trovato" +msgid "Unpacking %s more than once" +msgstr "Estrazione di %s eseguita più di una volta" -#: cmdline/apt-get.cc:1312 +#: apt-inst/extract.cc:142 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"La dipendenza %s per %s non è stata soddisfatta: il pacchetto installato %s " -"è troppo recente" +msgid "The directory %s is diverted" +msgstr "La directory %s è deviata" -#: cmdline/apt-get.cc:1351 +#: apt-inst/extract.cc:152 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +msgid "The package is trying to write to the diversion target %s/%s" msgstr "" -"La dipendenza %s per %s non può essere soddisfatta perché la versione " -"candidata del pacchetto %s non può soddisfare i requisiti di versione" +"Il pacchetto sta cercando di scrivere nell'obiettivo di deviazione %s/%s" -#: cmdline/apt-get.cc:1357 -#, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "" -"La dipendenza %s per %s non può essere soddisfatta perché il pacchetto %s " -"non ha una versione candidata" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Il percorso della deviazione è troppo lungo" -#: cmdline/apt-get.cc:1380 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "La dipendenza %s per %s non è stata soddisfatta: %s" +msgid "Failed to stat %s" +msgstr "Impossibile eseguire stat su %s" -#: cmdline/apt-get.cc:1395 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Le dipendenze di generazione per %s non sono state soddisfatte." - -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Elaborazione delle dipendenze di generazione non riuscita" +msgid "Failed to rename %s to %s" +msgstr "Rinomina di %s in %s non riuscita" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-inst/extract.cc:249 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Changelog per %s (%s)" - -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Moduli supportati:" - -#: cmdline/apt-get.cc:1632 -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -msgstr "" -"Uso: apt-get [OPZIONI] COMANDO\n" -" apt-get [OPZIONI] install|remove PKG1 [PKG2 ...]\n" -" apt-get [OPZIONI] source PKG1 [PKG2 ...]\n" -"\n" -"apt-get è una semplice interfaccia a riga di comando per scaricare \n" -"e installare pacchetti. I comandi più usati sono update e install.\n" -"\n" -"Comandi:\n" -" update - Scarica l'elenco aggiornato dei pacchetti\n" -" upgrade - Esegue un aggiornamento dei pacchetti installati\n" -" install - Installa nuovi pacchetti (PKG è libc6 non libc6.deb)\n" -" remove - Rimuove i pacchetti\n" -" autoremove - Rimuove automaticamente i pacchetti inutilizzati\n" -" purge - Rimuove i pacchetti e la loro configurazione\n" -" source - Scarica i pacchetti sorgente\n" -" build-dep - Configura le dipendenze di generazione per i pacchetti " -"sorgente\n" -" dist-upgrade - Esegue un avanzamento della distribuzione, consultare apt-" -"get(8)\n" -" dselect-upgrade - Segue le selezioni di dselect\n" -" clean - Elimina i file dei pacchetti scaricati\n" -" autoclean - Elimina i vecchi pacchetti scaricati\n" -" check - Verifica che non ci siano dipendenze insoddisfatte\n" -" changelog - Scarica e visualizza il changelog per il pacchetto indicato\n" -" download - Scarica il pacchetto binario nella directory attuale\n" -"\n" -"Opzioni:\n" -" -h Mostra questo aiuto\n" -" -q Output registrabile, nessun indicatore di avanzamento\n" -" -qq Nessun output eccetto gli errori\n" -" -d Scarica solamente, NON installa o decomprime gli archivi\n" -" -s Nessuna azione, simula i passi in ordine\n" -" -y Assume una risposta affermativa a tutte le domande e non chiede " -"conferma\n" -" -f Tenta di continuare se il controllo di integrità non riesce\n" -" -m Tenta di continuare se gli archivi non sono localizzabili\n" -" -u Mostra anche un elenco dei pacchetti aggiornati\n" -" -b Genera il pacchetto sorgente dopo averlo recuperato\n" -" -V Mostra prolissamente i numeri di versione\n" -" -c=? Legge come configurazione il file specificato\n" -" -o=? Imposta un'opzione di configurazione, es. -o dir::cache=/tmp\n" -"Per maggiori informazioni e opzioni, consultare le pagine di manuale\n" -"apt-get(8), sources.list(5) e apt.conf(5).\n" -" Questo APT ha i poteri della Super Mucca.\n" - -#: cmdline/apt-helper.cc:35 -msgid "Must specify at least one pair url/filename" -msgstr "È necessario specificare almeno una coppia URL/nome file" +msgid "The directory %s is being replaced by a non-directory" +msgstr "La directory %s sta per essere sostituita da una non-directory" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "Scaricamento non riuscito" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Localizzazione del nodo nel suo hash bucket non riuscita" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" -"Uso: apt-helper [OPZIONI] COMANDO\n" -" apt-helper [OPZIONI] download-file uri percorso\n" -"\n" -"apt-helper è un programma d'aiuto interno per apt\n" -"\n" -"Comandi:\n" -" download-file Scarica l'URI fornito in percorso\n" -"\n" -" Questo APT ha super poteri.\n" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Il percorso è troppo lungo" -#: cmdline/apt-mark.cc:68 +#: apt-inst/extract.cc:421 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s non può essere segnato perché non è installato.\n" +msgid "Overwrite package match with no version for %s" +msgstr "Il pacchetto sovrascritto corrisponde senza versione per %s" -#: cmdline/apt-mark.cc:74 +#: apt-inst/extract.cc:438 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s è già stato impostato come installato manualmente.\n" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Il file %s/%s sovrascrive quello nel pacchetto %s" -#: cmdline/apt-mark.cc:76 +#: apt-inst/extract.cc:498 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s è già stato impostato come installato automaticamente.\n" +msgid "Unable to stat %s" +msgstr "Impossibile eseguire stat su %s" -#: cmdline/apt-mark.cc:241 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s è già stato impostato come bloccato.\n" +msgid "Failed to write file %s" +msgstr "Scrittura del file %s non riuscita" -#: cmdline/apt-mark.cc:243 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s era già non bloccato.\n" +msgid "Failed to close file %s" +msgstr "Chiusura del file %s non riuscita" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "%s set on hold.\n" -msgstr "%s impostato come bloccato.\n" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Questo non è un archivio DEB valido: membro \"%s\" mancante" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Blocco su %s annullato.\n" +msgid "Internal error, could not locate member %s" +msgstr "Errore interno, impossibile trovare il membro %s" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "Esecuzione di dpkg non riuscita. È stato lanciato come root?" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "File \"control\" non analizzabile" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" -"Uso: apt-mark [OPZIONI] {auto|manual} PKG1 [PKG2 ...]\n" -"\n" -"apt-mark è una semplice interfaccia a riga di comando per segnalare i " -"pacchetti\n" -"come installati manualmente o automaticamente. Può anche elencare le " -"segnalazioni.\n" -"\n" -"Comandi:\n" -" auto Segna i pacchetti forniti come installati automaticamente\n" -" manual Segna i pacchetti forniti come installati manualmente\n" -" hold Segna un pacchetto come bloccato a una vecchia versione\n" -" unhold Sblocca un pacchetto bloccato a una vecchia versione\n" -" showauto Stampa l'elenco dei pacchetti installati automaticamente\n" -" showmanual Stampa l'elenco dei pacchetti installati manualmente\n" -" showhold Stampa l'elenco dei pacchetti bloccati\n" -"\n" -"Opzioni:\n" -" -h Mostra questo aiuto\n" -" -q Output registrabile, nessun indicatore di avanzamento\n" -" -qq Nessun output eccetto gli errori\n" -" -s Nessuna azione, stampa solamente cosa verrebbe fatto\n" -" -f Legge/Scrivere la segnalazione nel file fornito\n" -" -c=? Legge come configurazione il file specificato\n" -" -o=? Imposta un'opzione di configurazione, es. -o dir::cache=/tm\n" -"Per maggiori informazioni, consultare le pagine di manuale apt-mark(8) e\n" -"apt.conf(5)." +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Firma dell'archivio non valida" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" -"Uso: apt [OPZIONI] COMANDO\n" -"\n" -"Interfaccia a riga di comando per apt.\n" -"Comandi di base:\n" -" list Elenca i pacchetti in base al nome\n" -" search Cerca tra le descrizioni dei pacchetti\n" -" show Mostra dettagli di un pacchetto\n" -"\n" -" update Aggiorna l'elenco dei pacchetti disponibili\n" -"\n" -" install Installa pacchetti\n" -" remove Rimuove pacchetti\n" -"\n" -" upgrade Esegue l'avanzamento di versione del sistema installando e\n" -" aggiornando i pacchetti\n" -" full-upgrade Esegue l'avanzamento di versione del sistema rimuovendo,\n" -" installando e aggiornando i pacchetti\n" -"\n" -" edit-sources Modifica il file sulle informazioni delle sorgenti\n" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Errore nel leggere l'intestazione member dell'archivio" -#: methods/cdrom.cc:203 +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Impossibile leggere il database del CD-ROM %s" +msgid "Invalid archive member header %s" +msgstr "Intestazione member dell'archivio %s non valida" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"Usare apt-cdrom per far riconoscere questo CD-ROM da APT. apt-get update non " -"può essere usato per aggiungere nuovi CD-ROM" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Intestazione member dell'archivio non valida" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD-ROM sbagliato" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "L'archivio è troppo piccolo" -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Impossibile smontare il CD-ROM in %s, potrebbe essere ancora in uso." +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Lettura delle intestazioni dell'archivio non riuscita" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disco non trovato" +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Creazione delle pipe non riuscita" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "File non trovato" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Esecuzione di gzip non riuscita " -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Esecuzione di stat non riuscita" +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Archivio danneggiato" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Impostazione della data di modifica non riuscita" +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Checksum di tar non riuscito, archivio danneggiato" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI non valido, gli URI locali non devono iniziare con //" +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Intestazione TAR di tipo %u sconosciuta, member %s" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Accesso in corso" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "Avanzamento: [%3i%%]" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Impossibile determinare il nome del nodo" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Esecuzione di dpkg" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Impossibile determinare il nome locale" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Il sistema di pacchetti \"%s\" non è supportato" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Impossibile determinare un tipo di sistema appropriato di pacchetti" + +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Il server ha rifiutato la connessione e riporta: %s" +msgid "Wrote %i records.\n" +msgstr "Scritti %i record.\n" -#: methods/ftp.cc:225 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "Scritti %i record con %i file mancanti.\n" + +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Scritti %i record con %i file senza corrispondenze\n" + +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" +"Scritti %i record con %i file mancanti e %i file senza corrispondenze\n" + +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER non riuscito, il server riporta: %s" +msgid "Can't find authentication record for: %s" +msgstr "Impossibile trovare il record di autenticazione per %s" -#: methods/ftp.cc:232 +#: apt-pkg/indexcopy.cc:521 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS non riuscito, il server riporta: %s" +msgid "Hash mismatch for: %s" +msgstr "Hash non corrispondente per %s" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." msgstr "" -"È stato specificato un server proxy, ma nessuno script di accesso: Acquire::" -"ftp::ProxyLogin è vuoto." +"L'elenco dei pacchetti o il file di stato non può essere letto o aperto." -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" msgstr "" -"Comando dello script di accesso \"%s\" non riuscito, il server riporta: %s" +"È consigliato eseguire \"apt-get update\" per correggere questi problemi" -#: methods/ftp.cc:306 -#, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE non riuscito, il server riporta: %s" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Impossibile leggere l'elenco dei sorgenti." -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Connessione scaduta" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Cache dei pacchetti vuota" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Il server ha chiuso la connessione" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Il file della cache dei pacchetti è danneggiato" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Una risposta ha superato le dimensioni del buffer." +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "La versione del file della cache dei pacchetti è incompatibile" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protocollo danneggiato" +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "Il file cache del pacchetto è danneggiato, è troppo piccolo" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Impossibile creare un socket" +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "Questo APT non supporta il sistema di versione \"%s\"" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" msgstr "" -"Impossibile connettersi al socket dati, tempo esaurito per la connessione" +"Il file della cache dei pacchetti è stato generato per un'altra architettura" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Non riuscito" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Dipende" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Impossibile connettersi alla socket passiva." +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Pre-dipende" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "Impossibile ottenere un socket in ascolto con getaddrinfo()" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Consiglia" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Impossibile eseguire bind() su un socket" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Raccomanda" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Impossibile eseguire listen() su un socket" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Va in conflitto" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Impossibile determinare il nome del socket" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Sostituisce" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Impossibile inviare il comando PORT" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Rende obsoleto" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Famiglia di indirizzamento %u (AF_*) sconosciuta" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Rompe" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT non riuscito, il server riporta: %s" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Migliora" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Connessione al socket dati terminata" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "importante" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Impossibile accettare connessioni" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "richiesto" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Si è verificato un problema nel creare l'hash del file" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standard" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Impossibile recuperare il file, il server riporta: \"%s\"" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "opzionale" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Socket dati terminato" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" -#: methods/ftp.cc:935 +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Trasferimento dati non riuscito, il server riporta: \"%s\"" - -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Interrogazione" - -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Impossibile invocare " +msgid "The method driver %s could not be found." +msgstr "Impossibile trovare un driver per il metodo %s." -#: methods/connect.cc:76 +#: apt-pkg/acquire-worker.cc:118 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Connessione a %s (%s)" +msgid "Is the package %s installed?" +msgstr "Il pacchetto %s è installato?" -#: methods/connect.cc:87 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Method %s did not start correctly" +msgstr "Il metodo %s non si è avviato correttamente" -#: methods/connect.cc:94 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Impossibile creare un socket per %s (f=%u t=%u p=%u)" +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Inserire il disco chiamato \"%s\" nell'unità \"%s\" e premere Invio." -#: methods/connect.cc:100 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Impossibile iniziare la connessione a %s:%s (%s)." +msgid "Index file type '%s' is not supported" +msgstr "Il file indice di tipo \"%s\" non è supportato" -#: methods/connect.cc:108 -#, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Impossibile connettersi a %s:%s (%s), connessione terminata" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Generazione albero delle dipendenze" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Impossibile connettersi a %s:%s (%s)." +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Versioni candidate" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 -#, c-format -msgid "Connecting to %s" -msgstr "Connessione a %s" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Generazione delle dipendenze" -#: methods/connect.cc:180 methods/connect.cc:199 -#, c-format -msgid "Could not resolve '%s'" -msgstr "Impossibile risolvere \"%s\"" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Lettura informazioni sullo stato" -#: methods/connect.cc:205 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Risoluzione di \"%s\" temporaneamente non riuscita" +msgid "Failed to open StateFile %s" +msgstr "Apertura del file di stato %s non riuscita" -#: methods/connect.cc:209 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "System error resolving '%s:%s'" -msgstr "Errore di sistema nella risoluzione di \"%s:%s\"" +msgid "Failed to write temporary StateFile %s" +msgstr "Scrittura del file temporaneo di stato %s non riuscita" -#: methods/connect.cc:211 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "" -"Si è verificato qualcosa di anormale nella risoluzione di \"%s:%s\" (%i - %s)" +msgid "rename failed, %s (%s -> %s)." +msgstr "rename() non riuscita: %s (%s -> %s)." + +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Somma hash non corrispondente" + +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Le dimensioni non corrispondono" + +#: apt-pkg/acquire-item.cc:173 +msgid "Invalid file format" +msgstr "Formato file non valido" -#: methods/connect.cc:258 +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Impossibile connettersi a %s:%s:" - -#: methods/gpgv.cc:168 msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"Errore interno: firma corretta, ma non è possibile determinare l'impronta " -"della chiave." +"Impossibile trovare la voce \"%s\" nel file Release (voce in sources.list " +"errata o file danneggiato)" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "È stata trovata almeno una firma non valida." +#: apt-pkg/acquire-item.cc:1589 +#, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Impossibile trovare la somma hash per \"%s\" nel file Release" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" msgstr "" -"Impossibile eseguire \"gpgv\" per verificare la firma (forse gpgv non è " -"installato)" +"Non è disponibile alcuna chiave pubblica per i seguenti ID di chiavi:\n" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1669 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -"Il file con la firma in chiaro non è valido, ottenuto \"%s\" (la rete " -"richiede autenticazione?)" - -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Errore sconosciuto durante l'esecuzione di gpgv" +"Il file Release per %s è scaduto (non valido dal %s). Gli aggiornamenti per " +"questo repository non verranno applicati." -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Le seguenti firme non erano valide:\n" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Distribuzione in conflitto: %s (atteso %s ma ottenuto %s)" -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1721 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -"Le seguenti firme non sono state verificate perché la chiave pubblica non è " -"disponibile:\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "File vuoti non possono essere archivi validi" - -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Errore nello scrivere sul file" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Errore nel leggere dal server. Il lato remoto ha chiuso la connessione" +"Si è verificato un errore nel verificare la firma. Il repository non è " +"aggiornato e verranno usati i file indice precedenti. Errore GPG: %s: %s\n" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Errore nel leggere dal server" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "Errore GPG: %s: %s" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Errore nello scrivere su file" +#: apt-pkg/acquire-item.cc:1859 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"Impossibile trovare un file per il pacchetto %s. Potrebbe essere necessario " +"sistemare manualmente questo pacchetto (a causa dell'architettura mancante)." -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Select non riuscita" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" +"Impossibile trovare una sorgente per scaricare la versione \"%s\" di \"%s\"" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Connessione terminata" +# (ndt) sarebbe da controllare se veramente possono esistere più file indice +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"I file indice del pacchetto sono danneggiati. Manca il campo \"Filename:\" " +"per il pacchetto %s." -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Errore nello scrivere sul file di output" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Il file indice di tipo \"%s\" non è supportato" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "In attesa degli header" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Impossibile eseguire stat su %s." -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Riga header non corretta" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "La cache ha un sistema di gestione delle versioni incompatibile" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Il server HTTP ha inviato un header di risposta non valido" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Si è verificato un errore nell'elaborare %s (%s%d)" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Il server HTTP ha inviato un header Content-Length non valido" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "" +"È stato superato il numero di nomi di pacchetti che questo APT può gestire." -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Il server HTTP ha inviato un header Content-Range non valido" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "È stato superato il numero di versioni che questo APT può gestire." -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Questo server HTTP ha un supporto del range non corretto" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "È stato superato il numero di descrizioni che questo APT può gestire." -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Formato della data sconosciuto" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "È stato superato il numero di dipendenze che questo APT può gestire." -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Header dati non corretto" +# (ndt) il primo è il nome del pacchetto, il secondo la versione +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "" +"Il pacchetto %s v.%s non è stato trovato durante l'elaborazione delle " +"dipendenze" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Connessione non riuscita" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Impossibile eseguire stat sull'elenco dei pacchetti sorgente %s" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Errore interno" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Lettura elenco dei pacchetti" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Calcolo dell'aggiornamento... " +# (ndt) non mi convince per niente, ma vediamo cosa salta fuori +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Il file fornisce" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Eseguito" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Impossibile scrivere in %s" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "Ordinamento" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Errore di I/O nel salvare la cache sorgente" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "Elencazione" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Il blocco vendor %s non contiene impronte" -#: apt-private/private-list.cc:164 +# (ndt) sarebbe da controllare meglio assieme a quella dopo +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "C'è %i versione aggiuntiva: usare \"-a\" per visualizzarla" -msgstr[1] "Ci sono %i versioni aggiuntive: usare \"-a\" per visualizzarle" +msgid "List directory %spartial is missing." +msgstr "Manca la directory di liste %spartial." -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Correzione delle dipendenze..." +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Manca la directory di archivio %spartial." -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " non riuscita." +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "Impossibile bloccare la directory %s" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Impossibile correggere le dipendenze" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Scaricamento file %li di %li (%s rimanente)" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Impossibile minimizzare l'insieme da aggiornare" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Scaricamento file %li di %li" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Fatto" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"Impossibile scaricare alcuni file di indice: saranno ignorati o verranno " +"usati quelli vecchi." -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "È utile eseguire \"apt-get -f install\" per correggere ciò." +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "" +"È necessario inserire alcuni URI di tipo \"source\" nel file sources.list" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dipendenze non trovate. Riprovare usando -f." +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" +"Il valore \"%s\" non è valido per APT::Default-Release poiché tale release " +"non è disponibile dalle sorgenti" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "sconosciuto" +#: apt-pkg/policy.cc:422 +#, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "" +"Campo non valido nel file delle preferenze %s, manca l'intestazione \"Package" +"\"" -#: apt-private/private-output.cc:234 +#: apt-pkg/policy.cc:444 #, c-format -msgid "[installed,upgradable to: %s]" -msgstr "[installato, aggiornabile a: %s]" +msgid "Did not understand pin type %s" +msgstr "Impossibile comprendere il tipo di gancio %s" -#: apt-private/private-output.cc:238 -msgid "[installed,local]" -msgstr "[installato, locale]" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Priorità per il gancio non specificata (o zero)" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "[installato, auto-rimovibile]" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" +"Impossibile eseguire immediatamente la configurazione su \"%s\". Per " +"maggiori informazioni, consultare \"man 5 apt.conf\" alla sezione \"APT::" +"Immediate-Configure\" (%d)." -#: apt-private/private-output.cc:243 -msgid "[installed,automatic]" -msgstr "[installato, automatico]" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Impossibile configurare \"%s\". " -#: apt-private/private-output.cc:245 -msgid "[installed]" -msgstr "[installato]" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"L'installazione necessita della rimozione temporanea del pacchetto " +"essenziale %s a causa di un ciclo conflitto/pre-dipendenza. Questa è una " +"situazione critica, ma se si vuole realmente procedere, attivare l'opzione " +"APT::Force-LoopBreak." -#: apt-private/private-output.cc:249 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "[upgradable from: %s]" -msgstr "[aggiornabile da: %s]" +msgid "Line %u too long in source list %s." +msgstr "Riga %u troppo lunga nel file %s." -#: apt-private/private-output.cc:253 -msgid "[residual-config]" -msgstr "[configurazione residua]" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Smontaggio CD-ROM...\n" -#: apt-private/private-output.cc:435 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "but %s is installed" -msgstr "ma la versione %s è installata" +msgid "Using CD-ROM mount point %s\n" +msgstr "Viene usato il punto di mount del CD-ROM %s\n" -#: apt-private/private-output.cc:437 -#, c-format -msgid "but %s is to be installed" -msgstr "ma la versione %s sta per essere installata" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "In attesa del disco...\n" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "ma non è installabile" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Montaggio CD-ROM...\n" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "ma è un pacchetto virtuale" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identificazione... " -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "ma non è installato" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Etichette archiviate: %s\n" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "ma non sta per essere installato" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Analisi del disco per file indice...\n" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " oppure" +#: apt-pkg/cdrom.cc:734 +#, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" +"Trovati %zu indici di pacchetto, %zu indici di sorgente, %zu indici di " +"traduzione e %zu firme\n" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "I seguenti pacchetti hanno dipendenze non soddisfatte:" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" +"Impossibile trovare alcun file di pacchetto. Questo potrebbe non essere un " +"disco Debian o potrebbe essere l'architettura errata." -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "I seguenti pacchetti NUOVI saranno installati:" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "Trovata l'etichetta \"%s\"\n" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "I seguenti pacchetti saranno RIMOSSI:" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Questo non è un nome valido, riprovare.\n" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "I seguenti pacchetti sono stati mantenuti alla versione attuale:" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Questo disco è chiamato: \n" +"\"%s\"\n" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "I seguenti pacchetti saranno aggiornati:" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Copia elenco pacchetti..." -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "I seguenti pacchetti saranno RETROCESSI:" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Scrittura nuovo elenco sorgenti\n" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "I seguenti pacchetti bloccati saranno cambiati:" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Le voci dell'elenco sorgenti per questo disco sono:\n" -#: apt-private/private-output.cc:668 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "%s (due to %s) " -msgstr "%s (a causa di %s) " +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"Il pacchetto %s deve essere reinstallato, ma non è possibile trovarne un " +"archivio." -#: apt-private/private-output.cc:676 +#: apt-pkg/algorithms.cc:1086 msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -"ATTENZIONE: i seguenti pacchetti essenziali stanno per essere rimossi.\n" -"Questo non dovrebbe essere fatto a meno che non si sappia esattamente cosa " -"si sta facendo." +"Errore, pkgProblemResolver::Resolve ha generato delle interruzioni. Questo " +"potrebbe essere causato da pacchetti bloccati." -#: apt-private/private-output.cc:707 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu aggiornati, %lu installati, " +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "" +"Impossibile correggere i problemi, ci sono pacchetti danneggiati bloccati." -#: apt-private/private-output.cc:711 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinstallati, " +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Invia lo scenario al solver" -#: apt-private/private-output.cc:713 -#, c-format -msgid "%lu downgraded, " -msgstr "%lu retrocessi, " +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Invia la richiesta al solver" + +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Preparazione alla ricezione della soluzione" + +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "Il solver esterno è terminato senza un errore di messaggio" + +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Esecuzione solver esterno" -#: apt-private/private-output.cc:715 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu da rimuovere e %lu non aggiornati.\n" +msgid "Unable to parse package file %s (1)" +msgstr "Impossibile analizzare il file di pacchetto %s (1)" -#: apt-private/private-output.cc:719 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu non completamente installati o rimossi.\n" +msgid "Unable to parse package file %s (2)" +msgstr "Impossibile analizzare il file di pacchetto %s (2)" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[S/n]" +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Impossibile analizzare il file Release %s" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[s/N]" +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "Nessuna sezione nel file Release %s" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "S" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Nessuna voce Hash nel file Release %s" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "N" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Voce \"Valid-Until\" nel file Release %s non valida" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Il comando update non accetta argomenti" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Voce \"Date\" nel file Release %s non valida" -#: apt-private/private-update.cc:90 +#: apt-pkg/sourcelist.cc:127 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "La stanza %u nel file delle sorgenti %s non è corretta (analisi URI)" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" +"La riga %lu nel file delle sorgenti %s non è corretta ([opzione] non " +"analizzabile)" -#: apt-private/private-show.cc:156 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "C'è %i record aggiuntivo: usare \"-a\" per visualizzarlo" -msgstr[1] "Ci sono %i record aggiuntivi: usare \"-a\" per visualizzarli" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "" +"La riga %lu nel file delle sorgenti %s non è corretta ([opzione] troppo " +"corta)" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "non un vero pacchetto (virtuale)" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "" +"La riga %lu nel file delle sorgenti %s non è corretta ([%s] non è " +"un'assegnazione)" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" -"Errore interno, InstallPackages è stato chiamato con un pacchetto " -"danneggiato." +"La riga %lu nel file delle sorgenti %s non è corretta ([%s] non ha una " +"chiave)" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -"I pacchetti devono essere rimossi, ma l'azione di rimozione è disabilitata." +"La riga %lu nel file delle sorgenti %s non è corretta ([%s] la chiave %s non " +"ha un valore)" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Errore interno, l'ordinamento non è stato terminato" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "La riga %lu nel file %s non è corretta (URI)" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Le dimensioni non corrispondono. Inviare un'email a: apt@packages.debian.org" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "La riga %lu nel file %s non è corretta (dist)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "È necessario scaricare %sB/%sB di archivi.\n" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "La riga %lu nel file %s non è corretta (URI parse)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "È necessario scaricare %sB di archivi.\n" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "La riga %lu nel file %s non è corretta (absolute dist)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Dopo quest'operazione, verranno occupati %sB di spazio su disco.\n" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "La riga %lu nel file %s non è corretta (dist parse)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Dopo quest'operazione, verranno liberati %sB di spazio su disco.\n" +msgid "Opening %s" +msgstr "Apertura di %s" -#: apt-private/private-install.cc:200 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Spazio libero in %s insufficiente." +msgid "Malformed line %u in source list %s (type)" +msgstr "La riga %u nel file %s non è corretta (type)" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Si sono verificati dei problemi ed è stata usata -y senza --force-yes" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Tipo \"%s\" non riconosciuto alla riga %u nel file delle sorgenti %s" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." +#: apt-pkg/sourcelist.cc:416 +#, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" msgstr "" -"È stata specificata la modalità \"Trivial Only\", ma questa non è " -"un'operazione banale." +"Tipo \"%s\" non riconosciuto nella stanza %u nel file delle sorgenti %s" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Sì, esegui come da richiesta." +# (ndt) dovrebbe essere inteso il file Release +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Release \"%s\" per \"%s\" non trovato." -#: apt-private/private-install.cc:222 +# (ndt) dovrebbe essere inteso il Version +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Si sta per compiere un'azione potenzialmente pericolosa.\n" -"Per continuare scrivere la frase \"%s\"\n" -" ?] " +msgid "Version '%s' for '%s' was not found" +msgstr "Version \"%s\" per \"%s\" non trovato" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Interrotto." +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Impossibile trovare il task \"%s\"" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Continuare?" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "" +"Impossibile trovare alcun pacchetto tramite l'espressione regolare \"%s\"" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Scaricamento di alcuni file non riuscito" +#: apt-pkg/cacheset.cc:615 +#, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Impossibile trovare alcun pacchetto tramite il glob \"%s\"" -#: apt-private/private-install.cc:320 +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" +"Impossibile selezionare le versioni dal pacchetto \"%s\" poiché è virtuale" + +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Impossibile scaricare alcuni pacchetti. Potrebbe essere utile eseguire \"apt-" -"get update\" o provare l'opzione \"--fix-missing\"." +"Impossibile selezionare la versione installata o la candidata dal pacchetto " +"\"%s\" poiché non sono presenti" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing su supporti estraibili non è ancora supportato" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"Impossibile selezionare la versione più recente dal pacchetto \"%s\" poiché " +"è virtuale" + +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" +"Impossibile selezionare la versione candidata dal pacchetto %s poiché non ha " +"alcun candidato" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Impossibile correggere i pacchetti mancanti." +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"Impossibile selezionare la versione installata dal pacchetto %s poiché non è " +"installato" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Interruzione dell'installazione." +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%lig %lih %limin %lis" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -"Il seguente pacchetto è sparito dal sistema poiché\n" -"tutti i file sono stati sovrascritti da altri pacchetti:" -msgstr[1] "" -"I seguenti pacchetti sono spariti dal sistema poiché\n" -"tutti i file sono stati sovrascritti da altri pacchetti:" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%lih %limin %lis" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Nota: questo viene svolto automaticamente e volutamente da dpkg." +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" -"Non si è autorizzati a rimuovere nulla, impossibile avviare AutoRemover" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Sembra che AutoRemover abbia rovinato qualcosa e questo\n" -"non doveva accadere. Segnalare un bug riguardo apt." +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "Selezione %s non trovata" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "Le seguenti informazioni possono aiutare a risolvere la situazione:" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Blocco disabilitato per il file di blocco in sola lettura %s" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Errore interno, AutoRemover ha rovinato qualche cosa" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Impossibile aprire il file di blocco %s" -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "" -"Il seguente pacchetto è stato installato automaticamente e non è più " -"richiesto:" -msgstr[1] "" -"I seguenti pacchetti sono stati installati automaticamente e non sono più " -"richiesti:" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Blocco disabilitato per il file di blocco %s montato via nfs" -#: apt-private/private-install.cc:517 +#: apt-pkg/contrib/fileutl.cc:223 #, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "" -"%lu pacchetto è stato installato automaticamente e non è più richiesto.\n" -msgstr[1] "" -"%lu pacchetti sono stati installati automaticamente e non sono più " -"richiesti.\n" +msgid "Could not get lock %s" +msgstr "Impossibile impostare il blocco %s" -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Usare \"apt-get autoremove\" per rimuoverlo." -msgstr[1] "Usare \"apt-get autoremove\" per rimuoverli." +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" +"L'elenco dei file non può essere creato poiché \"%s\" non è una directory" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -"È utile eseguire \"apt-get -f install\" per correggere questi problemi:" +"Viene ignorato \"%s\" nella directory \"%s\" poiché non è un file regolare" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -"Dipendenze non soddisfatte. Provare \"apt-get -f install\" senza pacchetti " -"(o specificare una soluzione)." +"Viene ignorato il file \"%s\" nella directory \"%s\" poiché non ha " +"un'estensione" -#: apt-private/private-install.cc:638 +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"Alcuni pacchetti non possono essere installati. Questo può voler dire\n" -"che è stata richiesta una situazione impossibile oppure, se si sta\n" -"usando una distribuzione in sviluppo, che alcuni pacchetti richiesti\n" -"non sono ancora stati creati o sono stati rimossi da Incoming." - -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Pacchetti danneggiati" - -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "I seguenti pacchetti saranno inoltre installati:" - -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Pacchetti suggeriti:" +"Viene ignorato il file \"%s\" nella directory \"%s\" poiché ha un'estensione " +"non valida" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Pacchetti raccomandati:" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Il sottoprocesso %s ha ricevuto un segmentation fault." -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:826 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "" -"Viene saltato %s poiché è già installato e l'aggiornamento non è impostato.\n" +msgid "Sub-process %s received signal %u." +msgstr "Il sottoprocesso %s ha ricevuto il segnale %u." -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"Viene saltato %s poiché non è installato e sono richiesti solo gli " -"aggiornamenti.\n" +msgid "Sub-process %s returned an error code (%u)" +msgstr "Il sottoprocesso %s ha restituito un codice d'errore (%u)" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "La reinstallazione di %s non è possibile, non può essere scaricato.\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "Il sottoprocesso %s è uscito inaspettatamente" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s è già alla versione più recente.\n" +msgid "Problem closing the gzip file %s" +msgstr "Si è verificato un problema nel chiudere il file gzip %s" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Versione \"%s\" (%s) selezionata per \"%s\"\n" +msgid "Could not open file %s" +msgstr "Impossibile aprire il file %s" -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Versione \"%s\" (%s) selezionata per \"%s\" per via di \"%s\"\n" +msgid "Could not open file descriptor %d" +msgstr "Impossibile aprire il descrittore del file %d" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Creazione di un sottoprocesso IPC non riuscita" + +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Esecuzione non riuscita del compressore " + +#: apt-pkg/contrib/fileutl.cc:1514 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" -"Il pacchetto \"%s\" non è installato e quindi non è stato rimosso: si " -"intendeva \"%s\"?\n" +msgid "read, still have %llu to read but none left" +msgstr "lettura, ancora %llu da leggere, ma non è stato trovato nulla" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Il pacchetto \"%s\" non è installato e quindi non è stato rimosso\n" +msgid "write, still have %llu to write but couldn't" +msgstr "scrittura, ancora %llu da scrivere, ma non è possibile" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" -"Nota: questa è solo una simulazione.\n" -" apt-get necessita dei privilegi di root per la normale esecuzione.\n" -" Inoltre, il meccanismo di blocco non è attivato e non è quindi\n" -" utile dare importanza a tutto ciò per una situazione reale." +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Si è verificato un problema nel chiudere il file %s" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ATTENZIONE: i seguenti pacchetti non possono essere autenticati." +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Si è verificato un problema nel rinominare il file %s in %s" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Avviso di autenticazione disabilitato.\n" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Si è verificato un problema nell'eseguire l'unlink del file %s" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Alcuni pacchetti non possono essere autenticati" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Si è verificato un problema nel sincronizzare il file" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Installare questi pacchetti senza verificarli?" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Errore" -#: apt-private/private-sources.cc:58 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Analisi di %s non riuscita: modificare nuovamente?" +msgid "%c%s... Done" +msgstr "%c%s... Fatto" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "..." + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" -"Il proprio file \"%s\" è stato modificato: eseguire \"apt-get update\"." +msgid "%c%s... %u%%" +msgstr "%c%s... %u%%" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "Ricerca sul testo" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Impossibile eseguire mmap su un file vuoto" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Trovato " +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Impossibile duplicare il descrittore del file %i" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Scaricamento di:" +#: apt-pkg/contrib/mmap.cc:119 +#, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Impossibile creare mmap di %llu byte" -# (ndt) questa non so cosa voglia dire -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Impossibile chiudere mmap" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Impossibile sincronizzare mmap" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Recuperati %sB in %s (%sB/s)\n" +msgid "Couldn't make mmap of %lu bytes" +msgstr "Impossibile eseguire mmap di %lu byte" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Troncamento del file non riuscito" + +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid " [Working]" -msgstr " [In lavorazione]" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" +"MMap dinamica esaurita. Aumentare la dimensione di APT::Cache-Start. Il " +"valore attuale è: %lu (man 5 apt.conf)." -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/mmap.cc:446 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -"Cambio disco: inserire il disco chiamato\n" -" \"%s\"\n" -"nell'unità \"%s\" e premere Invio\n" +"Impossibile incrementare la dimensione della MMap poiché il limite di %lu " +"byte è stato raggiunto." -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +# (ndt) lunghetta... +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"Impossibile incrementare la dimensione della MMap poiché il " +"ridimensionamento automatico è stato disabilitato dall'utente." + +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "No mirror file '%s' found " -msgstr "Nessun file mirror \"%s\" trovato " +msgid "Unable to stat the mount point %s" +msgstr "Impossibile eseguire stat sul punto di mount %s" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Esecuzione di stat sul CD-ROM non riuscita" + +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Impossibile leggere il file mirror \"%s\"" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Tipo di abbreviazione non riconosciuto: \"%c\"" -#: methods/mirror.cc:315 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Nessuna voce trovata nel file mirror \"%s\"" +msgid "Opening configuration file %s" +msgstr "Apertura file di configurazione %s" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "[Mirror: %s]" -msgstr "[Mirror: %s]" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Errore di sintassi %s:%u: il blocco inizia senza nome" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Creazione di una pipe IPC verso il sottoprocesso non riuscita" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Errore di sintassi %s:%u: tag non corretto" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Connessione chiusa prematuramente" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Errore di sintassi %s:%u: caratteri extra dopo il valore" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Impostazione predefinita errata." +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "" +"Errore di sintassi %s:%u: le direttive possono essere fatte solo al livello " +"più alto" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Premere Invio per continuare." +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Errore di sintassi %s:%u: troppe inclusioni annidate" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Eliminare tutti i file .deb precedentemente scaricati?" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Errore di sintassi %s:%u: incluso da qui" -# Note to translators: The following four messages belong together. It doesn't -# matter where sentences start, but it has to fit in just these four lines, and -# at only 80 characters per line, if possible. -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Errore di sintassi %s:%u: direttiva \"%s\" non supportata" + +# (ndt) sarebbe da controllare meglio... +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"Si sono verificati alcuni errori nell'estrazione. Verrà tentata la " -"configurazione" +"Errore di sintassi %s:%u: la direttiva clear richiede un albero di opzioni " +"come argomento" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "dei pacchetti installati. Questo potrebbe generare errori duplicati" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Errore di sintassi %s:%u: caratteri extra alla fine del file" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "o errori causati da dipendenze mancanti. Questo non causa problemi," +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "Nessun portachiavi installato in %s." -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "" -"gli errori precedenti sono importanti. Correggerli e rieseguire " -"l'installazione [I]" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Opzione a riga di comando \"%c\" [da %s] sconosciuta." -#: dselect/update:30 -msgid "Merging available information" -msgstr "Unione delle informazioni disponibili" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Opzione a riga di comando %s non comprensibile" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode invocata su un nodo ancora collegato" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Opzione a riga di comando %s non booleana" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Localizzazione dell'elemento hash non riuscita." +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "L'opzione %s richiede un argomento." -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Allocazione della deviazione non riuscita" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "" +"Opzione %s: la specifica di configurazione dell'oggetto deve avere un " +"=<valore>." -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Errore interno in AddDiversion" +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "L'opzione %s richiede un argomento intero, non \"%s\"" -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Tentativo di sovrascrivere una deviazione, %s -> %s e %s/%s" +msgid "Option '%s' is too long" +msgstr "Opzione \"%s\" troppo lunga" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Doppia aggiunta di deviazione %s -> %s" +msgid "Sense %s is not understood, try true or false." +msgstr "Il valore %s non è comprensibile, provare \"true\" o \"false\"." -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "File di configurazione duplicato %s/%s" +msgid "Invalid operation %s" +msgstr "Operazione %s non valida" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "The path %s is too long" -msgstr "Il percorso %s è troppo lungo" +msgid "Installing %s" +msgstr "Installazione di %s" -#: apt-inst/extract.cc:132 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "Unpacking %s more than once" -msgstr "Estrazione di %s eseguita più di una volta" +msgid "Configuring %s" +msgstr "Configurazione di %s" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "The directory %s is diverted" -msgstr "La directory %s è deviata" +msgid "Removing %s" +msgstr "Rimozione di %s" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "" -"Il pacchetto sta cercando di scrivere nell'obiettivo di deviazione %s/%s" +msgid "Completely removing %s" +msgstr "Rimozione completa di %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Il percorso della deviazione è troppo lungo" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "Notata la sparizione di %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Failed to stat %s" -msgstr "Impossibile eseguire stat su %s" +msgid "Running post-installation trigger %s" +msgstr "Esecuzione comando di post installazione %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Rinomina di %s in %s non riuscita" +msgid "Directory '%s' missing" +msgstr "Directory \"%s\" mancante" -#: apt-inst/extract.cc:249 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "La directory %s sta per essere sostituita da una non-directory" +msgid "Could not open file '%s'" +msgstr "Impossibile aprire il file \"%s\"" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Localizzazione del nodo nel suo hash bucket non riuscita" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Preparazione di %s" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Il percorso è troppo lungo" +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "Estrazione di %s" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Il pacchetto sovrascritto corrisponde senza versione per %s" +msgid "Preparing to configure %s" +msgstr "Preparazione alla configurazione di %s" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Il file %s/%s sovrascrive quello nel pacchetto %s" +msgid "Installed %s" +msgstr "Pacchetto %s installato" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Unable to stat %s" -msgstr "Impossibile eseguire stat su %s" +msgid "Preparing for removal of %s" +msgstr "Preparazione alla rimozione di %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Failed to write file %s" -msgstr "Scrittura del file %s non riuscita" +msgid "Removed %s" +msgstr "Pacchetto %s rimosso" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Failed to close file %s" -msgstr "Chiusura del file %s non riuscita" +msgid "Preparing to completely remove %s" +msgstr "Preparazione alla rimozione completa di %s" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Questo non è un archivio DEB valido: membro \"%s\" mancante" +msgid "Completely removed %s" +msgstr "Pacchetto %s rimosso completamente" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "ioctl(TIOCGWINSZ) non riuscita" + +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Errore interno, impossibile trovare il membro %s" +msgid "Can not write log (%s)" +msgstr "Impossibile scrivere il registro (%s)" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "File \"control\" non analizzabile" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "È /dev/pts montato?" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Firma dell'archivio non valida" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "stdout è un terminale?" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Errore nel leggere l'intestazione member dell'archivio" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "L'operazione è stata interrotta prima di essere completata" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Intestazione member dell'archivio %s non valida" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" +"Segnalazione apport non scritta poiché è stato raggiunto il valore massimo " +"di MaxReports" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Intestazione member dell'archivio non valida" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "Problemi con le dipendenze - Viene lasciato non configurato" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "L'archivio è troppo piccolo" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Segnalazione apport non scritta poiché il messaggio di errore indica la " +"presenza di un fallimento precedente." -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Lettura delle intestazioni dell'archivio non riuscita" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Segnalazione apport non scritta poiché il messaggio di errore indica un " +"errore per disco pieno." -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Creazione delle pipe non riuscita" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Segnalazione apport non scritta poiché il messaggio di errore indica un " +"errore di memoria esaurita." -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Esecuzione di gzip non riuscita " +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Segnalazione apport non scritta poiché il messaggio di errore indica un " +"errore nel sistema locale." -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Archivio danneggiato" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Segnalazione apport non scritta poiché il messaggio di errore indica un " +"errore di I/O di dpkg." -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Checksum di tar non riuscito, archivio danneggiato" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Impossibile acquisire il blocco sulla directory di amministrazione (%s). Un " +"altro processo potrebbe tenerla occupata." -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/debsystem.cc:94 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Intestazione TAR di tipo %u sconosciuta, member %s" +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "" +"Impossibile acquisire il blocco sulla directory di amministrazione (%s). È " +"necessario essere root." + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"dpkg è stato interrotto. È necessario eseguire \"%s\" per correggere il " +"problema. " + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Non bloccato" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/ja.po b/po/ja.po index 5f0e5d459..2728cab24 100644 --- a/po/ja.po +++ b/po/ja.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.16.1\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2014-03-21 19:53+0900\n" "Last-Translator: Kenshi Muto <kmuto@debian.org>\n" "Language-Team: Debian Japanese List <debian-japanese@lists.debian.org>\n" @@ -18,3266 +18,3267 @@ msgstr "" "Content-Transfer-Encoding: 8 bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "インデックスファイルのタイプ '%s' はサポートされていません" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "%s を読み込むことができません" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "%s へ変更することができません" - -#: apt-pkg/clean.cc:64 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Unable to stat %s." -msgstr "%s の状態を取得できません。" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "パッケージ %s のバージョン %s には解決不可能な依存関係があります:\n" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "進捗: [%3i%%]" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "パッケージ名総数: " -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "dpkg を実行しています" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "パッケージ構造総数: " -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "パッケージングシステム '%s' はサポートされていません" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " 通常パッケージ: " -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "適切なパッケージシステムタイプを特定できません" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " 純粋仮想パッケージ: " -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "%i レコードを書き込みました。\n" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " 単一仮想パッケージ: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "%i レコードを書き込みました。%i 個のファイルが存在しません。\n" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " 複合仮想パッケージ: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "%i レコードを書き込みました。%i 個の適合しないファイルがあります。\n" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " 欠落: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"%i レコードを書き込みました。%i 個のファイルが見つからず、%i 個の適合しない" -"ファイルがあります。\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "個別バージョン総数: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "認証レコードが見つかりません: %s" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "個別説明総数: " -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "ハッシュサムが適合しません: %s" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "依存関係総数: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "メソッドドライバ %s が見つかりません。" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "バージョン/ファイル関係総数: " -#: apt-pkg/acquire-worker.cc:118 -#, c-format -msgid "Is the package %s installed?" -msgstr "パッケージ %s はインストールされていますか?" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "説明/ファイル関係総数: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "メソッド %s が正常に開始しませんでした" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "提供マッピング総数: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "" -"'%s' とラベルの付いたディスクをドライブ '%s' に入れて Enter キーを押してくだ" -"さい。" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Glob 文字列の総数: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "" -"パッケージリストまたはステータスファイルを解釈またはオープンすることができま" -"せん。" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "総依存関係・バージョン容量: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "" -"これらの問題を解決するためには apt-get update を実行する必要があるかもしれま" -"せん" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "総空き容量: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "ソースのリストを読むことができません。" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "総占有容量: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "空のパッケージキャッシュ" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "Package ファイル %s が同期していません。" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "パッケージキャッシュファイルが壊れています" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "パッケージが見つかりません" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "このパッケージキャッシュファイルは互換性がないバージョンです" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "検索パターンはちょうど 1 つだけ指定してください" -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "パッケージキャッシュファイルが壊れています。短かすぎます" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" +"このコマンドは時代遅れです。'apt-mark showauto' を代わりに使用してください。" -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "この APT はバージョニングシステム '%s' をサポートしていません" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "パッケージキャッシュが異なるアーキテクチャ用に構築されています" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "依存" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "先行依存" +msgid "Unable to locate package %s" +msgstr "パッケージ %s が見つかりません" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "提案" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "パッケージファイル:" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "推奨" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "キャッシュが同期しておらず、パッケージファイルを相互参照できません" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "競合" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Pin されたパッケージ:" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "置換" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(見つかりません)" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "廃止" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " インストールされているバージョン: " -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "破壊" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " 候補: " -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "拡張" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(なし)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "重要" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " パッケージ Pin: " -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "要求" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " バージョンテーブル:" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "標準" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s for %s コンパイル日時: %s %s\n" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "任意" - -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "特別" - -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "インデックスファイルのタイプ '%s' はサポートされていません" - -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" -msgstr "正規表現の展開エラー - %s" - -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "キャッシュに非互換なバージョニングシステムがあります" - -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "%s を処理中にエラーが発生しました (%s%d)" - -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "この APT が対応している以上の数のパッケージが指定されました。" - -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "この APT が対応している以上の数のバージョンが要求されました。" - -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "この APT が対応している以上の数の説明が要求されました。" - -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "この APT が対応している以上の数の依存関係が発生しました。" - -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "パッケージ %s %s がファイル依存の処理中に見つかりませんでした" - -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "ソースパッケージリスト %s の状態を取得できません" - -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "パッケージリストを読み込んでいます" - -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "ファイル提供情報を収集しています" - -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "%s に書き込めません" - -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "ソースキャッシュの保存中に IO エラーが発生しました" - -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "ソルバにシナリオを送信" - -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "ソルバにリクエストを送信" - -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "解決を受け取る準備" - -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "外部ソルバが適切なエラーメッセージなしに失敗しました" - -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "外部ソルバを実行" - -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "名前の変更に失敗しました。%s (%s -> %s)" - -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "ハッシュサムが適合しません" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "サイズが適合しません" - -#: apt-pkg/acquire-item.cc:173 -msgid "Invalid file format" -msgstr "不正なファイル形式" - -#: apt-pkg/acquire-item.cc:1573 -#, c-format +#: cmdline/apt-cache.cc:1749 msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" msgstr "" -"期待されるエントリ '%s' が Release ファイル内に見つかりません (誤った " -"sources.list エントリか、壊れたファイル)" +"使用方法: apt-cache [オプション] コマンド\n" +" apt-cache [オプション] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [オプション] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache は APT のバイナリキャッシュファイルを操作したり、そこから情\n" +"報を検索したりするための低レベルのツールです\n" +"\n" +"コマンド:\n" +" gencaches - パッケージおよびソースキャッシュを生成する\n" +" showpkg - 単一パッケージの一般情報を表示する\n" +" showsrc - ソースレコードを表示する\n" +" stats - 基本ステータス情報を表示する\n" +" dump - すべてのファイルを簡単な形式で表示する\n" +" dumpavail - available ファイルを標準出力に出力する\n" +" unmet - 未解決の依存関係を表示する\n" +" search - 正規表現パターンによってパッケージ一覧を検索する\n" +" show - パッケージの情報を表示する\n" +" depends - パッケージの生の依存情報を表示する\n" +" rdepends - パッケージの生の逆依存情報を表示する\n" +" pkgnames - システム内のすべてのパッケージ名一覧を表示する\n" +" dotty - GraphViz 用のパッケージグラフを生成する\n" +" xvcg - xvcg 用のパッケージグラフを生成する\n" +" policy - ポリシー設定情報を表示する\n" +"\n" +"オプション:\n" +" -h このヘルプを表示する\n" +" -p=? パッケージキャッシュ\n" +" -s=? ソースキャッシュ\n" +" -q プログレス表示をしない\n" +" -i umnet コマンドで重要な依存情報のみを表示する\n" +" -c=? 指定した設定ファイルを読み込む\n" +" -o=? 指定した設定オプションを読み込む (例: -o dir::cache=/tmp)\n" +"詳細は、apt-cache(8) や apt.conf(5) のマニュアルページを参照してください。\n" -#: apt-pkg/acquire-item.cc:1589 -#, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Release ファイル中の '%s' のハッシュサムを見つけられません" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "このディスクに、'Debian 5.0.3 Disk 1' のような名前を付けてください" -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "以下の鍵 ID に対して利用可能な公開鍵がありません:\n" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "ディスクをドライブに入れて Enter キーを押してください" -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-cdrom.cc:139 #, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "'%s' を '%s' にマウントできませんでした" + +#: cmdline/apt-cdrom.cc:178 msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"%s の Release ファイルは期限切れ (%s 以来無効) です。このリポジトリからの更新" -"物は適用されません。" +"CD-ROM が自動検出されなかったか、デフォルトで利用するマウントポイントに見当た" +"りませんでした。\n" +"CD-ROM のマウントポイントを設定するために --cdrom オプションを試すことができ" +"ます。\n" +"CD-ROM の自動検出およびマウントポイントの詳細については、'man apt-cdrom' を参" +"照してください。" -#: apt-pkg/acquire-item.cc:1691 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." msgstr "" -"ディストリビューションが競合しています: %s (%s を期待していたのに %s を取得し" -"ました)" +"あなたの持っている CD セットの残り全部に、この手順を繰り返してください。" -#: apt-pkg/acquire-item.cc:1721 -#, c-format +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "引数がペアではありません" + +#: cmdline/apt-config.cc:89 msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -"署名照合中にエラーが発生しました。リポジトリは更新されず、過去のインデックス" -"ファイルが使われます。GPG エラー: %s: %s\n" +"使用方法: apt-config [オプション] コマンド\n" +"\n" +"apt-config は APT の設定ファイルを読み込むための簡単なツールです\n" +"\n" +"コマンド:\n" +" shell - シェルモード\n" +" dump - 設定情報を表示する\n" +"\n" +"オプション:\n" +" -h このヘルプを表示する\n" +" -c=? 指定した設定ファイルを読み込む\n" +" -o=? 指定した設定オプションを適用する (例: -o dir::cache=/tmp)\n" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:245 #, c-format -msgid "GPG error: %s: %s" -msgstr "GPG エラー: %s: %s" +msgid "Can not find a package for architecture '%s'" +msgstr "アーキテクチャ '%s' 用のパッケージは見つかりませんでした" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:327 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"パッケージ %s のファイルの位置を特定できません。おそらくこのパッケージを手動" -"で修正する必要があります (存在しないアーキテクチャのため)。" +msgid "Can not find a package '%s' with version '%s'" +msgstr "パッケージ '%s' のバージョン '%s' は見つかりませんでした" -#: apt-pkg/acquire-item.cc:1925 +#: cmdline/apt-get.cc:330 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "'%2$s' のバージョン '%1$s' をダウンロードするソースが見つかりません" +msgid "Can not find a package '%s' with release '%s'" +msgstr "リリース '%2$s' にはパッケージ '%1$s' は見つかりませんでした" -#: apt-pkg/acquire-item.cc:1983 +#: cmdline/apt-get.cc:367 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"パッケージインデックスファイルが壊れています。パッケージ %s に Filename: " -"フィールドがありません。" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "'%2$s' の代わりに '%1$s' をソースパッケージとして選出しています\n" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:423 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "ベンダブロック %s は鍵指紋を含んでいません" +msgid "Can not find version '%s' of package '%s'" +msgstr "パッケージ '%2$s' のバージョン '%1$s' は見つかりませんでした" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: cmdline/apt-get.cc:454 #, c-format -msgid "List directory %spartial is missing." -msgstr "リストディレクトリ %spartial が見つかりません。" +msgid "Couldn't find package %s" +msgstr "パッケージ %s が見つかりません" -#: apt-pkg/acquire.cc:91 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "アーカイブディレクトリ %spartial が見つかりません。" +msgid "%s set to manually installed.\n" +msgstr "%s は手動でインストールしたと設定されました。\n" -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format -msgid "Unable to lock directory %s" -msgstr "ディレクトリ %s をロックできません" +msgid "%s set to automatically installed.\n" +msgstr "%s は自動でインストールしたと設定されました。\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 -#, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "ファイルを取得しています %li/%li (残り %s)" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" +"このコマンドは時代遅れです。'apt-mark auto' および 'apt-mark manual' を代わり" +"に使用してください。" -#: apt-pkg/acquire.cc:904 -#, c-format -msgid "Retrieving file %li of %li" -msgstr "ファイルを取得しています %li/%li" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "内部エラー、問題リゾルバが何かを破壊しました" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "%s の取得に失敗しました %s\n" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "ダウンロードディレクトリをロックできません" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" msgstr "" -"いくつかのインデックスファイルのダウンロードに失敗しました。これらは無視され" -"るか、古いものが代わりに使われます。" +"ソースを取得するには少なくとも 1 つのパッケージ名を指定する必要があります" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "sources.list に 'ソース' URI を指定する必要があります" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "%s のソースパッケージが見つかりません" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:786 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"APT::Default-Release の 値 '%s' は、そのようなリリースをソース中から利用でき" -"ないため、無効です" +"注意: '%s' パッケージは以下の場所の '%s' バージョン制御システムで保守されてい" +"ます:\n" +"%s\n" -#: apt-pkg/policy.cc:422 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -"不正なレコードがプリファレンスファイル %s に存在します。パッケージヘッダがあ" -"りません" +"パッケージの最新の (まだリリースされていないかもしれない) 更新を取得するに" +"は、\n" +"bzr branch %s\n" +"を使用してください。\n" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Did not understand pin type %s" -msgstr "pin タイプ %s を理解できませんでした" - -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "pin で優先度 (または 0) が指定されていません" +msgid "Skipping already downloaded file '%s'\n" +msgstr "すでにダウンロードされたファイル '%s' をスキップします\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" -msgstr "" -"'%s' の即時設定は動作しません。詳細については man 5 apt.conf の APT::" -"Immediate-Configure の項を参照してください。(%d)" +msgid "Couldn't determine free space in %s" +msgstr "%s の空き領域を測定できません" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Could not configure '%s'. " -msgstr "'%s' を設定できませんでした。" +msgid "You don't have enough free space in %s" +msgstr "%s に充分な空きスペースがありません" -#: apt-pkg/packagemanager.cc:583 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." -msgstr "" -"このインストールは、競合/先行依存のループが原因で、一時的に重要な不可欠パッ" -"ケージ %s を削除します。これは多くの場合に問題が起こる原因となります。本当に" -"これを行いたいなら、APT::Force-LoopBreak オプションを有効にしてください。" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "%2$sB 中 %1$sB のソースアーカイブを取得する必要があります。\n" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "Line %u too long in source list %s." -msgstr "ソースリスト %2$s の %1$u 行目が長すぎます。" - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "CD-ROM をアンマウントしています ...\n" +msgid "Need to get %sB of source archives.\n" +msgstr "%sB のソースアーカイブを取得する必要があります。\n" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "CD-ROM マウントポイント %s を使用します\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "ディスクを待っています ...\n" +msgid "Fetch source %s\n" +msgstr "ソース %s を取得\n" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "CD-ROM をマウントしています ...\n" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "いくつかのアーカイブの取得に失敗しました。" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "確認しています... " +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "ダウンロードオンリーモードでパッケージのダウンロードが完了しました" -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Stored label: %s\n" -msgstr "格納されたラベル: %s \n" - -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "ディスクのインデックスファイルを走査しています ...\n" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "すでに %s に展開されたソースがあるため、展開をスキップします\n" -#: apt-pkg/cdrom.cc:734 +#: cmdline/apt-get.cc:963 #, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"%zu のパッケージインデックス、%zu のソースインデックス、%zu の翻訳インデック" -"ス、%zu の署名を見つけました\n" +msgid "Unpack command '%s' failed.\n" +msgstr "展開コマンド '%s' が失敗しました。\n" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +#: cmdline/apt-get.cc:964 +#, c-format +msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -"パッケージファイルを配置できません。Debian のディスクではないか、誤ったアーキ" -"テクチャではないでしょうか?" +"'dpkg-dev' パッケージがインストールされていることを確認してください。\n" -#: apt-pkg/cdrom.cc:771 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Found label '%s'\n" -msgstr "ラベル '%s' を見つけました\n" +msgid "Build command '%s' failed.\n" +msgstr "ビルドコマンド '%s' が失敗しました。\n" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "これは有効な名前ではありません。再試行してください。\n" +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "子プロセスが失敗しました" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" msgstr "" -"このディスクは以下のように呼ばれます: \n" -"'%s'\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "パッケージリストをコピーしています ..." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "新しいソースリストを書き込んでいます\n" - -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "このディスクのソースリストのエントリ:\n" +"ビルド依存関係をチェックするパッケージを少なくとも 1 つ指定する必要があります" -#: apt-pkg/algorithms.cc:265 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"パッケージ %s を再インストールする必要がありますが、そのためのアーカイブを見" -"つけることができませんでした。" - -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -"エラー、pkgProblemResolver::Resolve は停止しました。おそらく変更禁止パッケー" -"ジが原因です。" - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "問題を解決することができません。壊れた変更禁止パッケージがあります。" - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "依存関係ツリーを作成しています" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "候補バージョン" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "依存関係の生成" +"%s に利用可能なアーキテクチャ情報がありません。セットアップのために apt." +"conf(5) の APT::Architectures を参照してください。" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "状態情報を読み取っています" +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "%s のビルド依存情報を取得できません" -#: apt-pkg/depcache.cc:250 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Failed to open StateFile %s" -msgstr "状態ファイル %s のオープンに失敗しました" +msgid "%s has no build depends.\n" +msgstr "%s にはビルド依存情報が指定されていません。\n" -#: apt-pkg/depcache.cc:256 +#: cmdline/apt-get.cc:1272 #, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "一時状態ファイル %s の書き込みに失敗しました" +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"パッケージ %3$s が '%4$s' パッケージで許されていないため、%2$s に対する %1$s " +"の依存関係を満たすことができません" -#: apt-pkg/tagfile.cc:140 +#: cmdline/apt-get.cc:1290 #, c-format -msgid "Unable to parse package file %s (1)" -msgstr "パッケージファイル %s を解釈することができません (1)" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"パッケージ %3$s が見つからないため、%2$s に対する %1$s の依存関係を満たすこと" +"ができません" -#: apt-pkg/tagfile.cc:237 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Unable to parse package file %s (2)" -msgstr "パッケージファイル %s を解釈することができません (2)" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"%2$s の依存関係 %1$s を満たすことができません: インストールされた %3$s パッ" +"ケージは新しすぎます" -#: apt-pkg/cacheset.cc:489 +#: cmdline/apt-get.cc:1352 #, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "'%2$s' のリリース '%1$s' が見つかりませんでした" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"パッケージ %3$s の候補バージョンはバージョンについての要求を満たせないた" +"め、%2$s に対する %1$s の依存関係を満たすことができません" -#: apt-pkg/cacheset.cc:492 +#: cmdline/apt-get.cc:1358 #, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "'%2$s' のバージョン '%1$s' が見つかりませんでした" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"パッケージ %3$s の候補バージョンが存在しないため、%2$s に対する %1$s の依存関" +"係を満たすことができません" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Unable to locate package %s" -msgstr "パッケージ %s が見つかりません" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "%2$s の依存関係 %1$s を満たすことができません: %3$s" -#: apt-pkg/cacheset.cc:603 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Couldn't find task '%s'" -msgstr "タスク '%s' が見つかりません" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "%s のビルド依存関係を満たすことができませんでした。" -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "正規表現 '%s' ではパッケージは見つかりませんでした" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "ビルド依存関係の処理に失敗しました" -#: apt-pkg/cacheset.cc:615 +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 #, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "'%s' に一致するパッケージは見つかりませんでした" +msgid "Changelog for %s (%s)" +msgstr "%s (%s) の変更履歴" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "純粋な仮想パッケージのため、パッケージ '%s' のバージョンを選べません" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "サポートされているモジュール:" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format +#: cmdline/apt-get.cc:1633 msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"パッケージ '%s' のインストール済みまたは候補のバージョンはいずれも存在しない" -"ので選べません" +"使用法: apt-get [オプション] コマンド\n" +" apt-get [オプション] install|remove パッケージ名1 [パッケージ名" +"2 ...]\n" +" apt-get [オプション] source パッケージ名1 [パッケージ名2 ...]\n" +"\n" +"apt-get は、パッケージをダウンロード/インストールするための簡単なコマ\n" +"ンドラインインタフェースです。もっともよく使われるコマンドは、update \n" +"と install です。\n" +"\n" +"コマンド:\n" +" update - 新しいパッケージリストを取得する\n" +" upgrade - アップグレードを行う\n" +" install - 新規パッケージをインストールする (pkg は libc6.deb ではなく " +"libc6 のように指定する)\n" +" remove - パッケージを削除する\n" +" autoremove - 自動インストールされ使われていないすべてのパッケージを削除す" +"る\n" +" purge - 設定ファイルまで含めてパッケージを削除する\n" +" source - ソースアーカイブをダウンロードする\n" +" build-dep - ソースパッケージの構築依存関係を設定する\n" +" dist-upgrade - ディストリビューションをアップグレードする (apt-get(8) を参" +"照)\n" +" dselect-upgrade - dselect の選択に従う\n" +" clean - ダウンロードしたアーカイブファイルを削除する\n" +" autoclean - ダウンロードした古いアーカイブファイルを削除する\n" +" check - 壊れた依存関係がないかチェックする\n" +" changelog - 指定のパッケージの変更履歴をダウンロードして表示する\n" +" download - バイナリパッケージをカレントディレクトリにダウンロードする\n" +"\n" +"オプション:\n" +" -h このヘルプを表示する\n" +" -q ログファイルに出力可能な形式にする - プログレス表示をしない\n" +" -qq エラー以外は表示しない\n" +" -d ダウンロードのみ行う - アーカイブのインストールや展開は行わない\n" +" -s 実際には実行しない。実行シミュレーションのみ行う\n" +" -y すべての問い合わせに Yes で答え、プロンプトは返さない\n" +" -f 整合性チェックで失敗しても処理を続行する\n" +" -m アーカイブが存在しない場合も続行する\n" +" -u アップグレードされるパッケージも表示する\n" +" -b ソースパッケージを取得し、ビルドを行う\n" +" -V 冗長なバージョンナンバを表示する\n" +" -c=? 指定した設定ファイルを読み込む\n" +" -o=? 任意の設定オプションを指定する (例 -o dir::cache=/tmp)\n" +"さらなる情報やオプションについては、マニュアルページ\n" +"apt-get(8)、sources.list(5)、apt.conf(5) を参照してください。\n" +" この APT は Super Cow Powers 化されています。\n" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" +#: cmdline/apt-helper.cc:35 +msgid "Must specify at least one pair url/filename" +msgstr "少なくとも URL / ファイル名を 1 組指定する必要があります" + +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "ダウンロード失敗" + +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"純粋な仮想パッケージのため、パッケージ '%s' の最新バージョンを選べません" +"使用法: apt-helper [オプション] コマンド\n" +" apt-helper [オプション] download-file uri 目標パス\n" +"\n" +"apt-helper は apt の内部ヘルパーです\n" +"\n" +"コマンド:\n" +" download-file - 指定した uri を目標パスにダウンロードする\n" +"\n" +" この APT helper は Super Meep Powers 化されています。\n" -#: apt-pkg/cacheset.cc:655 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "候補が存在しないので、パッケージ %s の候補バージョンを選べません" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s をインストールされていないものとしてマークできません\n" -#: apt-pkg/cacheset.cc:663 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" -"インストールされていないので、パッケージ %s のインストール済みバージョンを選" -"べません。" +msgid "%s was already set to manually installed.\n" +msgstr "%s は手動でインストールしたとすでに設定されています。\n" -#: apt-pkg/indexrecords.cc:78 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "Unable to parse Release file %s" -msgstr "Release ファイル %s を解釈することができません" +msgid "%s was already set to automatically installed.\n" +msgstr "%s は自動でインストールしたとすでに設定されています。\n" -#: apt-pkg/indexrecords.cc:86 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "No sections in Release file %s" -msgstr "Release ファイル %s にセクションがありません" +msgid "%s was already set on hold.\n" +msgstr "%s はすでに保留に設定されています。\n" -#: apt-pkg/indexrecords.cc:117 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "No Hash entry in Release file %s" -msgstr "Release ファイル %s に Hash エントリがありません" +msgid "%s was already not hold.\n" +msgstr "%s はすでに保留されていません。\n" -#: apt-pkg/indexrecords.cc:130 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Release ファイル %s に無効な 'Valid-Until' エントリがあります" +msgid "Waited for %s but it wasn't there" +msgstr "%s を待ちましたが、そこにはありませんでした" -#: apt-pkg/indexrecords.cc:149 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Release ファイル %s に無効な 'Date' エントリがあります" +msgid "%s set on hold.\n" +msgstr "%s は保留に設定されました。\n" -#: apt-pkg/sourcelist.cc:127 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "ソースリスト %2$s の %1$u 個目の区切りが不正です (URI parse)" +msgid "Canceled hold on %s.\n" +msgstr "%s の保留を解除しました。\n" + +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "dpkg の実行に失敗しました。root 権限で実行していますか?" + +#: cmdline/apt-mark.cc:392 +msgid "" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." +msgstr "" +"Usage: apt-mark [オプション] {auto|manual} パッケージ1 [パッケージ2 ...]\n" +"\n" +"apt-mark は、パッケージを手動または自動でインストールされたものとしてマーク\n" +"する簡単なコマンドラインインターフェイスです。マークの一覧表示もできます。\n" +"\n" +"コマンド:\n" +" auto - 指定のパッケージを自動でインストールされたものとしてマークす" +"る\n" +" manual - 指定のパッケージを手動でインストールしたものとしてマークす" +"る\n" +" hold - パッケージを保留としてマークする\n" +" unhold - パッケージの保留を解除する\n" +" showauto - 自動的にインストールされたパッケージの一覧を表示する\n" +" showmanual - 手作業でインストールしたパッケージの一覧を表示する\n" +" showhold - 保留されているパッケージの一覧を表示する\n" +"\n" +"オプション:\n" +" -h このヘルプを表示する\n" +" -q ログファイルに出力可能な形式にする - プログレス表示をしない\n" +" -qq エラー以外は表示しない\n" +" -s 実際には実行しない。実行シミュレーションのみ行う\n" +" -f 指定のファイルを使って自動/手動のマーキングを読み書きする\n" +" -c=? 指定した設定ファイルを読み込む\n" +" -o=? 任意の設定オプションを指定する (例 -o dir::cache=/tmp)\n" +"さらなる情報については、マニュアルページ apt-mark(8) および apt.conf(5) を参" +"照してください。" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -"ソースリスト %2$s の %1$lu 行目が不正です ([オプション] を解釈できません)" +"使用法: apt [オプション] コマンド\n" +"\n" +"apt 用コマンドラインインターフェイス\n" +"基本コマンド: \n" +" list - パッケージ名を基にパッケージの一覧を表示\n" +" search - パッケージの説明を検索\n" +" show - パッケージの詳細を表示\n" +"\n" +" update - 利用可能パッケージの一覧を更新\n" +"\n" +" install - パッケージをインストール\n" +" remove - パッケージを削除\n" +"\n" +" upgrade - パッケージをインストール/更新してシステムをアップグレード\n" +" full-upgrade - パッケージを削除/インストール/更新してシステムをアップグレー" +"ド\n" +"\n" +" edit-sources - ソース情報ファイルを編集\n" -#: apt-pkg/sourcelist.cc:173 +#: methods/cdrom.cc:203 #, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "" -"ソースリスト %2$s の %1$lu 行目が不正です ([オプション] が短かすぎます)" +msgid "Unable to read the cdrom database %s" +msgstr "CD-ROM データベース %s を読み込むことができません" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" msgstr "" -"ソースリスト %2$s の %1$lu 行目が不正です ([%3$s] は割り当てられていません)" +"この CD-ROM を APT に認識させるには apt-cdrom を使用してください。新しい CD-" +"ROM を追加するために apt-get update は使用できません。" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "ソースリスト %2$s の %1$lu 行目が不正です ([%3$s にキーがありません)" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD が違います" -#: apt-pkg/sourcelist.cc:193 +#: methods/cdrom.cc:249 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"ソースリスト %2$s の %1$lu 行目が不正です ([%3$s] キー %4$s に値がありません)" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "%s の CD-ROM は使用中のためアンマウントすることができません。" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "ソースリスト %2$s の %1$lu 行目が不正です (URI)" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "ディスクが見つかりません。" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "ソースリスト %2$s の %1$lu 行目が不正です (dist)" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "ファイルが見つかりません" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "ソースリスト %2$s の %1$lu 行目が不正です (URI parse)" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "状態の取得に失敗しました" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "ソースリスト %2$s の %1$lu 行目が不正です (absolute dist)" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "変更時刻の設定に失敗しました" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "ソースリスト %2$s の %1$lu 行目が不正です (dist parse)" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "不正な URI です。ローカルの URI は // で始まってはいけません" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "%s をオープンしています" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "ログインしています" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "ソースリスト %2$s の %1$u 行目が不正です (type)" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "ピアネームを決定することができません" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "ソースリスト %3$s の %2$u 行にあるタイプ '%1$s' は不明です" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "ローカルネームを決定することができません" -#: apt-pkg/sourcelist.cc:416 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "ソースリスト %3$s の %2$u 個目の節 '%1$s' は不明です" +msgid "The server refused the connection and said: %s" +msgstr "サーバから接続を拒絶されました。応答: %s" -#: apt-pkg/deb/dpkgpm.cc:95 +#: methods/ftp.cc:225 #, c-format -msgid "Installing %s" -msgstr "%s をインストールしています" +msgid "USER failed, server said: %s" +msgstr "USER 失敗、サーバ応答: %s" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#: methods/ftp.cc:232 #, c-format -msgid "Configuring %s" -msgstr "%s を設定しています" +msgid "PASS failed, server said: %s" +msgstr "PASS 失敗、サーバ応答: %s" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "%s を削除しています" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"プロキシサーバが指定されていますが、ログインスクリプトが設定されていません。" +"Acquire::ftp::ProxyLogin が空です。" -#: apt-pkg/deb/dpkgpm.cc:98 +#: methods/ftp.cc:280 #, c-format -msgid "Completely removing %s" -msgstr "%s を完全に削除しています" +msgid "Login script command '%s' failed, server said: %s" +msgstr "ログインスクリプトのコマンド '%s' 失敗、サーバ応答: %s" -#: apt-pkg/deb/dpkgpm.cc:99 +#: methods/ftp.cc:306 #, c-format -msgid "Noting disappearance of %s" -msgstr "%s の消失を記録しています" +msgid "TYPE failed, server said: %s" +msgstr "TYPE 失敗、サーバ応答: %s" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "インストール後トリガ %s を実行しています" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "接続タイムアウト" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "ディレクトリ '%s' が見つかりません" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "サーバが接続を切断しました" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "ファイル '%s' をオープンできませんでした" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "読み込みエラー" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "%s を準備しています" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "レスポンスがバッファをオーバフローさせました。" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "%s を展開しています" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "プロトコルが壊れています" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "%s の設定を準備しています" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "書き込みエラー" -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "%s をインストールしました" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "ソケットを作成できません" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "%s の削除を準備しています" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "データソケットへ接続できませんでした。接続がタイムアウトしました" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "%s を削除しました" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "失敗" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "%s を完全に削除する準備をしています" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "パッシブソケットに接続できません。" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "%s を完全に削除しました" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo はリスニングソケットを取得できませんでした" + +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "ソケットをバインドできませんでした" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "ioctl(TIOCGWINSZ) に失敗しました" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "ソケットをリスンできませんでした" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, c-format -msgid "Can not write log (%s)" -msgstr "ログを書き込めません (%s)" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "ソケットの名前を特定できませんでした" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "/dev/pts はマウントされていますか?" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "PORT コマンドを送信できません" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "標準出力はターミナルですか?" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "未知のアドレスファミリ %u (AF_*)" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/ftp.cc:811 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "%s を待ちましたが、そこにはありませんでした" +msgid "EPRT failed, server said: %s" +msgstr "EPRT に失敗しました。サーバ応答: %s" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "操作はそれが完了する前に中断されました" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "データソケット接続タイムアウト" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "MaxReports にすでに達しているため、レポートは書き込まれません" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "接続を accept できません" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "依存関係の問題 - 未設定のままにしています" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "ファイルのハッシュでの問題" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"エラーメッセージは前の失敗から続くエラーであることを示しているので、レポート" -"は書き込まれません。" +#: methods/ftp.cc:890 +#, c-format +msgid "Unable to fetch file, server said '%s'" +msgstr "ファイルを取得できません。サーバ応答 '%s'" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"エラーメッセージはディスクフルエラーであることを示しているので、レポートは書" -"き込まれません。" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "データソケットタイムアウト" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"エラーメッセージはメモリ超過エラーであることを示しているので、レポートは書き" -"込まれません。" +#: methods/ftp.cc:935 +#, c-format +msgid "Data transfer failed, server said '%s'" +msgstr "データ転送に失敗しました。サーバ応答 '%s'" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" -"エラーメッセージはローカルシステムの問題であることを示しているので、レポート" -"は書き込まれません。" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "問い合わせ" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" -"エラーメッセージは dpkg I/O エラーであることを示しているので、レポートは書き" -"込まれません。" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "呼び出せません" -#: apt-pkg/deb/debsystem.cc:91 +#: methods/connect.cc:76 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"管理用ディレクトリ (%s) をロックできません。これを使う別のプロセスが動いてい" -"ませんか?" +msgid "Connecting to %s (%s)" +msgstr "%s (%s) へ接続しています" -#: apt-pkg/deb/debsystem.cc:94 +#: methods/connect.cc:87 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "" -"管理用ディレクトリ (%s) をロックできません。root 権限で実行していますか?" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: methods/connect.cc:94 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" -"dpkg は中断されました。問題を修正するには '%s' を手動で実行する必要がありま" -"す。" - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "ロックされていません" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "%s (f=%u t=%u p=%u) に対するソケットを作成できません" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 +#: methods/connect.cc:100 #, c-format -msgid "%lid %lih %limin %lis" -msgstr "%li日 %li時間 %li分 %li秒" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "%s:%s (%s) への接続を開始できません。" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: methods/connect.cc:108 #, c-format -msgid "%lih %limin %lis" -msgstr "%li時間 %li分 %li秒" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "%s:%s (%s) へ接続できませんでした。接続がタイムアウトしました" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: methods/connect.cc:126 #, c-format -msgid "%limin %lis" -msgstr "%li分 %li秒" +msgid "Could not connect to %s:%s (%s)." +msgstr "%s:%s (%s) へ接続できませんでした。" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "%lis" -msgstr "%li秒" +msgid "Connecting to %s" +msgstr "%s へ接続しています" -#: apt-pkg/contrib/strutl.cc:1243 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Selection %s not found" -msgstr "選択された %s が見つかりません" +msgid "Could not resolve '%s'" +msgstr "'%s' を解決できませんでした" -#: apt-pkg/contrib/fileutl.cc:190 +#: methods/connect.cc:205 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "読み込み専用のロックファイル %s にロックは使用しません" +msgid "Temporary failure resolving '%s'" +msgstr "'%s' が一時的に解決できません" -#: apt-pkg/contrib/fileutl.cc:195 +#: methods/connect.cc:209 #, c-format -msgid "Could not open lock file %s" -msgstr "ロックファイル %s をオープンできません" +msgid "System error resolving '%s:%s'" +msgstr "'%s:%s' の解決中にシステムエラーが発生しました" -#: apt-pkg/contrib/fileutl.cc:218 +#: methods/connect.cc:211 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "nfs マウントされたロックファイル %s にはロックを使用しません" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "'%s:%s' (%i - %s) の解決中に何か問題が起こりました" -#: apt-pkg/contrib/fileutl.cc:223 +#: methods/connect.cc:258 #, c-format -msgid "Could not get lock %s" -msgstr "ロック %s が取得できませんでした" +msgid "Unable to connect to %s:%s:" +msgstr "%s:%s へ接続できません:" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "'%s' がディレクトリではないため、ファイルの一覧を作成できません" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "内部エラー: 正しい署名ですが、鍵指紋を確定できません?!" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "ディレクトリ '%2$s' の '%1$s' が通常ファイルではないため、無視します" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "少なくとも 1 つの不正な署名が発見されました。" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"ディレクトリ '%2$s' の '%1$s' がファイル名拡張子を持たないため、無視します" +"署名を検証するための 'gpgv' の実行ができませんでした (gpgv はインストールされ" +"ていますか?)" -#: apt-pkg/contrib/fileutl.cc:421 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"ディレクトリ '%2$s' の '%1$s' が無効なファイル名拡張子を持っているため、無視" -"します" +"クリアサインされたファイルが有効ではなく、'%s' を得ました (認証にネットワーク" +"が必要?)" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "子プロセス %s がセグメンテーション違反を受け取りました。" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "gpgv の実行中に未知のエラーが発生" + +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "以下の署名が無効です:\n" + +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "公開鍵を利用できないため、以下の署名は検証できませんでした:\n" + +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "空のファイルは有効なアーカイブと認められません" + +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "ファイルへの書き込みでエラーが発生しました" + +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "リモート側で接続がクローズされてサーバからの読み込みに失敗しました" + +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "サーバからの読み込みに失敗しました" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "子プロセス %s がシグナル %u を受け取りました。" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "ファイルへの書き込みでエラーが発生しました" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "子プロセス %s がエラーコード (%u) を返しました" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "select に失敗しました" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "子プロセス %s が予期せず終了しました" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "接続タイムアウト" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "書き込みエラー" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "出力ファイルへの書き込みでエラーが発生しました" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "gzip ファイル %s のクローズ中に問題が発生しました" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "ヘッダの待機中です" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "ファイル %s をオープンできませんでした" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "不正なヘッダ行です" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "ファイルデスクリプタ %d を開けませんでした" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "HTTP サーバが不正なリプライヘッダを送信してきました" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "子プロセス IPC の生成に失敗しました" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "HTTP サーバが不正な Content-Length ヘッダを送信してきました" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "以下の圧縮ツールの実行に失敗しました: " +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "HTTP サーバが不正な Content-Range ヘッダを送信してきました" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "読み込みエラー" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "HTTP サーバのレンジサポートが壊れています" -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" -msgstr "読み込みが %llu 残っているはずですが、何も残っていません" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "不明な日付フォーマットです" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "あと %llu 書き込む必要がありますが、書き込むことができませんでした" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "不正なヘッダです" -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "ファイル %s のクローズ中に問題が発生しました" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "接続失敗" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "%s から %s へのファイル名変更中に問題が発生しました" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "内部エラー" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "ファイル %s の削除中に問題が発生しました" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "ソート中" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "ファイルの同期中に問題が発生しました" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "内部エラー、InstallPackages が壊れたパッケージで呼び出されました!" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... エラー!" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "パッケージを削除しなければなりませんが、削除が無効になっています。" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... 完了" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "内部エラー、調整が終わっていません" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "..." +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"おっと、サイズがマッチしません。apt@packages.debian.org にメールしてください" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... %u%%" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "%2$sB 中 %1$sB のアーカイブを取得する必要があります。\n" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "空のファイルを mmap できません" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 +#, c-format +msgid "Need to get %sB of archives.\n" +msgstr "%sB のアーカイブを取得する必要があります。\n" -#: apt-pkg/contrib/mmap.cc:111 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "ファイルデスクリプタ %i は重複できません" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "この操作後に追加で %sB のディスク容量が消費されます。\n" -#: apt-pkg/contrib/mmap.cc:119 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "%llu バイトの mmap ができませんでした" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "この操作後に %sB のディスク容量が解放されます。\n" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "mmap をクローズできません" +#: apt-private/private-install.cc:200 +#, c-format +msgid "You don't have enough free space in %s." +msgstr "%s に充分な空きスペースがありません。" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "mmap を同期できません" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "問題が発生し、-y オプションが --force-yes なしで使用されました" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "%lu バイトの mmap ができませんでした" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Trivial Only が指定されましたが、これは簡単な操作ではありません。" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "ファイルの切り詰めに失敗しました" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Yes, do as I say!" -#: apt-pkg/contrib/mmap.cc:341 +#: apt-private/private-install.cc:222 #, c-format msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" -"動的 MMap が範囲を越えました。APT::Cache-Start の大きさを増やしてください。現" -"在値は %lu です (man 5 apt.conf を参照)。" +"重大な問題を引き起こす可能性のあることをしようとしています。\n" +"続行するには、'%s' というフレーズをタイプしてください。\n" +" ?] " -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "%lu バイトの上限に達しているため、MMap のサイズを増やせません。" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "中断しました。" -#: apt-pkg/contrib/mmap.cc:449 +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "続行しますか?" + +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "いくつかのファイルの取得に失敗しました" + +#: apt-private/private-install.cc:320 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -"自動増加がユーザによって無効にされているため、MMap のサイズを増やせません。" +"いくつかのアーカイブを取得できません。apt-get update を実行するか --fix-" +"missing オプションを付けて試してみてください。" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "マウントポイント %s の状態を取得できません" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing とメディア交換は現在同時にはサポートされていません" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "CD-ROM の状態を取得するのに失敗しました" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "足りないパッケージを直すことができません。" + +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "インストールを中断します。" + +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"以下のパッケージは、全ファイルが別のパッケージで上書きされたため、\n" +"システムから消えました:" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "理解できない省略形式です: '%c'" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "注意: これは dpkg により自動でわざと行われれます。" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "設定ファイル %s をオープンできませんでした" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "" +"一連のものを削除するようになっていないので、AutoRemover を開始できません" -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "文法エラー %s:%u: ブロックが名前なしで始まっています。" +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" +"AutoRemover が、本来起きるべきでない何かを壊したようです。\n" +"apt にバグ報告を送ってください。" -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "文法エラー %s:%u: 不正なタグです" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "以下の情報がこの問題を解決するために役立つかもしれません:" -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "文法エラー %s:%u: 値の後に余分なゴミが入っています" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "内部エラー、AutoRemover が何かを破壊しました" -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "文法エラー %s:%u: 命令はトップレベルでのみ実行できます" +#: apt-private/private-install.cc:513 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "" +"以下のパッケージが自動でインストールされましたが、もう必要とされていません:" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-private/private-install.cc:517 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "文法エラー %s:%u: インクルードのネストが多すぎます" +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "" +"%lu つのパッケージが自動でインストールされましたが、もう必要とされていませ" +"ん:\n" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "文法エラー %s:%u: ここからインクルードされています" +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "これを削除するには 'apt-get autoremove' を利用してください。" -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "文法エラー %s:%u: 未対応の命令 '%s'" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "" +"以下の問題を解決するために 'apt-get -f install' を実行する必要があるかもしれ" +"ません:" -#: apt-pkg/contrib/configuration.cc:900 -#, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"文法エラー %s:%u: clear ディレクティブは、引数としてオプションツリーを必要と" -"します" +"未解決の依存関係です。'apt-get -f install' を実行してみてください (または解法" +"を明示してください)。" -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "文法エラー %s:%u: ファイルの最後に余計なゴミがあります" +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"インストールすることができないパッケージがありました。おそらく、あり得\n" +"ない状況を要求したか、(不安定版ディストリビューションを使用しているの\n" +"であれば) 必要なパッケージがまだ作成されていなかったり Incoming から移\n" +"動されていないことが考えられます。" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, c-format -msgid "No keyring installed in %s." -msgstr "%s にキーリングがインストールされていません。" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "壊れたパッケージ" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "コマンドラインオプション '%c' [%s から] は不明です。" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "以下の特別パッケージがインストールされます:" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "コマンドラインオプション %s を理解できません" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "提案パッケージ:" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "コマンドラインオプション %s は boolean ではありません" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "推奨パッケージ:" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "オプション %s には引数が必要です。" +#: apt-private/private-install.cc:825 +#, fuzzy, c-format +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "すでに %s に展開されたソースがあるため、展開をスキップします\n" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-private/private-install.cc:829 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "オプション %s: 設定項目には =<値> を指定する必要があります。" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-private/private-install.cc:841 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "オプション %s には '%s' ではなく整数の引数が必要です" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "オプション '%s' は長すぎます" +#: apt-private/private-install.cc:846 +#, fuzzy, c-format +msgid "%s is already the newest version.\n" +msgstr "%s はすでに保留に設定されています。\n" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-private/private-install.cc:894 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "%s を解釈することができません。true か false を試してください。" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-private/private-install.cc:899 #, c-format -msgid "Invalid operation %s" -msgstr "不正な操作 %s" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "" -#: cmdline/apt-cache.cc:149 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "パッケージ %s のバージョン %s には解決不可能な依存関係があります:\n" - -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "パッケージ名総数: " - -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "パッケージ構造総数: " - -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " 通常パッケージ: " - -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " 純粋仮想パッケージ: " - -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " 単一仮想パッケージ: " - -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " 複合仮想パッケージ: " +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " 欠落: " +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "%lu 個のパッケージが完全にインストールまたは削除されていません。\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "個別バージョン総数: " +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "一覧表示" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "個別説明総数: " +#: apt-private/private-list.cc:164 +#, fuzzy, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +"追加レコードが %i 件あります。表示するには '-a' スイッチを付けてください。" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "依存関係総数: " +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "依存関係を解決しています ..." -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "バージョン/ファイル関係総数: " +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " 失敗しました。" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "説明/ファイル関係総数: " +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "依存関係を訂正できません" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "提供マッピング総数: " +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "アップグレードセットを最小化できません" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Glob 文字列の総数: " +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " 完了" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "総依存関係・バージョン容量: " +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "" +"これらを直すためには 'apt-get -f install' を実行する必要があるかもしれませ" +"ん。" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "総空き容量: " +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "未解決の依存関係があります。-f オプションを試してください。" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "総占有容量: " +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "不明" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 +#: apt-private/private-output.cc:234 #, c-format -msgid "Package file %s is out of sync." -msgstr "Package ファイル %s が同期していません。" +msgid "[installed,upgradable to: %s]" +msgstr "[インストール済み、%s にアップグレード可]" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "パッケージが見つかりません" +#: apt-private/private-output.cc:238 +msgid "[installed,local]" +msgstr "[インストール済み、ローカル]" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "検索パターンはちょうど 1 つだけ指定してください" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "[インストール済み、自動削除可]" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" -"このコマンドは時代遅れです。'apt-mark showauto' を代わりに使用してください。" +#: apt-private/private-output.cc:243 +msgid "[installed,automatic]" +msgstr "[インストール済み、自動]" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "パッケージファイル:" +#: apt-private/private-output.cc:245 +msgid "[installed]" +msgstr "[インストール済み]" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "キャッシュが同期しておらず、パッケージファイルを相互参照できません" +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "[%s からアップグレード可]" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Pin されたパッケージ:" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "[設定未完了]" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(見つかりません)" +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "しかし、%s はインストールされています" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " インストールされているバージョン: " +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "しかし、%s はインストールされようとしています" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " 候補: " +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "しかし、インストールすることができません" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(なし)" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "しかし、これは仮想パッケージです" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " パッケージ Pin: " +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "しかし、インストールされていません" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " バージョンテーブル:" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "しかし、インストールされようとしていません" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s for %s コンパイル日時: %s %s\n" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " または" -#: cmdline/apt-cache.cc:1749 -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" -msgstr "" -"使用方法: apt-cache [オプション] コマンド\n" -" apt-cache [オプション] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [オプション] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache は APT のバイナリキャッシュファイルを操作したり、そこから情\n" -"報を検索したりするための低レベルのツールです\n" -"\n" -"コマンド:\n" -" gencaches - パッケージおよびソースキャッシュを生成する\n" -" showpkg - 単一パッケージの一般情報を表示する\n" -" showsrc - ソースレコードを表示する\n" -" stats - 基本ステータス情報を表示する\n" -" dump - すべてのファイルを簡単な形式で表示する\n" -" dumpavail - available ファイルを標準出力に出力する\n" -" unmet - 未解決の依存関係を表示する\n" -" search - 正規表現パターンによってパッケージ一覧を検索する\n" -" show - パッケージの情報を表示する\n" -" depends - パッケージの生の依存情報を表示する\n" -" rdepends - パッケージの生の逆依存情報を表示する\n" -" pkgnames - システム内のすべてのパッケージ名一覧を表示する\n" -" dotty - GraphViz 用のパッケージグラフを生成する\n" -" xvcg - xvcg 用のパッケージグラフを生成する\n" -" policy - ポリシー設定情報を表示する\n" -"\n" -"オプション:\n" -" -h このヘルプを表示する\n" -" -p=? パッケージキャッシュ\n" -" -s=? ソースキャッシュ\n" -" -q プログレス表示をしない\n" -" -i umnet コマンドで重要な依存情報のみを表示する\n" -" -c=? 指定した設定ファイルを読み込む\n" -" -o=? 指定した設定オプションを読み込む (例: -o dir::cache=/tmp)\n" -"詳細は、apt-cache(8) や apt.conf(5) のマニュアルページを参照してください。\n" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "以下のパッケージには満たせない依存関係があります:" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "このディスクに、'Debian 5.0.3 Disk 1' のような名前を付けてください" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "以下のパッケージが新たにインストールされます:" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "ディスクをドライブに入れて Enter キーを押してください" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "以下のパッケージは「削除」されます:" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "'%s' を '%s' にマウントできませんでした" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "以下のパッケージは保留されます:" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" -"CD-ROM が自動検出されなかったか、デフォルトで利用するマウントポイントに見当た" -"りませんでした。\n" -"CD-ROM のマウントポイントを設定するために --cdrom オプションを試すことができ" -"ます。\n" -"CD-ROM の自動検出およびマウントポイントの詳細については、'man apt-cdrom' を参" -"照してください。" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "以下のパッケージはアップグレードされます:" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "" -"あなたの持っている CD セットの残り全部に、この手順を繰り返してください。" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "以下のパッケージは「ダウングレード」されます:" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "引数がペアではありません" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "以下の変更禁止パッケージは変更されます:" + +#: apt-private/private-output.cc:668 +#, c-format +msgid "%s (due to %s) " +msgstr "%s (%s のため) " -#: cmdline/apt-config.cc:89 +#: apt-private/private-output.cc:676 msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"使用方法: apt-config [オプション] コマンド\n" -"\n" -"apt-config は APT の設定ファイルを読み込むための簡単なツールです\n" -"\n" -"コマンド:\n" -" shell - シェルモード\n" -" dump - 設定情報を表示する\n" -"\n" -"オプション:\n" -" -h このヘルプを表示する\n" -" -c=? 指定した設定ファイルを読み込む\n" -" -o=? 指定した設定オプションを適用する (例: -o dir::cache=/tmp)\n" +"警告: 以下の不可欠パッケージが削除されます。\n" +"何をしようとしているか本当にわかっていない場合は、実行してはいけません!" -#: cmdline/apt-get.cc:245 +#: apt-private/private-output.cc:707 #, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "アーキテクチャ '%s' 用のパッケージは見つかりませんでした" +msgid "%lu upgraded, %lu newly installed, " +msgstr "アップグレード: %lu 個、新規インストール: %lu 個、" -#: cmdline/apt-get.cc:327 +#: apt-private/private-output.cc:711 #, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "パッケージ '%s' のバージョン '%s' は見つかりませんでした" +msgid "%lu reinstalled, " +msgstr "再インストール: %lu 個、" -#: cmdline/apt-get.cc:330 +#: apt-private/private-output.cc:713 #, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "リリース '%2$s' にはパッケージ '%1$s' は見つかりませんでした" +msgid "%lu downgraded, " +msgstr "ダウングレード: %lu 個、" -#: cmdline/apt-get.cc:367 +#: apt-private/private-output.cc:715 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "'%2$s' の代わりに '%1$s' をソースパッケージとして選出しています\n" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "削除: %lu 個、保留: %lu 個。\n" -#: cmdline/apt-get.cc:423 +#: apt-private/private-output.cc:719 #, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "パッケージ '%2$s' のバージョン '%1$s' は見つかりませんでした" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu 個のパッケージが完全にインストールまたは削除されていません。\n" -#: cmdline/apt-get.cc:454 +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[Y/n]" + +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[y/N]" + +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "Y" + +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" + +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Couldn't find package %s" -msgstr "パッケージ %s が見つかりません" +msgid "Regex compilation error - %s" +msgstr "正規表現の展開エラー - %s" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "update コマンドは引数をとりません" + +#: apt-private/private-update.cc:90 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s は手動でインストールしたと設定されました。\n" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" + +#: apt-private/private-show.cc:156 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s は自動でインストールしたと設定されました。\n" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +"追加レコードが %i 件あります。表示するには '-a' スイッチを付けてください。" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "実際のパッケージではありません (仮想)" + +#: apt-private/private-main.cc:32 msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -"このコマンドは時代遅れです。'apt-mark auto' および 'apt-mark manual' を代わり" -"に使用してください。" +"注意: これはシミュレーションにすぎません!\n" +" apt-get は実際の実行に root 権限を必要とします。\n" +" ロックが非アクティブであることから、今この時点の状態に妥当性が\n" +" あるとは言い切れないことに注意してください!" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "内部エラー、問題リゾルバが何かを破壊しました" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "警告: 以下のパッケージは認証されていません!" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "ダウンロードディレクトリをロックできません" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "認証の警告は上書きされました。\n" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "" -"ソースを取得するには少なくとも 1 つのパッケージ名を指定する必要があります" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "いくつかのパッケージを認証できませんでした" + +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "検証なしにこれらのパッケージをインストールしますか?" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Unable to find a source package for %s" -msgstr "%s のソースパッケージが見つかりません" +msgid "Failed to fetch %s %s\n" +msgstr "%s の取得に失敗しました %s\n" -#: cmdline/apt-get.cc:786 +#: apt-private/private-sources.cc:58 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +msgid "Failed to parse %s. Edit again? " +msgstr "%s の解析に失敗しました。再編集しますか? " + +#: apt-private/private-sources.cc:70 +#, c-format +msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -"注意: '%s' パッケージは以下の場所の '%s' バージョン制御システムで保守されてい" -"ます:\n" -"%s\n" +"'%s' ファイルが変更されています。「apt-get update」を実行してください。" -#: cmdline/apt-get.cc:791 +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "全文検索" + +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "アップグレードパッケージを検出しています ... " + +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "完了" + +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "ヒット " + +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "取得:" + +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "無視 " + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "エラー " + +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "%sB を %s で取得しました (%sB/s)\n" + +#: apt-private/acqprogress.cc:236 +#, c-format +msgid " [Working]" +msgstr " [処理中]" + +#: apt-private/acqprogress.cc:297 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"パッケージの最新の (まだリリースされていないかもしれない) 更新を取得するに" -"は、\n" -"bzr branch %s\n" -"を使用してください。\n" +"メディア変更: \n" +" '%s'\n" +"とラベルの付いたディスクをドライブ '%s' に入れて Enter キーを押してください\n" -#: cmdline/apt-get.cc:843 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "すでにダウンロードされたファイル '%s' をスキップします\n" +msgid "Unable to read %s" +msgstr "%s を読み込むことができません" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "%s の空き領域を測定できません" +msgid "Unable to change to %s" +msgstr "%s へ変更することができません" -#: cmdline/apt-get.cc:882 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "You don't have enough free space in %s" -msgstr "%s に充分な空きスペースがありません" +msgid "No mirror file '%s' found " +msgstr "ミラーファイル '%s' が見つかりません " -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "%2$sB 中 %1$sB のソースアーカイブを取得する必要があります。\n" +msgid "Can not read mirror file '%s'" +msgstr "ミラーファイル '%s' を読み込めません" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 +#: methods/mirror.cc:315 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "%sB のソースアーカイブを取得する必要があります。\n" +msgid "No entry found in mirror file '%s'" +msgstr "ミラーファイル '%s' のエントリが見つかりません" -#: cmdline/apt-get.cc:902 +#: methods/mirror.cc:445 #, c-format -msgid "Fetch source %s\n" -msgstr "ソース %s を取得\n" +msgid "[Mirror: %s]" +msgstr "[ミラー: %s]" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "いくつかのアーカイブの取得に失敗しました。" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "子プロセスへの IPC パイプの作成に失敗しました" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "ダウンロードオンリーモードでパッケージのダウンロードが完了しました" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "途中で接続がクローズされました" -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "すでに %s に展開されたソースがあるため、展開をスキップします\n" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "不正なデフォルト設定です!" -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "展開コマンド '%s' が失敗しました。\n" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Enter キーを押すと続行します。" -#: cmdline/apt-get.cc:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "" -"'dpkg-dev' パッケージがインストールされていることを確認してください。\n" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "過去にダウンロードした .deb ファイルを削除しますか?" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "ビルドコマンド '%s' が失敗しました。\n" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "展開中に何らかのエラーが発生しました。インストールされたパッケージを" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "子プロセスが失敗しました" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "設定します。これにより、エラーが複数出るか、依存関係の欠如に" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "" -"ビルド依存関係をチェックするパッケージを少なくとも 1 つ指定する必要があります" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "よるエラーが出るかもしれません。これには問題はなく、上記のメッセージ" -#: cmdline/apt-get.cc:1054 -#, c-format +#: dselect/install:105 msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" -"%s に利用可能なアーキテクチャ情報がありません。セットアップのために apt." -"conf(5) の APT::Architectures を参照してください。" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "が重要です。これを修正して「導入」を再度実行してください" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "%s のビルド依存情報を取得できません" +#: dselect/update:30 +msgid "Merging available information" +msgstr "入手可能情報をマージしています" -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s にはビルド依存情報が指定されていません。\n" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "リンクされているノードで DropNode が呼ばれました" -#: cmdline/apt-get.cc:1271 -#, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"パッケージ %3$s が '%4$s' パッケージで許されていないため、%2$s に対する %1$s " -"の依存関係を満たすことができません" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "ハッシュ要素を特定することができません!" -#: cmdline/apt-get.cc:1289 -#, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" -"パッケージ %3$s が見つからないため、%2$s に対する %1$s の依存関係を満たすこと" -"ができません" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "diversion の割り当てに失敗しました" -#: cmdline/apt-get.cc:1312 -#, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"%2$s の依存関係 %1$s を満たすことができません: インストールされた %3$s パッ" -"ケージは新しすぎます" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "AddDiversion での内部エラー" -#: cmdline/apt-get.cc:1351 +#: apt-inst/filelist.cc:477 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"パッケージ %3$s の候補バージョンはバージョンについての要求を満たせないた" -"め、%2$s に対する %1$s の依存関係を満たすことができません" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "%s -> %s と %s/%s の diversion を上書きしようとしています" -#: cmdline/apt-get.cc:1357 +#: apt-inst/filelist.cc:506 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "" -"パッケージ %3$s の候補バージョンが存在しないため、%2$s に対する %1$s の依存関" -"係を満たすことができません" +msgid "Double add of diversion %s -> %s" +msgstr "%s -> %s の diversion が二重に追加されています" -#: cmdline/apt-get.cc:1380 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "%2$s の依存関係 %1$s を満たすことができません: %3$s" +msgid "Duplicate conf file %s/%s" +msgstr "設定ファイル %s/%s が重複しています" -#: cmdline/apt-get.cc:1395 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "%s のビルド依存関係を満たすことができませんでした。" - -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "ビルド依存関係の処理に失敗しました" +msgid "The path %s is too long" +msgstr "パス %s は長すぎます" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-inst/extract.cc:132 #, c-format -msgid "Changelog for %s (%s)" -msgstr "%s (%s) の変更履歴" +msgid "Unpacking %s more than once" +msgstr "%s を複数回展開しています" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "サポートされているモジュール:" +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "ディレクトリ %s は divert されています" -#: cmdline/apt-get.cc:1632 -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" msgstr "" -"使用法: apt-get [オプション] コマンド\n" -" apt-get [オプション] install|remove パッケージ名1 [パッケージ名" -"2 ...]\n" -" apt-get [オプション] source パッケージ名1 [パッケージ名2 ...]\n" -"\n" -"apt-get は、パッケージをダウンロード/インストールするための簡単なコマ\n" -"ンドラインインタフェースです。もっともよく使われるコマンドは、update \n" -"と install です。\n" -"\n" -"コマンド:\n" -" update - 新しいパッケージリストを取得する\n" -" upgrade - アップグレードを行う\n" -" install - 新規パッケージをインストールする (pkg は libc6.deb ではなく " -"libc6 のように指定する)\n" -" remove - パッケージを削除する\n" -" autoremove - 自動インストールされ使われていないすべてのパッケージを削除す" -"る\n" -" purge - 設定ファイルまで含めてパッケージを削除する\n" -" source - ソースアーカイブをダウンロードする\n" -" build-dep - ソースパッケージの構築依存関係を設定する\n" -" dist-upgrade - ディストリビューションをアップグレードする (apt-get(8) を参" -"照)\n" -" dselect-upgrade - dselect の選択に従う\n" -" clean - ダウンロードしたアーカイブファイルを削除する\n" -" autoclean - ダウンロードした古いアーカイブファイルを削除する\n" -" check - 壊れた依存関係がないかチェックする\n" -" changelog - 指定のパッケージの変更履歴をダウンロードして表示する\n" -" download - バイナリパッケージをカレントディレクトリにダウンロードする\n" -"\n" -"オプション:\n" -" -h このヘルプを表示する\n" -" -q ログファイルに出力可能な形式にする - プログレス表示をしない\n" -" -qq エラー以外は表示しない\n" -" -d ダウンロードのみ行う - アーカイブのインストールや展開は行わない\n" -" -s 実際には実行しない。実行シミュレーションのみ行う\n" -" -y すべての問い合わせに Yes で答え、プロンプトは返さない\n" -" -f 整合性チェックで失敗しても処理を続行する\n" -" -m アーカイブが存在しない場合も続行する\n" -" -u アップグレードされるパッケージも表示する\n" -" -b ソースパッケージを取得し、ビルドを行う\n" -" -V 冗長なバージョンナンバを表示する\n" -" -c=? 指定した設定ファイルを読み込む\n" -" -o=? 任意の設定オプションを指定する (例 -o dir::cache=/tmp)\n" -"さらなる情報やオプションについては、マニュアルページ\n" -"apt-get(8)、sources.list(5)、apt.conf(5) を参照してください。\n" -" この APT は Super Cow Powers 化されています。\n" +"このパッケージは diversion のターゲットの %s/%s に書き込もうとしています" + +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "diversion パスが長すぎます" -#: cmdline/apt-helper.cc:35 -msgid "Must specify at least one pair url/filename" -msgstr "少なくとも URL / ファイル名を 1 組指定する必要があります" +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 +#, c-format +msgid "Failed to stat %s" +msgstr "%s の状態を取得するのに失敗しました" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "ダウンロード失敗" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "%s を %s に名前変更できませんでした" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" -"使用法: apt-helper [オプション] コマンド\n" -" apt-helper [オプション] download-file uri 目標パス\n" -"\n" -"apt-helper は apt の内部ヘルパーです\n" -"\n" -"コマンド:\n" -" download-file - 指定した uri を目標パスにダウンロードする\n" -"\n" -" この APT helper は Super Meep Powers 化されています。\n" +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "ディレクトリ %s が非ディレクトリに置換されようとしています" -#: cmdline/apt-mark.cc:68 +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "ハッシュバケツ内でノードを特定するのに失敗しました" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "パスが長すぎます" + +#: apt-inst/extract.cc:421 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s をインストールされていないものとしてマークできません\n" +msgid "Overwrite package match with no version for %s" +msgstr "%s に対するバージョンのないパッケージマッチを上書きします" -#: cmdline/apt-mark.cc:74 +#: apt-inst/extract.cc:438 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s は手動でインストールしたとすでに設定されています。\n" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "ファイル %s/%s がパッケージ %s のものを上書きします" -#: cmdline/apt-mark.cc:76 +#: apt-inst/extract.cc:498 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s は自動でインストールしたとすでに設定されています。\n" +msgid "Unable to stat %s" +msgstr "%s の状態を取得できません" -#: cmdline/apt-mark.cc:241 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s はすでに保留に設定されています。\n" +msgid "Failed to write file %s" +msgstr "ファイル %s の書き込みに失敗しました" -#: cmdline/apt-mark.cc:243 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s はすでに保留されていません。\n" +msgid "Failed to close file %s" +msgstr "%s のクローズに失敗しました" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "%s set on hold.\n" -msgstr "%s は保留に設定されました。\n" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "'%s' メンバーがないため、正しい DEB アーカイブではありません" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "%s の保留を解除しました。\n" +msgid "Internal error, could not locate member %s" +msgstr "内部エラー、メンバー %s を特定できません" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "dpkg の実行に失敗しました。root 権限で実行していますか?" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "解析できないコントロールファイル" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" -"Usage: apt-mark [オプション] {auto|manual} パッケージ1 [パッケージ2 ...]\n" -"\n" -"apt-mark は、パッケージを手動または自動でインストールされたものとしてマーク\n" -"する簡単なコマンドラインインターフェイスです。マークの一覧表示もできます。\n" -"\n" -"コマンド:\n" -" auto - 指定のパッケージを自動でインストールされたものとしてマークす" -"る\n" -" manual - 指定のパッケージを手動でインストールしたものとしてマークす" -"る\n" -" hold - パッケージを保留としてマークする\n" -" unhold - パッケージの保留を解除する\n" -" showauto - 自動的にインストールされたパッケージの一覧を表示する\n" -" showmanual - 手作業でインストールしたパッケージの一覧を表示する\n" -" showhold - 保留されているパッケージの一覧を表示する\n" -"\n" -"オプション:\n" -" -h このヘルプを表示する\n" -" -q ログファイルに出力可能な形式にする - プログレス表示をしない\n" -" -qq エラー以外は表示しない\n" -" -s 実際には実行しない。実行シミュレーションのみ行う\n" -" -f 指定のファイルを使って自動/手動のマーキングを読み書きする\n" -" -c=? 指定した設定ファイルを読み込む\n" -" -o=? 任意の設定オプションを指定する (例 -o dir::cache=/tmp)\n" -"さらなる情報については、マニュアルページ apt-mark(8) および apt.conf(5) を参" -"照してください。" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "不正なアーカイブ署名" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" -"使用法: apt [オプション] コマンド\n" -"\n" -"apt 用コマンドラインインターフェイス\n" -"基本コマンド: \n" -" list - パッケージ名を基にパッケージの一覧を表示\n" -" search - パッケージの説明を検索\n" -" show - パッケージの詳細を表示\n" -"\n" -" update - 利用可能パッケージの一覧を更新\n" -"\n" -" install - パッケージをインストール\n" -" remove - パッケージを削除\n" -"\n" -" upgrade - パッケージをインストール/更新してシステムをアップグレード\n" -" full-upgrade - パッケージを削除/インストール/更新してシステムをアップグレー" -"ド\n" -"\n" -" edit-sources - ソース情報ファイルを編集\n" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "アーカイブメンバーヘッダの読み込みに失敗しました" -#: methods/cdrom.cc:203 +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "CD-ROM データベース %s を読み込むことができません" +msgid "Invalid archive member header %s" +msgstr "不正なアーカイブメンバーヘッダ %s" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"この CD-ROM を APT に認識させるには apt-cdrom を使用してください。新しい CD-" -"ROM を追加するために apt-get update は使用できません。" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "不正なアーカイブメンバーヘッダ" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD が違います" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "アーカイブが不足しています" -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "%s の CD-ROM は使用中のためアンマウントすることができません。" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "アーカイブヘッダの読み込みに失敗しました" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "ディスクが見つかりません。" +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "パイプの生成に失敗しました" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "ファイルが見つかりません" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "gzip の実行に失敗しました" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "状態の取得に失敗しました" +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "壊れたアーカイブ" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "変更時刻の設定に失敗しました" +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "tar チェックサム検証が失敗しました。アーカイブが壊れています" + +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "未知の TAR ヘッダタイプ %u、メンバー %s" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "不正な URI です。ローカルの URI は // で始まってはいけません" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "進捗: [%3i%%]" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "ログインしています" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "dpkg を実行しています" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "ピアネームを決定することができません" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "パッケージングシステム '%s' はサポートされていません" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "ローカルネームを決定することができません" +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "適切なパッケージシステムタイプを特定できません" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "サーバから接続を拒絶されました。応答: %s" +msgid "Wrote %i records.\n" +msgstr "%i レコードを書き込みました。\n" -#: methods/ftp.cc:225 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER 失敗、サーバ応答: %s" +msgid "Wrote %i records with %i missing files.\n" +msgstr "%i レコードを書き込みました。%i 個のファイルが存在しません。\n" -#: methods/ftp.cc:232 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS 失敗、サーバ応答: %s" +msgid "Wrote %i records with %i mismatched files\n" +msgstr "%i レコードを書き込みました。%i 個の適合しないファイルがあります。\n" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" -"プロキシサーバが指定されていますが、ログインスクリプトが設定されていません。" -"Acquire::ftp::ProxyLogin が空です。" +"%i レコードを書き込みました。%i 個のファイルが見つからず、%i 個の適合しない" +"ファイルがあります。\n" -#: methods/ftp.cc:280 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "ログインスクリプトのコマンド '%s' 失敗、サーバ応答: %s" +msgid "Can't find authentication record for: %s" +msgstr "認証レコードが見つかりません: %s" -#: methods/ftp.cc:306 +#: apt-pkg/indexcopy.cc:521 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE 失敗、サーバ応答: %s" +msgid "Hash mismatch for: %s" +msgstr "ハッシュサムが適合しません: %s" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "接続タイムアウト" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"パッケージリストまたはステータスファイルを解釈またはオープンすることができま" +"せん。" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "サーバが接続を切断しました" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "" +"これらの問題を解決するためには apt-get update を実行する必要があるかもしれま" +"せん" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "レスポンスがバッファをオーバフローさせました。" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "ソースのリストを読むことができません。" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "プロトコルが壊れています" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "空のパッケージキャッシュ" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "ソケットを作成できません" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "パッケージキャッシュファイルが壊れています" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "データソケットへ接続できませんでした。接続がタイムアウトしました" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "このパッケージキャッシュファイルは互換性がないバージョンです" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "失敗" +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "パッケージキャッシュファイルが壊れています。短かすぎます" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "パッシブソケットに接続できません。" +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "この APT はバージョニングシステム '%s' をサポートしていません" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo はリスニングソケットを取得できませんでした" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "パッケージキャッシュが異なるアーキテクチャ用に構築されています" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "ソケットをバインドできませんでした" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "依存" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "ソケットをリスンできませんでした" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "先行依存" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "ソケットの名前を特定できませんでした" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "提案" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "PORT コマンドを送信できません" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "推奨" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "未知のアドレスファミリ %u (AF_*)" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "競合" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT に失敗しました。サーバ応答: %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "置換" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "データソケット接続タイムアウト" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "廃止" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "接続を accept できません" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "破壊" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "ファイルのハッシュでの問題" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "拡張" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "ファイルを取得できません。サーバ応答 '%s'" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "重要" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "データソケットタイムアウト" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "要求" -#: methods/ftp.cc:935 +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "標準" + +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "任意" + +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "特別" + +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "データ転送に失敗しました。サーバ応答 '%s'" +msgid "The method driver %s could not be found." +msgstr "メソッドドライバ %s が見つかりません。" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "問い合わせ" +#: apt-pkg/acquire-worker.cc:118 +#, c-format +msgid "Is the package %s installed?" +msgstr "パッケージ %s はインストールされていますか?" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "呼び出せません" +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "メソッド %s が正常に開始しませんでした" -#: methods/connect.cc:76 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "Connecting to %s (%s)" -msgstr "%s (%s) へ接続しています" +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"'%s' とラベルの付いたディスクをドライブ '%s' に入れて Enter キーを押してくだ" +"さい。" -#: methods/connect.cc:87 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Index file type '%s' is not supported" +msgstr "インデックスファイルのタイプ '%s' はサポートされていません" + +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "依存関係ツリーを作成しています" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "候補バージョン" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "依存関係の生成" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "状態情報を読み取っています" -#: methods/connect.cc:94 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "%s (f=%u t=%u p=%u) に対するソケットを作成できません" +msgid "Failed to open StateFile %s" +msgstr "状態ファイル %s のオープンに失敗しました" -#: methods/connect.cc:100 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "%s:%s (%s) への接続を開始できません。" +msgid "Failed to write temporary StateFile %s" +msgstr "一時状態ファイル %s の書き込みに失敗しました" -#: methods/connect.cc:108 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "%s:%s (%s) へ接続できませんでした。接続がタイムアウトしました" +msgid "rename failed, %s (%s -> %s)." +msgstr "名前の変更に失敗しました。%s (%s -> %s)" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "%s:%s (%s) へ接続できませんでした。" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "ハッシュサムが適合しません" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 -#, c-format -msgid "Connecting to %s" -msgstr "%s へ接続しています" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "サイズが適合しません" -#: methods/connect.cc:180 methods/connect.cc:199 -#, c-format -msgid "Could not resolve '%s'" -msgstr "'%s' を解決できませんでした" +#: apt-pkg/acquire-item.cc:173 +msgid "Invalid file format" +msgstr "不正なファイル形式" -#: methods/connect.cc:205 +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "'%s' が一時的に解決できません" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" +"期待されるエントリ '%s' が Release ファイル内に見つかりません (誤った " +"sources.list エントリか、壊れたファイル)" -#: methods/connect.cc:209 +#: apt-pkg/acquire-item.cc:1589 #, c-format -msgid "System error resolving '%s:%s'" -msgstr "'%s:%s' の解決中にシステムエラーが発生しました" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Release ファイル中の '%s' のハッシュサムを見つけられません" -#: methods/connect.cc:211 -#, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "'%s:%s' (%i - %s) の解決中に何か問題が起こりました" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "以下の鍵 ID に対して利用可能な公開鍵がありません:\n" -#: methods/connect.cc:258 +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "%s:%s へ接続できません:" - -#: methods/gpgv.cc:168 msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "内部エラー: 正しい署名ですが、鍵指紋を確定できません?!" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "少なくとも 1 つの不正な署名が発見されました。" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" +"%s の Release ファイルは期限切れ (%s 以来無効) です。このリポジトリからの更新" +"物は適用されません。" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -"署名を検証するための 'gpgv' の実行ができませんでした (gpgv はインストールされ" -"ていますか?)" +"ディストリビューションが競合しています: %s (%s を期待していたのに %s を取得し" +"ました)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1721 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -"クリアサインされたファイルが有効ではなく、'%s' を得ました (認証にネットワーク" -"が必要?)" - -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "gpgv の実行中に未知のエラーが発生" +"署名照合中にエラーが発生しました。リポジトリは更新されず、過去のインデックス" +"ファイルが使われます。GPG エラー: %s: %s\n" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "以下の署名が無効です:\n" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "GPG エラー: %s: %s" -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1859 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "公開鍵を利用できないため、以下の署名は検証できませんでした:\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "空のファイルは有効なアーカイブと認められません" - -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "ファイルへの書き込みでエラーが発生しました" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "リモート側で接続がクローズされてサーバからの読み込みに失敗しました" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"パッケージ %s のファイルの位置を特定できません。おそらくこのパッケージを手動" +"で修正する必要があります (存在しないアーキテクチャのため)。" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "サーバからの読み込みに失敗しました" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "'%2$s' のバージョン '%1$s' をダウンロードするソースが見つかりません" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "ファイルへの書き込みでエラーが発生しました" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"パッケージインデックスファイルが壊れています。パッケージ %s に Filename: " +"フィールドがありません。" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "select に失敗しました" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "インデックスファイルのタイプ '%s' はサポートされていません" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "接続タイムアウト" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "%s の状態を取得できません。" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "出力ファイルへの書き込みでエラーが発生しました" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "キャッシュに非互換なバージョニングシステムがあります" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "ヘッダの待機中です" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "%s を処理中にエラーが発生しました (%s%d)" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "不正なヘッダ行です" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "この APT が対応している以上の数のパッケージが指定されました。" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP サーバが不正なリプライヘッダを送信してきました" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "この APT が対応している以上の数のバージョンが要求されました。" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP サーバが不正な Content-Length ヘッダを送信してきました" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "この APT が対応している以上の数の説明が要求されました。" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP サーバが不正な Content-Range ヘッダを送信してきました" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "この APT が対応している以上の数の依存関係が発生しました。" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "HTTP サーバのレンジサポートが壊れています" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "パッケージ %s %s がファイル依存の処理中に見つかりませんでした" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "不明な日付フォーマットです" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "ソースパッケージリスト %s の状態を取得できません" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "不正なヘッダです" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "パッケージリストを読み込んでいます" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "接続失敗" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "ファイル提供情報を収集しています" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "内部エラー" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "%s に書き込めません" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "アップグレードパッケージを検出しています ... " +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "ソースキャッシュの保存中に IO エラーが発生しました" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "完了" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "ベンダブロック %s は鍵指紋を含んでいません" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "ソート中" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "リストディレクトリ %spartial が見つかりません。" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "一覧表示" +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "アーカイブディレクトリ %spartial が見つかりません。" -#: apt-private/private-list.cc:164 -#, fuzzy, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -"追加レコードが %i 件あります。表示するには '-a' スイッチを付けてください。" +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "ディレクトリ %s をロックできません" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "依存関係を解決しています ..." +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "ファイルを取得しています %li/%li (残り %s)" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " 失敗しました。" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "ファイルを取得しています %li/%li" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "依存関係を訂正できません" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"いくつかのインデックスファイルのダウンロードに失敗しました。これらは無視され" +"るか、古いものが代わりに使われます。" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "アップグレードセットを最小化できません" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "sources.list に 'ソース' URI を指定する必要があります" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " 完了" +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" +"APT::Default-Release の 値 '%s' は、そのようなリリースをソース中から利用でき" +"ないため、無効です" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." +#: apt-pkg/policy.cc:422 +#, c-format +msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -"これらを直すためには 'apt-get -f install' を実行する必要があるかもしれませ" -"ん。" +"不正なレコードがプリファレンスファイル %s に存在します。パッケージヘッダがあ" +"りません" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "未解決の依存関係があります。-f オプションを試してください。" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "pin タイプ %s を理解できませんでした" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "不明" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "pin で優先度 (または 0) が指定されていません" -#: apt-private/private-output.cc:234 +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 #, c-format -msgid "[installed,upgradable to: %s]" -msgstr "[インストール済み、%s にアップグレード可]" +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" +"'%s' の即時設定は動作しません。詳細については man 5 apt.conf の APT::" +"Immediate-Configure の項を参照してください。(%d)" -#: apt-private/private-output.cc:238 -msgid "[installed,local]" -msgstr "[インストール済み、ローカル]" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, c-format +msgid "Could not configure '%s'. " +msgstr "'%s' を設定できませんでした。" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "[インストール済み、自動削除可]" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"このインストールは、競合/先行依存のループが原因で、一時的に重要な不可欠パッ" +"ケージ %s を削除します。これは多くの場合に問題が起こる原因となります。本当に" +"これを行いたいなら、APT::Force-LoopBreak オプションを有効にしてください。" -#: apt-private/private-output.cc:243 -msgid "[installed,automatic]" -msgstr "[インストール済み、自動]" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "ソースリスト %2$s の %1$u 行目が長すぎます。" -#: apt-private/private-output.cc:245 -msgid "[installed]" -msgstr "[インストール済み]" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "CD-ROM をアンマウントしています ...\n" -#: apt-private/private-output.cc:249 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "[upgradable from: %s]" -msgstr "[%s からアップグレード可]" +msgid "Using CD-ROM mount point %s\n" +msgstr "CD-ROM マウントポイント %s を使用します\n" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" -msgstr "[設定未完了]" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "ディスクを待っています ...\n" -#: apt-private/private-output.cc:435 +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "CD-ROM をマウントしています ...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "確認しています... " + +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "but %s is installed" -msgstr "しかし、%s はインストールされています" +msgid "Stored label: %s\n" +msgstr "格納されたラベル: %s \n" -#: apt-private/private-output.cc:437 +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "ディスクのインデックスファイルを走査しています ...\n" + +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "but %s is to be installed" -msgstr "しかし、%s はインストールされようとしています" +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" +"%zu のパッケージインデックス、%zu のソースインデックス、%zu の翻訳インデック" +"ス、%zu の署名を見つけました\n" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "しかし、インストールすることができません" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" +"パッケージファイルを配置できません。Debian のディスクではないか、誤ったアーキ" +"テクチャではないでしょうか?" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "しかし、これは仮想パッケージです" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "ラベル '%s' を見つけました\n" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "しかし、インストールされていません" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "これは有効な名前ではありません。再試行してください。\n" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "しかし、インストールされようとしていません" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"このディスクは以下のように呼ばれます: \n" +"'%s'\n" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " または" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "パッケージリストをコピーしています ..." -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "以下のパッケージには満たせない依存関係があります:" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "新しいソースリストを書き込んでいます\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "以下のパッケージが新たにインストールされます:" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "このディスクのソースリストのエントリ:\n" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "以下のパッケージは「削除」されます:" +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"パッケージ %s を再インストールする必要がありますが、そのためのアーカイブを見" +"つけることができませんでした。" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "以下のパッケージは保留されます:" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"エラー、pkgProblemResolver::Resolve は停止しました。おそらく変更禁止パッケー" +"ジが原因です。" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "以下のパッケージはアップグレードされます:" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "問題を解決することができません。壊れた変更禁止パッケージがあります。" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "以下のパッケージは「ダウングレード」されます:" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "ソルバにシナリオを送信" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "以下の変更禁止パッケージは変更されます:" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "ソルバにリクエストを送信" -#: apt-private/private-output.cc:668 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (%s のため) " +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "解決を受け取る準備" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" -msgstr "" -"警告: 以下の不可欠パッケージが削除されます。\n" -"何をしようとしているか本当にわかっていない場合は、実行してはいけません!" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "外部ソルバが適切なエラーメッセージなしに失敗しました" -#: apt-private/private-output.cc:707 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "アップグレード: %lu 個、新規インストール: %lu 個、" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "外部ソルバを実行" -#: apt-private/private-output.cc:711 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%lu reinstalled, " -msgstr "再インストール: %lu 個、" +msgid "Unable to parse package file %s (1)" +msgstr "パッケージファイル %s を解釈することができません (1)" -#: apt-private/private-output.cc:713 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%lu downgraded, " -msgstr "ダウングレード: %lu 個、" +msgid "Unable to parse package file %s (2)" +msgstr "パッケージファイル %s を解釈することができません (2)" -#: apt-private/private-output.cc:715 +#: apt-pkg/indexrecords.cc:78 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "削除: %lu 個、保留: %lu 個。\n" +msgid "Unable to parse Release file %s" +msgstr "Release ファイル %s を解釈することができません" -#: apt-private/private-output.cc:719 +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu 個のパッケージが完全にインストールまたは削除されていません。\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[Y/n]" - -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[y/N]" +msgid "No sections in Release file %s" +msgstr "Release ファイル %s にセクションがありません" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "Y" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Release ファイル %s に Hash エントリがありません" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "N" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Release ファイル %s に無効な 'Valid-Until' エントリがあります" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "update コマンドは引数をとりません" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Release ファイル %s に無効な 'Date' エントリがあります" -#: apt-private/private-update.cc:90 +#: apt-pkg/sourcelist.cc:127 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "ソースリスト %2$s の %1$u 個目の区切りが不正です (URI parse)" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" +"ソースリスト %2$s の %1$lu 行目が不正です ([オプション] を解釈できません)" -#: apt-private/private-show.cc:156 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -"追加レコードが %i 件あります。表示するには '-a' スイッチを付けてください。" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "" +"ソースリスト %2$s の %1$lu 行目が不正です ([オプション] が短かすぎます)" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "実際のパッケージではありません (仮想)" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "" +"ソースリスト %2$s の %1$lu 行目が不正です ([%3$s] は割り当てられていません)" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "内部エラー、InstallPackages が壊れたパッケージで呼び出されました!" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "ソースリスト %2$s の %1$lu 行目が不正です ([%3$s にキーがありません)" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "パッケージを削除しなければなりませんが、削除が無効になっています。" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "" +"ソースリスト %2$s の %1$lu 行目が不正です ([%3$s] キー %4$s に値がありません)" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "内部エラー、調整が終わっていません" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "ソースリスト %2$s の %1$lu 行目が不正です (URI)" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"おっと、サイズがマッチしません。apt@packages.debian.org にメールしてください" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "ソースリスト %2$s の %1$lu 行目が不正です (dist)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "%2$sB 中 %1$sB のアーカイブを取得する必要があります。\n" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "ソースリスト %2$s の %1$lu 行目が不正です (URI parse)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "%sB のアーカイブを取得する必要があります。\n" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "ソースリスト %2$s の %1$lu 行目が不正です (absolute dist)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "この操作後に追加で %sB のディスク容量が消費されます。\n" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "ソースリスト %2$s の %1$lu 行目が不正です (dist parse)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "この操作後に %sB のディスク容量が解放されます。\n" +msgid "Opening %s" +msgstr "%s をオープンしています" -#: apt-private/private-install.cc:200 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "You don't have enough free space in %s." -msgstr "%s に充分な空きスペースがありません。" +msgid "Malformed line %u in source list %s (type)" +msgstr "ソースリスト %2$s の %1$u 行目が不正です (type)" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "問題が発生し、-y オプションが --force-yes なしで使用されました" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "ソースリスト %3$s の %2$u 行にあるタイプ '%1$s' は不明です" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Trivial Only が指定されましたが、これは簡単な操作ではありません。" +#: apt-pkg/sourcelist.cc:416 +#, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "ソースリスト %3$s の %2$u 個目の節 '%1$s' は不明です" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Yes, do as I say!" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "'%2$s' のリリース '%1$s' が見つかりませんでした" -#: apt-private/private-install.cc:222 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"重大な問題を引き起こす可能性のあることをしようとしています。\n" -"続行するには、'%s' というフレーズをタイプしてください。\n" -" ?] " +msgid "Version '%s' for '%s' was not found" +msgstr "'%2$s' のバージョン '%1$s' が見つかりませんでした" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "中断しました。" +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "タスク '%s' が見つかりません" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "続行しますか?" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "正規表現 '%s' ではパッケージは見つかりませんでした" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "いくつかのファイルの取得に失敗しました" +#: apt-pkg/cacheset.cc:615 +#, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "'%s' に一致するパッケージは見つかりませんでした" -#: apt-private/private-install.cc:320 +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "純粋な仮想パッケージのため、パッケージ '%s' のバージョンを選べません" + +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"いくつかのアーカイブを取得できません。apt-get update を実行するか --fix-" -"missing オプションを付けて試してみてください。" +"パッケージ '%s' のインストール済みまたは候補のバージョンはいずれも存在しない" +"ので選べません" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing とメディア交換は現在同時にはサポートされていません" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"純粋な仮想パッケージのため、パッケージ '%s' の最新バージョンを選べません" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "足りないパッケージを直すことができません。" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "候補が存在しないので、パッケージ %s の候補バージョンを選べません" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "インストールを中断します。" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"インストールされていないので、パッケージ %s のインストール済みバージョンを選" +"べません。" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -"以下のパッケージは、全ファイルが別のパッケージで上書きされたため、\n" -"システムから消えました:" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%li日 %li時間 %li分 %li秒" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "注意: これは dpkg により自動でわざと行われれます。" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%li時間 %li分 %li秒" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" -"一連のものを削除するようになっていないので、AutoRemover を開始できません" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%li分 %li秒" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"AutoRemover が、本来起きるべきでない何かを壊したようです。\n" -"apt にバグ報告を送ってください。" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%li秒" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "以下の情報がこの問題を解決するために役立つかもしれません:" +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "選択された %s が見つかりません" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "内部エラー、AutoRemover が何かを破壊しました" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "読み込み専用のロックファイル %s にロックは使用しません" -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "" -"以下のパッケージが自動でインストールされましたが、もう必要とされていません:" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "ロックファイル %s をオープンできません" -#: apt-private/private-install.cc:517 +#: apt-pkg/contrib/fileutl.cc:218 #, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "" -"%lu つのパッケージが自動でインストールされましたが、もう必要とされていませ" -"ん:\n" +msgid "Not using locking for nfs mounted lock file %s" +msgstr "nfs マウントされたロックファイル %s にはロックを使用しません" -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "これを削除するには 'apt-get autoremove' を利用してください。" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "ロック %s が取得できませんでした" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "" -"以下の問題を解決するために 'apt-get -f install' を実行する必要があるかもしれ" -"ません:" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "'%s' がディレクトリではないため、ファイルの一覧を作成できません" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "ディレクトリ '%2$s' の '%1$s' が通常ファイルではないため、無視します" + +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -"未解決の依存関係です。'apt-get -f install' を実行してみてください (または解法" -"を明示してください)。" +"ディレクトリ '%2$s' の '%1$s' がファイル名拡張子を持たないため、無視します" -#: apt-private/private-install.cc:638 +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"インストールすることができないパッケージがありました。おそらく、あり得\n" -"ない状況を要求したか、(不安定版ディストリビューションを使用しているの\n" -"であれば) 必要なパッケージがまだ作成されていなかったり Incoming から移\n" -"動されていないことが考えられます。" +"ディレクトリ '%2$s' の '%1$s' が無効なファイル名拡張子を持っているため、無視" +"します" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "壊れたパッケージ" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "子プロセス %s がセグメンテーション違反を受け取りました。" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "以下の特別パッケージがインストールされます:" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "子プロセス %s がシグナル %u を受け取りました。" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "提案パッケージ:" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "子プロセス %s がエラーコード (%u) を返しました" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "推奨パッケージ:" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "子プロセス %s が予期せず終了しました" -#: apt-private/private-install.cc:825 -#, fuzzy, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "すでに %s に展開されたソースがあるため、展開をスキップします\n" +#: apt-pkg/contrib/fileutl.cc:913 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "gzip ファイル %s のクローズ中に問題が発生しました" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" +msgid "Could not open file %s" +msgstr "ファイル %s をオープンできませんでした" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "" +msgid "Could not open file descriptor %d" +msgstr "ファイルデスクリプタ %d を開けませんでした" -#: apt-private/private-install.cc:846 -#, fuzzy, c-format -msgid "%s is already the newest version.\n" -msgstr "%s はすでに保留に設定されています。\n" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "子プロセス IPC の生成に失敗しました" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "以下の圧縮ツールの実行に失敗しました: " + +#: apt-pkg/contrib/fileutl.cc:1514 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "" +msgid "read, still have %llu to read but none left" +msgstr "読み込みが %llu 残っているはずですが、何も残っていません" -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "" +msgid "write, still have %llu to write but couldn't" +msgstr "あと %llu 書き込む必要がありますが、書き込むことができませんでした" + +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "ファイル %s のクローズ中に問題が発生しました" + +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "%s から %s へのファイル名変更中に問題が発生しました" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/fileutl.cc:1938 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" +msgid "Problem unlinking the file %s" +msgstr "ファイル %s の削除中に問題が発生しました" -#: apt-private/private-install.cc:947 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "%lu 個のパッケージが完全にインストールまたは削除されていません。\n" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "ファイルの同期中に問題が発生しました" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" -"注意: これはシミュレーションにすぎません!\n" -" apt-get は実際の実行に root 権限を必要とします。\n" -" ロックが非アクティブであることから、今この時点の状態に妥当性が\n" -" あるとは言い切れないことに注意してください!" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... エラー!" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "警告: 以下のパッケージは認証されていません!" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... 完了" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "認証の警告は上書きされました。\n" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "..." -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "いくつかのパッケージを認証できませんでした" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... %u%%" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "検証なしにこれらのパッケージをインストールしますか?" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "空のファイルを mmap できません" -#: apt-private/private-sources.cc:58 +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "%s の解析に失敗しました。再編集しますか? " +msgid "Couldn't duplicate file descriptor %i" +msgstr "ファイルデスクリプタ %i は重複できません" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/mmap.cc:119 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" -"'%s' ファイルが変更されています。「apt-get update」を実行してください。" - -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "全文検索" +msgid "Couldn't make mmap of %llu bytes" +msgstr "%llu バイトの mmap ができませんでした" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "ヒット " +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "mmap をクローズできません" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "取得:" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "mmap を同期できません" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "無視 " +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "%lu バイトの mmap ができませんでした" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "エラー " +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "ファイルの切り詰めに失敗しました" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "%sB を %s で取得しました (%sB/s)\n" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" +"動的 MMap が範囲を越えました。APT::Cache-Start の大きさを増やしてください。現" +"在値は %lu です (man 5 apt.conf を参照)。" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid " [Working]" -msgstr " [処理中]" +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "%lu バイトの上限に達しているため、MMap のサイズを増やせません。" -#: apt-private/acqprogress.cc:297 -#, c-format +#: apt-pkg/contrib/mmap.cc:449 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -"メディア変更: \n" -" '%s'\n" -"とラベルの付いたディスクをドライブ '%s' に入れて Enter キーを押してください\n" +"自動増加がユーザによって無効にされているため、MMap のサイズを増やせません。" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "No mirror file '%s' found " -msgstr "ミラーファイル '%s' が見つかりません " +msgid "Unable to stat the mount point %s" +msgstr "マウントポイント %s の状態を取得できません" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "CD-ROM の状態を取得するのに失敗しました" + +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "ミラーファイル '%s' を読み込めません" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "理解できない省略形式です: '%c'" -#: methods/mirror.cc:315 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "No entry found in mirror file '%s'" -msgstr "ミラーファイル '%s' のエントリが見つかりません" +msgid "Opening configuration file %s" +msgstr "設定ファイル %s をオープンできませんでした" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "[Mirror: %s]" -msgstr "[ミラー: %s]" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "文法エラー %s:%u: ブロックが名前なしで始まっています。" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "子プロセスへの IPC パイプの作成に失敗しました" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "文法エラー %s:%u: 不正なタグです" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "途中で接続がクローズされました" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "文法エラー %s:%u: 値の後に余分なゴミが入っています" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "不正なデフォルト設定です!" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "文法エラー %s:%u: 命令はトップレベルでのみ実行できます" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Enter キーを押すと続行します。" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "文法エラー %s:%u: インクルードのネストが多すぎます" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "過去にダウンロードした .deb ファイルを削除しますか?" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "文法エラー %s:%u: ここからインクルードされています" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "展開中に何らかのエラーが発生しました。インストールされたパッケージを" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "文法エラー %s:%u: 未対応の命令 '%s'" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "設定します。これにより、エラーが複数出るか、依存関係の欠如に" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "" +"文法エラー %s:%u: clear ディレクティブは、引数としてオプションツリーを必要と" +"します" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "よるエラーが出るかもしれません。これには問題はなく、上記のメッセージ" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "文法エラー %s:%u: ファイルの最後に余計なゴミがあります" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "が重要です。これを修正して「導入」を再度実行してください" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "%s にキーリングがインストールされていません。" -#: dselect/update:30 -msgid "Merging available information" -msgstr "入手可能情報をマージしています" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "コマンドラインオプション '%c' [%s から] は不明です。" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "リンクされているノードで DropNode が呼ばれました" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "コマンドラインオプション %s を理解できません" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "ハッシュ要素を特定することができません!" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "コマンドラインオプション %s は boolean ではありません" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "diversion の割り当てに失敗しました" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "オプション %s には引数が必要です。" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "AddDiversion での内部エラー" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "オプション %s: 設定項目には =<値> を指定する必要があります。" -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "%s -> %s と %s/%s の diversion を上書きしようとしています" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "オプション %s には '%s' ではなく整数の引数が必要です" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "%s -> %s の diversion が二重に追加されています" +msgid "Option '%s' is too long" +msgstr "オプション '%s' は長すぎます" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "設定ファイル %s/%s が重複しています" +msgid "Sense %s is not understood, try true or false." +msgstr "%s を解釈することができません。true か false を試してください。" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The path %s is too long" -msgstr "パス %s は長すぎます" +msgid "Invalid operation %s" +msgstr "不正な操作 %s" -#: apt-inst/extract.cc:132 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unpacking %s more than once" -msgstr "%s を複数回展開しています" +msgid "Installing %s" +msgstr "%s をインストールしています" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The directory %s is diverted" -msgstr "ディレクトリ %s は divert されています" +msgid "Configuring %s" +msgstr "%s を設定しています" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "" -"このパッケージは diversion のターゲットの %s/%s に書き込もうとしています" +msgid "Removing %s" +msgstr "%s を削除しています" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "diversion パスが長すぎます" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "%s を完全に削除しています" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to stat %s" -msgstr "%s の状態を取得するのに失敗しました" +msgid "Noting disappearance of %s" +msgstr "%s の消失を記録しています" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Failed to rename %s to %s" -msgstr "%s を %s に名前変更できませんでした" +msgid "Running post-installation trigger %s" +msgstr "インストール後トリガ %s を実行しています" -#: apt-inst/extract.cc:249 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "ディレクトリ %s が非ディレクトリに置換されようとしています" +msgid "Directory '%s' missing" +msgstr "ディレクトリ '%s' が見つかりません" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "ハッシュバケツ内でノードを特定するのに失敗しました" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "ファイル '%s' をオープンできませんでした" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "パスが長すぎます" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "%s を準備しています" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "%s に対するバージョンのないパッケージマッチを上書きします" +msgid "Unpacking %s" +msgstr "%s を展開しています" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "ファイル %s/%s がパッケージ %s のものを上書きします" +msgid "Preparing to configure %s" +msgstr "%s の設定を準備しています" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Unable to stat %s" -msgstr "%s の状態を取得できません" +msgid "Installed %s" +msgstr "%s をインストールしました" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to write file %s" -msgstr "ファイル %s の書き込みに失敗しました" +msgid "Preparing for removal of %s" +msgstr "%s の削除を準備しています" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Failed to close file %s" -msgstr "%s のクローズに失敗しました" +msgid "Removed %s" +msgstr "%s を削除しました" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "'%s' メンバーがないため、正しい DEB アーカイブではありません" +msgid "Preparing to completely remove %s" +msgstr "%s を完全に削除する準備をしています" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "内部エラー、メンバー %s を特定できません" +msgid "Completely removed %s" +msgstr "%s を完全に削除しました" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "解析できないコントロールファイル" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "ioctl(TIOCGWINSZ) に失敗しました" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "不正なアーカイブ署名" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, c-format +msgid "Can not write log (%s)" +msgstr "ログを書き込めません (%s)" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "アーカイブメンバーヘッダの読み込みに失敗しました" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "/dev/pts はマウントされていますか?" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "不正なアーカイブメンバーヘッダ %s" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "標準出力はターミナルですか?" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "不正なアーカイブメンバーヘッダ" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "操作はそれが完了する前に中断されました" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "アーカイブが不足しています" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "MaxReports にすでに達しているため、レポートは書き込まれません" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "アーカイブヘッダの読み込みに失敗しました" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "依存関係の問題 - 未設定のままにしています" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "パイプの生成に失敗しました" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"エラーメッセージは前の失敗から続くエラーであることを示しているので、レポート" +"は書き込まれません。" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "gzip の実行に失敗しました" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"エラーメッセージはディスクフルエラーであることを示しているので、レポートは書" +"き込まれません。" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "壊れたアーカイブ" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"エラーメッセージはメモリ超過エラーであることを示しているので、レポートは書き" +"込まれません。" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "tar チェックサム検証が失敗しました。アーカイブが壊れています" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"エラーメッセージはローカルシステムの問題であることを示しているので、レポート" +"は書き込まれません。" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"エラーメッセージは dpkg I/O エラーであることを示しているので、レポートは書き" +"込まれません。" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "未知の TAR ヘッダタイプ %u、メンバー %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"管理用ディレクトリ (%s) をロックできません。これを使う別のプロセスが動いてい" +"ませんか?" + +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "" +"管理用ディレクトリ (%s) をロックできません。root 権限で実行していますか?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"dpkg は中断されました。問題を修正するには '%s' を手動で実行する必要がありま" +"す。" + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "ロックされていません" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/km.po b/po/km.po index 5fe352783..8f8439414 100644 --- a/po/km.po +++ b/po/km.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_km\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2006-10-10 09:48+0700\n" "Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n" "Language-Team: Khmer <support@khmeros.info>\n" @@ -21,3122 +21,3123 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: KBabel 1.11.2\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "ប្រភេទ​ឯកសារ​លិបិក្រម​ '%s' មិនត្រូវ​បាន​គាំទ្រ​" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "មិន​អាច​អាន​ %s បានឡើយ" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "មិនអាច​ប្ដូរទៅ %s បានឡើយ" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "មិនអាច​ថ្លែង %s បានឡើយ ។" - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" - -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "" - -#: apt-pkg/init.cc:146 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "មិន​គាំទ្រ​ប្រព័ន្ធ​កញ្ចប់'%s' ឡើយ" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "មិនអាច​កំណត់​ប្រភេទ​ប្រព័ន្ធ​កញ្ចប់​ដែល​សមរម្យ​បានឡើយ" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "កញ្ចប់ %s កំណែ %s មាន​ភាព​អាស្រ័យ​មិន​ត្រូវ​គ្នា ៖\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "បានសរសេរ %i កំណត់ត្រា ។\n" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "ឈ្មោះ​កញ្ចប់​សរុប ៖ " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "បានសរសេរ %i កំណត់ត្រា​ជាមួយ​ %i ឯកសារ​ដែល​បាត់បង់ ។\n" +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "ឈ្មោះ​កញ្ចប់​សរុប ៖ " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "បានសរសេរ​ %i កំណត់ត្រា​ជាមួយួយ​ %i ឯកសារ​ដែល​មិន​បាន​ផ្គួផ្គង​\n" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " កញ្ចប់​ធម្មតា ៖ " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "បានសរសេរ %i កំណត់ត្រា​ជាមួយ​ %i ឯកសារ​ដែល​បាត់បង់​ និង​ %i ឯកសារ​ដែល​មិន​បាន​ផ្គួផ្គង​ ​\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " កញ្ចប់​និម្មិត​សុទ្ធ ៖ " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " កញ្ចប់​និម្មិត​តែ​មួយ ៖ " -#: apt-pkg/indexcopy.cc:521 -#, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "MD5Sum មិន​ផ្គួផ្គង​" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " កញ្ចប់​និម្មិត​លាយ ៖ " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "មិនអាច​រកឃើញ​កម្មវិធី​បញ្ជា​វិធីសាស្ត្រ %s ឡើយ ។" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " បាត់បង់ ៖ " -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "ពិនិត្យ​ប្រសិន​បើកញ្ចប់ 'dpkg-dev' មិន​ទាន់​បាន​ដំឡើង​ ។\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "កំណែ​ផ្សេងៗ​សរុប ៖ " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "វិធីសាស្ត្រ​ %s មិន​អាច​ចាប់​ផ្តើម​ត្រឹមត្រូវ​ទេ​" +#: cmdline/apt-cache.cc:327 +#, fuzzy +msgid "Total distinct descriptions: " +msgstr "កំណែ​ផ្សេងៗ​សរុប ៖ " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "សូម​បញ្ចូល​ស្លាក​ឌីស​ ៖ '%s' ក្នុង​ដ្រាយ​ '%s' ហើយ​សង្កត់​ចូល ។" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "ភាព​អាស្រ័យ​សរុប ៖ " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "បញ្ជី​កញ្ចប់​ ឬ ឯកសារ​ស្ថានភាព​មិន​អាចត្រូវបាន​​ញែក ​​ឬ ត្រូវបាន​បើកបានឡើយ​​ ។" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "ទំនាក់ទំនង កំណែ/ឯកសារ​សរុប ៖ " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "អ្នកប្រហែលជា​ចង់ភាពទាន់សម័យ apt-get ដើម្បី​កែ​បញ្ហា​ទាំងនេះ" +#: cmdline/apt-cache.cc:334 +#, fuzzy +msgid "Total Desc/File relations: " +msgstr "ទំនាក់ទំនង កំណែ/ឯកសារ​សរុប ៖ " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "មិន​អាច​អាន​បញ្ជី​ប្រភព​បាន​ឡើយ​ ។" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "ការផ្គូរផ្គង​ការផ្ដល់​សរុប ៖ " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "ឃ្លាំង​កញ្ចប់​ទទេ​" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "ខ្សែ​អក្សរ​សរុប​ ៖ " -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "​​ឯកសារ​ឃ្លាំង​កញ្ចប់​មិន​ត្រឹមត្រូវ​" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "ទំហំ​កំណែ​ភាព​អាស្រ័យ​សរុប ៖ " -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "ឯកសារ​ឃ្លាំងសម្ងាត់​​កញ្ចប់​ជាកំណែ​មិន​ត្រូវគ្នា​" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "ទំហំ slack សរុប ៖" -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "​​ឯកសារ​ឃ្លាំង​កញ្ចប់​មិន​ត្រឹមត្រូវ​" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "ទំហំ​សរុប​ដែល​ទុក​សម្រាប់ ៖ " -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "APT នេះ មិនគាំទ្រ​ប្រព័ន្ធ​ ការធ្វើកំណែនេះទេ​ '%s'" +msgid "Package file %s is out of sync." +msgstr "ឯកសារ​កញ្ចប់ %s នៅ​ខាងក្រៅ​ការ​ធ្វើសមកាលកម្ម ។" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "ឃ្លាំង​សម្ងាត់​កញ្ចប់ត្រូវ​បានស្ថាបនា់​សម្រាប់ស្ថាបត្យករ​ខុស​ៗគ្នា​​" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "រក​កញ្ចប់​មិន​ឃើញ" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "អាស្រ័យ​" +#: cmdline/apt-cache.cc:1254 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "អ្នក​ត្រូវ​តែ​ផ្ដល់​លំនាំ​មួយ​ដែល​ពិត​ប្រាកដ" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "អាស្រ័យជា​មុន" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "ផ្ដល់យោបល់​" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "មិន​អាច​កំណត់​ទីតាំង​កញ្ចប់ %s បានឡើយ" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "ផ្តល់​អនុសាសន៍​" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "ឯកសារ​កញ្ចប់ ៖" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "ប៉ះទង្គិច" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "ឃ្លាំង​សម្ងាត់​ឋិតនៅ​ក្រៅ​ការ​ធ្វើ​សមកាល​កម្ម ដែលមិន​អាច x-ref ឯកសារ​កញ្ចប់​បាន​ទេ" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "ជំនួស​" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "កញ្ចប់​ដែល​បាន​ខ្ទាស់ ៖" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "លែង​ប្រើ" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(រក​មិន​ឃើញ)" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " បាន​ដំឡើង ៖ " -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " សាកល្បង ៖ " -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "សំខាន់​" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(គ្មាន)" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "បាន​ទាមទារ" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " ខ្ទាស់​កញ្ចប់ ៖ " -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "គំរូ" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " តារាង​កំណែ ៖" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "ស្រេចចិត្ត" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, fuzzy, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s សម្រាប់ %s %s បាន​ចងក្រងនៅលើ​%s %s\n" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "បន្ថែម" - -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "ប្រភេទ​ឯកសារ​លិបិក្រម​ '%s' មិនត្រូវ​បាន​គាំទ្រ​" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"ការ​ប្រើប្រាស់ ៖ apt-cache [options] ពាក្យ​បញ្ជា\n" +" apt-cache [options] add file1 [file2 ...]\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache គឺ​ជា​ឧបករណ៍​កម្រិតទាប​​ដែល​ប្រើ​សម្រាប់​រៀបចំ​ប្រព័ន្ធ​គោល​ពីរ​របស់ APT\n" +"ឯកសារ​ឃ្លាំង​សម្ងាត់ និង ​ព័ត៌មាន​សំណួរ​ពី​ពួក​វា\n" +"\n" +"ពាក្យ​បញ្ជា\n" +" add - បន្ថែម​ឯកសារ​កញ្ចប់​ទៅ​ឃ្លាំង​សម្ងាត់​ប្រភព\n" +" gencaches - បង្កើត​ទាំង​​កញ្ចប់​និង​ឃ្លាំង​សម្ងាត់​ប្រភព\n" +" showpkg - បង្ហាញ​ព័ត៌មាន​ទូទៅ​ខ្លះ​សម្រាប់​កញ្ចប់​តែ​មួយ\n" +" showsrc - បង្ហាញ​កំណត់​ត្រា​ប្រភព\n" +" stats - បង្ហាញ​ស្ថិតិ​មូលដ្ឋាន​ខ្លះ\n" +" dump - បង្ហាញ​ឯកសារ​ទាំងមូល​ក្នុង​ទ្រង់ទ្រាយ​សង្ខេប\n" +" dumpavail - បោះពុម្ព​ឯកសារ​ដែល​មាន​ទៅ stdout\n" +" unmet - បង្ហាញ​ភាពអាស្រ័យ​ unmet \n" +" search - ស្វែងរក​កញ្ចប់​​លំនាំ regex \n" +" show - បង្ហាញ​កំណត់​ត្រា​កញ្ចប់​ដែល​អាច​អាន​បាន\n" +" depends - បង្ហាញព័ត៌មាន​​ភាពអាស្រ័យ​កញ្ចប់​មិន​ទាន់​ច្នៃ\n" +" rdepends - បង្ហាញ​ព័ត៌មាន​ភាពអាស្រ័យ​កញ្ចប់​បញ្ច្រាស់​\n" +" pkgnames - រាយ​ឈ្មោះ​កញ្ចប់​ទាំងអស់​\n" +" dotty - បង្កើត​កញ្ចប់​ក្រាហ្វ​សម្រាប់​ GraphViz\n" +" xvcg - បង្កើត​កញ្ចប់​ក្រាហ្វ​សម្រាប់​ xvcg\n" +" policy - បង្ហាញ ការរៀបចំ​គោលការណ៍​\n" +"\n" +"ជម្រើស​ ៖\n" +" -h នេះ​ជា​អត្ថជំនួយ​\n" +" -p=? ឃ្លាំងសម្ងាត់​កញ្ចប់​ ។\n" +" -s=? ឃ្លាំងសម្ងាត់​ប្រភព ។\n" +" -q ទ្រនិច​ចង្អុល​វឌ្ឍនភាព មិន​អនុញ្ញាត​ ។\n" +" -i បាន​តែ​បង្ហាញ ព័ត៌មាន​ deps ដែល​សំខាន់​សម្រាប់ពាក្យ​បញ្ជាដែល​ខុស​គ្នា  ​​​។\n" +" -c=? អាន​ការកំណត់​រចនាសម្ព័ន្ធ​ឯកសារ​នេះ \n" +" -o=? កំណត់​ជម្រើស​ការ​កំណត់​រចនា​សម្ព័ន្ធ​តាម​ចិត្ត ឧ. eg -o dir::cache=/tmp\n" +"មើល​ apt-cache(8) និង​ apt.conf(5) សម្រាប់​ព័ត៌មាន​បន្ថែម​​មាន​ក្នុង​ទំព័រ​សៀវភៅដៃ​ ។\n" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Regex កំហុស​ការចងក្រង​ - %s" +#: cmdline/apt-cdrom.cc:76 +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "សូម​ផ្ដល់​ឈ្មោះ​ឲ្យ​ថាស​នេះ ឧទាហរណ៍​ដូចជា 'ដេបៀន 2.1r1 ថាស​ទី ១' ជាដើម" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "ឃ្លាំងសម្ងាត់​មិន​ត្រូវ​គ្នា​នឹង ប្រព័ន្ធ ធ្វើកំណែ" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "សូម​បញ្ចូល​ថាស​ក្នុង​ដ្រាយ​ហើយ​ចុច​បញ្ចូល​" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "កំហុស​បានកើតឡើង​ខណៈពេល​កំពុង​ដំណើរការ​ %s (FindPkg)" +msgid "Failed to mount '%s' to '%s'" +msgstr "បរាជ័យ​ក្នុង​ការ​ប្តូរ​ឈ្មោះ %s ទៅ %s" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "អស្ចារ្យ អ្នក​មាន​ឈ្មោះ​កញ្ចប់​លើស​ចំនួន​ APT នេះ​ឆបគ្នា​​  ។" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "អស្ចារ្យ អ្នក​មាន​កំណែ​លើស​ចំនួន​ APT នេះ​ឆបគ្នា​ ។" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "ធ្វើដំណើរការ​នេះ​ម្តង​ទៀត​ សម្រាប់​ស៊ីឌី​ទាំងអស់​​ក្នុង​សំណុំ​របស់​អ្នក ។" -#: apt-pkg/pkgcachegen.cc:263 -#, fuzzy -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "អស្ចារ្យ អ្នក​មាន​កំណែ​លើស​ចំនួន​ APT នេះ​ឆបគ្នា​ ។" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "​អាគុយម៉ង់​មិន​មាន​គូ​ទេ" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "អស្ចារ្យ​, អ្នក​មាន​ភាពអាស្រ័យ​លើស​ចំនួន​ APT នេះ​ឆបគ្នា​ ។" +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"ការ​ប្រើប្រាស់ ៖ ពាក្យ​បញ្ជា​ apt-config [ជម្រើស] \n" +"\n" +"apt-config ជា​ឧបករណ៍​សាមញ្ញ​សម្រាប់​អាន​ឯកសារ​កំណត់រចនាសម្ព័ន្ធ​ APT \n" +"\n" +"ពាក្យ​បញ្ជា​ ៖\n" +" shell - របៀប​សែល​\n" +" dump - បង្ហាញ​ការកំណត់​រចនាសម្ព័ន្ធ​\n" +"\n" +"ជម្រើស​\n" +" -h អត្ថនទ​ជំនួយ​នេះ​\n" +" -c=? អាន​ឯកសារ​ការកំណត់​រចនាសម្ព័ន្ធ​នេះ \n" +" -o=? កំណត់​ជម្រើស​ការ​កំណត់​រចនា​សម្ព័ន្ធ​តាម​ចិត្ត ឧ. -o dir::cache=/tmp\n" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "កញ្ចប់​ %s %s រក​មិន​ឃើញ​ខណៈ​ពេល​កំពុង​ដំណើរការ​ភាពអាស្រ័យ​​ឯកសារ" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "មិនអាចថ្លែង បញ្ជី​កញ្ចប់​ប្រភពចប់​ បានឡើយ %s" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "កំពុង​អាន​បញ្ជី​កញ្ចប់" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "ការផ្ដល់​ឯកសារ​ប្រមូលផ្ដុំ" +#: cmdline/apt-get.cc:367 +#, fuzzy, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "មិនអាចថ្លែង បញ្ជី​កញ្ចប់​ប្រភពចប់​ បានឡើយ %s" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:423 #, c-format -msgid "Unable to write to %s" -msgstr "មិន​អាច​សរសេរ​ទៅ %s" - -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "IO កំហុសក្នុងការររក្សាទុក​ឃ្លាំង​សម្ងាត់​ប្រភព​" - -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" +msgid "Can not find version '%s' of package '%s'" msgstr "" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, fuzzy, c-format +msgid "%s set to manually installed.\n" +msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "ប្តូរ​ឈ្មោះ​បានបរាជ័យ​, %s (%s -> %s) ។" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "កំហុស​ខាងក្នុង អ្នក​ដោះស្រាយ​បញ្ហា​បានធ្វើឲ្យខូច​ឧបករណ៍" -#: apt-pkg/acquire-item.cc:163 -#, fuzzy -msgid "Hash Sum mismatch" -msgstr "MD5Sum មិន​ផ្គួផ្គង​" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "មិន​អាច​ចាក់​សោ​ថត​ទាញ​យក​បាន​ឡើយ" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "ទំហំ​មិនបាន​ផ្គួផ្គង​" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "យ៉ាងហោចណាស់​ត្រូវ​​បញ្ជាក់​​កញ្ចប់​មួយ ​ដើម្បី​ទៅ​​ប្រមូល​យក​ប្រភព​សម្រាប់" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "ប្រតិបត្តិការ​មិន​ត្រឹមត្រូវ​ %s" - -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" - -#: apt-pkg/acquire-item.cc:1589 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "គ្មាន​កូនសោ​សាធារណៈ​អាច​រក​បាន​ក្នុងកូនសោ IDs ខាងក្រោម​នេះទេ ៖\n" +msgid "Unable to find a source package for %s" +msgstr "មិន​អាច​រក​កញ្ចប់ប្រភព​​សម្រាប់ %s បានឡើយ" -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:786 #, c-format msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1691 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:843 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +msgid "Skipping already downloaded file '%s'\n" +msgstr "កំពុង​រំលង​ឯកសារ​ដែល​បាន​ទាញយក​រួច​ '%s'\n" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "GPG error: %s: %s" -msgstr "" +msgid "Couldn't determine free space in %s" +msgstr "មិន​អាច​កំណត់​ទំហំ​ទំនេរ​ក្នុង​ %s បានឡើយ" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:882 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"ខ្ញុំ​មិន​អាច​រកទីតាំង​ឯកសារ​សម្រាប់​កញ្ចប់ %s បាន​ទេ ។ ​មាន​ន័យ​ថា​អ្នក​ត្រូវការ​ជួសជុល​កញ្ចប់​នេះ​ដោយ​ដៃ ។ " -"(ដោយសារ​​បាត់​ស្ថាបត្យកម្ម)" +msgid "You don't have enough free space in %s" +msgstr "អ្នក​ពុំ​មាន​ទំហំ​ទំនេរ​គ្រប់គ្រាន់​ទេ​នៅក្នុង​ %s ឡើយ" -#: apt-pkg/acquire-item.cc:1925 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "ត្រូវការ​យក​ %sB/%sB នៃ​ប័ណ្ណសារ​ប្រភព ។\n" -#: apt-pkg/acquire-item.cc:1983 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "កញ្ចប់​ឯកសារ​លិបិក្រម​ត្រូវ​បាន​ខូច ។ គ្មាន​ឈ្មោះ​ឯកសារ ៖ វាល​សម្រាប់​កញ្ចប់នេះ​ទេ​ %s ។" +msgid "Need to get %sB of source archives.\n" +msgstr "ត្រូវការ​យក​ %sB នៃ​ប័ណ្ណសារ​ប្រភព​ ។\n" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "ប្លុក​ក្រុមហ៊ុន​លក់​ %s គ្មាន​ស្នាម​ផ្តិត​ម្រាម​ដៃ" +msgid "Fetch source %s\n" +msgstr "ទៅប្រមូល​ប្រភព​ %s\n" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "រាយបញ្ជី​ថត​ %spartial គឺ​បាត់បង់​ ។" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "បរាជ័យ​ក្នុងការទៅប្រមូលយក​ប័ណ្ណសារ​មួយចំនួន ។" -#: apt-pkg/acquire.cc:91 -#, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "ថត​ប័ណ្ណសារ​ %spartial គឺ​បាត់បង់​ ។" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "បានបញ្ចប់ការទាញ​យក​ ហើយ​តែ​ក្នុង​របៀប​​ទាញ​យក​ប៉ុណ្ណោះ" -#: apt-pkg/acquire.cc:99 -#, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "មិន​អាច​ចាក់​សោ​ថត​បញ្ជីបានឡើយ" +#: cmdline/apt-get.cc:950 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "កំពុង​រំលង​ការស្រាយ​នៃប្រភព​ដែលបានស្រាយរួច​នៅក្នុង %s\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "កំពុង​ទៅ​យក​ឯកសារ %li នៃ %li (នៅសល់ %s)" +msgid "Unpack command '%s' failed.\n" +msgstr "ពាក្យ​បញ្ជា​ស្រាយ '%s' បាន​បរាជ័យ​ ។\n" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Retrieving file %li of %li" -msgstr "កំពុង​ទៅយក​ឯកសារ %li នៃ %li" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "ពិនិត្យ​ប្រសិន​បើកញ្ចប់ 'dpkg-dev' មិន​ទាន់​បាន​ដំឡើង​ ។\n" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "បរាជ័យ​ក្នុង​ការ​ទៅ​ប្រមូល​យក​ %s %s\n" +msgid "Build command '%s' failed.\n" +msgstr "សាងសង​ពាក្យ​បញ្ជា​ '%s' បានបរាជ័យ​ ។\n" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"ឯកសារ​លិបិក្រម​មួយ​ចំនួន​បាន​បរាជ័យ​ក្នុង​ការ​​ទាញ​យក ​ពួកវាត្រូវបាន​មិន​អើពើ​ ឬ ប្រើ​​ឯកសារ​ចាស់​ជំនួសវិញ ​​។" +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "ដំណើរ​ការ​កូន​បាន​បរាជ័យ​" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "អ្នកត្រូវតែដាក់ 'ប្រភព' URIs មួយចំនួន​នៅក្នុង sources.list របស់អ្នក" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "ត្រូវតែ​បញ្ជាក់​យ៉ាងហោចណាស់​មួយកញ្ចប់ដើម្បីពិនិត្យ builddeps សម្រាប់" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "កំណត់ត្រា​មិនត្រឹមត្រូវ​នៅក្នុង​ឯកសារចំណង់ចំណូលចិត្ត មិនមាន​បឋមកថា​កញ្ចប់ទេ" - -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Did not understand pin type %s" -msgstr "មិន​បាន​យល់​ពី​ប្រភេទ​ម្ជុល %s ឡើយ" - -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "គ្មាន​អទិភាព (ឬ សូន្យ​) បានបញ្ជាក់​សម្រាប់​ម្ជុល​ទេ" +msgid "Unable to get build-dependency information for %s" +msgstr "មិន​អាច​សាងសង់​​ព័ត៌មាន​ភាពអស្រ័យ​សម្រាប់ %s" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" -msgstr "" +msgid "%s has no build depends.\n" +msgstr "%s មិនមានភាពអាស្រ័យ​ស្ថាបនាឡើយ​ ។\n" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:1272 #, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" - -#: apt-pkg/packagemanager.cc:583 -#, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." -msgstr "" -"ការរត់​ការដំឡើង​នេះ នឹងទាមទារ​ឲ្យយកកញ្ចប់ចាំបាច់ %s បណ្ដោះអាសន្ន ដោយសារ រង្វិល ការប៉ះទង្គិច/" -"ភាពអាស្រ័យជាមុន ។ ជាញឹកញាប់គឺ មិនត្រឹមត្រូវ ប៉ុន្តែ ប្រសិនបើអ្នក​ពិតជាចង់ធ្វើវា ធ្វើឲ្យជម្រើស APT::" -"Force-LoopBreak សកម្ម ។" - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "បន្ទាត់​ %u មាន​ប្រវែង​វែងពេកនៅ​ក្នុង​បញ្ជី​ប្រភព​ %s ។" - -#: apt-pkg/cdrom.cc:571 -#, fuzzy -msgid "Unmounting CD-ROM...\n" -msgstr "មិនកំពុងម៉ោន ស៊ីឌី​-រ៉ូម​ ទេ..." +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "%s ភាពអស្រ័យ​សម្រាប់​ %s មិន​អាច​ធ្វើ​ឲ្យ​ពេញចិត្ត​ ព្រោះ​រក​​ %s កញ្ចប់​មិន​ឃើញ​ " -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1290 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "ប្រើប្រាស់ចំណុចម៉ោន​ ស៊ីឌី​-រ៉ូម​ %s\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "កំពុង​រង់ចាំឌីស​...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "កំពុង​ម៉ោន​ ស៊ីឌី​-រ៉ូម​...\n" - -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "កំពុង​ធ្វើអត្តសញ្ញាណនា​... " +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "%s ភាពអស្រ័យ​សម្រាប់​ %s មិន​អាច​ធ្វើ​ឲ្យ​ពេញចិត្ត​ ព្រោះ​រក​​ %s កញ្ចប់​មិន​ឃើញ​ " -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Stored label: %s\n" -msgstr "បានទុក​ស្លាក ៖ %s \n" - -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "កំពុង​ស្កេន​ឌីស​សម្រាប់​​ឯកសារ​លិបិក្រម​...\n" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "បរាជ័យ​ក្នុងការ​តម្រូវចិត្តភាពអាស្រ័យ %s សម្រាប់ %s ៖ កញ្ចប់ %s ដែលបានដំឡើង គឺថ្មីពេក" -#: apt-pkg/cdrom.cc:734 +#: cmdline/apt-get.cc:1352 #, fuzzy, c-format msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "បានរកឃើញ លិបិក្រម​កញ្ចប់ %i លិបិក្រម​ប្រភព%i និង ហត្ថលេខា %i \n" - -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" +"ភាពអាស្រ័យ %s សម្រាប់ %s មិនអាច​តម្រូវចិត្តបានទេ ព្រោះ មិនមាន​កំណែ​នៃកញ្ចប់ %s ដែលអាច​តម្រូវចិត្ត​" +"តម្រូវការ​កំណែបានឡើយ" -#: apt-pkg/cdrom.cc:771 +#: cmdline/apt-get.cc:1358 #, fuzzy, c-format -msgid "Found label '%s'\n" -msgstr "បានទុក​ស្លាក ៖ %s \n" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "%s ភាពអស្រ័យ​សម្រាប់​ %s មិន​អាច​ធ្វើ​ឲ្យ​ពេញចិត្ត​ ព្រោះ​រក​​ %s កញ្ចប់​មិន​ឃើញ​ " -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "នោះមិនមែនជាឈ្មោះត្រឹមត្រូវទេ សូមព្យាយាម​ម្ដងទៀត ។\n" +#: cmdline/apt-get.cc:1381 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "បរាជ័យ​ក្នុងការ​តម្រូវចិត្តភាពអាស្រ័យ %s សម្រាប់ %s: %s" -#: apt-pkg/cdrom.cc:817 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"ឌីស​នេះ​ត្រូវ​បាន​ហៅ​ ៖ \n" -"'%s'\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "ភាពអាស្រ័យ​ដែល​បង្កើត​ %s មិន​អាច​បំពេញ​សេចក្ដី​ត្រូវការ​បាន​ទេ ។" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "កំពុង​ចម្លង​បញ្ជី​កញ្ចប់..." +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "បាន​បរាជ័យ​ក្នុង​ការ​ដំណើរ​​ការ​បង្កើត​ភាព​អាស្រ័យ" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "កំពុងសរសេរ​បញ្ជី​ប្រភព​ថ្មី\n" +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "កំពុង​តភ្ជាប់​ទៅ​កាន់​ %s (%s)" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "ធាតុបញ្ចូល​បញ្ជីប្រភព​សម្រាប់​ឌីស​នេះគឺ ៖\n" - -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "កញ្ចប់ %s ត្រូវការឲ្យដំឡើង ប៉ុន្តែ​ ខ្ញុំ​មិន​អាច​រក​ប័ណ្ណសារ​សម្រាប់​វា​បាន​ទេ​ ។" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "ម៉ូឌុល​ដែល​គាំទ្រ ៖ " -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-get.cc:1633 +#, fuzzy msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"កំហុស pkgProblemResolver::ដោះស្រាយ​សញ្ញាបញ្ឈប់​ដែលបានបង្កើត នេះ​ប្រហែលជា បង្កដោយកញ្ចប់​" -"ដែលបាន​ទុក ។" - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "មិន​អាច​កែ​បញ្ហាបានទេេ អ្កបានទុក​កញ្ចប់​ដែល​ខូច ។។" - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "កំពុងស្ថាបនា​មែកធាងភាពអាស្រ័យ" +"របៀបប្រើ ៖ ពាក្យបញ្ជា apt-get [options]\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] ប្រភព pkg1 [pkg2 ...]\n" +"\n" +"apt-get គឺជា​ចំណុចប្រទាក់​បន្ទាត់​ពាក្យបញ្ជា​សាមញ្ញ​មួយ សម្រាប់​ធ្វើការទាញយក និង\n" +"ដំឡើង​កញ្ចប់ ។ ជាញឹកញាប់​បំផុត គឺប្រើ​ពាក្យបញ្ជា​ដើម្បី​ធ្វើឲ្យទាន់សម័យ​\n" +"និង ដំឡើង ។\n" +"\n" +"ពាក្យ​បញ្ជា ៖\n" +" update - ទៅយក​បញ្ជី​កញ្ចប់​ថ្មី\n" +" upgrade - ធ្វើឲ្យប្រសើរ\n" +" install - ដំឡើង​កញ្ចប់​ថ្មី (pkg គឺ libc6 មិនមែន libc6.deb)\n" +" remove - យក​កញ្ចប់​ចេញ\n" +" source - ទាញយក​ប័ណ្ណសារ​ប្រភព\n" +" build-dep - កំណត់​រចនា​សម្ព័ន្ធ​ភាពអាស្រ័យ​ក្នុងការស្ថាបនា​សម្រាប់​កញ្ចប់​ប្រភព\n" +" dist-upgrade - ការចែកចាយ​ភាពល្អប្រសើរ សូមមើល apt-get(8)\n" +" dselect-upgrade - ដាក់ពីក្រោយ​ជម្រើស dselect\n" +" clean - លុប​ឯកសារប័ណ្ណសារ​ដែលបានទាញ​យក\n" +" autoclean - លុប​ឯកសារប័ណ្ណសារ​ដែលបានទាញយក​ចាស់\n" +" check - ផ្ទៀងផ្ទាត់​ថា​មិនមានភាព​អាស្រ័យ​ដែល​ខូចទេ\n" +"\n" +"ជម្រើស ៖\n" +" -h អត្ថបទ​ជំនួយ​នេះ ៖\n" +" -q ទិន្នផល​ដែល​អាច​ចុះកំណត់ហេតុបាន - មិនមាន​ទ្រនិចបង្ហាញ​ដំណើរការឡើយ\n" +" -qq គ្មាន​លទ្ធផល​ទេ លើកលែងតែ​កំហុស\n" +" -d ទាញយកតែប៉ុណ្ណោះ - កុំដំឡើង​ ឬ ស្រាយ​ប័ណ្ណសារ\n" +" -s No-act. ធ្វើការ​ក្លែង​ការរៀប​តាមលំដាប់\n" +" -y សន្មត​ថា បាទ/ចាស ទៅគ្រប់តម្រូវការ ហើយកុំ​រំលឹក\n" +" -f ប៉ុនប៉ង​ធ្វើការបន្ត​ ប្រសិនបើ​ការពិនិត្យ​ភាពត្រឹមត្រូវ​បរាជ័យ\n" +" -m ប៉ុនប៉ង​ធ្វើការបន្ត​ ប្រសិនបើ​ប័ណ្ណសារ​មិនអាច​ដាក់ទីតាំងបាន\n" +" -u បង្ហាញ​បញ្ជី​កញ្ចប់​ដែល​បានធ្វើឲ្យប្រសើរ​ផងដែរ\n" +" -b ស្ថាបនា​កញ្ចប់ប្រភព បន្ទាប់ពី​ទៅប្រមូលយកវា\n" +" -V បង្ហាញ​លេខកំណែ​ជា​អក្សរ\n" +" -c=? អាន​ឯកសារកំណត់​រចនា​សម្ព័ន្ធ​នេះ\n" +" -o=? កំណត់​ជម្រើស​កំណត់រចនាសម្ព័ន្ធ​តាមចិត្ត​មួយ ឧទ. -o dir::cache=/tmp\n" +"សូមមើល apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "កំណែ​សាកល្បង​" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "យ៉ាងហោចណាស់​ត្រូវ​​បញ្ជាក់​​កញ្ចប់​មួយ ​ដើម្បី​ទៅ​​ប្រមូល​យក​ប្រភព​សម្រាប់" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "ការបង្កើត​ភាពអាស្រ័យ​" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -#, fuzzy -msgid "Reading state information" -msgstr "បញ្ចូល​​ព័ត៌មាន​ដែលមាន​ចូល​គ្នា" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: cmdline/apt-mark.cc:68 #, fuzzy, c-format -msgid "Failed to open StateFile %s" -msgstr "បរាជ័យ​ក្នុង​ការ​បើក %s" +msgid "%s can not be marked as it is not installed.\n" +msgstr "ប៉ុន្តែ​វា​មិន​បាន​ដំឡើង​ទេ​" -#: apt-pkg/depcache.cc:256 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "បរាជ័យ​ក្នុងការ​សរសេរ​ឯកសារ %s" - -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ" +msgid "%s was already set to manually installed.\n" +msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់​ %s (2) បានឡើយ" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "រក​មិន​ឃើញ​ការ​ចេញ​ផ្សាយ​ '%s' សម្រាប់​ '%s' ឡើយ" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s ជាកំណែ​ដែលថ្មីបំផុតរួចទៅហើយ ។\n" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "រក​មិន​ឃើញ​កំណែ​ '%s' សម្រាប់ '%s'" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s ជាកំណែ​ដែលថ្មីបំផុតរួចទៅហើយ ។\n" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Unable to locate package %s" -msgstr "មិន​អាច​កំណត់​ទីតាំង​កញ្ចប់ %s បានឡើយ" - -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" +msgid "Waited for %s but it wasn't there" +msgstr "រង់ចាំប់​ %s ប៉ុន្តែ ​វា​មិន​នៅទីនោះ" -#: apt-pkg/cacheset.cc:609 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" +msgid "%s set on hold.\n" +msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" -#: apt-pkg/cacheset.cc:615 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" +msgid "Canceled hold on %s.\n" +msgstr "បរាជ័យ​ក្នុង​ការ​បើក %s" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format +#: cmdline/apt-mark.cc:392 msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -#: apt-pkg/cacheset.cc:655 +#: methods/cdrom.cc:203 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +msgid "Unable to read the cdrom database %s" +msgstr "មិន​អាច​អាន​មូលដ្ឋាន​ទិន្នន័យ​​ស៊ីឌីរ៉ូម​​ %s បានឡើយ" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" msgstr "" +"សូម​ប្រើ​ apt-cdrom ដើម្បី​បង្កើត​ស៊ីឌី-រ៉ូម​នេះ​ ដែលបានរៀបចំ​តាម​ APT​ ។ apt-get ធ្វើ​ឲ្យ​ទាន់សម័យ ​មិន​" +"ត្រូវ​បានប្រើ​ដើម្បី​បន្ថែម​ស៊ីឌី-រ៉ូមថ្មីឡើយ​" -#: apt-pkg/indexrecords.cc:78 -#, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ" - -#: apt-pkg/indexrecords.cc:86 -#, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "ចំណាំ កំពុង​ជ្រើស​ %s ជំនួស​ %s\n" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "ស៊ីឌី-រ៉ូមខុស" -#: apt-pkg/indexrecords.cc:117 +#: methods/cdrom.cc:249 #, c-format -msgid "No Hash entry in Release file %s" -msgstr "" - -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "បន្ទាត់​ដែលមិនត្រឹមត្រូវ​នៅក្នុង​ឯកសារ​បង្វែរ ៖ %s" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "មិនអាចអាន់ម៉ោន ស៊ីឌី​-រ៉ូម​ នៅ​​ក្នុង​ %s បានទេ វាអាចនៅតែប្រើបាន ។" -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "រក​ថាសមិ​ន​ឃើញ​ ។" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "បន្ទាត់​ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (URI ញែក​)" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "រកឯកសារ​មិន​ឃើញ​" -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist ញែក​)" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "បរាជ័យ​ក្នុងការថ្លែង" -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព %s (dist)" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "បរាជ័យក្នុងការកំណត់​ពេលវេលា​ការកែប្រែ​" -#: apt-pkg/sourcelist.cc:184 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist ញែក​)" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI មិនត្រឹមត្រូវ​ URIS មូលដ្ឋានមិនត្រូវ​ចាប់ផ្តើម​ជាមួយ​ // ឡើយ" -#: apt-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist ញែក​)" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "កំពុង​ចូល​" -#: apt-pkg/sourcelist.cc:193 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist ញែក​)" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "មិន​អាច​កំណត់ឈ្មោះដែលត្រូវបង្ហាញ​បានឡើយ​" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "បន្ទាត់ Malformed %lu ក្នុង​ញ្ជី​ប្រភព​ %s (URI)" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "មិន​អាច​កំណត់ឈ្មោះមូលដ្ឋាន​បានឡើយ" -#: apt-pkg/sourcelist.cc:208 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព %s (dist)" +msgid "The server refused the connection and said: %s" +msgstr "ម៉ាស៊ីន​បម្រើបានបដិសេធ​ការតភ្ជាប់ ហើយ​ បាននិយាយ ៖ %s" -#: apt-pkg/sourcelist.cc:211 +#: methods/ftp.cc:225 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "បន្ទាត់​ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (URI ញែក​)" +msgid "USER failed, server said: %s" +msgstr "USER បរាជ័យ​ ម៉ាស៊ីន​បម្រើបាន​​និយាយ ៖ %s" -#: apt-pkg/sourcelist.cc:217 +#: methods/ftp.cc:232 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist លែងប្រើ)" +msgid "PASS failed, server said: %s" +msgstr "PASS បានបរាជ័យ​ ម៉ាស៊ីន​បម្រើបាន​​និយាយ ៖ %s" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist ញែក​)" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"ម៉ាស៊ីន​បម្រើ​ប្រូកស៊ី​ត្រូវ​បាន​បញ្ជាក់​ ប៉ុន្តែ​គ្មាន​ស្គ្រីប​ចូល​ទេ Acquire::ftp::ProxyLogin គឺ ទទេ ។" -#: apt-pkg/sourcelist.cc:335 +#: methods/ftp.cc:280 #, c-format -msgid "Opening %s" -msgstr "កំពុង​បើក​ %s" +msgid "Login script command '%s' failed, server said: %s" +msgstr "ពាក្យ​បញ្ជា​ស្គ្រីប​ចូល​ '%s' បានបរាជ័យ ម៉ាស៊ីន​បម្រើ​បាននិយាយ ៖ %s" -#: apt-pkg/sourcelist.cc:371 +#: methods/ftp.cc:306 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "បន្ទាត់​ Malformed %u ក្នុង​បញ្ជី​ប្រភព​ %s (ប្រភេទ​)" +msgid "TYPE failed, server said: %s" +msgstr "TYPE បានបរាជ័យ​ ម៉ាស៊ីន​បម្រើ​បាននិយាយ​ ៖ %s" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "ប្រភេទ​ '%s' មិន​ស្គាល់នៅលើបន្ទាត់​ %u ក្នុង​បញ្ជី​ប្រភព​ %s ឡើយ" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "អស់ពេល​ក្នុងការតភ្ជាប់​" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "ប្រភេទ​ '%s' មិន​ស្គាល់នៅលើបន្ទាត់​ %u ក្នុង​បញ្ជី​ប្រភព​ %s ឡើយ" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "ម៉ាស៊ីន​បម្រើ​បាន​បិទ​ការតភ្ជាប់​" -#: apt-pkg/deb/dpkgpm.cc:95 -#, fuzzy, c-format -msgid "Installing %s" -msgstr "បាន​ដំឡើង %s" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "ការអាន​មានកំហុស" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "កំពុង​កំណត់​រចនា​សម្ព័ន្ធ %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "ឆ្លើយតប​សតិ​បណ្តោះអាសន្ន​​អស់ចំណុះ ។" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "កំពុង​យក %s ចេញ" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "ការបង្ខូច​ពិធីការ​" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "បាន​យក %s ចេញ​ទាំង​ស្រុង" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "ការសរសេរ​មានកំហុស" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "មិន​អាច​បង្កើត​រន្ធបានឡើយ" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "មិន​អាច​តភ្ជាប់​​រន្ធទិន្នន័យ​បានឡើយ អស់​ពេល​ក្នុងការតភ្ជាប់​" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, fuzzy, c-format -msgid "Directory '%s' missing" -msgstr "រាយបញ្ជី​ថត​ %spartial គឺ​បាត់បង់​ ។" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "បាន​បរាជ័យ" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "មិនអាចតភ្ជាប់​​រន្ធអកម្ម​​បានឡើយ ។" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "កំពុងរៀបចំ​ %s" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo មិន​អាច​​ទទួល​យក​រន្ធ​សម្រាប់​ស្តាប់​​បានឡើយ" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "កំពុង​ស្រាយ %s" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "មិន​អាច​ចងរន្ធ​បានបានឡើយ​" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "កំពុងរៀបចំ​កំណត់រចនាសម្ព័ន្ធ %s" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "មិនអាច​ស្ដាប់នៅលើរន្ធ​បានឡើយ" -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "បាន​ដំឡើង %s" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "មិន​អាច​កំណត់​ឈ្មោះរបស់​រន្ធ​បានឡើយ" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "កំពុងរៀបចំដើម្បី​ការយក​ចេញ​នៃ %s" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "មិនអាច​ផ្ញើពាក្យ​បញ្ជា​ PORT បានឡើយ" -#: apt-pkg/deb/dpkgpm.cc:1004 +#: methods/ftp.cc:802 #, c-format -msgid "Removed %s" -msgstr "បាន​យក %s ចេញ" +msgid "Unknown address family %u (AF_*)" +msgstr "មិន​ស្គាល់​អាសយដ្ឋាន​គ្រួសារ​ %u (AF_*)" -#: apt-pkg/deb/dpkgpm.cc:1009 +#: methods/ftp.cc:811 #, c-format -msgid "Preparing to completely remove %s" -msgstr "កំពុង​រៀបចំ​យក %s ចេញ​ទាំង​ស្រុង" +msgid "EPRT failed, server said: %s" +msgstr "EPRT បរាជ័យ​ ម៉ាស៊ីន​បម្រើ​បាន​និយាយ ៖ %s" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "បាន​យក %s ចេញ​ទាំង​ស្រុង" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "ការតភ្ជាប់​រន្ធ​​ទិន្នន័បានអស់ពេល​" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "មិន​អាច​សរសេរ​ទៅ %s" - -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "មិនអាច​ទទួលយក​ការតភ្ជាប់​បានឡើយ" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "បញ្ហា​ធ្វើឲ្យខូច​ឯកសារ" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/ftp.cc:890 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "រង់ចាំប់​ %s ប៉ុន្តែ ​វា​មិន​នៅទីនោះ" - -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" - -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" +msgid "Unable to fetch file, server said '%s'" +msgstr "មិន​អាច​ទៅ​ប្រមូល​យក​ឯកសារ​បានឡើយ ម៉ាស៊ីន​បម្រើ​បាន​និយាយ​ '%s'" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "រន្ធ​ទិន្នន័យ​បាន​អស់​ពេល​" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" +#: methods/ftp.cc:935 +#, c-format +msgid "Data transfer failed, server said '%s'" +msgstr "បរាជ័យក្នុងការ​ផ្ទេរ​ទិន្នន័យ ម៉ាស៊ីន​បម្រើ​បាន​និយាយ​ '%s'" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "សំណួរ​" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "មិន​អាច​ហៅ​ " -#: apt-pkg/deb/debsystem.cc:91 +#: methods/connect.cc:76 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" - -#: apt-pkg/deb/debsystem.cc:94 -#, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "មិន​អាច​ចាក់​សោ​ថត​បញ្ជីបានឡើយ" +msgid "Connecting to %s (%s)" +msgstr "កំពុង​តភ្ជាប់​ទៅ​កាន់​ %s (%s)" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: methods/connect.cc:87 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP ៖ %s %s]" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 +#: methods/connect.cc:94 #, c-format -msgid "%lid %lih %limin %lis" -msgstr "" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "មិន​អាច​បង្កើត​រន្ធ​សម្រាប់ %s (f=%u t=%u p=%u) បានឡើយ" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: methods/connect.cc:100 #, c-format -msgid "%lih %limin %lis" -msgstr "" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "មិនអាច​ចាប់ផ្ដើម​ការតភ្ជាប់​​ទៅ​កាន់​ %s:%s (%s) បានឡើយ ។" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: methods/connect.cc:108 #, c-format -msgid "%limin %lis" -msgstr "" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "មិន​អាច​តភ្ជាប់​ទៅ​កាន់​ %s:%s (%s) បានឡើយ ការ​តភ្ជាប់​បានអស់​ពេល​" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: methods/connect.cc:126 #, c-format -msgid "%lis" -msgstr "" +msgid "Could not connect to %s:%s (%s)." +msgstr "មិន​អាច​តភ្ជាប់​ទៅកាន់​ %s:%s (%s) បានឡើយ ។" -#: apt-pkg/contrib/strutl.cc:1243 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Selection %s not found" -msgstr "ជម្រើស​ %s រក​មិន​ឃើញ​ឡើយ" +msgid "Connecting to %s" +msgstr "កំពុង​តភ្ជាប់​ទៅកាន់ %s" -#: apt-pkg/contrib/fileutl.cc:190 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "មិន​ប្រើប្រាស់​ការចាក់សោ សម្រាប់តែឯកសារចាក់សោ​ដែលបានតែអានប៉ុណ្ណោះ %s" +msgid "Could not resolve '%s'" +msgstr "មិន​អាច​ដោះស្រាយ​ '%s' បានឡើយ" -#: apt-pkg/contrib/fileutl.cc:195 +#: methods/connect.cc:205 #, c-format -msgid "Could not open lock file %s" -msgstr "មិន​អាច​បើក​ឯកសារ​ចាក់សោ​ %s បានឡើយ" +msgid "Temporary failure resolving '%s'" +msgstr "ការ​ដោះស្រាយ​ភាព​បរាជ័យ​​បណ្តោះអាសន្ន '%s'" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "មិនប្រើ​ការចាក់សោ សម្រាប់ nfs ឯកសារ​ចាក់សោដែលបានម៉ោន%s" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "ការ​ដោះស្រាយ​អ្វី​អាក្រក់ដែល​បាន​កើត​ឡើង​ '%s:%s' (%i)" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "មិន​អាច​ចាក់សោ %s បានឡើយ" +#: methods/connect.cc:211 +#, fuzzy, c-format +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "ការ​ដោះស្រាយ​អ្វី​អាក្រក់ដែល​បាន​កើត​ឡើង​ '%s:%s' (%i)" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#: methods/connect.cc:258 +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" +msgstr "មិន​អាច​តភ្ជាប់​ទៅកាន់​​ %s %s ៖" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "កំហុស​ខាងក្នុង​ ៖ ហត្ថលេខា​​ល្អ ប៉ុន្តែ ​មិន​អាច​កំណត់​កូនសោ​ស្នាម​ម្រាមដៃ ?!" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "​បានជួប​ប្រទះ​​​​ហត្ថលេខា​យ៉ាងហោចណាស់មួយ ដែ​លត្រឹមត្រូវ​ ។" -#: apt-pkg/contrib/fileutl.cc:421 +#: methods/gpgv.cc:174 +#, fuzzy +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "មិន​អាច​ប្រតិបត្តិ '%s' ដើម្បី​ផ្ទៀងផ្ទាត់​ហត្ថលេខា (តើ gpgv ត្រូវ​បាន​ដំឡើង​ឬនៅ ?)" + +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "ដំណើរការ​រង​ %s បាន​ទទួល​កំហុស​ការ​ចែកជាចម្រៀក​ ។" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "មិនស្គាល់កំហុស ក្នុងការប្រតិបត្តិ gpgv" -#: apt-pkg/contrib/fileutl.cc:826 -#, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "ដំណើរការ​រង​ %s បាន​ទទួល​កំហុស​ការ​ចែកជាចម្រៀក​ ។" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "ហត្ថលេខា​ខាង​ក្រោម​មិន​ត្រឹមត្រូវ ៖\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "ដំណើរការ​រង​ %s បានត្រឡប់​ទៅកាន់​កូដ​មាន​កំហុស​ (%u)" +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "ហត្ថលេខា​ខាងក្រោម​មិន​អាចផ្ទៀងផ្ទាត់បាន​ទេ​ ព្រោះកូនសោ​សាធារណៈមិន​អាច​ប្រើ​បាន​ ៖\n" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "ដំណើរការ​រង​ %s បានចេញ ដោយ​មិន​រំពឹង​ទុក​ " +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "ការសរសេរ​មានកំហុស" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "កំហុសក្នុងការ​សរសេរ​ទៅកាន់​ឯកសារ" -#: apt-pkg/contrib/fileutl.cc:913 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "មាន​បញ្ហា​ក្នុងការ​បិទ​ឯកសារ" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "កំហុស​ក្នុងការ​អាន​ពី​ម៉ាស៊ីនបម្រើ ។ ការបញ្ចប់​ពីចម្ងាយ​បានបិទការតភ្ជាប់" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "កំហុស​ក្នុងការអាន​ពី​ម៉ាស៊ីន​បម្រើ" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "មិន​អាច​បើក​បំពុង​សម្រាប់​ %s បានឡើយ" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "កំហុស​ក្នុងការ​សរសេរទៅកាន់​ឯកសារ" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "បរាជ័យ​ក្នុង​ការ​បង្កើត​ដំណើរការ​រង​ IPC" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "ជ្រើស​បាន​បរាជ័យ​" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "បរាជ័យ​ក្នុង​ការ​ប្រតិបត្តិ​កម្មវិធី​បង្ហាប់ " +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "ការតភ្ជាប់​បាន​អស់ពេល​" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "ការអាន​មានកំហុស" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "កំហុស​ក្នុងការ​សរសេរទៅកាន់​ឯកសារលទ្ធផល" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "អាន​, នៅតែ​មាន %lu ដើម្បី​អាន​ ប៉ុន្តែ​គ្មាន​អ្វី​នៅសល់" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "កំពុង​រង់ចាំ​បឋមកថា" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "សរសេរ​, នៅតែមាន​ %lu ដើម្បី​សរសេរ​ ប៉ុន្តែ​មិន​អាច​" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "ជួរ​បឋមកថា​ខូច​" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "មាន​បញ្ហា​ក្នុងការ​បិទ​ឯកសារ" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "ម៉ាស៊ីន​បម្រើ​ HTTP បានផ្ញើបឋមកថាចម្លើយតបមិនត្រឹមត្រូវ" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "មានបញ្ហា​ក្នុង​ការធ្វើ​សមកាលកម្មឯកសារ​" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "ម៉ាស៊ីន​បម្រើ​ HTTP បានផ្ញើ​​បឋមកថាប្រវែង​​​មាតិកា​មិនត្រឹមត្រូវ​" -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "មានបញ្ហា​ក្នុងការ​ផ្ដាច់តំណ​ឯកសារ" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "ម៉ាស៊ីន​បម្រើ​ HTTP បានផ្ញើ​បឋមកថា​ជួរ​មាតិកា​មិន​ត្រឹមត្រូវ​" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "មានបញ្ហា​ក្នុង​ការធ្វើ​សមកាលកម្មឯកសារ​" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "ម៉ាស៊ីន​បម្រើ HTTP នេះបាន​ខូច​​​ជួរ​គាំទ្រ​" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... កំហុស ​!" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "មិនស្គាល់​ទ្រង់ទ្រាយ​កាលបរិច្ឆេទ" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... ធ្វើរួច​" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "ទិន្នន័យ​បឋមកថា​ខូច" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "ការតភ្ជាប់​បាន​បរាជ័យ​" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... ធ្វើរួច​" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "កំហុស​ខាង​ក្នុង​" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "មិនអាច mmap ឯកសារទទេ​បានឡើយ" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/contrib/mmap.cc:111 -#, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "មិន​អាច​បើក​បំពុង​សម្រាប់​ %s បានឡើយ" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "កំហុស​ខាងក្នុង កញ្ចប់​ដំឡើង​ត្រូវ​បាន​ហៅ​​ជាមួយ​កញ្ចប់​ដែល​ខូច !" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "មិន​អាច​បង្កើត​ mmap នៃ​ %lu បៃបានឡើយ" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "កញ្ចប់ ​ត្រូវការឲ្យ​យក​ចេញ​​ ប៉ុន្តែមិនអនុញ្ញាត​ឲ្យយកចេញឡើយ ។" -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "មិន​អាចបើក​ %s បានឡើយ" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "កំហុស​ខាងក្នុង​ ការ​រៀប​តាម​លំដាប់​មិន​បាន​បញ្ចប់ឡើយ" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -#, fuzzy -msgid "Unable to synchronize mmap" -msgstr "មិន​អាច​ហៅ​ " +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "យី អី​ក៏​ចម្លែង​ម្លេះ.. ទំហំ​មិន​ដូច​គ្នា​ឡើយ ។ សូម​ផ្ញើ​អ៊ីមែល​ទៅ apt@packages.debian.org" -#: apt-pkg/contrib/mmap.cc:290 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "មិន​អាច​បង្កើត​ mmap នៃ​ %lu បៃបានឡើយ" - -#: apt-pkg/contrib/mmap.cc:322 -#, fuzzy -msgid "Failed to truncate file" -msgstr "បរាជ័យ​ក្នុងការ​សរសេរ​ឯកសារ %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "ត្រូវការ​​យក​ %sB/%sB នៃ​ប័ណ្ណសារ ។​\n" -#: apt-pkg/contrib/mmap.cc:341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" -msgstr "" +msgid "Need to get %sB of archives.\n" +msgstr "ត្រូវ​ការយក​ %sB នៃ​ប័ណ្ណសារ ។\n" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 +#, fuzzy, c-format +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "បន្ទាប់​ពី​ពន្លា​ %sB នៃ​ការ​បន្ថែម​​ទំហំ​ថាស​ត្រូវ​បាន​ប្រើ ។\n" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 +#, fuzzy, c-format +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "បន្ទាប់​ពី​ពន្លា​ %sB ទំហំ​ថាសនឹង​​ទំនេរ ។ \n" -#: apt-pkg/contrib/cdromutl.cc:65 +#: apt-private/private-install.cc:200 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "មិនអាច​ថ្លែង ចំណុចម៉ោន %s បានឡើយ" +msgid "You don't have enough free space in %s." +msgstr "អ្នក​គ្មាន​ទំហំ​​ទំនេរ​គ្រប់គ្រាន់​ក្នុង​​ %s ឡើយ ។" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "បរាជ័យក្នុងការ​ថ្លែង ស៊ីឌីរ៉ូម" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "មាន​បញ្ហា​ ហើយ -y ត្រូវ​បាន​ប្រើ​ដោយគ្មាន​​ --force​-yes" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "មិន​បាន​​ទទួល​ស្គាល់​ប្រភេទ​អក្សរ​សង្ខេប ៖ '%c'" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "បានបញ្ជាក់​តែប្រតិបត្តិការដែលមិនសំខាន់ប៉ុណ្ណោះ ប៉ុន្តែ​នេះមិនមែនជាប្រតិបត្តិការមិនសំខាន់នោះទេ ។" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "កំពុង​បើ​ឯកសារ​កំណត់រចនាសម្ព័ន្ធ​ %s" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "បាទ/ចាស ធ្វើ​ដូច​ដែល​ខ្ញុំ​និយាយ !" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-private/private-install.cc:222 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "កំហុស​វាក្យ​សម្ពន្ធ %s:%u ៖ ប្លុក​ចាប់​ផ្តើម​​ដោយ​គ្មាន​ឈ្មោះ​ ។" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"អ្នកប្រហែល​ជា​ធ្វើ​អ្វីមួយ​ដែល​អាច​បង្ករ​ឲ្យ​មាន​មហន្ដរាយ ។\n" +"ដើម្បី​បន្ត ​​វាយ​ក្នុង​ឃ្លា​ '%s'\n" +" ?] " -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "កំហុស​​វាក្យ​សម្ពន្ធ %s:%u ៖ ស្លាក​ដែលបាន Malformed" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "បោះបង់ ។" -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "កំហុស​​វាក្យ​សម្ពន្ធ %s:%u ៖ តម្លៃ​ឥតបានការ​នៅ​ក្រៅ​" +#: apt-private/private-install.cc:243 +#, fuzzy +msgid "Do you want to continue?" +msgstr "តើ​អ្នក​ចង់​បន្តឬ​ [បាទ ចាស/ទេ​] ? " -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "កំហុសវាក្យ​សម្ពន្ធ %s:%u ៖ សេចក្ដីបង្គាប់​អាចត្រូវបានធ្វើ​តែនៅលើ​កម្រិត​កំពូល​តែប៉ុណ្ណោះ" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "ឯកសារ​មួយ​ចំនួន​បាន​បរាជ័យ​ក្នុង​ការ​ទាញ​យក​" -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "កំហុស​វាក្យសម្ពន្ធ %s:%u ៖ មាន​ការរួមបញ្ចូល​ដែលដាក់​រួមគ្នា​យ៉ាងច្រើន" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"អនុញ្ញាត​ឲ្យ​ទៅ​ប្រមូល​យក​ប័ណ្ណសារ​មួយ​ចំនួន​ ប្រហែល​ជា​រត់​ភាព​ទាន់​សម័យ apt-get ឬ ព្យាយាមប្រើ​ជាមួយ --" +"fix- ដែលបាត់ឬ់ ?" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "កំហុសវាក្យ​សម្ពន្ធ %s:%u ៖ បានរួម​បញ្ចូល​ពី​ទីនេះ​" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix- ដែលបាត់​ និង ​ស្វប​មេឌៀ​ដែល​មិនបាន​​គាំទ្រនៅពេល​បច្ចុប្បន្ន​" -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "កំហុស​វាក្យ​សម្ពន្ធ %s:%u ៖ សេចក្ដី​បង្គាប់​ដែល​មិនបានគាំទ្រ '%s'" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "មិន​អាច​កែ​កញ្ចប់​ដែលបាត់បង់​បានឡើយ ។" -#: apt-pkg/contrib/configuration.cc:900 -#, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "កំហុសវាក្យ​សម្ពន្ធ %s:%u ៖ សេចក្ដីបង្គាប់​អាចត្រូវបានធ្វើ​តែនៅលើ​កម្រិត​កំពូល​តែប៉ុណ្ណោះ" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "កំពុង​បោះបង់​ការ​ដំឡើង​ ។" -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "កំហុស​វាក្យសម្ពន្ធ %s:%u ៖ សារឥតបានការ​បន្ថែម ដែលនៅខាងចុង​ឯកសារ" +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +msgstr[1] "" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "" + +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "" + +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" + +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "ព័ត៌មាន​ដូចតទៅនេះ អាចជួយ​ដោះស្រាយ​ស្ថានភាព​បាន ៖" + +#: apt-private/private-install.cc:506 +#, fuzzy +msgid "Internal Error, AutoRemover broke stuff" +msgstr "កំហុស​ខាងក្នុង អ្នក​ដោះស្រាយ​បញ្ហា​បានធ្វើឲ្យខូច​ឧបករណ៍" + +#: apt-private/private-install.cc:513 +#, fuzzy +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" +msgstr[1] "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" + +#: apt-private/private-install.cc:517 #, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "កំពុង​បោះបង់​ការ​ដំឡើង​ ។" +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" +msgstr[1] "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "ជម្រើស​បន្ទាត់​ពាក្យបញ្ជា '%c' [from %s] មិនស្គាល់ឡើយ ។" +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "មិនយល់​ពី​ជម្រើស​បន្ទាត់​ពាក្យ​បញ្ជា %s ឡើយ" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "អ្នក​ប្រហែល​ជា​ចង់​រត់ 'apt-get -f install' ដើម្បី​កែ​ពួក​វា​ទាំង​នេះ ៖" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "ជម្រើស​បន្ទាត់ពាក្យ​បញ្ជា​ %s មិនមែនជាប៊ូលីនទេ" +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"ភាពអស្រ័យ​ដែល​ខុស​គ្នា ។ ព្យាយាម​ 'apt-get -f install' ដោយ​គ្មាន​កញ្ចប់ (ឬ បញ្ជាក់​ដំណោះស្រាយ) ។" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "ជម្រើស​ %s ត្រូវការ​អាគុយម៉ង់មួយ ។" +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"មិនអាច​ដំឡើងកញ្ចប់​មួយចំនួន​បានឡើយ ។ នេះ​មាន​ន័យ​ថា​អ្នក​\n" +"​បានស្នើរ​ស្ថានភាព​ដែល​មិន​អាច​ធ្វើបានមួយ ឬ ​ប្រសិន​បើ​​អ្នក​កំពុង​ប្រើការចែកចាយ​ពុំ​មាន​លំនឹង​នោះ កញ្ចប់​" +"ដែលបាន​ទាមទារនឹងមិនទាន់បានបង្កើត​ឡើយ​\n" +" ឬ ​បានយក​ចេញ​ពីការមកដល់ ។" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "ជម្រើស %s ៖ ការបញ្ជាក់​ធាតុ​កំណត់រចនាសម្ព័ន្ធត្រូវតែមាន =<val> មួយ ។" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "កញ្ចប់​ដែល​បាន​ខូច​" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "ជម្រើស​ %s ត្រូវ​ការ​អាគុយម៉ង់​ចំនួន​គត់​ មិន​មែន​ '%s'" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "កញ្ចប់​បន្ថែម​ដូចតទៅនេះ នឹងត្រូវបាន​ដំឡើង ៖" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "ជម្រើស​ '%s' វែងពេក" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "កញ្ចប់​ដែល​បាន​ផ្ដល់​យោបល់ ៖" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "កញ្ចប់​ដែល​បាន​ផ្ដល់​អនុសាសន៍ ៖" + +#: apt-private/private-install.cc:825 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "មិនបានយល់អំពី​ការស្គាល់​ %s ឡើយ សូមព្យាយមយក​ ពិត​ ​​​ឫ មិន​ពិត ។" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "កំពុង​រំលង​ %s វា​បាន​ដំឡើង​រួចរាល់​ ហើយ​ភាព​ធ្វើឲ្យ​ប្រសើរ​​មិន​ទាន់​កំណត់​​ ។\n" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-private/private-install.cc:829 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "កំពុង​រំលង​ %s វា​បាន​ដំឡើង​រួចរាល់​ ហើយ​ភាព​ធ្វើឲ្យ​ប្រសើរ​​មិន​ទាន់​កំណត់​​ ។\n" + +#: apt-private/private-install.cc:841 #, c-format -msgid "Invalid operation %s" -msgstr "ប្រតិបត្តិការ​មិន​ត្រឹមត្រូវ​ %s" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "មិនអាចធ្វើការដំឡើង %s ឡើងវិញបានទេ វា​មិនអាចត្រូវបាន​ទាញយកបានឡើយ ។\n" -#: cmdline/apt-cache.cc:149 +#: apt-private/private-install.cc:846 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "កញ្ចប់ %s កំណែ %s មាន​ភាព​អាស្រ័យ​មិន​ត្រូវ​គ្នា ៖\n" +msgid "%s is already the newest version.\n" +msgstr "%s ជាកំណែ​ដែលថ្មីបំផុតរួចទៅហើយ ។\n" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "ឈ្មោះ​កញ្ចប់​សរុប ៖ " +#: apt-private/private-install.cc:894 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "បានជ្រើស​កំណែ​ %s (%s) សម្រាប់ %s\n" -#: cmdline/apt-cache.cc:279 -#, fuzzy -msgid "Total package structures: " -msgstr "ឈ្មោះ​កញ្ចប់​សរុប ៖ " +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "បានជ្រើស​កំណែ​ %s (%s) សម្រាប់ %s\n" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " កញ្ចប់​ធម្មតា ៖ " +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "មិនទាន់បានដំឡើង​កញ្ចប់​ %s ទេ​ ដូច្នេះ មិន​បាន​យកចេញឡើយ \n" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " កញ្ចប់​និម្មិត​សុទ្ធ ៖ " +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "មិនទាន់បានដំឡើង​កញ្ចប់​ %s ទេ​ ដូច្នេះ មិន​បាន​យកចេញឡើយ \n" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " កញ្ចប់​និម្មិត​តែ​មួយ ៖ " +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " កញ្ចប់​និម្មិត​លាយ ៖ " +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " បាត់បង់ ៖ " +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "កំពុង​កែ​ភាពអាស្រ័យ​..." -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "កំណែ​ផ្សេងៗ​សរុប ៖ " +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " បាន​បរាជ័យ ។" -#: cmdline/apt-cache.cc:327 -#, fuzzy -msgid "Total distinct descriptions: " -msgstr "កំណែ​ផ្សេងៗ​សរុប ៖ " +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "មិន​អាច​កែ​ភាព​អាស្រ័យ​បានឡើយ​" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "ភាព​អាស្រ័យ​សរុប ៖ " +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "មិនអាច​បង្រួម​ការ​កំណត់​ភាព​ប្រសើរ​​បាន​ឡើយ​" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "ទំនាក់ទំនង កំណែ/ឯកសារ​សរុប ៖ " +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " ធ្វើ​រួច" -#: cmdline/apt-cache.cc:334 -#, fuzzy -msgid "Total Desc/File relations: " -msgstr "ទំនាក់ទំនង កំណែ/ឯកសារ​សរុប ៖ " +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "អ្នក​ប្រហែល​ជា​ចង់រត់ 'apt-get -f install' ដើម្បី​កែ​វា​​ទាំងនេះ​ហើយ ។" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "ការផ្គូរផ្គង​ការផ្ដល់​សរុប ៖ " +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "ភាព​អាស្រ័យ​ដែល​ខុស​គ្នា ។ ព្យាយាម​ការ​ប្រើ -f ។" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "ខ្សែ​អក្សរ​សរុប​ ៖ " +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "ទំហំ​កំណែ​ភាព​អាស្រ័យ​សរុប ៖ " - -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "ទំហំ slack សរុប ៖" +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [បានដំឡើង​]" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "ទំហំ​សរុប​ដែល​ទុក​សម្រាប់ ៖ " +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [បានដំឡើង​]" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "ឯកសារ​កញ្ចប់ %s នៅ​ខាងក្រៅ​ការ​ធ្វើសមកាលកម្ម ។" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "រក​កញ្ចប់​មិន​ឃើញ" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [បានដំឡើង​]" -#: cmdline/apt-cache.cc:1254 +#: apt-private/private-output.cc:245 #, fuzzy -msgid "You must give at least one search pattern" -msgstr "អ្នក​ត្រូវ​តែ​ផ្ដល់​លំនាំ​មួយ​ដែល​ពិត​ប្រាកដ" +msgid "[installed]" +msgstr " [បានដំឡើង​]" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" msgstr "" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "ឯកសារ​កញ្ចប់ ៖" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "ឃ្លាំង​សម្ងាត់​ឋិតនៅ​ក្រៅ​ការ​ធ្វើ​សមកាល​កម្ម ដែលមិន​អាច x-ref ឯកសារ​កញ្ចប់​បាន​ទេ" +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "ប៉ុន្តែ​ %s ត្រូវ​បាន​ដំឡើង​" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "កញ្ចប់​ដែល​បាន​ខ្ទាស់ ៖" +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(រក​មិន​ឃើញ)" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "ប៉ុន្តែ​​វា​មិន​អាច​ដំឡើង​បាន​ទេ​" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " បាន​ដំឡើង ៖ " +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "ប៉ុន្តែ​​វា​ជា​កញ្ចប់​និម្មិត​" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " សាកល្បង ៖ " +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "ប៉ុន្តែ​វា​មិន​បាន​ដំឡើង​ទេ​" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(គ្មាន)" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "ប៉ុន្តែ វា​នឹង​មិន​ត្រូវ​បាន​ដំឡើង​ទេ" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " ខ្ទាស់​កញ្ចប់ ៖ " +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " ឬ" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " តារាង​កំណែ ៖" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "កញ្ចប់​ខាងក្រោម​មាន​ភាពអាស្រ័យ​ដែល​ខុស​គ្នា ៖" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 -#, fuzzy, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s សម្រាប់ %s %s បាន​ចងក្រងនៅលើ​%s %s\n" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" -msgstr "" -"ការ​ប្រើប្រាស់ ៖ apt-cache [options] ពាក្យ​បញ្ជា\n" -" apt-cache [options] add file1 [file2 ...]\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache គឺ​ជា​ឧបករណ៍​កម្រិតទាប​​ដែល​ប្រើ​សម្រាប់​រៀបចំ​ប្រព័ន្ធ​គោល​ពីរ​របស់ APT\n" -"ឯកសារ​ឃ្លាំង​សម្ងាត់ និង ​ព័ត៌មាន​សំណួរ​ពី​ពួក​វា\n" -"\n" -"ពាក្យ​បញ្ជា\n" -" add - បន្ថែម​ឯកសារ​កញ្ចប់​ទៅ​ឃ្លាំង​សម្ងាត់​ប្រភព\n" -" gencaches - បង្កើត​ទាំង​​កញ្ចប់​និង​ឃ្លាំង​សម្ងាត់​ប្រភព\n" -" showpkg - បង្ហាញ​ព័ត៌មាន​ទូទៅ​ខ្លះ​សម្រាប់​កញ្ចប់​តែ​មួយ\n" -" showsrc - បង្ហាញ​កំណត់​ត្រា​ប្រភព\n" -" stats - បង្ហាញ​ស្ថិតិ​មូលដ្ឋាន​ខ្លះ\n" -" dump - បង្ហាញ​ឯកសារ​ទាំងមូល​ក្នុង​ទ្រង់ទ្រាយ​សង្ខេប\n" -" dumpavail - បោះពុម្ព​ឯកសារ​ដែល​មាន​ទៅ stdout\n" -" unmet - បង្ហាញ​ភាពអាស្រ័យ​ unmet \n" -" search - ស្វែងរក​កញ្ចប់​​លំនាំ regex \n" -" show - បង្ហាញ​កំណត់​ត្រា​កញ្ចប់​ដែល​អាច​អាន​បាន\n" -" depends - បង្ហាញព័ត៌មាន​​ភាពអាស្រ័យ​កញ្ចប់​មិន​ទាន់​ច្នៃ\n" -" rdepends - បង្ហាញ​ព័ត៌មាន​ភាពអាស្រ័យ​កញ្ចប់​បញ្ច្រាស់​\n" -" pkgnames - រាយ​ឈ្មោះ​កញ្ចប់​ទាំងអស់​\n" -" dotty - បង្កើត​កញ្ចប់​ក្រាហ្វ​សម្រាប់​ GraphViz\n" -" xvcg - បង្កើត​កញ្ចប់​ក្រាហ្វ​សម្រាប់​ xvcg\n" -" policy - បង្ហាញ ការរៀបចំ​គោលការណ៍​\n" -"\n" -"ជម្រើស​ ៖\n" -" -h នេះ​ជា​អត្ថជំនួយ​\n" -" -p=? ឃ្លាំងសម្ងាត់​កញ្ចប់​ ។\n" -" -s=? ឃ្លាំងសម្ងាត់​ប្រភព ។\n" -" -q ទ្រនិច​ចង្អុល​វឌ្ឍនភាព មិន​អនុញ្ញាត​ ។\n" -" -i បាន​តែ​បង្ហាញ ព័ត៌មាន​ deps ដែល​សំខាន់​សម្រាប់ពាក្យ​បញ្ជាដែល​ខុស​គ្នា  ​​​។\n" -" -c=? អាន​ការកំណត់​រចនាសម្ព័ន្ធ​ឯកសារ​នេះ \n" -" -o=? កំណត់​ជម្រើស​ការ​កំណត់​រចនា​សម្ព័ន្ធ​តាម​ចិត្ត ឧ. eg -o dir::cache=/tmp\n" -"មើល​ apt-cache(8) និង​ apt.conf(5) សម្រាប់​ព័ត៌មាន​បន្ថែម​​មាន​ក្នុង​ទំព័រ​សៀវភៅដៃ​ ។\n" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "កញ្ចប់​ខាងក្រោម​នឹងត្រូវ​បាន​យកចេញ ៖" -#: cmdline/apt-cdrom.cc:76 -#, fuzzy -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "សូម​ផ្ដល់​ឈ្មោះ​ឲ្យ​ថាស​នេះ ឧទាហរណ៍​ដូចជា 'ដេបៀន 2.1r1 ថាស​ទី ១' ជាដើម" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "​កញ្ចប់​ខាង​ក្រោម​ត្រូវ​បាន​យក​ត្រឡប់​មក​វិញ ៖" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "សូម​បញ្ចូល​ថាស​ក្នុង​ដ្រាយ​ហើយ​ចុច​បញ្ចូល​" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "កញ្ចប់​ខាងក្រោម​នឹង​​ត្រូវ​បាន​​ធ្វើ​ឲ្យប្រសើ​ឡើង ៖" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "បរាជ័យ​ក្នុង​ការ​ប្តូរ​ឈ្មោះ %s ទៅ %s" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "កញ្ចប់​ខាងក្រោម​នឹង​​ត្រូវ​បាន​បន្ទាប ៖" -#: cmdline/apt-cdrom.cc:178 +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "កញ្ចប់​រង់ចាំ​ខាងក្រោម​នឹង​ត្រូវ​​បានផ្លាស់​​ប្តូរ​ ៖" + +#: apt-private/private-output.cc:668 +#, c-format +msgid "%s (due to %s) " +msgstr "%s (ដោយ​សារតែ​ %s) " + +#: apt-private/private-output.cc:676 msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" +"ព្រមាន​ ៖ កញ្ចប់ដែល​ចាំបាច់​ខាងក្រោម​នឹង​ត្រូវ​បាន​យកចេញ ។\n" +"ការយកចេញ​នេះ​មិន​ត្រូវ​បានធ្វើ​ទេ​លុះត្រា​តែ​អ្នកដឹង​ថា​​អ្នក​កំពុង​ធ្វើ​អ្វីឲ្យប្រាកដ !" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "ធ្វើដំណើរការ​នេះ​ម្តង​ទៀត​ សម្រាប់​ស៊ីឌី​ទាំងអស់​​ក្នុង​សំណុំ​របស់​អ្នក ។" +#: apt-private/private-output.cc:707 +#, c-format +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu ត្រូវ​បាន​ធ្វើ​ឲ្យ​ប្រសើរ %lu ត្រូវ​បានដំឡើង​ថ្មី " -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "​អាគុយម៉ង់​មិន​មាន​គូ​ទេ" +#: apt-private/private-output.cc:711 +#, c-format +msgid "%lu reinstalled, " +msgstr "%lu ត្រូវ​បាន​ដំឡើង​ឡើង​វិញ " -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -msgstr "" -"ការ​ប្រើប្រាស់ ៖ ពាក្យ​បញ្ជា​ apt-config [ជម្រើស] \n" -"\n" -"apt-config ជា​ឧបករណ៍​សាមញ្ញ​សម្រាប់​អាន​ឯកសារ​កំណត់រចនាសម្ព័ន្ធ​ APT \n" -"\n" -"ពាក្យ​បញ្ជា​ ៖\n" -" shell - របៀប​សែល​\n" -" dump - បង្ហាញ​ការកំណត់​រចនាសម្ព័ន្ធ​\n" -"\n" -"ជម្រើស​\n" -" -h អត្ថនទ​ជំនួយ​នេះ​\n" -" -c=? អាន​ឯកសារ​ការកំណត់​រចនាសម្ព័ន្ធ​នេះ \n" -" -o=? កំណត់​ជម្រើស​ការ​កំណត់​រចនា​សម្ព័ន្ធ​តាម​ចិត្ត ឧ. -o dir::cache=/tmp\n" +#: apt-private/private-output.cc:713 +#, c-format +msgid "%lu downgraded, " +msgstr "%lu ​ត្រូវបានបន្ទាប់ " -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" +#: apt-private/private-output.cc:715 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu ដែលត្រូវ​យក​ចេញ​ ហើយ​ %lu មិន​​បាន​ធ្វើ​ឲ្យ​ប្រសើរឡើយ ។\n" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" +#: apt-private/private-output.cc:719 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "%lu មិន​បាន​ដំឡើង​ ឬ យក​ចេញបានគ្រប់ជ្រុងជ្រោយ​ឡើយ​ ។\n" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "" -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "មិនអាចថ្លែង បញ្ជី​កញ្ចប់​ប្រភពចប់​ បានឡើយ %s" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "" -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "Y" + +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" msgstr "" -#: cmdline/apt-get.cc:454 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Couldn't find package %s" -msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" +msgid "Regex compilation error - %s" +msgstr "Regex កំហុស​ការចងក្រង​ - %s" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, fuzzy, c-format -msgid "%s set to manually installed.\n" -msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "ពាក្យ​បញ្ជា​ដែលធ្វើ​ឲ្យ​ទាន់​សម័យ​គ្មាន​អាគុយម៉ង់​ទេ" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" +#: apt-private/private-update.cc:90 +#, c-format +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "កំហុស​ខាងក្នុង អ្នក​ដោះស្រាយ​បញ្ហា​បានធ្វើឲ្យខូច​ឧបករណ៍" - -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "មិន​អាច​ចាក់​សោ​ថត​ទាញ​យក​បាន​ឡើយ" - -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "យ៉ាងហោចណាស់​ត្រូវ​​បញ្ជាក់​​កញ្ចប់​មួយ ​ដើម្បី​ទៅ​​ប្រមូល​យក​ប្រភព​សម្រាប់" - -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/private-show.cc:156 #, c-format -msgid "Unable to find a source package for %s" -msgstr "មិន​អាច​រក​កញ្ចប់ប្រភព​​សម្រាប់ %s បានឡើយ" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" msgstr "" -#: cmdline/apt-get.cc:791 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "កំពុង​រំលង​ឯកសារ​ដែល​បាន​ទាញយក​រួច​ '%s'\n" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "ព្រមាន​ ៖ មិនអាច​ធ្វើការផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវកញ្ចប់ខាងក្រោមបានឡើយ !" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "មិន​អាច​កំណត់​ទំហំ​ទំនេរ​ក្នុង​ %s បានឡើយ" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "បានបដិសេធ​ការព្រមាន​ការផ្ទៀងផ្ទាត់ភាព​ត្រឹមត្រូវ ។\n" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "អ្នក​ពុំ​មាន​ទំហំ​ទំនេរ​គ្រប់គ្រាន់​ទេ​នៅក្នុង​ %s ឡើយ" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "មិនអាច​ផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវកញ្ចប់​មួយចំនួន​បានឡើយ​" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "ត្រូវការ​យក​ %sB/%sB នៃ​ប័ណ្ណសារ​ប្រភព ។\n" +#: apt-private/private-download.cc:50 +#, fuzzy +msgid "Install these packages without verification?" +msgstr "ដំឡើង​កញ្ចប់​ទាំងនេះ ​ដោយគ្មានការពិនិត្យ​បញ្ជាក់ [y/N] ? " -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "ត្រូវការ​យក​ %sB នៃ​ប័ណ្ណសារ​ប្រភព​ ។\n" +msgid "Failed to fetch %s %s\n" +msgstr "បរាជ័យ​ក្នុង​ការ​ទៅ​ប្រមូល​យក​ %s %s\n" -#: cmdline/apt-get.cc:902 +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "បរាជ័យ​ក្នុង​ការ​ប្តូរ​ឈ្មោះ %s ទៅ %s" + +#: apt-private/private-sources.cc:70 #, c-format -msgid "Fetch source %s\n" -msgstr "ទៅប្រមូល​ប្រភព​ %s\n" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "បរាជ័យ​ក្នុងការទៅប្រមូលយក​ប័ណ្ណសារ​មួយចំនួន ។" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "បានបញ្ចប់ការទាញ​យក​ ហើយ​តែ​ក្នុង​របៀប​​ទាញ​យក​ប៉ុណ្ណោះ" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "កំពុង​គណនា​ការ​ធ្វើ​ឲ្យ​ប្រសើរ... " -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "កំពុង​រំលង​ការស្រាយ​នៃប្រភព​ដែលបានស្រាយរួច​នៅក្នុង %s\n" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "ធ្វើរួច​" -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "ពាក្យ​បញ្ជា​ស្រាយ '%s' បាន​បរាជ័យ​ ។\n" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "វាយ​" -#: cmdline/apt-get.cc:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "ពិនិត្យ​ប្រសិន​បើកញ្ចប់ 'dpkg-dev' មិន​ទាន់​បាន​ដំឡើង​ ។\n" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "យក​ ៖" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "សាងសង​ពាក្យ​បញ្ជា​ '%s' បានបរាជ័យ​ ។\n" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "ដំណើរ​ការ​កូន​បាន​បរាជ័យ​" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Err " -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "ត្រូវតែ​បញ្ជាក់​យ៉ាងហោចណាស់​មួយកញ្ចប់ដើម្បីពិនិត្យ builddeps សម្រាប់" +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "បាន​ទៅ​ប្រមូល​ %sB ក្នុង​ %s (%sB/s)\n" + +#: apt-private/acqprogress.cc:236 +#, c-format +msgid " [Working]" +msgstr " [កំពុង​ធ្វើការ​]" -#: cmdline/apt-get.cc:1054 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" +"ផ្លាស់ប្តូរ​មេឌៀ ៖ សូម​បញ្ចូល​ថាស​ដែល​មាន​ស្លាក\n" +" '%s'\n" +"ក្នុង​ដ្រាយ​ '%s' ហើយ​ចុច​បញ្ចូល\n" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "មិន​អាច​សាងសង់​​ព័ត៌មាន​ភាពអស្រ័យ​សម្រាប់ %s" +msgid "Unable to read %s" +msgstr "មិន​អាច​អាន​ %s បានឡើយ" -#: cmdline/apt-get.cc:1101 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s មិនមានភាពអាស្រ័យ​ស្ថាបនាឡើយ​ ។\n" - -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "%s ភាពអស្រ័យ​សម្រាប់​ %s មិន​អាច​ធ្វើ​ឲ្យ​ពេញចិត្ត​ ព្រោះ​រក​​ %s កញ្ចប់​មិន​ឃើញ​ " - -#: cmdline/apt-get.cc:1289 -#, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "%s ភាពអស្រ័យ​សម្រាប់​ %s មិន​អាច​ធ្វើ​ឲ្យ​ពេញចិត្ត​ ព្រោះ​រក​​ %s កញ្ចប់​មិន​ឃើញ​ " +msgid "Unable to change to %s" +msgstr "មិនអាច​ប្ដូរទៅ %s បានឡើយ" -#: cmdline/apt-get.cc:1312 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "បរាជ័យ​ក្នុងការ​តម្រូវចិត្តភាពអាស្រ័យ %s សម្រាប់ %s ៖ កញ្ចប់ %s ដែលបានដំឡើង គឺថ្មីពេក" +msgid "No mirror file '%s' found " +msgstr "" -#: cmdline/apt-get.cc:1351 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"ភាពអាស្រ័យ %s សម្រាប់ %s មិនអាច​តម្រូវចិត្តបានទេ ព្រោះ មិនមាន​កំណែ​នៃកញ្ចប់ %s ដែលអាច​តម្រូវចិត្ត​" -"តម្រូវការ​កំណែបានឡើយ" +msgid "Can not read mirror file '%s'" +msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" -#: cmdline/apt-get.cc:1357 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "%s ភាពអស្រ័យ​សម្រាប់​ %s មិន​អាច​ធ្វើ​ឲ្យ​ពេញចិត្ត​ ព្រោះ​រក​​ %s កញ្ចប់​មិន​ឃើញ​ " +msgid "No entry found in mirror file '%s'" +msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" -#: cmdline/apt-get.cc:1380 +#: methods/mirror.cc:445 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "បរាជ័យ​ក្នុងការ​តម្រូវចិត្តភាពអាស្រ័យ %s សម្រាប់ %s: %s" +msgid "[Mirror: %s]" +msgstr "" -#: cmdline/apt-get.cc:1395 -#, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "ភាពអាស្រ័យ​ដែល​បង្កើត​ %s មិន​អាច​បំពេញ​សេចក្ដី​ត្រូវការ​បាន​ទេ ។" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "បរាជ័យ​ក្នុង​ការ​បង្កើត​បំពង់​ IPC សម្រាប់​ដំណើរ​ការ​រង​" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "បាន​បរាជ័យ​ក្នុង​ការ​ដំណើរ​​ការ​បង្កើត​ភាព​អាស្រ័យ" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "បាន​បិទ​ការ​តភ្ជាប់​មុន​ពេល" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "កំពុង​តភ្ជាប់​ទៅ​កាន់​ %s (%s)" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "ការ​កំណត់​លំនាំ​ដើម​មិន​ល្អ !" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "ម៉ូឌុល​ដែល​គាំទ្រ ៖ " +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "សង្កត់​ បញ្ចូល ​ដើម្បី​បន្ត ។" -#: cmdline/apt-get.cc:1632 -#, fuzzy -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" msgstr "" -"របៀបប្រើ ៖ ពាក្យបញ្ជា apt-get [options]\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] ប្រភព pkg1 [pkg2 ...]\n" -"\n" -"apt-get គឺជា​ចំណុចប្រទាក់​បន្ទាត់​ពាក្យបញ្ជា​សាមញ្ញ​មួយ សម្រាប់​ធ្វើការទាញយក និង\n" -"ដំឡើង​កញ្ចប់ ។ ជាញឹកញាប់​បំផុត គឺប្រើ​ពាក្យបញ្ជា​ដើម្បី​ធ្វើឲ្យទាន់សម័យ​\n" -"និង ដំឡើង ។\n" -"\n" -"ពាក្យ​បញ្ជា ៖\n" -" update - ទៅយក​បញ្ជី​កញ្ចប់​ថ្មី\n" -" upgrade - ធ្វើឲ្យប្រសើរ\n" -" install - ដំឡើង​កញ្ចប់​ថ្មី (pkg គឺ libc6 មិនមែន libc6.deb)\n" -" remove - យក​កញ្ចប់​ចេញ\n" -" source - ទាញយក​ប័ណ្ណសារ​ប្រភព\n" -" build-dep - កំណត់​រចនា​សម្ព័ន្ធ​ភាពអាស្រ័យ​ក្នុងការស្ថាបនា​សម្រាប់​កញ្ចប់​ប្រភព\n" -" dist-upgrade - ការចែកចាយ​ភាពល្អប្រសើរ សូមមើល apt-get(8)\n" -" dselect-upgrade - ដាក់ពីក្រោយ​ជម្រើស dselect\n" -" clean - លុប​ឯកសារប័ណ្ណសារ​ដែលបានទាញ​យក\n" -" autoclean - លុប​ឯកសារប័ណ្ណសារ​ដែលបានទាញយក​ចាស់\n" -" check - ផ្ទៀងផ្ទាត់​ថា​មិនមានភាព​អាស្រ័យ​ដែល​ខូចទេ\n" -"\n" -"ជម្រើស ៖\n" -" -h អត្ថបទ​ជំនួយ​នេះ ៖\n" -" -q ទិន្នផល​ដែល​អាច​ចុះកំណត់ហេតុបាន - មិនមាន​ទ្រនិចបង្ហាញ​ដំណើរការឡើយ\n" -" -qq គ្មាន​លទ្ធផល​ទេ លើកលែងតែ​កំហុស\n" -" -d ទាញយកតែប៉ុណ្ណោះ - កុំដំឡើង​ ឬ ស្រាយ​ប័ណ្ណសារ\n" -" -s No-act. ធ្វើការ​ក្លែង​ការរៀប​តាមលំដាប់\n" -" -y សន្មត​ថា បាទ/ចាស ទៅគ្រប់តម្រូវការ ហើយកុំ​រំលឹក\n" -" -f ប៉ុនប៉ង​ធ្វើការបន្ត​ ប្រសិនបើ​ការពិនិត្យ​ភាពត្រឹមត្រូវ​បរាជ័យ\n" -" -m ប៉ុនប៉ង​ធ្វើការបន្ត​ ប្រសិនបើ​ប័ណ្ណសារ​មិនអាច​ដាក់ទីតាំងបាន\n" -" -u បង្ហាញ​បញ្ជី​កញ្ចប់​ដែល​បានធ្វើឲ្យប្រសើរ​ផងដែរ\n" -" -b ស្ថាបនា​កញ្ចប់ប្រភព បន្ទាប់ពី​ទៅប្រមូលយកវា\n" -" -V បង្ហាញ​លេខកំណែ​ជា​អក្សរ\n" -" -c=? អាន​ឯកសារកំណត់​រចនា​សម្ព័ន្ធ​នេះ\n" -" -o=? កំណត់​ជម្រើស​កំណត់រចនាសម្ព័ន្ធ​តាមចិត្ត​មួយ ឧទ. -o dir::cache=/tmp\n" -"សូមមើល apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -#: cmdline/apt-helper.cc:35 +#: dselect/install:102 #, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "យ៉ាងហោចណាស់​ត្រូវ​​បញ្ជាក់​​កញ្ចប់​មួយ ​ដើម្បី​ទៅ​​ប្រមូល​យក​ប្រភព​សម្រាប់" +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "កំហុ​ស​មួយ​ចំនួន​បាន​កើត​ឡើង​ខណៈពេល​ពន្លា​កញ្ចប់ ។ ខ្ញុំ​នឹង​កំណត់រចនាសម្ប័ន្ធ" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: dselect/install:103 +#, fuzzy +msgid "will be configured. This may result in duplicate errors" +msgstr "កញ្ចប់​ដែល​បាន​ដំឡើង​ ។ នេះ​ប្រហែល​ជា​លទ្ធផល​កំហុស​ស្ទួន​" -#: cmdline/apt-helper.cc:66 +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "ឬ​ កំហុសដែលបង្ក​ដោយ​ការ​បាត់បង់​ភាពអាស្រ័យ​ ។ ​មិន​អី​ទេ​ គ្រាន់​តែ​ជា​កំហុស " + +#: dselect/install:105 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "នៅខាងលើ​សារ​នេះ​គឺ​សំខាន់​ណាស់​ ។ សូម​ជួសជុល​ពួកវា​ ហើយ​រត់​ការដំឡើង​ម្តងទៀត​" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "ប៉ុន្តែ​វា​មិន​បាន​ដំឡើង​ទេ​" +#: dselect/update:30 +msgid "Merging available information" +msgstr "បញ្ចូល​​ព័ត៌មាន​ដែលមាន​ចូល​គ្នា" -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "ទម្លាក់​ថ្នាំង​ដែល​បាន​ហៅ​លើ​ថ្នាំងដែល​នៅតែតភ្ជាប់" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "បរាជ័យ​ក្នុងការ​ដាក់ទីតាំង​ធាតុ​ដែលរាយប៉ាយ !" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s ជាកំណែ​ដែលថ្មីបំផុតរួចទៅហើយ ។\n" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "បរាជ័យ​ក្នុងការ​បម្រុងទុក​ការបង្វែរ" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s ជាកំណែ​ដែលថ្មីបំផុតរួចទៅហើយ ។\n" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "កំហុស​ខាងក្នុង នៅក្នុង AddDiversion" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" +#: apt-inst/filelist.cc:477 +#, c-format +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "កំពុង​ព្យាយាម​សរសេរ​ជាន់​ពីលើ​ការបង្វែរ %s -> %s និង​ %s/%s" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "បរាជ័យ​ក្នុង​ការ​បើក %s" +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "ការបន្ថែម​ស្ទួន នៃការបង្វែរ​ %s -> %s" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "ឯកសារ​កំណត់​រចនាសម្ព័ន្ធ​ស្ទួន​ %s/%s" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" +msgstr "ផ្លូវ​ %s វែង​ពេក" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" +msgstr "កំពុង​ពន្លា​ %s ច្រើន​ជាង​ម្តង​" -#: methods/cdrom.cc:203 +#: apt-inst/extract.cc:142 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "មិន​អាច​អាន​មូលដ្ឋាន​ទិន្នន័យ​​ស៊ីឌីរ៉ូម​​ %s បានឡើយ" +msgid "The directory %s is diverted" +msgstr "ថត​ %s ត្រូវបាន​បង្វែរ" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"សូម​ប្រើ​ apt-cdrom ដើម្បី​បង្កើត​ស៊ីឌី-រ៉ូម​នេះ​ ដែលបានរៀបចំ​តាម​ APT​ ។ apt-get ធ្វើ​ឲ្យ​ទាន់សម័យ ​មិន​" -"ត្រូវ​បានប្រើ​ដើម្បី​បន្ថែម​ស៊ីឌី-រ៉ូមថ្មីឡើយ​" +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "កញ្ចប់ ​កំពុង​ព្យាយាម​សរសេរ​ទៅកាន់​គោលដៅ​បង្វែរ​ %s/%s" + +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "ផ្លូវ​បង្វែរ វែងពេក" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 +#, c-format +msgid "Failed to stat %s" +msgstr "បាន​បរាជ័យ​ក្នុង​ការថ្លែង %s" + +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "បរាជ័យ​ក្នុង​ការ​ប្តូរ​ឈ្មោះ %s ទៅ %s" + +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "ថត​ %s ត្រូវ​បាន​ជំនួស​ដោយ​មិនមែន​ជា​ថត​" + +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "បរាជ័យ​ក្នុងការ​ដាក់ថ្នាំង​នៅក្នុង​ធុង​រាយប៉ាយ​របស់វា" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "ផ្លូវ​វែង​ពេក" + +#: apt-inst/extract.cc:421 +#, c-format +msgid "Overwrite package match with no version for %s" +msgstr "សរសេរ​ជាន់​លើកញ្ចប់ផ្គួផ្គង​ដោយ​គ្មាន​កំណែ​សម្រាប់ %s" + +#: apt-inst/extract.cc:438 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" +msgstr "ឯកសារ​ %s/%s សរសេរជាន់​ពីលើ​មួយ​ក្នុង​កញ្ចប់ %s" + +#: apt-inst/extract.cc:498 +#, c-format +msgid "Unable to stat %s" +msgstr "មិន​អាច​ថ្លែង %s បានឡើយ" + +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, c-format +msgid "Failed to write file %s" +msgstr "បរាជ័យ​ក្នុងការ​សរសេរ​ឯកសារ %s" + +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "បរាជ័យ​ក្នុងការ​បិទឯកសារ %s" + +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "នេះ​ជាមិនមែនជា​ប័ណ្ណសារ​ DEB ​ត្រឹមត្រូវទេ បាត់បង់សមាជិក​ '%s'​" + +#: apt-inst/deb/debfile.cc:132 +#, c-format +msgid "Internal error, could not locate member %s" +msgstr "កំហុស​ខាងក្នុង ​មិន​អាច​កំណត់​ទីតាំង​សមាជិក​ %s បានឡើយ" + +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "ឯកសារត្រួតពិនិត្យ​ដែលមិនអាច​ញែកបាន" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "ហត្ថលេខា​ប័ណ្ណសា​រមិន​ត្រឹមត្រូវ​" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "ស៊ីឌី-រ៉ូមខុស" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "កំហុស​ក្នុងការ​អានបឋមកថា​សមាជិក​ប័ណ្ណសារ" -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "មិនអាចអាន់ម៉ោន ស៊ីឌី​-រ៉ូម​ នៅ​​ក្នុង​ %s បានទេ វាអាចនៅតែប្រើបាន ។" +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "បឋមកថា​សមាជិក​ប័ណ្ណសារ" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "រក​ថាសមិ​ន​ឃើញ​ ។" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "បឋមកថា​សមាជិក​ប័ណ្ណសារ" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "រកឯកសារ​មិន​ឃើញ​" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "ប័ណ្ណសារ ខ្លីពេក" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "បរាជ័យ​ក្នុងការថ្លែង" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "បរាជ័យ​ក្នុងការ​អាន​បឋមកថា​ប័ណ្ណសារ" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "បរាជ័យក្នុងការកំណត់​ពេលវេលា​ការកែប្រែ​" +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "បាន​បរាជ័យក្នុង​ការ​បង្កើត​បំពង់​" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI មិនត្រឹមត្រូវ​ URIS មូលដ្ឋានមិនត្រូវ​ចាប់ផ្តើម​ជាមួយ​ // ឡើយ" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "បាន​បរាជ័យក្នុង​ការ​ប្រតិបត្តិ gzip" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "កំពុង​ចូល​" +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "ប័ណ្ណសារ​បាន​ខូច​" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "មិន​អាច​កំណត់ឈ្មោះដែលត្រូវបង្ហាញ​បានឡើយ​" +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar ឆេកសាំ​បាន​បរាជ័យ ប័ណ្ណសារ​បាន​ខូច" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "មិន​អាច​កំណត់ឈ្មោះមូលដ្ឋាន​បានឡើយ" +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "មិន​ស្គាល់​ប្រភេទ​បឋមកថា​ TAR %u ដែលជា​សមាជិក​ %s" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/install-progress.cc:57 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "ម៉ាស៊ីន​បម្រើបានបដិសេធ​ការតភ្ជាប់ ហើយ​ បាននិយាយ ៖ %s" +msgid "Progress: [%3i%%]" +msgstr "" -#: methods/ftp.cc:225 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" + +#: apt-pkg/init.cc:146 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER បរាជ័យ​ ម៉ាស៊ីន​បម្រើបាន​​និយាយ ៖ %s" +msgid "Packaging system '%s' is not supported" +msgstr "មិន​គាំទ្រ​ប្រព័ន្ធ​កញ្ចប់'%s' ឡើយ" -#: methods/ftp.cc:232 +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "មិនអាច​កំណត់​ប្រភេទ​ប្រព័ន្ធ​កញ្ចប់​ដែល​សមរម្យ​បានឡើយ" + +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS បានបរាជ័យ​ ម៉ាស៊ីន​បម្រើបាន​​និយាយ ៖ %s" +msgid "Wrote %i records.\n" +msgstr "បានសរសេរ %i កំណត់ត្រា ។\n" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"ម៉ាស៊ីន​បម្រើ​ប្រូកស៊ី​ត្រូវ​បាន​បញ្ជាក់​ ប៉ុន្តែ​គ្មាន​ស្គ្រីប​ចូល​ទេ Acquire::ftp::ProxyLogin គឺ ទទេ ។" +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "បានសរសេរ %i កំណត់ត្រា​ជាមួយ​ %i ឯកសារ​ដែល​បាត់បង់ ។\n" -#: methods/ftp.cc:280 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "ពាក្យ​បញ្ជា​ស្គ្រីប​ចូល​ '%s' បានបរាជ័យ ម៉ាស៊ីន​បម្រើ​បាននិយាយ ៖ %s" +msgid "Wrote %i records with %i mismatched files\n" +msgstr "បានសរសេរ​ %i កំណត់ត្រា​ជាមួយួយ​ %i ឯកសារ​ដែល​មិន​បាន​ផ្គួផ្គង​\n" -#: methods/ftp.cc:306 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE បានបរាជ័យ​ ម៉ាស៊ីន​បម្រើ​បាននិយាយ​ ៖ %s" +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "បានសរសេរ %i កំណត់ត្រា​ជាមួយ​ %i ឯកសារ​ដែល​បាត់បង់​ និង​ %i ឯកសារ​ដែល​មិន​បាន​ផ្គួផ្គង​ ​\n" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "អស់ពេល​ក្នុងការតភ្ជាប់​" +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "ម៉ាស៊ីន​បម្រើ​បាន​បិទ​ការតភ្ជាប់​" +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "MD5Sum មិន​ផ្គួផ្គង​" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "ឆ្លើយតប​សតិ​បណ្តោះអាសន្ន​​អស់ចំណុះ ។" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "បញ្ជី​កញ្ចប់​ ឬ ឯកសារ​ស្ថានភាព​មិន​អាចត្រូវបាន​​ញែក ​​ឬ ត្រូវបាន​បើកបានឡើយ​​ ។" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "ការបង្ខូច​ពិធីការ​" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "អ្នកប្រហែលជា​ចង់ភាពទាន់សម័យ apt-get ដើម្បី​កែ​បញ្ហា​ទាំងនេះ" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "មិន​អាច​បង្កើត​រន្ធបានឡើយ" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "មិន​អាច​អាន​បញ្ជី​ប្រភព​បាន​ឡើយ​ ។" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "មិន​អាច​តភ្ជាប់​​រន្ធទិន្នន័យ​បានឡើយ អស់​ពេល​ក្នុងការតភ្ជាប់​" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "ឃ្លាំង​កញ្ចប់​ទទេ​" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "បាន​បរាជ័យ" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "​​ឯកសារ​ឃ្លាំង​កញ្ចប់​មិន​ត្រឹមត្រូវ​" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "មិនអាចតភ្ជាប់​​រន្ធអកម្ម​​បានឡើយ ។" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "ឯកសារ​ឃ្លាំងសម្ងាត់​​កញ្ចប់​ជាកំណែ​មិន​ត្រូវគ្នា​" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo មិន​អាច​​ទទួល​យក​រន្ធ​សម្រាប់​ស្តាប់​​បានឡើយ" +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "​​ឯកសារ​ឃ្លាំង​កញ្ចប់​មិន​ត្រឹមត្រូវ​" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "មិន​អាច​ចងរន្ធ​បានបានឡើយ​" +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "APT នេះ មិនគាំទ្រ​ប្រព័ន្ធ​ ការធ្វើកំណែនេះទេ​ '%s'" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "មិនអាច​ស្ដាប់នៅលើរន្ធ​បានឡើយ" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "ឃ្លាំង​សម្ងាត់​កញ្ចប់ត្រូវ​បានស្ថាបនា់​សម្រាប់ស្ថាបត្យករ​ខុស​ៗគ្នា​​" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "មិន​អាច​កំណត់​ឈ្មោះរបស់​រន្ធ​បានឡើយ" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "អាស្រ័យ​" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "មិនអាច​ផ្ញើពាក្យ​បញ្ជា​ PORT បានឡើយ" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "អាស្រ័យជា​មុន" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "មិន​ស្គាល់​អាសយដ្ឋាន​គ្រួសារ​ %u (AF_*)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "ផ្ដល់យោបល់​" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT បរាជ័យ​ ម៉ាស៊ីន​បម្រើ​បាន​និយាយ ៖ %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "ផ្តល់​អនុសាសន៍​" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "ការតភ្ជាប់​រន្ធ​​ទិន្នន័បានអស់ពេល​" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "ប៉ះទង្គិច" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "មិនអាច​ទទួលយក​ការតភ្ជាប់​បានឡើយ" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "ជំនួស​" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "បញ្ហា​ធ្វើឲ្យខូច​ឯកសារ" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "លែង​ប្រើ" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "មិន​អាច​ទៅ​ប្រមូល​យក​ឯកសារ​បានឡើយ ម៉ាស៊ីន​បម្រើ​បាន​និយាយ​ '%s'" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "រន្ធ​ទិន្នន័យ​បាន​អស់​ពេល​" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "បរាជ័យក្នុងការ​ផ្ទេរ​ទិន្នន័យ ម៉ាស៊ីន​បម្រើ​បាន​និយាយ​ '%s'" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "សំខាន់​" + +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "បាន​ទាមទារ" + +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "គំរូ" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "សំណួរ​" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "ស្រេចចិត្ត" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "មិន​អាច​ហៅ​ " +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "បន្ថែម" -#: methods/connect.cc:76 +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Connecting to %s (%s)" -msgstr "កំពុង​តភ្ជាប់​ទៅ​កាន់​ %s (%s)" +msgid "The method driver %s could not be found." +msgstr "មិនអាច​រកឃើញ​កម្មវិធី​បញ្ជា​វិធីសាស្ត្រ %s ឡើយ ។" -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[IP ៖ %s %s]" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "ពិនិត្យ​ប្រសិន​បើកញ្ចប់ 'dpkg-dev' មិន​ទាន់​បាន​ដំឡើង​ ។\n" -#: methods/connect.cc:94 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "មិន​អាច​បង្កើត​រន្ធ​សម្រាប់ %s (f=%u t=%u p=%u) បានឡើយ" +msgid "Method %s did not start correctly" +msgstr "វិធីសាស្ត្រ​ %s មិន​អាច​ចាប់​ផ្តើម​ត្រឹមត្រូវ​ទេ​" -#: methods/connect.cc:100 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "មិនអាច​ចាប់ផ្ដើម​ការតភ្ជាប់​​ទៅ​កាន់​ %s:%s (%s) បានឡើយ ។" +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "សូម​បញ្ចូល​ស្លាក​ឌីស​ ៖ '%s' ក្នុង​ដ្រាយ​ '%s' ហើយ​សង្កត់​ចូល ។" -#: methods/connect.cc:108 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "មិន​អាច​តភ្ជាប់​ទៅ​កាន់​ %s:%s (%s) បានឡើយ ការ​តភ្ជាប់​បានអស់​ពេល​" +msgid "Index file type '%s' is not supported" +msgstr "ប្រភេទ​ឯកសារ​លិបិក្រម​ '%s' មិនត្រូវ​បាន​គាំទ្រ​" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "មិន​អាច​តភ្ជាប់​ទៅកាន់​ %s:%s (%s) បានឡើយ ។" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "កំពុងស្ថាបនា​មែកធាងភាពអាស្រ័យ" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 -#, c-format -msgid "Connecting to %s" -msgstr "កំពុង​តភ្ជាប់​ទៅកាន់ %s" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "កំណែ​សាកល្បង​" -#: methods/connect.cc:180 methods/connect.cc:199 -#, c-format -msgid "Could not resolve '%s'" -msgstr "មិន​អាច​ដោះស្រាយ​ '%s' បានឡើយ" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "ការបង្កើត​ភាពអាស្រ័យ​" -#: methods/connect.cc:205 -#, c-format -msgid "Temporary failure resolving '%s'" -msgstr "ការ​ដោះស្រាយ​ភាព​បរាជ័យ​​បណ្តោះអាសន្ន '%s'" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +#, fuzzy +msgid "Reading state information" +msgstr "បញ្ចូល​​ព័ត៌មាន​ដែលមាន​ចូល​គ្នា" -#: methods/connect.cc:209 +#: apt-pkg/depcache.cc:250 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "ការ​ដោះស្រាយ​អ្វី​អាក្រក់ដែល​បាន​កើត​ឡើង​ '%s:%s' (%i)" +msgid "Failed to open StateFile %s" +msgstr "បរាជ័យ​ក្នុង​ការ​បើក %s" -#: methods/connect.cc:211 +#: apt-pkg/depcache.cc:256 #, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "ការ​ដោះស្រាយ​អ្វី​អាក្រក់ដែល​បាន​កើត​ឡើង​ '%s:%s' (%i)" +msgid "Failed to write temporary StateFile %s" +msgstr "បរាជ័យ​ក្នុងការ​សរសេរ​ឯកសារ %s" -#: methods/connect.cc:258 -#, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "មិន​អាច​តភ្ជាប់​ទៅកាន់​​ %s %s ៖" +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "ប្តូរ​ឈ្មោះ​បានបរាជ័យ​, %s (%s -> %s) ។" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "កំហុស​ខាងក្នុង​ ៖ ហត្ថលេខា​​ល្អ ប៉ុន្តែ ​មិន​អាច​កំណត់​កូនសោ​ស្នាម​ម្រាមដៃ ?!" +#: apt-pkg/acquire-item.cc:163 +#, fuzzy +msgid "Hash Sum mismatch" +msgstr "MD5Sum មិន​ផ្គួផ្គង​" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "​បានជួប​ប្រទះ​​​​ហត្ថលេខា​យ៉ាងហោចណាស់មួយ ដែ​លត្រឹមត្រូវ​ ។" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "ទំហំ​មិនបាន​ផ្គួផ្គង​" -#: methods/gpgv.cc:174 +#: apt-pkg/acquire-item.cc:173 #, fuzzy -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "មិន​អាច​ប្រតិបត្តិ '%s' ដើម្បី​ផ្ទៀងផ្ទាត់​ហត្ថលេខា (តើ gpgv ត្រូវ​បាន​ដំឡើង​ឬនៅ ?)" +msgid "Invalid file format" +msgstr "ប្រតិបត្តិការ​មិន​ត្រឹមត្រូវ​ %s" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1573 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "មិនស្គាល់កំហុស ក្នុងការប្រតិបត្តិ gpgv" +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "ហត្ថលេខា​ខាង​ក្រោម​មិន​ត្រឹមត្រូវ ៖\n" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "គ្មាន​កូនសោ​សាធារណៈ​អាច​រក​បាន​ក្នុងកូនសោ IDs ខាងក្រោម​នេះទេ ៖\n" -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1669 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "ហត្ថលេខា​ខាងក្រោម​មិន​អាចផ្ទៀងផ្ទាត់បាន​ទេ​ ព្រោះកូនសោ​សាធារណៈមិន​អាច​ប្រើ​បាន​ ៖\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "កំហុសក្នុងការ​សរសេរ​ទៅកាន់​ឯកសារ" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "កំហុស​ក្នុងការ​អាន​ពី​ម៉ាស៊ីនបម្រើ ។ ការបញ្ចប់​ពីចម្ងាយ​បានបិទការតភ្ជាប់" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "កំហុស​ក្នុងការអាន​ពី​ម៉ាស៊ីន​បម្រើ" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "កំហុស​ក្នុងការ​សរសេរទៅកាន់​ឯកសារ" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "ជ្រើស​បាន​បរាជ័យ​" - -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "ការតភ្ជាប់​បាន​អស់ពេល​" - -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "កំហុស​ក្នុងការ​សរសេរទៅកាន់​ឯកសារលទ្ធផល" - -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "កំពុង​រង់ចាំ​បឋមកថា" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "ជួរ​បឋមកថា​ខូច​" +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "ម៉ាស៊ីន​បម្រើ​ HTTP បានផ្ញើបឋមកថាចម្លើយតបមិនត្រឹមត្រូវ" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "ម៉ាស៊ីន​បម្រើ​ HTTP បានផ្ញើ​​បឋមកថាប្រវែង​​​មាតិកា​មិនត្រឹមត្រូវ​" +#: apt-pkg/acquire-item.cc:1859 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"ខ្ញុំ​មិន​អាច​រកទីតាំង​ឯកសារ​សម្រាប់​កញ្ចប់ %s បាន​ទេ ។ ​មាន​ន័យ​ថា​អ្នក​ត្រូវការ​ជួសជុល​កញ្ចប់​នេះ​ដោយ​ដៃ ។ " +"(ដោយសារ​​បាត់​ស្ថាបត្យកម្ម)" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "ម៉ាស៊ីន​បម្រើ​ HTTP បានផ្ញើ​បឋមកថា​ជួរ​មាតិកា​មិន​ត្រឹមត្រូវ​" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "ម៉ាស៊ីន​បម្រើ HTTP នេះបាន​ខូច​​​ជួរ​គាំទ្រ​" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "កញ្ចប់​ឯកសារ​លិបិក្រម​ត្រូវ​បាន​ខូច ។ គ្មាន​ឈ្មោះ​ឯកសារ ៖ វាល​សម្រាប់​កញ្ចប់នេះ​ទេ​ %s ។" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "មិនស្គាល់​ទ្រង់ទ្រាយ​កាលបរិច្ឆេទ" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "ប្រភេទ​ឯកសារ​លិបិក្រម​ '%s' មិនត្រូវ​បាន​គាំទ្រ​" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "ទិន្នន័យ​បឋមកថា​ខូច" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "មិនអាច​ថ្លែង %s បានឡើយ ។" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "ការតភ្ជាប់​បាន​បរាជ័យ​" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "ឃ្លាំងសម្ងាត់​មិន​ត្រូវ​គ្នា​នឹង ប្រព័ន្ធ ធ្វើកំណែ" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "កំហុស​ខាង​ក្នុង​" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "កំហុស​បានកើតឡើង​ខណៈពេល​កំពុង​ដំណើរការ​ %s (FindPkg)" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "កំពុង​គណនា​ការ​ធ្វើ​ឲ្យ​ប្រសើរ... " +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "អស្ចារ្យ អ្នក​មាន​ឈ្មោះ​កញ្ចប់​លើស​ចំនួន​ APT នេះ​ឆបគ្នា​​  ។" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "ធ្វើរួច​" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "អស្ចារ្យ អ្នក​មាន​កំណែ​លើស​ចំនួន​ APT នេះ​ឆបគ្នា​ ។" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/pkgcachegen.cc:263 +#, fuzzy +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "អស្ចារ្យ អ្នក​មាន​កំណែ​លើស​ចំនួន​ APT នេះ​ឆបគ្នា​ ។" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "អស្ចារ្យ​, អ្នក​មាន​ភាពអាស្រ័យ​លើស​ចំនួន​ APT នេះ​ឆបគ្នា​ ។" -#: apt-private/private-list.cc:164 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "កញ្ចប់​ %s %s រក​មិន​ឃើញ​ខណៈ​ពេល​កំពុង​ដំណើរការ​ភាពអាស្រ័យ​​ឯកសារ" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "កំពុង​កែ​ភាពអាស្រ័យ​..." +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "មិនអាចថ្លែង បញ្ជី​កញ្ចប់​ប្រភពចប់​ បានឡើយ %s" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " បាន​បរាជ័យ ។" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "កំពុង​អាន​បញ្ជី​កញ្ចប់" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "មិន​អាច​កែ​ភាព​អាស្រ័យ​បានឡើយ​" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "ការផ្ដល់​ឯកសារ​ប្រមូលផ្ដុំ" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "មិនអាច​បង្រួម​ការ​កំណត់​ភាព​ប្រសើរ​​បាន​ឡើយ​" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "មិន​អាច​សរសេរ​ទៅ %s" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " ធ្វើ​រួច" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "IO កំហុសក្នុងការររក្សាទុក​ឃ្លាំង​សម្ងាត់​ប្រភព​" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "អ្នក​ប្រហែល​ជា​ចង់រត់ 'apt-get -f install' ដើម្បី​កែ​វា​​ទាំងនេះ​ហើយ ។" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "ប្លុក​ក្រុមហ៊ុន​លក់​ %s គ្មាន​ស្នាម​ផ្តិត​ម្រាម​ដៃ" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "ភាព​អាស្រ័យ​ដែល​ខុស​គ្នា ។ ព្យាយាម​ការ​ប្រើ -f ។" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "រាយបញ្ជី​ថត​ %spartial គឺ​បាត់បង់​ ។" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/acquire.cc:91 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "ថត​ប័ណ្ណសារ​ %spartial គឺ​បាត់បង់​ ។" -#: apt-private/private-output.cc:234 +#: apt-pkg/acquire.cc:99 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [បានដំឡើង​]" +msgid "Unable to lock directory %s" +msgstr "មិន​អាច​ចាក់​សោ​ថត​បញ្ជីបានឡើយ" -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [បានដំឡើង​]" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "កំពុង​ទៅ​យក​ឯកសារ %li នៃ %li (នៅសល់ %s)" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "កំពុង​ទៅយក​ឯកសារ %li នៃ %li" -#: apt-private/private-output.cc:243 +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 #, fuzzy -msgid "[installed,automatic]" -msgstr " [បានដំឡើង​]" +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"ឯកសារ​លិបិក្រម​មួយ​ចំនួន​បាន​បរាជ័យ​ក្នុង​ការ​​ទាញ​យក ​ពួកវាត្រូវបាន​មិន​អើពើ​ ឬ ប្រើ​​ឯកសារ​ចាស់​ជំនួសវិញ ​​។" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [បានដំឡើង​]" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "អ្នកត្រូវតែដាក់ 'ប្រភព' URIs មួយចំនួន​នៅក្នុង sources.list របស់អ្នក" -#: apt-private/private-output.cc:249 +#: apt-pkg/policy.cc:83 #, c-format -msgid "[upgradable from: %s]" +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/policy.cc:422 +#, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "កំណត់ត្រា​មិនត្រឹមត្រូវ​នៅក្នុង​ឯកសារចំណង់ចំណូលចិត្ត មិនមាន​បឋមកថា​កញ្ចប់ទេ" -#: apt-private/private-output.cc:435 +#: apt-pkg/policy.cc:444 #, c-format -msgid "but %s is installed" -msgstr "ប៉ុន្តែ​ %s ត្រូវ​បាន​ដំឡើង​" +msgid "Did not understand pin type %s" +msgstr "មិន​បាន​យល់​ពី​ប្រភេទ​ម្ជុល %s ឡើយ" -#: apt-private/private-output.cc:437 +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "គ្មាន​អទិភាព (ឬ សូន្យ​) បានបញ្ជាក់​សម្រាប់​ម្ជុល​ទេ" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 #, c-format -msgid "but %s is to be installed" -msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "ប៉ុន្តែ​​វា​មិន​អាច​ដំឡើង​បាន​ទេ​" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "ប៉ុន្តែ​​វា​ជា​កញ្ចប់​និម្មិត​" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"ការរត់​ការដំឡើង​នេះ នឹងទាមទារ​ឲ្យយកកញ្ចប់ចាំបាច់ %s បណ្ដោះអាសន្ន ដោយសារ រង្វិល ការប៉ះទង្គិច/" +"ភាពអាស្រ័យជាមុន ។ ជាញឹកញាប់គឺ មិនត្រឹមត្រូវ ប៉ុន្តែ ប្រសិនបើអ្នក​ពិតជាចង់ធ្វើវា ធ្វើឲ្យជម្រើស APT::" +"Force-LoopBreak សកម្ម ។" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "ប៉ុន្តែ​វា​មិន​បាន​ដំឡើង​ទេ​" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "បន្ទាត់​ %u មាន​ប្រវែង​វែងពេកនៅ​ក្នុង​បញ្ជី​ប្រភព​ %s ។" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "ប៉ុន្តែ វា​នឹង​មិន​ត្រូវ​បាន​ដំឡើង​ទេ" +#: apt-pkg/cdrom.cc:571 +#, fuzzy +msgid "Unmounting CD-ROM...\n" +msgstr "មិនកំពុងម៉ោន ស៊ីឌី​-រ៉ូម​ ទេ..." -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " ឬ" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "ប្រើប្រាស់ចំណុចម៉ោន​ ស៊ីឌី​-រ៉ូម​ %s\n" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "កញ្ចប់​ខាងក្រោម​មាន​ភាពអាស្រ័យ​ដែល​ខុស​គ្នា ៖" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "កំពុង​រង់ចាំឌីស​...\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "កំពុង​ម៉ោន​ ស៊ីឌី​-រ៉ូម​...\n" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "កញ្ចប់​ខាងក្រោម​នឹងត្រូវ​បាន​យកចេញ ៖" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "កំពុង​ធ្វើអត្តសញ្ញាណនា​... " -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "​កញ្ចប់​ខាង​ក្រោម​ត្រូវ​បាន​យក​ត្រឡប់​មក​វិញ ៖" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "បានទុក​ស្លាក ៖ %s \n" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "កញ្ចប់​ខាងក្រោម​នឹង​​ត្រូវ​បាន​​ធ្វើ​ឲ្យប្រសើ​ឡើង ៖" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "កំពុង​ស្កេន​ឌីស​សម្រាប់​​ឯកសារ​លិបិក្រម​...\n" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "កញ្ចប់​ខាងក្រោម​នឹង​​ត្រូវ​បាន​បន្ទាប ៖" +#: apt-pkg/cdrom.cc:734 +#, fuzzy, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "បានរកឃើញ លិបិក្រម​កញ្ចប់ %i លិបិក្រម​ប្រភព%i និង ហត្ថលេខា %i \n" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "កញ្ចប់​រង់ចាំ​ខាងក្រោម​នឹង​ត្រូវ​​បានផ្លាស់​​ប្តូរ​ ៖" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" + +#: apt-pkg/cdrom.cc:771 +#, fuzzy, c-format +msgid "Found label '%s'\n" +msgstr "បានទុក​ស្លាក ៖ %s \n" -#: apt-private/private-output.cc:668 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (ដោយ​សារតែ​ %s) " +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "នោះមិនមែនជាឈ្មោះត្រឹមត្រូវទេ សូមព្យាយាម​ម្ដងទៀត ។\n" -#: apt-private/private-output.cc:676 +#: apt-pkg/cdrom.cc:817 +#, c-format msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"This disc is called: \n" +"'%s'\n" msgstr "" -"ព្រមាន​ ៖ កញ្ចប់ដែល​ចាំបាច់​ខាងក្រោម​នឹង​ត្រូវ​បាន​យកចេញ ។\n" -"ការយកចេញ​នេះ​មិន​ត្រូវ​បានធ្វើ​ទេ​លុះត្រា​តែ​អ្នកដឹង​ថា​​អ្នក​កំពុង​ធ្វើ​អ្វីឲ្យប្រាកដ !" +"ឌីស​នេះ​ត្រូវ​បាន​ហៅ​ ៖ \n" +"'%s'\n" -#: apt-private/private-output.cc:707 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu ត្រូវ​បាន​ធ្វើ​ឲ្យ​ប្រសើរ %lu ត្រូវ​បានដំឡើង​ថ្មី " +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "កំពុង​ចម្លង​បញ្ជី​កញ្ចប់..." -#: apt-private/private-output.cc:711 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu ត្រូវ​បាន​ដំឡើង​ឡើង​វិញ " +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "កំពុងសរសេរ​បញ្ជី​ប្រភព​ថ្មី\n" -#: apt-private/private-output.cc:713 -#, c-format -msgid "%lu downgraded, " -msgstr "%lu ​ត្រូវបានបន្ទាប់ " +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "ធាតុបញ្ចូល​បញ្ជីប្រភព​សម្រាប់​ឌីស​នេះគឺ ៖\n" -#: apt-private/private-output.cc:715 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu ដែលត្រូវ​យក​ចេញ​ ហើយ​ %lu មិន​​បាន​ធ្វើ​ឲ្យ​ប្រសើរឡើយ ។\n" +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "កញ្ចប់ %s ត្រូវការឲ្យដំឡើង ប៉ុន្តែ​ ខ្ញុំ​មិន​អាច​រក​ប័ណ្ណសារ​សម្រាប់​វា​បាន​ទេ​ ។" -#: apt-private/private-output.cc:719 -#, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu មិន​បាន​ដំឡើង​ ឬ យក​ចេញបានគ្រប់ជ្រុងជ្រោយ​ឡើយ​ ។\n" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"កំហុស pkgProblemResolver::ដោះស្រាយ​សញ្ញាបញ្ឈប់​ដែលបានបង្កើត នេះ​ប្រហែលជា បង្កដោយកញ្ចប់​" +"ដែលបាន​ទុក ។" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "មិន​អាច​កែ​បញ្ហាបានទេេ អ្កបានទុក​កញ្ចប់​ដែល​ខូច ។។" + +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" msgstr "" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" msgstr "" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "Y" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "ពាក្យ​បញ្ជា​ដែលធ្វើ​ឲ្យ​ទាន់​សម័យ​គ្មាន​អាគុយម៉ង់​ទេ" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" -#: apt-private/private-update.cc:90 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +msgid "Unable to parse package file %s (1)" +msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ" -#: apt-private/private-show.cc:156 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Unable to parse package file %s (2)" +msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់​ %s (2) បានឡើយ" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ" + +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "ចំណាំ កំពុង​ជ្រើស​ %s ជំនួស​ %s\n" + +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" msgstr "" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "កំហុស​ខាងក្នុង កញ្ចប់​ដំឡើង​ត្រូវ​បាន​ហៅ​​ជាមួយ​កញ្ចប់​ដែល​ខូច !" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "បន្ទាត់​ដែលមិនត្រឹមត្រូវ​នៅក្នុង​ឯកសារ​បង្វែរ ៖ %s" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "កញ្ចប់ ​ត្រូវការឲ្យ​យក​ចេញ​​ ប៉ុន្តែមិនអនុញ្ញាត​ឲ្យយកចេញឡើយ ។" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "កំហុស​ខាងក្នុង​ ការ​រៀប​តាម​លំដាប់​មិន​បាន​បញ្ចប់ឡើយ" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "បន្ទាត់​ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (URI ញែក​)" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "យី អី​ក៏​ចម្លែង​ម្លេះ.. ទំហំ​មិន​ដូច​គ្នា​ឡើយ ។ សូម​ផ្ញើ​អ៊ីមែល​ទៅ apt@packages.debian.org" +#: apt-pkg/sourcelist.cc:170 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist ញែក​)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 -#, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "ត្រូវការ​​យក​ %sB/%sB នៃ​ប័ណ្ណសារ ។​\n" +#: apt-pkg/sourcelist.cc:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព %s (dist)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 -#, c-format -msgid "Need to get %sB of archives.\n" -msgstr "ត្រូវ​ការយក​ %sB នៃ​ប័ណ្ណសារ ។\n" +#: apt-pkg/sourcelist.cc:184 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist ញែក​)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:190 #, fuzzy, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "បន្ទាប់​ពី​ពន្លា​ %sB នៃ​ការ​បន្ថែម​​ទំហំ​ថាស​ត្រូវ​បាន​ប្រើ ។\n" +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist ញែក​)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/sourcelist.cc:193 #, fuzzy, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "បន្ទាប់​ពី​ពន្លា​ %sB ទំហំ​ថាសនឹង​​ទំនេរ ។ \n" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist ញែក​)" -#: apt-private/private-install.cc:200 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "You don't have enough free space in %s." -msgstr "អ្នក​គ្មាន​ទំហំ​​ទំនេរ​គ្រប់គ្រាន់​ក្នុង​​ %s ឡើយ ។" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "បន្ទាត់ Malformed %lu ក្នុង​ញ្ជី​ប្រភព​ %s (URI)" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "មាន​បញ្ហា​ ហើយ -y ត្រូវ​បាន​ប្រើ​ដោយគ្មាន​​ --force​-yes" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព %s (dist)" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "បានបញ្ជាក់​តែប្រតិបត្តិការដែលមិនសំខាន់ប៉ុណ្ណោះ ប៉ុន្តែ​នេះមិនមែនជាប្រតិបត្តិការមិនសំខាន់នោះទេ ។" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "បន្ទាត់​ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (URI ញែក​)" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "បាទ/ចាស ធ្វើ​ដូច​ដែល​ខ្ញុំ​និយាយ !" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist លែងប្រើ)" -#: apt-private/private-install.cc:222 +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist ញែក​)" + +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "កំពុង​បើក​ %s" + +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "បន្ទាត់​ Malformed %u ក្នុង​បញ្ជី​ប្រភព​ %s (ប្រភេទ​)" + +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "ប្រភេទ​ '%s' មិន​ស្គាល់នៅលើបន្ទាត់​ %u ក្នុង​បញ្ជី​ប្រភព​ %s ឡើយ" + +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "ប្រភេទ​ '%s' មិន​ស្គាល់នៅលើបន្ទាត់​ %u ក្នុង​បញ្ជី​ប្រភព​ %s ឡើយ" + +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "រក​មិន​ឃើញ​ការ​ចេញ​ផ្សាយ​ '%s' សម្រាប់​ '%s' ឡើយ" + +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"អ្នកប្រហែល​ជា​ធ្វើ​អ្វីមួយ​ដែល​អាច​បង្ករ​ឲ្យ​មាន​មហន្ដរាយ ។\n" -"ដើម្បី​បន្ត ​​វាយ​ក្នុង​ឃ្លា​ '%s'\n" -" ?] " +msgid "Version '%s' for '%s' was not found" +msgstr "រក​មិន​ឃើញ​កំណែ​ '%s' សម្រាប់ '%s'" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "បោះបង់ ។" +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" -#: apt-private/private-install.cc:243 -#, fuzzy -msgid "Do you want to continue?" -msgstr "តើ​អ្នក​ចង់​បន្តឬ​ [បាទ ចាស/ទេ​] ? " +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "ឯកសារ​មួយ​ចំនួន​បាន​បរាជ័យ​ក្នុង​ការ​ទាញ​យក​" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" -#: apt-private/private-install.cc:320 +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" + +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"អនុញ្ញាត​ឲ្យ​ទៅ​ប្រមូល​យក​ប័ណ្ណសារ​មួយ​ចំនួន​ ប្រហែល​ជា​រត់​ភាព​ទាន់​សម័យ apt-get ឬ ព្យាយាមប្រើ​ជាមួយ --" -"fix- ដែលបាត់ឬ់ ?" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix- ដែលបាត់​ និង ​ស្វប​មេឌៀ​ដែល​មិនបាន​​គាំទ្រនៅពេល​បច្ចុប្បន្ន​" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "មិន​អាច​កែ​កញ្ចប់​ដែលបាត់បង់​បានឡើយ ។" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "កំពុង​បោះបង់​ការ​ដំឡើង​ ។" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -msgstr[1] "" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" msgstr "" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" msgstr "" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" msgstr "" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "ព័ត៌មាន​ដូចតទៅនេះ អាចជួយ​ដោះស្រាយ​ស្ថានភាព​បាន ៖" +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "ជម្រើស​ %s រក​មិន​ឃើញ​ឡើយ" -#: apt-private/private-install.cc:506 -#, fuzzy -msgid "Internal Error, AutoRemover broke stuff" -msgstr "កំហុស​ខាងក្នុង អ្នក​ដោះស្រាយ​បញ្ហា​បានធ្វើឲ្យខូច​ឧបករណ៍" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "មិន​ប្រើប្រាស់​ការចាក់សោ សម្រាប់តែឯកសារចាក់សោ​ដែលបានតែអានប៉ុណ្ណោះ %s" -#: apt-private/private-install.cc:513 -#, fuzzy -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" -msgstr[1] "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "មិន​អាច​បើក​ឯកសារ​ចាក់សោ​ %s បានឡើយ" -#: apt-private/private-install.cc:517 -#, fuzzy, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" -msgstr[1] "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "មិនប្រើ​ការចាក់សោ សម្រាប់ nfs ឯកសារ​ចាក់សោដែលបានម៉ោន%s" -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "មិន​អាច​ចាក់សោ %s បានឡើយ" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "អ្នក​ប្រហែល​ជា​ចង់​រត់ 'apt-get -f install' ដើម្បី​កែ​ពួក​វា​ទាំង​នេះ ៖" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -"ភាពអស្រ័យ​ដែល​ខុស​គ្នា ។ ព្យាយាម​ 'apt-get -f install' ដោយ​គ្មាន​កញ្ចប់ (ឬ បញ្ជាក់​ដំណោះស្រាយ) ។" -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -"មិនអាច​ដំឡើងកញ្ចប់​មួយចំនួន​បានឡើយ ។ នេះ​មាន​ន័យ​ថា​អ្នក​\n" -"​បានស្នើរ​ស្ថានភាព​ដែល​មិន​អាច​ធ្វើបានមួយ ឬ ​ប្រសិន​បើ​​អ្នក​កំពុង​ប្រើការចែកចាយ​ពុំ​មាន​លំនឹង​នោះ កញ្ចប់​" -"ដែលបាន​ទាមទារនឹងមិនទាន់បានបង្កើត​ឡើយ​\n" -" ឬ ​បានយក​ចេញ​ពីការមកដល់ ។" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "កញ្ចប់​ដែល​បាន​ខូច​" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "កញ្ចប់​បន្ថែម​ដូចតទៅនេះ នឹងត្រូវបាន​ដំឡើង ៖" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "ដំណើរការ​រង​ %s បាន​ទទួល​កំហុស​ការ​ចែកជាចម្រៀក​ ។" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "កញ្ចប់​ដែល​បាន​ផ្ដល់​យោបល់ ៖" +#: apt-pkg/contrib/fileutl.cc:826 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "ដំណើរការ​រង​ %s បាន​ទទួល​កំហុស​ការ​ចែកជាចម្រៀក​ ។" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "កញ្ចប់​ដែល​បាន​ផ្ដល់​អនុសាសន៍ ៖" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "ដំណើរការ​រង​ %s បានត្រឡប់​ទៅកាន់​កូដ​មាន​កំហុស​ (%u)" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "កំពុង​រំលង​ %s វា​បាន​ដំឡើង​រួចរាល់​ ហើយ​ភាព​ធ្វើឲ្យ​ប្រសើរ​​មិន​ទាន់​កំណត់​​ ។\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "ដំណើរការ​រង​ %s បានចេញ ដោយ​មិន​រំពឹង​ទុក​ " -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:913 #, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "កំពុង​រំលង​ %s វា​បាន​ដំឡើង​រួចរាល់​ ហើយ​ភាព​ធ្វើឲ្យ​ប្រសើរ​​មិន​ទាន់​កំណត់​​ ។\n" +msgid "Problem closing the gzip file %s" +msgstr "មាន​បញ្ហា​ក្នុងការ​បិទ​ឯកសារ" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "មិនអាចធ្វើការដំឡើង %s ឡើងវិញបានទេ វា​មិនអាចត្រូវបាន​ទាញយកបានឡើយ ។\n" +msgid "Could not open file %s" +msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s ជាកំណែ​ដែលថ្មីបំផុតរួចទៅហើយ ។\n" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "មិន​អាច​បើក​បំពុង​សម្រាប់​ %s បានឡើយ" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "បរាជ័យ​ក្នុង​ការ​បង្កើត​ដំណើរការ​រង​ IPC" + +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "បរាជ័យ​ក្នុង​ការ​ប្រតិបត្តិ​កម្មវិធី​បង្ហាប់ " + +#: apt-pkg/contrib/fileutl.cc:1514 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "បានជ្រើស​កំណែ​ %s (%s) សម្រាប់ %s\n" +msgid "read, still have %llu to read but none left" +msgstr "អាន​, នៅតែ​មាន %lu ដើម្បី​អាន​ ប៉ុន្តែ​គ្មាន​អ្វី​នៅសល់" -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "បានជ្រើស​កំណែ​ %s (%s) សម្រាប់ %s\n" +msgid "write, still have %llu to write but couldn't" +msgstr "សរសេរ​, នៅតែមាន​ %lu ដើម្បី​សរសេរ​ ប៉ុន្តែ​មិន​អាច​" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/fileutl.cc:1915 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "មិនទាន់បានដំឡើង​កញ្ចប់​ %s ទេ​ ដូច្នេះ មិន​បាន​យកចេញឡើយ \n" +msgid "Problem closing the file %s" +msgstr "មាន​បញ្ហា​ក្នុងការ​បិទ​ឯកសារ" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/fileutl.cc:1927 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "មិនទាន់បានដំឡើង​កញ្ចប់​ %s ទេ​ ដូច្នេះ មិន​បាន​យកចេញឡើយ \n" +msgid "Problem renaming the file %s to %s" +msgstr "មានបញ្ហា​ក្នុង​ការធ្វើ​សមកាលកម្មឯកសារ​" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1938 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "មានបញ្ហា​ក្នុងការ​ផ្ដាច់តំណ​ឯកសារ" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ព្រមាន​ ៖ មិនអាច​ធ្វើការផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវកញ្ចប់ខាងក្រោមបានឡើយ !" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "មានបញ្ហា​ក្នុង​ការធ្វើ​សមកាលកម្មឯកសារ​" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "បានបដិសេធ​ការព្រមាន​ការផ្ទៀងផ្ទាត់ភាព​ត្រឹមត្រូវ ។\n" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... កំហុស ​!" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "មិនអាច​ផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវកញ្ចប់​មួយចំនួន​បានឡើយ​" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... ធ្វើរួច​" -#: apt-private/private-download.cc:50 -#, fuzzy -msgid "Install these packages without verification?" -msgstr "ដំឡើង​កញ្ចប់​ទាំងនេះ ​ដោយគ្មានការពិនិត្យ​បញ្ជាក់ [y/N] ? " +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-sources.cc:58 +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "បរាជ័យ​ក្នុង​ការ​ប្តូរ​ឈ្មោះ %s ទៅ %s" - -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%c%s... %u%%" +msgstr "%c%s... ធ្វើរួច​" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "មិនអាច mmap ឯកសារទទេ​បានឡើយ" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "វាយ​" +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "មិន​អាច​បើក​បំពុង​សម្រាប់​ %s បានឡើយ" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "យក​ ៖" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "មិន​អាច​បង្កើត​ mmap នៃ​ %lu បៃបានឡើយ" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "មិន​អាចបើក​ %s បានឡើយ" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "មិន​អាច​ហៅ​ " -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "បាន​ទៅ​ប្រមូល​ %sB ក្នុង​ %s (%sB/s)\n" +msgid "Couldn't make mmap of %lu bytes" +msgstr "មិន​អាច​បង្កើត​ mmap នៃ​ %lu បៃបានឡើយ" -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [កំពុង​ធ្វើការ​]" +#: apt-pkg/contrib/mmap.cc:322 +#, fuzzy +msgid "Failed to truncate file" +msgstr "បរាជ័យ​ក្នុងការ​សរសេរ​ឯកសារ %s" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/mmap.cc:341 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -"ផ្លាស់ប្តូរ​មេឌៀ ៖ សូម​បញ្ចូល​ថាស​ដែល​មាន​ស្លាក\n" -" '%s'\n" -"ក្នុង​ដ្រាយ​ '%s' ហើយ​ចុច​បញ្ចូល\n" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "No mirror file '%s' found " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" - -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "[Mirror: %s]" -msgstr "" +msgid "Unable to stat the mount point %s" +msgstr "មិនអាច​ថ្លែង ចំណុចម៉ោន %s បានឡើយ" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "បរាជ័យ​ក្នុង​ការ​បង្កើត​បំពង់​ IPC សម្រាប់​ដំណើរ​ការ​រង​" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "បរាជ័យក្នុងការ​ថ្លែង ស៊ីឌីរ៉ូម" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "បាន​បិទ​ការ​តភ្ជាប់​មុន​ពេល" +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "មិន​បាន​​ទទួល​ស្គាល់​ប្រភេទ​អក្សរ​សង្ខេប ៖ '%c'" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "ការ​កំណត់​លំនាំ​ដើម​មិន​ល្អ !" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "កំពុង​បើ​ឯកសារ​កំណត់រចនាសម្ព័ន្ធ​ %s" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "សង្កត់​ បញ្ចូល ​ដើម្បី​បន្ត ។" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "កំហុស​វាក្យ​សម្ពន្ធ %s:%u ៖ ប្លុក​ចាប់​ផ្តើម​​ដោយ​គ្មាន​ឈ្មោះ​ ។" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "កំហុស​​វាក្យ​សម្ពន្ធ %s:%u ៖ ស្លាក​ដែលបាន Malformed" -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "កំហុ​ស​មួយ​ចំនួន​បាន​កើត​ឡើង​ខណៈពេល​ពន្លា​កញ្ចប់ ។ ខ្ញុំ​នឹង​កំណត់រចនាសម្ប័ន្ធ" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "កំហុស​​វាក្យ​សម្ពន្ធ %s:%u ៖ តម្លៃ​ឥតបានការ​នៅ​ក្រៅ​" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "កញ្ចប់​ដែល​បាន​ដំឡើង​ ។ នេះ​ប្រហែល​ជា​លទ្ធផល​កំហុស​ស្ទួន​" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "កំហុសវាក្យ​សម្ពន្ធ %s:%u ៖ សេចក្ដីបង្គាប់​អាចត្រូវបានធ្វើ​តែនៅលើ​កម្រិត​កំពូល​តែប៉ុណ្ណោះ" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "ឬ​ កំហុសដែលបង្ក​ដោយ​ការ​បាត់បង់​ភាពអាស្រ័យ​ ។ ​មិន​អី​ទេ​ គ្រាន់​តែ​ជា​កំហុស " +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "កំហុស​វាក្យសម្ពន្ធ %s:%u ៖ មាន​ការរួមបញ្ចូល​ដែលដាក់​រួមគ្នា​យ៉ាងច្រើន" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "នៅខាងលើ​សារ​នេះ​គឺ​សំខាន់​ណាស់​ ។ សូម​ជួសជុល​ពួកវា​ ហើយ​រត់​ការដំឡើង​ម្តងទៀត​" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "កំហុសវាក្យ​សម្ពន្ធ %s:%u ៖ បានរួម​បញ្ចូល​ពី​ទីនេះ​" -#: dselect/update:30 -msgid "Merging available information" -msgstr "បញ្ចូល​​ព័ត៌មាន​ដែលមាន​ចូល​គ្នា" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "កំហុស​វាក្យ​សម្ពន្ធ %s:%u ៖ សេចក្ដី​បង្គាប់​ដែល​មិនបានគាំទ្រ '%s'" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "ទម្លាក់​ថ្នាំង​ដែល​បាន​ហៅ​លើ​ថ្នាំងដែល​នៅតែតភ្ជាប់" +#: apt-pkg/contrib/configuration.cc:900 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "កំហុសវាក្យ​សម្ពន្ធ %s:%u ៖ សេចក្ដីបង្គាប់​អាចត្រូវបានធ្វើ​តែនៅលើ​កម្រិត​កំពូល​តែប៉ុណ្ណោះ" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "បរាជ័យ​ក្នុងការ​ដាក់ទីតាំង​ធាតុ​ដែលរាយប៉ាយ !" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "កំហុស​វាក្យសម្ពន្ធ %s:%u ៖ សារឥតបានការ​បន្ថែម ដែលនៅខាងចុង​ឯកសារ" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "បរាជ័យ​ក្នុងការ​បម្រុងទុក​ការបង្វែរ" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "កំពុង​បោះបង់​ការ​ដំឡើង​ ។" + +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "ជម្រើស​បន្ទាត់​ពាក្យបញ្ជា '%c' [from %s] មិនស្គាល់ឡើយ ។" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "កំហុស​ខាងក្នុង នៅក្នុង AddDiversion" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "មិនយល់​ពី​ជម្រើស​បន្ទាត់​ពាក្យ​បញ្ជា %s ឡើយ" -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "កំពុង​ព្យាយាម​សរសេរ​ជាន់​ពីលើ​ការបង្វែរ %s -> %s និង​ %s/%s" +msgid "Command line option %s is not boolean" +msgstr "ជម្រើស​បន្ទាត់ពាក្យ​បញ្ជា​ %s មិនមែនជាប៊ូលីនទេ" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "ការបន្ថែម​ស្ទួន នៃការបង្វែរ​ %s -> %s" +msgid "Option %s requires an argument." +msgstr "ជម្រើស​ %s ត្រូវការ​អាគុយម៉ង់មួយ ។" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "ឯកសារ​កំណត់​រចនាសម្ព័ន្ធ​ស្ទួន​ %s/%s" +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "ជម្រើស %s ៖ ការបញ្ជាក់​ធាតុ​កំណត់រចនាសម្ព័ន្ធត្រូវតែមាន =<val> មួយ ។" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "The path %s is too long" -msgstr "ផ្លូវ​ %s វែង​ពេក" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "ជម្រើស​ %s ត្រូវ​ការ​អាគុយម៉ង់​ចំនួន​គត់​ មិន​មែន​ '%s'" -#: apt-inst/extract.cc:132 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Unpacking %s more than once" -msgstr "កំពុង​ពន្លា​ %s ច្រើន​ជាង​ម្តង​" +msgid "Option '%s' is too long" +msgstr "ជម្រើស​ '%s' វែងពេក" -#: apt-inst/extract.cc:142 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "The directory %s is diverted" -msgstr "ថត​ %s ត្រូវបាន​បង្វែរ" +msgid "Sense %s is not understood, try true or false." +msgstr "មិនបានយល់អំពី​ការស្គាល់​ %s ឡើយ សូមព្យាយមយក​ ពិត​ ​​​ឫ មិន​ពិត ។" -#: apt-inst/extract.cc:152 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "កញ្ចប់ ​កំពុង​ព្យាយាម​សរសេរ​ទៅកាន់​គោលដៅ​បង្វែរ​ %s/%s" +msgid "Invalid operation %s" +msgstr "ប្រតិបត្តិការ​មិន​ត្រឹមត្រូវ​ %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "ផ្លូវ​បង្វែរ វែងពេក" +#: apt-pkg/deb/dpkgpm.cc:95 +#, fuzzy, c-format +msgid "Installing %s" +msgstr "បាន​ដំឡើង %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "Failed to stat %s" -msgstr "បាន​បរាជ័យ​ក្នុង​ការថ្លែង %s" +msgid "Configuring %s" +msgstr "កំពុង​កំណត់​រចនា​សម្ព័ន្ធ %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "Failed to rename %s to %s" -msgstr "បរាជ័យ​ក្នុង​ការ​ប្តូរ​ឈ្មោះ %s ទៅ %s" +msgid "Removing %s" +msgstr "កំពុង​យក %s ចេញ" -#: apt-inst/extract.cc:249 +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "បាន​យក %s ចេញ​ទាំង​ស្រុង" + +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "ថត​ %s ត្រូវ​បាន​ជំនួស​ដោយ​មិនមែន​ជា​ថត​" +msgid "Noting disappearance of %s" +msgstr "" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "បរាជ័យ​ក្នុងការ​ដាក់ថ្នាំង​នៅក្នុង​ធុង​រាយប៉ាយ​របស់វា" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "ផ្លូវ​វែង​ពេក" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, fuzzy, c-format +msgid "Directory '%s' missing" +msgstr "រាយបញ្ជី​ថត​ %spartial គឺ​បាត់បង់​ ។" -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "សរសេរ​ជាន់​លើកញ្ចប់ផ្គួផ្គង​ដោយ​គ្មាន​កំណែ​សម្រាប់ %s" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "ឯកសារ​ %s/%s សរសេរជាន់​ពីលើ​មួយ​ក្នុង​កញ្ចប់ %s" +msgid "Preparing %s" +msgstr "កំពុងរៀបចំ​ %s" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Unable to stat %s" -msgstr "មិន​អាច​ថ្លែង %s បានឡើយ" +msgid "Unpacking %s" +msgstr "កំពុង​ស្រាយ %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Failed to write file %s" -msgstr "បរាជ័យ​ក្នុងការ​សរសេរ​ឯកសារ %s" +msgid "Preparing to configure %s" +msgstr "កំពុងរៀបចំ​កំណត់រចនាសម្ព័ន្ធ %s" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Failed to close file %s" -msgstr "បរាជ័យ​ក្នុងការ​បិទឯកសារ %s" +msgid "Installed %s" +msgstr "បាន​ដំឡើង %s" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "នេះ​ជាមិនមែនជា​ប័ណ្ណសារ​ DEB ​ត្រឹមត្រូវទេ បាត់បង់សមាជិក​ '%s'​" +msgid "Preparing for removal of %s" +msgstr "កំពុងរៀបចំដើម្បី​ការយក​ចេញ​នៃ %s" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "កំហុស​ខាងក្នុង ​មិន​អាច​កំណត់​ទីតាំង​សមាជិក​ %s បានឡើយ" +msgid "Removed %s" +msgstr "បាន​យក %s ចេញ" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "ឯកសារត្រួតពិនិត្យ​ដែលមិនអាច​ញែកបាន" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "កំពុង​រៀបចំ​យក %s ចេញ​ទាំង​ស្រុង" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "ហត្ថលេខា​ប័ណ្ណសា​រមិន​ត្រឹមត្រូវ​" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "បាន​យក %s ចេញ​ទាំង​ស្រុង" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "កំហុស​ក្នុងការ​អានបឋមកថា​សមាជិក​ប័ណ្ណសារ" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:96 +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "បឋមកថា​សមាជិក​ប័ណ្ណសារ" +msgid "Can not write log (%s)" +msgstr "មិន​អាច​សរសេរ​ទៅ %s" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "បឋមកថា​សមាជិក​ប័ណ្ណសារ" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "ប័ណ្ណសារ ខ្លីពេក" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "បរាជ័យ​ក្នុងការ​អាន​បឋមកថា​ប័ណ្ណសារ" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "បាន​បរាជ័យក្នុង​ការ​បង្កើត​បំពង់​" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "បាន​បរាជ័យក្នុង​ការ​ប្រតិបត្តិ gzip" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "ប័ណ្ណសារ​បាន​ខូច​" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar ឆេកសាំ​បាន​បរាជ័យ ប័ណ្ណសារ​បាន​ខូច" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "មិន​ស្គាល់​ប្រភេទ​បឋមកថា​ TAR %u ដែលជា​សមាជិក​ %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "មិន​អាច​ចាក់​សោ​ថត​បញ្ជីបានឡើយ" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/ko.po b/po/ko.po index daad55f1c..48faf8de0 100644 --- a/po/ko.po +++ b/po/ko.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2010-08-30 02:31+0900\n" "Last-Translator: Changwoo Ryu <cwryu@debian.org>\n" "Language-Team: Korean <debian-l10n-korean@lists.debian.org>\n" @@ -15,3158 +15,3159 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "인덱스 파일 타입 '%s' 타입은 지원하지 않습니다" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "%s을(를) 읽을 수 없습니다" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "%s 디렉토리로 이동할 수 없습니다" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "%s의 정보를 읽을 수 없습니다." - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" - -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "dpkg 실행하는 중입니다" - -#: apt-pkg/init.cc:146 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "'%s' 패키지 시스템을 지원하지 않습니다" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "올바른 패키지 시스템 타입을 알아낼 수 없습니다" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "%s 패키지의 %s 버전의 의존성이 맞지 않습니다:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "레코드 %i개를 썼습니다.\n" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "전체 패키지 이름 : " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "레코드 %i개를 파일 %i개가 빠진 상태로 썼습니다.\n" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "전체 패키지 구조: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "레코드 %i개를 파일 %i개가 맞지 않은 상태로 썼습니다\n" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " 일반 패키지: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "레코드 %i개를 파일 %i개가 빠지고 %i개가 맞지 않은 상태로 썼습니다\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " 순수 가상 패키지: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "다음의 인증 기록을 찾을 수 없습니다: %s" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " 단일 가상 패키지: " -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "다음의 해시가 다릅니다: %s" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " 혼합 가상 패키지: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "설치 방법 드라이버 %s을(를) 찾을 수 없습니다." +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " 빠짐: " -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "'dpkg-dev' 패키지가 설치되었는지를 확인하십시오.\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "개별 버전 전체: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "설치 방법 %s이(가) 올바르게 시작하지 않았습니다" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "개별 설명 전체: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "" -"'%2$s' 드라이브에 '%1$s'(으)로 표기된 디스크를 넣고 Enter를 누르십시오." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "전체 의존성: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "패키지 목록이나 상태 파일을 파싱할 수 없거나 열 수 없습니다." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "전체 버전/파일 관계: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "apt-get update를 실행하면 이 문제를 바로잡을 수도 있습니다." +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "전체 설명/파일 관계: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "소스 목록을 읽을 수 없습니다." +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "전체 제공 매핑: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "패키지 캐시가 비어 있습니다" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "전체 패턴 문자열: " -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "패키지 캐시 파일이 손상되었습니다" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "전체 의존성 버전 용량: " -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "패키지 캐시 파일이 호환되지 않는 버전입니다" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "전체 빈 용량: " -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "패키지 캐시 파일이 손상되었습니다" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "차지하는 전체 용량: " -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "이 APT는 '%s' 버전 시스템을 지원하지 않습니다" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "패키지 캐시가 다른 아키텍쳐용입니다." - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "의존" +msgid "Package file %s is out of sync." +msgstr "패키지 파일 %s 파일이 동기화되지 않았습니다." -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "미리의존" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "패키지가 없습니다" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "제안" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "최소 한 개의 검색어를 지정해야 합니다" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "추천" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "충돌" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "%s 패키지를 찾을 수 없습니다" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "대체" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "패키지 파일:" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "없앰" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "캐시가 동기화되지 않았습니다. 패키지 파일을 상호 참조할 수 없습니다" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "망가뜨림" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "핀 패키지:" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "향상" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(없음)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "중요" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " 설치: " -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "필수" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " 후보: " -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "표준" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(없음)" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "옵션" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " 패키지 핀: " -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "별도" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " 버전 테이블:" -#: apt-pkg/pkgrecords.cc:38 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "인덱스 파일 타입 '%s' 타입은 지원하지 않습니다" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s(%s), 컴파일 시각 %s %s\n" + +#: cmdline/apt-cache.cc:1749 +#, fuzzy +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"사용법: apt-cache [옵션] 명령\n" +" apt-cache [옵션] add 파일1 [파일2 ...]\n" +" apt-cache [옵션] showpkg 패키지1 [패키지2 ...]\n" +" apt-cache [옵션] showsrc 패키지1 [패키지2 ...]\n" +"\n" +"apt-cache는 APT의 바이너리 캐시 파일을 처리하고, 캐시 파일에\n" +"정보를 질의하는 저수준 도구입니다.\n" +"\n" +"명령:\n" +" add - 소스 캐시에 패키지 파일을 추가합니다\n" +" gencaches - 패키지 캐시 및 소스 캐시를 만듭니다\n" +" showpkg - 한 개의 패키지에 대한 일반적인 정보를 봅니다\n" +" showsrc - 소스 기록을 봅니다\n" +" stats - 기본적인 통계를 봅니다\n" +" dump - 전체 파일을 간략한 형태로 봅니다\n" +" dumpavail - 사용 가능한 파일을 표준출력에 표시합니다\n" +" unmet - 맞지 않는 의존성을 봅니다\n" +" search - 정규식 패턴에 맞는 패키지 목록을 찾습니다\n" +" show - 패키지에 대해 읽을 수 있는 기록을 봅니다\n" +" showauto - 자동으로 설치한 패키지 목록을 표시합니다\n" +" depends - 패키지에 대해 의존성 정보를 그대로 봅니다\n" +" rdepends - 패키지의 역 의존성 정보를 봅니다\n" +" pkgnames - 시스템에 들어 있는 패키지의 이름을 모두 봅니다\n" +" dotty - GraphViz용 패키지 그래프를 만듭니다\n" +" xvcg - xvcg용 패키지 그래프를 만듭니다\n" +" policy - 정책 설정을 봅니다\n" +"\n" +"옵션:\n" +" -h 이 도움말.\n" +" -p=? 패키지 캐시.\n" +" -s=? 소스 캐시.\n" +" -q 상태 표시를 하지 않습니다.\n" +" -i unmet 명령에서 중요한 의존성만 봅니다.\n" +" -c=? 지정한 설정 파일을 읽습니다.\n" +" -o=? 임의의 옵션을 설정합니다. 예를 들어 -o dir::cache=/tmp\n" +"좀 더 자세한 정보는 apt-cache(8) 및 apt.conf(5) 매뉴얼 페이지를 보십시오.\n" + +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "이 디스크의 이름을 정하십시오 (예: 'Debian 5.0.3 Disk 1')" + +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "드라이브에 디스크를 넣고 Enter를 누르십시오" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Regex compilation error - %s" -msgstr "정규식 컴파일 오류 - %s" +msgid "Failed to mount '%s' to '%s'" +msgstr "%s 파일의 이름을 %s(으)로 바꾸는데 실패했습니다" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "캐시의 버전 시스템이 호환되지 않습니다" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "%s 처리 중에 오류가 발생했습니다 (FindPkg)" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "현재 갖고 있는 다른 CD에도 이 과정을 반복하십시오." -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "우와, 이 APT가 처리할 수 있는 패키지 이름 개수를 넘어갔습니다." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "인수가 두 개가 아닙니다" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "우와, 이 APT가 처리할 수 있는 버전 개수를 넘어갔습니다." +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"사용법: apt-config [옵션] 명령\n" +"\n" +"apt-config는 APT 설정 파일을 읽는 간단한 프로그램입니다\n" +"\n" +"명령:\n" +" shell - 쉘 모드\n" +" dump - 설정을 봅니다\n" +"\n" +"옵션:\n" +" -h 이 도움말.\n" +" -c=? 해당 설정 파일을 읽습니다\n" +" -o=? 임의의 옵션을 설정합니다. 예를 들어 -o dir::cache=/tmp\n" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "우와, 이 APT가 처리할 수 있는 설명 개수를 넘어갔습니다." +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "'%s' 정규식에 해당하는 패키지가 없습니다" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "우와, 이 APT가 처리할 수 있는 의존성 개수를 넘어갔습니다." +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "'%s' 정규식에 해당하는 패키지가 없습니다" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "파일 의존성을 처리하는 데, %s %s 패키지가 없습니다" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "'%s' 정규식에 해당하는 패키지가 없습니다" -#: apt-pkg/pkgcachegen.cc:1211 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "소스 패키지 목록 %s의 정보를 읽을 수 없습니다" - -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "패키지 목록을 읽는 중입니다" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "소스 패키지로 '%s'을(를) '%s' 대신 선택합니다\n" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "파일에서 제공하는 것을 모으는 중입니다" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "'%2$s' 패키지의 '%1$s' 버전은 없으므로 무시합니다." -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Unable to write to %s" -msgstr "%s에 쓸 수 없습니다" +msgid "Couldn't find package %s" +msgstr "%s 패키지를 찾을 수 없습니다" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "소스 캐시를 저장하는데 입출력 오류가 발생했습니다" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s 패키지 수동설치로 지정합니다.\n" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s 패키지는 수동설치로 지정합니다.\n" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "내부 오류, 문제 해결 프로그램이 무언가를 망가뜨렸습니다" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "다운로드 디렉터리를 잠글 수 없습니다" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "해당되는 소스 패키지를 가져올 패키지를 최소한 하나 지정해야 합니다" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "이름 바꾸기가 실패했습니다. %s (%s -> %s)." +msgid "Unable to find a source package for %s" +msgstr "%s의 소스 패키지를 찾을 수 없습니다" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "해시 합이 맞지 않습니다" +#: cmdline/apt-get.cc:786 +#, c-format +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"알림: '%s' 패키징은 다음 '%s' 버전 컨트롤 시스템에서 관리합니다:\n" +"%s\n" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "크기가 맞지 않습니다" - -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "잘못된 작업 %s" - -#: apt-pkg/acquire-item.cc:1573 -#, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" - -#: apt-pkg/acquire-item.cc:1589 +#: cmdline/apt-get.cc:791 #, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Release 파일 %s 파일을 파싱할 수 없습니다" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "다음 키 ID의 공개키가 없습니다:\n" - -#: apt-pkg/acquire-item.cc:1669 -#, c-format msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" +"패키지의 최근 (아마도 릴리스되지 않은) 업데이트를 받으려면\n" +"다음과 같이 하십시오:\n" +"bzr get %s\n" -#: apt-pkg/acquire-item.cc:1691 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "배포판 충돌: %s (예상값 %s, 실제값 %s)" - -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:843 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"디지털 서명 확인에 오류가 발생했습니다. 저장고를 업데이트하지 않고\n" -"예전의 인덱스 파일을 사용합니다. GPG 오류: %s: %s\n" +msgid "Skipping already downloaded file '%s'\n" +msgstr "이미 다운로드 받은 파일 '%s'은(는) 다시 받지 않고 건너 뜁니다.\n" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "GPG error: %s: %s" -msgstr "GPG 오류: %s: %s" +msgid "Couldn't determine free space in %s" +msgstr "%s의 여유 공간의 크기를 파악할 수 없습니다" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:882 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"%s 패키지의 파일을 찾을 수 없습니다. 수동으로 이 패키지를 고쳐야 할 수도 있습" -"니다. (아키텍쳐가 빠졌기 때문입니다)" +msgid "You don't have enough free space in %s" +msgstr "%s에 충분한 공간이 없습니다" -#: apt-pkg/acquire-item.cc:1925 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "소스 아카이브를 %s바이트/%s바이트 받아야 합니다.\n" -#: apt-pkg/acquire-item.cc:1983 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"패키지 인덱스 파일이 손상되었습니다. %s 패키지에 Filename: 필드가 없습니다." +msgid "Need to get %sB of source archives.\n" +msgstr "소스 아카이브를 %s바이트 받아야 합니다.\n" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "벤더 블럭 %s의 핑거프린트가 없습니다" +msgid "Fetch source %s\n" +msgstr "%s 소스를 가져옵니다\n" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, c-format -msgid "List directory %spartial is missing." -msgstr "목록 디렉터리 %spartial이 빠졌습니다." +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "일부 아카이브를 가져오는데 실패했습니다." -#: apt-pkg/acquire.cc:91 -#, c-format -msgid "Archives directory %spartial is missing." -msgstr "아카이브 디렉터리 %spartial이 빠졌습니다." +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "다운로드를 마쳤고 다운로드 전용 모드입니다" -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Unable to lock directory %s" -msgstr "%s 디렉터리를 잠글 수 없습니다" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "%s에 이미 풀려 있는 소스의 압축을 풀지 않고 건너 뜁니다.\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "파일 받아오는 중: %2$li 중 %1$li (%3$s 남았음)" +msgid "Unpack command '%s' failed.\n" +msgstr "압축 풀기 명령 '%s' 실패.\n" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Retrieving file %li of %li" -msgstr "파일 받아오는 중: %2$li 중 %1$li" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "'dpkg-dev' 패키지가 설치되었는지를 확인하십시오.\n" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "%s 파일을 받는데 실패했습니다 %s\n" +msgid "Build command '%s' failed.\n" +msgstr "빌드 명령 '%s' 실패.\n" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"일부 인덱스 파일을 다운로드하는데 실패했습니다. 해당 파일을 무시하거나 과거" -"의 버전을 대신 사용합니다." +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "하위 프로세스가 실패했습니다" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "sources.list에 '소스' URI를 써 넣어야 합니다" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "해당되는 빌드 의존성을 검사할 패키지를 최소한 하나 지정해야 합니다" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-pkg/policy.cc:422 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "기본 설정 파일 %s에 잘못된 데이터가 있습니다. Package 헤더가 없습니다" +msgid "Unable to get build-dependency information for %s" +msgstr "%s의 빌드 의존성 정보를 가져올 수 없습니다" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Did not understand pin type %s" -msgstr "핀 타입 %s이(가) 무엇인지 이해할 수 없습니다" +msgid "%s has no build depends.\n" +msgstr "%s 패키지에 빌드 의존성이 없습니다.\n" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "핀에 우선순위(혹은 0)를 지정하지 않았습니다" +#: cmdline/apt-get.cc:1272 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지를 찾을 수 없습니" +"다" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -"'%s'에 대해 즉시 설정을 할 수 없습니다. 자세한 설명은 man 5 apt.conf 페이지에" -"서 APT::Immediate-Configure 항목을 보십시오. (%d)" +"%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지를 찾을 수 없습니" +"다" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:1313 +#, c-format +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"%2$s에 대한 %1$s 의존성을 만족시키는데 실패했습니다: 설치한 %3$s 패키지가 너" +"무 최근 버전입니다" + +#: cmdline/apt-get.cc:1352 #, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "'%s' 파일을 열 수 없습니다" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지의 사용 가능한 버" +"전 중에서는 이 버전 요구사항을 만족시킬 수 없습니다" -#: apt-pkg/packagemanager.cc:583 -#, c-format +#: cmdline/apt-get.cc:1358 +#, fuzzy, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -"이번에 설치할 때 충돌/선의존성이 루프가 걸렸기 때문에 꼭 필요한 %s 패키지를 " -"잠깐 제거해야 합니다. 이 패키지를 제거하는 건 좋지 않지만, 정말 지우려면 " -"APT::Force-LoopBreak 옵션을 켜십시오." +"%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지를 찾을 수 없습니" +"다" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Line %u too long in source list %s." -msgstr "소스 리스트 %2$s의 %1$u번 줄이 너무 깁니다." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "CD-ROM을 마운트 해제하는 중입니다...\n" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "%2$s에 대한 %1$s 의존성을 만족시키는데 실패했습니다: %3$s" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "CD-ROM 마운트 위치 %s 사용\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "디스크를 기다리는 중입니다...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "CD-ROM 마운트하는 중입니다...\n" - -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "알아보는 중입니다... " +msgid "Build-dependencies for %s could not be satisfied." +msgstr "%s의 빌드 의존성을 만족시키지 못했습니다." -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "저장된 레이블: %s\n" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "빌드 의존성을 처리하는데 실패했습니다" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "디스크에서 색인 파일을 찾는 중입니다...\n" +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "%s(%s)에 연결하는 중입니다" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "패키지 색인 %zu개, 소스 색인 %zu개, 번역 색인 %zu개, 서명 %zu개 발견\n" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "지원하는 모듈:" -#: apt-pkg/cdrom.cc:744 +#: cmdline/apt-get.cc:1633 +#, fuzzy msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"패키지 파일이 하나도 없습니다. 아마도 데비안 디스크가 아니거나 아키텍처가 잘" -"못된 것 같습니다?" - -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "레이블 발견: %s \n" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "올바른 이름이 아닙니다. 다시 시도하십시오.\n" - -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"이 디스크는 다음과 같습니다: \n" -"'%s'\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "패키지 목록을 복사하는 중입니다..." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "새 소스 리스트를 쓰는 중입니다\n" +"사용법: apt-get [옵션] 명령어\n" +" apt-get [옵션] install|remove 패키지1 [패키지2 ...]\n" +" apt-get [옵션] source 패키지1 [패키지2 ...]\n" +"\n" +"apt-get은 패키지를 내려받고 설치하는 간단한 명령행 인터페이스입니다.\n" +"가장 자주 사용하는 명령은 update와 install입니다.\n" +"\n" +"명령어:\n" +" update - 패키지 목록을 새로 가져옵니다\n" +" upgrade - 업그레이드를 합니다\n" +" install - 새 패키지를 설치합니다 (패키지는 libc6 식으로. libc6.deb 아님)\n" +" remove - 패키지를 지웁니다\n" +" autoremove - 사용하지 않는 패키지를 자동으로 전부 지웁니다\n" +" purge - 패키지를 완전히 지웁니다\n" +" source - 소스 아카이브를 다운로드합니다\n" +" build-dep - 소스 패키지의 빌드 의존성을 설정합니다\n" +" dist-upgrade - 배포판 업그레이드, apt-get(8) 참고\n" +" dselect-upgrade - dselect에서 선택한 걸 따릅니다\n" +" clean - 내려받은 아카이브 파일들을 지웁니다\n" +" autoclean - 과거에 내려받은 아카이브 파일들을 지웁니다\n" +" check - 의존성이 망가지지 않았는지 확인합니다\n" +" markauto - 패키지를 자동 설치로 표시합니다\n" +" unmarkauto - 패키지를 수동 설치로 표시합니다\n" +"\n" +"옵션:\n" +" -h 이 도움말.\n" +" -q 기록 가능한 출력 - 진행 상황 표시를 하지 않습니다\n" +" -qq 오류만 출력 합니다\n" +" -d 내려받기만 합니다 - 아카이브를 설치하거나 풀거나 하지 않습니다\n" +" -s 실제 작업을 하지 않고, 순서대로 시뮬레이션만 합니다\n" +" -y 모든 질문에 대해 \"예\"라고 가정하고 물어보지 않습니다\n" +" -f 패키지 내용 검사가 실패해도 계속 진행해봅니다\n" +" -m 아카이브를 찾을 수 없어도 계속 진행해봅니다\n" +" -u 업그레이드하는 패키지의 목록도 봅니다\n" +" -b 소스 패키지를 받은 다음에 빌드합니다\n" +" -V 버전 번호를 자세히 봅니다\n" +" -c=? 이 설정 파일을 읽습니다\n" +" -o=? 임의의 옵션을 지정합니다. 예를 들어 -o dir::cache=/tmp\n" +"더 자세한 정보와 옵션을 보려면 apt-get(8), sources.list(5)나\n" +"apt.conf(5) 매뉴얼 페이지를 보십시오.\n" +" 이 APT는 Super Cow Powers로 무장했습니다.\n" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "이 디스크의 소스 리스트 항목은 다음과 같습니다:\n" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "해당되는 소스 패키지를 가져올 패키지를 최소한 하나 지정해야 합니다" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"%s 패키지를 다시 설치해야 하지만, 이 패키지의 아카이브를 찾을 수 없습니다." -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-helper.cc:66 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"오류, pkgProblemResolver::Resolve가 망가졌습니다. 고정 패키지때문에 발생할 수" -"도 있습니다." -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "문제를 바로잡을 수 없습니다. 망가진 고정 패키지가 있습니다." +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "하지만 설치하지 않았습니다" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "의존성 트리를 만드는 중입니다" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s 패키지 수동설치로 지정합니다.\n" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "후보 버전" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s 패키지는 수동설치로 지정합니다.\n" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "의존성 만들기" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s 패키지는 이미 최신 버전입니다.\n" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "상태 정보를 읽는 중입니다" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s 패키지는 이미 최신 버전입니다.\n" -#: apt-pkg/depcache.cc:250 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Failed to open StateFile %s" -msgstr "상태파일 %s 여는데 실패했습니다" +msgid "Waited for %s but it wasn't there" +msgstr "%s 프로세스를 기다렸지만 해당 프로세스가 없습니다" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "임시 상태파일 %s 쓰는데 실패했습니다" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "%s 패키지 수동설치로 지정합니다.\n" -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "패키지 파일 %s 파일을 파싱할 수 없습니다 (1)" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "%s 파일을 여는데 실패했습니다" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "패키지 파일 %s 파일을 파싱할 수 없습니다 (2)" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "%2$s 패키지의 '%1$s' 릴리즈를 찾을 수 없습니다" +#: cmdline/apt-mark.cc:392 +msgid "" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." +msgstr "" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "%2$s 패키지의 '%1$s' 버전을 찾을 수 없습니다" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#: methods/cdrom.cc:203 #, c-format -msgid "Unable to locate package %s" -msgstr "%s 패키지를 찾을 수 없습니다" - -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "'%s' 작업을 찾을 수 없습니다" - -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "'%s' 정규식에 해당하는 패키지가 없습니다" - -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "'%s' 정규식에 해당하는 패키지가 없습니다" - -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "'%s' 패키지는 가상 패키지이므로 버전을 선택할 수 없습니다" +msgid "Unable to read the cdrom database %s" +msgstr "CD-ROM 데이터베이스 %s을(를) 읽을 수 없습니다" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format +#: methods/cdrom.cc:212 msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" msgstr "" -"'%s' 패키지에서 설치한 버전이나 후보 버전을 선택할 수 없습니다. 둘 다 아닙니" -"다." +"이 CD를 APT에서 인식하려면 apt-cdrom을 사용하십시오. apt-get update로는 새 " +"CD를 추가할 수 없습니다." -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "'%s' 패키지에서 최신 버전을 선택할 수 없습니다. 가상 패키지입니다." +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "잘못된 CD" -#: apt-pkg/cacheset.cc:655 +#: methods/cdrom.cc:249 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "'%s' 패키지에서 후보 버전을 선택할 수 없습니다. 후보가 없습니다." +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "%s 안의 CD-ROM을 마운트 해제할 수 없습니다. 사용 중일 것입니다." -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "'%s' 패키지에서 설치한 버전을 선택할 수 없습니다. 설치하지 않았습니다." +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "디스크가 없습니다." -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "Release 파일 %s 파일을 파싱할 수 없습니다" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "파일이 없습니다" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "Release 파일 %s에 섹션이 없습니다" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "파일 정보를 읽는데 실패했습니다" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Release 파일 %s에 Hash 항목이 없습니다" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "파일 변경 시각을 설정하는데 실패했습니다" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Release 파일 %s에 'Valid-Until' 항목이 잘못되었습니다" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI가 틀렸습니다. 로컬 URI는 //로 시작해야 합니다." -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Release 파일 %s에 'Date' 항목이 잘못되었습니다" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "로그인하는 중입니다" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (URI 파싱)" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "상대방의 이름을 알 수 없습니다" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([option] 파싱 불가)" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "로컬 이름을 알 수 없습니다" -#: apt-pkg/sourcelist.cc:173 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([option] 너무 짧음)" +msgid "The server refused the connection and said: %s" +msgstr "서버에서 다음과 같이 연결을 거부했습니다: %s" -#: apt-pkg/sourcelist.cc:184 +#: methods/ftp.cc:225 #, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([%3$s] 대입이 아님)" +msgid "USER failed, server said: %s" +msgstr "USER 실패, 서버에서는: %s" -#: apt-pkg/sourcelist.cc:190 +#: methods/ftp.cc:232 #, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([%3$s] 키가 없음)" +msgid "PASS failed, server said: %s" +msgstr "PASS 실패, 서버에서는: %s" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -"소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([%3$s] %4$s 키에 값이 없음)" +"프록시 서버를 지정했지만 로그인 스크립트가 없습니다. Acquire::ftp::" +"ProxyLogin 값이 비어 있습니다." -#: apt-pkg/sourcelist.cc:206 +#: methods/ftp.cc:280 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (URI)" +msgid "Login script command '%s' failed, server said: %s" +msgstr "로그인 스크립트 명령 '%s' 실패, 서버에서는: %s" -#: apt-pkg/sourcelist.cc:208 +#: methods/ftp.cc:306 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (dist)" +msgid "TYPE failed, server said: %s" +msgstr "TYPE 실패, 서버에서는: %s" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (URI 파싱)" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "연결 시간 초과" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (절대 dist)" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "서버에서 연결을 닫았습니다" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (dist 파싱)" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "읽기 오류" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "%s 파일을 여는 중입니다" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "응답이 버퍼 크기를 넘어갔습니다." -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "소스 리스트 %2$s의 %1$u번 줄이 잘못되었습니다 (타입)" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "프로토콜이 틀렸습니다" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "소스 목록 %3$s의 %2$u번 줄의 '%1$s' 타입을 알 수 없습니다" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "쓰기 오류" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "소스 목록 %3$s의 %2$u번 줄의 '%1$s' 타입을 알 수 없습니다" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "소켓을 만들 수 없습니다" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "%s 설치하는 중입니다" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "데이터 소켓을 연결할 수 없습니다. 연결 시간이 초과되었습니다" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "%s 설정 중입니다" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "실패" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "%s 패키지를 지우는 중입니다" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "수동(passive) 소켓을 연결할 수 없습니다." -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "%s 패키지를 완전히 지우는 중입니다" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo에서 소켓에 listen할 수 없습니다" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "%s 사라짐 발견했습니다" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "소켓을 bind할 수 없습니다" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "설치 후 트리거 %s 실행하는 중입니다" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "소켓에 listen할 수 없습니다" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "디렉터리 '%s' 없습니다." +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "소켓의 이름을 알아낼 수 없습니다" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "'%s' 파일을 열 수 없습니다" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "PORT 명령을 보낼 수 없습니다" -#: apt-pkg/deb/dpkgpm.cc:989 +#: methods/ftp.cc:802 #, c-format -msgid "Preparing %s" -msgstr "%s 준비 중입니다" +msgid "Unknown address family %u (AF_*)" +msgstr "주소 %u의 종류(AF_*)를 알 수 없습니다" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "%s 푸는 중입니다" - -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "%s 패키지를 설정할 준비하는 중입니다" - -#: apt-pkg/deb/dpkgpm.cc:997 +#: methods/ftp.cc:811 #, c-format -msgid "Installed %s" -msgstr "%s 설치" +msgid "EPRT failed, server said: %s" +msgstr "EPRT 실패, 서버에서는: %s" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "%s 패키지를 지울 준비하는 중입니다" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "데이터 소켓 연결 시간 초과" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "%s 지움" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "연결을 받을 수 없습니다" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "%s 패키지를 완전히 지울 준비를 하는 중입니다" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "파일 해싱에 문제가 있습니다" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: methods/ftp.cc:890 #, c-format -msgid "Completely removed %s" -msgstr "%s 패키지를 완전히 지웠습니다" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "%s에 쓸 수 없습니다" - -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +msgid "Unable to fetch file, server said '%s'" +msgstr "파일을 가져올 수 없습니다. 서버 왈, '%s'" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "데이터 소켓에 제한 시간이 초과했습니다" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/ftp.cc:935 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "%s 프로세스를 기다렸지만 해당 프로세스가 없습니다" - -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "보고서를 작성하지 않습니다. 이미 MaxReports 값에 도달했습니다." - -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "의존성 문제 - 설정하지 않은 상태로 남겨둡니다" - -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"보고서를 작성하지 않습니다. 오류 메시지에 따르면 예전의 실패 때문에 생긴 부수" -"적인 오류입니다." - -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"보고서를 작성하지 않습니다. 오류 메시지에 따르면 디스크가 가득 찼습니다." - -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "보고서를 작성하지 않습니다. 오류 메시지에 따르면 메모리가 부족합니다." +msgid "Data transfer failed, server said '%s'" +msgstr "데이터 전송 실패, 서버에서는: %s" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" -"보고서를 작성하지 않습니다. 오류 메시지에 따르면 디스크가 가득 찼습니다." +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "질의" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" -"보고서를 작성하지 않습니다. 오류 메시지에 따르면 dpkg 입출력 오류입니다." +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "다음을 실행할 수 없습니다: " -#: apt-pkg/deb/debsystem.cc:91 +#: methods/connect.cc:76 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"관리 디렉터리를 (%s) 잠글 수 없습니다. 다른 프로세스가 사용하고 있지 않습니" -"까?" +msgid "Connecting to %s (%s)" +msgstr "%s(%s)에 연결하는 중입니다" -#: apt-pkg/deb/debsystem.cc:94 +#: methods/connect.cc:87 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "관리 디렉터리를 (%s) 잠글 수 없습니다. 루트 사용자가 맞습니까?" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: methods/connect.cc:94 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" -"dpkg가 중단되었습니다. 수동으로 '%s' 명령을 실행해 문제점을 바로잡으십시오." - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "잠기지 않음" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "%s에 대한 소켓을 만들 수 없습니다 (f=%u t=%u p=%u)" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 +#: methods/connect.cc:100 #, c-format -msgid "%lid %lih %limin %lis" -msgstr "%li일 %li시간 %li분 %li초" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "%s:%s에 연결을 초기화할 수 없습니다 (%s)." -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: methods/connect.cc:108 #, c-format -msgid "%lih %limin %lis" -msgstr "%li시간 %li분 %li초" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "%s:%s에 연결할 수 없습니다 (%s). 연결 제한 시간이 초과했습니다" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: methods/connect.cc:126 #, c-format -msgid "%limin %lis" -msgstr "%li분 %li초" +msgid "Could not connect to %s:%s (%s)." +msgstr "%s:%s에 연결할 수 없습니다 (%s)." -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "%lis" -msgstr "%li초" +msgid "Connecting to %s" +msgstr "%s에 연결하는 중입니다" -#: apt-pkg/contrib/strutl.cc:1243 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Selection %s not found" -msgstr "선택한 %s이(가) 없습니다" +msgid "Could not resolve '%s'" +msgstr "'%s'의 주소를 알아낼 수 없습니다" -#: apt-pkg/contrib/fileutl.cc:190 +#: methods/connect.cc:205 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "읽기 전용 잠금 파일 %s에 대해 잠금을 사용하지 않습니다" +msgid "Temporary failure resolving '%s'" +msgstr "'%s'의 주소를 알아내는데 임시로 실패했습니다" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "잠금 파일 %s 파일을 열 수 없습니다" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "'%s:%s'의 주소를 알아내는데 무언가 이상한 일이 발생했습니다 (%i - %s)" -#: apt-pkg/contrib/fileutl.cc:218 +#: methods/connect.cc:211 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "NFS로 마운트된 잠금 파일 %s에 대해 잠금을 사용하지 않습니다" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "'%s:%s'의 주소를 알아내는데 무언가 이상한 일이 발생했습니다 (%i - %s)" -#: apt-pkg/contrib/fileutl.cc:223 +#: methods/connect.cc:258 #, c-format -msgid "Could not get lock %s" -msgstr "%s 잠금 파일을 얻을 수 없습니다" +msgid "Unable to connect to %s:%s:" +msgstr "%s:%s에 연결할 수 없습니다:" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "내부 오류: 서명은 올바르지만 키 핑거프린트를 확인할 수 없습니다?!" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "최소한 하나 이상의 서명이 잘못되었습니다." -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" +"서명을 확인하는 'gpgv' 프로그램을 실행할 수 없습니다. (gpgv를 설치했습니까?)" -#: apt-pkg/contrib/fileutl.cc:421 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "하위 프로세스 %s 프로세스가 세그멘테이션 오류를 받았습니다." - -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "하위 프로세스 %s 프로세스가 %u번 시그널을 받았습니다." +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "gpgv 실행 도중 알 수 없는 오류 발생" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "하위 프로세스 %s 프로세스가 오류 코드(%u)를 리턴했습니다" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "다음 서명이 올바르지 않습니다:\n" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "하위 프로세스 %s 프로세스가 예상치 못하게 끝났습니다" - -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "쓰기 오류" - -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "%s gzip 파일을 닫는데 문제가 있습니다" - -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "%s 파일을 열 수 없습니다" - -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "%d 파일 디스크립터를 열 수 없습니다" +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "다음 서명들은 공개키가 없기 때문에 인증할 수 없습니다:\n" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "하위 프로세스 IPC를 만드는데 실패했습니다" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "다음 압축 프로그램을 실행하는데 실패했습니다: " +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "해당 파일에 쓰는데 오류가 발생했습니다" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "읽기 오류" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "서버에서 읽고 연결을 닫는데 오류가 발생했습니다" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "%lu만큼 더 읽어야 하지만 더 이상 읽을 데이터가 없습니다" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "서버에서 읽는데 오류가 발생했습니다" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "%lu만큼 더 써야 하지만 더 이상 쓸 수 없습니다" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "파일에 쓰는데 오류가 발생했습니다" -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "%s 파일을 닫는데 문제가 있습니다" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "select가 실패했습니다" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "%s 파일을 %s(으)로 이름을 바꾸는데 문제가 있습니다" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "연결 시간이 초과했습니다" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "%s 파일을 삭제하는데 문제가 있습니다" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "출력 파일에 쓰는데 오류가 발생했습니다" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "파일을 동기화하는데 문제가 있습니다" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "헤더를 기다리는 중입니다" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... 오류!" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "헤더 줄이 잘못되었습니다" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... 완료" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "HTTP 서버에서 잘못된 응답 헤더를 보냈습니다" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "HTTP 서버에서 잘못된 Content-Length 헤더를 보냈습니다" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... 완료" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "HTTP 서버에서 잘못된 Content-Range 헤더를 보냈습니다" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "빈 파일에 메모리 매핑할 수 없습니다" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "HTTP 서버에 범위 지원 기능이 잘못되어 있습니다" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "%i 파일 디스크립터를 복사할 수 없습니다" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "데이터 형식을 알 수 없습니다" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "%lu바이트를 메모리 매핑할 수 없습니다" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "헤더 데이터가 잘못되었습니다" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "mmap을 닫을 수 없습니다" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "연결이 실패했습니다" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "mmap을 동기화할 수 없습니다" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "내부 오류" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "%lu바이트를 메모리 매핑할 수 없습니다" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "파일을 자르는데 실패했습니다" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "내부 오류. 망가진 패키지에서 InstallPackages를 호출했습니다!" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" -msgstr "" -"동적 mmap이 한계를 벗어났습니다. APT::Cache-Start의 크기를 높이십시오. 현재 " -"값: %lu. (man 5 apt.conf)" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "패키지를 제거해야 하지만 제거가 금지되어 있습니다." -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "mmap 크기를 늘릴 수 없습니다. 이미 %lu 바이트 한계에 도달했습니다." +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "내부 오류. 순서변경작업이 끝나지 않았습니다" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" -"mmap 크기를 늘릴 수 없습니다. 자동으로 늘리는 기능을 사용자가 금지했습니다." +"이상하게도 크기가 서로 다릅니다. apt@packages.debian.org로 이메일을 보내주십" +"시오." -#: apt-pkg/contrib/cdromutl.cc:65 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "마운트 위치 %s의 정보를 읽을 수 없습니다" - -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "CD-ROM의 정보를 읽을 수 없습니다" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "%s바이트/%s바이트 아카이브를 받아야 합니다.\n" -#: apt-pkg/contrib/configuration.cc:519 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "이 타입 줄임말을 알 수 없습니다: '%c'" +msgid "Need to get %sB of archives.\n" +msgstr "%s바이트 아카이브를 받아야 합니다.\n" -#: apt-pkg/contrib/configuration.cc:633 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "Opening configuration file %s" -msgstr "설정 파일 %s 파일을 여는 중입니다" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "이 작업 후 %s바이트의 디스크 공간을 더 사용하게 됩니다.\n" -#: apt-pkg/contrib/configuration.cc:801 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "문법 오류 %s:%u: 블럭이 이름으로 시작하지 않습니다." +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "이 작업 후 %s바이트의 디스크 공간이 비워집니다.\n" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-private/private-install.cc:200 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "문법 오류 %s:%u: 태그의 형식이 잘못되었습니다" +msgid "You don't have enough free space in %s." +msgstr "%s 안에 충분한 여유 공간이 없습니다." -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "문법 오류 %s:%u: 값 뒤에 쓰레기 데이터가 더 있습니다" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "문제가 발생했고 -y 옵션이 --force-yes 옵션 없이 사용되었습니다" -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "문법 오류 %s:%u: 지시어는 맨 위 단계에서만 쓸 수 있습니다" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "" +"사소한 작업만 가능하도록(Trivial Only) 지정되었지만 이 작업은 사소한 작업이 " +"아닙니다." -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "문법 오류 %s:%u: include가 너무 많이 겹쳐 있습니다" +# 입력을 받아야 한다. 한글 입력을 못 할 수 있으므로 원문 그대로 사용. +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Yes, do as I say!" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-private/private-install.cc:222 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "문법 오류 %s:%u: 여기서 include됩니다" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"시스템에 무언가 해가 되는 작업을 하려고 합니다.\n" +"계속하시려면 다음 문구를 입력하십시오: '%s'\n" +" ?] " -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "문법 오류 %s:%u: 지원하지 않는 지시어 '%s'" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "중단." -#: apt-pkg/contrib/configuration.cc:900 -#, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "문법 오류 %s:%u: clear 지시어는 인수로 option 트리를 지정해야 합니다" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "계속 하시겠습니까?" -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "문법 오류 %s:%u: 파일의 끝에 쓰레기 데이터가 더 있습니다" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "일부 파일을 받는데 실패했습니다" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, c-format -msgid "No keyring installed in %s." -msgstr "%s에 키 모음을 설치하지 않았습니다." +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"아카이브를 받을 수 없습니다. 아마도 apt-get update를 실행해야 하거나 --fix-" +"missing 옵션을 줘서 실행해야 할 것입니다." -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "명령행 옵션 '%c' 옵션을 [%s에서] 알 수 없습니다." +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing 옵션과 동시에 미디어 바꾸기는 현재 지원하지 않습니다" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "명령행 옵션 '%s' 옵션을 알 수 없습니다" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "빠진 패키지를 바로잡을 수 없습니다." -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "명령행 옵션 '%s' 옵션은 불리언이 아닙니다" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "설치를 중단합니다." -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "%s 옵션에는 인수가 필요합니다." +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"다음 패키지는 패키지의 파일을 모두 다른 패키지가\n" +"덮어썼기 때문에 사라졌습니다:" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "%s 옵션: 설정 항목 지정은 =<값> 형태여야 합니다." +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "주의: dpkg에서 자동으로 의도적으로 수행했습니다." -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "%s 옵션에는 정수 인수가 필요합니다. '%s'이(가) 아닙니다" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "삭제를 할 수 없으므로 AutoRemover를 실행하지 못합니다" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "'%s' 옵션이 너무 깁니다" +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" +"AutoRemover가 뭔가를 망가뜨린 것으로 보입니다. 이 문제는 실제 일어나서는\n" +"안 됩니다. apt에 대해 버그 보고를 하십시오." -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "%s 센스를 이해할 수 없습니다. 참 아니면 거짓으로 해 보십시오." +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "이 상황을 해결하는데 다음 정보가 도움이 될 수도 있습니다:" -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "잘못된 작업 %s" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "내부 오류, 문제 해결 프로그램이 무언가를 망가뜨렸습니다" -#: cmdline/apt-cache.cc:149 -#, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "%s 패키지의 %s 버전의 의존성이 맞지 않습니다:\n" +#: apt-private/private-install.cc:513 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "다음 패키지가 자동으로 설치되었지만 더 이상 필요하지 않습니다:" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "전체 패키지 이름 : " +#: apt-private/private-install.cc:517 +#, c-format +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "패키지 %lu개가 자동으로 설치되었지만 더 이상 필요하지 않습니다.\n" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "전체 패키지 구조: " +#: apt-private/private-install.cc:519 +#, fuzzy +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "이들을 지우려면 'apt-get autoremove'를 사용하십시오." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " 일반 패키지: " +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "다음을 바로잡으려면 'apt-get -f install'을 실행해 보십시오:" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " 순수 가상 패키지: " +# FIXME: specify a solution? 무슨 솔루션? +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"의존성이 맞지 않습니다. 패키지 없이 'apt-get -f install'을 시도해 보십시오 " +"(아니면 해결 방법을 지정하십시오)." -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " 단일 가상 패키지: " +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"몇몇 패키지를 설치할 수 없습니다. 요청한 상황이 불가능할 수도 있고,\n" +"불안정 배포판을 사용해서 일부 필요한 패키지를 아직 만들지 않았거나,\n" +"아직 Incoming에서 나오지 않은 경우일 수도 있습니다." -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " 혼합 가상 패키지: " +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "망가진 패키지" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " 빠짐: " +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "다음 패키지를 더 설치할 것입니다:" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "개별 버전 전체: " +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "제안하는 패키지:" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "개별 설명 전체: " +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "추천하는 패키지:" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "전체 의존성: " +#: apt-private/private-install.cc:825 +#, c-format +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "" +"%s 패키지를 건너 뜁니다. 이미 설치되어 있고 업그레이드를 하지 않습니다.\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "전체 버전/파일 관계: " +#: apt-private/private-install.cc:829 +#, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "%s 패키지를 건너 뜁니다. 설치되지 않았고 업그레이드만 요청합니다.\n" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "전체 설명/파일 관계: " +#: apt-private/private-install.cc:841 +#, c-format +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "%s 패키지를 다시 설치하는 건 불가능합니다. 다운로드할 수 없습니다.\n" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "전체 제공 매핑: " +#: apt-private/private-install.cc:846 +#, c-format +msgid "%s is already the newest version.\n" +msgstr "%s 패키지는 이미 최신 버전입니다.\n" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "전체 패턴 문자열: " +#: apt-private/private-install.cc:894 +#, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "'%3$s' 패키지의 '%1$s' (%2$s) 버전을 선택합니다\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "전체 의존성 버전 용량: " +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "'%3$s' 패키지의 '%1$s' (%2$s) 버전을 선택합니다\n" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "전체 빈 용량: " - -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "차지하는 전체 용량: " - -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "패키지 파일 %s 파일이 동기화되지 않았습니다." - -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "패키지가 없습니다" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "%s 패키지를 설치하지 않았으므로, 지우지 않습니다\n" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "최소 한 개의 검색어를 지정해야 합니다" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "%s 패키지를 설치하지 않았으므로, 지우지 않습니다\n" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "패키지 파일:" +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "캐시가 동기화되지 않았습니다. 패키지 파일을 상호 참조할 수 없습니다" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "의존성을 바로잡는 중입니다..." -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "핀 패키지:" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " 실패." -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(없음)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "의존성을 바로잡을 수 없습니다" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " 설치: " +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "업그레이드 집합을 최소화할 수 없습니다" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " 후보: " +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " 완료" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(없음)" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "" +"이 상황을 바로잡으려면 'apt-get -f install'을 실행해야 할 수도 있습니다." -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " 패키지 핀: " +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "의존성이 맞지 않습니다. -f 옵션을 사용해 보십시오." -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " 버전 테이블:" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s(%s), 컴파일 시각 %s %s\n" +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [설치함]" -#: cmdline/apt-cache.cc:1749 +#: apt-private/private-output.cc:238 #, fuzzy -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgid "[installed,local]" +msgstr " [설치함]" + +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"사용법: apt-cache [옵션] 명령\n" -" apt-cache [옵션] add 파일1 [파일2 ...]\n" -" apt-cache [옵션] showpkg 패키지1 [패키지2 ...]\n" -" apt-cache [옵션] showsrc 패키지1 [패키지2 ...]\n" -"\n" -"apt-cache는 APT의 바이너리 캐시 파일을 처리하고, 캐시 파일에\n" -"정보를 질의하는 저수준 도구입니다.\n" -"\n" -"명령:\n" -" add - 소스 캐시에 패키지 파일을 추가합니다\n" -" gencaches - 패키지 캐시 및 소스 캐시를 만듭니다\n" -" showpkg - 한 개의 패키지에 대한 일반적인 정보를 봅니다\n" -" showsrc - 소스 기록을 봅니다\n" -" stats - 기본적인 통계를 봅니다\n" -" dump - 전체 파일을 간략한 형태로 봅니다\n" -" dumpavail - 사용 가능한 파일을 표준출력에 표시합니다\n" -" unmet - 맞지 않는 의존성을 봅니다\n" -" search - 정규식 패턴에 맞는 패키지 목록을 찾습니다\n" -" show - 패키지에 대해 읽을 수 있는 기록을 봅니다\n" -" showauto - 자동으로 설치한 패키지 목록을 표시합니다\n" -" depends - 패키지에 대해 의존성 정보를 그대로 봅니다\n" -" rdepends - 패키지의 역 의존성 정보를 봅니다\n" -" pkgnames - 시스템에 들어 있는 패키지의 이름을 모두 봅니다\n" -" dotty - GraphViz용 패키지 그래프를 만듭니다\n" -" xvcg - xvcg용 패키지 그래프를 만듭니다\n" -" policy - 정책 설정을 봅니다\n" -"\n" -"옵션:\n" -" -h 이 도움말.\n" -" -p=? 패키지 캐시.\n" -" -s=? 소스 캐시.\n" -" -q 상태 표시를 하지 않습니다.\n" -" -i unmet 명령에서 중요한 의존성만 봅니다.\n" -" -c=? 지정한 설정 파일을 읽습니다.\n" -" -o=? 임의의 옵션을 설정합니다. 예를 들어 -o dir::cache=/tmp\n" -"좀 더 자세한 정보는 apt-cache(8) 및 apt.conf(5) 매뉴얼 페이지를 보십시오.\n" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "이 디스크의 이름을 정하십시오 (예: 'Debian 5.0.3 Disk 1')" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [설치함]" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "드라이브에 디스크를 넣고 Enter를 누르십시오" +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [설치함]" -#: cmdline/apt-cdrom.cc:139 +#: apt-private/private-output.cc:249 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "%s 파일의 이름을 %s(으)로 바꾸는데 실패했습니다" +msgid "[upgradable from: %s]" +msgstr "" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "현재 갖고 있는 다른 CD에도 이 과정을 반복하십시오." +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "하지만 %s 패키지를 설치했습니다" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "인수가 두 개가 아닙니다" +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "하지만 %s 패키지를 설치할 것입니다" -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -msgstr "" -"사용법: apt-config [옵션] 명령\n" -"\n" -"apt-config는 APT 설정 파일을 읽는 간단한 프로그램입니다\n" -"\n" -"명령:\n" -" shell - 쉘 모드\n" -" dump - 설정을 봅니다\n" -"\n" -"옵션:\n" -" -h 이 도움말.\n" -" -c=? 해당 설정 파일을 읽습니다\n" -" -o=? 임의의 옵션을 설정합니다. 예를 들어 -o dir::cache=/tmp\n" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "하지만 설치할 수 없습니다" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "'%s' 정규식에 해당하는 패키지가 없습니다" - -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "'%s' 정규식에 해당하는 패키지가 없습니다" - -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "'%s' 정규식에 해당하는 패키지가 없습니다" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "하지만 가상 패키지입니다" -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "소스 패키지로 '%s'을(를) '%s' 대신 선택합니다\n" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "하지만 설치하지 않았습니다" -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "'%2$s' 패키지의 '%1$s' 버전은 없으므로 무시합니다." +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "하지만 %s 패키지를 설치하지 않을 것입니다" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "%s 패키지를 찾을 수 없습니다" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " 혹은" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s 패키지 수동설치로 지정합니다.\n" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "다음 패키지의 의존성이 맞지 않습니다:" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s 패키지는 수동설치로 지정합니다.\n" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "다음 새 패키지를 설치할 것입니다:" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "다음 패키지를 지울 것입니다:" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "내부 오류, 문제 해결 프로그램이 무언가를 망가뜨렸습니다" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "다음 패키지를 과거 버전으로 유지합니다:" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "다운로드 디렉터리를 잠글 수 없습니다" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "다음 패키지를 업그레이드할 것입니다:" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "해당되는 소스 패키지를 가져올 패키지를 최소한 하나 지정해야 합니다" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "다음 패키지를 다운그레이드할 것입니다:" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "%s의 소스 패키지를 찾을 수 없습니다" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "고정되었던 다음 패키지를 바꿀 것입니다:" -#: cmdline/apt-get.cc:786 +#: apt-private/private-output.cc:668 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" -"알림: '%s' 패키징은 다음 '%s' 버전 컨트롤 시스템에서 관리합니다:\n" -"%s\n" +msgid "%s (due to %s) " +msgstr "%s (%s때문에) " -#: cmdline/apt-get.cc:791 -#, fuzzy, c-format +#: apt-private/private-output.cc:676 msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"패키지의 최근 (아마도 릴리스되지 않은) 업데이트를 받으려면\n" -"다음과 같이 하십시오:\n" -"bzr get %s\n" +"경고: 꼭 필요한 다음 패키지를 지우게 됩니다.\n" +"무슨 일을 하고 있는 지 정확히 알지 못한다면 지우지 마십시오!" -#: cmdline/apt-get.cc:843 +#: apt-private/private-output.cc:707 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "이미 다운로드 받은 파일 '%s'은(는) 다시 받지 않고 건너 뜁니다.\n" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu개 업그레이드, %lu개 새로 설치, " -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-private/private-output.cc:711 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "%s의 여유 공간의 크기를 파악할 수 없습니다" +msgid "%lu reinstalled, " +msgstr "%lu개 다시 설치, " -#: cmdline/apt-get.cc:882 +#: apt-private/private-output.cc:713 #, c-format -msgid "You don't have enough free space in %s" -msgstr "%s에 충분한 공간이 없습니다" +msgid "%lu downgraded, " +msgstr "%lu개 업그레이드, " -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: apt-private/private-output.cc:715 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "소스 아카이브를 %s바이트/%s바이트 받아야 합니다.\n" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu개 제거 및 %lu개 업그레이드 안 함.\n" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 +#: apt-private/private-output.cc:719 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "소스 아카이브를 %s바이트 받아야 합니다.\n" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu개를 완전히 설치하지 못했거나 지움.\n" -#: cmdline/apt-get.cc:902 -#, c-format -msgid "Fetch source %s\n" -msgstr "%s 소스를 가져옵니다\n" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[Y/n]" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "일부 아카이브를 가져오는데 실패했습니다." +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[y/N]" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "다운로드를 마쳤고 다운로드 전용 모드입니다" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "Y" -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "%s에 이미 풀려 있는 소스의 압축을 풀지 않고 건너 뜁니다.\n" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: cmdline/apt-get.cc:962 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "압축 풀기 명령 '%s' 실패.\n" +msgid "Regex compilation error - %s" +msgstr "정규식 컴파일 오류 - %s" -#: cmdline/apt-get.cc:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "'dpkg-dev' 패키지가 설치되었는지를 확인하십시오.\n" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "update 명령은 인수를 받지 않습니다" -#: cmdline/apt-get.cc:991 +#: apt-private/private-update.cc:90 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "빌드 명령 '%s' 실패.\n" - -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "하위 프로세스가 실패했습니다" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "해당되는 빌드 의존성을 검사할 패키지를 최소한 하나 지정해야 합니다" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: cmdline/apt-get.cc:1054 +#: apt-private/private-show.cc:156 #, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" + +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" + +#: apt-private/private-main.cc:32 msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" +"알림: 시험 동작입니다!\n" +" 실행하려면 apt-get을 실행할 때 루트 권한이 필요합니다.\n" +" 또 잠금 기능을 사용하지 않는 상태이므로, 현재 상황에 의존하지\n" +" 않도록 하십시오!" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "%s의 빌드 의존성 정보를 가져올 수 없습니다" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "경고: 다음 패키지를 인증할 수 없습니다!" + +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "인증 경고를 무시합니다.\n" + +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "인증할 수 없는 패키지가 있습니다" + +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "확인하지 않고 패키지를 설치하시겠습니까?" -#: cmdline/apt-get.cc:1101 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s 패키지에 빌드 의존성이 없습니다.\n" +msgid "Failed to fetch %s %s\n" +msgstr "%s 파일을 받는데 실패했습니다 %s\n" -#: cmdline/apt-get.cc:1271 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지를 찾을 수 없습니" -"다" +msgid "Failed to parse %s. Edit again? " +msgstr "%s 파일의 이름을 %s(으)로 바꾸는데 실패했습니다" -#: cmdline/apt-get.cc:1289 +#: apt-private/private-sources.cc:70 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -"%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지를 찾을 수 없습니" -"다" -#: cmdline/apt-get.cc:1312 -#, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" msgstr "" -"%2$s에 대한 %1$s 의존성을 만족시키는데 실패했습니다: 설치한 %3$s 패키지가 너" -"무 최근 버전입니다" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지의 사용 가능한 버" -"전 중에서는 이 버전 요구사항을 만족시킬 수 없습니다" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "업그레이드를 계산하는 중입니다... " -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "완료" + +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "기존 " + +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "받기:" + +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "무시" + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "오류 " + +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "내려받기 %s바이트, 소요시간 %s (%s바이트/초)\n" + +#: apt-private/acqprogress.cc:236 +#, c-format +msgid " [Working]" +msgstr " [작업중]" + +#: apt-private/acqprogress.cc:297 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지를 찾을 수 없습니" -"다" +"미디어 바꾸기: '%2$s' 드라이브에 다음 레이블이 달린\n" +"디스크를 넣고 enter를 누르십시오\n" +" '%1$s'\n" -#: cmdline/apt-get.cc:1380 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "%2$s에 대한 %1$s 의존성을 만족시키는데 실패했습니다: %3$s" +msgid "Unable to read %s" +msgstr "%s을(를) 읽을 수 없습니다" -#: cmdline/apt-get.cc:1395 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "%s의 빌드 의존성을 만족시키지 못했습니다." +msgid "Unable to change to %s" +msgstr "%s 디렉토리로 이동할 수 없습니다" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "빌드 의존성을 처리하는데 실패했습니다" +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 +#, c-format +msgid "No mirror file '%s' found " +msgstr "'%s' 미러 파일이 없습니다 " -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "%s(%s)에 연결하는 중입니다" +msgid "Can not read mirror file '%s'" +msgstr "'%s' 미러 파일이 없습니다 " -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "지원하는 모듈:" +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "'%s' 미러 파일이 없습니다 " -#: cmdline/apt-get.cc:1632 -#, fuzzy -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -msgstr "" -"사용법: apt-get [옵션] 명령어\n" -" apt-get [옵션] install|remove 패키지1 [패키지2 ...]\n" -" apt-get [옵션] source 패키지1 [패키지2 ...]\n" -"\n" -"apt-get은 패키지를 내려받고 설치하는 간단한 명령행 인터페이스입니다.\n" -"가장 자주 사용하는 명령은 update와 install입니다.\n" -"\n" -"명령어:\n" -" update - 패키지 목록을 새로 가져옵니다\n" -" upgrade - 업그레이드를 합니다\n" -" install - 새 패키지를 설치합니다 (패키지는 libc6 식으로. libc6.deb 아님)\n" -" remove - 패키지를 지웁니다\n" -" autoremove - 사용하지 않는 패키지를 자동으로 전부 지웁니다\n" -" purge - 패키지를 완전히 지웁니다\n" -" source - 소스 아카이브를 다운로드합니다\n" -" build-dep - 소스 패키지의 빌드 의존성을 설정합니다\n" -" dist-upgrade - 배포판 업그레이드, apt-get(8) 참고\n" -" dselect-upgrade - dselect에서 선택한 걸 따릅니다\n" -" clean - 내려받은 아카이브 파일들을 지웁니다\n" -" autoclean - 과거에 내려받은 아카이브 파일들을 지웁니다\n" -" check - 의존성이 망가지지 않았는지 확인합니다\n" -" markauto - 패키지를 자동 설치로 표시합니다\n" -" unmarkauto - 패키지를 수동 설치로 표시합니다\n" -"\n" -"옵션:\n" -" -h 이 도움말.\n" -" -q 기록 가능한 출력 - 진행 상황 표시를 하지 않습니다\n" -" -qq 오류만 출력 합니다\n" -" -d 내려받기만 합니다 - 아카이브를 설치하거나 풀거나 하지 않습니다\n" -" -s 실제 작업을 하지 않고, 순서대로 시뮬레이션만 합니다\n" -" -y 모든 질문에 대해 \"예\"라고 가정하고 물어보지 않습니다\n" -" -f 패키지 내용 검사가 실패해도 계속 진행해봅니다\n" -" -m 아카이브를 찾을 수 없어도 계속 진행해봅니다\n" -" -u 업그레이드하는 패키지의 목록도 봅니다\n" -" -b 소스 패키지를 받은 다음에 빌드합니다\n" -" -V 버전 번호를 자세히 봅니다\n" -" -c=? 이 설정 파일을 읽습니다\n" -" -o=? 임의의 옵션을 지정합니다. 예를 들어 -o dir::cache=/tmp\n" -"더 자세한 정보와 옵션을 보려면 apt-get(8), sources.list(5)나\n" -"apt.conf(5) 매뉴얼 페이지를 보십시오.\n" -" 이 APT는 Super Cow Powers로 무장했습니다.\n" +#: methods/mirror.cc:445 +#, c-format +msgid "[Mirror: %s]" +msgstr "[미러 사이트: %s]" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "해당되는 소스 패키지를 가져올 패키지를 최소한 하나 지정해야 합니다" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "하위 프로세스에 대한 IPC 파이프를 만드는데 실패했습니다" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "연결이 너무 빨리 끊어졌습니다" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "기본 설정이 잘못되었습니다!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "계속 하시려면 enter를 누르십시오." + +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "이전에 다운로드 받았던 .deb 파일을 지우시겠습니까?" + +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "압축을 푸는데 몇몇 오류가 발생했습니다. 설치된 패키지를" + +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "설정합니다. 오류때문에 의존성을 만족하지 못해 설정하는 과정에서" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" +"오류가 중복되어 나타날 수 있습니다. 하지만 상관없고, 이 메세지 위에 나온" -#: cmdline/apt-helper.cc:66 +#: dselect/install:105 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "오류만 중요합니다. 이 오류를 고친 다음에 설치(I)를 다시 시도하십시오" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "하지만 설치하지 않았습니다" +#: dselect/update:30 +msgid "Merging available information" +msgstr "이용 가능 패키지 정보를 합칩니다" -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s 패키지 수동설치로 지정합니다.\n" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode가 아직 연결되어 있는 노드에 대해 호출되었습니다" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s 패키지는 수동설치로 지정합니다.\n" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "해시 항목을 찾는데 실패했습니다" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s 패키지는 이미 최신 버전입니다.\n" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "diversion을 할당하는데 실패했습니다" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s 패키지는 이미 최신 버전입니다.\n" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "AddDiversion에서 내부 오류" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s 패키지 수동설치로 지정합니다.\n" +#: apt-inst/filelist.cc:477 +#, c-format +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "전환된 파일을 덮어 쓰려고 합니다 (%s -> %s 및 %s/%s)" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "%s 파일을 여는데 실패했습니다" +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "전환된 파일을 두 번 추가합니다 (%s -> %s)" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "%s/%s 설정 파일이 중복되었습니다" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" +msgstr "경로 %s이(가) 너무 깁니다" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" +msgstr "%s을(를) 두 번 이상 풀었습니다" -#: methods/cdrom.cc:203 +#: apt-inst/extract.cc:142 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "CD-ROM 데이터베이스 %s을(를) 읽을 수 없습니다" +msgid "The directory %s is diverted" +msgstr "%s 디렉터리가 전환되었습니다" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"이 CD를 APT에서 인식하려면 apt-cdrom을 사용하십시오. apt-get update로는 새 " -"CD를 추가할 수 없습니다." +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "이 패키지에서 전환된 대상에 쓰려고 합니다 (%s/%s)" + +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "전환하는 경로가 너무 깁니다" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 +#, c-format +msgid "Failed to stat %s" +msgstr "%s의 정보를 읽는데 실패했습니다" + +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "%s 파일의 이름을 %s(으)로 바꾸는데 실패했습니다" + +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "%s 디렉터리를 디렉터리가 아닌 파일로 덮어쓰려고 합니다" + +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "해시 버킷에서 노드를 찾는데 실패했습니다" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "경로가 너무 깁니다" + +#: apt-inst/extract.cc:421 +#, c-format +msgid "Overwrite package match with no version for %s" +msgstr "덮어 쓰는 패키지가 %s 패키지의 어떤 버전과도 맞지 않습니다" + +#: apt-inst/extract.cc:438 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" +msgstr "%s/%s 파일은 %s 패키지에 있는 파일을 덮어 씁니다" + +#: apt-inst/extract.cc:498 +#, c-format +msgid "Unable to stat %s" +msgstr "%s의 정보를 읽을 수 없습니다" + +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, c-format +msgid "Failed to write file %s" +msgstr "%s 파일을 쓰는데 실패했습니다" + +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "%s 파일을 닫는데 실패했습니다" + +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "올바른 DEB 아카이브가 아닙니다. '%s' 멤버가 없습니다" + +#: apt-inst/deb/debfile.cc:132 +#, c-format +msgid "Internal error, could not locate member %s" +msgstr "내부 오류, %s 멤버를 찾을 수 없습니다" + +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "control 파일을 파싱할 수 없습니다" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "아카이브 서명이 틀렸습니다" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "아카이브 멤버 헤더를 읽는데 오류가 발생했습니다" + +#: apt-inst/contrib/arfile.cc:96 +#, c-format +msgid "Invalid archive member header %s" +msgstr "아카이브 멤버 헤더 %s이(가) 잘못되었습니다" + +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "아카이브 멤버 헤더가 잘못되었습니다" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "잘못된 CD" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "아카이브 길이가 너무 짧습니다" -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "%s 안의 CD-ROM을 마운트 해제할 수 없습니다. 사용 중일 것입니다." +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "아카이브 헤더를 읽는데 실패했습니다" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "디스크가 없습니다." +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "파이프 만들기가 실패했습니다" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "파일이 없습니다" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "gzip 실행이 실패했습니다" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "파일 정보를 읽는데 실패했습니다" +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "아카이브가 손상되었습니다" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "파일 변경 시각을 설정하는데 실패했습니다" +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "tar 체크섬 실패, 아카이브가 손상되었습니다" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI가 틀렸습니다. 로컬 URI는 //로 시작해야 합니다." +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "알 수 없는 TAR 헤더 타입 %u, 멤버 %s" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "로그인하는 중입니다" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "상대방의 이름을 알 수 없습니다" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "dpkg 실행하는 중입니다" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "로컬 이름을 알 수 없습니다" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "'%s' 패키지 시스템을 지원하지 않습니다" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "올바른 패키지 시스템 타입을 알아낼 수 없습니다" + +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "서버에서 다음과 같이 연결을 거부했습니다: %s" +msgid "Wrote %i records.\n" +msgstr "레코드 %i개를 썼습니다.\n" -#: methods/ftp.cc:225 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER 실패, 서버에서는: %s" +msgid "Wrote %i records with %i missing files.\n" +msgstr "레코드 %i개를 파일 %i개가 빠진 상태로 썼습니다.\n" -#: methods/ftp.cc:232 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS 실패, 서버에서는: %s" +msgid "Wrote %i records with %i mismatched files\n" +msgstr "레코드 %i개를 파일 %i개가 맞지 않은 상태로 썼습니다\n" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"프록시 서버를 지정했지만 로그인 스크립트가 없습니다. Acquire::ftp::" -"ProxyLogin 값이 비어 있습니다." +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "레코드 %i개를 파일 %i개가 빠지고 %i개가 맞지 않은 상태로 썼습니다\n" -#: methods/ftp.cc:280 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "로그인 스크립트 명령 '%s' 실패, 서버에서는: %s" +msgid "Can't find authentication record for: %s" +msgstr "다음의 인증 기록을 찾을 수 없습니다: %s" -#: methods/ftp.cc:306 +#: apt-pkg/indexcopy.cc:521 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE 실패, 서버에서는: %s" +msgid "Hash mismatch for: %s" +msgstr "다음의 해시가 다릅니다: %s" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "연결 시간 초과" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "패키지 목록이나 상태 파일을 파싱할 수 없거나 열 수 없습니다." -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "서버에서 연결을 닫았습니다" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "apt-get update를 실행하면 이 문제를 바로잡을 수도 있습니다." -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "응답이 버퍼 크기를 넘어갔습니다." +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "소스 목록을 읽을 수 없습니다." -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "프로토콜이 틀렸습니다" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "패키지 캐시가 비어 있습니다" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "소켓을 만들 수 없습니다" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "패키지 캐시 파일이 손상되었습니다" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "데이터 소켓을 연결할 수 없습니다. 연결 시간이 초과되었습니다" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "패키지 캐시 파일이 호환되지 않는 버전입니다" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "실패" +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "패키지 캐시 파일이 손상되었습니다" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "수동(passive) 소켓을 연결할 수 없습니다." +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "이 APT는 '%s' 버전 시스템을 지원하지 않습니다" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo에서 소켓에 listen할 수 없습니다" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "패키지 캐시가 다른 아키텍쳐용입니다." -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "소켓을 bind할 수 없습니다" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "의존" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "소켓에 listen할 수 없습니다" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "미리의존" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "소켓의 이름을 알아낼 수 없습니다" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "제안" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "PORT 명령을 보낼 수 없습니다" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "추천" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "주소 %u의 종류(AF_*)를 알 수 없습니다" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "충돌" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT 실패, 서버에서는: %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "대체" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "데이터 소켓 연결 시간 초과" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "없앰" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "연결을 받을 수 없습니다" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "망가뜨림" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "파일 해싱에 문제가 있습니다" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "향상" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "파일을 가져올 수 없습니다. 서버 왈, '%s'" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "중요" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "데이터 소켓에 제한 시간이 초과했습니다" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "필수" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "데이터 전송 실패, 서버에서는: %s" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "표준" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "질의" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "옵션" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "다음을 실행할 수 없습니다: " +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "별도" -#: methods/connect.cc:76 +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Connecting to %s (%s)" -msgstr "%s(%s)에 연결하는 중입니다" +msgid "The method driver %s could not be found." +msgstr "설치 방법 드라이버 %s을(를) 찾을 수 없습니다." -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "'dpkg-dev' 패키지가 설치되었는지를 확인하십시오.\n" -#: methods/connect.cc:94 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "%s에 대한 소켓을 만들 수 없습니다 (f=%u t=%u p=%u)" +msgid "Method %s did not start correctly" +msgstr "설치 방법 %s이(가) 올바르게 시작하지 않았습니다" -#: methods/connect.cc:100 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "%s:%s에 연결을 초기화할 수 없습니다 (%s)." +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"'%2$s' 드라이브에 '%1$s'(으)로 표기된 디스크를 넣고 Enter를 누르십시오." -#: methods/connect.cc:108 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "%s:%s에 연결할 수 없습니다 (%s). 연결 제한 시간이 초과했습니다" +msgid "Index file type '%s' is not supported" +msgstr "인덱스 파일 타입 '%s' 타입은 지원하지 않습니다" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "%s:%s에 연결할 수 없습니다 (%s)." +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "의존성 트리를 만드는 중입니다" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 -#, c-format -msgid "Connecting to %s" -msgstr "%s에 연결하는 중입니다" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "후보 버전" -#: methods/connect.cc:180 methods/connect.cc:199 -#, c-format -msgid "Could not resolve '%s'" -msgstr "'%s'의 주소를 알아낼 수 없습니다" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "의존성 만들기" -#: methods/connect.cc:205 -#, c-format -msgid "Temporary failure resolving '%s'" -msgstr "'%s'의 주소를 알아내는데 임시로 실패했습니다" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "상태 정보를 읽는 중입니다" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "'%s:%s'의 주소를 알아내는데 무언가 이상한 일이 발생했습니다 (%i - %s)" +#: apt-pkg/depcache.cc:250 +#, c-format +msgid "Failed to open StateFile %s" +msgstr "상태파일 %s 여는데 실패했습니다" -#: methods/connect.cc:211 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "'%s:%s'의 주소를 알아내는데 무언가 이상한 일이 발생했습니다 (%i - %s)" +msgid "Failed to write temporary StateFile %s" +msgstr "임시 상태파일 %s 쓰는데 실패했습니다" -#: methods/connect.cc:258 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "%s:%s에 연결할 수 없습니다:" +msgid "rename failed, %s (%s -> %s)." +msgstr "이름 바꾸기가 실패했습니다. %s (%s -> %s)." -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "내부 오류: 서명은 올바르지만 키 핑거프린트를 확인할 수 없습니다?!" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "해시 합이 맞지 않습니다" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "최소한 하나 이상의 서명이 잘못되었습니다." +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "크기가 맞지 않습니다" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "" -"서명을 확인하는 'gpgv' 프로그램을 실행할 수 없습니다. (gpgv를 설치했습니까?)" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "잘못된 작업 %s" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1573 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "gpgv 실행 도중 알 수 없는 오류 발생" +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Release 파일 %s 파일을 파싱할 수 없습니다" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "다음 서명이 올바르지 않습니다:\n" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "다음 키 ID의 공개키가 없습니다:\n" -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1669 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "다음 서명들은 공개키가 없기 때문에 인증할 수 없습니다:\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "해당 파일에 쓰는데 오류가 발생했습니다" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "배포판 충돌: %s (예상값 %s, 실제값 %s)" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "서버에서 읽고 연결을 닫는데 오류가 발생했습니다" +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"디지털 서명 확인에 오류가 발생했습니다. 저장고를 업데이트하지 않고\n" +"예전의 인덱스 파일을 사용합니다. GPG 오류: %s: %s\n" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "서버에서 읽는데 오류가 발생했습니다" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "GPG 오류: %s: %s" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "파일에 쓰는데 오류가 발생했습니다" +#: apt-pkg/acquire-item.cc:1859 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"%s 패키지의 파일을 찾을 수 없습니다. 수동으로 이 패키지를 고쳐야 할 수도 있습" +"니다. (아키텍쳐가 빠졌기 때문입니다)" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "select가 실패했습니다" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "연결 시간이 초과했습니다" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"패키지 인덱스 파일이 손상되었습니다. %s 패키지에 Filename: 필드가 없습니다." -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "출력 파일에 쓰는데 오류가 발생했습니다" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "인덱스 파일 타입 '%s' 타입은 지원하지 않습니다" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "헤더를 기다리는 중입니다" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "%s의 정보를 읽을 수 없습니다." -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "헤더 줄이 잘못되었습니다" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "캐시의 버전 시스템이 호환되지 않습니다" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP 서버에서 잘못된 응답 헤더를 보냈습니다" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "%s 처리 중에 오류가 발생했습니다 (FindPkg)" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP 서버에서 잘못된 Content-Length 헤더를 보냈습니다" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "우와, 이 APT가 처리할 수 있는 패키지 이름 개수를 넘어갔습니다." -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP 서버에서 잘못된 Content-Range 헤더를 보냈습니다" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "우와, 이 APT가 처리할 수 있는 버전 개수를 넘어갔습니다." -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "HTTP 서버에 범위 지원 기능이 잘못되어 있습니다" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "우와, 이 APT가 처리할 수 있는 설명 개수를 넘어갔습니다." -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "데이터 형식을 알 수 없습니다" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "우와, 이 APT가 처리할 수 있는 의존성 개수를 넘어갔습니다." + +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "파일 의존성을 처리하는 데, %s %s 패키지가 없습니다" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "헤더 데이터가 잘못되었습니다" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "소스 패키지 목록 %s의 정보를 읽을 수 없습니다" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "연결이 실패했습니다" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "패키지 목록을 읽는 중입니다" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "내부 오류" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "파일에서 제공하는 것을 모으는 중입니다" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "업그레이드를 계산하는 중입니다... " +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "%s에 쓸 수 없습니다" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "완료" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "소스 캐시를 저장하는데 입출력 오류가 발생했습니다" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "벤더 블럭 %s의 핑거프린트가 없습니다" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "목록 디렉터리 %spartial이 빠졌습니다." -#: apt-private/private-list.cc:164 +#: apt-pkg/acquire.cc:91 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" +msgid "Archives directory %spartial is missing." +msgstr "아카이브 디렉터리 %spartial이 빠졌습니다." -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "의존성을 바로잡는 중입니다..." +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "%s 디렉터리를 잠글 수 없습니다" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " 실패." +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "파일 받아오는 중: %2$li 중 %1$li (%3$s 남았음)" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "의존성을 바로잡을 수 없습니다" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "파일 받아오는 중: %2$li 중 %1$li" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "업그레이드 집합을 최소화할 수 없습니다" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"일부 인덱스 파일을 다운로드하는데 실패했습니다. 해당 파일을 무시하거나 과거" +"의 버전을 대신 사용합니다." -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " 완료" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "sources.list에 '소스' URI를 써 넣어야 합니다" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"이 상황을 바로잡으려면 'apt-get -f install'을 실행해야 할 수도 있습니다." -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "의존성이 맞지 않습니다. -f 옵션을 사용해 보십시오." +#: apt-pkg/policy.cc:422 +#, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "기본 설정 파일 %s에 잘못된 데이터가 있습니다. Package 헤더가 없습니다" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "핀 타입 %s이(가) 무엇인지 이해할 수 없습니다" + +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "핀에 우선순위(혹은 0)를 지정하지 않았습니다" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" +"'%s'에 대해 즉시 설정을 할 수 없습니다. 자세한 설명은 man 5 apt.conf 페이지에" +"서 APT::Immediate-Configure 항목을 보십시오. (%d)" -#: apt-private/private-output.cc:234 +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [설치함]" - -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [설치함]" +msgid "Could not configure '%s'. " +msgstr "'%s' 파일을 열 수 없습니다" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." msgstr "" +"이번에 설치할 때 충돌/선의존성이 루프가 걸렸기 때문에 꼭 필요한 %s 패키지를 " +"잠깐 제거해야 합니다. 이 패키지를 제거하는 건 좋지 않지만, 정말 지우려면 " +"APT::Force-LoopBreak 옵션을 켜십시오." -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [설치함]" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "소스 리스트 %2$s의 %1$u번 줄이 너무 깁니다." -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [설치함]" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "CD-ROM을 마운트 해제하는 중입니다...\n" -#: apt-private/private-output.cc:249 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +msgid "Using CD-ROM mount point %s\n" +msgstr "CD-ROM 마운트 위치 %s 사용\n" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "디스크를 기다리는 중입니다...\n" -#: apt-private/private-output.cc:435 +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "CD-ROM 마운트하는 중입니다...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "알아보는 중입니다... " + +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "but %s is installed" -msgstr "하지만 %s 패키지를 설치했습니다" +msgid "Stored label: %s\n" +msgstr "저장된 레이블: %s\n" -#: apt-private/private-output.cc:437 +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "디스크에서 색인 파일을 찾는 중입니다...\n" + +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "but %s is to be installed" -msgstr "하지만 %s 패키지를 설치할 것입니다" +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "패키지 색인 %zu개, 소스 색인 %zu개, 번역 색인 %zu개, 서명 %zu개 발견\n" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "하지만 설치할 수 없습니다" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" +"패키지 파일이 하나도 없습니다. 아마도 데비안 디스크가 아니거나 아키텍처가 잘" +"못된 것 같습니다?" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "하지만 가상 패키지입니다" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "레이블 발견: %s \n" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "하지만 설치하지 않았습니다" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "올바른 이름이 아닙니다. 다시 시도하십시오.\n" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "하지만 %s 패키지를 설치하지 않을 것입니다" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"이 디스크는 다음과 같습니다: \n" +"'%s'\n" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " 혹은" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "패키지 목록을 복사하는 중입니다..." -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "다음 패키지의 의존성이 맞지 않습니다:" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "새 소스 리스트를 쓰는 중입니다\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "다음 새 패키지를 설치할 것입니다:" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "이 디스크의 소스 리스트 항목은 다음과 같습니다:\n" + +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"%s 패키지를 다시 설치해야 하지만, 이 패키지의 아카이브를 찾을 수 없습니다." -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "다음 패키지를 지울 것입니다:" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"오류, pkgProblemResolver::Resolve가 망가졌습니다. 고정 패키지때문에 발생할 수" +"도 있습니다." -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "다음 패키지를 과거 버전으로 유지합니다:" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "문제를 바로잡을 수 없습니다. 망가진 고정 패키지가 있습니다." -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "다음 패키지를 업그레이드할 것입니다:" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "다음 패키지를 다운그레이드할 것입니다:" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "고정되었던 다음 패키지를 바꿀 것입니다:" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: apt-private/private-output.cc:668 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (%s때문에) " +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" msgstr "" -"경고: 꼭 필요한 다음 패키지를 지우게 됩니다.\n" -"무슨 일을 하고 있는 지 정확히 알지 못한다면 지우지 마십시오!" -#: apt-private/private-output.cc:707 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu개 업그레이드, %lu개 새로 설치, " +msgid "Unable to parse package file %s (1)" +msgstr "패키지 파일 %s 파일을 파싱할 수 없습니다 (1)" -#: apt-private/private-output.cc:711 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu개 다시 설치, " +msgid "Unable to parse package file %s (2)" +msgstr "패키지 파일 %s 파일을 파싱할 수 없습니다 (2)" -#: apt-private/private-output.cc:713 +#: apt-pkg/indexrecords.cc:78 #, c-format -msgid "%lu downgraded, " -msgstr "%lu개 업그레이드, " +msgid "Unable to parse Release file %s" +msgstr "Release 파일 %s 파일을 파싱할 수 없습니다" -#: apt-private/private-output.cc:715 +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu개 제거 및 %lu개 업그레이드 안 함.\n" +msgid "No sections in Release file %s" +msgstr "Release 파일 %s에 섹션이 없습니다" -#: apt-private/private-output.cc:719 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu개를 완전히 설치하지 못했거나 지움.\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[Y/n]" +msgid "No Hash entry in Release file %s" +msgstr "Release 파일 %s에 Hash 항목이 없습니다" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[y/N]" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Release 파일 %s에 'Valid-Until' 항목이 잘못되었습니다" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "Y" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Release 파일 %s에 'Date' 항목이 잘못되었습니다" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (URI 파싱)" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "update 명령은 인수를 받지 않습니다" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([option] 파싱 불가)" -#: apt-private/private-update.cc:90 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([option] 너무 짧음)" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([%3$s] 대입이 아님)" -#: apt-private/private-show.cc:156 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([%3$s] 키가 없음)" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" +"소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([%3$s] %4$s 키에 값이 없음)" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "내부 오류. 망가진 패키지에서 InstallPackages를 호출했습니다!" - -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "패키지를 제거해야 하지만 제거가 금지되어 있습니다." +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (URI)" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "내부 오류. 순서변경작업이 끝나지 않았습니다" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (dist)" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"이상하게도 크기가 서로 다릅니다. apt@packages.debian.org로 이메일을 보내주십" -"시오." +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (URI 파싱)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "%s바이트/%s바이트 아카이브를 받아야 합니다.\n" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (절대 dist)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "%s바이트 아카이브를 받아야 합니다.\n" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (dist 파싱)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "이 작업 후 %s바이트의 디스크 공간을 더 사용하게 됩니다.\n" +msgid "Opening %s" +msgstr "%s 파일을 여는 중입니다" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "이 작업 후 %s바이트의 디스크 공간이 비워집니다.\n" +msgid "Malformed line %u in source list %s (type)" +msgstr "소스 리스트 %2$s의 %1$u번 줄이 잘못되었습니다 (타입)" -#: apt-private/private-install.cc:200 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "You don't have enough free space in %s." -msgstr "%s 안에 충분한 여유 공간이 없습니다." +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "소스 목록 %3$s의 %2$u번 줄의 '%1$s' 타입을 알 수 없습니다" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "문제가 발생했고 -y 옵션이 --force-yes 옵션 없이 사용되었습니다" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "소스 목록 %3$s의 %2$u번 줄의 '%1$s' 타입을 알 수 없습니다" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "" -"사소한 작업만 가능하도록(Trivial Only) 지정되었지만 이 작업은 사소한 작업이 " -"아닙니다." +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "%2$s 패키지의 '%1$s' 릴리즈를 찾을 수 없습니다" -# 입력을 받아야 한다. 한글 입력을 못 할 수 있으므로 원문 그대로 사용. -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Yes, do as I say!" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "%2$s 패키지의 '%1$s' 버전을 찾을 수 없습니다" -#: apt-private/private-install.cc:222 +#: apt-pkg/cacheset.cc:603 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"시스템에 무언가 해가 되는 작업을 하려고 합니다.\n" -"계속하시려면 다음 문구를 입력하십시오: '%s'\n" -" ?] " +msgid "Couldn't find task '%s'" +msgstr "'%s' 작업을 찾을 수 없습니다" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "중단." +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "'%s' 정규식에 해당하는 패키지가 없습니다" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "계속 하시겠습니까?" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "'%s' 정규식에 해당하는 패키지가 없습니다" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "일부 파일을 받는데 실패했습니다" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "'%s' 패키지는 가상 패키지이므로 버전을 선택할 수 없습니다" -#: apt-private/private-install.cc:320 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"아카이브를 받을 수 없습니다. 아마도 apt-get update를 실행해야 하거나 --fix-" -"missing 옵션을 줘서 실행해야 할 것입니다." - -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing 옵션과 동시에 미디어 바꾸기는 현재 지원하지 않습니다" +"'%s' 패키지에서 설치한 버전이나 후보 버전을 선택할 수 없습니다. 둘 다 아닙니" +"다." -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "빠진 패키지를 바로잡을 수 없습니다." +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "'%s' 패키지에서 최신 버전을 선택할 수 없습니다. 가상 패키지입니다." -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "설치를 중단합니다." +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "'%s' 패키지에서 후보 버전을 선택할 수 없습니다. 후보가 없습니다." -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -"다음 패키지는 패키지의 파일을 모두 다른 패키지가\n" -"덮어썼기 때문에 사라졌습니다:" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "'%s' 패키지에서 설치한 버전을 선택할 수 없습니다. 설치하지 않았습니다." -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "주의: dpkg에서 자동으로 의도적으로 수행했습니다." +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%li일 %li시간 %li분 %li초" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "삭제를 할 수 없으므로 AutoRemover를 실행하지 못합니다" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%li시간 %li분 %li초" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"AutoRemover가 뭔가를 망가뜨린 것으로 보입니다. 이 문제는 실제 일어나서는\n" -"안 됩니다. apt에 대해 버그 보고를 하십시오." +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%li분 %li초" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "이 상황을 해결하는데 다음 정보가 도움이 될 수도 있습니다:" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%li초" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "내부 오류, 문제 해결 프로그램이 무언가를 망가뜨렸습니다" +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "선택한 %s이(가) 없습니다" -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "다음 패키지가 자동으로 설치되었지만 더 이상 필요하지 않습니다:" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "읽기 전용 잠금 파일 %s에 대해 잠금을 사용하지 않습니다" -#: apt-private/private-install.cc:517 +#: apt-pkg/contrib/fileutl.cc:195 #, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "패키지 %lu개가 자동으로 설치되었지만 더 이상 필요하지 않습니다.\n" +msgid "Could not open lock file %s" +msgstr "잠금 파일 %s 파일을 열 수 없습니다" -#: apt-private/private-install.cc:519 -#, fuzzy -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "이들을 지우려면 'apt-get autoremove'를 사용하십시오." +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "NFS로 마운트된 잠금 파일 %s에 대해 잠금을 사용하지 않습니다" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "다음을 바로잡으려면 'apt-get -f install'을 실행해 보십시오:" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "%s 잠금 파일을 얻을 수 없습니다" -# FIXME: specify a solution? 무슨 솔루션? -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -"의존성이 맞지 않습니다. 패키지 없이 'apt-get -f install'을 시도해 보십시오 " -"(아니면 해결 방법을 지정하십시오)." -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -"몇몇 패키지를 설치할 수 없습니다. 요청한 상황이 불가능할 수도 있고,\n" -"불안정 배포판을 사용해서 일부 필요한 패키지를 아직 만들지 않았거나,\n" -"아직 Incoming에서 나오지 않은 경우일 수도 있습니다." -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "망가진 패키지" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "다음 패키지를 더 설치할 것입니다:" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "제안하는 패키지:" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "하위 프로세스 %s 프로세스가 세그멘테이션 오류를 받았습니다." -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "추천하는 패키지:" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "하위 프로세스 %s 프로세스가 %u번 시그널을 받았습니다." -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "" -"%s 패키지를 건너 뜁니다. 이미 설치되어 있고 업그레이드를 하지 않습니다.\n" +msgid "Sub-process %s returned an error code (%u)" +msgstr "하위 프로세스 %s 프로세스가 오류 코드(%u)를 리턴했습니다" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "%s 패키지를 건너 뜁니다. 설치되지 않았고 업그레이드만 요청합니다.\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "하위 프로세스 %s 프로세스가 예상치 못하게 끝났습니다" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "%s 패키지를 다시 설치하는 건 불가능합니다. 다운로드할 수 없습니다.\n" +msgid "Problem closing the gzip file %s" +msgstr "%s gzip 파일을 닫는데 문제가 있습니다" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s 패키지는 이미 최신 버전입니다.\n" +msgid "Could not open file %s" +msgstr "%s 파일을 열 수 없습니다" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "'%3$s' 패키지의 '%1$s' (%2$s) 버전을 선택합니다\n" +msgid "Could not open file descriptor %d" +msgstr "%d 파일 디스크립터를 열 수 없습니다" -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "하위 프로세스 IPC를 만드는데 실패했습니다" + +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "다음 압축 프로그램을 실행하는데 실패했습니다: " + +#: apt-pkg/contrib/fileutl.cc:1514 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "'%3$s' 패키지의 '%1$s' (%2$s) 버전을 선택합니다\n" +msgid "read, still have %llu to read but none left" +msgstr "%lu만큼 더 읽어야 하지만 더 이상 읽을 데이터가 없습니다" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "%s 패키지를 설치하지 않았으므로, 지우지 않습니다\n" +msgid "write, still have %llu to write but couldn't" +msgstr "%lu만큼 더 써야 하지만 더 이상 쓸 수 없습니다" + +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "%s 파일을 닫는데 문제가 있습니다" -#: apt-private/private-install.cc:947 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "%s 패키지를 설치하지 않았으므로, 지우지 않습니다\n" +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "%s 파일을 %s(으)로 이름을 바꾸는데 문제가 있습니다" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" -"알림: 시험 동작입니다!\n" -" 실행하려면 apt-get을 실행할 때 루트 권한이 필요합니다.\n" -" 또 잠금 기능을 사용하지 않는 상태이므로, 현재 상황에 의존하지\n" -" 않도록 하십시오!" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "%s 파일을 삭제하는데 문제가 있습니다" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "경고: 다음 패키지를 인증할 수 없습니다!" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "파일을 동기화하는데 문제가 있습니다" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "인증 경고를 무시합니다.\n" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... 오류!" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "인증할 수 없는 패키지가 있습니다" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... 완료" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "확인하지 않고 패키지를 설치하시겠습니까?" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-sources.cc:58 +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "%s 파일의 이름을 %s(으)로 바꾸는데 실패했습니다" +msgid "%c%s... %u%%" +msgstr "%c%s... 완료" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "빈 파일에 메모리 매핑할 수 없습니다" + +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "Couldn't duplicate file descriptor %i" +msgstr "%i 파일 디스크립터를 복사할 수 없습니다" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "%lu바이트를 메모리 매핑할 수 없습니다" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "기존 " +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "mmap을 닫을 수 없습니다" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "받기:" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "mmap을 동기화할 수 없습니다" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "무시" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "%lu바이트를 메모리 매핑할 수 없습니다" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "오류 " +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "파일을 자르는데 실패했습니다" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "내려받기 %s바이트, 소요시간 %s (%s바이트/초)\n" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" +"동적 mmap이 한계를 벗어났습니다. APT::Cache-Start의 크기를 높이십시오. 현재 " +"값: %lu. (man 5 apt.conf)" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid " [Working]" -msgstr " [작업중]" +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "mmap 크기를 늘릴 수 없습니다. 이미 %lu 바이트 한계에 도달했습니다." -#: apt-private/acqprogress.cc:297 -#, c-format +#: apt-pkg/contrib/mmap.cc:449 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -"미디어 바꾸기: '%2$s' 드라이브에 다음 레이블이 달린\n" -"디스크를 넣고 enter를 누르십시오\n" -" '%1$s'\n" +"mmap 크기를 늘릴 수 없습니다. 자동으로 늘리는 기능을 사용자가 금지했습니다." -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "No mirror file '%s' found " -msgstr "'%s' 미러 파일이 없습니다 " +msgid "Unable to stat the mount point %s" +msgstr "마운트 위치 %s의 정보를 읽을 수 없습니다" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "'%s' 미러 파일이 없습니다 " +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "CD-ROM의 정보를 읽을 수 없습니다" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "'%s' 미러 파일이 없습니다 " +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "이 타입 줄임말을 알 수 없습니다: '%c'" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "[Mirror: %s]" -msgstr "[미러 사이트: %s]" +msgid "Opening configuration file %s" +msgstr "설정 파일 %s 파일을 여는 중입니다" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "하위 프로세스에 대한 IPC 파이프를 만드는데 실패했습니다" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "문법 오류 %s:%u: 블럭이 이름으로 시작하지 않습니다." -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "연결이 너무 빨리 끊어졌습니다" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "문법 오류 %s:%u: 태그의 형식이 잘못되었습니다" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "기본 설정이 잘못되었습니다!" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "문법 오류 %s:%u: 값 뒤에 쓰레기 데이터가 더 있습니다" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "계속 하시려면 enter를 누르십시오." +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "문법 오류 %s:%u: 지시어는 맨 위 단계에서만 쓸 수 있습니다" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "이전에 다운로드 받았던 .deb 파일을 지우시겠습니까?" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "문법 오류 %s:%u: include가 너무 많이 겹쳐 있습니다" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "압축을 푸는데 몇몇 오류가 발생했습니다. 설치된 패키지를" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "문법 오류 %s:%u: 여기서 include됩니다" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "설정합니다. 오류때문에 의존성을 만족하지 못해 설정하는 과정에서" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "문법 오류 %s:%u: 지원하지 않는 지시어 '%s'" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"오류가 중복되어 나타날 수 있습니다. 하지만 상관없고, 이 메세지 위에 나온" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "문법 오류 %s:%u: clear 지시어는 인수로 option 트리를 지정해야 합니다" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "오류만 중요합니다. 이 오류를 고친 다음에 설치(I)를 다시 시도하십시오" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "문법 오류 %s:%u: 파일의 끝에 쓰레기 데이터가 더 있습니다" -#: dselect/update:30 -msgid "Merging available information" -msgstr "이용 가능 패키지 정보를 합칩니다" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "%s에 키 모음을 설치하지 않았습니다." -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode가 아직 연결되어 있는 노드에 대해 호출되었습니다" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "명령행 옵션 '%c' 옵션을 [%s에서] 알 수 없습니다." -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "해시 항목을 찾는데 실패했습니다" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "명령행 옵션 '%s' 옵션을 알 수 없습니다" + +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "명령행 옵션 '%s' 옵션은 불리언이 아닙니다" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "diversion을 할당하는데 실패했습니다" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "%s 옵션에는 인수가 필요합니다." -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "AddDiversion에서 내부 오류" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "%s 옵션: 설정 항목 지정은 =<값> 형태여야 합니다." -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "전환된 파일을 덮어 쓰려고 합니다 (%s -> %s 및 %s/%s)" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "%s 옵션에는 정수 인수가 필요합니다. '%s'이(가) 아닙니다" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "전환된 파일을 두 번 추가합니다 (%s -> %s)" +msgid "Option '%s' is too long" +msgstr "'%s' 옵션이 너무 깁니다" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "%s/%s 설정 파일이 중복되었습니다" +msgid "Sense %s is not understood, try true or false." +msgstr "%s 센스를 이해할 수 없습니다. 참 아니면 거짓으로 해 보십시오." -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The path %s is too long" -msgstr "경로 %s이(가) 너무 깁니다" +msgid "Invalid operation %s" +msgstr "잘못된 작업 %s" -#: apt-inst/extract.cc:132 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unpacking %s more than once" -msgstr "%s을(를) 두 번 이상 풀었습니다" +msgid "Installing %s" +msgstr "%s 설치하는 중입니다" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The directory %s is diverted" -msgstr "%s 디렉터리가 전환되었습니다" +msgid "Configuring %s" +msgstr "%s 설정 중입니다" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "이 패키지에서 전환된 대상에 쓰려고 합니다 (%s/%s)" +msgid "Removing %s" +msgstr "%s 패키지를 지우는 중입니다" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "전환하는 경로가 너무 깁니다" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "%s 패키지를 완전히 지우는 중입니다" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to stat %s" -msgstr "%s의 정보를 읽는데 실패했습니다" +msgid "Noting disappearance of %s" +msgstr "%s 사라짐 발견했습니다" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Failed to rename %s to %s" -msgstr "%s 파일의 이름을 %s(으)로 바꾸는데 실패했습니다" +msgid "Running post-installation trigger %s" +msgstr "설치 후 트리거 %s 실행하는 중입니다" -#: apt-inst/extract.cc:249 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "%s 디렉터리를 디렉터리가 아닌 파일로 덮어쓰려고 합니다" +msgid "Directory '%s' missing" +msgstr "디렉터리 '%s' 없습니다." -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "해시 버킷에서 노드를 찾는데 실패했습니다" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "'%s' 파일을 열 수 없습니다" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "경로가 너무 깁니다" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "%s 준비 중입니다" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "덮어 쓰는 패키지가 %s 패키지의 어떤 버전과도 맞지 않습니다" +msgid "Unpacking %s" +msgstr "%s 푸는 중입니다" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "%s/%s 파일은 %s 패키지에 있는 파일을 덮어 씁니다" +msgid "Preparing to configure %s" +msgstr "%s 패키지를 설정할 준비하는 중입니다" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Unable to stat %s" -msgstr "%s의 정보를 읽을 수 없습니다" +msgid "Installed %s" +msgstr "%s 설치" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to write file %s" -msgstr "%s 파일을 쓰는데 실패했습니다" +msgid "Preparing for removal of %s" +msgstr "%s 패키지를 지울 준비하는 중입니다" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Failed to close file %s" -msgstr "%s 파일을 닫는데 실패했습니다" +msgid "Removed %s" +msgstr "%s 지움" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "올바른 DEB 아카이브가 아닙니다. '%s' 멤버가 없습니다" +msgid "Preparing to completely remove %s" +msgstr "%s 패키지를 완전히 지울 준비를 하는 중입니다" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "내부 오류, %s 멤버를 찾을 수 없습니다" +msgid "Completely removed %s" +msgstr "%s 패키지를 완전히 지웠습니다" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "control 파일을 파싱할 수 없습니다" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "아카이브 서명이 틀렸습니다" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "%s에 쓸 수 없습니다" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "아카이브 멤버 헤더를 읽는데 오류가 발생했습니다" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "아카이브 멤버 헤더 %s이(가) 잘못되었습니다" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "아카이브 멤버 헤더가 잘못되었습니다" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "아카이브 길이가 너무 짧습니다" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "보고서를 작성하지 않습니다. 이미 MaxReports 값에 도달했습니다." -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "아카이브 헤더를 읽는데 실패했습니다" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "의존성 문제 - 설정하지 않은 상태로 남겨둡니다" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "파이프 만들기가 실패했습니다" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"보고서를 작성하지 않습니다. 오류 메시지에 따르면 예전의 실패 때문에 생긴 부수" +"적인 오류입니다." -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "gzip 실행이 실패했습니다" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"보고서를 작성하지 않습니다. 오류 메시지에 따르면 디스크가 가득 찼습니다." -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "아카이브가 손상되었습니다" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "보고서를 작성하지 않습니다. 오류 메시지에 따르면 메모리가 부족합니다." -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "tar 체크섬 실패, 아카이브가 손상되었습니다" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"보고서를 작성하지 않습니다. 오류 메시지에 따르면 디스크가 가득 찼습니다." -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"보고서를 작성하지 않습니다. 오류 메시지에 따르면 dpkg 입출력 오류입니다." + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "알 수 없는 TAR 헤더 타입 %u, 멤버 %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"관리 디렉터리를 (%s) 잠글 수 없습니다. 다른 프로세스가 사용하고 있지 않습니" +"까?" + +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "관리 디렉터리를 (%s) 잠글 수 없습니다. 루트 사용자가 맞습니까?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"dpkg가 중단되었습니다. 수동으로 '%s' 명령을 실행해 문제점을 바로잡으십시오." + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "잠기지 않음" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/ku.po b/po/ku.po index 05561e35a..b95728442 100644 --- a/po/ku.po +++ b/po/ku.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-ku\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2008-05-08 12:48+0200\n" "Last-Translator: Erdal Ronahi <erdal.ronahi@gmail.com>\n" "Language-Team: ku <ubuntu-l10n-kur@lists.ubuntu.com>\n" @@ -19,3012 +19,3013 @@ msgstr "" "X-Generator: KAider 0.1\n" "Plural-Forms: nplurals=2; plural= n != 1;\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Clean of %s is not supported" +msgid "Package %s version %s has an unmet dep:\n" msgstr "" -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "Nikare %s bixwîne" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Nikarî derbasa %s bike" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Navên paketan bi giştî :" -#: apt-pkg/clean.cc:64 -#, fuzzy, c-format -msgid "Unable to stat %s." -msgstr "Nivîsandin ji bo %s ne pêkane" +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "Navên paketan bi giştî :" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Pakêtên normal:" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Pakêtên farazî yên safî:" -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Pakêta tenê ya farazî:" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Pakêtên hevbeş yên farazî:" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "%i tomar hatin nivîsîn.\n" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Winda: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Guhertoyên vekirî yên giştî:" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "" +#: cmdline/apt-cache.cc:327 +#, fuzzy +msgid "Total distinct descriptions: " +msgstr "Guhertoyên vekirî yên giştî:" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Bindestên giştî:" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " msgstr "" -#: apt-pkg/indexcopy.cc:521 -#, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Hash Sum li hev nayên" +#: cmdline/apt-cache.cc:334 +#, fuzzy +msgid "Total Desc/File relations: " +msgstr "Guhertoyên vekirî yên giştî:" -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " msgstr "" -#: apt-pkg/acquire-worker.cc:118 -#, c-format -msgid "Is the package %s installed?" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " msgstr "" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " msgstr "" -#: apt-pkg/acquire-worker.cc:455 -#, fuzzy, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Dîsketê siwar bike û piştre bişkoja derbaskirinê bitikîne" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Cihê giştî yê sist:" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Cihê giştî yê veqetandî: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "Pakêta dosya %s li derveyî demê ye." -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Pakêt nayên dîtin" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "" +#: cmdline/apt-cache.cc:1254 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "Pêwist e tu mînakekê bidî" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "Pakêt nehate dîtin %s" -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Pelgehên Pakêt:" -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" msgstr "" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" msgstr "" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Bindest" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(nehate dîtin)" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "PêşBindest" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Sazkirî: " -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Pêşniyaz dike" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Berendam: " -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Tawsiye dike" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(ne tiştek)" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Nakokî" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Destika pakêtê:" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Dikeve şunve" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Tabloya guhertoyan:" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Kevin dike" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, fuzzy, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s ji bo %s %s komkirî di %s %s de\n" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Dişkîne" +#: cmdline/apt-cache.cc:1749 +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" +#: cmdline/apt-cdrom.cc:76 +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Ji kerema xwe re navekî li vî Dîsketî bike, wekî 'Debian 2.1r1 Disk 1'" + +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Dîsketê siwar bike û piştre bişkoja derbaskirinê bitikîne" + +#: cmdline/apt-cdrom.cc:139 +#, fuzzy, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Anîna %s %s biserneket\n" + +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "girîng" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "pêwist" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standard" +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"Bikaranîn: apt-config [vebijark] ferman\n" +"apt-config, amûra xwendina dosyeya mîhengên APTê ye\n" +"\n" +"Ferman\n" +" shell - moda shell\n" +" dump - Mîhengan nîşan dide\n" +"\n" +"Vebijark:\n" +" -h Ev dosyeya alîkariyê ye.\n" +" -c=? Dosyeya mîhengan nîşan dide\n" +" -o=? Rê li ber vedike ku tu karibe li gorî dilê xwe vebijarkan diyar bike. " +"mînak -o dir::cache=/tmp\n" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opsiyonel" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Nikarî pakêta %s bibîne" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "ekstra" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Nikarî pakêta %s bibîne" -#: apt-pkg/pkgrecords.cc:38 +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Nikarî pakêta %s bibîne" + +#: cmdline/apt-get.cc:367 #, c-format -msgid "Index file type '%s' is not supported" +msgid "Picking '%s' as source package instead of '%s'\n" msgstr "" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#: cmdline/apt-get.cc:423 #, c-format -msgid "Regex compilation error - %s" +msgid "Can not find version '%s' of package '%s'" msgstr "" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Nikarî pakêta %s bibîne" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Dema şixulandina naveroka %s çewtî" +msgid "%s set to manually installed.\n" +msgstr "lê %s dê were sazkirin" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "lê %s dê were sazkirin" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" msgstr "" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Pelrêça daxistinê nayê quflekirin" + +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" msgstr "" -#: apt-pkg/pkgcachegen.cc:576 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 #, c-format -msgid "Package %s %s was not found while processing file dependencies" +msgid "Unable to find a source package for %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:1211 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Couldn't stat source package list %s" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Lîsteya pakêtan tê xwendin" +#: cmdline/apt-get.cc:791 +#, c-format +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" +#: cmdline/apt-get.cc:843 +#, c-format +msgid "Skipping already downloaded file '%s'\n" msgstr "" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "Unable to write to %s" -msgstr "Nivîsandin ji bo %s ne pêkane" +msgid "Couldn't determine free space in %s" +msgstr "Nikarî cihê vala li %s tesbît bike" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "" +#: cmdline/apt-get.cc:882 +#, c-format +msgid "You don't have enough free space in %s" +msgstr "Cihê vala li %s têre nake" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 +#, c-format +msgid "Need to get %sB/%sB of source archives.\n" msgstr "" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 +#, c-format +msgid "Need to get %sB of source archives.\n" msgstr "" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" +#: cmdline/apt-get.cc:902 +#, c-format +msgid "Fetch source %s\n" +msgstr "Çavkanîna %s bîne\n" + +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Anîna çend arşîvan biserneket." + +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" msgstr "" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" +#: cmdline/apt-get.cc:950 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" +#: cmdline/apt-get.cc:963 +#, c-format +msgid "Unpack command '%s' failed.\n" msgstr "" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:964 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "nav guherandin biserneket, %s (%s -> %s)" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Hash Sum li hev nayên" +#: cmdline/apt-get.cc:992 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Mezinahî li hev nayên" +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "" -#: apt-pkg/acquire-item.cc:173 -msgid "Invalid file format" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" msgstr "" -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-pkg/acquire-item.cc:1589 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Pakêt nehate dîtin %s" +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "" -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" +#: cmdline/apt-get.cc:1102 +#, c-format +msgid "%s has no build depends.\n" msgstr "" -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:1272 #, c-format msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" msgstr "" -#: apt-pkg/acquire-item.cc:1691 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" - -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "GPG error: %s: %s" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:1352 #, c-format msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" -#: apt-pkg/acquire-item.cc:1925 +#: cmdline/apt-get.cc:1358 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -#: apt-pkg/acquire-item.cc:1983 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." +msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Vendor block %s contains no fingerprint" +msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "Peldanka '%s' kêm e" - -#: apt-pkg/acquire.cc:91 -#, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "Peldanka '%s' kêm e" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "" -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 #, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "W: pelrêça %s nayê xwendin\n" +msgid "Changelog for %s (%s)" +msgstr "Girêdan bi %s (%s) re pêk tê" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 -#, c-format -msgid "Retrieving file %li of %li (%s remaining)" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" msgstr "" -#: apt-pkg/acquire.cc:904 -#, c-format -msgid "Retrieving file %li of %li" -msgstr "Pel tê anîn %li ji %li" - -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Anîna %s %s biserneket\n" - -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#: cmdline/apt-get.cc:1633 msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" +#: cmdline/apt-helper.cc:35 +msgid "Must specify at least one pair url/filename" msgstr "" -#: apt-pkg/policy.cc:83 -#, c-format -msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -#: apt-pkg/policy.cc:422 -#, c-format -msgid "Invalid record in the preferences file %s, no Package header" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "lê ne sazkirî ye" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "lê %s dê were sazkirin" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format -msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" -msgstr "" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "lê %s dê were sazkirin" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Nikarî pelê %s veke" +msgid "%s was already set on hold.\n" +msgstr "%s jixwe guhertoya nûtirîn e.\n" -#: apt-pkg/packagemanager.cc:583 -#, c-format -msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." -msgstr "" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s jixwe guhertoya nûtirîn e.\n" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Line %u too long in source list %s." +msgid "Waited for %s but it wasn't there" msgstr "" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "lê %s dê were sazkirin" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "%s venebû" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" +#: cmdline/apt-mark.cc:392 +msgid "" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "" +#: methods/cdrom.cc:203 +#, fuzzy, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Pakêt nehate dîtin %s" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" msgstr "" -#: apt-pkg/cdrom.cc:734 +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD-ROM a şaş" + +#: methods/cdrom.cc:249 #, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Dîsk nehate dîtin." + +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Pel nehate dîtin" + +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +#, fuzzy +msgid "Failed to stat" +msgstr "%s venebû" + +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" msgstr "" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Etîketa '%s' hatiye dîtin\n" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Têketin" + +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" msgstr "" -#: apt-pkg/cdrom.cc:817 +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Nikare navê herêmî tesbît bike" + +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +msgid "The server refused the connection and said: %s" msgstr "" -"Navê dîskê: \n" -"'%s'\n" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Lîsteyên pakêtan tên jibergirtin..." +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" msgstr "" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -#: apt-pkg/algorithms.cc:265 +#: methods/ftp.cc:280 #, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +msgid "Login script command '%s' failed, server said: %s" msgstr "" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" msgstr "" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" msgstr "" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" +#: methods/ftp.cc:350 +msgid "Server closed the connection" msgstr "" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Guhartoyên berendam" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Çewiya xwendinê" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." msgstr "" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" msgstr "" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Vekirina StateFile %s biserneket" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Çewtiya nivîsînê" -#: apt-pkg/depcache.cc:256 -#, fuzzy, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "%s ji hev nehate veçirandin" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "" -#: apt-pkg/tagfile.cc:140 -#, fuzzy, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Pakêt nehate dîtin %s" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "" -#: apt-pkg/tagfile.cc:237 -#, fuzzy, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Pakêt nehate dîtin %s" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Serneket" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." msgstr "" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" msgstr "" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "Pakêt nehate dîtin %s" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "" -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "Peywira %s nehate dîtin" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "" -#: apt-pkg/cacheset.cc:609 -#, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Nikarî pakêta %s bibîne" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Nikarî pakêta %s bibîne" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "" -#: apt-pkg/cacheset.cc:626 +#: methods/ftp.cc:802 #, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" +msgid "Unknown address family %u (AF_*)" msgstr "" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: methods/ftp.cc:811 #, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +msgid "EPRT failed, server said: %s" msgstr "" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" msgstr "" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" msgstr "" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" msgstr "" -#: apt-pkg/indexrecords.cc:78 +#: methods/ftp.cc:890 #, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "Pakêt nehate dîtin %s" +msgid "Unable to fetch file, server said '%s'" +msgstr "Danegira %s nehate vekirin: %s" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" msgstr "" -#: apt-pkg/indexrecords.cc:117 +#: methods/ftp.cc:935 #, c-format -msgid "No Hash entry in Release file %s" +msgid "Data transfer failed, server said '%s'" msgstr "" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Lêpirsîn" -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Pakêt nehate dîtin %s" +#: methods/ftp.cc:1128 +#, fuzzy +msgid "Unable to invoke " +msgstr "%s venebû" -#: apt-pkg/sourcelist.cc:127 +#: methods/connect.cc:76 #, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "" +msgid "Connecting to %s (%s)" +msgstr "Girêdan bi %s (%s) re pêk tê" -#: apt-pkg/sourcelist.cc:170 +#: methods/connect.cc:87 #, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/sourcelist.cc:173 +#: methods/connect.cc:94 #, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "" -#: apt-pkg/sourcelist.cc:184 +#: methods/connect.cc:100 #, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "" -#: apt-pkg/sourcelist.cc:190 +#: methods/connect.cc:108 #, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "" -#: apt-pkg/sourcelist.cc:193 +#: methods/connect.cc:126 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgid "Could not connect to %s:%s (%s)." msgstr "" -#: apt-pkg/sourcelist.cc:206 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "" +msgid "Connecting to %s" +msgstr "Bi %s re tê girêdan" -#: apt-pkg/sourcelist.cc:208 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "" +msgid "Could not resolve '%s'" +msgstr "Nikarî '%s' çareser bike" -#: apt-pkg/sourcelist.cc:211 +#: methods/connect.cc:205 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" +msgid "Temporary failure resolving '%s'" msgstr "" -#: apt-pkg/sourcelist.cc:217 +#: methods/connect.cc:209 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" +msgid "System error resolving '%s:%s'" msgstr "" -#: apt-pkg/sourcelist.cc:224 +#: methods/connect.cc:211 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "%s tê vekirin" +#: methods/connect.cc:258 +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Nikare bi %s re girêdan pêk bîne %s:" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." msgstr "" -#: apt-pkg/sourcelist.cc:416 -#, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:95 -#, fuzzy, c-format -msgid "Installing %s" -msgstr "%s hatine sazkirin" - -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format -msgid "Configuring %s" -msgstr "%s tê mîhengkirin" +msgid "" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "%s tê rakirin" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Di xebitandina gpgv de çewtiya nenas" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "%s bi tevahî hatine rakirin" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +#, fuzzy +msgid "The following signatures were invalid:\n" +msgstr "Ev pakêtên NÛ dê werine sazkirin:" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Peldanka '%s' kêm e" - -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "Nikarî pelê %s veke" - -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "%s tê amadekirin" - -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "%s tê derxistin" - -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Mîhengkirina %s tê amadekirin" - -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "%s hatine sazkirin" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Dema li pelî dihate nivîsîn çewtî" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "Rakirina %s tê amadekirin" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "%s hatine rakirin" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Bi tevahî rakirina %s tê amadekirin" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Dema li pelî dihate nivîsîn çewtî" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "%s bi tevahî hatine rakirin" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Hilbijartin neserketî" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: methods/http.cc:626 +msgid "Connection timed out" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Nivîsandin ji bo %s ne pêkane" +#: methods/http.cc:649 +#, fuzzy +msgid "Error writing to output file" +msgstr "Dema li dosyeya naverokê joreagahî dihate nivîsîn çewtî" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" +#: methods/server.cc:51 +msgid "Waiting for headers" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: methods/server.cc:109 +msgid "Bad header line" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 -#, c-format -msgid "Waited for %s but it wasn't there" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" msgstr "" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +#: methods/server.cc:220 +msgid "Unknown date format" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" +#: methods/server.cc:489 +msgid "Bad header data" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Girêdan pêk nehatiye" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Çewtiya hundirîn" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" -#: apt-pkg/deb/debsystem.cc:94 -#, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Pelrêça daxistinê nayê quflekirin" - -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." msgstr "" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" msgstr "" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "" - -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "%limin %lis" -msgstr "" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Anîna %sB/%sB ji arşîvan pêwist e.\n" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "%lis" -msgstr "" +msgid "Need to get %sB of archives.\n" +msgstr "Anîna %sB ji arşîvan pêwist e.\n" -#: apt-pkg/contrib/strutl.cc:1243 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "Selection %s not found" -msgstr "Hilbijartina %s nehatiye dîtin" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:190 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "Not using locking for read only lock file %s" +msgid "After this operation, %sB disk space will be freed.\n" msgstr "" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:200 #, c-format -msgid "Could not open lock file %s" -msgstr "Nikarî qufila pelê %s veke" +msgid "You don't have enough free space in %s." +msgstr "Cihê vala li %s têre nake." -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" msgstr "" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Erê, wusa bike!" + +#: apt-private/private-install.cc:222 #, c-format -msgid "List of files can't be created as '%s' is not a directory" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Betal." + +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Dixwazî bidomînî?" + +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Daxistina çend pelan biserneket" + +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" msgstr "" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "" + +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Sazkirin tê betalkirin." + +#: apt-private/private-install.cc:366 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" msgstr "" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Çewtiya nivîsînê" +#: apt-private/private-install.cc:513 +#, fuzzy +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "Ev pakêtên NÛ dê werine sazkirin:" +msgstr[1] "Ev pakêtên NÛ dê werine sazkirin:" -#: apt-pkg/contrib/fileutl.cc:913 +#: apt-private/private-install.cc:517 #, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Di girtina pelî de pirsgirêkek derket" +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "Ev pakêtên NÛ dê werine sazkirin:" +msgstr[1] "Ev pakêtên NÛ dê werine sazkirin:" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Nikarî pelê %s veke" +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "Nikarî pelê %s veke" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." msgstr "" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Çewiya xwendinê" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Paketên şikestî" -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Paketên tên pêşniyaz kirin:" + +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Paketên tên tawsiyê kirin:" + +#: apt-private/private-install.cc:825 #, c-format -msgid "write, still have %llu to write but couldn't" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Di girtina pelî de pirsgirêkek derket" +#: apt-private/private-install.cc:829 +#, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Di girtina pelî de pirsgirêkek derket" +#: apt-private/private-install.cc:841 +#, c-format +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "Di girtina pelî de pirsgirêkek derket" +#: apt-private/private-install.cc:846 +#, c-format +msgid "%s is already the newest version.\n" +msgstr "%s jixwe guhertoya nûtirîn e.\n" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" +#: apt-private/private-install.cc:894 +#, c-format +msgid "Selected version '%s' (%s) for '%s'\n" msgstr "" -#: apt-pkg/contrib/progress.cc:148 +#: apt-private/private-install.cc:899 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Çewtî!" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "" -#: apt-pkg/contrib/progress.cc:150 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Çêbû" - -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" msgstr "" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Çêbû" +#: apt-private/private-install.cc:947 +#, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -#: apt-pkg/contrib/mmap.cc:111 +#: apt-private/private-list.cc:164 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Nikarî li %s biguherîne" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Bindestî tên serrastkirin..." -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "%s venebû" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " neserketî." -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -#, fuzzy -msgid "Unable to synchronize mmap" -msgstr "%s venebû" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Nikare bindestiyan rast kirin" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" msgstr "" -#: apt-pkg/contrib/mmap.cc:322 -#, fuzzy -msgid "Failed to truncate file" -msgstr "Nivîsîna pelê %s biserneket" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Temam" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." msgstr "" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." msgstr "" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:65 +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Unable to stat the mount point %s" -msgstr "Nivîsandin ji bo %s ne pêkane" +msgid "[installed,upgradable to: %s]" +msgstr " [Sazkirî]" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Sazkirî]" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Sazkirî]" -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "" +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Sazkirî]" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-private/private-output.cc:249 #, c-format -msgid "Syntax error %s:%u: Malformed tag" +msgid "[upgradable from: %s]" msgstr "" -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-private/private-output.cc:435 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" +msgid "but %s is installed" +msgstr "lê %s sazkirî ye" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-private/private-output.cc:437 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "" +msgid "but %s is to be installed" +msgstr "lê %s dê were sazkirin" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "lê sazkirina wê ne gengaz e" -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "lê paketeke farazî ye" -#: apt-pkg/contrib/configuration.cc:900 -#, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "lê ne sazkirî ye" -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "lê dê neyê sazkirin" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "Sazkirin tê betalkirin." +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " û" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" msgstr "" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Ev pakêtên NÛ dê werine sazkirin:" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Ev pakêt dê werine RAKIRIN:" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" msgstr "" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Ev paket dê werine bilindkirin:" + +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" msgstr "" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" msgstr "" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-private/private-output.cc:668 #, c-format -msgid "Option '%s' is too long" -msgstr "Opsiyona '%s' zêde dirêj e" +msgid "%s (due to %s) " +msgstr "%s (ji ber %s)" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-private/private-output.cc:707 #, c-format -msgid "Invalid operation %s" -msgstr "" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu hatine bilindkirin, %lu nû hatine sazkirin." -#: cmdline/apt-cache.cc:149 +#: apt-private/private-output.cc:711 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "" - -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Navên paketan bi giştî :" - -#: cmdline/apt-cache.cc:279 -#, fuzzy -msgid "Total package structures: " -msgstr "Navên paketan bi giştî :" - -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Pakêtên normal:" - -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Pakêtên farazî yên safî:" - -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Pakêta tenê ya farazî:" - -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Pakêtên hevbeş yên farazî:" - -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Winda: " - -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Guhertoyên vekirî yên giştî:" +msgid "%lu reinstalled, " +msgstr "%lu ji nû ve sazkirî," -#: cmdline/apt-cache.cc:327 -#, fuzzy -msgid "Total distinct descriptions: " -msgstr "Guhertoyên vekirî yên giştî:" +#: apt-private/private-output.cc:713 +#, c-format +msgid "%lu downgraded, " +msgstr "%lu hatine nizmkirin." -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Bindestên giştî:" +#: apt-private/private-output.cc:715 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu werin rakirin û %lu neyên bilindkirin. \n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " +#: apt-private/private-output.cc:719 +#, c-format +msgid "%lu not fully installed or removed.\n" msgstr "" -#: cmdline/apt-cache.cc:334 +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 #, fuzzy -msgid "Total Desc/File relations: " -msgstr "Guhertoyên vekirî yên giştî:" +msgid "[Y/n]" +msgstr "[E/n]" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" msgstr "" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "E" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" msgstr "" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Cihê giştî yê sist:" - -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Cihê giştî yê veqetandî: " - -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Package file %s is out of sync." -msgstr "Pakêta dosya %s li derveyî demê ye." - -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Pakêt nayên dîtin" - -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "Pêwist e tu mînakekê bidî" - -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" - -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Pelgehên Pakêt:" - -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" +msgid "Regex compilation error - %s" msgstr "" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" msgstr "" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(nehate dîtin)" - -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Sazkirî: " - -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Berendam: " - -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ne tiştek)" - -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Destika pakêtê:" - -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabloya guhertoyan:" - -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 -#, fuzzy, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s ji bo %s %s komkirî di %s %s de\n" +#: apt-private/private-update.cc:90 +#, c-format +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:1749 -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#: cmdline/apt-cdrom.cc:76 -#, fuzzy -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Ji kerema xwe re navekî li vî Dîsketî bike, wekî 'Debian 2.1r1 Disk 1'" - -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Dîsketê siwar bike û piştre bişkoja derbaskirinê bitikîne" +#: apt-private/private-show.cc:156 +#, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Anîna %s %s biserneket\n" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: cmdline/apt-cdrom.cc:178 +#: apt-private/private-main.cc:32 msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" msgstr "" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" msgstr "" -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" msgstr "" -"Bikaranîn: apt-config [vebijark] ferman\n" -"apt-config, amûra xwendina dosyeya mîhengên APTê ye\n" -"\n" -"Ferman\n" -" shell - moda shell\n" -" dump - Mîhengan nîşan dide\n" -"\n" -"Vebijark:\n" -" -h Ev dosyeya alîkariyê ye.\n" -" -c=? Dosyeya mîhengan nîşan dide\n" -" -o=? Rê li ber vedike ku tu karibe li gorî dilê xwe vebijarkan diyar bike. " -"mînak -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Nikarî pakêta %s bibîne" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Nikarî pakêta %s bibîne" +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 +#, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Anîna %s %s biserneket\n" -#: cmdline/apt-get.cc:330 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Nikarî pakêta %s bibîne" +msgid "Failed to parse %s. Edit again? " +msgstr "%s ji hev nehate veçirandin" -#: cmdline/apt-get.cc:367 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" +msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" msgstr "" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "Nikarî pakêta %s bibîne" - -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, fuzzy, c-format -msgid "%s set to manually installed.\n" -msgstr "lê %s dê were sazkirin" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Bilindkirin tê hesibandin..." -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "lê %s dê were sazkirin" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Temam" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +#: apt-private/acqprogress.cc:66 +msgid "Hit " msgstr "" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Anîn:" + +#: apt-private/acqprogress.cc:121 +msgid "Ign " msgstr "" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Pelrêça daxistinê nayê quflekirin" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Çewt" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "" +#: apt-private/acqprogress.cc:146 +#, fuzzy, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "%s hatine anîn..." -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Unable to find a source package for %s" -msgstr "" +msgid " [Working]" +msgstr " [Dixebite]" -#: cmdline/apt-get.cc:786 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -#: cmdline/apt-get.cc:791 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" -msgstr "" +msgid "Unable to read %s" +msgstr "Nikare %s bixwîne" -#: cmdline/apt-get.cc:843 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "" +msgid "Unable to change to %s" +msgstr "Nikarî derbasa %s bike" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Nikarî cihê vala li %s tesbît bike" +msgid "No mirror file '%s' found " +msgstr "" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "Cihê vala li %s têre nake" +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 +#, fuzzy, c-format +msgid "Can not read mirror file '%s'" +msgstr "Nikarî pelê %s veke" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Nikarî pelê %s veke" + +#: methods/mirror.cc:445 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" +msgid "[Mirror: %s]" msgstr "" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 -#, c-format -msgid "Need to get %sB of source archives.\n" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" msgstr "" -#: cmdline/apt-get.cc:902 -#, c-format -msgid "Fetch source %s\n" -msgstr "Çavkanîna %s bîne\n" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Girêdan zû hatiye girtin" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Anîna çend arşîvan biserneket." +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." msgstr "" -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" msgstr "" -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" -#: cmdline/apt-get.cc:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" msgstr "" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" +#: dselect/install:105 +msgid "" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: dselect/update:30 +msgid "Merging available information" +msgstr "" + +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "" + +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" msgstr "" -#: cmdline/apt-get.cc:1054 -#, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +#: apt-inst/filelist.cc:459 +#, fuzzy +msgid "Failed to allocate diversion" +msgstr "%s venebû" + +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" msgstr "" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Unable to get build-dependency information for %s" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "" -#: cmdline/apt-get.cc:1101 +#: apt-inst/filelist.cc:506 #, c-format -msgid "%s has no build depends.\n" +msgid "Double add of diversion %s -> %s" msgstr "" -#: cmdline/apt-get.cc:1271 +#: apt-inst/filelist.cc:549 #, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +msgid "Duplicate conf file %s/%s" msgstr "" -#: cmdline/apt-get.cc:1289 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" +msgid "The path %s is too long" +msgstr "Rêça %s zêde dirêj e" -#: cmdline/apt-get.cc:1312 +#: apt-inst/extract.cc:132 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "Unpacking %s more than once" msgstr "" -#: cmdline/apt-get.cc:1351 +#: apt-inst/extract.cc:142 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +msgid "The directory %s is diverted" msgstr "" -#: cmdline/apt-get.cc:1357 +#: apt-inst/extract.cc:152 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +msgid "The package is trying to write to the diversion target %s/%s" msgstr "" -#: cmdline/apt-get.cc:1380 -#, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +#, fuzzy +msgid "The diversion path is too long" +msgstr "Lîsteya dirêjahiya çavkaniyê zêde dirêj e" -#: cmdline/apt-get.cc:1395 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Build-dependencies for %s could not be satisfied." +msgid "Failed to stat %s" msgstr "" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" msgstr "" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Girêdan bi %s (%s) re pêk tê" - -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" msgstr "" -#: cmdline/apt-get.cc:1632 -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" msgstr "" -#: cmdline/apt-helper.cc:35 -msgid "Must specify at least one pair url/filename" -msgstr "" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Rêç zêde dirêj e" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-inst/extract.cc:421 +#, c-format +msgid "Overwrite package match with no version for %s" msgstr "" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +#: apt-inst/extract.cc:438 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" msgstr "" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "lê ne sazkirî ye" - -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "lê %s dê were sazkirin" - -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "lê %s dê were sazkirin" - -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s jixwe guhertoya nûtirîn e.\n" - -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s jixwe guhertoya nûtirîn e.\n" - -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "lê %s dê were sazkirin" - -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-inst/extract.cc:498 #, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "%s venebû" - -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" - -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" +msgid "Unable to stat %s" +msgstr "Nivîsandin ji bo %s ne pêkane" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, c-format +msgid "Failed to write file %s" +msgstr "Nivîsîna pelê %s biserneket" -#: methods/cdrom.cc:203 -#, fuzzy, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Pakêt nehate dîtin %s" +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "Girtina pelê %s biserneket" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" msgstr "" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD-ROM a şaş" - -#: methods/cdrom.cc:249 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgid "Internal error, could not locate member %s" msgstr "" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Dîsk nehate dîtin." +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Pel nehate dîtin" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -#, fuzzy -msgid "Failed to stat" -msgstr "%s venebû" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" +#: apt-inst/contrib/arfile.cc:96 +#, c-format +msgid "Invalid archive member header %s" msgstr "" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" msgstr "" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Têketin" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Arşîv zêde kin e" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" msgstr "" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Nikare navê herêmî tesbît bike" +#: apt-inst/contrib/extracttar.cc:124 +#, fuzzy +msgid "Failed to create pipes" +msgstr "%s ji hev nehate veçirandin" -#: methods/ftp.cc:219 methods/ftp.cc:247 -#, c-format -msgid "The server refused the connection and said: %s" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Xebitandina gzip biserneket" + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" msgstr "" -#: methods/ftp.cc:225 -#, c-format -msgid "USER failed, server said: %s" +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" msgstr "" -#: methods/ftp.cc:232 +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "PASS failed, server said: %s" +msgid "Unknown TAR header type %u, member %s" msgstr "" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" msgstr "" -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" msgstr "" -#: methods/ftp.cc:306 +#: apt-pkg/init.cc:146 #, c-format -msgid "TYPE failed, server said: %s" +msgid "Packaging system '%s' is not supported" msgstr "" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" msgstr "" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "" +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "%i tomar hatin nivîsîn.\n" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" msgstr "" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Serneket" +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "Hash Sum li hev nayên" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." msgstr "" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" msgstr "" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." msgstr "" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" msgstr "" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" msgstr "" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" msgstr "" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" msgstr "" -#: methods/ftp.cc:811 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "EPRT failed, server said: %s" +msgid "This APT does not support the versioning system '%s'" msgstr "" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" msgstr "" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Bindest" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "PêşBindest" -#: methods/ftp.cc:890 -#, fuzzy, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Danegira %s nehate vekirin: %s" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Pêşniyaz dike" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Tawsiye dike" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Nakokî" + +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Dikeve şunve" + +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Kevin dike" + +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Dişkîne" + +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" msgstr "" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Lêpirsîn" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "girîng" -#: methods/ftp.cc:1128 -#, fuzzy -msgid "Unable to invoke " -msgstr "%s venebû" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "pêwist" -#: methods/connect.cc:76 -#, c-format -msgid "Connecting to %s (%s)" -msgstr "Girêdan bi %s (%s) re pêk tê" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standard" -#: methods/connect.cc:87 +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "opsiyonel" + +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "ekstra" + +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "The method driver %s could not be found." +msgstr "" -#: methods/connect.cc:94 +#: apt-pkg/acquire-worker.cc:118 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgid "Is the package %s installed?" msgstr "" -#: methods/connect.cc:100 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." +msgid "Method %s did not start correctly" msgstr "" -#: methods/connect.cc:108 +#: apt-pkg/acquire-worker.cc:455 +#, fuzzy, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Dîsketê siwar bike û piştre bişkoja derbaskirinê bitikîne" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" +msgid "Index file type '%s' is not supported" +msgstr "" + +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Guhartoyên berendam" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" msgstr "" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" msgstr "" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Connecting to %s" -msgstr "Bi %s re tê girêdan" +msgid "Failed to open StateFile %s" +msgstr "Vekirina StateFile %s biserneket" -#: methods/connect.cc:180 methods/connect.cc:199 -#, c-format -msgid "Could not resolve '%s'" -msgstr "Nikarî '%s' çareser bike" +#: apt-pkg/depcache.cc:256 +#, fuzzy, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "%s ji hev nehate veçirandin" -#: methods/connect.cc:205 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "" +msgid "rename failed, %s (%s -> %s)." +msgstr "nav guherandin biserneket, %s (%s -> %s)" -#: methods/connect.cc:209 -#, c-format -msgid "System error resolving '%s:%s'" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Hash Sum li hev nayên" + +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Mezinahî li hev nayên" + +#: apt-pkg/acquire-item.cc:173 +msgid "Invalid file format" msgstr "" -#: methods/connect.cc:211 +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -#: methods/connect.cc:258 +#: apt-pkg/acquire-item.cc:1589 #, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Nikare bi %s re girêdan pêk bîne %s:" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Pakêt nehate dîtin %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" msgstr "" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." +#: apt-pkg/acquire-item.cc:1669 +#, c-format +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1721 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Di xebitandina gpgv de çewtiya nenas" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -#, fuzzy -msgid "The following signatures were invalid:\n" -msgstr "Ev pakêtên NÛ dê werine sazkirin:" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "" -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1859 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" msgstr "" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Dema li pelî dihate nivîsîn çewtî" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" -#: methods/http.cc:525 -msgid "Error reading from server" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, c-format +msgid "Clean of %s is not supported" msgstr "" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Dema li pelî dihate nivîsîn çewtî" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Hilbijartin neserketî" +#: apt-pkg/clean.cc:64 +#, fuzzy, c-format +msgid "Unable to stat %s." +msgstr "Nivîsandin ji bo %s ne pêkane" -#: methods/http.cc:626 -msgid "Connection timed out" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" msgstr "" -#: methods/http.cc:649 -#, fuzzy -msgid "Error writing to output file" -msgstr "Dema li dosyeya naverokê joreagahî dihate nivîsîn çewtî" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Dema şixulandina naveroka %s çewtî" -#: methods/server.cc:51 -msgid "Waiting for headers" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -#: methods/server.cc:109 -msgid "Bad header line" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" msgstr "" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" msgstr "" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Lîsteya pakêtan tê xwendin" -#: methods/server.cc:489 -msgid "Bad header data" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" msgstr "" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Girêdan pêk nehatiye" - -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Çewtiya hundirîn" - -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Bilindkirin tê hesibandin..." - -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Temam" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Nivîsandin ji bo %s ne pêkane" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" msgstr "" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" msgstr "" -#: apt-private/private-list.cc:164 -#, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "Peldanka '%s' kêm e" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Bindestî tên serrastkirin..." +#: apt-pkg/acquire.cc:91 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "Peldanka '%s' kêm e" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " neserketî." +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "W: pelrêça %s nayê xwendin\n" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Nikare bindestiyan rast kirin" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Pel tê anîn %li ji %li" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Temam" - -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" msgstr "" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/policy.cc:422 +#, c-format +msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -#: apt-private/private-output.cc:234 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Sazkirî]" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "" -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [Sazkirî]" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Sazkirî]" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Nikarî pelê %s veke" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Sazkirî]" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" -#: apt-private/private-output.cc:249 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "[upgradable from: %s]" +msgid "Line %u too long in source list %s." msgstr "" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" msgstr "" -#: apt-private/private-output.cc:435 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "but %s is installed" -msgstr "lê %s sazkirî ye" +msgid "Using CD-ROM mount point %s\n" +msgstr "" -#: apt-private/private-output.cc:437 -#, c-format -msgid "but %s is to be installed" -msgstr "lê %s dê were sazkirin" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "lê sazkirina wê ne gengaz e" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "lê paketeke farazî ye" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "lê ne sazkirî ye" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "lê dê neyê sazkirin" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " û" +#: apt-pkg/cdrom.cc:734 +#, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Ev pakêtên NÛ dê werine sazkirin:" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "Etîketa '%s' hatiye dîtin\n" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Ev pakêt dê werine RAKIRIN:" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" +"Navê dîskê: \n" +"'%s'\n" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Ev paket dê werine bilindkirin:" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Lîsteyên pakêtan tên jibergirtin..." -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" msgstr "" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" msgstr "" -#: apt-private/private-output.cc:668 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "%s (due to %s) " -msgstr "%s (ji ber %s)" - -#: apt-private/private-output.cc:676 msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: apt-private/private-output.cc:707 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu hatine bilindkirin, %lu nû hatine sazkirin." - -#: apt-private/private-output.cc:711 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu ji nû ve sazkirî," - -#: apt-private/private-output.cc:713 -#, c-format -msgid "%lu downgraded, " -msgstr "%lu hatine nizmkirin." - -#: apt-private/private-output.cc:715 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu werin rakirin û %lu neyên bilindkirin. \n" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" -#: apt-private/private-output.cc:719 -#, c-format -msgid "%lu not fully installed or removed.\n" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." msgstr "" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -#, fuzzy -msgid "[Y/n]" -msgstr "[E/n]" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" msgstr "" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "E" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" msgstr "" -#: apt-private/private-update.cc:90 -#, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/tagfile.cc:140 +#, fuzzy, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Pakêt nehate dîtin %s" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +#: apt-pkg/tagfile.cc:237 +#, fuzzy, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Pakêt nehate dîtin %s" + +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "Pakêt nehate dîtin %s" + +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" msgstr "" -#: apt-private/private-show.cc:156 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +msgid "No Hash entry in Release file %s" msgstr "" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Pakêt nehate dîtin %s" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" +#: apt-pkg/sourcelist.cc:127 +#, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Anîna %sB/%sB ji arşîvan pêwist e.\n" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:184 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Anîna %sB ji arşîvan pêwist e.\n" +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" +msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -#: apt-private/private-install.cc:200 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Cihê vala li %s têre nake." +msgid "Malformed line %lu in source list %s (URI)" +msgstr "" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" msgstr "" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" msgstr "" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Erê, wusa bike!" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "" -#: apt-private/private-install.cc:222 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Betal." +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "%s tê vekirin" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Dixwazî bidomînî?" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Daxistina çend pelan biserneket" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +#: apt-pkg/sourcelist.cc:416 +#, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" msgstr "" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" msgstr "" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" msgstr "" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Sazkirin tê betalkirin." +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "Peywira %s nehate dîtin" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Nikarî pakêta %s bibîne" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Nikarî pakêta %s bibîne" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: apt-private/private-install.cc:499 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#: apt-private/private-install.cc:513 -#, fuzzy -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "Ev pakêtên NÛ dê werine sazkirin:" -msgstr[1] "Ev pakêtên NÛ dê werine sazkirin:" - -#: apt-private/private-install.cc:517 -#, fuzzy, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "Ev pakêtên NÛ dê werine sazkirin:" -msgstr[1] "Ev pakêtên NÛ dê werine sazkirin:" - -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" msgstr "" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" msgstr "" -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" msgstr "" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Paketên şikestî" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "Hilbijartina %s nehatiye dîtin" + +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" msgstr "" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Paketên tên pêşniyaz kirin:" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Nikarî qufila pelê %s veke" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Paketên tên tawsiyê kirin:" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:223 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgid "Could not get lock %s" msgstr "" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:394 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/fileutl.cc:412 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s jixwe guhertoya nûtirîn e.\n" +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:421 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgid "Sub-process %s received a segmentation fault." msgstr "" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/fileutl.cc:826 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgid "Sub-process %s received signal %u." msgstr "" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "Package '%s' is not installed, so not removed\n" +msgid "Sub-process %s returned an error code (%u)" msgstr "" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" msgstr "" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" +#: apt-pkg/contrib/fileutl.cc:913 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Di girtina pelî de pirsgirêkek derket" + +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Nikarî pelê %s veke" + +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Nikarî pelê %s veke" + +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" msgstr "" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " msgstr "" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" msgstr "" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" msgstr "" -#: apt-private/private-sources.cc:58 +#: apt-pkg/contrib/fileutl.cc:1915 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "%s ji hev nehate veçirandin" +msgid "Problem closing the file %s" +msgstr "Di girtina pelî de pirsgirêkek derket" -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1927 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Di girtina pelî de pirsgirêkek derket" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: apt-pkg/contrib/fileutl.cc:1938 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "Di girtina pelî de pirsgirêkek derket" + +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Çewtî!" + +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Çêbû" + +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Anîn:" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Çêbû" -#: apt-private/acqprogress.cc:121 -msgid "Ign " +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" msgstr "" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Çewt" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:119 #, fuzzy, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "%s hatine anîn..." +msgid "Couldn't make mmap of %llu bytes" +msgstr "Nikarî li %s biguherîne" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "%s venebû" + +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "%s venebû" + +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid " [Working]" -msgstr " [Dixebite]" +msgid "Couldn't make mmap of %lu bytes" +msgstr "" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/mmap.cc:322 +#, fuzzy +msgid "Failed to truncate file" +msgstr "Nivîsîna pelê %s biserneket" + +#: apt-pkg/contrib/mmap.cc:341 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "No mirror file '%s' found " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Nikarî pelê %s veke" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" -#: methods/mirror.cc:315 +#: apt-pkg/contrib/cdromutl.cc:65 #, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Nikarî pelê %s veke" +msgid "Unable to stat the mount point %s" +msgstr "Nivîsandin ji bo %s ne pêkane" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "" + +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "[Mirror: %s]" +msgid "Unrecognized type abbreviation: '%c'" msgstr "" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" msgstr "" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Girêdan zû hatiye girtin" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "" -#: dselect/install:33 -msgid "Bad default setting!" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" msgstr "" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" msgstr "" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" msgstr "" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" msgstr "" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -#: dselect/update:30 -msgid "Merging available information" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "Sazkirin tê betalkirin." -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." msgstr "" -#: apt-inst/filelist.cc:459 -#, fuzzy -msgid "Failed to allocate diversion" -msgstr "%s venebû" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" msgstr "" -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgid "Option %s requires an argument." msgstr "" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Double add of diversion %s -> %s" +msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Duplicate conf file %s/%s" +msgid "Option %s requires an integer argument, not '%s'" msgstr "" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "The path %s is too long" -msgstr "Rêça %s zêde dirêj e" +msgid "Option '%s' is too long" +msgstr "Opsiyona '%s' zêde dirêj e" -#: apt-inst/extract.cc:132 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Unpacking %s more than once" +msgid "Sense %s is not understood, try true or false." msgstr "" -#: apt-inst/extract.cc:142 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The directory %s is diverted" +msgid "Invalid operation %s" msgstr "" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:95 +#, fuzzy, c-format +msgid "Installing %s" +msgstr "%s hatine sazkirin" + +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "" +msgid "Configuring %s" +msgstr "%s tê mîhengkirin" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -#, fuzzy -msgid "The diversion path is too long" -msgstr "Lîsteya dirêjahiya çavkaniyê zêde dirêj e" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "%s tê rakirin" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "%s bi tevahî hatine rakirin" + +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to stat %s" +msgid "Noting disappearance of %s" msgstr "" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Failed to rename %s to %s" +msgid "Running post-installation trigger %s" msgstr "" -#: apt-inst/extract.cc:249 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "" +msgid "Directory '%s' missing" +msgstr "Peldanka '%s' kêm e" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "Nikarî pelê %s veke" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Rêç zêde dirêj e" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "%s tê amadekirin" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "" +msgid "Unpacking %s" +msgstr "%s tê derxistin" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "" +msgid "Preparing to configure %s" +msgstr "Mîhengkirina %s tê amadekirin" -#: apt-inst/extract.cc:498 -#, fuzzy, c-format -msgid "Unable to stat %s" -msgstr "Nivîsandin ji bo %s ne pêkane" +#: apt-pkg/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %s" +msgstr "%s hatine sazkirin" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to write file %s" -msgstr "Nivîsîna pelê %s biserneket" +msgid "Preparing for removal of %s" +msgstr "Rakirina %s tê amadekirin" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Failed to close file %s" -msgstr "Girtina pelê %s biserneket" +msgid "Removed %s" +msgstr "%s hatine rakirin" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "" +msgid "Preparing to completely remove %s" +msgstr "Bi tevahî rakirina %s tê amadekirin" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Internal error, could not locate member %s" +msgid "Completely removed %s" +msgstr "%s bi tevahî hatine rakirin" + +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Nivîsandin ji bo %s ne pêkane" + +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" msgstr "" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" msgstr "" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arşîv zêde kin e" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" msgstr "" -#: apt-inst/contrib/extracttar.cc:124 -#, fuzzy -msgid "Failed to create pipes" -msgstr "%s ji hev nehate veçirandin" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Xebitandina gzip biserneket" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" msgstr "" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" msgstr "" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Pelrêça daxistinê nayê quflekirin" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 #, c-format -msgid "Unknown TAR header type %u, member %s" +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" msgstr "" #: cmdline/apt-extracttemplates.cc:224 diff --git a/po/lt.po b/po/lt.po index e523d0d48..82fbc837a 100644 --- a/po/lt.po +++ b/po/lt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2008-08-02 01:47-0400\n" "Last-Translator: Gintautas Miliauskas <gintas@akl.lt>\n" "Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n" @@ -20,3043 +20,3044 @@ msgstr "" "%100<10 || n%100>=20) ? 1 : 2;\n" "X-Launchpad-Export-Date: 2008-08-02 05:04+0000\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, c-format -msgid "Clean of %s is not supported" -msgstr "" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Unable to read %s" -msgstr "Nepavyko perskaityti %s" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Paketas %s versijos numeriu %s turi netenkinamą priklausomybę:\n" -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Nepavyko pakeisti į %s" +#: cmdline/apt-cache.cc:277 +#, fuzzy +msgid "Total package names: " +msgstr "Visi paketų pavadinimai: " -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "" +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "Visi paketų pavadinimai: " -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Normalūs paketai: " -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Virtualūs paketai: " -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Pavieniai virtualūs paketai: " -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Mišrūs virtualūs paketai: " -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Trūksta: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Viso skirtingų versijų: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "" +#: cmdline/apt-cache.cc:327 +#, fuzzy +msgid "Total distinct descriptions: " +msgstr "Viso skirtingų aprašymų: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Viso priklausomybių: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Viso versijų/failų santykių yra: " -#: apt-pkg/indexcopy.cc:521 -#, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Maišos sumos nesutapimas" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Viso aprašymų/failų santykių yra: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " msgstr "" -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Patikrinkite, ar įdiegtas „dpkg-dev“ paketas.\n" - -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " msgstr "" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Įdėkite diską „%s“ į įrenginį „%s“ ir paspauskite Enter." - -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Nepavyko perskaityti arba atverti paketų sąrašo arba būklės failo." - -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " msgstr "" -"Greičiausiai norėsite paleisti „apt-get update“, kad šios problemos būtų " -"ištaisytos" - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Nepavyko perskaityti šaltinių sąrašo." -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " msgstr "" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " msgstr "" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." msgstr "" -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Paketų nerasta" -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" msgstr "" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Priklauso" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Priešpriklauso" - -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Siūlo" - -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Rekomenduoja" - -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Konfliktuoja" - -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Pakeičia" - -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Pakeičia" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "Nepavyko rasti paketo %s" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Sugadina" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Paketų failai:" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" msgstr "" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "Svarbu" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Surišti paketai:" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "privaloma" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(nerasta)" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standartinis" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Įdiegta: " -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "nebūtinas" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Kandidatas: " -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "papildomas" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(nėra)" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Paketo susiejimai: " -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" -msgstr "" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Versijų lentelė:" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" msgstr "" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Klaida apdorojant turinį %s" - -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" - -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "" - -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "" - -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." +#: cmdline/apt-cache.cc:1749 +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" msgstr "" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Prašome įdėti diską į įrenginį ir paspausti Enter" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Skaitomi paketų sąrašai" +#: cmdline/apt-cdrom.cc:139 +#, fuzzy, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Nepavyko pervadinti %s į %s" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Nepavyko įrašyti į %s" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Pakartokite šitą procesą su kitais CD savo rinkinyje." -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Parametrai nurodyti ne poromis" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" +"Panaudojimas: apt-config [parametrai] komanda\n" +"\n" +"apt-config yra paprastas įrankis nuskaityti APT konfigūracijos failui\n" +"\n" +"Komandos:\n" +" shell - Shell rėžimas\n" +" dump - Parodyti konfigūraciją\n" +"\n" +"Parinktys:\n" +" -h Šis pagalbos ekranas.\n" +" -c=? Nuskaityti pateiktą konfigūracijos failą\n" +" -o=? Nurodyti tam tikrą konfigūracijos parametrą, pvz -o dir::cache=/tmp\n" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Nepavyko rasti paketo %s" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Nepavyko rasti paketo %s" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Nepavyko rasti paketo %s" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" +#: cmdline/apt-get.cc:367 +#, c-format +msgid "Picking '%s' as source package instead of '%s'\n" msgstr "" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:423 #, c-format -msgid "rename failed, %s (%s -> %s)." +msgid "Can not find version '%s' of package '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Maišos sumos nesutapimas" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Nepavyko rasti paketo %s" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Neatitinka dydžiai" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Klaidingas veiksmas %s" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n" -#: apt-pkg/acquire-item.cc:1573 -#, c-format +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-pkg/acquire-item.cc:1589 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Nepavyko atverti DB failo %s: %s" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Vidinė klaida, problemos sprendimas kažką sugadino" -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Nepavyko užrakinti parsiuntimų aplanko" -#: apt-pkg/acquire-item.cc:1669 -#, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Būtina nurodyti bent vieną paketą, kad parsiųsti jo išeities tekstą" -#: apt-pkg/acquire-item.cc:1691 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" +msgid "Unable to find a source package for %s" +msgstr "Nepavyko surasti išeities teksto paketo, skirto %s" -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:786 #, c-format msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 -#, c-format -msgid "GPG error: %s: %s" -msgstr "GPG klaida: %s: %s" - -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:791 #, c-format msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: apt-pkg/acquire-item.cc:1925 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Praleidžiama jau parsiųsta byla „%s“\n" -#: apt-pkg/acquire-item.cc:1983 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" +msgid "Couldn't determine free space in %s" +msgstr "Nepavyko nustatyti %s laisvos vietos" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "" - -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "Trūksta aplanko „%s“" - -#: apt-pkg/acquire.cc:91 -#, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "Trūksta aplanko „%s“" - -#: apt-pkg/acquire.cc:99 -#, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "Nepavyko užrakinti sąrašo aplanko" +msgid "You don't have enough free space in %s" +msgstr "Neturite pakankamai laisvos vietos %s" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Parsiunčiamas %li failas iš %li (liko %s)" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Reikia parsiųsti %sB/%sB išeities archyvų.\n" -#: apt-pkg/acquire.cc:904 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Parsiunčiamas %li failas iš %li" +msgid "Need to get %sB of source archives.\n" +msgstr "Reikia parsiųsti %sB išeities archyvų.\n" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Nepavyko parsiųsti %s %s\n" +msgid "Fetch source %s\n" +msgstr "Parsiunčiamas archyvas %s\n" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Kai kurių indeksų failų nepavyko parsiųsti, jie buvo ignoruoti arba vietoje " -"jų panaudoti seni." +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Nepavyko gauti kai kurių arhcyvų." -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Pavyko parsiųsti tik parsiuntimo režime" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:950 #, c-format -msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" -msgstr "" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Jau išpakuotas archyvas %s praleidžiama\n" -#: apt-pkg/policy.cc:422 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "" +msgid "Unpack command '%s' failed.\n" +msgstr "Nepavyko įvykdyti išpakavimo komandos „%s“\n" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Did not understand pin type %s" -msgstr "" - -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Patikrinkite, ar įdiegtas „dpkg-dev“ paketas.\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:992 #, c-format -msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" -msgstr "" +msgid "Build command '%s' failed.\n" +msgstr "Nepavyko įvykdyti paketo kompiliavimo komandos „%s“\n" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Nepavyko atverti failo %s" +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Klaida procese-palikuonyje" + +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "Būtina nurodyti bent vieną paketą, kuriam norite įvykdyti builddeps" -#: apt-pkg/packagemanager.cc:583 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Line %u too long in source list %s." -msgstr "" - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Atjungiamas CD-ROM...\n" +msgid "Unable to get build-dependency information for %s" +msgstr "Nepavyko gauti kūrimo-priklausomybių informacijos paketui %s" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Naudojama CD-ROM prijungimo vieta %s\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Laukiama disko...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Prijungiamas CD-ROM...\n" +msgid "%s has no build depends.\n" +msgstr "" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identifikuojama... " +#: cmdline/apt-get.cc:1272 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"%s priklausomybė %s paketui negali būti patenkinama, nes paketas %s nerastas" -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-get.cc:1290 #, c-format -msgid "Stored label: %s\n" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" +"%s priklausomybė %s paketui negali būti patenkinama, nes paketas %s nerastas" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" +#: cmdline/apt-get.cc:1313 +#, c-format +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" +"Nepavyko patenkinti %s priklausomybės %s paketui: Įdiegtas paketas %s yra " +"per naujas" -#: apt-pkg/cdrom.cc:734 -#, c-format +#: cmdline/apt-get.cc:1352 +#, fuzzy, c-format msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" +"%s priklausomybė %s paketui negali būti patenkinama, nes nėra tinkamos " +"versijos %s paketo" -#: apt-pkg/cdrom.cc:744 +#: cmdline/apt-get.cc:1358 +#, fuzzy, c-format msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" +"%s priklausomybė %s paketui negali būti patenkinama, nes paketas %s nerastas" -#: apt-pkg/cdrom.cc:771 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Found label '%s'\n" -msgstr "Rasta žymė „%s“\n" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Nepavyko patenkinti %s priklausomybės %s: %s" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" +#: cmdline/apt-get.cc:1396 +#, c-format +msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" msgstr "" -"Šio disko pavadinimas: \n" -"„%s“\n" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopijuojami paketų sąrašai..." +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Jungiamasi prie %s (%s)" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Rašomas naujas šaltinių sąrašas\n" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Palaikomi moduliai:" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" +#: cmdline/apt-get.cc:1633 +msgid "" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Būtina nurodyti bent vieną paketą, kad parsiųsti jo išeities tekstą" + +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-helper.cc:66 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "" - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Konstruojamas priklausomybių medis" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Galimos versijos" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Priklausomybių generavimas" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "bet jis nėra įdiegtas" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Skaitoma būsenos informacija" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s ir taip jau yra naujausias.\n" -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s ir taip jau yra naujausias.\n" -#: apt-pkg/tagfile.cc:237 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Unable to parse package file %s (2)" +msgid "Waited for %s but it wasn't there" msgstr "" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Nebuvo rastas „%s“ leidimas paketui „%s“" - -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Nebuvo rasta „%s“ versija paketui „%s“" - -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "Nepavyko rasti paketo %s" - -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "Nepavyko rasti užduoties %s" - -#: apt-pkg/cacheset.cc:609 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Nepavyko rasti paketo %s" +msgid "%s set on hold.\n" +msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n" -#: apt-pkg/cacheset.cc:615 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Nepavyko rasti paketo %s" +msgid "Canceled hold on %s.\n" +msgstr "Nepavyko atverti %s" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format +#: cmdline/apt-mark.cc:392 msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -#: apt-pkg/cacheset.cc:655 +#: methods/cdrom.cc:203 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +msgid "Unable to read the cdrom database %s" +msgstr "Nepavyko perskaityti cdrom duomenų bazės %s" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" msgstr "" -#: apt-pkg/indexrecords.cc:78 -#, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "Nepavyko atverti DB failo %s: %s" - -#: apt-pkg/indexrecords.cc:86 -#, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "Pastaba: pažymimas %s vietoje %s\n" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Klaidingas CD-ROM" -#: apt-pkg/indexrecords.cc:117 +#: methods/cdrom.cc:249 #, c-format -msgid "No Hash entry in Release file %s" -msgstr "" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Nepavyko atjungti CD-ROM įrenginyje %s, galbūt jis vis dar naudojamas." -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Pastaba: pažymimas %s vietoje %s\n" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Diskas nerastas." -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Nepavyko atverti DB failo %s: %s" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Failas nerastas" -#: apt-pkg/sourcelist.cc:127 -#, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" msgstr "" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" msgstr "" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" msgstr "" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Jungiamasi" + +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" msgstr "" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" msgstr "" -#: apt-pkg/sourcelist.cc:193 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgid "The server refused the connection and said: %s" msgstr "" -#: apt-pkg/sourcelist.cc:206 +#: methods/ftp.cc:225 #, c-format -msgid "Malformed line %lu in source list %s (URI)" +msgid "USER failed, server said: %s" msgstr "" -#: apt-pkg/sourcelist.cc:208 +#: methods/ftp.cc:232 #, c-format -msgid "Malformed line %lu in source list %s (dist)" +msgid "PASS failed, server said: %s" msgstr "" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -#: apt-pkg/sourcelist.cc:217 +#: methods/ftp.cc:280 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" +msgid "Login script command '%s' failed, server said: %s" msgstr "" -#: apt-pkg/sourcelist.cc:224 +#: methods/ftp.cc:306 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" +msgid "TYPE failed, server said: %s" msgstr "" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Atveriama %s" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Jungiamasi per ilgai" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" +#: methods/ftp.cc:350 +msgid "Server closed the connection" msgstr "" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "" - -#: apt-pkg/sourcelist.cc:416 -#, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:95 -#, fuzzy, c-format -msgid "Installing %s" -msgstr "Įdiegta %s" - -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Konfigūruojamas %s" - -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Šalinamas %s" - -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "Visiškai pašalintas %s" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Skaitymo klaida" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" msgstr "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Trūksta aplanko „%s“" - -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "Nepavyko atverti failo %s" - -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "Ruošiamas %s" - -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Išpakuojamas %s" - -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Ruošiamasi konfigūruoti %s" - -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "Įdiegta %s" - -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "Ruošiamasi %s pašalinimui" - -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "Pašalintas %s" - -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Ruošiamasi visiškai pašalinti %s" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Rašymo klaida" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "Visiškai pašalintas %s" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Nepavyko įrašyti į %s" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Nepavyko" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 -#, c-format -msgid "Waited for %s but it wasn't there" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" msgstr "" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" msgstr "" -#: apt-pkg/deb/debsystem.cc:91 +#: methods/ftp.cc:890 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" +msgid "Unable to fetch file, server said '%s'" +msgstr "Nepavyko atsiųsti failo, serveris atsakė „%s“" -#: apt-pkg/deb/debsystem.cc:94 -#, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Nepavyko užrakinti sąrašo aplanko" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: methods/ftp.cc:935 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgid "Data transfer failed, server said '%s'" msgstr "" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Užklausti" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " msgstr "" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 +#: methods/connect.cc:76 #, c-format -msgid "%lid %lih %limin %lis" -msgstr "" +msgid "Connecting to %s (%s)" +msgstr "Jungiamasi prie %s (%s)" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: methods/connect.cc:87 #, c-format -msgid "%lih %limin %lis" -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: methods/connect.cc:94 #, c-format -msgid "%limin %lis" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: methods/connect.cc:100 #, c-format -msgid "%lis" +msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "" -#: apt-pkg/contrib/strutl.cc:1243 +#: methods/connect.cc:108 #, c-format -msgid "Selection %s not found" -msgstr "" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Nepavyko prisijungti prie %s:%s (%s), prisijungimas per ilgai užtruko" -#: apt-pkg/contrib/fileutl.cc:190 +#: methods/connect.cc:126 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "" +msgid "Could not connect to %s:%s (%s)." +msgstr "Nepavyko prisijungti prie %s:%s (%s)." -#: apt-pkg/contrib/fileutl.cc:195 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Could not open lock file %s" -msgstr "Nepavyko atverti rakinimo failo %s" +msgid "Connecting to %s" +msgstr "Jungiamasi prie %s" -#: apt-pkg/contrib/fileutl.cc:218 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "" +msgid "Could not resolve '%s'" +msgstr "Nepavyko surasti vardo „%s“" -#: apt-pkg/contrib/fileutl.cc:223 +#: methods/connect.cc:205 #, c-format -msgid "Could not get lock %s" -msgstr "Nepavyko rezervuoti rakinimo failo %s" +msgid "Temporary failure resolving '%s'" +msgstr "Laikinas sutrikimas ieškant vardo „%s“" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Laikinas sutrikimas ieškant vardo „%s“" + +#: methods/connect.cc:211 #, c-format -msgid "List of files can't be created as '%s' is not a directory" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" - -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#: methods/connect.cc:258 +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Nepavyko prisijungti prie %s %s:" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: methods/gpgv.cc:168 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Procesas %s gavo segmentavimo klaidą" - -#: apt-pkg/contrib/fileutl.cc:826 -#, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "Procesas %s gavo segmentavimo klaidą" - -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Procesas %s grąžino klaidos kodą (%u)" - -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Procesas %s netikėtai išėjo" - -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Rašymo klaida" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:913 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Klaida užveriant failą" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1101 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format -msgid "Could not open file %s" -msgstr "Nepavyko atverti failo %s" +msgid "" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "Nepavyko atverti failo %s" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Nežinoma klaida kviečiant gpgv" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Nepavyko sukurti subproceso IPC" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Šie parašai buvo nevalidūs:\n" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Nepavyko paleisti suspaudėjo " +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "Šių parašų nebuvo galima patikrinti, nes nėra viešojo rakto:\n" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Skaitymo klaida" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" +#: methods/http.cc:509 +msgid "Error writing to the file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Klaida užveriant failą" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Klaida sinchronizuojant failą" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Klaida bandant rašyti į failą" -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "Klaida užveriant failą" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Klaida sinchronizuojant failą" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Prisijungimo laiko limitas baigėsi" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Klaida!" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Baigta" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Laukiama antraščių" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +#: methods/server.cc:109 +msgid "Bad header line" msgstr "" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Baigta" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" msgstr "" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" msgstr "" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" msgstr "" -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "Nepavyko atverti %s" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -#, fuzzy -msgid "Unable to synchronize mmap" -msgstr "Nepavyko pakeisti į %s" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" +#: methods/server.cc:489 +msgid "Bad header data" msgstr "" -#: apt-pkg/contrib/mmap.cc:322 -#, fuzzy -msgid "Failed to truncate file" -msgstr "Nepavyko patikrinti %s" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Prisijungti nepavyko" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" -msgstr "" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Vidinė klaida" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Reikia pašalinti paketus, tačiau šalinimas išjungtas." -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" msgstr "" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "Keista... Dydis neatitinka, Parašykite laišką apt@packages.debian.org" -#: apt-pkg/contrib/configuration.cc:633 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Opening configuration file %s" -msgstr "" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Reikia parsiųsti %sB/%sB archyvų.\n" -#: apt-pkg/contrib/configuration.cc:801 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "" +msgid "Need to get %sB of archives.\n" +msgstr "Reikia parsiųsti %sB archyvų.\n" -#: apt-pkg/contrib/configuration.cc:820 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Po šios operacijos bus naudojama %sB papildomos disko vietos.\n" -#: apt-pkg/contrib/configuration.cc:837 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Po šios operacijos bus atlaisvinta %sB disko vietos.\n" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-private/private-install.cc:200 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" +msgid "You don't have enough free space in %s." +msgstr "%s nėra pakankamai laisvos vietos." -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Atsirado problemų ir -y buvo panaudotas be --force-yes" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Taip, daryk kaip liepiu!" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-private/private-install.cc:222 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"Bandote atlikti tikėtinai pavojingą veiksmą.\n" +"Jei norite tęsti, įveskite frazę „%s“\n" +" ?] " -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Nutraukti." -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "Diegimas nutraukiamas." +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Ar norite tęsti?" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Nepavyko parsiųsti kai kurių failų" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"Nepavyko parsiųsti kai kurių archyvų, pabandykite paleisti „apt-get update“ " +"arba pabandykite su parametru --fix-missing?" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing bei laikmenų apkeitimas nepalaikomas" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "Parametrui %s reikia argumento." +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Nepavyko pataisyti dingusių paketų." -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Diegimas nutraukiamas." -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "" +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "Klaidingas veiksmas %s" +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" -#: cmdline/apt-cache.cc:149 -#, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Paketas %s versijos numeriu %s turi netenkinamą priklausomybę:\n" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Ši informacija gali padėti išspręsti šią situaciją:" -#: cmdline/apt-cache.cc:277 -#, fuzzy -msgid "Total package names: " -msgstr "Visi paketų pavadinimai: " +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "" -#: cmdline/apt-cache.cc:279 +#: apt-private/private-install.cc:513 #, fuzzy -msgid "Total package structures: " -msgstr "Visi paketų pavadinimai: " - -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Normalūs paketai: " +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:" +msgstr[1] "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Virtualūs paketai: " +#: apt-private/private-install.cc:517 +#, fuzzy, c-format +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:" +msgstr[1] "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Pavieniai virtualūs paketai: " +#: apt-private/private-install.cc:519 +#, fuzzy +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Norėdami juos pašalinti, paleiskite „apt-get autoremove“" +msgstr[1] "Norėdami juos pašalinti, paleiskite „apt-get autoremove“" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Mišrūs virtualūs paketai: " +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Jūs galite norėti paleisti 'apt-get -f install\" klaidų taisymui:" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Trūksta: " +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"Nepatenkintos priklausomybės. Pabandykite įvykdyti 'apt-get -f install' be " +"nurodytų paketų (arba nurodykite išeitį)." -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Viso skirtingų versijų: " +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"Nepavyko įdiegti kai kurių paketų. Tai gali reikšti, kad jūs\n" +"paprašėte neįmanomo dalyko, arba, jei jūs naudojate nestabilų\n" +"leidimą, kuomet kai kurie paketai dar nebuvo sukurti arba buvo\n" +"pašalinti iš \"Incoming\" aplanko." -#: cmdline/apt-cache.cc:327 -#, fuzzy -msgid "Total distinct descriptions: " -msgstr "Viso skirtingų aprašymų: " +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Sugadinti paketai" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Viso priklausomybių: " +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Bus įdiegti šie papildomi paketai:" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Viso versijų/failų santykių yra: " +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Siūlomi paketai:" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Viso aprašymų/failų santykių yra: " +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Rekomenduojami paketai:" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " +#: apt-private/private-install.cc:825 +#, c-format +msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" +"Praleidžiamas %s, nes jis jau yra įdiegtas ir atnaujinimas nėra nurodytas.\n" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " +#: apt-private/private-install.cc:829 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" +"Praleidžiamas %s, nes jis jau yra įdiegtas ir atnaujinimas nėra nurodytas.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "" +#: apt-private/private-install.cc:841 +#, c-format +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Pakartotinas %s įdiegimas neįmanomas, jo nepavyksta parsiųsti.\n" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "" +#: apt-private/private-install.cc:846 +#, c-format +msgid "%s is already the newest version.\n" +msgstr "%s ir taip jau yra naujausias.\n" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " +#: apt-private/private-install.cc:894 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Pažymėta versija %s (%s) paketui %s\n" + +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Pažymėta versija %s (%s) paketui %s\n" + +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "Paketas %s nėra įdiegtas, todėl nebuvo pašalintas\n" + +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Paketas %s nėra įdiegtas, todėl nebuvo pašalintas\n" + +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 +#: apt-private/private-list.cc:164 #, c-format -msgid "Package file %s is out of sync." -msgstr "" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Paketų nerasta" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Taisomos priklausomybės..." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " nepavyko." -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Nepavyko patenkinti priklausomybių" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Paketų failai:" +#: apt-private/private-cachefile.cc:102 +#, fuzzy +msgid "Unable to minimize the upgrade set" +msgstr "Nepavyko minimizuoti atnaujinimo rinkinio" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Įvykdyta" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Surišti paketai:" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Įvykdykite „apt-get -f install“, jei norite ištaisyti šias klaidas." -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(nerasta)" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Nepatenkintos priklausomybės. Bandykit naudoti -f." -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Įdiegta: " +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidatas: " +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Įdiegtas]" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(nėra)" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Įdiegtas]" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Paketo susiejimai: " +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Versijų lentelė:" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Įdiegtas]" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Įdiegtas]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "%s %s for %s compiled on %s %s\n" +msgid "[upgradable from: %s]" msgstr "" -#: cmdline/apt-cache.cc:1749 -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "" +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "bet %s yra įdiegtas" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Prašome įdėti diską į įrenginį ir paspausti Enter" +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "bet %s bus įdiegtas" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Nepavyko pervadinti %s į %s" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "tačiau jis negali būti įdiegtas" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "bet tai yra virtualus paketas" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Pakartokite šitą procesą su kitais CD savo rinkinyje." +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "bet jis nėra įdiegtas" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Parametrai nurodyti ne poromis" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "bet jis nebus įdiegtas" -#: cmdline/apt-config.cc:89 +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " arba" + +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Šie paketai turi neįdiegtų priklausomybių:" + +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Bus įdiegti šie NAUJI paketai:" + +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Bus PAŠALINTI šie paketai:" + +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Šių paketų atnaujinimas sulaikomas:" + +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Bus atnaujinti šie paketai:" + +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Bus PAKEISTI SENESNIAIS šie paketai:" + +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Bus pakeisti šie sulaikyti paketai:" + +#: apt-private/private-output.cc:668 +#, c-format +msgid "%s (due to %s) " +msgstr "%s (dėl %s) " + +#: apt-private/private-output.cc:676 msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Panaudojimas: apt-config [parametrai] komanda\n" -"\n" -"apt-config yra paprastas įrankis nuskaityti APT konfigūracijos failui\n" -"\n" -"Komandos:\n" -" shell - Shell rėžimas\n" -" dump - Parodyti konfigūraciją\n" -"\n" -"Parinktys:\n" -" -h Šis pagalbos ekranas.\n" -" -c=? Nuskaityti pateiktą konfigūracijos failą\n" -" -o=? Nurodyti tam tikrą konfigūracijos parametrą, pvz -o dir::cache=/tmp\n" +"Įspėjimas: Šie būtini paketai bus pašalinti.\n" +"Tai NETURĖTŲ būti daroma, kol tiksliai nežinote ką darote!" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Nepavyko rasti paketo %s" +#: apt-private/private-output.cc:707 +#, c-format +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu atnaujinti, %lu naujai įdiegti, " -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Nepavyko rasti paketo %s" +#: apt-private/private-output.cc:711 +#, c-format +msgid "%lu reinstalled, " +msgstr "%lu įdiegti iš naujo, " -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Nepavyko rasti paketo %s" +#: apt-private/private-output.cc:713 +#, c-format +msgid "%lu downgraded, " +msgstr "%lu pasendinti, " -#: cmdline/apt-get.cc:367 +#: apt-private/private-output.cc:715 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu bus pašalinta ir %lu neatnaujinta.\n" + +#: apt-private/private-output.cc:719 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "%lu nepilnai įdiegti ar pašalinti.\n" + +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[T/n]" + +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[t/N]" + +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "T" + +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" msgstr "" -#: cmdline/apt-get.cc:423 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Can not find version '%s' of package '%s'" +msgid "Regex compilation error - %s" msgstr "" -#: cmdline/apt-get.cc:454 +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Atnaujinimo komandai argumentų nereikia" + +#: apt-private/private-update.cc:90 #, c-format -msgid "Couldn't find package %s" -msgstr "Nepavyko rasti paketo %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" + +#: apt-private/private-show.cc:156 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +#: apt-private/private-main.cc:32 msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Vidinė klaida, problemos sprendimas kažką sugadino" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "DĖMESIO: Šie paketai negali būti autentifikuoti!" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Nepavyko užrakinti parsiuntimų aplanko" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Būtina nurodyti bent vieną paketą, kad parsiųsti jo išeities tekstą" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Nepavyko autentikuoti kai kurių paketų" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Įdiegti šiuos paketus be patvirtinimo?" + +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Nepavyko surasti išeities teksto paketo, skirto %s" +msgid "Failed to fetch %s %s\n" +msgstr "Nepavyko parsiųsti %s %s\n" -#: cmdline/apt-get.cc:786 +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Nepavyko pervadinti %s į %s" + +#: apt-private/private-sources.cc:70 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -#: cmdline/apt-get.cc:791 -#, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" msgstr "" -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Praleidžiama jau parsiųsta byla „%s“\n" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Skaičiuojami atnaujinimai... " + +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Įvykdyta" + +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Imamas " + +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Gauti:" + +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ignoruotas " + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Klaida " -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Nepavyko nustatyti %s laisvos vietos" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Parsiųsta %sB iš %s (%sB/s)\n" -#: cmdline/apt-get.cc:882 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Neturite pakankamai laisvos vietos %s" +msgid " [Working]" +msgstr " [Vykdoma]" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Reikia parsiųsti %sB/%sB išeities archyvų.\n" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Laikmenos keitimas: įdėkite diską, pažymėtą\n" +" „%s“,\n" +"į įrenginį „%s“ ir paspauskite enter\n" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Reikia parsiųsti %sB išeities archyvų.\n" +msgid "Unable to read %s" +msgstr "Nepavyko perskaityti %s" -#: cmdline/apt-get.cc:902 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "Fetch source %s\n" -msgstr "Parsiunčiamas archyvas %s\n" +msgid "Unable to change to %s" +msgstr "Nepavyko pakeisti į %s" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Nepavyko gauti kai kurių arhcyvų." +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 +#, c-format +msgid "No mirror file '%s' found " +msgstr "" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Pavyko parsiųsti tik parsiuntimo režime" +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 +#, fuzzy, c-format +msgid "Can not read mirror file '%s'" +msgstr "Nepavyko atverti failo %s" -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Jau išpakuotas archyvas %s praleidžiama\n" +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Nepavyko atverti failo %s" -#: cmdline/apt-get.cc:962 +#: methods/mirror.cc:445 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Nepavyko įvykdyti išpakavimo komandos „%s“\n" +msgid "[Mirror: %s]" +msgstr "" -#: cmdline/apt-get.cc:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Patikrinkite, ar įdiegtas „dpkg-dev“ paketas.\n" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Nepavyko subprocesui sukurti IPC gijos" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "Nepavyko įvykdyti paketo kompiliavimo komandos „%s“\n" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Klaida procese-palikuonyje" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Blogi standartiniai nustatymai!" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "Būtina nurodyti bent vieną paketą, kuriam norite įvykdyti builddeps" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Jei norite tęsti, spauskite Enter." -#: cmdline/apt-get.cc:1054 -#, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" msgstr "" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Nepavyko gauti kūrimo-priklausomybių informacijos paketui %s" +#: dselect/install:102 +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Išpakuojant įvyko klaidų. Bandysiu konfigūruoti" -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "" +#: dselect/install:103 +#, fuzzy +msgid "will be configured. This may result in duplicate errors" +msgstr "paketus, kurie buvo įdiegti. Tai gali sukelti pasikartojančias klaidas" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -"%s priklausomybė %s paketui negali būti patenkinama, nes paketas %s nerastas" +"arba klaidas, atsiradusias dėl trūkstamų priklausomybių. Viskas gerai, tik " +"klaidos," -#: cmdline/apt-get.cc:1289 -#, c-format +#: dselect/install:105 msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"%s priklausomybė %s paketui negali būti patenkinama, nes paketas %s nerastas" +"esančios aukščiau šios žinutės, yra svarbios. Prašome jas ištaisyti ir vėl " +"paleisti [I]nstall" -#: cmdline/apt-get.cc:1312 -#, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Sujungiama turima informaija" + +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" msgstr "" -"Nepavyko patenkinti %s priklausomybės %s paketui: Įdiegtas paketas %s yra " -"per naujas" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" msgstr "" -"%s priklausomybė %s paketui negali būti patenkinama, nes nėra tinkamos " -"versijos %s paketo" -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" msgstr "" -"%s priklausomybė %s paketui negali būti patenkinama, nes paketas %s nerastas" -#: cmdline/apt-get.cc:1380 -#, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Nepavyko patenkinti %s priklausomybės %s: %s" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "" -#: cmdline/apt-get.cc:1395 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Build-dependencies for %s could not be satisfied." +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" msgstr "" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Jungiamasi prie %s (%s)" - -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Palaikomi moduliai:" - -#: cmdline/apt-get.cc:1632 -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" msgstr "" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Būtina nurodyti bent vieną paketą, kad parsiųsti jo išeities tekstą" +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" +msgstr "Kelias %s per ilgas" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" msgstr "" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" msgstr "" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "bet jis nėra įdiegtas" +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "" -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n" +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 +#, c-format +msgid "Failed to stat %s" +msgstr "Nepavyko patikrinti %s" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s ir taip jau yra naujausias.\n" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Nepavyko pervadinti %s į %s" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s ir taip jau yra naujausias.\n" +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Nepavyko atverti %s" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Kelias per ilgas" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" +#: apt-inst/extract.cc:421 +#, c-format +msgid "Overwrite package match with no version for %s" msgstr "" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." +#: apt-inst/extract.cc:438 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" msgstr "" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +#: apt-inst/extract.cc:498 +#, c-format +msgid "Unable to stat %s" msgstr "" -#: methods/cdrom.cc:203 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Nepavyko perskaityti cdrom duomenų bazės %s" +msgid "Failed to write file %s" +msgstr "" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" msgstr "" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Klaidingas CD-ROM" +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "" -#: methods/cdrom.cc:249 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Nepavyko atjungti CD-ROM įrenginyje %s, galbūt jis vis dar naudojamas." +msgid "Internal error, could not locate member %s" +msgstr "Vidinė klaida, nepavyko aptikti nario %s" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Diskas nerastas." +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Failas nerastas" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" msgstr "" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" +#: apt-inst/contrib/arfile.cc:96 +#, c-format +msgid "Invalid archive member header %s" msgstr "" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" msgstr "" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Jungiamasi" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Archyvas per trumpas" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Nepavyko perskaityti archyvo antraščių" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" msgstr "" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " msgstr "" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Sugadintas archyvas" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar kontrolinė suma klaidinga, archyvas sugadintas" + +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "The server refused the connection and said: %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Nežinomas TAR antraštės tipas %u. narys %s" + +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" msgstr "" -#: methods/ftp.cc:225 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" + +#: apt-pkg/init.cc:146 #, c-format -msgid "USER failed, server said: %s" +msgid "Packaging system '%s' is not supported" msgstr "" -#: methods/ftp.cc:232 +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "" + +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "PASS failed, server said: %s" +msgid "Wrote %i records.\n" msgstr "" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: methods/ftp.cc:280 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "Login script command '%s' failed, server said: %s" +msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: methods/ftp.cc:306 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 #, c-format -msgid "TYPE failed, server said: %s" +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" + +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "" + +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "Maišos sumos nesutapimas" + +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Nepavyko perskaityti arba atverti paketų sąrašo arba būklės failo." + +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" msgstr "" +"Greičiausiai norėsite paleisti „apt-get update“, kad šios problemos būtų " +"ištaisytos" + +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Nepavyko perskaityti šaltinių sąrašo." -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Jungiamasi per ilgai" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "" -#: methods/ftp.cc:350 -msgid "Server closed the connection" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" msgstr "" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" msgstr "" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" msgstr "" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" msgstr "" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" msgstr "" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Nepavyko" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Priklauso" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Priešpriklauso" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Siūlo" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Rekomenduoja" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Konfliktuoja" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Pakeičia" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Pakeičia" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Sugadina" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" msgstr "" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "Svarbu" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "privaloma" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standartinis" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Nepavyko atsiųsti failo, serveris atsakė „%s“" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "nebūtinas" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "papildomas" -#: methods/ftp.cc:935 +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Data transfer failed, server said '%s'" +msgid "The method driver %s could not be found." msgstr "" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Užklausti" - -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Patikrinkite, ar įdiegtas „dpkg-dev“ paketas.\n" -#: methods/connect.cc:76 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Jungiamasi prie %s (%s)" +msgid "Method %s did not start correctly" +msgstr "" -#: methods/connect.cc:87 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Įdėkite diską „%s“ į įrenginį „%s“ ir paspauskite Enter." -#: methods/connect.cc:94 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgid "Index file type '%s' is not supported" msgstr "" -#: methods/connect.cc:100 -#, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Konstruojamas priklausomybių medis" -#: methods/connect.cc:108 -#, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Nepavyko prisijungti prie %s:%s (%s), prisijungimas per ilgai užtruko" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Galimos versijos" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Nepavyko prisijungti prie %s:%s (%s)." +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Priklausomybių generavimas" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Skaitoma būsenos informacija" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Connecting to %s" -msgstr "Jungiamasi prie %s" +msgid "Failed to open StateFile %s" +msgstr "" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Could not resolve '%s'" -msgstr "Nepavyko surasti vardo „%s“" +msgid "Failed to write temporary StateFile %s" +msgstr "" -#: methods/connect.cc:205 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Laikinas sutrikimas ieškant vardo „%s“" +msgid "rename failed, %s (%s -> %s)." +msgstr "" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Laikinas sutrikimas ieškant vardo „%s“" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Maišos sumos nesutapimas" -#: methods/connect.cc:211 +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Neatitinka dydžiai" + +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Klaidingas veiksmas %s" + +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -#: methods/connect.cc:258 +#: apt-pkg/acquire-item.cc:1589 #, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Nepavyko prisijungti prie %s %s:" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Nepavyko atverti DB failo %s: %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" msgstr "" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." +#: apt-pkg/acquire-item.cc:1669 +#, c-format +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1721 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Nežinoma klaida kviečiant gpgv" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Šie parašai buvo nevalidūs:\n" - -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "Šių parašų nebuvo galima patikrinti, nes nėra viešojo rakto:\n" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "GPG klaida: %s: %s" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/acquire-item.cc:1859 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" -#: methods/http.cc:525 -msgid "Error reading from server" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, c-format +msgid "Clean of %s is not supported" msgstr "" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Klaida bandant rašyti į failą" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "" -#: methods/http.cc:621 -msgid "Select failed" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" msgstr "" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Prisijungimo laiko limitas baigėsi" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Klaida apdorojant turinį %s" -#: methods/http.cc:649 -msgid "Error writing to output file" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Laukiama antraščių" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "" -#: methods/server.cc:109 -msgid "Bad header line" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" msgstr "" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" msgstr "" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Skaitomi paketų sąrašai" + +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" msgstr "" -#: methods/server.cc:220 -msgid "Unknown date format" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Nepavyko įrašyti į %s" + +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" msgstr "" -#: methods/server.cc:489 -msgid "Bad header data" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" msgstr "" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Prisijungti nepavyko" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "Trūksta aplanko „%s“" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Vidinė klaida" +#: apt-pkg/acquire.cc:91 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "Trūksta aplanko „%s“" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Skaičiuojami atnaujinimai... " +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "Nepavyko užrakinti sąrašo aplanko" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Įvykdyta" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Parsiunčiamas %li failas iš %li (liko %s)" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Parsiunčiamas %li failas iš %li" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" +"Kai kurių indeksų failų nepavyko parsiųsti, jie buvo ignoruoti arba vietoje " +"jų panaudoti seni." -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/policy.cc:83 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Taisomos priklausomybės..." +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " nepavyko." +#: apt-pkg/policy.cc:422 +#, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Nepavyko patenkinti priklausomybių" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "" -#: apt-private/private-cachefile.cc:102 -#, fuzzy -msgid "Unable to minimize the upgrade set" -msgstr "Nepavyko minimizuoti atnaujinimo rinkinio" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Įvykdyta" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Įvykdykite „apt-get -f install“, jei norite ištaisyti šias klaidas." +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Nepavyko atverti failo %s" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Nepatenkintos priklausomybės. Bandykit naudoti -f." +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." msgstr "" -#: apt-private/private-output.cc:234 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Įdiegtas]" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Atjungiamas CD-ROM...\n" -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [Įdiegtas]" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "Naudojama CD-ROM prijungimo vieta %s\n" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Laukiama disko...\n" -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Įdiegtas]" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Prijungiamas CD-ROM...\n" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Įdiegtas]" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identifikuojama... " -#: apt-private/private-output.cc:249 +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "[upgradable from: %s]" +msgid "Stored label: %s\n" msgstr "" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" msgstr "" -#: apt-private/private-output.cc:435 +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "but %s is installed" -msgstr "bet %s yra įdiegtas" +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" -#: apt-private/private-output.cc:437 -#, c-format -msgid "but %s is to be installed" -msgstr "bet %s bus įdiegtas" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "tačiau jis negali būti įdiegtas" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "Rasta žymė „%s“\n" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "bet tai yra virtualus paketas" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "bet jis nėra įdiegtas" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Šio disko pavadinimas: \n" +"„%s“\n" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "bet jis nebus įdiegtas" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopijuojami paketų sąrašai..." -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " arba" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Rašomas naujas šaltinių sąrašas\n" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Šie paketai turi neįdiegtų priklausomybių:" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Bus įdiegti šie NAUJI paketai:" +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Bus PAŠALINTI šie paketai:" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Šių paketų atnaujinimas sulaikomas:" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Bus atnaujinti šie paketai:" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Bus PAKEISTI SENESNIAIS šie paketai:" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Bus pakeisti šie sulaikyti paketai:" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: apt-private/private-output.cc:668 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (dėl %s) " +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" msgstr "" -"Įspėjimas: Šie būtini paketai bus pašalinti.\n" -"Tai NETURĖTŲ būti daroma, kol tiksliai nežinote ką darote!" -#: apt-private/private-output.cc:707 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu atnaujinti, %lu naujai įdiegti, " +msgid "Unable to parse package file %s (1)" +msgstr "" -#: apt-private/private-output.cc:711 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu įdiegti iš naujo, " +msgid "Unable to parse package file %s (2)" +msgstr "" -#: apt-private/private-output.cc:713 -#, c-format -msgid "%lu downgraded, " -msgstr "%lu pasendinti, " +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "Nepavyko atverti DB failo %s: %s" -#: apt-private/private-output.cc:715 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu bus pašalinta ir %lu neatnaujinta.\n" +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "Pastaba: pažymimas %s vietoje %s\n" -#: apt-private/private-output.cc:719 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu nepilnai įdiegti ar pašalinti.\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[T/n]" +msgid "No Hash entry in Release file %s" +msgstr "" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[t/N]" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Pastaba: pažymimas %s vietoje %s\n" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "T" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Nepavyko atverti DB failo %s: %s" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" +#: apt-pkg/sourcelist.cc:127 +#, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Atnaujinimo komandai argumentų nereikia" - -#: apt-private/private-update.cc:90 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" -#: apt-private/private-show.cc:156 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Reikia pašalinti paketus, tačiau šalinimas išjungtas." - -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "Keista... Dydis neatitinka, Parašykite laišką apt@packages.debian.org" - -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Reikia parsiųsti %sB/%sB archyvų.\n" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Reikia parsiųsti %sB archyvų.\n" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Po šios operacijos bus naudojama %sB papildomos disko vietos.\n" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "" + +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Po šios operacijos bus atlaisvinta %sB disko vietos.\n" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "" -#: apt-private/private-install.cc:200 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "You don't have enough free space in %s." -msgstr "%s nėra pakankamai laisvos vietos." +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Atsirado problemų ir -y buvo panaudotas be --force-yes" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Atveriama %s" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" msgstr "" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Taip, daryk kaip liepiu!" - -#: apt-private/private-install.cc:222 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +msgid "Type '%s' is not known on line %u in source list %s" msgstr "" -"Bandote atlikti tikėtinai pavojingą veiksmą.\n" -"Jei norite tęsti, įveskite frazę „%s“\n" -" ?] " -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Nutraukti." +#: apt-pkg/sourcelist.cc:416 +#, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Ar norite tęsti?" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Nebuvo rastas „%s“ leidimas paketui „%s“" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Nepavyko parsiųsti kai kurių failų" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Nebuvo rasta „%s“ versija paketui „%s“" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Nepavyko parsiųsti kai kurių archyvų, pabandykite paleisti „apt-get update“ " -"arba pabandykite su parametru --fix-missing?" +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "Nepavyko rasti užduoties %s" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing bei laikmenų apkeitimas nepalaikomas" +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Nepavyko rasti paketo %s" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Nepavyko pataisyti dingusių paketų." +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Nepavyko rasti paketo %s" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Diegimas nutraukiamas." +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" -#: apt-private/private-install.cc:366 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "Ši informacija gali padėti išspręsti šią situaciją:" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" msgstr "" -#: apt-private/private-install.cc:513 -#, fuzzy -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:" -msgstr[1] "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "" -#: apt-private/private-install.cc:517 -#, fuzzy, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:" -msgstr[1] "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "" -#: apt-private/private-install.cc:519 -#, fuzzy -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Norėdami juos pašalinti, paleiskite „apt-get autoremove“" -msgstr[1] "Norėdami juos pašalinti, paleiskite „apt-get autoremove“" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Jūs galite norėti paleisti 'apt-get -f install\" klaidų taisymui:" +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" msgstr "" -"Nepatenkintos priklausomybės. Pabandykite įvykdyti 'apt-get -f install' be " -"nurodytų paketų (arba nurodykite išeitį)." -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Nepavyko atverti rakinimo failo %s" + +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" msgstr "" -"Nepavyko įdiegti kai kurių paketų. Tai gali reikšti, kad jūs\n" -"paprašėte neįmanomo dalyko, arba, jei jūs naudojate nestabilų\n" -"leidimą, kuomet kai kurie paketai dar nebuvo sukurti arba buvo\n" -"pašalinti iš \"Incoming\" aplanko." -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Sugadinti paketai" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Nepavyko rezervuoti rakinimo failo %s" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Bus įdiegti šie papildomi paketai:" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Siūlomi paketai:" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Rekomenduojami paketai:" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:421 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"Praleidžiamas %s, nes jis jau yra įdiegtas ir atnaujinimas nėra nurodytas.\n" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Procesas %s gavo segmentavimo klaidą" + +#: apt-pkg/contrib/fileutl.cc:826 #, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"Praleidžiamas %s, nes jis jau yra įdiegtas ir atnaujinimas nėra nurodytas.\n" +msgid "Sub-process %s received signal %u." +msgstr "Procesas %s gavo segmentavimo klaidą" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Pakartotinas %s įdiegimas neįmanomas, jo nepavyksta parsiųsti.\n" +msgid "Sub-process %s returned an error code (%u)" +msgstr "Procesas %s grąžino klaidos kodą (%u)" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s ir taip jau yra naujausias.\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "Procesas %s netikėtai išėjo" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:913 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Pažymėta versija %s (%s) paketui %s\n" +msgid "Problem closing the gzip file %s" +msgstr "Klaida užveriant failą" -#: apt-private/private-install.cc:899 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Pažymėta versija %s (%s) paketui %s\n" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Nepavyko atverti failo %s" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "Paketas %s nėra įdiegtas, todėl nebuvo pašalintas\n" +msgid "Could not open file descriptor %d" +msgstr "Nepavyko atverti failo %s" -#: apt-private/private-install.cc:947 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Paketas %s nėra įdiegtas, todėl nebuvo pašalintas\n" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Nepavyko sukurti subproceso IPC" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Nepavyko paleisti suspaudėjo " -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "DĖMESIO: Šie paketai negali būti autentifikuoti!" +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" msgstr "" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Nepavyko autentikuoti kai kurių paketų" +#: apt-pkg/contrib/fileutl.cc:1915 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Klaida užveriant failą" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Įdiegti šiuos paketus be patvirtinimo?" +#: apt-pkg/contrib/fileutl.cc:1927 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Klaida sinchronizuojant failą" -#: apt-private/private-sources.cc:58 +#: apt-pkg/contrib/fileutl.cc:1938 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Nepavyko pervadinti %s į %s" +msgid "Problem unlinking the file %s" +msgstr "Klaida užveriant failą" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Klaida sinchronizuojant failą" + +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +msgid "%c%s... Error!" +msgstr "%c%s... Klaida!" + +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Baigta" + +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Baigta" + +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Imamas " +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Gauti:" +#: apt-pkg/contrib/mmap.cc:119 +#, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ignoruotas " +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Nepavyko atverti %s" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Klaida " +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "Nepavyko pakeisti į %s" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Parsiųsta %sB iš %s (%sB/s)\n" +msgid "Couldn't make mmap of %lu bytes" +msgstr "" -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [Vykdoma]" +#: apt-pkg/contrib/mmap.cc:322 +#, fuzzy +msgid "Failed to truncate file" +msgstr "Nepavyko patikrinti %s" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/mmap.cc:341 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -"Laikmenos keitimas: įdėkite diską, pažymėtą\n" -" „%s“,\n" -"į įrenginį „%s“ ir paspauskite enter\n" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "No mirror file '%s' found " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Nepavyko atverti failo %s" - -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Nepavyko atverti failo %s" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "[Mirror: %s]" +msgid "Unable to stat the mount point %s" msgstr "" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Nepavyko subprocesui sukurti IPC gijos" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" msgstr "" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Blogi standartiniai nustatymai!" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Jei norite tęsti, spauskite Enter." +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" msgstr "" -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Išpakuojant įvyko klaidų. Bandysiu konfigūruoti" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "paketus, kurie buvo įdiegti. Tai gali sukelti pasikartojančias klaidas" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" msgstr "" -"arba klaidas, atsiradusias dėl trūkstamų priklausomybių. Viskas gerai, tik " -"klaidos," -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -"esančios aukščiau šios žinutės, yra svarbios. Prašome jas ištaisyti ir vėl " -"paleisti [I]nstall" -#: dselect/update:30 -msgid "Merging available information" -msgstr "Sujungiama turima informaija" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" msgstr "" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "" -#: apt-inst/filelist.cc:477 +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "Diegimas nutraukiamas." + +#: apt-pkg/contrib/cmndline.cc:121 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgid "Command line option '%c' [from %s] is not known." msgstr "" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 #, c-format -msgid "Double add of diversion %s -> %s" +msgid "Command line option %s is not understood" msgstr "" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format -msgid "Duplicate conf file %s/%s" +msgid "Command line option %s is not boolean" msgstr "" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "The path %s is too long" -msgstr "Kelias %s per ilgas" +msgid "Option %s requires an argument." +msgstr "Parametrui %s reikia argumento." -#: apt-inst/extract.cc:132 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Unpacking %s more than once" +msgid "Option %s: Configuration item specification must have an =<val>." msgstr "" -#: apt-inst/extract.cc:142 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "The directory %s is diverted" +msgid "Option %s requires an integer argument, not '%s'" msgstr "" -#: apt-inst/extract.cc:152 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" +msgid "Option '%s' is too long" msgstr "" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." msgstr "" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "Failed to stat %s" -msgstr "Nepavyko patikrinti %s" +msgid "Invalid operation %s" +msgstr "Klaidingas veiksmas %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:95 +#, fuzzy, c-format +msgid "Installing %s" +msgstr "Įdiegta %s" + +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Nepavyko pervadinti %s į %s" +msgid "Configuring %s" +msgstr "Konfigūruojamas %s" -#: apt-inst/extract.cc:249 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "The directory %s is being replaced by a non-directory" +msgid "Removing %s" +msgstr "Šalinamas %s" + +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "Visiškai pašalintas %s" + +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" msgstr "" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" msgstr "" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Kelias per ilgas" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Trūksta aplanko „%s“" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "Nepavyko atverti failo %s" + +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "" +msgid "Preparing %s" +msgstr "Ruošiamas %s" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "" +msgid "Unpacking %s" +msgstr "Išpakuojamas %s" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Unable to stat %s" -msgstr "" +msgid "Preparing to configure %s" +msgstr "Ruošiamasi konfigūruoti %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Failed to write file %s" -msgstr "" +msgid "Installed %s" +msgstr "Įdiegta %s" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to close file %s" -msgstr "" +msgid "Preparing for removal of %s" +msgstr "Ruošiamasi %s pašalinimui" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "" +msgid "Removed %s" +msgstr "Pašalintas %s" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Vidinė klaida, nepavyko aptikti nario %s" +msgid "Preparing to completely remove %s" +msgstr "Ruošiamasi visiškai pašalinti %s" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Visiškai pašalintas %s" + +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Nepavyko įrašyti į %s" + +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" msgstr "" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" msgstr "" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Archyvas per trumpas" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Nepavyko perskaityti archyvo antraščių" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" msgstr "" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" msgstr "" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Sugadintas archyvas" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar kontrolinė suma klaidinga, archyvas sugadintas" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Nežinomas TAR antraštės tipas %u. narys %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Nepavyko užrakinti sąrašo aplanko" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/mr.po b/po/mr.po index 95a581a2a..4d57f77db 100644 --- a/po/mr.po +++ b/po/mr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2008-11-20 23:27+0530\n" "Last-Translator: Sampada <sampadanakhare@gmail.com>\n" "Language-Team: Marathi, janabhaaratii, C-DAC, Mumbai, India " @@ -17,3137 +17,3138 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "'%s' प्रकारची निर्देशक संचिका सहाय्यकारी नाही" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "%s वाचण्यास असमर्थ" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "%s मध्ये बदलण्यास असमर्थ" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "%s स्टॅट करण्यात असमर्थ. " - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" - -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "" - -#: apt-pkg/init.cc:146 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "'%s' पॅकेजींग प्रणाली सहाय्यकारी नाही" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "योग्य असा पॅकेजिंग प्रणाली प्रकार निश्चित करण्यास असमर्थ " +msgid "Package %s version %s has an unmet dep:\n" +msgstr "पॅकेज %s आवृती %s मध्ये एक अनोळखी डीईपी:आहे\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "%i माहितीसंच लिहिले.\n" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "पॅकेजची सर्व नांवे: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "%i गहाळ संचिकाबरोबर %i माहिती संच लिहिले.\n" +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "पॅकेजची सर्व नांवे: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "%i विजोड संचिकांबरोबर %i माहिती संच लिहिले\n" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " सामान्य पॅकेजेस्: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "%i गहाळ संचिकाबरोबर आणि %i विजोड संचिकाबरोबर %i माहिती संच लिहिले\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " शुध्द आभासी पॅकेजेस्:" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " एकमेव आभासी पॅकेजेस्:" -#: apt-pkg/indexcopy.cc:521 -#, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "हॅश बेरीज जुळत नाही" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr "मिश्रित आभासी पॅकेजेस्:" -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "%s कार्यपध्दतीचा ड्राइव्हर सापडू शकला नाही. " +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " हरवलेले/गहाळ: " -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "'dpkg-dev' पॅकेज संस्थापित केले आहे का ते पडताळून पहा.\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "एकूण स्पष्ट आवृत्या: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "%s कार्यपध्दती योग्य रीतीने सुरु झालेली नाही" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "एकूण स्पष्ट विवरणे: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "कृपया '%s' लेबल असलेली डिस्क '%s' या ड्राइव्हमध्ये ठेवा आणि एन्टर कळ दाबा." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "एकूण निर्भरता:" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "पॅकेजच्या याद्या किंवा संचिकेची स्थिती स्पष्ट होऊ शकत नाही किंवा ती उघडू शकत नाही." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "एकूण व्हीईआर/संचिका परस्पर संबंध:" -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "तुम्ही ह्या समस्यांचे निवारण करण्यासाठी apt-get update प्रोग्राम चालू करु शकता" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "एकूण विव/संचिका परस्पर संबंध:" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "उगमांच्या याद्या वाचता येणार नाहीत." +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "एकूण मॅपींगस् तरतूद: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "पॅकेज अस्थाई स्मृतिकोष" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "एकूण एकत्रित अक्षरसंच:" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "पॅकेज अस्थाई स्मृतिकोष फाईल खराब झाली आहे" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "एकूण परावलंबित आवृत्ती अवकाश:" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "पॅकेज अस्थाई स्मृतिकोष फाईल ही विजोड आवृत्ती आहे" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "एकूण दुर्लक्षित अवकाश:" -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "पॅकेज अस्थाई स्मृतिकोष फाईल खराब झाली आहे" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "हिशेबात घेतलेली एकूण अवकाश(जागा):" -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "'%s' आवृत्तीकरण प्रणालीला हे APT तांत्रिक मदत देऊ शकत नाही" +msgid "Package file %s is out of sync." +msgstr "पॅकेज संचिका %s सिंक्रोनाइज नाहीत" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "पॅकेज अस्थाई स्मृतीकोष वेगळ्या वास्तुविद्ये साठी बनवला गेला" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "पॅकेजेस सापडले नाहीत" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "अवलंबित" +#: cmdline/apt-cache.cc:1254 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "तुम्हाला फक्त एकच नमुना द्यावा लागेल" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "पूर्व अवलंबित" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "सुचवणे" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "पॅकेज %s शोधण्यास असमर्थ आहे" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "शिफारस" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "पॅकेज संचिका:" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "परस्परविरोध" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "दृतिका सिंक नाही,पॅकेज संचिका क्ष-संदर्भ करता येत नाही" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "परत त्याठिकाणी आणा" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "एकत्रित पॅकेजेस:" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "अप्रचलित" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(मिळाले नाही)" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "तोडले" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr "अधिष्ठापित केले:" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr "उमेदवार:" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "अत्यावश्यक" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(कोणताच नाही)" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "आवश्यक" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr "पॅकेज (पिन):" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "मानक" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr "आवृत्ती कोष्टक:" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "एच्छिक" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s हे %s करिता %s %s वर संग्रहित\n" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "अधिक" - -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "'%s' प्रकारची निर्देशक संचिका सहाय्यकारी नाही" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"वापर: apt-cache [options] command\n" +" apt-cache [options] add file1 [file2 ...]\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"ऍप्टच्या द्वयंक कॅश संचिका कौशल्याने हाताळण्यासाठी, व त्यांमधील माहितीची विचारणा " +"करण्यासाठी ऍप्ट -कॅश हे निम्नस्तरीय साधन आहे।\n" +"\n" +"आज्ञावली\n" +" add - उगमस्थान कॅशमध्ये एक पॅकेज संचिका मिळवा \n" +" gencaches - पॅकेज व उगमस्थान कॅश या दोघांची बांधणी करा\n" +" showpkg - एकमेव पॅकेजसाठी काही सामान्य माहिती दाखवा\n" +" showsrc -उगमस्थानाचा माहितीसंच दाखवा\n" +" stats - काही पायाभूत आकडेवारी दाखवा\n" +" dump - संपूर्ण संचिका थोडक्यात दाखवा\n" +" dumpavail - उपलब्ध संचिका stdout मधे छापा\n" +" unmet - पुरी न झालेली परावलंबने दाखवा\n" +" search - regex नमुन्यासाठी पॅकेजची यादी शोधा\n" +" show - पॅकेजसाठी वाचनीय माहितीसंच दाखवा\n" +" depends -पॅकेजसाठी संस्करणपूर्व परावलंबन माहिती दाखवा\n" +" rdepends -पॅकेजसाठी अतिपरावलंबन माहिती दाखवा\n" +" pkgnames - सर्व पॅकेजेससाठी यादी तयार करा\n" +" dotty - GraphViz साठी पॅकेज आलेख निर्माण करा\n" +" xvcg-xvcg साठी पॅकेज आलेख निर्माण करा\n" +" policy - धोरण निर्धारणे दाखवा\n" +"\n" +"पर्याय : \n" +"-h -हा साह्याकारी मजकूर\n" +"-p=? पॅकेज कॅश \n" +"-s=? उगमस्थान कॅश \n" +"-q-प्रगतीनिदर्शक अकार्यान्वित करा \n" +"-i -न आढळलेल्या आज्ञेसाठी महत्त्वाचे विभाग दाखवा\n" +"-c=? ही संरचना संचिका वाचा\n" +"-o=? एखादा अहेतूक संरचना पर्याय निर्धारित करा उदा --o dir::cache=/tmp\n" +"अधिक माहितीसाठी apt-cache(8) and apt.conf(5) ची मॅन्युअल पृष्ठे पहा \n" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" -msgstr "रिजेक्स कंपायलेशन त्रुटी -%s " +#: cmdline/apt-cdrom.cc:76 +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "या तबकडीला कृपया नाव द्या जसे डेबियन २ एलआरएल तबकडी १" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "अस्थायी स्मृतिकोष मध्ये विसंगत आवृतीकरण प्रणाली आहे" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "कृपया तबकडी ड्राईव्हमध्ये ठेवून एंटर दाबा" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "%s (पॅकेज शोधतांना) प्रक्रिया करीत असतांना दोष आढळून आला" +msgid "Failed to mount '%s' to '%s'" +msgstr "%s ला पुनर्नामांकन %s करण्यास असमर्थ " -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"अरेवा!, तुम्ही तर ह्या एपिटीच्या कार्यक्षमतेपेक्षाही पॅकेज नांवांच्या संख्येची मर्यादा ओलांडली " -"आहे." -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "" -"अरेवा!, तुम्ही तर ह्या एपिटीच्या कार्यक्षमतेपेक्षाही आवृत्त्या संख्येची मर्यादा ओलांडली आहे." +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "तुमच्या संचामधील सर्व सीडीजसाठी याच कृतीची पुनरावृत्ती करा(हीच कृती करा)" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "अरेवा!, तुम्ही तर ह्या ऍप्टच्या कार्यक्षमतेपेक्षाही विवरण संख्येची मर्यादा ओलांडली आहे." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "चलितमूल्य जोडीने नाहीत" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -"अरेवा!, तुम्ही तर ह्या एपिटीच्या कार्यक्षमतेपेक्षाही अवलंबित/विसंबून असलेल्या संख्येची मर्यादा " -"ओलांडली आहे." +"उपयोग : ऍप्ट-कॉन्फिग(पर्याय) आज्ञा \n" +"\n" +"ऍप्ट कन्फिग संचिता वाचण्यासाठी ऍप्ट-कन्फिग हे एक साधन आहे\n" +"\n" +"आज्ञावली : \n" +"शेल - शेल मोड \n" +"डंप - संरचना दाखवा \n" +"\n" +"पर्याय : \n" +" -h हा साह्याकारी मजकूर \n" +" -c= ? ही संरचना संचिका वाचा \n" +" -o=? एखदा अहेतुक संरचना पर्याय निर्धारित करा, उदा।eg -o dir::cache=/tmp\n" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "अवलंबित/विसंबून असणाऱ्या संचिकांची प्रक्रिया करीत असतांना पॅकेज %s %s सापडले नाही " +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "%s पॅकेज सापडू शकले नाही" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "%s पॅकेज सापडू शकले नाही" + +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "%s पॅकेज सापडू शकले नाही" + +#: cmdline/apt-get.cc:367 +#, fuzzy, c-format +msgid "Picking '%s' as source package instead of '%s'\n" msgstr "%s उगम पॅकेज यादी सुरू करता येत नाही" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "पॅकेज याद्या वाचत आहोत" +#: cmdline/apt-get.cc:423 +#, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "तरतूद/पुरवलेल्या संचिका संग्रहित करीत आहे" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "%s पॅकेज सापडू शकले नाही" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Unable to write to %s" -msgstr "%s मध्ये लिहिण्यास असमर्थ " +msgid "%s set to manually installed.\n" +msgstr "%s स्वहस्ते संस्थापित करायचे आहे.\n" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "IO त्रुटी उगम निवडक संचयस्थानात संग्रहित होत आहे" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s स्वहस्ते संस्थापित करायचे आहे.\n" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "अंतर्गत त्रुटी, अडचण निवारकाने स्टफला तोडले" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "डाऊनलोड डिरेक्टरी कुलूपबंद करण्यास असमर्थ" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "उगम शोधण्यासाठी किमान एक पॅकेज देणे/सांगणे गरजेचे आहे" + +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "%s उगम पॅकेज शोधणे शक्य नाही/शोधण्यास असमर्थ आहे" + +#: cmdline/apt-get.cc:786 +#, c-format +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" +#: cmdline/apt-get.cc:791 +#, c-format +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:843 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "पुनर्नामांकन अयशस्वी, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "हॅश बेरीज जुळत नाही" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "आकार जुळतनाही" - -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "%s अवैध क्रिया" +msgid "Skipping already downloaded file '%s'\n" +msgstr "आधीच डाऊनलोड केलेली '%s' फाईल सोडून द्या\n" -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" - -#: apt-pkg/acquire-item.cc:1589 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "%s (1) पॅकेज फाईल पार्स करण्यात असमर्थ" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "पुढील कळ ओळखचिन्हांसाठी सार्वजनिक कळ उपलब्ध नाही:\n" +msgid "Couldn't determine free space in %s" +msgstr "%s मध्ये रिकामी जागा सांगू शकत नाही" -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:882 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +msgid "You don't have enough free space in %s" +msgstr "%s मध्ये पुरेशी जागा नाही" -#: apt-pkg/acquire-item.cc:1691 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "उगम अर्काईव्हज चा %sB/%sB घेण्याची गरज आहे.\n" -#: apt-pkg/acquire-item.cc:1721 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +msgid "Need to get %sB of source archives.\n" +msgstr "उगम अर्काईव्हजचा %sB घेण्याची गरज आहे.\n" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:902 #, c-format -msgid "GPG error: %s: %s" -msgstr "" +msgid "Fetch source %s\n" +msgstr "%s उगम घ्या\n" -#: apt-pkg/acquire-item.cc:1859 -#, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"मी %s पॅकेजकरीता संचिका शोधण्यास समर्थ नव्हतो. याचा अर्थ असाकी तुम्हाला हे पॅकेज स्वहस्ते " -"स्थिर/निश्चित करण्याची गरज आहे(हरवलेल्या आर्चमुळे) " +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "काही अर्काईव्हज आणण्यास असमर्थ." -#: apt-pkg/acquire-item.cc:1925 +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "डाऊनलोड संपूर्ण आणि डाऊनलोड मध्ये फक्त पद्धती" + +#: cmdline/apt-get.cc:950 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "%s मध्ये आधीच उघडलेल्या उगमातील उघडलेल्याला सोडून द्या किंवा वगळा\n" -#: apt-pkg/acquire-item.cc:1983 +#: cmdline/apt-get.cc:963 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"पॅकेज यादीची/सुचीची संचिका दूषित/खराब झालेली आहे. संचिका नाव नाही: पॅकेजकरीता क्षेत्र/" -"ठिकाण %s." +msgid "Unpack command '%s' failed.\n" +msgstr "'%s' आज्ञा सुट्या करण्यास असमर्थ.\n" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "विक्रेता गट %s मध्ये बोटाचे ठसे नाहीत" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "'dpkg-dev' पॅकेज संस्थापित केले आहे का ते पडताळून पहा.\n" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "संचयिका यादीत %s पार्शल हरवले आहे." +#: cmdline/apt-get.cc:992 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "बांधणी करणाऱ्या आज्ञा '%s' अयशस्वी.\n" -#: apt-pkg/acquire.cc:91 -#, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "ऑर्काइव्ह संचयिका %spartial गायब आहे." +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "चाईल्ड प्रक्रिया अयशस्वी" -#: apt-pkg/acquire.cc:99 -#, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "संचयिका यादीला कुलुप लावण्यात असमर्थ" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "बिल्डेपस् कशासाठी ते पडताळण्यासाठी किमान एक पॅकेज सांगणे गरजेचे आहे" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:1055 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "%li ची %li(%s राहिलेले) संचिका पुन:प्राप्त करीत आहे" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Retrieving file %li of %li" -msgstr "%li ची %li संचिका पुन:प्राप्त करीत आहे" +msgid "Unable to get build-dependency information for %s" +msgstr "%s साठी बांधणी डिपेंडन्सी माहिती मिळवण्यास असमर्थ" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "%s %s आणणे असफल\n" +msgid "%s has no build depends.\n" +msgstr "%s ला बांधणी डिपेंडन्स नाहीत.\n" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy +#: cmdline/apt-get.cc:1272 +#, fuzzy, c-format msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"काही अनुक्रमणिका संचयिका डाऊनलोड करण्यास असमर्थ,त्या दुर्लक्षित झाल्या, किंवा " -"त्याऐवजी जुन्या वापरल्या गेल्या." - -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "तुम्ही तुमच्या उगमस्थान यादीत URI घाला" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "%s पॅकेज न सापडल्याने %s साठी %s डिपेंडन्सी पूर्ण होऊ शकत नाही" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" -msgstr "" - -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "पसंतीच्या संचिकेत अवैध माहितीसंच, पॅकेजला शीर्षक नाही " +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "%s पॅकेज न सापडल्याने %s साठी %s डिपेंडन्सी पूर्ण होऊ शकत नाही" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Did not understand pin type %s" -msgstr "%s पिनचा प्रकार समजलेला नाही" - -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "पिन करिता प्राधान्य/अग्रक्रम (किंवा शून्य)निर्देशीत केलेला नाही" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "%s अवलंबित्व %s साठी पूर्ण होण्यास असमर्थ: संस्थापित पॅकेज %s खूपच नवीन आहे" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format +#: cmdline/apt-get.cc:1352 +#, fuzzy, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" +"आवृतीची मागणी पूर्ण करण्यासाठी %s पॅकेजची आवृत्ती उपलब्ध नाही,त्यामुळे %s साठी %s " +"डिपेंडन्सी पूर्ण होऊ शकत नाही" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:1358 #, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "%s फाईल उघडता येत नाही" - -#: apt-pkg/packagemanager.cc:583 -#, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." -msgstr "" -"ह्याचे आधिष्ठापन सुरु करण्यासाठी अत्यावश्यक तात्पुरते काढुन टाकण्याची गरज आहे%s पॅकेज " -"गुंतागुंतीमुळे/Pre-Depends पूर्व अवलंबित आवर्तन.हे नेहमीच वाईट असते, पण जर तुम्हाला ते खरोखर " -"करावयाचे असेल तर,APT::Force-LoopBreak पर्याय कार्यान्वित करा." +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "%s पॅकेज न सापडल्याने %s साठी %s डिपेंडन्सी पूर्ण होऊ शकत नाही" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Line %u too long in source list %s." -msgstr "%2$s स्त्रोत सुचीमध्ये ओळ %1$u खूप लांब आहे." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "सिडी-रॉम अनमाउंट होत आहे...\n" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "%s साठी %s डिपेंडन्सी पूर्ण होण्यास असमर्थ: %s" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "सिडी-रॉमचे माउंट स्थान %s वापरुन\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "डिस्क/चकती करिता प्रतिक्षा करीत आहे...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "सिडी-रॉम माउंट होत आहे...\n" - -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "ओळखत आहे..." +msgid "Build-dependencies for %s could not be satisfied." +msgstr "%s साठी बांधणी-डिपेंडन्सीज पूर्ण होऊ शकत नाही." -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "ग्रहण केलेले नामदर्शक: %s \n" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "बांधणी-डिपेंडन्सीज क्रिया पूर्ण करण्यास असमर्थ " -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "संचिकाच्या यादी/सूचीसाठी डिस्क/चकती बारकाईने तपासत आहे...\n" +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "%s (%s) ला जोडत आहे" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"%zu पॅकेजेसची यादी/सूची, %zu स्त्रोताची यादी/सूची, %zu भाषांतर यादी/सूची आणि %zu " -"स्वाक्षऱ्या/सिगनेचर्स सापडल्या\n" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "प्रोग्राम गटाला तांत्रिक मदत दिली:" -#: apt-pkg/cdrom.cc:744 +#: cmdline/apt-get.cc:1633 +#, fuzzy msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" - -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "'%s' लेबल सापडले\n" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "ते स्विकारण्याजोगे/वैध नांव नाही, पुन्हा प्रयत्न करा.\n" - -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"ह्या डिस्कला/चकतीला: म्हणतात\n" -"'%s'\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "पॅकेज सूचींच्या प्रती तयार करित आहे..." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "नविन स्त्रोत सूची लिहित आहे\n" +"वापर: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get हा पॅकेज डाऊनलोड आणि संस्थापित करण्यासाठी साधा आदेश रेखित\n" +" संवादमंच आहे. नेहमी वापरले जाणारे आदेश म्हणजे अपडेट\n" +"आणि संस्थापित करा\n" +"\n" +"आदेश:\n" +" update -पॅकेजच्या नव्या याद्यां प्राप्त करा\n" +" upgrade -आवृत्त्यांचे श्रेणिवर्धन करा\n" +" install -नवीन पॅकेजेस संस्थापित करा(pkg हे libc6 आहे आणि libc6.deb नव्हे)\n" +" remove -पॅकेजेस कायमची काढा\n" +" autoremove - वापरात नसलेली सर्व पॅकेजेस स्वयंचलितपणे कायमची काढा\n" +" purge - पॅकेजेस कायमची काढा व साफ करा\n" +" source -उगमस्थान अर्काईव्हज डाऊनलोड करा\n" +" build-dep - उगमस्थान पॅकेजेससाठी बांधणी-डिपेंडन्सी संरचित करा।\n" +" dist-upgrade - वितरण श्रेणिवर्धन, पहा apt-get(8)\n" +" dselect-upgrade -निवडी रहित करा\n" +" clean - डाऊनलोड केलेल्या अर्काईव्हज फाईल्स खोडून टाका\n" +" autoclean - डाऊनलोड केलेल्या जुन्या अर्काईव्हज फाईल्स खोडून टाका\n" +" check - डिपेन्डन्सीज तुटलेल्या नाहीत याची खात्री करा\n" +"\n" +"पर्याय:\n" +" -h हा मदत मजकूर.\n" +" -q नोंद करण्यासारखे आऊटपुट-प्रगती निदर्शक नाही\n" +" -qq त्रुटींव्यतिरिक्त आऊटपुट नाही\n" +" -d - डाऊनलोड फक्त - अर्काईव्हज संस्थापित किंवा उघडू नका\n" +" -s क्रिया नाही-\n" +" -y सगळ्या प्रश्नांना 'हो' समजा. व प्रॉम्पट् करू नका.\n" +" -f डिपेन्डन्सीज तुटलेल्या प्रणालीत द उरुस्ती करण्याचा प्रयत्न करा\n" +" -m अर्काईव्हज सापडत नसतील तर पुढे जाण्याचा प्रयत्न करा\n" +" -u पॅकेजच्या पुढिल आवृत्त्यांची यादी देखील दाखवा.\n" +" -b मिळवल्यानंतर उगमस्थान पॅकेजची बांधणी करा\n" +" -V व्हरबोस आवृत्ती क्रमांक दाखवा\n" +" -c=?- ही संरचना फाईल वाचा\n" +" -o=?- अनियंत्रित संरचना पर्याय निश्चित करा,उदा -o dir::cache=/tmp\n" +"अधिक माहिती व पर्यायांसाठी apt-get(8), sources.list(5),आणि\n" +" apt.conf(5) पुस्तिका पाने पहा.\n" +" ह्या APT ला सुपर काऊ पॉवर्स आहेत\n" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "ह्या डिस्क/चकती करिता स्त्रोत सूचीच्या प्रवेशिका आहेत: \n" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "उगम शोधण्यासाठी किमान एक पॅकेज देणे/सांगणे गरजेचे आहे" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"%s पॅकेज पुनः:अधिष्ठापित करण्याची गरज आहे, परंतु मला त्यासाठी ऑर्काइव्ह सापडू शकले नाही." -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-helper.cc:66 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"दोष,पॅकेज समस्या निवारक::निवारण करतांना अडथळा निर्माण झाला, ह्याचे कारण स्थगित " -"पॅकेजेस असू शकते." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "अडचणी दूर करण्यास असमर्थ, तुम्ही तुटलेले पॅकेज घेतलेले आहे." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "अवलंबित रचना बांधणी करत आहे" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "कंॅडिडेट आवृत्त्या" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "अवलंबित/विसंबून असलेले उत्पादन " - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "स्थिती माहिती वाचत आहे" - -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "%s StateFile उघडणे असफल" - -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "%s तात्पुरत्या StateFile मध्ये लिहिणे असफल" - -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "%s (1) पॅकेज फाईल पार्स करण्यात असमर्थ" - -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "%s (२) पॅकेज फाईल पार्स करण्यात असमर्थ" - -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "'%s' साठी '%s' आवृत्ती सापडली नाही" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "'%s' साठी '%s' आवृत्ती सापडली नाही" - -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "पॅकेज %s शोधण्यास असमर्थ आहे" - -#: apt-pkg/cacheset.cc:603 +#: cmdline/apt-mark.cc:68 #, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "%s कार्य सापडू शकले नाही" +msgid "%s can not be marked as it is not installed.\n" +msgstr "पण ते संस्थापित केले नाही" -#: apt-pkg/cacheset.cc:609 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "%s पॅकेज सापडू शकले नाही" +msgid "%s was already set to manually installed.\n" +msgstr "%s स्वहस्ते संस्थापित करायचे आहे.\n" -#: apt-pkg/cacheset.cc:615 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "%s पॅकेज सापडू शकले नाही" - -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" - -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" +msgid "%s was already set to automatically installed.\n" +msgstr "%s स्वहस्ते संस्थापित करायचे आहे.\n" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s ही आधीच नविन आवृत्ती आहे.\n" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s ही आधीच नविन आवृत्ती आहे.\n" -#: apt-pkg/cacheset.cc:663 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" +msgid "Waited for %s but it wasn't there" +msgstr "%s साठी थांबलो पण ते तेथे नव्हते" -#: apt-pkg/indexrecords.cc:78 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "%s (1) पॅकेज फाईल पार्स करण्यात असमर्थ" +msgid "%s set on hold.\n" +msgstr "%s स्वहस्ते संस्थापित करायचे आहे.\n" -#: apt-pkg/indexrecords.cc:86 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "लक्षात घ्या,%s ऐवजी %s ची निवड करत आहे \n" +msgid "Canceled hold on %s.\n" +msgstr "%s उघडण्यास असमर्थ" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "%s डायव्हर्जन फाईलमध्ये अवैध ओळ आहे:" - -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "%s (1) पॅकेज फाईल पार्स करण्यात असमर्थ" - -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "स्त्रोत सुची %s (यूआरआय पार्स) मध्ये %lu वाईट/व्यंग रेषा" - -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "स्त्रोत सुची %s (डीआयएसटी पार्स) मध्ये %lu वाईट/व्यंग रेषा" +#: cmdline/apt-mark.cc:392 +msgid "" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." +msgstr "" -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "स्त्रोत सुची %s (डिआयएसटी) मध्ये %lu वाईट/व्यंग रेषा" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/sourcelist.cc:184 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "स्त्रोत सुची %s (डीआयएसटी पार्स) मध्ये %lu वाईट/व्यंग रेषा" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "%s सीडी-रॉम माहिती संच वाचण्यास असमर्थ" -#: apt-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "स्त्रोत सुची %s (डीआयएसटी पार्स) मध्ये %lu वाईट/व्यंग रेषा" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" +msgstr "" +"कृपया सी-डी रॉम APT कडून ओळखण्यासाठी apt-cdrom चा वापर करा.apt-get update हे " +"नवीन सीडी राॅम अधिक मिळवण्यासाठी वापरता येणार नाही" -#: apt-pkg/sourcelist.cc:193 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "स्त्रोत सुची %s (डीआयएसटी पार्स) मध्ये %lu वाईट/व्यंग रेषा" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "चूकीची सी-डी रॉम" -#: apt-pkg/sourcelist.cc:206 +#: methods/cdrom.cc:249 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "स्त्रोत सुची %2$s (यूआरआय) मध्ये %1$lu वाईट/व्यंग रेषा" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "%s मधील सीडी-रॉम अनमाऊंट करण्यास असमर्थ, अजूनही ते वापरता असेल." -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "स्त्रोत सुची %2$s (डिआयएसटी) मध्ये %1$lu वाईट/व्यंग रेषा" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "डिस्क सापडत नाही" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "स्त्रोत सुची %2$s (यूआरआय पार्स) मध्ये %1$lu वाईट/व्यंग रेषा" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "फाईल सापडली नाही" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "स्त्रोत सुची %2$s (absolute dist) मध्ये %1$lu वाईट/व्यंग रेषा" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "स्टॅट करण्यास असमर्थ" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "स्त्रोत सुची %2$s (डीआयएसटी पार्स) मध्ये %1$lu वाईट/व्यंग रेषा" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "बदलण्याचा वेळ निश्चित करण्यास असमर्थ" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "%s उघडत आहे" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "अवैध यू आर एल, स्थानिक यू आर आय एस सुरू होऊ नये यापासून //" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "स्त्रोत सुची %2$s (प्रकार) मध्ये %1$u वाईट/व्यंग रेषा" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "लॉग इन करत आहे" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "%s स्त्रोत सुचीमध्ये %u रेषेवर '%s' प्रकार माहित नाही " +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "पिअर नाव सांगण्यास/सापडण्यास असमर्थ" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "%s स्त्रोत सुचीमध्ये %u रेषेवर '%s' प्रकार माहित नाही " +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "स्थानिक नाव सांगण्यास असमर्थ" -#: apt-pkg/deb/dpkgpm.cc:95 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Installing %s" -msgstr "%s संस्थापित होत आहे" +msgid "The server refused the connection and said: %s" +msgstr "सर्व्हर ने संबंध जोडण्यास नकार दिला व सांगितले: %s" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#: methods/ftp.cc:225 #, c-format -msgid "Configuring %s" -msgstr "%s संरचित होत आहे" +msgid "USER failed, server said: %s" +msgstr "सर्व्हरने %s सांगितले,यूजर असमर्थ:" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#: methods/ftp.cc:232 #, c-format -msgid "Removing %s" -msgstr "%s काढून टाकत आहे" - -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "%s संपूर्ण काढून टाकले" +msgid "PASS failed, server said: %s" +msgstr "सर्व्हरने %s सांगितले, पास असमर्थ:" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" +"प्रॉक्सी सर्व्हर निर्देशित केला पण लॉगीन स्क्रिप्ट नाही, प्राप्त केलेले ::ftp:: प्रॉक्सीलॉगीन " +"निरर्थक आहे." -#: apt-pkg/deb/dpkgpm.cc:100 +#: methods/ftp.cc:280 #, c-format -msgid "Running post-installation trigger %s" -msgstr "संस्थापना-पश्चात ट्रिगर %s चालवत आहे" +msgid "Login script command '%s' failed, server said: %s" +msgstr "सर्व्हरने %s सांगितले, '%s' लॉग इन स्क्रिप्ट आज्ञावली असमर्थ:" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#: methods/ftp.cc:306 #, c-format -msgid "Directory '%s' missing" -msgstr "'%s' संचयिका गहाळ आहे" +msgid "TYPE failed, server said: %s" +msgstr "सर्व्हरने %s सांगितले: टाईप असमर्थ:" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "%s फाईल उघडता येत नाही" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "वेळेअभावी संबंध जोडता येत नाही" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "%s तयार करित आहे" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "सर्व्हरने संबंध जोडणी बंद केली" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "%s सुटे/मोकळे करीत आहे " +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "त्रुटी वाचा" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "%s संरचने साठी तयार करत आहे" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "प्रतिसाधाने बफर भरुन गेले." -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "%s संस्थापित झाले" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "प्रोटोकॉल खराब झाले" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "%s ला काढून टाकण्यासाठी तयारी करत आहे" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "लिहिण्यात त्रुटी" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "%s काढून टाकले" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "सॉकेट तयार करू शकत नाही" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "%s संपूर्ण काढून टाकण्याची तयारी करत आहे" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "डेटा सॉकेट जोडू शकत नाही,जोडणी वेळेअभावी बंद केली" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "%s संपूर्ण काढून टाकले" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "%s मध्ये लिहिण्यास असमर्थ " +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "असमर्थ" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "पॅसिव्ह सॉकेट जोडता येत नाही" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "गेटऍड्रेसइनफो लिसनिंग सॉकेट घेण्यास असमर्थ होते" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 -#, c-format -msgid "Waited for %s but it wasn't there" -msgstr "%s साठी थांबलो पण ते तेथे नव्हते" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "सॉकेट चिकटवता येत नाही" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "सॉकेट वर ऐकता येत नाही" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "सॉकेटचे नाव सांगता येत नाही" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "पोर्ट आज्ञा पाठवता येत नाही/पोर्ट आज्ञा पाठविण्यास असमर्थ" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "माहित नसलेला पत्ता फॅमिली %u (AF_*)" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "ई.पी.आर.टी. चुकले,सर्व्हरने %s सांगितले" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "डेटा सॉकेट जोडणी वेळेअभावी तुटली" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "जोडणी स्विकारण्यास असमर्थ" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "फाईल हॅश करण्यात त्रुटी" -#: apt-pkg/deb/debsystem.cc:91 +#: methods/ftp.cc:890 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" +msgid "Unable to fetch file, server said '%s'" +msgstr "सर्व्हरने %s सांगितले, फाईल मिळवण्यास असमर्थ" -#: apt-pkg/deb/debsystem.cc:94 -#, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "संचयिका यादीला कुलुप लावण्यात असमर्थ" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "डेटा सॉकेट वेळेअभावी तुटले" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: methods/ftp.cc:935 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" +msgid "Data transfer failed, server said '%s'" +msgstr "सर्व्हरने %s सांगितले, डेटा स्थानांतरण चुकले" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "प्रश्न" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "जारी करण्यास करण्यास असमर्थ" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: methods/connect.cc:76 #, c-format -msgid "%lih %limin %lis" -msgstr "" +msgid "Connecting to %s (%s)" +msgstr "%s (%s) ला जोडत आहे" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: methods/connect.cc:87 #, c-format -msgid "%limin %lis" -msgstr "" +msgid "[IP: %s %s]" +msgstr "[आयपी:%s %s]" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: methods/connect.cc:94 #, c-format -msgid "%lis" -msgstr "" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "%s (f=%u t=%u p=%u) साठी सॉकेट तयार करू शकत नाही" -#: apt-pkg/contrib/strutl.cc:1243 +#: methods/connect.cc:100 #, c-format -msgid "Selection %s not found" -msgstr "%s निवडक भाग सापडत नाही" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "%s:%s (%s). साठी जोडणी इनिशिएट/पुढाकारीत करू शकत नाही" -#: apt-pkg/contrib/fileutl.cc:190 +#: methods/connect.cc:108 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "फक्त वाचण्यासाठी कुलूप संचिका %s साठी कुलूपबंदचा वापर करीत नाही" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "%s:%s (%s) ला जोडू शकत नाही,जोडणी वेळेअभावी तुटली" -#: apt-pkg/contrib/fileutl.cc:195 +#: methods/connect.cc:126 #, c-format -msgid "Could not open lock file %s" -msgstr "%s कुलूप फाईल उघडता येत नाही" +msgid "Could not connect to %s:%s (%s)." +msgstr "%s:%s (%s) ला जोडू शकत नाही" -#: apt-pkg/contrib/fileutl.cc:218 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "%s nfs(नेटवर्क फाईल सिस्टीम) माऊंटेड कुलुप फाईल ला कुलुप /बंद करता येत नाही" +msgid "Connecting to %s" +msgstr "%s ला जोडत आहे" -#: apt-pkg/contrib/fileutl.cc:223 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Could not get lock %s" -msgstr "%s कुलुप मिळवता येत नाही" +msgid "Could not resolve '%s'" +msgstr "%s रिझॉल्व्ह होऊ शकत नाही " -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: methods/connect.cc:205 #, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +msgid "Temporary failure resolving '%s'" +msgstr "'%s' रिझॉल्व्ह करताना तात्पुरती त्रुटी" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "%s:%s' (%i) रिझॉल्व्ह होत असताना काहीतरी वाईट घडले" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#: methods/connect.cc:211 +#, fuzzy, c-format +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "%s:%s' (%i) रिझॉल्व्ह होत असताना काहीतरी वाईट घडले" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: methods/connect.cc:258 +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" +msgstr "%s %s ला जोडण्यास असमर्थ:" + +#: methods/gpgv.cc:168 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" -msgstr "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "अंतर्गत त्रुटी: चांगली सही, पण की ठसे सांगू शकत नाही?!" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "%s उपक्रियेला सेगमेंटेशन दोष प्राप्त झाला." +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "किमान एक अवैध सही सापडली." -#: apt-pkg/contrib/fileutl.cc:826 -#, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "%s उपक्रियेला सेगमेंटेशन दोष प्राप्त झाला." +#: methods/gpgv.cc:174 +#, fuzzy +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "" +"सहीची खात्री करण्यासाठी '%s' कार्यान्वित करू शकत नाही (gpgv संस्थापित केले आहे का?)" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "%s उपक्रियेने (%u) त्रुटी कोड दिलेला आहे" +msgid "" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "%s उपक्रिया अचानकपणे बाहेर पडली" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "gpgv कार्यान्वित होत असताना अपरिचित त्रुटी" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "लिहिण्यात त्रुटी" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "खालील सह्या अवैध आहेत:\n" -#: apt-pkg/contrib/fileutl.cc:913 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "फाईल बंद करण्यात अडचण" +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "खालील सह्यांची खात्री करता येत नाही कारण सार्वजनिक कीउपलब्ध नाही:\n" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "%s फाईल उघडता येत नाही" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "%s साठी पाईप उघडता येत नाही" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "फाईल मध्ये लिहिण्यात चूक/त्रुटी" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "आयपीसी उपक्रिया तयार करण्यास असमर्थ" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "सर्व्हर मधून वाचण्यात चूक. लांब शेवट आणि बंद झालेली जोडणी" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "दाबक(संकलितकर्ता) कर्यान्वित करण्यास असमर्थ" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "सर्व्हर मधून वाचण्यात चूक" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "त्रुटी वाचा" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "फाईल मध्ये लिहिण्यात चूक/त्रुटी" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "वाचा, %lu अजूनही वाचण्यासाठी आहे पण आता काही उरली नाही" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "चुकले/असमर्थ निवड करा" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "लिहा, %lu अजूनही लिहिण्यासाठी आहे पण लिहिता येत नाही" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "जोडणी वेळेअभावी तुटली" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "फाईल बंद करण्यात अडचण" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "निर्गत फाईल मध्ये लिहिताना त्रुटी/चूक" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "संचिकेची syncing समस्या" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "शीर्षकासाठी थांबले आहे...." -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "फाईल अनलिंकिंग करण्यात अडचण" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "वाईट शीर्षक ओळ" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "संचिकेची syncing समस्या" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "HTTP सर्व्हरने अवैध प्रत्त्युत्तर शीर्षक पाठविले" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... चूक/त्रुटी!" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "HTTP सर्व्हरने अवैध मजकूर-लांबी शीर्षक पाठविले " -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... झाले" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "HTTP सर्व्हरने अवैध मजकूर-विस्तार शीर्षक पाठविले" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "HTTP सर्व्हरने विस्तार तांत्रिक मदत जोडली" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... झाले" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "अपरिचित दिनांक प्रकार/स्वरूप " -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "रिकामी फाईल mmap करता येणार नाही" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "चुकीचा शीर्षक डाटा" -#: apt-pkg/contrib/mmap.cc:111 -#, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "%s साठी पाईप उघडता येत नाही" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "जोडणी अयशस्वी" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "mmap चे %lu बाईटस् करता येणार नाहीत" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "अंतर्गत त्रुटी" -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "%s उघडण्यास असमर्थ" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -#, fuzzy -msgid "Unable to synchronize mmap" -msgstr "जारी करण्यास करण्यास असमर्थ" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "अंतर्गत त्रुटी, तुटलेल्या पॅकेजेस बरोबर संस्थापित पॅकेजला आवाहन केले गेले/बोलावले गेले!" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "mmap चे %lu बाईटस् करता येणार नाहीत" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "पॅकेजेस कायमची काढायची आहेत पण रिमूव्ह अकार्यक्षम केले आहे" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "फाईल छोटी करणे असफल" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "अंतर्गत त्रुटी,क्रम अजून संपला नाही" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" -msgstr "" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "किती विचित्र...आकार जुळत नाहीत, ईमेल apt@packages.debian.org" -#: apt-pkg/contrib/mmap.cc:446 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" - -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "अर्काईव्हजच्या %sB/%sB घेण्याची गरज आहे\n" -#: apt-pkg/contrib/cdromutl.cc:65 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "%s माऊंट पॉईंट स्टॅट करण्यास असमर्थ" - -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "सीडी-रॉम स्टॅट करण्यास असमर्थ" +msgid "Need to get %sB of archives.\n" +msgstr "अर्काईव्हज%sB घेण्याची गरज आहे.\n" -#: apt-pkg/contrib/configuration.cc:519 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "संक्षिप्तरुपाचा माहित नसलेला प्रकार: '%c'" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "या क्रियेनंतर, %sB एवढी अधिक डिस्क जागा वापरली जाईल.\n" -#: apt-pkg/contrib/configuration.cc:633 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "Opening configuration file %s" -msgstr "%s संरचना फाईल उघडत आहे" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "या क्रियेनंतर, %sB डिस्क जागा मोकळी होईल.\n" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-private/private-install.cc:200 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "रचनेच्या नियमांचा दोष %s:%u: ब्लॉक नावाशिवाय सुरू होतो." +msgid "You don't have enough free space in %s." +msgstr "%s मध्ये तुमच्याकडे पुरेशी जागा नाही." -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "रचनेच्या नियमांचा दोष : %s:%u: मालफॉर्मड् टॅग" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "काही अडचणी आहेत आणि --force-yes शिवाय -y वापरला गेला" -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "रचनेच्या नियमांचा दोष %s:%u: मुल्यांच्या नंतर अधिक जंक" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "क्षुल्लक फक्त निर्देशित केले आहे पण हे क्षुल्लक कृति/ऑपरेशन नाही." -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "रचनेच्या नियमांचा दोष %s:%u: दिशादर्शक फक्त उच्च पातळीवर केले जाऊ शकतात" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "हो, मी म्ह्टल्याप्रमाणे करा!" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-private/private-install.cc:222 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "रचनेच्या नियमांचा दोष %s:%u: खूपच एकात एक इनक्लूडस्" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"तुम्ही संभाव्य काहीतरी नुकसानकारक करणार होतात.\n" +"पुढे '%s' उक्ती मध्ये लिहिणार \n" +" ?] " -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "रचनेच्या नियमांचा दोष %s:%u: ह्या पासून समाविष्ट " +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "व्यत्यय/बंद करा." -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "नियम रचनेचा दोष %s:%u: '%s' दिशादर्शक असहाय्यकारी" - -#: apt-pkg/contrib/configuration.cc:900 -#, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "रचनेच्या नियमांचा दोष %s:%u: दिशादर्शक फक्त उच्च पातळीवर केले जाऊ शकतात" +#: apt-private/private-install.cc:243 +#, fuzzy +msgid "Do you want to continue?" +msgstr "तुम्हाला पुढे जायचे आहे [Y/n]? " -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "नियम रचनेचा दोष %s:%u: फाईलच्या अंती अधिक जंक" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "काही संचिका डाऊनलोड करण्यास असमर्थ" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "संस्थापन खंडित करत आहे." +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"काही आर्काइव्हज आणण्यास असमर्थ, कदाचित apt-get रन करुन अद्ययावत करा किंवा --fix- " +"बरोबर प्रयत्न कराहरवलेले/गहाळ?" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "आदेश रेखा पर्याय '%c' [पासून %s] हे माहित नाही." +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "" +"--fix- सापडत नाही आणि माध्यम/मिडिया अदलाबदल हे सध्या तांत्रिक मदत देऊ शकत नाही" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "आदेश रेखा पर्याय %s नीट समजला नाही" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "न सापडणारी पॅकेजेस नीट करण्यास असमर्थ." -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "आदेश रेखा पर्याय %s हे बूलियन नाही" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "संस्थापन खंडित करत आहे." -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "पर्याय %s साठी ऑर्गुमेंट पाहिजे" +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "पर्याय %s: संरचितेच्या यादीतील कलमांचा तपशीलाला असलेच पाहिजे ते =<मूल्य>." +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "%s पर्याय ला पूर्णांक ऑर्गुमेंट पाहिजे,'%s' नको" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "आपण या गोष्टी काढून टाकता नये, ऑटोरिमूव्हर सुरू करता येत नाही" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "'%s' पर्याय खूप लांब आहे" +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" +"हूं, AutoRemover ने काहीतरी नष्ट केल्याचे दिसतेय, खरेतर असे व्हायला नको\n" +"कृपया apt कडे बग रिपोर्ट दाखल करा. " -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "%s संवेदना हे समजत नाही, चूक की बरोबर चा प्रयत्न करा." +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "खालील माहिती परिस्थिती निवळण्यासाठी मदत ठरू शकेल:" -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "%s अवैध क्रिया" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "अंतर्गत त्रुटी, AutoRemoverने स्टफला तोडले" -#: cmdline/apt-cache.cc:149 -#, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "पॅकेज %s आवृती %s मध्ये एक अनोळखी डीईपी:आहे\n" +#: apt-private/private-install.cc:513 +#, fuzzy +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "खालील नवीन पॅकेजेस स्वयंचलितपणे संस्थापित झाली होती व आता आवश्यक नाहीत:" +msgstr[1] "खालील नवीन पॅकेजेस स्वयंचलितपणे संस्थापित झाली होती व आता आवश्यक नाहीत:" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "पॅकेजची सर्व नांवे: " +#: apt-private/private-install.cc:517 +#, fuzzy, c-format +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "खालील नवीन पॅकेजेस स्वयंचलितपणे संस्थापित झाली होती व आता आवश्यक नाहीत:" +msgstr[1] "खालील नवीन पॅकेजेस स्वयंचलितपणे संस्थापित झाली होती व आता आवश्यक नाहीत:" -#: cmdline/apt-cache.cc:279 +#: apt-private/private-install.cc:519 #, fuzzy -msgid "Total package structures: " -msgstr "पॅकेजची सर्व नांवे: " +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "ती काढून टाकण्यासाठी 'apt-get autoremove' वापरा." +msgstr[1] "ती काढून टाकण्यासाठी 'apt-get autoremove' वापरा." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " सामान्य पॅकेजेस्: " +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "" +"तुम्हाला कदाचित 'apt-get -f install'(एपीटी-गेट -एफ संस्थापन') प्रोग्राम चालू करावा " +"लागेल'यात बदल करण्यासाठी:" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " शुध्द आभासी पॅकेजेस्:" +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"अनमेट डिपेंडन्सीज.एपीटी-गेट -एफ संस्थापन ('apt-get -f install') पॅकेजशिवाय प्रयत्न करा " +"(किंवा पर्याय सांगा)." -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " एकमेव आभासी पॅकेजेस्:" +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"काही पॅकेजेस संस्थापित होत नाहीत. याचा अर्थ असा आहे की तुम्ही\n" +"अशक्य परिस्थितीची विनंती केली होती. किंवा जर तुम्ही अस्थिर\n" +"विभागणी असणारी पण हवी असणारी, तयार केली नसलेली पॅकेजेस वापरत असाल \n" +"किंवा ती येणाऱ्यांपैकी बाहेर हलविली असतील." -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr "मिश्रित आभासी पॅकेजेस्:" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "तुटलेली पॅकेजेस" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " हरवलेले/गहाळ: " +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "खालील अतिरिक्त पॅकेजेस संस्थापित होतील:" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "एकूण स्पष्ट आवृत्या: " +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "सुचवलेली पॅकेजेस:" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "एकूण स्पष्ट विवरणे: " +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "शिफारस केलेली पॅकेजेस:" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "एकूण निर्भरता:" +#: apt-private/private-install.cc:825 +#, c-format +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "%s सोडून देत आहे, ते आधिच संस्थापित केले आहे आणि पुढिल आवृत्ती निश्चित केलेली नाही.\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "एकूण व्हीईआर/संचिका परस्पर संबंध:" +#: apt-private/private-install.cc:829 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "%s सोडून देत आहे, ते आधिच संस्थापित केले आहे आणि पुढिल आवृत्ती निश्चित केलेली नाही.\n" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "एकूण विव/संचिका परस्पर संबंध:" +#: apt-private/private-install.cc:841 +#, c-format +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "%s चे पुनर्संस्थापन शक्य नाही, हे डाऊनलोड करता येत नाही.\n" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "एकूण मॅपींगस् तरतूद: " +#: apt-private/private-install.cc:846 +#, c-format +msgid "%s is already the newest version.\n" +msgstr "%s ही आधीच नविन आवृत्ती आहे.\n" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "एकूण एकत्रित अक्षरसंच:" +#: apt-private/private-install.cc:894 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "%s साठी %s (%s) निवडलेली आवृत्ती.\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "एकूण परावलंबित आवृत्ती अवकाश:" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "%s साठी %s (%s) निवडलेली आवृत्ती.\n" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "एकूण दुर्लक्षित अवकाश:" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "%s पॅकेज संस्थापित केलेले नाही,म्हणून काढले नाही\n" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "हिशेबात घेतलेली एकूण अवकाश(जागा):" - -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "पॅकेज संचिका %s सिंक्रोनाइज नाहीत" - -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "पॅकेजेस सापडले नाहीत" - -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "तुम्हाला फक्त एकच नमुना द्यावा लागेल" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "%s पॅकेज संस्थापित केलेले नाही,म्हणून काढले नाही\n" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "पॅकेज संचिका:" +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "दृतिका सिंक नाही,पॅकेज संचिका क्ष-संदर्भ करता येत नाही" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "डिपेन्डन्सीज बरोबर/दुरूस्त करत आहे..." -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "एकत्रित पॅकेजेस:" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr "अयशस्वी/चूकीचे झाले." -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(मिळाले नाही)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "डिपेन्डन्सीज बरोबर करण्यास असमर्थ आहे " -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr "अधिष्ठापित केले:" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "आवृत्तीकृत संच कमीतकमी करण्यास असमर्थ" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr "उमेदवार:" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr "झाले" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(कोणताच नाही)" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "हे बरोबर करण्यासाठी तुम्हाला `apt-get -f संस्थापना' प्रोग्राम चालू करावा लागेल." -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr "पॅकेज (पिन):" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "अनमेट डिपेंडन्सीज.-f.वापरून प्रयत्न करा " -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr "आवृत्ती कोष्टक:" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s हे %s करिता %s %s वर संग्रहित\n" +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr "[संस्थापित केले]" -#: cmdline/apt-cache.cc:1749 +#: apt-private/private-output.cc:238 #, fuzzy -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgid "[installed,local]" +msgstr "[संस्थापित केले]" + +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"वापर: apt-cache [options] command\n" -" apt-cache [options] add file1 [file2 ...]\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"ऍप्टच्या द्वयंक कॅश संचिका कौशल्याने हाताळण्यासाठी, व त्यांमधील माहितीची विचारणा " -"करण्यासाठी ऍप्ट -कॅश हे निम्नस्तरीय साधन आहे।\n" -"\n" -"आज्ञावली\n" -" add - उगमस्थान कॅशमध्ये एक पॅकेज संचिका मिळवा \n" -" gencaches - पॅकेज व उगमस्थान कॅश या दोघांची बांधणी करा\n" -" showpkg - एकमेव पॅकेजसाठी काही सामान्य माहिती दाखवा\n" -" showsrc -उगमस्थानाचा माहितीसंच दाखवा\n" -" stats - काही पायाभूत आकडेवारी दाखवा\n" -" dump - संपूर्ण संचिका थोडक्यात दाखवा\n" -" dumpavail - उपलब्ध संचिका stdout मधे छापा\n" -" unmet - पुरी न झालेली परावलंबने दाखवा\n" -" search - regex नमुन्यासाठी पॅकेजची यादी शोधा\n" -" show - पॅकेजसाठी वाचनीय माहितीसंच दाखवा\n" -" depends -पॅकेजसाठी संस्करणपूर्व परावलंबन माहिती दाखवा\n" -" rdepends -पॅकेजसाठी अतिपरावलंबन माहिती दाखवा\n" -" pkgnames - सर्व पॅकेजेससाठी यादी तयार करा\n" -" dotty - GraphViz साठी पॅकेज आलेख निर्माण करा\n" -" xvcg-xvcg साठी पॅकेज आलेख निर्माण करा\n" -" policy - धोरण निर्धारणे दाखवा\n" -"\n" -"पर्याय : \n" -"-h -हा साह्याकारी मजकूर\n" -"-p=? पॅकेज कॅश \n" -"-s=? उगमस्थान कॅश \n" -"-q-प्रगतीनिदर्शक अकार्यान्वित करा \n" -"-i -न आढळलेल्या आज्ञेसाठी महत्त्वाचे विभाग दाखवा\n" -"-c=? ही संरचना संचिका वाचा\n" -"-o=? एखादा अहेतूक संरचना पर्याय निर्धारित करा उदा --o dir::cache=/tmp\n" -"अधिक माहितीसाठी apt-cache(8) and apt.conf(5) ची मॅन्युअल पृष्ठे पहा \n" -#: cmdline/apt-cdrom.cc:76 +#: apt-private/private-output.cc:243 #, fuzzy -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "या तबकडीला कृपया नाव द्या जसे डेबियन २ एलआरएल तबकडी १" +msgid "[installed,automatic]" +msgstr "[संस्थापित केले]" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "कृपया तबकडी ड्राईव्हमध्ये ठेवून एंटर दाबा" +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr "[संस्थापित केले]" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "%s ला पुनर्नामांकन %s करण्यास असमर्थ " +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "तुमच्या संचामधील सर्व सीडीजसाठी याच कृतीची पुनरावृत्ती करा(हीच कृती करा)" +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "पण %s संस्थापित झाले" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "चलितमूल्य जोडीने नाहीत" +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "पण %s संस्थापित करायचे आहे" -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -msgstr "" -"उपयोग : ऍप्ट-कॉन्फिग(पर्याय) आज्ञा \n" -"\n" -"ऍप्ट कन्फिग संचिता वाचण्यासाठी ऍप्ट-कन्फिग हे एक साधन आहे\n" -"\n" -"आज्ञावली : \n" -"शेल - शेल मोड \n" -"डंप - संरचना दाखवा \n" -"\n" -"पर्याय : \n" -" -h हा साह्याकारी मजकूर \n" -" -c= ? ही संरचना संचिका वाचा \n" -" -o=? एखदा अहेतुक संरचना पर्याय निर्धारित करा, उदा।eg -o dir::cache=/tmp\n" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "पण ते संस्थापित करण्याजोगे नाही" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "%s पॅकेज सापडू शकले नाही" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "पण ते आभासी पॅकेज आहे" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "%s पॅकेज सापडू शकले नाही" - -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "%s पॅकेज सापडू शकले नाही" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "पण ते संस्थापित केले नाही" -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "%s उगम पॅकेज यादी सुरू करता येत नाही" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "पण ते संस्थापित होणार नाही" -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr "किंवा" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "%s पॅकेज सापडू शकले नाही" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "खालील पॅकेजेस मध्ये नमिळणाऱ्या निर्भरता/ डिपेन्डन्सीज आहेत:" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s स्वहस्ते संस्थापित करायचे आहे.\n" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "खालील नविन पॅकेजेस संस्थापित होतील:" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s स्वहस्ते संस्थापित करायचे आहे.\n" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "खालील नविन पॅकेजेस कायमची काढून टाकली जातील:" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "खालील पॅकेजेस परत ठेवली गेली:" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "अंतर्गत त्रुटी, अडचण निवारकाने स्टफला तोडले" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "खालील पॅकेजेस पुढिल आवृत्तीकृत होतील:" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "डाऊनलोड डिरेक्टरी कुलूपबंद करण्यास असमर्थ" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "खालील पॅकेजेस पुढच्या आवृत्तीकृत होणार नाहीत:" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "उगम शोधण्यासाठी किमान एक पॅकेज देणे/सांगणे गरजेचे आहे" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "पुढिल ठेवलेली पॅकेजेस बदलतील:" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/private-output.cc:668 #, c-format -msgid "Unable to find a source package for %s" -msgstr "%s उगम पॅकेज शोधणे शक्य नाही/शोधण्यास असमर्थ आहे" +msgid "%s (due to %s) " +msgstr "%s (च्या मुळे %s)" -#: cmdline/apt-get.cc:786 -#, c-format +#: apt-private/private-output.cc:676 msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" +"धोक्याची सूचना:खालील जरूरीची पॅकेजेस कायमची काढून टाकली जातील।\n" +"तुम्हाला तुम्ही काय करत आहात हे कळेपर्यंत असं करता येणार नाही!" -#: cmdline/apt-get.cc:791 +#: apt-private/private-output.cc:707 #, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" -msgstr "" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu पुढे आवृत्तीकृत केले, %lu नव्याने संस्थापित केले," -#: cmdline/apt-get.cc:843 +#: apt-private/private-output.cc:711 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "आधीच डाऊनलोड केलेली '%s' फाईल सोडून द्या\n" +msgid "%lu reinstalled, " +msgstr "%lu पुनर्संस्थापित केले," -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-private/private-output.cc:713 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "%s मध्ये रिकामी जागा सांगू शकत नाही" +msgid "%lu downgraded, " +msgstr "%lu मागील आवृत्तीकृत केले," -#: cmdline/apt-get.cc:882 +#: apt-private/private-output.cc:715 #, c-format -msgid "You don't have enough free space in %s" -msgstr "%s मध्ये पुरेशी जागा नाही" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu कायमचे काढून टाकण्यासाठी आणि %lu पुढच्या आवृत्तीकृत झालेली नाही.\n" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: apt-private/private-output.cc:719 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "उगम अर्काईव्हज चा %sB/%sB घेण्याची गरज आहे.\n" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu संपूर्ण संस्थापित किंवा कायमची काढून टाकलेली नाही.\n" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "उगम अर्काईव्हजचा %sB घेण्याची गरज आहे.\n" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "" -#: cmdline/apt-get.cc:902 -#, c-format -msgid "Fetch source %s\n" -msgstr "%s उगम घ्या\n" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "काही अर्काईव्हज आणण्यास असमर्थ." +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "होय" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "डाऊनलोड संपूर्ण आणि डाऊनलोड मध्ये फक्त पद्धती" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: cmdline/apt-get.cc:950 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "%s मध्ये आधीच उघडलेल्या उगमातील उघडलेल्याला सोडून द्या किंवा वगळा\n" +msgid "Regex compilation error - %s" +msgstr "रिजेक्स कंपायलेशन त्रुटी -%s " -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "'%s' आज्ञा सुट्या करण्यास असमर्थ.\n" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "सुधारित आवृत्तीचा विधान आर्ग्युमेंटस घेऊ शकत नाही." -#: cmdline/apt-get.cc:963 +#: apt-private/private-update.cc:90 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "'dpkg-dev' पॅकेज संस्थापित केले आहे का ते पडताळून पहा.\n" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "बांधणी करणाऱ्या आज्ञा '%s' अयशस्वी.\n" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "चाईल्ड प्रक्रिया अयशस्वी" +#: apt-private/private-show.cc:156 +#, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "बिल्डेपस् कशासाठी ते पडताळण्यासाठी किमान एक पॅकेज सांगणे गरजेचे आहे" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: cmdline/apt-get.cc:1054 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "%s साठी बांधणी डिपेंडन्सी माहिती मिळवण्यास असमर्थ" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "धोक्याची सूचना:खालील पॅकेजेस् प्रमाणित करु शकत नाही! " -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s ला बांधणी डिपेंडन्स नाहीत.\n" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "प्रमाणीकरणाची धोक्याची सूचना दुर्लक्षित करा.\n" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "%s पॅकेज न सापडल्याने %s साठी %s डिपेंडन्सी पूर्ण होऊ शकत नाही" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "काही पॅकेजेसचे प्रमाणिकरण होऊ शकत नाही" -#: cmdline/apt-get.cc:1289 -#, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "%s पॅकेज न सापडल्याने %s साठी %s डिपेंडन्सी पूर्ण होऊ शकत नाही" +#: apt-private/private-download.cc:50 +#, fuzzy +msgid "Install these packages without verification?" +msgstr "पडताळून पाहिल्याशिवाय ही पॅकेजेस संस्थापित करायची का [हो/नाही]?" -#: cmdline/apt-get.cc:1312 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "%s अवलंबित्व %s साठी पूर्ण होण्यास असमर्थ: संस्थापित पॅकेज %s खूपच नवीन आहे" +msgid "Failed to fetch %s %s\n" +msgstr "%s %s आणणे असफल\n" -#: cmdline/apt-get.cc:1351 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +msgid "Failed to parse %s. Edit again? " +msgstr "%s ला पुनर्नामांकन %s करण्यास असमर्थ " + +#: apt-private/private-sources.cc:70 +#, c-format +msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -"आवृतीची मागणी पूर्ण करण्यासाठी %s पॅकेजची आवृत्ती उपलब्ध नाही,त्यामुळे %s साठी %s " -"डिपेंडन्सी पूर्ण होऊ शकत नाही" -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "%s पॅकेज न सापडल्याने %s साठी %s डिपेंडन्सी पूर्ण होऊ शकत नाही" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: cmdline/apt-get.cc:1380 -#, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "%s साठी %s डिपेंडन्सी पूर्ण होण्यास असमर्थ: %s" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "पुढिल आवृत्तीची गणती करीत आहे..." -#: cmdline/apt-get.cc:1395 -#, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "%s साठी बांधणी-डिपेंडन्सीज पूर्ण होऊ शकत नाही." +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "झाले" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "बांधणी-डिपेंडन्सीज क्रिया पूर्ण करण्यास असमर्थ " +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "दाबा" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "%s (%s) ला जोडत आहे" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "मिळवा:" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "प्रोग्राम गटाला तांत्रिक मदत दिली:" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "आय.जी.एन." -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "दोष इ.आर.आर." + +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "%s (%sB/s) मध्ये %sB मिळविला\n" + +#: apt-private/acqprogress.cc:236 +#, c-format +msgid " [Working]" +msgstr "[काम करत आहे]" + +#: apt-private/acqprogress.cc:297 +#, c-format msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"वापर: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get हा पॅकेज डाऊनलोड आणि संस्थापित करण्यासाठी साधा आदेश रेखित\n" -" संवादमंच आहे. नेहमी वापरले जाणारे आदेश म्हणजे अपडेट\n" -"आणि संस्थापित करा\n" -"\n" -"आदेश:\n" -" update -पॅकेजच्या नव्या याद्यां प्राप्त करा\n" -" upgrade -आवृत्त्यांचे श्रेणिवर्धन करा\n" -" install -नवीन पॅकेजेस संस्थापित करा(pkg हे libc6 आहे आणि libc6.deb नव्हे)\n" -" remove -पॅकेजेस कायमची काढा\n" -" autoremove - वापरात नसलेली सर्व पॅकेजेस स्वयंचलितपणे कायमची काढा\n" -" purge - पॅकेजेस कायमची काढा व साफ करा\n" -" source -उगमस्थान अर्काईव्हज डाऊनलोड करा\n" -" build-dep - उगमस्थान पॅकेजेससाठी बांधणी-डिपेंडन्सी संरचित करा।\n" -" dist-upgrade - वितरण श्रेणिवर्धन, पहा apt-get(8)\n" -" dselect-upgrade -निवडी रहित करा\n" -" clean - डाऊनलोड केलेल्या अर्काईव्हज फाईल्स खोडून टाका\n" -" autoclean - डाऊनलोड केलेल्या जुन्या अर्काईव्हज फाईल्स खोडून टाका\n" -" check - डिपेन्डन्सीज तुटलेल्या नाहीत याची खात्री करा\n" -"\n" -"पर्याय:\n" -" -h हा मदत मजकूर.\n" -" -q नोंद करण्यासारखे आऊटपुट-प्रगती निदर्शक नाही\n" -" -qq त्रुटींव्यतिरिक्त आऊटपुट नाही\n" -" -d - डाऊनलोड फक्त - अर्काईव्हज संस्थापित किंवा उघडू नका\n" -" -s क्रिया नाही-\n" -" -y सगळ्या प्रश्नांना 'हो' समजा. व प्रॉम्पट् करू नका.\n" -" -f डिपेन्डन्सीज तुटलेल्या प्रणालीत द उरुस्ती करण्याचा प्रयत्न करा\n" -" -m अर्काईव्हज सापडत नसतील तर पुढे जाण्याचा प्रयत्न करा\n" -" -u पॅकेजच्या पुढिल आवृत्त्यांची यादी देखील दाखवा.\n" -" -b मिळवल्यानंतर उगमस्थान पॅकेजची बांधणी करा\n" -" -V व्हरबोस आवृत्ती क्रमांक दाखवा\n" -" -c=?- ही संरचना फाईल वाचा\n" -" -o=?- अनियंत्रित संरचना पर्याय निश्चित करा,उदा -o dir::cache=/tmp\n" -"अधिक माहिती व पर्यायांसाठी apt-get(8), sources.list(5),आणि\n" -" apt.conf(5) पुस्तिका पाने पहा.\n" -" ह्या APT ला सुपर काऊ पॉवर्स आहेत\n" +"माध्यम बदल: कृपया नाव घातलेली सीडी घाला\n" +"%s'\n" +"'%s' ड्राईव्ह मध्ये व एंटर कळ दाबा\n" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "उगम शोधण्यासाठी किमान एक पॅकेज देणे/सांगणे गरजेचे आहे" +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 +#, c-format +msgid "Unable to read %s" +msgstr "%s वाचण्यास असमर्थ" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 +#, c-format +msgid "Unable to change to %s" +msgstr "%s मध्ये बदलण्यास असमर्थ" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 +#, c-format +msgid "No mirror file '%s' found " msgstr "" -#: cmdline/apt-mark.cc:68 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "पण ते संस्थापित केले नाही" +msgid "Can not read mirror file '%s'" +msgstr "%s फाईल उघडता येत नाही" -#: cmdline/apt-mark.cc:74 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s स्वहस्ते संस्थापित करायचे आहे.\n" +msgid "No entry found in mirror file '%s'" +msgstr "%s फाईल उघडता येत नाही" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s स्वहस्ते संस्थापित करायचे आहे.\n" +#: methods/mirror.cc:445 +#, c-format +msgid "[Mirror: %s]" +msgstr "" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s ही आधीच नविन आवृत्ती आहे.\n" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "उपक्रियेचा आयपीसी वाहिनी तयार करण्यास असमर्थ" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s ही आधीच नविन आवृत्ती आहे.\n" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "जोडणी अकाली बंद झाली" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s स्वहस्ते संस्थापित करायचे आहे.\n" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "चूकीचे मूलभूत निश्चितीकरण!" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "%s उघडण्यास असमर्थ" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "पुढे जाण्यासाठी एंटर दाबा." -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "पुर्वी डाऊनलोड केलेल्या .deb संचयिका आपल्याला खोडून टाकायच्या आहेत का?" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" +#: dselect/install:102 +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "काही त्रुटी ह्या उघडत असताना घडल्या.मी संरचित करणार आहे" -#: cmdline/apt.cc:47 +#: dselect/install:103 +#, fuzzy +msgid "will be configured. This may result in duplicate errors" +msgstr "पॅकेजेस जी संस्थापित झाली आहे.याचा निकाल दुप्पट त्रुटी म्हणून होऊ शकतो" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "किंवा डिपेंडन्सीज नसल्यामुळे त्रुटी झाल्या. हे ठीक आहे, फक्त त्रुटी" + +#: dselect/install:105 msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" +"ह्यावर संदेश खूप महत्त्वाचे आहेत.कृपया त्यांना नीट करा व संस्थापित करा पुन्हा चालवा/सुरू करा" -#: methods/cdrom.cc:203 +#: dselect/update:30 +msgid "Merging available information" +msgstr "उपलब्ध माहितीचे एकत्रीकरण करत आहे" + +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "सुटा करण्यासाठी बोलावलेला/आणलेला सांधा(ड्रापनोड)अजुनही जुळलेलाच सांधा(लिंकनोड) आहे" + +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "हॅश एलिमेंट शोधूने काढण्यास असमर्थ!" + +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "नेमून दिलेल्यात फेरबदल करण्यास अयशस्वी" + +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "AddDiversion/ऍड डायव्हर्जन मध्ये आंतरिक दोष" + +#: apt-inst/filelist.cc:477 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "%s सीडी-रॉम माहिती संच वाचण्यास असमर्थ" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "डायव्हर्जन पुनः लिहिण्यास प्रयत्न करत आहे,%s -> %s and %s/%s" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"कृपया सी-डी रॉम APT कडून ओळखण्यासाठी apt-cdrom चा वापर करा.apt-get update हे " -"नवीन सीडी राॅम अधिक मिळवण्यासाठी वापरता येणार नाही" +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "%s -> %s डायव्हर्जन दुप्पट मिळवा" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "चूकीची सी-डी रॉम" +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "%s/%s संचिरित संचिकाची दुसरी प्रत/नक्कल" + +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" +msgstr "मार्ग %s हा खूप लांब आहे" + +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" +msgstr "%s एकापेक्षा जास्त वेळा उघडत आहे" + +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "%s संचिका डायव्हर्ट केली आहे/वळवली आहे" + +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "डायव्हर्जन इच्छित %s/%s मध्ये लिहिण्याचा पॅकेज प्रयत्न करत आहे" + +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "डायव्हर्जन मार्ग हा खूप लांब आहे" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 +#, c-format +msgid "Failed to stat %s" +msgstr "%s स्टेट करण्यास असमर्थ" + +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "%s ला पुनर्नामांकन %s करण्यास असमर्थ " + +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "%s संचिका ही संचिका नसलेल्या संचिकेबरोबर बदललेली आहे" + +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "नोडचे त्याच्या हॅश बकेटमध्ये/बादलीत स्थान निश्चित करण्यास असमर्थ" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "मार्ग खूप लांब आहे" + +#: apt-inst/extract.cc:421 +#, c-format +msgid "Overwrite package match with no version for %s" +msgstr "%s च्या आवृत्तीशी पुनः लिहिलेल्या पॅकेज जुळत नाही" + +#: apt-inst/extract.cc:438 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" +msgstr "File %s/%s, %s पॅकेज मधल्या एका वर पुनर्लिखित होते" + +#: apt-inst/extract.cc:498 +#, c-format +msgid "Unable to stat %s" +msgstr "%s स्टॅट करण्यास असमर्थ" + +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, c-format +msgid "Failed to write file %s" +msgstr "%s फाईल मध्ये लिहिण्यास असमर्थ" + +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "%s फाईल बंद करण्यास असमर्थ" + +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "हा वैध DEB अर्काईव्ह नाही,'%s' मेंबर उपलब्ध नाही" + +#: apt-inst/deb/debfile.cc:132 +#, c-format +msgid "Internal error, could not locate member %s" +msgstr "अंतर्गत त्रुटी,%s मेंबर शोधू शकत नाही" + +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "अनपार्सेबल नियंत्रण फाईल" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "अयोग्य अर्काईव्ह ओळख सही" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "अर्काईव्ह मेंबर शीर्षक वाचण्यास त्रुटी" + +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "अयोग्य अर्काईव्ह मेंबर शीर्षक" -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "%s मधील सीडी-रॉम अनमाऊंट करण्यास असमर्थ, अजूनही ते वापरता असेल." +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "अयोग्य अर्काईव्ह मेंबर शीर्षक" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "डिस्क सापडत नाही" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "अर्काईव्ह खूप छोटे आहे" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "फाईल सापडली नाही" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "अर्काईव्ह शीर्षके वाचणे असफल" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "स्टॅट करण्यास असमर्थ" +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "पाईप तयार करण्यास असमर्थ" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "बदलण्याचा वेळ निश्चित करण्यास असमर्थ" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "exec gzip करण्यास असमर्थ" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "अवैध यू आर एल, स्थानिक यू आर आय एस सुरू होऊ नये यापासून //" +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "बिघडलेली अर्काईव्हज" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "लॉग इन करत आहे" +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "टार(टेपअर्काईव्ह) चेकसम चुकला, बिघडलेली अर्काईव्ह" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "पिअर नाव सांगण्यास/सापडण्यास असमर्थ" +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "अपरिचित TAR शीर्षक प्रकार %u, मेंबर %s" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "स्थानिक नाव सांगण्यास असमर्थ" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" + +#: apt-pkg/init.cc:146 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "सर्व्हर ने संबंध जोडण्यास नकार दिला व सांगितले: %s" +msgid "Packaging system '%s' is not supported" +msgstr "'%s' पॅकेजींग प्रणाली सहाय्यकारी नाही" -#: methods/ftp.cc:225 +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "योग्य असा पॅकेजिंग प्रणाली प्रकार निश्चित करण्यास असमर्थ " + +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "USER failed, server said: %s" -msgstr "सर्व्हरने %s सांगितले,यूजर असमर्थ:" +msgid "Wrote %i records.\n" +msgstr "%i माहितीसंच लिहिले.\n" -#: methods/ftp.cc:232 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "PASS failed, server said: %s" -msgstr "सर्व्हरने %s सांगितले, पास असमर्थ:" +msgid "Wrote %i records with %i missing files.\n" +msgstr "%i गहाळ संचिकाबरोबर %i माहिती संच लिहिले.\n" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"प्रॉक्सी सर्व्हर निर्देशित केला पण लॉगीन स्क्रिप्ट नाही, प्राप्त केलेले ::ftp:: प्रॉक्सीलॉगीन " -"निरर्थक आहे." +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "%i विजोड संचिकांबरोबर %i माहिती संच लिहिले\n" -#: methods/ftp.cc:280 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "सर्व्हरने %s सांगितले, '%s' लॉग इन स्क्रिप्ट आज्ञावली असमर्थ:" +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "%i गहाळ संचिकाबरोबर आणि %i विजोड संचिकाबरोबर %i माहिती संच लिहिले\n" -#: methods/ftp.cc:306 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "सर्व्हरने %s सांगितले: टाईप असमर्थ:" +msgid "Can't find authentication record for: %s" +msgstr "" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "वेळेअभावी संबंध जोडता येत नाही" +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "हॅश बेरीज जुळत नाही" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "सर्व्हरने संबंध जोडणी बंद केली" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "पॅकेजच्या याद्या किंवा संचिकेची स्थिती स्पष्ट होऊ शकत नाही किंवा ती उघडू शकत नाही." -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "प्रतिसाधाने बफर भरुन गेले." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "तुम्ही ह्या समस्यांचे निवारण करण्यासाठी apt-get update प्रोग्राम चालू करु शकता" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "प्रोटोकॉल खराब झाले" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "उगमांच्या याद्या वाचता येणार नाहीत." -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "सॉकेट तयार करू शकत नाही" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "पॅकेज अस्थाई स्मृतिकोष" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "डेटा सॉकेट जोडू शकत नाही,जोडणी वेळेअभावी बंद केली" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "पॅकेज अस्थाई स्मृतिकोष फाईल खराब झाली आहे" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "असमर्थ" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "पॅकेज अस्थाई स्मृतिकोष फाईल ही विजोड आवृत्ती आहे" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "पॅसिव्ह सॉकेट जोडता येत नाही" +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "पॅकेज अस्थाई स्मृतिकोष फाईल खराब झाली आहे" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "गेटऍड्रेसइनफो लिसनिंग सॉकेट घेण्यास असमर्थ होते" +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "'%s' आवृत्तीकरण प्रणालीला हे APT तांत्रिक मदत देऊ शकत नाही" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "सॉकेट चिकटवता येत नाही" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "पॅकेज अस्थाई स्मृतीकोष वेगळ्या वास्तुविद्ये साठी बनवला गेला" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "सॉकेट वर ऐकता येत नाही" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "अवलंबित" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "सॉकेटचे नाव सांगता येत नाही" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "पूर्व अवलंबित" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "पोर्ट आज्ञा पाठवता येत नाही/पोर्ट आज्ञा पाठविण्यास असमर्थ" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "सुचवणे" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "माहित नसलेला पत्ता फॅमिली %u (AF_*)" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "शिफारस" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "ई.पी.आर.टी. चुकले,सर्व्हरने %s सांगितले" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "परस्परविरोध" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "डेटा सॉकेट जोडणी वेळेअभावी तुटली" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "परत त्याठिकाणी आणा" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "जोडणी स्विकारण्यास असमर्थ" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "अप्रचलित" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "फाईल हॅश करण्यात त्रुटी" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "तोडले" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "सर्व्हरने %s सांगितले, फाईल मिळवण्यास असमर्थ" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "डेटा सॉकेट वेळेअभावी तुटले" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "अत्यावश्यक" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "सर्व्हरने %s सांगितले, डेटा स्थानांतरण चुकले" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "आवश्यक" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "प्रश्न" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "मानक" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "जारी करण्यास करण्यास असमर्थ" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "एच्छिक" + +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "अधिक" -#: methods/connect.cc:76 +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Connecting to %s (%s)" -msgstr "%s (%s) ला जोडत आहे" +msgid "The method driver %s could not be found." +msgstr "%s कार्यपध्दतीचा ड्राइव्हर सापडू शकला नाही. " -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[आयपी:%s %s]" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "'dpkg-dev' पॅकेज संस्थापित केले आहे का ते पडताळून पहा.\n" -#: methods/connect.cc:94 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "%s (f=%u t=%u p=%u) साठी सॉकेट तयार करू शकत नाही" +msgid "Method %s did not start correctly" +msgstr "%s कार्यपध्दती योग्य रीतीने सुरु झालेली नाही" -#: methods/connect.cc:100 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "%s:%s (%s). साठी जोडणी इनिशिएट/पुढाकारीत करू शकत नाही" +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "कृपया '%s' लेबल असलेली डिस्क '%s' या ड्राइव्हमध्ये ठेवा आणि एन्टर कळ दाबा." -#: methods/connect.cc:108 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "%s:%s (%s) ला जोडू शकत नाही,जोडणी वेळेअभावी तुटली" +msgid "Index file type '%s' is not supported" +msgstr "'%s' प्रकारची निर्देशक संचिका सहाय्यकारी नाही" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "%s:%s (%s) ला जोडू शकत नाही" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "अवलंबित रचना बांधणी करत आहे" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 -#, c-format -msgid "Connecting to %s" -msgstr "%s ला जोडत आहे" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "कंॅडिडेट आवृत्त्या" -#: methods/connect.cc:180 methods/connect.cc:199 -#, c-format -msgid "Could not resolve '%s'" -msgstr "%s रिझॉल्व्ह होऊ शकत नाही " +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "अवलंबित/विसंबून असलेले उत्पादन " -#: methods/connect.cc:205 -#, c-format -msgid "Temporary failure resolving '%s'" -msgstr "'%s' रिझॉल्व्ह करताना तात्पुरती त्रुटी" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "स्थिती माहिती वाचत आहे" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "%s:%s' (%i) रिझॉल्व्ह होत असताना काहीतरी वाईट घडले" +#: apt-pkg/depcache.cc:250 +#, c-format +msgid "Failed to open StateFile %s" +msgstr "%s StateFile उघडणे असफल" -#: methods/connect.cc:211 -#, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "%s:%s' (%i) रिझॉल्व्ह होत असताना काहीतरी वाईट घडले" +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "%s तात्पुरत्या StateFile मध्ये लिहिणे असफल" -#: methods/connect.cc:258 -#, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "%s %s ला जोडण्यास असमर्थ:" +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "पुनर्नामांकन अयशस्वी, %s (%s -> %s)." -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "अंतर्गत त्रुटी: चांगली सही, पण की ठसे सांगू शकत नाही?!" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "हॅश बेरीज जुळत नाही" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "किमान एक अवैध सही सापडली." +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "आकार जुळतनाही" -#: methods/gpgv.cc:174 +#: apt-pkg/acquire-item.cc:173 #, fuzzy -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "" -"सहीची खात्री करण्यासाठी '%s' कार्यान्वित करू शकत नाही (gpgv संस्थापित केले आहे का?)" +msgid "Invalid file format" +msgstr "%s अवैध क्रिया" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1573 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "gpgv कार्यान्वित होत असताना अपरिचित त्रुटी" +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "%s (1) पॅकेज फाईल पार्स करण्यात असमर्थ" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "खालील सह्या अवैध आहेत:\n" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "पुढील कळ ओळखचिन्हांसाठी सार्वजनिक कळ उपलब्ध नाही:\n" -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1669 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "खालील सह्यांची खात्री करता येत नाही कारण सार्वजनिक कीउपलब्ध नाही:\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "फाईल मध्ये लिहिण्यात चूक/त्रुटी" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "सर्व्हर मधून वाचण्यात चूक. लांब शेवट आणि बंद झालेली जोडणी" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "सर्व्हर मधून वाचण्यात चूक" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "फाईल मध्ये लिहिण्यात चूक/त्रुटी" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "चुकले/असमर्थ निवड करा" - -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "जोडणी वेळेअभावी तुटली" - -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "निर्गत फाईल मध्ये लिहिताना त्रुटी/चूक" - -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "शीर्षकासाठी थांबले आहे...." - -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "वाईट शीर्षक ओळ" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP सर्व्हरने अवैध प्रत्त्युत्तर शीर्षक पाठविले" +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP सर्व्हरने अवैध मजकूर-लांबी शीर्षक पाठविले " +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP सर्व्हरने अवैध मजकूर-विस्तार शीर्षक पाठविले" +#: apt-pkg/acquire-item.cc:1859 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"मी %s पॅकेजकरीता संचिका शोधण्यास समर्थ नव्हतो. याचा अर्थ असाकी तुम्हाला हे पॅकेज स्वहस्ते " +"स्थिर/निश्चित करण्याची गरज आहे(हरवलेल्या आर्चमुळे) " -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "HTTP सर्व्हरने विस्तार तांत्रिक मदत जोडली" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "अपरिचित दिनांक प्रकार/स्वरूप " +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"पॅकेज यादीची/सुचीची संचिका दूषित/खराब झालेली आहे. संचिका नाव नाही: पॅकेजकरीता क्षेत्र/" +"ठिकाण %s." -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "चुकीचा शीर्षक डाटा" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "'%s' प्रकारची निर्देशक संचिका सहाय्यकारी नाही" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "जोडणी अयशस्वी" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "%s स्टॅट करण्यात असमर्थ. " -#: methods/server.cc:654 -msgid "Internal error" -msgstr "अंतर्गत त्रुटी" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "अस्थायी स्मृतिकोष मध्ये विसंगत आवृतीकरण प्रणाली आहे" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "पुढिल आवृत्तीची गणती करीत आहे..." +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "%s (पॅकेज शोधतांना) प्रक्रिया करीत असतांना दोष आढळून आला" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "झाले" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "" +"अरेवा!, तुम्ही तर ह्या एपिटीच्या कार्यक्षमतेपेक्षाही पॅकेज नांवांच्या संख्येची मर्यादा ओलांडली " +"आहे." -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" +"अरेवा!, तुम्ही तर ह्या एपिटीच्या कार्यक्षमतेपेक्षाही आवृत्त्या संख्येची मर्यादा ओलांडली आहे." -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "अरेवा!, तुम्ही तर ह्या ऍप्टच्या कार्यक्षमतेपेक्षाही विवरण संख्येची मर्यादा ओलांडली आहे." + +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" +"अरेवा!, तुम्ही तर ह्या एपिटीच्या कार्यक्षमतेपेक्षाही अवलंबित/विसंबून असलेल्या संख्येची मर्यादा " +"ओलांडली आहे." -#: apt-private/private-list.cc:164 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "अवलंबित/विसंबून असणाऱ्या संचिकांची प्रक्रिया करीत असतांना पॅकेज %s %s सापडले नाही " -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "डिपेन्डन्सीज बरोबर/दुरूस्त करत आहे..." +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "%s उगम पॅकेज यादी सुरू करता येत नाही" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr "अयशस्वी/चूकीचे झाले." +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "पॅकेज याद्या वाचत आहोत" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "डिपेन्डन्सीज बरोबर करण्यास असमर्थ आहे " +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "तरतूद/पुरवलेल्या संचिका संग्रहित करीत आहे" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "आवृत्तीकृत संच कमीतकमी करण्यास असमर्थ" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "%s मध्ये लिहिण्यास असमर्थ " -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr "झाले" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "IO त्रुटी उगम निवडक संचयस्थानात संग्रहित होत आहे" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "हे बरोबर करण्यासाठी तुम्हाला `apt-get -f संस्थापना' प्रोग्राम चालू करावा लागेल." +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "विक्रेता गट %s मध्ये बोटाचे ठसे नाहीत" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "अनमेट डिपेंडन्सीज.-f.वापरून प्रयत्न करा " +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "संचयिका यादीत %s पार्शल हरवले आहे." -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/acquire.cc:91 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "ऑर्काइव्ह संचयिका %spartial गायब आहे." -#: apt-private/private-output.cc:234 +#: apt-pkg/acquire.cc:99 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr "[संस्थापित केले]" +msgid "Unable to lock directory %s" +msgstr "संचयिका यादीला कुलुप लावण्यात असमर्थ" -#: apt-private/private-output.cc:238 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "%li ची %li(%s राहिलेले) संचिका पुन:प्राप्त करीत आहे" + +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "%li ची %li संचिका पुन:प्राप्त करीत आहे" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 #, fuzzy -msgid "[installed,local]" -msgstr "[संस्थापित केले]" +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"काही अनुक्रमणिका संचयिका डाऊनलोड करण्यास असमर्थ,त्या दुर्लक्षित झाल्या, किंवा " +"त्याऐवजी जुन्या वापरल्या गेल्या." -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "तुम्ही तुमच्या उगमस्थान यादीत URI घाला" + +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr "[संस्थापित केले]" +#: apt-pkg/policy.cc:422 +#, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "पसंतीच्या संचिकेत अवैध माहितीसंच, पॅकेजला शीर्षक नाही " -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr "[संस्थापित केले]" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "%s पिनचा प्रकार समजलेला नाही" -#: apt-private/private-output.cc:249 +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "पिन करिता प्राधान्य/अग्रक्रम (किंवा शून्य)निर्देशीत केलेला नाही" + +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 #, c-format -msgid "[upgradable from: %s]" +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "%s फाईल उघडता येत नाही" + +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." msgstr "" +"ह्याचे आधिष्ठापन सुरु करण्यासाठी अत्यावश्यक तात्पुरते काढुन टाकण्याची गरज आहे%s पॅकेज " +"गुंतागुंतीमुळे/Pre-Depends पूर्व अवलंबित आवर्तन.हे नेहमीच वाईट असते, पण जर तुम्हाला ते खरोखर " +"करावयाचे असेल तर,APT::Force-LoopBreak पर्याय कार्यान्वित करा." -#: apt-private/private-output.cc:435 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "but %s is installed" -msgstr "पण %s संस्थापित झाले" +msgid "Line %u too long in source list %s." +msgstr "%2$s स्त्रोत सुचीमध्ये ओळ %1$u खूप लांब आहे." -#: apt-private/private-output.cc:437 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "सिडी-रॉम अनमाउंट होत आहे...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "but %s is to be installed" -msgstr "पण %s संस्थापित करायचे आहे" +msgid "Using CD-ROM mount point %s\n" +msgstr "सिडी-रॉमचे माउंट स्थान %s वापरुन\n" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "पण ते संस्थापित करण्याजोगे नाही" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "डिस्क/चकती करिता प्रतिक्षा करीत आहे...\n" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "पण ते आभासी पॅकेज आहे" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "सिडी-रॉम माउंट होत आहे...\n" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "पण ते संस्थापित केले नाही" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "ओळखत आहे..." -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "पण ते संस्थापित होणार नाही" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "ग्रहण केलेले नामदर्शक: %s \n" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr "किंवा" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "संचिकाच्या यादी/सूचीसाठी डिस्क/चकती बारकाईने तपासत आहे...\n" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "खालील पॅकेजेस मध्ये नमिळणाऱ्या निर्भरता/ डिपेन्डन्सीज आहेत:" +#: apt-pkg/cdrom.cc:734 +#, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" +"%zu पॅकेजेसची यादी/सूची, %zu स्त्रोताची यादी/सूची, %zu भाषांतर यादी/सूची आणि %zu " +"स्वाक्षऱ्या/सिगनेचर्स सापडल्या\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "खालील नविन पॅकेजेस संस्थापित होतील:" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "खालील नविन पॅकेजेस कायमची काढून टाकली जातील:" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "'%s' लेबल सापडले\n" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "खालील पॅकेजेस परत ठेवली गेली:" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "ते स्विकारण्याजोगे/वैध नांव नाही, पुन्हा प्रयत्न करा.\n" + +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"ह्या डिस्कला/चकतीला: म्हणतात\n" +"'%s'\n" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "खालील पॅकेजेस पुढिल आवृत्तीकृत होतील:" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "पॅकेज सूचींच्या प्रती तयार करित आहे..." -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "खालील पॅकेजेस पुढच्या आवृत्तीकृत होणार नाहीत:" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "नविन स्त्रोत सूची लिहित आहे\n" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "पुढिल ठेवलेली पॅकेजेस बदलतील:" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "ह्या डिस्क/चकती करिता स्त्रोत सूचीच्या प्रवेशिका आहेत: \n" -#: apt-private/private-output.cc:668 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "%s (due to %s) " -msgstr "%s (च्या मुळे %s)" +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"%s पॅकेज पुनः:अधिष्ठापित करण्याची गरज आहे, परंतु मला त्यासाठी ऑर्काइव्ह सापडू शकले नाही." -#: apt-private/private-output.cc:676 +#: apt-pkg/algorithms.cc:1086 msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -"धोक्याची सूचना:खालील जरूरीची पॅकेजेस कायमची काढून टाकली जातील।\n" -"तुम्हाला तुम्ही काय करत आहात हे कळेपर्यंत असं करता येणार नाही!" +"दोष,पॅकेज समस्या निवारक::निवारण करतांना अडथळा निर्माण झाला, ह्याचे कारण स्थगित " +"पॅकेजेस असू शकते." -#: apt-private/private-output.cc:707 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu पुढे आवृत्तीकृत केले, %lu नव्याने संस्थापित केले," +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "अडचणी दूर करण्यास असमर्थ, तुम्ही तुटलेले पॅकेज घेतलेले आहे." -#: apt-private/private-output.cc:711 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu पुनर्संस्थापित केले," +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: apt-private/private-output.cc:713 -#, c-format -msgid "%lu downgraded, " -msgstr "%lu मागील आवृत्तीकृत केले," +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: apt-private/private-output.cc:715 +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" + +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" + +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" + +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu कायमचे काढून टाकण्यासाठी आणि %lu पुढच्या आवृत्तीकृत झालेली नाही.\n" +msgid "Unable to parse package file %s (1)" +msgstr "%s (1) पॅकेज फाईल पार्स करण्यात असमर्थ" -#: apt-private/private-output.cc:719 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu संपूर्ण संस्थापित किंवा कायमची काढून टाकलेली नाही.\n" +msgid "Unable to parse package file %s (2)" +msgstr "%s (२) पॅकेज फाईल पार्स करण्यात असमर्थ" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "" +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "%s (1) पॅकेज फाईल पार्स करण्यात असमर्थ" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "लक्षात घ्या,%s ऐवजी %s ची निवड करत आहे \n" + +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" msgstr "" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "होय" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "%s डायव्हर्जन फाईलमध्ये अवैध ओळ आहे:" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "%s (1) पॅकेज फाईल पार्स करण्यात असमर्थ" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "सुधारित आवृत्तीचा विधान आर्ग्युमेंटस घेऊ शकत नाही." +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "स्त्रोत सुची %s (यूआरआय पार्स) मध्ये %lu वाईट/व्यंग रेषा" -#: apt-private/private-update.cc:90 -#, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/sourcelist.cc:170 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "स्त्रोत सुची %s (डीआयएसटी पार्स) मध्ये %lu वाईट/व्यंग रेषा" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: apt-pkg/sourcelist.cc:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "स्त्रोत सुची %s (डिआयएसटी) मध्ये %lu वाईट/व्यंग रेषा" -#: apt-private/private-show.cc:156 -#, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/sourcelist.cc:184 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "स्त्रोत सुची %s (डीआयएसटी पार्स) मध्ये %lu वाईट/व्यंग रेषा" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/sourcelist.cc:190 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "स्त्रोत सुची %s (डीआयएसटी पार्स) मध्ये %lu वाईट/व्यंग रेषा" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "अंतर्गत त्रुटी, तुटलेल्या पॅकेजेस बरोबर संस्थापित पॅकेजला आवाहन केले गेले/बोलावले गेले!" +#: apt-pkg/sourcelist.cc:193 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "स्त्रोत सुची %s (डीआयएसटी पार्स) मध्ये %lu वाईट/व्यंग रेषा" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "पॅकेजेस कायमची काढायची आहेत पण रिमूव्ह अकार्यक्षम केले आहे" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "स्त्रोत सुची %2$s (यूआरआय) मध्ये %1$lu वाईट/व्यंग रेषा" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "अंतर्गत त्रुटी,क्रम अजून संपला नाही" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "स्त्रोत सुची %2$s (डिआयएसटी) मध्ये %1$lu वाईट/व्यंग रेषा" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "किती विचित्र...आकार जुळत नाहीत, ईमेल apt@packages.debian.org" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "स्त्रोत सुची %2$s (यूआरआय पार्स) मध्ये %1$lu वाईट/व्यंग रेषा" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "अर्काईव्हजच्या %sB/%sB घेण्याची गरज आहे\n" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "स्त्रोत सुची %2$s (absolute dist) मध्ये %1$lu वाईट/व्यंग रेषा" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "अर्काईव्हज%sB घेण्याची गरज आहे.\n" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "स्त्रोत सुची %2$s (डीआयएसटी पार्स) मध्ये %1$lu वाईट/व्यंग रेषा" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "या क्रियेनंतर, %sB एवढी अधिक डिस्क जागा वापरली जाईल.\n" +msgid "Opening %s" +msgstr "%s उघडत आहे" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "या क्रियेनंतर, %sB डिस्क जागा मोकळी होईल.\n" +msgid "Malformed line %u in source list %s (type)" +msgstr "स्त्रोत सुची %2$s (प्रकार) मध्ये %1$u वाईट/व्यंग रेषा" -#: apt-private/private-install.cc:200 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "You don't have enough free space in %s." -msgstr "%s मध्ये तुमच्याकडे पुरेशी जागा नाही." +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "%s स्त्रोत सुचीमध्ये %u रेषेवर '%s' प्रकार माहित नाही " -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "काही अडचणी आहेत आणि --force-yes शिवाय -y वापरला गेला" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "%s स्त्रोत सुचीमध्ये %u रेषेवर '%s' प्रकार माहित नाही " -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "क्षुल्लक फक्त निर्देशित केले आहे पण हे क्षुल्लक कृति/ऑपरेशन नाही." +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "'%s' साठी '%s' आवृत्ती सापडली नाही" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "हो, मी म्ह्टल्याप्रमाणे करा!" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "'%s' साठी '%s' आवृत्ती सापडली नाही" -#: apt-private/private-install.cc:222 -#, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"तुम्ही संभाव्य काहीतरी नुकसानकारक करणार होतात.\n" -"पुढे '%s' उक्ती मध्ये लिहिणार \n" -" ?] " +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "%s कार्य सापडू शकले नाही" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "व्यत्यय/बंद करा." +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "%s पॅकेज सापडू शकले नाही" -#: apt-private/private-install.cc:243 -#, fuzzy -msgid "Do you want to continue?" -msgstr "तुम्हाला पुढे जायचे आहे [Y/n]? " +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "%s पॅकेज सापडू शकले नाही" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "काही संचिका डाऊनलोड करण्यास असमर्थ" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" -#: apt-private/private-install.cc:320 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"काही आर्काइव्हज आणण्यास असमर्थ, कदाचित apt-get रन करुन अद्ययावत करा किंवा --fix- " -"बरोबर प्रयत्न कराहरवलेले/गहाळ?" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -"--fix- सापडत नाही आणि माध्यम/मिडिया अदलाबदल हे सध्या तांत्रिक मदत देऊ शकत नाही" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "न सापडणारी पॅकेजेस नीट करण्यास असमर्थ." +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "संस्थापन खंडित करत आहे." +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -msgstr[1] "" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" msgstr "" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "आपण या गोष्टी काढून टाकता नये, ऑटोरिमूव्हर सुरू करता येत नाही" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" msgstr "" -"हूं, AutoRemover ने काहीतरी नष्ट केल्याचे दिसतेय, खरेतर असे व्हायला नको\n" -"कृपया apt कडे बग रिपोर्ट दाखल करा. " -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "खालील माहिती परिस्थिती निवळण्यासाठी मदत ठरू शकेल:" +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "%s निवडक भाग सापडत नाही" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "अंतर्गत त्रुटी, AutoRemoverने स्टफला तोडले" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "फक्त वाचण्यासाठी कुलूप संचिका %s साठी कुलूपबंदचा वापर करीत नाही" -#: apt-private/private-install.cc:513 -#, fuzzy -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "खालील नवीन पॅकेजेस स्वयंचलितपणे संस्थापित झाली होती व आता आवश्यक नाहीत:" -msgstr[1] "खालील नवीन पॅकेजेस स्वयंचलितपणे संस्थापित झाली होती व आता आवश्यक नाहीत:" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "%s कुलूप फाईल उघडता येत नाही" -#: apt-private/private-install.cc:517 -#, fuzzy, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "खालील नवीन पॅकेजेस स्वयंचलितपणे संस्थापित झाली होती व आता आवश्यक नाहीत:" -msgstr[1] "खालील नवीन पॅकेजेस स्वयंचलितपणे संस्थापित झाली होती व आता आवश्यक नाहीत:" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "%s nfs(नेटवर्क फाईल सिस्टीम) माऊंटेड कुलुप फाईल ला कुलुप /बंद करता येत नाही" -#: apt-private/private-install.cc:519 -#, fuzzy -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "ती काढून टाकण्यासाठी 'apt-get autoremove' वापरा." -msgstr[1] "ती काढून टाकण्यासाठी 'apt-get autoremove' वापरा." +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "%s कुलुप मिळवता येत नाही" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -"तुम्हाला कदाचित 'apt-get -f install'(एपीटी-गेट -एफ संस्थापन') प्रोग्राम चालू करावा " -"लागेल'यात बदल करण्यासाठी:" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -"अनमेट डिपेंडन्सीज.एपीटी-गेट -एफ संस्थापन ('apt-get -f install') पॅकेजशिवाय प्रयत्न करा " -"(किंवा पर्याय सांगा)." -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -"काही पॅकेजेस संस्थापित होत नाहीत. याचा अर्थ असा आहे की तुम्ही\n" -"अशक्य परिस्थितीची विनंती केली होती. किंवा जर तुम्ही अस्थिर\n" -"विभागणी असणारी पण हवी असणारी, तयार केली नसलेली पॅकेजेस वापरत असाल \n" -"किंवा ती येणाऱ्यांपैकी बाहेर हलविली असतील." -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "तुटलेली पॅकेजेस" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "खालील अतिरिक्त पॅकेजेस संस्थापित होतील:" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "%s उपक्रियेला सेगमेंटेशन दोष प्राप्त झाला." -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "सुचवलेली पॅकेजेस:" +#: apt-pkg/contrib/fileutl.cc:826 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "%s उपक्रियेला सेगमेंटेशन दोष प्राप्त झाला." -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "शिफारस केलेली पॅकेजेस:" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "%s उपक्रियेने (%u) त्रुटी कोड दिलेला आहे" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "%s सोडून देत आहे, ते आधिच संस्थापित केले आहे आणि पुढिल आवृत्ती निश्चित केलेली नाही.\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "%s उपक्रिया अचानकपणे बाहेर पडली" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:913 #, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "%s सोडून देत आहे, ते आधिच संस्थापित केले आहे आणि पुढिल आवृत्ती निश्चित केलेली नाही.\n" +msgid "Problem closing the gzip file %s" +msgstr "फाईल बंद करण्यात अडचण" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "%s चे पुनर्संस्थापन शक्य नाही, हे डाऊनलोड करता येत नाही.\n" +msgid "Could not open file %s" +msgstr "%s फाईल उघडता येत नाही" -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s ही आधीच नविन आवृत्ती आहे.\n" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "%s साठी पाईप उघडता येत नाही" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "आयपीसी उपक्रिया तयार करण्यास असमर्थ" + +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "दाबक(संकलितकर्ता) कर्यान्वित करण्यास असमर्थ" + +#: apt-pkg/contrib/fileutl.cc:1514 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "%s साठी %s (%s) निवडलेली आवृत्ती.\n" +msgid "read, still have %llu to read but none left" +msgstr "वाचा, %lu अजूनही वाचण्यासाठी आहे पण आता काही उरली नाही" -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "%s साठी %s (%s) निवडलेली आवृत्ती.\n" +msgid "write, still have %llu to write but couldn't" +msgstr "लिहा, %lu अजूनही लिहिण्यासाठी आहे पण लिहिता येत नाही" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/fileutl.cc:1915 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "%s पॅकेज संस्थापित केलेले नाही,म्हणून काढले नाही\n" +msgid "Problem closing the file %s" +msgstr "फाईल बंद करण्यात अडचण" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/fileutl.cc:1927 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "%s पॅकेज संस्थापित केलेले नाही,म्हणून काढले नाही\n" +msgid "Problem renaming the file %s to %s" +msgstr "संचिकेची syncing समस्या" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1938 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "फाईल अनलिंकिंग करण्यात अडचण" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "धोक्याची सूचना:खालील पॅकेजेस् प्रमाणित करु शकत नाही! " +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "संचिकेची syncing समस्या" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "प्रमाणीकरणाची धोक्याची सूचना दुर्लक्षित करा.\n" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... चूक/त्रुटी!" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "काही पॅकेजेसचे प्रमाणिकरण होऊ शकत नाही" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... झाले" -#: apt-private/private-download.cc:50 -#, fuzzy -msgid "Install these packages without verification?" -msgstr "पडताळून पाहिल्याशिवाय ही पॅकेजेस संस्थापित करायची का [हो/नाही]?" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-sources.cc:58 +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "%s ला पुनर्नामांकन %s करण्यास असमर्थ " - -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%c%s... %u%%" +msgstr "%c%s... झाले" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "रिकामी फाईल mmap करता येणार नाही" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "दाबा" +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "%s साठी पाईप उघडता येत नाही" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "मिळवा:" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "mmap चे %lu बाईटस् करता येणार नाहीत" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "आय.जी.एन." +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "%s उघडण्यास असमर्थ" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "दोष इ.आर.आर." +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "जारी करण्यास करण्यास असमर्थ" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "%s (%sB/s) मध्ये %sB मिळविला\n" +msgid "Couldn't make mmap of %lu bytes" +msgstr "mmap चे %lu बाईटस् करता येणार नाहीत" -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr "[काम करत आहे]" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "फाईल छोटी करणे असफल" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/mmap.cc:341 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -"माध्यम बदल: कृपया नाव घातलेली सीडी घाला\n" -"%s'\n" -"'%s' ड्राईव्ह मध्ये व एंटर कळ दाबा\n" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "No mirror file '%s' found " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "%s फाईल उघडता येत नाही" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "%s फाईल उघडता येत नाही" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "%s माऊंट पॉईंट स्टॅट करण्यास असमर्थ" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "सीडी-रॉम स्टॅट करण्यास असमर्थ" + +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "[Mirror: %s]" -msgstr "" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "संक्षिप्तरुपाचा माहित नसलेला प्रकार: '%c'" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "उपक्रियेचा आयपीसी वाहिनी तयार करण्यास असमर्थ" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "%s संरचना फाईल उघडत आहे" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "जोडणी अकाली बंद झाली" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "रचनेच्या नियमांचा दोष %s:%u: ब्लॉक नावाशिवाय सुरू होतो." -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "चूकीचे मूलभूत निश्चितीकरण!" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "रचनेच्या नियमांचा दोष : %s:%u: मालफॉर्मड् टॅग" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "पुढे जाण्यासाठी एंटर दाबा." +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "रचनेच्या नियमांचा दोष %s:%u: मुल्यांच्या नंतर अधिक जंक" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "पुर्वी डाऊनलोड केलेल्या .deb संचयिका आपल्याला खोडून टाकायच्या आहेत का?" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "रचनेच्या नियमांचा दोष %s:%u: दिशादर्शक फक्त उच्च पातळीवर केले जाऊ शकतात" -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "काही त्रुटी ह्या उघडत असताना घडल्या.मी संरचित करणार आहे" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "रचनेच्या नियमांचा दोष %s:%u: खूपच एकात एक इनक्लूडस्" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "पॅकेजेस जी संस्थापित झाली आहे.याचा निकाल दुप्पट त्रुटी म्हणून होऊ शकतो" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "रचनेच्या नियमांचा दोष %s:%u: ह्या पासून समाविष्ट " -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "किंवा डिपेंडन्सीज नसल्यामुळे त्रुटी झाल्या. हे ठीक आहे, फक्त त्रुटी" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "नियम रचनेचा दोष %s:%u: '%s' दिशादर्शक असहाय्यकारी" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "" -"ह्यावर संदेश खूप महत्त्वाचे आहेत.कृपया त्यांना नीट करा व संस्थापित करा पुन्हा चालवा/सुरू करा" +#: apt-pkg/contrib/configuration.cc:900 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "रचनेच्या नियमांचा दोष %s:%u: दिशादर्शक फक्त उच्च पातळीवर केले जाऊ शकतात" -#: dselect/update:30 -msgid "Merging available information" -msgstr "उपलब्ध माहितीचे एकत्रीकरण करत आहे" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "नियम रचनेचा दोष %s:%u: फाईलच्या अंती अधिक जंक" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "सुटा करण्यासाठी बोलावलेला/आणलेला सांधा(ड्रापनोड)अजुनही जुळलेलाच सांधा(लिंकनोड) आहे" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "संस्थापन खंडित करत आहे." + +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "आदेश रेखा पर्याय '%c' [पासून %s] हे माहित नाही." + +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "आदेश रेखा पर्याय %s नीट समजला नाही" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "हॅश एलिमेंट शोधूने काढण्यास असमर्थ!" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "आदेश रेखा पर्याय %s हे बूलियन नाही" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "नेमून दिलेल्यात फेरबदल करण्यास अयशस्वी" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "पर्याय %s साठी ऑर्गुमेंट पाहिजे" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "AddDiversion/ऍड डायव्हर्जन मध्ये आंतरिक दोष" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "पर्याय %s: संरचितेच्या यादीतील कलमांचा तपशीलाला असलेच पाहिजे ते =<मूल्य>." -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "डायव्हर्जन पुनः लिहिण्यास प्रयत्न करत आहे,%s -> %s and %s/%s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "%s पर्याय ला पूर्णांक ऑर्गुमेंट पाहिजे,'%s' नको" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "%s -> %s डायव्हर्जन दुप्पट मिळवा" +msgid "Option '%s' is too long" +msgstr "'%s' पर्याय खूप लांब आहे" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "%s/%s संचिरित संचिकाची दुसरी प्रत/नक्कल" +msgid "Sense %s is not understood, try true or false." +msgstr "%s संवेदना हे समजत नाही, चूक की बरोबर चा प्रयत्न करा." -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The path %s is too long" -msgstr "मार्ग %s हा खूप लांब आहे" +msgid "Invalid operation %s" +msgstr "%s अवैध क्रिया" -#: apt-inst/extract.cc:132 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unpacking %s more than once" -msgstr "%s एकापेक्षा जास्त वेळा उघडत आहे" +msgid "Installing %s" +msgstr "%s संस्थापित होत आहे" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The directory %s is diverted" -msgstr "%s संचिका डायव्हर्ट केली आहे/वळवली आहे" +msgid "Configuring %s" +msgstr "%s संरचित होत आहे" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "डायव्हर्जन इच्छित %s/%s मध्ये लिहिण्याचा पॅकेज प्रयत्न करत आहे" +msgid "Removing %s" +msgstr "%s काढून टाकत आहे" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "डायव्हर्जन मार्ग हा खूप लांब आहे" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "%s संपूर्ण काढून टाकले" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to stat %s" -msgstr "%s स्टेट करण्यास असमर्थ" +msgid "Noting disappearance of %s" +msgstr "" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Failed to rename %s to %s" -msgstr "%s ला पुनर्नामांकन %s करण्यास असमर्थ " +msgid "Running post-installation trigger %s" +msgstr "संस्थापना-पश्चात ट्रिगर %s चालवत आहे" -#: apt-inst/extract.cc:249 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "%s संचिका ही संचिका नसलेल्या संचिकेबरोबर बदललेली आहे" +msgid "Directory '%s' missing" +msgstr "'%s' संचयिका गहाळ आहे" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "नोडचे त्याच्या हॅश बकेटमध्ये/बादलीत स्थान निश्चित करण्यास असमर्थ" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "%s फाईल उघडता येत नाही" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "मार्ग खूप लांब आहे" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "%s तयार करित आहे" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "%s च्या आवृत्तीशी पुनः लिहिलेल्या पॅकेज जुळत नाही" +msgid "Unpacking %s" +msgstr "%s सुटे/मोकळे करीत आहे " -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "File %s/%s, %s पॅकेज मधल्या एका वर पुनर्लिखित होते" +msgid "Preparing to configure %s" +msgstr "%s संरचने साठी तयार करत आहे" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Unable to stat %s" -msgstr "%s स्टॅट करण्यास असमर्थ" +msgid "Installed %s" +msgstr "%s संस्थापित झाले" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to write file %s" -msgstr "%s फाईल मध्ये लिहिण्यास असमर्थ" +msgid "Preparing for removal of %s" +msgstr "%s ला काढून टाकण्यासाठी तयारी करत आहे" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Failed to close file %s" -msgstr "%s फाईल बंद करण्यास असमर्थ" +msgid "Removed %s" +msgstr "%s काढून टाकले" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "हा वैध DEB अर्काईव्ह नाही,'%s' मेंबर उपलब्ध नाही" +msgid "Preparing to completely remove %s" +msgstr "%s संपूर्ण काढून टाकण्याची तयारी करत आहे" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "अंतर्गत त्रुटी,%s मेंबर शोधू शकत नाही" +msgid "Completely removed %s" +msgstr "%s संपूर्ण काढून टाकले" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "अनपार्सेबल नियंत्रण फाईल" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "अयोग्य अर्काईव्ह ओळख सही" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "%s मध्ये लिहिण्यास असमर्थ " -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "अर्काईव्ह मेंबर शीर्षक वाचण्यास त्रुटी" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:96 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "अयोग्य अर्काईव्ह मेंबर शीर्षक" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "अयोग्य अर्काईव्ह मेंबर शीर्षक" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "अर्काईव्ह खूप छोटे आहे" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "अर्काईव्ह शीर्षके वाचणे असफल" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "पाईप तयार करण्यास असमर्थ" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "exec gzip करण्यास असमर्थ" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "बिघडलेली अर्काईव्हज" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "टार(टेपअर्काईव्ह) चेकसम चुकला, बिघडलेली अर्काईव्ह" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "अपरिचित TAR शीर्षक प्रकार %u, मेंबर %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "संचयिका यादीला कुलुप लावण्यात असमर्थ" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/nb.po b/po/nb.po index c08ea15a7..b4507c81e 100644 --- a/po/nb.po +++ b/po/nb.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 1.0.5\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2010-09-01 21:10+0200\n" "Last-Translator: Hans Fredrik Nordhaug <hans@nordhaug.priv.no>\n" "Language-Team: Norwegian Bokmål <i18n-nb@lister.ping.uio.no>\n" @@ -22,3183 +22,3184 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Virtaal 0.6.1\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "Oversiktsfil av typen «%s» støttes ikke" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "Klarer ikke å lese %s" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Klarer ikke å endre %s" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "Klarer ikke finne informasjonom %s." - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" - -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Kjører dpkg" - -#: apt-pkg/init.cc:146 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Pakkesystemet «%s» støttes ikke" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Klarer ikke bestemme en passende pakkesystemtype" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Pakken %s versjon %s har et uinnfridd avhengighetsforhold:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Skrev %i poster.\n" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Antall pakkenavn: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Skrev %i poster med %i manglende filer.\n" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Antall pakkestrukturer: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Skrev %i poster med %i feile filer.\n" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Vanlige pakker: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "Skrev %i poster med %i manglende filer og %i feile filer.\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Rent virtuelle pakker: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "Klarte ikke finne autentiseringsoppføring for: %s" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Enkle virtuelle pakker: " -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "Hashsummen stemmer ikke for: %s" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Sammensatte virtuelle pakker: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Finner ikke metode-driveren %s." +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Mangler: " -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Sjekk om pakken «dpkg-dev» er installert.\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Antall unike versjoner: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Metoden %s startet ikke korrekt" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Antall unike beskrivelser: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Sett inn disken merket «%s» i lagringsenheten «%s» og trykk Enter." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Antall avhengighetsforhold: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Pakkelista eller tilstandsfila kunne ikke fortolkes eller åpnes." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Antall forhold versjon/fil: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "" -"Det kan hende du vil kjøre «apt-get update» for å rette på disse problemene" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Antall forhold beskrivelse/fil: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Kan ikke lese kildlista." +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Antall tilbudte tilknyttinger: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Tomt pakkelager" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Antall utvidede strenger: " -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Pakkens lagerfil er ødelagt" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Total plass for avhengighetsforhold/versjoner: " -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Pakkens lagerfil er av feil versjon (samvirker ikke)" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Plass brukt av slark: " -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "Pakkens lagerfil er ødelagt" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Samlet mengde redegjort plass: " -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Denne APT støtter ikke versjonssystemet «%s»" +msgid "Package file %s is out of sync." +msgstr "Pakkefila %s er ikke oppdatert." -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Pakkelageret ble bygd for en annen arkitektur" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Fant ingen pakker" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Avhenger av" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Du må oppgi minst ett søkemønster" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Forutsetter" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Foreslår" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "Klarer ikke å finne pakken %s" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Anbefaler" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Pakkefiler:" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Er i konflikt med" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" +"Mellomlageret er ikke oppdatert, kan ikke kryssreferere til en pakkefil" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Erstatter" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Låste pakker:" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Nuller" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(ikke funnet)" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Ødelegger" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Installert: " -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Forbedrer" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Kandidat: " -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "viktig" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(ingen)" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "påkrevet" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Pakke låst til: " -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "vanlig" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Versjonstabell:" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "valgfri" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s for %s kompilert på %s %s\n" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "tillegg" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Bruk: apt-cache [valg] kommando\n" +" apt-cache [valg] add fil1 [fil2 ...]\n" +" apt-cache [valg] showpkg pakke1 [pakke2 ...]\n" +" apt-cache [valg] showsrc pakke1 [pakke2 ...]\n" +"\n" +"apt-cache er et lavnivå-verktøy, som brukes til å håndtere APT sine binære\n" +"lagerfiler, og spørre dem om informasjon.\n" +"\n" +"Kommandoer:\n" +" add - Legg en fil til kildelageret\n" +" gencaches - Bygg lagrene for både pakke og kildekode\n" +" showpkg - Vis overordnet informasjon om en enkelt pakke\n" +" showsrc - Vis data om kildekoden\n" +" stats - Vis en enkel statistikk\n" +" dump - Vis fila med liste over tilgjengelige pakker i kompakt form\n" +" dumpavail - Send hele lista over tilgjengelige pakker til standard ut\n" +" unmet - Vis uinnfridde avhengighetsforhold\n" +" search - Søk i pakkelista etter et regulært uttrykkr\n" +" show - Vis et lesbart oppslag for pakken\n" +" showauto - Vis en liste med automatisk installerte pakker\n" +" depends - Vis rå informasjon om avhengighetsforholdene for pakken\n" +" rdepends - Vis informasjon om de reverserte avhengighetsforholdene for " +"pakken\n" +" pkgnames - List alle pakkenavn på systemet\n" +" dotty - Lag pakke-grafer for GraphViz\n" +" xvcg - Lag pakke-grafer for xvcg\n" +" policy - Vis regelinnstillingerr\n" +"\n" +"Valg:\n" +" -h Denne hjelpeteksten\n" +" -p=? Pakkelageret.\n" +" -s=? Kildekodelageret.\n" +" -q Ikke vis framdrift.\n" +" -i Vis bare viktige avhengighetsforhold for kommandoen «unmet».\n" +" -c=? Les denne innstillingsfila.\n" +" -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n" +"Les manualsidene apt-cache(8) og apt.conf(5) for mer informasjon.\n" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Oversiktsfil av typen «%s» støttes ikke" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Oppgi et navn for disken, for eksempel «Debian 5.0.3 Disk 1»" + +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Sett inn en disk i lagringsenheten og trykk Enter" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Regex compilation error - %s" -msgstr "Kompileringsfeil i regulært uttrykk - %s" +msgid "Failed to mount '%s' to '%s'" +msgstr "Klarte ikke montere «%s» på «%s»" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Lageret har et uoverensstemmende versjonssystem" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Feil oppsto under behandling av %s (FindPkg)" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Gjenta denne prosessen for resten av CD-ene i ditt sett." -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "Jøss, du har overgått antallet pakkenavn denne APT klarer." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Ikke parvise argumenter" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Jøss, du har overgått antallet versjoner denne APT klarer." +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"Bruk: apt-config [innstillinger] kommando\n" +"\n" +"apt-config er et enkelt verktøy til å lese APTs innstillingsfil\n" +"\n" +"Kommandoer:\n" +" shell - Skallmodus\n" +" dump - Vis innstillingene\n" +"\n" +"Innstillinger:\n" +" -h Denne hjelpeteksten\n" +" -c=? Les denne innstillingsfila.\n" +" -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Jøss, du har overgått antallet beskrivelser denne APT klarer." +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Klarte ikke finne noen pakken med regex «%s»" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "Jøss, du har overgått antallet avhengighetsforhold denne APT klarer." +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Klarte ikke finne noen pakken med regex «%s»" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "Fant ikke pakken %s %s ved behandling av filkrav" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Klarte ikke finne noen pakken med regex «%s»" -#: apt-pkg/pkgcachegen.cc:1211 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Klarte ikke finne informasjon om %s - lista over kildekodepakker" - -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Leser pakkelister" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Velger «%s» som kildepakke istedenfor «%s»\n" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Samler inn filtilbud" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Ignorer utilgjengelig versjon «%s» av pakke «%s»" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Unable to write to %s" -msgstr "Kan ikke skrive til %s" +msgid "Couldn't find package %s" +msgstr "Klarte ikke å finne pakken %s" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "IO-feil ved lagring av kildekode-lager" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s satt til manuell installasjon.\n" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s satt til automatisk installasjon.\n" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Intern feil, problemløser ødela noe" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Klarer ikke å låse nedlastingsmappa" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Du må angi minst en pakke du vil ha kildekoden til" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "klarte ikke å endre navnet, %s (%s -> %s)." +msgid "Unable to find a source package for %s" +msgstr "Klarer ikke å finne en kildekodepakke for %s" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Hashsummen stemmer ikke" +#: cmdline/apt-get.cc:786 +#, c-format +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"MERK: «%s»-pakker blir vedlikeholdt i versjonskontrollsystemet «%s» på:\n" +"%s\n" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Feil størrelse" - -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Ugyldig operasjon %s" - -#: apt-pkg/acquire-item.cc:1573 -#, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" - -#: apt-pkg/acquire-item.cc:1589 +#: cmdline/apt-get.cc:791 #, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Klarer ikke å fortolke Release-fila %s" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "" -"Det er ingen offentlig nøkkel tilgjengelig for de følgende nøkkel-ID-ene:\n" - -#: apt-pkg/acquire-item.cc:1669 -#, c-format msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" +"Bruk:\n" +"bzr get %s\n" +"for å hente siste (muligens ikke utgitte) oppdateringer for pakken.\n" -#: apt-pkg/acquire-item.cc:1691 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Konflikt mellom distribusjoner: %s (forventet %s men fant %s)" - -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:843 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"En feil oppstod under signaturverifisering. Depotet er ikke oppdatert og den " -"forrige indeksfilen vil bli brukt. GPG-feil: %s: %s\n" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Hopper over allerede nedlastet fil «%s»\n" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "GPG error: %s: %s" -msgstr "GPG-feil: %s: %s" +msgid "Couldn't determine free space in %s" +msgstr "Klarte ikke bestemme ledig plass i %s" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:882 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"Klarte ikke å finne en fil for pakken %s. Det kan bety at du må ordne pakken " -"selv (fordi arkitekturen mangler)." +msgid "You don't have enough free space in %s" +msgstr "Du har ikke nok ledig plass i %s" -#: apt-pkg/acquire-item.cc:1925 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Trenger å skaffe %sB av %sB fra kildekodearkivet.\n" -#: apt-pkg/acquire-item.cc:1983 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "Oversiktsfilene er ødelagte. Feltet «Filename:» mangler for pakken %s." +msgid "Need to get %sB of source archives.\n" +msgstr "Trenger å skaffe %sB fra kildekodearkivet.\n" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Utgivers blokk %s inneholder ikke no fingeravtrykk" +msgid "Fetch source %s\n" +msgstr "Skaffer kildekode %s\n" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, c-format -msgid "List directory %spartial is missing." -msgstr "Listemappa %spartial mangler." +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Klarte ikke å skaffe alle arkivene." -#: apt-pkg/acquire.cc:91 -#, c-format -msgid "Archives directory %spartial is missing." -msgstr "Arkivmappa %spartial mangler." +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Nedlasting fullført med innstillinga «bare nedlasting»" -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Unable to lock directory %s" -msgstr "Klarte ikke låse mappa %s" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Omgår utpakking av allerede utpakket kilde i %s\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Henter fil %li av %li (%s gjenværende)" +msgid "Unpack command '%s' failed.\n" +msgstr "Utpakkingskommandoen «%s» mislyktes.\n" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Henter fil %li av %li" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Sjekk om pakken «dpkg-dev» er installert.\n" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Klarte ikke å skaffe %s %s\n" +msgid "Build command '%s' failed.\n" +msgstr "Byggekommandoen «%s» mislyktes.\n" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Klarte ikke å laste ned alle oversiktfilene. De ble ignorerte, eller gamle " -"ble brukt isteden. " +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Barneprosessen mislyktes" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "" -"Beklager, du må legge inn noen kilder (nettadresser) i din «sources.list»." +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "Du må angi minst en pakke du vil sjekke «builddeps» for" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-pkg/policy.cc:422 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Ugyldig oppslag i foretrekksfila %s, manglende pakkehode" +msgid "Unable to get build-dependency information for %s" +msgstr "Klarer ikke å skaffe informasjon om bygge-avhengighetene for %s" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Did not understand pin type %s" -msgstr "Forsto ikke spikring av typen %s" +msgid "%s has no build depends.\n" +msgstr "%s har ingen avhengigheter.\n" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Ingen prioritet (eller null) spesifisert for pin" +#: cmdline/apt-get.cc:1272 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "Kravet %s for %s kan ikke oppfylles fordi pakken %s ikke finnes" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "Kravet %s for %s kan ikke oppfylles fordi pakken %s ikke finnes" + +#: cmdline/apt-get.cc:1313 +#, c-format +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -"Klarte ikke gjennomføre umiddelbar konfigurasjon av «%s». Se man 5 apt.conf " -"under APT::Immediate-Configure for detaljer. (%d)" +"Klarte ikke å tilfredsstille %s avhengighet for %s: den installerte pakken " +"%s er for ny" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:1352 #, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Klarte ikke åpne fila «%s»" - -#: apt-pkg/packagemanager.cc:583 -#, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" -"Den forestående installasjon må midlertidig fjerne den meget viktige pakken " -"%s pga. en konflikt/forutsettelses-løkke. Dette er ofte stygt, men hvis du " -"virkelig vil det, så bruk innstillingen APT::Force-LoopBreak." - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Linje %u i kildelista %s er for lang" +"Kravet %s for %s kan ikke oppfylles fordi det ikke finnes noen tilgjengelige " +"versjoner av pakken %s som oppfyller versjonskravene" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Avmonterer CD-ROM ...\n" +#: cmdline/apt-get.cc:1358 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "Kravet %s for %s kan ikke oppfylles fordi pakken %s ikke finnes" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Bruker CD-ROM monteringspunkt %s\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Venter på CD-en...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Monterer CD-ROM...\n" - -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Indentifiserer..." +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Klarte ikke å tilfredsstille %s avhengighet for %s: %s" -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Stored label: %s\n" -msgstr "Lagret merkelapp: %s \n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Klarte ikke å tilfredstille bygg-avhengighetene for %s." -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Leter gjennom CD for indeksfiler...\n" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Klarte ikke å behandle forutsetningene for bygging" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Fant %zu pakkeindekser, %zu kildeindekser, %zu oversettelsesindekser og %zu " -"signaturer\n" +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Kobler til %s (%s)" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"Klarte ikke finne noen Package-filer. Kanskje dette ikke er en Debian Disc " -"eller du har valgt feil arkitektur?" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Støttede moduler:" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Fant merkelapp «%s»\n" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Det er ikke et gyldig navn, prøv igjen.\n" - -#: apt-pkg/cdrom.cc:817 -#, c-format +#: cmdline/apt-get.cc:1633 +#, fuzzy msgid "" -"This disc is called: \n" -"'%s'\n" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"CD-en er kalt: \n" -"«%s»\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopierer pakkelister..." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Skriver ny kildeliste\n" +"Bruk: apt-get [valg] kommando\n" +" apt-get [valg] install|remove pakke1 [pakke2 ...]\n" +" apt-get [valg] source pakke1 [pakke2 ...]\n" +"\n" +"apt-get er et enkelt grensesnitt som kan brukes fra kommandolinja\n" +"for å laste ned og installere pakker. De mest brukte kommandoene \n" +"er «update» og «install».\n" +"\n" +"Kommandoer:\n" +" update - Hent nye pakkelister\n" +" upgrade - Utfør en oppgradering\n" +" install - Installér nye pakker (Pakke er «foo», ikke «foo.deb»)\n" +" remove - Fjern pakker\n" +" autoremove - Fjern alle automatisk ubrukte pakker\n" +" purge - Fjern og rydd opp etter pakker\n" +" source - Last ned kildekode fra arkivene\n" +" build-dep - Sett opp bygge-forutsetninger for kildekodepakker\n" +" dist-upgrade - Oppgradér utgave, les apt-get(8)\n" +" dselect-upgrade - Følg «dselect» sine anbefalinger\n" +" clean - Slett nedlastede arkivfiler\n" +" autoclean - Slett gamle nedlastede arkivfiler\n" +" check - Se etter om det finnes brutte avhengigheter\n" +" markauto - Merk de oppgitte pakkene som automatisk installert\n" +" unmarkauto - Merk de oppgitte pakkene som manuelt installert\n" +"\n" +"Valg:\n" +" -h Denne hjelpteksten.\n" +" -q Loggbar tilbakemelding - ikke vis framdrift\n" +" -qq Ingen tilbakemelding - bortsett fra feilmeldinger\n" +" -d Bare nedlasting - IKKE installér eller pakk ut arkivfilene\n" +" -s Simulering - bare simuler kommandoen\n" +" -y Anta Ja til alle forespørsler uten å spørre\n" +" -f Prøv å fortsette hvis integritetstesten mislykkes\n" +" -m Prøv å fortsette når pakker mangler\n" +" -u Vis liste med oppgraderte pakker\n" +" -b Bygg pakken etter at kildekoden er lastet ned\n" +" -V Vis fullstendige versjonsnummere\n" +" -c=? Les denne innstillingsfila\n" +" -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n" +"Les manualsiden apt-get(8), sources.list(5) og apt.conf(5)\n" +"for mer informasjon og flere valg.\n" +" Denne APT har kraften til en Superku.\n" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Kildelisteoppføringer for denne CD-en er:\n" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Du må angi minst en pakke du vil ha kildekoden til" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"Pakka %s trenger å installeres på nytt, men jeg finner ikke lageret for den." -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-helper.cc:66 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Feil, pkgProblemResolver::Resolve skapte et brudd, det kan skyldes pakker " -"som holdes tilbake." -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Klarer ikke å rette problemene, noen ødelagte pakker er holdt tilbake." +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "men er ikke installert" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Skaper oversikt over avhengighetsforhold" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s satt til manuell installasjon.\n" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Versjons-kandidater" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s satt til automatisk installasjon.\n" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Oppretter avhengighetsforhold" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s er allerede nyeste versjon.\n" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Leser tilstandsinformasjon" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s er allerede nyeste versjon.\n" -#: apt-pkg/depcache.cc:250 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Failed to open StateFile %s" -msgstr "Klarte ikke å åpne StateFile %s" +msgid "Waited for %s but it wasn't there" +msgstr "Ventet på %s, men den ble ikke funnet" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Klarte ikke å skrive midlertidig StateFile %s" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "%s satt til manuell installasjon.\n" -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Klarer ikke å fortolke pakkefila %s (1)" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "Klarte ikke å åpne %s" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Klarer ikke å fortolke pakkefila %s (2)" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Utgave «%s» av «%s» ble ikke funnet" +#: cmdline/apt-mark.cc:392 +msgid "" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." +msgstr "" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Versjon «%s» av «%s» ble ikke funnet" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#: methods/cdrom.cc:203 #, c-format -msgid "Unable to locate package %s" -msgstr "Klarer ikke å finne pakken %s" - -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Klarte ikke å finne oppgave «%s»" - -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Klarte ikke finne noen pakken med regex «%s»" - -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Klarte ikke finne noen pakken med regex «%s»" - -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "Klarte ikke velge versjoner fra pakken «%s» siden den er kun virtuell" +msgid "Unable to read the cdrom database %s" +msgstr "Klarer ikke å lese CD-databasen %s" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format +#: methods/cdrom.cc:212 msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" msgstr "" -"Klarte ikke velge installert eller kandidatversjon fra pakken «%s» siden den " -"har ingen av dem" +"Bruk «apt-cdrom» for å gjøre denne CD-plata tilgjengelig for APT. Du kan " +"ikke bruke «apt-get update» til å legge til nye CD-plater." -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"Klarte ikke velge nyeste versjon fra pakken «%s» siden den er kun virtuell" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Feil CD-plate" -#: apt-pkg/cacheset.cc:655 +#: methods/cdrom.cc:249 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "" -"Klarte ikke velge kandidatversjon fra pakken «%s» siden den ikke har noen " -"kandidat" +"Klarer ikke å avmontere CD-plata i %s. Det kan hende plata fremdeles er i " +"bruk." -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" -"Klarte ikke velge installert versjon fra pakken «%s» siden den ikke er " -"installert" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disk ikke funnet." -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "Klarer ikke å fortolke Release-fila %s" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Fant ikke fila" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "Ingen avsnitt i Release-fila %s" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Klarte ikke å få status" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Ingen sjekksumoppføring i Release-fila %s" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Klarte ikke å sette endringstidspunkt" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Ugyldig «Valid-Until»-oppføring i Release-fila %s" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Ugyldig adresse. Lokale adresser kan ikke starte med //" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Ugyldig «Date»-oppføring i Release-fila %s" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Logger inn" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Feil på %lu i kildelista %s (fortolkning av nettadressen)" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Klarte ikke å fastslå navnet på motparten" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Feil på linje %lu i kildelista %s ([valg] ikke tolkbar)" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Klarte ikke å fastslå det lokale navnet" -#: apt-pkg/sourcelist.cc:173 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Feil på linje %lu i kildelista %s ([valg] for kort)" +msgid "The server refused the connection and said: %s" +msgstr "Tjeneren nektet oss å kople til og sa: %s" -#: apt-pkg/sourcelist.cc:184 +#: methods/ftp.cc:225 #, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Feil på linje %lu i kildelista %s ([%s] er ingen tilordning)" +msgid "USER failed, server said: %s" +msgstr "USER mislykkes, tjeneren sa: %s" -#: apt-pkg/sourcelist.cc:190 +#: methods/ftp.cc:232 #, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Feil på linje %lu i kildelista %s ([%s] har ingen nøkkel)" +msgid "PASS failed, server said: %s" +msgstr "PASS mislykkes, tjeneren sa: %s" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "Feil på linje %lu i kildelista %s ([%s] nøkkel %s har ingen verdi)" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"En mellomtjener er oppgitt, men ikke noe innloggingsskript. Feltet «Acquire::" +"ftp::ProxyLogin» er tomt." -#: apt-pkg/sourcelist.cc:206 +#: methods/ftp.cc:280 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Feil på linje %lu i kildelista %s (nettadresse)" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Kommandoen «%s» i innlogginsskriptet mislykkes, tjeneren sa: %s" -#: apt-pkg/sourcelist.cc:208 +#: methods/ftp.cc:306 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Feil på linje %lu i kildelista %s (dist)" +msgid "TYPE failed, server said: %s" +msgstr "TYPE mislykkes, tjeneren sa: %s" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Feil på %lu i kildelista %s (fortolkning av nettadressen)" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Tidsavbrudd på forbindelsen" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Feil på %lu i kildelista %s (Absolutt dist)" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Tjeneren lukket forbindelsen" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Feil på %lu i kildelista %s (dist fortolking)" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Lesefeil" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Åpner %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Et svar oversvømte bufferen." -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Feil på %u i kildelista %s (type)" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protokollødeleggelse" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Typen «%s» er ukjent i linje %u i kildelista %s" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Skrivefeil" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Typen «%s» er ukjent i linje %u i kildelista %s" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Klarte ikke å opprette en sokkel" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Installerer %s" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Klarte ikke å kople til datasokkelen, tidsavbrudd på forbindelsen" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Setter opp %s" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Mislyktes" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Fjerner %s" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Klarte ikke å koble til en passiv sokkel." -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "Fjerner %s fullstendig" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo klarte ikke å opprette en lyttesokkel" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "Legger merke til at %s forsvinner" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Klarte ikke å binde til sokkel" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Kjører etter-installasjonsutløser %s" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Klarte ikke å lytte til sokkel" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Mappa «%s» mangler" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Klarte ikke å avgjøre sokkelnavnet" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "Klarte ikke åpne fila «%s»" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Klarte ikke å sende PORT-kommandoen" -#: apt-pkg/deb/dpkgpm.cc:989 +#: methods/ftp.cc:802 #, c-format -msgid "Preparing %s" -msgstr "Forbereder %s" +msgid "Unknown address family %u (AF_*)" +msgstr "Ukjent adressefamilie %u (AF_*)" -#: apt-pkg/deb/dpkgpm.cc:990 +#: methods/ftp.cc:811 #, c-format -msgid "Unpacking %s" -msgstr "Pakker ut %s" +msgid "EPRT failed, server said: %s" +msgstr "EPRT mislykkes, tjeneren sa: %s" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Forbereder oppsett av %s" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Tidsavbrudd på tilkoblingen til datasokkelen" -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "Installerte %s" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Klarte ikke å godta tilkoblingen" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "Forbereder fjerning av %s" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problem ved oppretting av nøkkel for fil" -#: apt-pkg/deb/dpkgpm.cc:1004 +#: methods/ftp.cc:890 #, c-format -msgid "Removed %s" -msgstr "Fjernet %s" +msgid "Unable to fetch file, server said '%s'" +msgstr "Klarte ikke å hente fila, tjeneren sa «%s»" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Forbereder å fullstendig slette %s" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Tidsavbrudd på datasokkelen" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: methods/ftp.cc:935 #, c-format -msgid "Completely removed %s" -msgstr "Fjernet %s fullstendig" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Kan ikke skrive til %s" +msgid "Data transfer failed, server said '%s'" +msgstr "Dataoverføringen mislykkes, tjeneren sa «%s»" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Spørring" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Klarte ikke å starte" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/connect.cc:76 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Ventet på %s, men den ble ikke funnet" - -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "Ingen apport-rapport skrevet for MaxReports allerede er nådd" - -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "avhengighetsproblemer - lar den være uoppsatt" - -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"Ingen apport-rapport skrevet fordi feilmeldingen indikerer at den er en " -"følgefeil fra en tidligere feil." - -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «full disk»-" -"feil" - -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «tom for " -"minne»-feil" - -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" -"Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «full disk»-" -"feil" - -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" -"Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «dpkg I/O»-feil" +msgid "Connecting to %s (%s)" +msgstr "Kobler til %s (%s)" -#: apt-pkg/deb/debsystem.cc:91 +#: methods/connect.cc:87 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"Klarte ikke låse den administrative mappen (%s). Bruker en annen prosess den?" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/deb/debsystem.cc:94 +#: methods/connect.cc:94 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Klarte ikke låse den administrative mappen (%s). Er du root?" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Klarte ikke å opprette en sokkel for %s (f=%u t=%u p=%u)" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: methods/connect.cc:100 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "dpkg ble avbrutt. Du må kjøre «%s» manuelt for å rette problemet," - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Ikke låst" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Klarte ikke å starte forbindelsen til %s:%s (%s)." -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 +#: methods/connect.cc:108 #, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lid %lit %lim %lis" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Klarte ikke å koble til %s:%s (%s), tidsavbrudd på forbindelsen" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: methods/connect.cc:126 #, c-format -msgid "%lih %limin %lis" -msgstr "%lit %lim %lis" +msgid "Could not connect to %s:%s (%s)." +msgstr "Klarte ikke å koble til %s:%s (%s)." -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "%limin %lis" -msgstr "%lim %lis" +msgid "Connecting to %s" +msgstr "Kobler til %s" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "%lis" -msgstr "%lis" +msgid "Could not resolve '%s'" +msgstr "Klarte ikke å slå opp «%s»" -#: apt-pkg/contrib/strutl.cc:1243 +#: methods/connect.cc:205 #, c-format -msgid "Selection %s not found" -msgstr "Fant ikke utvalget %s" +msgid "Temporary failure resolving '%s'" +msgstr "Midlertidig feil ved oppslag av «%s»" -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Bruker ikke låsing for den skrivebeskyttede låsefila %s" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Noe galt skjedde ved oppslag av «%s:%s» (%i - %s)" -#: apt-pkg/contrib/fileutl.cc:195 +#: methods/connect.cc:211 #, c-format -msgid "Could not open lock file %s" -msgstr "Klarte ikke åpne låsefila %s" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Noe galt skjedde ved oppslag av «%s:%s» (%i - %s)" -#: apt-pkg/contrib/fileutl.cc:218 +#: methods/connect.cc:258 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Bruker ikke låsing på den nfs-monterte låsefila %s" +msgid "Unable to connect to %s:%s:" +msgstr "Klarte ikke koble til %s:%s:" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Får ikke låst %s" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "Intern feil: God signatur, men kunne bestemme nøkkelfingeravtrykk?!" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Minst en ugyldig signatur ble funnet." -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" +"Klarte ikke kjøre «gpgv» for å verifisere signaturen (er gpgv installert?)" -#: apt-pkg/contrib/fileutl.cc:412 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgid "" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Ukjent feil ved kjøring av gpgv" + +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "De følgende signaturene var ugyldige:\n" + +#: methods/gpgv.cc:231 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" +"De følgende signaturene kunne ikke verifiseres fordi den offentlige nøkkelen " +"ikke er tilgjengelig:\n" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Underprosessen %s mottok et minnefeilsignal." - -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "Underprosessen %s mottok signalet %u." +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Underprosessen %s ga en feilkode (%u)" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Feil ved skriving til fila" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Underprosessen %s avsluttet uventet" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Feil ved lesing fra tjeneren. Forbindelsen ble lukket i andre enden" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Skrivefeil" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Feil ved lesing fra tjeneren" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problem ved låsing av gzip-fila %s" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Feil ved skriving til fil" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Klarte ikke åpne fila %s" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Utvalget mislykkes" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "Klarte ikke åpne fildeskriptor %d" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Tidsavbrudd på forbindelsen" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Klarte ikke å opprette underprosessen IPC" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Feil ved skriving til utfil" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Klarte ikke å kjøre komprimeringen" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Venter på hoder" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Lesefeil" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Ødelagt hodelinje" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "lese, har fremdeles %lu igjen å lese, men ingen igjen" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "HTTP-tjeneren sendte et ugyldig svarhode" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "skrive, har fremdeles %lu igjen å skrive, men klarte ikke å" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "HTTP-tjeneren sendte et ugyldig «Content-Length»-hode" -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Problem ved låsing av fila %s" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "HTTP-tjeneren sendte et ugyldig «Content-Range»-hode" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problem ved endring av navn på fila %s til %s" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Denne HTTP-tjeneren har ødelagt støtte for område" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "Problem ved oppheving av lenke til fila %s" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Ukjent datoformat" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problem ved oppdatering av fila" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Ødelagte hodedata" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s ... Feil" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Forbindelsen mislykkes" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s ... Ferdig" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Intern feil" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s ... Ferdig" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Intern feil, InstallPackages ble kalt med ødelagte pakker!" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Kan ikke utføre mmap på en tom fil" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Pakker trenges å fjernes, men funksjonen er slått av." -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Klarte ikke duplisere fildeskriptor %i" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Intern feil, sortering fullførte ikke" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Klarte ikke lage mmap av %lu bytes" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Så rart ... Størrelsene stemmer ikke overens, send en e-post til " +"apt@packages.debian.org" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Klarte ikke lukke mmap" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 +#, c-format +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Må hente %sB/%sB med arkiver.\n" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Klarte ikke synkronisere mmap" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 +#, c-format +msgid "Need to get %sB of archives.\n" +msgstr "Må hente %sB med arkiver.\n" -#: apt-pkg/contrib/mmap.cc:290 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Klarte ikke lage mmap av %lu bytes" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Etter denne operasjonen vil %sB ekstra diskplass bli brukt.\n" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Klarte ikke forkorte fila %s" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 +#, c-format +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Etter denne operasjonen vil %sB diskplass bli ledig.\n" -#: apt-pkg/contrib/mmap.cc:341 +#: apt-private/private-install.cc:200 #, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +msgid "You don't have enough free space in %s." +msgstr "Dessverre, ikke nok ledig plass i %s" + +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Det oppsto problemer og «-y» ble brukt uten «--force-yes»" + +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -"Dynamisk MMap gikk tom for minne. Øk størrelsen på APT::Cache-Start. " -"Nåværende verdi: %lu. (man 5 apt.conf)" +"«Bare trivielle endringer» ble angitt, men dette er ikke en triviell endring." -#: apt-pkg/contrib/mmap.cc:446 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Ja, gjør som jeg sier!" + +#: apt-private/private-install.cc:222 #, c-format msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" -"Klarte ikke øke størrelsen på MMap-en siden grensen på %lu byte allerede er " -"nådd." +"Du er iferd med å utføre en mulig skadelig handling.\n" +"For å fortsette skriv inn teksten «%s»\n" +" ?] " -#: apt-pkg/contrib/mmap.cc:449 +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Avbryter." + +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Vil du fortsette?" + +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Klarte ikke laste ned alle filene" + +#: apt-private/private-install.cc:320 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -"Klarte ikke øke størrelsen på MMap-en siden automatisk voksing er deaktivert " -"av brukeren." +"Klarte ikke å hente alle arkivene. Du kan prøve med «apt-get update» eller " +"«--fix-missing»." -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Klarer ikke å fastsette monteringspunktet %s" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "«--fix-missing» og bytte av media støttes nå ikke" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Klarer ikke å få statusen på CD-spilleren" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Klarer ikke å rette på manglende pakker." -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Ukjent typeforkortelse: «%c»" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Avbryter installasjonen." -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Åpner oppsettsfila %s" +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"Den følgende pakken forsvant fra systemet ditt siden\n" +"alle filene er overskrevet av andre pakker:" +msgstr[1] "" +"De følgende pakkene forsvant fra systemet ditt siden\n" +"alle filene er overskrevet av andre pakker:" -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Syntaksfeil %s:%u: Blokka starter uten navn." +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Merk: Dette er gjort automatisk og med hensikt av dpkg." -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Syntaksfeil %s:%u: Feil på taggen" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Vi skal ikke slette ting, kan ikke starte auto-fjerner (AutoRemover)" -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Syntaksfeil %s:%u: Ugyldige angivelser etter verdien" +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" +"Hmm, det ser ut som auto-fjerneren (AutoRemover) ødela noe, og det skal\n" +"virkelig ikke skje. Send inn en feilmelding til apt-utviklerne." -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "Syntaksfeil %s:%u: Direktivene kan bare ligge i det øverste nivået" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Følgende informasjon kan være til hjelp med å løse problemet:" -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Syntaksfeil %s:%u: For mange nøstede inkluderte filer" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Intern feil, autofjerneren (AutoRemover) ødela noe" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Syntaksfeil %s:%u: Inkludert herfra" +#: apt-private/private-install.cc:513 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "" +"Følgende pakke ble automatisk installert og er ikke lenger påkrevet:" +msgstr[1] "" +"Følgende pakker ble automatisk installert og er ikke lenger påkrevet:" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-private/private-install.cc:517 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Syntaksfeil %s:%u: Direktivet «%s» er ikke støttet" +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "%lu pakke ble automatisk installert og er ikke lenger påkrevet.\n" +msgstr[1] "%lu pakker ble automatisk installert og er ikke lenger påkrevet.\n" -#: apt-pkg/contrib/configuration.cc:900 -#, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "Syntaksfeil %s:%u: clear-direktivet krever et valgtre som argument" +#: apt-private/private-install.cc:519 +#, fuzzy +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Bruk «apt-get autoremove» for å fjerne dem." +msgstr[1] "Bruk «apt-get autoremove» for å fjerne dem." -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Syntaksfeil %s:%u: Ugyldige angivelser på slutten av fila" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Du vil kanskje utføre «apt-get -f install» for å rette på disse:" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, c-format -msgid "No keyring installed in %s." -msgstr "Ingen nøkkelring installert i %s." +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"Uinnfridde avhengighetsforhold. Prøv «apt-get -f install» uten pakker (eller " +"angi en løsning)." -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Kjenner ikke kommandolinjevalget «%c» (fra %s)." +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"Noen pakker ble ikke installeres. Dette kan bety at du har bedt om\n" +"en umulig tilstand eller, hvis du bruker den ustabile utgaven av Debian,\n" +"at visse kjernepakker ennå ikke er laget eller flyttet ut av «Incoming» for\n" +"distribusjonen." -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "Skjønner ikke kommandolinjevalget %s" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Ødelagte pakker" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "Kommandolinjevalget %s er ikke boolsk" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Følgende ekstra pakker vil bli installert." -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "Valget %s krever et argument." +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Foreslåtte pakker:" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Valg %s: Angivelsen av oppsettselementet må ha en =<verdi>." +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Anbefalte pakker" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-private/private-install.cc:825 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Valget %s må ha et heltallsargument, ikke «%s»" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "" +"Omgår %s - den er allerede installert eller ikke satt til oppgradering.\n" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-private/private-install.cc:829 #, c-format -msgid "Option '%s' is too long" -msgstr "Valget «%s» er for langt" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"Hopper over %s siden den ikke er installert eller kun oppgraderinger er " +"ønsket.\n" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-private/private-install.cc:841 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Skjønner ikke %s. Prøv «true» eller «false»." +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Det er ikke mulig å installere %s på nytt - den kan ikke nedlastes.\n" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-private/private-install.cc:846 #, c-format -msgid "Invalid operation %s" -msgstr "Ugyldig operasjon %s" +msgid "%s is already the newest version.\n" +msgstr "%s er allerede nyeste versjon.\n" -#: cmdline/apt-cache.cc:149 +#: apt-private/private-install.cc:894 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Pakken %s versjon %s har et uinnfridd avhengighetsforhold:\n" - -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Antall pakkenavn: " +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Utvalgt versjon «%s» (%s) for «%s»\n" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Antall pakkestrukturer: " +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Utvalgt versjon «%s» (%s) for «%s»\n" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Vanlige pakker: " +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "Pakken %s er ikke installert, og derfor heller ikke fjernet\n" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Rent virtuelle pakker: " +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Pakken %s er ikke installert, og derfor heller ikke fjernet\n" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Enkle virtuelle pakker: " +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Sammensatte virtuelle pakker: " +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Mangler: " +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Retter på avhengighetsforhold ..." -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Antall unike versjoner: " +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " mislyktes." -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Antall unike beskrivelser: " +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Klarer ikke å rette på avhengighetsforholdene" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Antall avhengighetsforhold: " +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Klarer ikke å minimere oppgraderingsettet" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Antall forhold versjon/fil: " +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Utført" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Antall forhold beskrivelse/fil: " +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Du vil kanskje kjøre «apt-get -f install» for å rette på dette." -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Antall tilbudte tilknyttinger: " +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Uinnfridde avhengighetsforhold - Prøv «-f»." -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Antall utvidede strenger: " +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Total plass for avhengighetsforhold/versjoner: " +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Installert]" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Plass brukt av slark: " +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Installert]" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Samlet mengde redegjort plass: " +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Pakkefila %s er ikke oppdatert." +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Installert]" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Fant ingen pakker" +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Installert]" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Du må oppgi minst ett søkemønster" +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Pakkefiler:" +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "men %s er installert" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "" -"Mellomlageret er ikke oppdatert, kan ikke kryssreferere til en pakkefil" +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "men %s skal installeres" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Låste pakker:" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "men lar seg ikke installere" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(ikke funnet)" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "men er en virtuell pakke" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Installert: " +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "men er ikke installert" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidat: " +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "men skal ikke installeres" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ingen)" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " eller" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Pakke låst til: " +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Følgende pakker har uinnfridde avhengighetsforhold:" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Versjonstabell:" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Følgende NYE pakker vil bli installert:" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s for %s kompilert på %s %s\n" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Følgende pakker vil bli FJERNET:" -#: cmdline/apt-cache.cc:1749 -#, fuzzy -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" -msgstr "" -"Bruk: apt-cache [valg] kommando\n" -" apt-cache [valg] add fil1 [fil2 ...]\n" -" apt-cache [valg] showpkg pakke1 [pakke2 ...]\n" -" apt-cache [valg] showsrc pakke1 [pakke2 ...]\n" -"\n" -"apt-cache er et lavnivå-verktøy, som brukes til å håndtere APT sine binære\n" -"lagerfiler, og spørre dem om informasjon.\n" -"\n" -"Kommandoer:\n" -" add - Legg en fil til kildelageret\n" -" gencaches - Bygg lagrene for både pakke og kildekode\n" -" showpkg - Vis overordnet informasjon om en enkelt pakke\n" -" showsrc - Vis data om kildekoden\n" -" stats - Vis en enkel statistikk\n" -" dump - Vis fila med liste over tilgjengelige pakker i kompakt form\n" -" dumpavail - Send hele lista over tilgjengelige pakker til standard ut\n" -" unmet - Vis uinnfridde avhengighetsforhold\n" -" search - Søk i pakkelista etter et regulært uttrykkr\n" -" show - Vis et lesbart oppslag for pakken\n" -" showauto - Vis en liste med automatisk installerte pakker\n" -" depends - Vis rå informasjon om avhengighetsforholdene for pakken\n" -" rdepends - Vis informasjon om de reverserte avhengighetsforholdene for " -"pakken\n" -" pkgnames - List alle pakkenavn på systemet\n" -" dotty - Lag pakke-grafer for GraphViz\n" -" xvcg - Lag pakke-grafer for xvcg\n" -" policy - Vis regelinnstillingerr\n" -"\n" -"Valg:\n" -" -h Denne hjelpeteksten\n" -" -p=? Pakkelageret.\n" -" -s=? Kildekodelageret.\n" -" -q Ikke vis framdrift.\n" -" -i Vis bare viktige avhengighetsforhold for kommandoen «unmet».\n" -" -c=? Les denne innstillingsfila.\n" -" -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n" -"Les manualsidene apt-cache(8) og apt.conf(5) for mer informasjon.\n" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Følgende pakker er holdt tilbake:" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Oppgi et navn for disken, for eksempel «Debian 5.0.3 Disk 1»" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Følgende pakker vil bli oppgradert:" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Sett inn en disk i lagringsenheten og trykk Enter" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Følgende pakker vil bli NEDGRADERT:" -#: cmdline/apt-cdrom.cc:139 +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Følgende pakker vil bli endret:" + +#: apt-private/private-output.cc:668 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Klarte ikke montere «%s» på «%s»" +msgid "%s (due to %s) " +msgstr "%s (pga. %s) " -#: cmdline/apt-cdrom.cc:178 +#: apt-private/private-output.cc:676 msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" +"ADVARSEL: Følgende essensielle pakker vil bli fjernet.\n" +"Dette bør IKKE gjøres, med mindre du vet nøyaktig hva du gjør!" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Gjenta denne prosessen for resten av CD-ene i ditt sett." +#: apt-private/private-output.cc:707 +#, c-format +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu oppgraderte, %lu nylig installerte, " -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Ikke parvise argumenter" +#: apt-private/private-output.cc:711 +#, c-format +msgid "%lu reinstalled, " +msgstr "%lu installert på nytt, " -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -msgstr "" -"Bruk: apt-config [innstillinger] kommando\n" -"\n" -"apt-config er et enkelt verktøy til å lese APTs innstillingsfil\n" -"\n" -"Kommandoer:\n" -" shell - Skallmodus\n" -" dump - Vis innstillingene\n" -"\n" -"Innstillinger:\n" -" -h Denne hjelpeteksten\n" -" -c=? Les denne innstillingsfila.\n" -" -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n" +#: apt-private/private-output.cc:713 +#, c-format +msgid "%lu downgraded, " +msgstr "%lu nedgraderte, " -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Klarte ikke finne noen pakken med regex «%s»" +#: apt-private/private-output.cc:715 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu å fjerne og %lu ikke oppgradert.\n" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Klarte ikke finne noen pakken med regex «%s»" +#: apt-private/private-output.cc:719 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "%lu pakker ikke fullt installert eller fjernet.\n" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Klarte ikke finne noen pakken med regex «%s»" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[J/n]" -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Velger «%s» som kildepakke istedenfor «%s»\n" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[j/N]" -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Ignorer utilgjengelig versjon «%s» av pakke «%s»" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "J" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "Klarte ikke å finne pakken %s" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s satt til manuell installasjon.\n" +msgid "Regex compilation error - %s" +msgstr "Kompileringsfeil i regulært uttrykk - %s" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Oppdaterings-kommandoen tar ingen argumenter" + +#: apt-private/private-update.cc:90 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s satt til automatisk installasjon.\n" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Intern feil, problemløser ødela noe" - -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Klarer ikke å låse nedlastingsmappa" - -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Du må angi minst en pakke du vil ha kildekoden til" - -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/private-show.cc:156 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Klarer ikke å finne en kildekodepakke for %s" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" msgstr "" -"MERK: «%s»-pakker blir vedlikeholdt i versjonskontrollsystemet «%s» på:\n" -"%s\n" -#: cmdline/apt-get.cc:791 -#, fuzzy, c-format +#: apt-private/private-main.cc:32 msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -"Bruk:\n" -"bzr get %s\n" -"for å hente siste (muligens ikke utgitte) oppdateringer for pakken.\n" +"MERK: Dette er kun en simulering.\n" +" apt-get må ha root-rettigheter for reell utførelse.\n" +" Husk også at låsing er deaktivert, så ikke regn med \n" +" relevans i forhold til den reelle gjeldende situasjonen." -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Hopper over allerede nedlastet fil «%s»\n" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "ADVARSEL: Følgende pakker ble ikke autentisert!" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "Klarte ikke bestemme ledig plass i %s" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Autentiseringsadvarsel overstyrt.\n" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "Du har ikke nok ledig plass i %s" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Noen pakker ble ikke autentisert" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Trenger å skaffe %sB av %sB fra kildekodearkivet.\n" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Installer disse pakkene uten verifikasjon?" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Trenger å skaffe %sB fra kildekodearkivet.\n" +msgid "Failed to fetch %s %s\n" +msgstr "Klarte ikke å skaffe %s %s\n" -#: cmdline/apt-get.cc:902 -#, c-format -msgid "Fetch source %s\n" -msgstr "Skaffer kildekode %s\n" +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Klarte ikke å endre navnet på %s til %s" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Klarte ikke å skaffe alle arkivene." +#: apt-private/private-sources.cc:70 +#, c-format +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Nedlasting fullført med innstillinga «bare nedlasting»" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Omgår utpakking av allerede utpakket kilde i %s\n" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Beregner oppgradering... " -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Utpakkingskommandoen «%s» mislyktes.\n" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Utført" -#: cmdline/apt-get.cc:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Sjekk om pakken «dpkg-dev» er installert.\n" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Funnet " -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "Byggekommandoen «%s» mislyktes.\n" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Hent:" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Barneprosessen mislyktes" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "Du må angi minst en pakke du vil sjekke «builddeps» for" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Feil " -#: cmdline/apt-get.cc:1054 +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Hentet %sB på %s (%sB/s)\n" + +#: apt-private/acqprogress.cc:236 +#, c-format +msgid " [Working]" +msgstr " [Arbeider]" + +#: apt-private/acqprogress.cc:297 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" +"Bytte av media: sett inn CD-en som er merket\n" +" «%s»\n" +"i «%s» og trykk «Enter»\n" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Klarer ikke å skaffe informasjon om bygge-avhengighetene for %s" +msgid "Unable to read %s" +msgstr "Klarer ikke å lese %s" -#: cmdline/apt-get.cc:1101 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s har ingen avhengigheter.\n" +msgid "Unable to change to %s" +msgstr "Klarer ikke å endre %s" -#: cmdline/apt-get.cc:1271 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 +#, c-format +msgid "No mirror file '%s' found " +msgstr "Ingen speilfil «%s» funnet" + +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "Kravet %s for %s kan ikke oppfylles fordi pakken %s ikke finnes" +msgid "Can not read mirror file '%s'" +msgstr "Ingen speilfil «%s» funnet" -#: cmdline/apt-get.cc:1289 +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Ingen speilfil «%s» funnet" + +#: methods/mirror.cc:445 #, c-format +msgid "[Mirror: %s]" +msgstr "[Speil: %s]" + +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Klarte ikke å opprette IPC-rør til underprosessen" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Forbindelsen ble uventet stengt" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Feil standardinnstilling!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Trykk «Enter» og fortsett" + +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Vil du slettet alle tidligere nedlastede .deb-filer?" + +# Note to translators: The following four messages belong together. It doesn't +# matter where sentences start, but it has to fit in just these four lines, and +# at only 80 characters per line, if possible. +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Feil oppstod ved utpakkinga. Setter nå opp de installerte pakkene." + +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "Det kan lede til fordobling av feil eller feil forårsaket av " + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "manglende forutsetninger. Det er greit, bare de nevnte feilene er" + +#: dselect/install:105 msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "Kravet %s for %s kan ikke oppfylles fordi pakken %s ikke finnes" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "av betydning. Sett dem i stand dem og kjør [I]nstall igjen." + +#: dselect/update:30 +msgid "Merging available information" +msgstr "Fletter tilgjengelig informasjon" + +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode ble startet på et knutepunkt som ennå er lenket" + +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Fant ikke nøkkelelementet." + +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Klarte ikke å tildele avledning" -#: cmdline/apt-get.cc:1312 +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Intern feil i AddDiversion" + +#: apt-inst/filelist.cc:477 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"Klarte ikke å tilfredsstille %s avhengighet for %s: den installerte pakken " -"%s er for ny" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Prøver å skrive over en avledning, %s -> %s og %s/%s" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"Kravet %s for %s kan ikke oppfylles fordi det ikke finnes noen tilgjengelige " -"versjoner av pakken %s som oppfyller versjonskravene" +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "Dobbel tillegging av avledning %s -> %s" -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "Kravet %s for %s kan ikke oppfylles fordi pakken %s ikke finnes" +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "Dobbel oppsettsfil %s/%s" -#: cmdline/apt-get.cc:1380 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Klarte ikke å tilfredsstille %s avhengighet for %s: %s" +msgid "The path %s is too long" +msgstr "Stien %s er for lang" -#: cmdline/apt-get.cc:1395 +#: apt-inst/extract.cc:132 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Klarte ikke å tilfredstille bygg-avhengighetene for %s." +msgid "Unpacking %s more than once" +msgstr "Pakker ut %s mer enn en gang" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Klarte ikke å behandle forutsetningene for bygging" +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "Katalogen %s er avledet" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Kobler til %s (%s)" +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Pakken prøver å skrive til avledningsmålet %s/%s" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Støttede moduler:" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Avledningsstien er for lang" -#: cmdline/apt-get.cc:1632 -#, fuzzy -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -msgstr "" -"Bruk: apt-get [valg] kommando\n" -" apt-get [valg] install|remove pakke1 [pakke2 ...]\n" -" apt-get [valg] source pakke1 [pakke2 ...]\n" -"\n" -"apt-get er et enkelt grensesnitt som kan brukes fra kommandolinja\n" -"for å laste ned og installere pakker. De mest brukte kommandoene \n" -"er «update» og «install».\n" -"\n" -"Kommandoer:\n" -" update - Hent nye pakkelister\n" -" upgrade - Utfør en oppgradering\n" -" install - Installér nye pakker (Pakke er «foo», ikke «foo.deb»)\n" -" remove - Fjern pakker\n" -" autoremove - Fjern alle automatisk ubrukte pakker\n" -" purge - Fjern og rydd opp etter pakker\n" -" source - Last ned kildekode fra arkivene\n" -" build-dep - Sett opp bygge-forutsetninger for kildekodepakker\n" -" dist-upgrade - Oppgradér utgave, les apt-get(8)\n" -" dselect-upgrade - Følg «dselect» sine anbefalinger\n" -" clean - Slett nedlastede arkivfiler\n" -" autoclean - Slett gamle nedlastede arkivfiler\n" -" check - Se etter om det finnes brutte avhengigheter\n" -" markauto - Merk de oppgitte pakkene som automatisk installert\n" -" unmarkauto - Merk de oppgitte pakkene som manuelt installert\n" -"\n" -"Valg:\n" -" -h Denne hjelpteksten.\n" -" -q Loggbar tilbakemelding - ikke vis framdrift\n" -" -qq Ingen tilbakemelding - bortsett fra feilmeldinger\n" -" -d Bare nedlasting - IKKE installér eller pakk ut arkivfilene\n" -" -s Simulering - bare simuler kommandoen\n" -" -y Anta Ja til alle forespørsler uten å spørre\n" -" -f Prøv å fortsette hvis integritetstesten mislykkes\n" -" -m Prøv å fortsette når pakker mangler\n" -" -u Vis liste med oppgraderte pakker\n" -" -b Bygg pakken etter at kildekoden er lastet ned\n" -" -V Vis fullstendige versjonsnummere\n" -" -c=? Les denne innstillingsfila\n" -" -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n" -"Les manualsiden apt-get(8), sources.list(5) og apt.conf(5)\n" -"for mer informasjon og flere valg.\n" -" Denne APT har kraften til en Superku.\n" +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 +#, c-format +msgid "Failed to stat %s" +msgstr "Klarte ikke å få statusen på %s" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Du må angi minst en pakke du vil ha kildekoden til" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Klarte ikke å endre navnet på %s til %s" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "Mappa %s blir byttet ut med noe som ikke er en mappe" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Fant ikke knutepunktet i dens hash-spann" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "men er ikke installert" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Stien er for lang" -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s satt til manuell installasjon.\n" +#: apt-inst/extract.cc:421 +#, c-format +msgid "Overwrite package match with no version for %s" +msgstr "Skriver over pakketreff uten versjon for %s" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s satt til automatisk installasjon.\n" +#: apt-inst/extract.cc:438 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Fila %s/%s skriver over den tilsvarende fila i pakken %s" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s er allerede nyeste versjon.\n" +#: apt-inst/extract.cc:498 +#, c-format +msgid "Unable to stat %s" +msgstr "Klarte ikke å få statusen på %s" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s er allerede nyeste versjon.\n" +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, c-format +msgid "Failed to write file %s" +msgstr "Klarte ikke å skrive fila %s" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s satt til manuell installasjon.\n" +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "Klarte ikke å lukke fila %s" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Klarte ikke å åpne %s" +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Dette er ikke et gyldig DEB-arkiv, mangler «%s»-medlemmet" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-inst/deb/debfile.cc:132 +#, c-format +msgid "Internal error, could not locate member %s" +msgstr "Intern feil, fant ikke medlemmet %s" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Kontrollfila kan ikke tolkes" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Ugyldig arkivsignatur" -#: methods/cdrom.cc:203 +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Feil ved lesing av arkivmedlemshode" + +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Klarer ikke å lese CD-databasen %s" +msgid "Invalid archive member header %s" +msgstr "Ugyldig arkivmedlemshode %s" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"Bruk «apt-cdrom» for å gjøre denne CD-plata tilgjengelig for APT. Du kan " -"ikke bruke «apt-get update» til å legge til nye CD-plater." +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Ugyldig arkivmedlemshode" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Feil CD-plate" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Arkivet er for kort" -#: methods/cdrom.cc:249 +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Klarte ikke å lese arkivhodene" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Klarte ikke å opprette rør" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Klarte ikke å kjøre gzip " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Ødelagt arkiv" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar-sjekksummen mislykkes, arkivet er ødelagt" + +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Ukjent TAR-hode: type %u, medlem %s" + +#: apt-pkg/install-progress.cc:57 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgid "Progress: [%3i%%]" msgstr "" -"Klarer ikke å avmontere CD-plata i %s. Det kan hende plata fremdeles er i " -"bruk." - -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disk ikke funnet." - -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Fant ikke fila" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Klarte ikke å få status" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Kjører dpkg" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Klarte ikke å sette endringstidspunkt" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Pakkesystemet «%s» støttes ikke" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Ugyldig adresse. Lokale adresser kan ikke starte med //" +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Klarer ikke bestemme en passende pakkesystemtype" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Logger inn" +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "Skrev %i poster.\n" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Klarte ikke å fastslå navnet på motparten" +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "Skrev %i poster med %i manglende filer.\n" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Klarte ikke å fastslå det lokale navnet" +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Skrev %i poster med %i feile filer.\n" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Tjeneren nektet oss å kople til og sa: %s" +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "Skrev %i poster med %i manglende filer og %i feile filer.\n" -#: methods/ftp.cc:225 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER mislykkes, tjeneren sa: %s" +msgid "Can't find authentication record for: %s" +msgstr "Klarte ikke finne autentiseringsoppføring for: %s" -#: methods/ftp.cc:232 +#: apt-pkg/indexcopy.cc:521 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS mislykkes, tjeneren sa: %s" +msgid "Hash mismatch for: %s" +msgstr "Hashsummen stemmer ikke for: %s" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Pakkelista eller tilstandsfila kunne ikke fortolkes eller åpnes." + +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" msgstr "" -"En mellomtjener er oppgitt, men ikke noe innloggingsskript. Feltet «Acquire::" -"ftp::ProxyLogin» er tomt." +"Det kan hende du vil kjøre «apt-get update» for å rette på disse problemene" -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Kommandoen «%s» i innlogginsskriptet mislykkes, tjeneren sa: %s" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Kan ikke lese kildlista." -#: methods/ftp.cc:306 -#, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE mislykkes, tjeneren sa: %s" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Tomt pakkelager" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Tidsavbrudd på forbindelsen" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Pakkens lagerfil er ødelagt" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Tjeneren lukket forbindelsen" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Pakkens lagerfil er av feil versjon (samvirker ikke)" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Et svar oversvømte bufferen." +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "Pakkens lagerfil er ødelagt" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protokollødeleggelse" +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "Denne APT støtter ikke versjonssystemet «%s»" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Klarte ikke å opprette en sokkel" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Pakkelageret ble bygd for en annen arkitektur" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Klarte ikke å kople til datasokkelen, tidsavbrudd på forbindelsen" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Avhenger av" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Mislyktes" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Forutsetter" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Klarte ikke å koble til en passiv sokkel." +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Foreslår" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo klarte ikke å opprette en lyttesokkel" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Anbefaler" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Klarte ikke å binde til sokkel" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Er i konflikt med" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Klarte ikke å lytte til sokkel" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Erstatter" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Klarte ikke å avgjøre sokkelnavnet" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Nuller" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Klarte ikke å sende PORT-kommandoen" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Ødelegger" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Ukjent adressefamilie %u (AF_*)" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Forbedrer" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT mislykkes, tjeneren sa: %s" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "viktig" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Tidsavbrudd på tilkoblingen til datasokkelen" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "påkrevet" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Klarte ikke å godta tilkoblingen" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "vanlig" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problem ved oppretting av nøkkel for fil" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "valgfri" -#: methods/ftp.cc:890 +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "tillegg" + +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Klarte ikke å hente fila, tjeneren sa «%s»" +msgid "The method driver %s could not be found." +msgstr "Finner ikke metode-driveren %s." -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Tidsavbrudd på datasokkelen" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Sjekk om pakken «dpkg-dev» er installert.\n" -#: methods/ftp.cc:935 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Dataoverføringen mislykkes, tjeneren sa «%s»" +msgid "Method %s did not start correctly" +msgstr "Metoden %s startet ikke korrekt" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Spørring" +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Sett inn disken merket «%s» i lagringsenheten «%s» og trykk Enter." -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Klarte ikke å starte" +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "Oversiktsfil av typen «%s» støttes ikke" + +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Skaper oversikt over avhengighetsforhold" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Versjons-kandidater" -#: methods/connect.cc:76 -#, c-format -msgid "Connecting to %s (%s)" -msgstr "Kobler til %s (%s)" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Oppretter avhengighetsforhold" -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Leser tilstandsinformasjon" -#: methods/connect.cc:94 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Klarte ikke å opprette en sokkel for %s (f=%u t=%u p=%u)" +msgid "Failed to open StateFile %s" +msgstr "Klarte ikke å åpne StateFile %s" -#: methods/connect.cc:100 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Klarte ikke å starte forbindelsen til %s:%s (%s)." +msgid "Failed to write temporary StateFile %s" +msgstr "Klarte ikke å skrive midlertidig StateFile %s" -#: methods/connect.cc:108 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Klarte ikke å koble til %s:%s (%s), tidsavbrudd på forbindelsen" +msgid "rename failed, %s (%s -> %s)." +msgstr "klarte ikke å endre navnet, %s (%s -> %s)." -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Klarte ikke å koble til %s:%s (%s)." +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Hashsummen stemmer ikke" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 -#, c-format -msgid "Connecting to %s" -msgstr "Kobler til %s" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Feil størrelse" -#: methods/connect.cc:180 methods/connect.cc:199 -#, c-format -msgid "Could not resolve '%s'" -msgstr "Klarte ikke å slå opp «%s»" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Ugyldig operasjon %s" -#: methods/connect.cc:205 +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Midlertidig feil ved oppslag av «%s»" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#: methods/connect.cc:209 +#: apt-pkg/acquire-item.cc:1589 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Noe galt skjedde ved oppslag av «%s:%s» (%i - %s)" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Klarer ikke å fortolke Release-fila %s" -#: methods/connect.cc:211 -#, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Noe galt skjedde ved oppslag av «%s:%s» (%i - %s)" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "" +"Det er ingen offentlig nøkkel tilgjengelig for de følgende nøkkel-ID-ene:\n" -#: methods/connect.cc:258 +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Klarte ikke koble til %s:%s:" - -#: methods/gpgv.cc:168 msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "Intern feil: God signatur, men kunne bestemme nøkkelfingeravtrykk?!" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Minst en ugyldig signatur ble funnet." - -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -"Klarte ikke kjøre «gpgv» for å verifisere signaturen (er gpgv installert?)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Konflikt mellom distribusjoner: %s (forventet %s men fant %s)" + +#: apt-pkg/acquire-item.cc:1721 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" +"En feil oppstod under signaturverifisering. Depotet er ikke oppdatert og den " +"forrige indeksfilen vil bli brukt. GPG-feil: %s: %s\n" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Ukjent feil ved kjøring av gpgv" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "De følgende signaturene var ugyldige:\n" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "GPG-feil: %s: %s" -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1859 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" msgstr "" -"De følgende signaturene kunne ikke verifiseres fordi den offentlige nøkkelen " -"ikke er tilgjengelig:\n" +"Klarte ikke å finne en fil for pakken %s. Det kan bety at du må ordne pakken " +"selv (fordi arkitekturen mangler)." -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Feil ved skriving til fila" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "Oversiktsfilene er ødelagte. Feltet «Filename:» mangler for pakken %s." -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Feil ved lesing fra tjeneren. Forbindelsen ble lukket i andre enden" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Oversiktsfil av typen «%s» støttes ikke" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Feil ved lesing fra tjeneren" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Klarer ikke finne informasjonom %s." -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Feil ved skriving til fil" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Lageret har et uoverensstemmende versjonssystem" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Utvalget mislykkes" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Feil oppsto under behandling av %s (FindPkg)" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Tidsavbrudd på forbindelsen" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "Jøss, du har overgått antallet pakkenavn denne APT klarer." -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Feil ved skriving til utfil" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Jøss, du har overgått antallet versjoner denne APT klarer." -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Venter på hoder" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Jøss, du har overgått antallet beskrivelser denne APT klarer." -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Ødelagt hodelinje" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "Jøss, du har overgått antallet avhengighetsforhold denne APT klarer." -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP-tjeneren sendte et ugyldig svarhode" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Fant ikke pakken %s %s ved behandling av filkrav" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP-tjeneren sendte et ugyldig «Content-Length»-hode" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Klarte ikke finne informasjon om %s - lista over kildekodepakker" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP-tjeneren sendte et ugyldig «Content-Range»-hode" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Leser pakkelister" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Denne HTTP-tjeneren har ødelagt støtte for område" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Samler inn filtilbud" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Ukjent datoformat" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Kan ikke skrive til %s" + +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "IO-feil ved lagring av kildekode-lager" + +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Utgivers blokk %s inneholder ikke no fingeravtrykk" + +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Listemappa %spartial mangler." -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Ødelagte hodedata" +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Arkivmappa %spartial mangler." -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Forbindelsen mislykkes" +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "Klarte ikke låse mappa %s" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Intern feil" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Henter fil %li av %li (%s gjenværende)" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Beregner oppgradering... " +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Henter fil %li av %li" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Utført" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"Klarte ikke å laste ned alle oversiktfilene. De ble ignorerte, eller gamle " +"ble brukt isteden. " -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" msgstr "" +"Beklager, du må legge inn noen kilder (nettadresser) i din «sources.list»." -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/policy.cc:422 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Ugyldig oppslag i foretrekksfila %s, manglende pakkehode" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Retter på avhengighetsforhold ..." +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Forsto ikke spikring av typen %s" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " mislyktes." +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Ingen prioritet (eller null) spesifisert for pin" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Klarer ikke å rette på avhengighetsforholdene" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" +"Klarte ikke gjennomføre umiddelbar konfigurasjon av «%s». Se man 5 apt.conf " +"under APT::Immediate-Configure for detaljer. (%d)" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Klarer ikke å minimere oppgraderingsettet" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Klarte ikke åpne fila «%s»" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Utført" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"Den forestående installasjon må midlertidig fjerne den meget viktige pakken " +"%s pga. en konflikt/forutsettelses-løkke. Dette er ofte stygt, men hvis du " +"virkelig vil det, så bruk innstillingen APT::Force-LoopBreak." -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Du vil kanskje kjøre «apt-get -f install» for å rette på dette." +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "Linje %u i kildelista %s er for lang" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Uinnfridde avhengighetsforhold - Prøv «-f»." +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Avmonterer CD-ROM ...\n" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "Bruker CD-ROM monteringspunkt %s\n" -#: apt-private/private-output.cc:234 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Installert]" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Venter på CD-en...\n" -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [Installert]" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Monterer CD-ROM...\n" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Indentifiserer..." -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Installert]" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Lagret merkelapp: %s \n" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Installert]" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Leter gjennom CD for indeksfiler...\n" -#: apt-private/private-output.cc:249 +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "[upgradable from: %s]" +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"Fant %zu pakkeindekser, %zu kildeindekser, %zu oversettelsesindekser og %zu " +"signaturer\n" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" +"Klarte ikke finne noen Package-filer. Kanskje dette ikke er en Debian Disc " +"eller du har valgt feil arkitektur?" -#: apt-private/private-output.cc:435 -#, c-format -msgid "but %s is installed" -msgstr "men %s er installert" - -#: apt-private/private-output.cc:437 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "but %s is to be installed" -msgstr "men %s skal installeres" - -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "men lar seg ikke installere" +msgid "Found label '%s'\n" +msgstr "Fant merkelapp «%s»\n" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "men er en virtuell pakke" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Det er ikke et gyldig navn, prøv igjen.\n" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "men er ikke installert" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"CD-en er kalt: \n" +"«%s»\n" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "men skal ikke installeres" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopierer pakkelister..." -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " eller" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Skriver ny kildeliste\n" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Følgende pakker har uinnfridde avhengighetsforhold:" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Kildelisteoppføringer for denne CD-en er:\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Følgende NYE pakker vil bli installert:" +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"Pakka %s trenger å installeres på nytt, men jeg finner ikke lageret for den." -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Følgende pakker vil bli FJERNET:" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Feil, pkgProblemResolver::Resolve skapte et brudd, det kan skyldes pakker " +"som holdes tilbake." -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Følgende pakker er holdt tilbake:" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Klarer ikke å rette problemene, noen ødelagte pakker er holdt tilbake." -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Følgende pakker vil bli oppgradert:" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Følgende pakker vil bli NEDGRADERT:" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Følgende pakker vil bli endret:" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: apt-private/private-output.cc:668 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (pga. %s) " +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" msgstr "" -"ADVARSEL: Følgende essensielle pakker vil bli fjernet.\n" -"Dette bør IKKE gjøres, med mindre du vet nøyaktig hva du gjør!" -#: apt-private/private-output.cc:707 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu oppgraderte, %lu nylig installerte, " +msgid "Unable to parse package file %s (1)" +msgstr "Klarer ikke å fortolke pakkefila %s (1)" -#: apt-private/private-output.cc:711 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu installert på nytt, " +msgid "Unable to parse package file %s (2)" +msgstr "Klarer ikke å fortolke pakkefila %s (2)" -#: apt-private/private-output.cc:713 +#: apt-pkg/indexrecords.cc:78 #, c-format -msgid "%lu downgraded, " -msgstr "%lu nedgraderte, " +msgid "Unable to parse Release file %s" +msgstr "Klarer ikke å fortolke Release-fila %s" -#: apt-private/private-output.cc:715 +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu å fjerne og %lu ikke oppgradert.\n" +msgid "No sections in Release file %s" +msgstr "Ingen avsnitt i Release-fila %s" -#: apt-private/private-output.cc:719 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu pakker ikke fullt installert eller fjernet.\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[J/n]" - -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[j/N]" +msgid "No Hash entry in Release file %s" +msgstr "Ingen sjekksumoppføring i Release-fila %s" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "J" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Ugyldig «Valid-Until»-oppføring i Release-fila %s" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Ugyldig «Date»-oppføring i Release-fila %s" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Oppdaterings-kommandoen tar ingen argumenter" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Feil på %lu i kildelista %s (fortolkning av nettadressen)" -#: apt-private/private-update.cc:90 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Feil på linje %lu i kildelista %s ([valg] ikke tolkbar)" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Feil på linje %lu i kildelista %s ([valg] for kort)" -#: apt-private/private-show.cc:156 +#: apt-pkg/sourcelist.cc:184 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Feil på linje %lu i kildelista %s ([%s] er ingen tilordning)" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Feil på linje %lu i kildelista %s ([%s] har ingen nøkkel)" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Intern feil, InstallPackages ble kalt med ødelagte pakker!" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "Feil på linje %lu i kildelista %s ([%s] nøkkel %s har ingen verdi)" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Pakker trenges å fjernes, men funksjonen er slått av." +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Feil på linje %lu i kildelista %s (nettadresse)" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Intern feil, sortering fullførte ikke" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Feil på linje %lu i kildelista %s (dist)" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Så rart ... Størrelsene stemmer ikke overens, send en e-post til " -"apt@packages.debian.org" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Feil på %lu i kildelista %s (fortolkning av nettadressen)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Må hente %sB/%sB med arkiver.\n" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Feil på %lu i kildelista %s (Absolutt dist)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Må hente %sB med arkiver.\n" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Feil på %lu i kildelista %s (dist fortolking)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Etter denne operasjonen vil %sB ekstra diskplass bli brukt.\n" +msgid "Opening %s" +msgstr "Åpner %s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Etter denne operasjonen vil %sB diskplass bli ledig.\n" +msgid "Malformed line %u in source list %s (type)" +msgstr "Feil på %u i kildelista %s (type)" -#: apt-private/private-install.cc:200 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Dessverre, ikke nok ledig plass i %s" +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Typen «%s» er ukjent i linje %u i kildelista %s" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Det oppsto problemer og «-y» ble brukt uten «--force-yes»" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Typen «%s» er ukjent i linje %u i kildelista %s" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "" -"«Bare trivielle endringer» ble angitt, men dette er ikke en triviell endring." +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Utgave «%s» av «%s» ble ikke funnet" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Ja, gjør som jeg sier!" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Versjon «%s» av «%s» ble ikke funnet" -#: apt-private/private-install.cc:222 +#: apt-pkg/cacheset.cc:603 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Du er iferd med å utføre en mulig skadelig handling.\n" -"For å fortsette skriv inn teksten «%s»\n" -" ?] " +msgid "Couldn't find task '%s'" +msgstr "Klarte ikke å finne oppgave «%s»" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Avbryter." +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Klarte ikke finne noen pakken med regex «%s»" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Vil du fortsette?" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Klarte ikke finne noen pakken med regex «%s»" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Klarte ikke laste ned alle filene" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "Klarte ikke velge versjoner fra pakken «%s» siden den er kun virtuell" -#: apt-private/private-install.cc:320 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Klarte ikke å hente alle arkivene. Du kan prøve med «apt-get update» eller " -"«--fix-missing»." - -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "«--fix-missing» og bytte av media støttes nå ikke" +"Klarte ikke velge installert eller kandidatversjon fra pakken «%s» siden den " +"har ingen av dem" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Klarer ikke å rette på manglende pakker." +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"Klarte ikke velge nyeste versjon fra pakken «%s» siden den er kun virtuell" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Avbryter installasjonen." +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" +"Klarte ikke velge kandidatversjon fra pakken «%s» siden den ikke har noen " +"kandidat" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -"Den følgende pakken forsvant fra systemet ditt siden\n" -"alle filene er overskrevet av andre pakker:" -msgstr[1] "" -"De følgende pakkene forsvant fra systemet ditt siden\n" -"alle filene er overskrevet av andre pakker:" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"Klarte ikke velge installert versjon fra pakken «%s» siden den ikke er " +"installert" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Merk: Dette er gjort automatisk og med hensikt av dpkg." +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%lid %lit %lim %lis" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Vi skal ikke slette ting, kan ikke starte auto-fjerner (AutoRemover)" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%lit %lim %lis" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Hmm, det ser ut som auto-fjerneren (AutoRemover) ødela noe, og det skal\n" -"virkelig ikke skje. Send inn en feilmelding til apt-utviklerne." +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%lim %lis" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "Følgende informasjon kan være til hjelp med å løse problemet:" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Intern feil, autofjerneren (AutoRemover) ødela noe" +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "Fant ikke utvalget %s" -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "" -"Følgende pakke ble automatisk installert og er ikke lenger påkrevet:" -msgstr[1] "" -"Følgende pakker ble automatisk installert og er ikke lenger påkrevet:" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Bruker ikke låsing for den skrivebeskyttede låsefila %s" -#: apt-private/private-install.cc:517 +#: apt-pkg/contrib/fileutl.cc:195 #, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "%lu pakke ble automatisk installert og er ikke lenger påkrevet.\n" -msgstr[1] "%lu pakker ble automatisk installert og er ikke lenger påkrevet.\n" +msgid "Could not open lock file %s" +msgstr "Klarte ikke åpne låsefila %s" -#: apt-private/private-install.cc:519 -#, fuzzy -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Bruk «apt-get autoremove» for å fjerne dem." -msgstr[1] "Bruk «apt-get autoremove» for å fjerne dem." +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Bruker ikke låsing på den nfs-monterte låsefila %s" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Du vil kanskje utføre «apt-get -f install» for å rette på disse:" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Får ikke låst %s" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -"Uinnfridde avhengighetsforhold. Prøv «apt-get -f install» uten pakker (eller " -"angi en løsning)." -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -"Noen pakker ble ikke installeres. Dette kan bety at du har bedt om\n" -"en umulig tilstand eller, hvis du bruker den ustabile utgaven av Debian,\n" -"at visse kjernepakker ennå ikke er laget eller flyttet ut av «Incoming» for\n" -"distribusjonen." -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Ødelagte pakker" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Følgende ekstra pakker vil bli installert." +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Foreslåtte pakker:" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Underprosessen %s mottok et minnefeilsignal." -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Anbefalte pakker" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "Underprosessen %s mottok signalet %u." -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "" -"Omgår %s - den er allerede installert eller ikke satt til oppgradering.\n" +msgid "Sub-process %s returned an error code (%u)" +msgstr "Underprosessen %s ga en feilkode (%u)" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"Hopper over %s siden den ikke er installert eller kun oppgraderinger er " -"ønsket.\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "Underprosessen %s avsluttet uventet" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Det er ikke mulig å installere %s på nytt - den kan ikke nedlastes.\n" +msgid "Problem closing the gzip file %s" +msgstr "Problem ved låsing av gzip-fila %s" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s er allerede nyeste versjon.\n" +msgid "Could not open file %s" +msgstr "Klarte ikke åpne fila %s" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Utvalgt versjon «%s» (%s) for «%s»\n" +msgid "Could not open file descriptor %d" +msgstr "Klarte ikke åpne fildeskriptor %d" -#: apt-private/private-install.cc:899 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Utvalgt versjon «%s» (%s) for «%s»\n" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Klarte ikke å opprette underprosessen IPC" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "Pakken %s er ikke installert, og derfor heller ikke fjernet\n" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Klarte ikke å kjøre komprimeringen" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/fileutl.cc:1514 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Pakken %s er ikke installert, og derfor heller ikke fjernet\n" - -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" -"MERK: Dette er kun en simulering.\n" -" apt-get må ha root-rettigheter for reell utførelse.\n" -" Husk også at låsing er deaktivert, så ikke regn med \n" -" relevans i forhold til den reelle gjeldende situasjonen." +msgid "read, still have %llu to read but none left" +msgstr "lese, har fremdeles %lu igjen å lese, men ingen igjen" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ADVARSEL: Følgende pakker ble ikke autentisert!" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "skrive, har fremdeles %lu igjen å skrive, men klarte ikke å" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Autentiseringsadvarsel overstyrt.\n" +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Problem ved låsing av fila %s" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Noen pakker ble ikke autentisert" +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Problem ved endring av navn på fila %s til %s" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Installer disse pakkene uten verifikasjon?" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Problem ved oppheving av lenke til fila %s" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Klarte ikke å endre navnet på %s til %s" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Problem ved oppdatering av fila" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%c%s... Error!" +msgstr "%c%s ... Feil" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s ... Ferdig" + +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Funnet " +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s ... Ferdig" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Hent:" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Kan ikke utføre mmap på en tom fil" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Klarte ikke duplisere fildeskriptor %i" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Feil " +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Klarte ikke lage mmap av %lu bytes" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Klarte ikke lukke mmap" + +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Klarte ikke synkronisere mmap" + +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Hentet %sB på %s (%sB/s)\n" +msgid "Couldn't make mmap of %lu bytes" +msgstr "Klarte ikke lage mmap av %lu bytes" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Klarte ikke forkorte fila %s" + +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid " [Working]" -msgstr " [Arbeider]" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" +"Dynamisk MMap gikk tom for minne. Øk størrelsen på APT::Cache-Start. " +"Nåværende verdi: %lu. (man 5 apt.conf)" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/mmap.cc:446 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -"Bytte av media: sett inn CD-en som er merket\n" -" «%s»\n" -"i «%s» og trykk «Enter»\n" +"Klarte ikke øke størrelsen på MMap-en siden grensen på %lu byte allerede er " +"nådd." -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"Klarte ikke øke størrelsen på MMap-en siden automatisk voksing er deaktivert " +"av brukeren." + +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "No mirror file '%s' found " -msgstr "Ingen speilfil «%s» funnet" +msgid "Unable to stat the mount point %s" +msgstr "Klarer ikke å fastsette monteringspunktet %s" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Ingen speilfil «%s» funnet" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Klarer ikke å få statusen på CD-spilleren" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Ingen speilfil «%s» funnet" +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Ukjent typeforkortelse: «%c»" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "[Mirror: %s]" -msgstr "[Speil: %s]" +msgid "Opening configuration file %s" +msgstr "Åpner oppsettsfila %s" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Klarte ikke å opprette IPC-rør til underprosessen" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntaksfeil %s:%u: Blokka starter uten navn." -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Forbindelsen ble uventet stengt" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntaksfeil %s:%u: Feil på taggen" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Feil standardinnstilling!" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntaksfeil %s:%u: Ugyldige angivelser etter verdien" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Trykk «Enter» og fortsett" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "Syntaksfeil %s:%u: Direktivene kan bare ligge i det øverste nivået" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Vil du slettet alle tidligere nedlastede .deb-filer?" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntaksfeil %s:%u: For mange nøstede inkluderte filer" -# Note to translators: The following four messages belong together. It doesn't -# matter where sentences start, but it has to fit in just these four lines, and -# at only 80 characters per line, if possible. -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Feil oppstod ved utpakkinga. Setter nå opp de installerte pakkene." +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntaksfeil %s:%u: Inkludert herfra" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "Det kan lede til fordobling av feil eller feil forårsaket av " +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntaksfeil %s:%u: Direktivet «%s» er ikke støttet" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "manglende forutsetninger. Det er greit, bare de nevnte feilene er" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "Syntaksfeil %s:%u: clear-direktivet krever et valgtre som argument" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "av betydning. Sett dem i stand dem og kjør [I]nstall igjen." +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Syntaksfeil %s:%u: Ugyldige angivelser på slutten av fila" -#: dselect/update:30 -msgid "Merging available information" -msgstr "Fletter tilgjengelig informasjon" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "Ingen nøkkelring installert i %s." -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode ble startet på et knutepunkt som ennå er lenket" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Kjenner ikke kommandolinjevalget «%c» (fra %s)." -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Fant ikke nøkkelelementet." +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Skjønner ikke kommandolinjevalget %s" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Klarte ikke å tildele avledning" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Kommandolinjevalget %s er ikke boolsk" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Intern feil i AddDiversion" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Valget %s krever et argument." -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Prøver å skrive over en avledning, %s -> %s og %s/%s" +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Valg %s: Angivelsen av oppsettselementet må ha en =<verdi>." -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Dobbel tillegging av avledning %s -> %s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Valget %s må ha et heltallsargument, ikke «%s»" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Dobbel oppsettsfil %s/%s" +msgid "Option '%s' is too long" +msgstr "Valget «%s» er for langt" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "The path %s is too long" -msgstr "Stien %s er for lang" +msgid "Sense %s is not understood, try true or false." +msgstr "Skjønner ikke %s. Prøv «true» eller «false»." -#: apt-inst/extract.cc:132 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "Unpacking %s more than once" -msgstr "Pakker ut %s mer enn en gang" +msgid "Invalid operation %s" +msgstr "Ugyldig operasjon %s" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "The directory %s is diverted" -msgstr "Katalogen %s er avledet" +msgid "Installing %s" +msgstr "Installerer %s" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Pakken prøver å skrive til avledningsmålet %s/%s" +msgid "Configuring %s" +msgstr "Setter opp %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Avledningsstien er for lang" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Fjerner %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "Failed to stat %s" -msgstr "Klarte ikke å få statusen på %s" +msgid "Completely removing %s" +msgstr "Fjerner %s fullstendig" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Klarte ikke å endre navnet på %s til %s" +msgid "Noting disappearance of %s" +msgstr "Legger merke til at %s forsvinner" -#: apt-inst/extract.cc:249 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Mappa %s blir byttet ut med noe som ikke er en mappe" +msgid "Running post-installation trigger %s" +msgstr "Kjører etter-installasjonsutløser %s" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Fant ikke knutepunktet i dens hash-spann" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Mappa «%s» mangler" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Stien er for lang" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Klarte ikke åpne fila «%s»" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Skriver over pakketreff uten versjon for %s" +msgid "Preparing %s" +msgstr "Forbereder %s" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Fila %s/%s skriver over den tilsvarende fila i pakken %s" +msgid "Unpacking %s" +msgstr "Pakker ut %s" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Unable to stat %s" -msgstr "Klarte ikke å få statusen på %s" +msgid "Preparing to configure %s" +msgstr "Forbereder oppsett av %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Failed to write file %s" -msgstr "Klarte ikke å skrive fila %s" +msgid "Installed %s" +msgstr "Installerte %s" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to close file %s" -msgstr "Klarte ikke å lukke fila %s" +msgid "Preparing for removal of %s" +msgstr "Forbereder fjerning av %s" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Dette er ikke et gyldig DEB-arkiv, mangler «%s»-medlemmet" +msgid "Removed %s" +msgstr "Fjernet %s" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Intern feil, fant ikke medlemmet %s" +msgid "Preparing to completely remove %s" +msgstr "Forbereder å fullstendig slette %s" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Kontrollfila kan ikke tolkes" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Fjernet %s fullstendig" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Ugyldig arkivsignatur" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Feil ved lesing av arkivmedlemshode" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Kan ikke skrive til %s" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Ugyldig arkivmedlemshode %s" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Ugyldig arkivmedlemshode" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arkivet er for kort" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Klarte ikke å lese arkivhodene" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "Ingen apport-rapport skrevet for MaxReports allerede er nådd" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Klarte ikke å opprette rør" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "avhengighetsproblemer - lar den være uoppsatt" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Klarte ikke å kjøre gzip " +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Ingen apport-rapport skrevet fordi feilmeldingen indikerer at den er en " +"følgefeil fra en tidligere feil." -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Ødelagt arkiv" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «full disk»-" +"feil" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar-sjekksummen mislykkes, arkivet er ødelagt" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «tom for " +"minne»-feil" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «full disk»-" +"feil" + +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «dpkg I/O»-feil" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Ukjent TAR-hode: type %u, medlem %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Klarte ikke låse den administrative mappen (%s). Bruker en annen prosess den?" + +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Klarte ikke låse den administrative mappen (%s). Er du root?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "dpkg ble avbrutt. Du må kjøre «%s» manuelt for å rette problemet," + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Ikke låst" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/ne.po b/po/ne.po index 107ef1d71..156ed10f8 100644 --- a/po/ne.po +++ b/po/ne.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2006-06-12 14:35+0545\n" "Last-Translator: Shiva Pokharel <pokharelshiva@hotmail.com>\n" "Language-Team: Nepali <info@mpp.org.np>\n" @@ -17,3129 +17,3130 @@ msgstr "" "Plural-Forms: nplurals=2;plural=(n!=1)\n" "X-Generator: KBabel 1.10.2\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "अनुक्रमणिका फाइल प्रकार '%s' समर्थित छैन" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "%s पढ्न असफल भयो" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "%s मा परिवर्तन गर्न असक्षम" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "%s स्थिर गर्न असक्षम भयो ।" - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" - -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "" - -#: apt-pkg/init.cc:146 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "प्याकिङ्ग प्रणाली '%s' समर्थित छैन" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "उपयुक्त प्याकिङ्ग प्रणाली प्रकार निर्धारन गर्न असक्षम भयो" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "प्याकेज %s संस्करण %s संग एउटा नभेटिएको dep छ:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "%i रेकर्डहरू लेखियो ।\n" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "कूल प्याकेज नामहरू :" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "हराइरहेको फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n" +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "कूल प्याकेज नामहरू :" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "मेल नखाएका फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " सामान्य प्याकेजहरू:" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "हराइरहेको फाइल %i हरू र मेल नखाएका फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr "शुद्ध अवास्तविक प्याकेजहरू:" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " एकल अवास्तविक प्याकेजहरू:" -#: apt-pkg/indexcopy.cc:521 -#, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "MD5Sum मेल भएन" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " मिश्रित अवास्तविक प्याकेजहरू:" -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "विधि ड्राइभर %s फेला पार्न सकिएन ।" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " हराइरहेको:" -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "जाँच्नुहोस् यदि 'dpkg-dev' प्याकेज स्थापना भयो ।\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "कूल भिन्न संस्करणहरू:" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "विधि %s सही रुपले सुरू हुन सकेन" +#: cmdline/apt-cache.cc:327 +#, fuzzy +msgid "Total distinct descriptions: " +msgstr "कूल भिन्न संस्करणहरू:" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "कृपया डिस्क लेबुल: '%s' ड्राइभ '%s'मा घुसउनुहोस् र इन्टर थिच्नुहोस् । " +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "कूल निर्भरताहरू:" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "प्याकेज सूचीहरू वा वस्तुस्थिति फाइल पद वर्णन गर्न वा खोल्न सकिएन ।" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "जम्मा ver/file सम्बन्धहरू: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "यो समस्याहरू सुधार्न तपाईँ apt-get अद्यावधिक चलाउन चाहनुहुन्छ" +#: cmdline/apt-cache.cc:334 +#, fuzzy +msgid "Total Desc/File relations: " +msgstr "जम्मा ver/file सम्बन्धहरू: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "स्रोतहरुको सूचि पढ्न सकिएन ।" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "कूल उपलब्ध मानचित्रणहरू:" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "खाली प्याकेज क्यास" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "कूल विश्वव्यापी स्ट्रिङ्गहरू:" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "प्याकेज क्यास फाइल दूषित भयो " +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "कूल निर्भरता संस्करण खाली ठाऊँ:" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "प्याकेज क्यास फाइल एउटा अमिल्दो संस्करण हो" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "कूल शिथिल खाली ठाऊँ:" -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "प्याकेज क्यास फाइल दूषित भयो " +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "को लागि कूल खाली ठाऊँ लेखांकन:" -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "यो APT ले संस्करण प्रणालीलाई समर्थन गर्दैन '%s'" +msgid "Package file %s is out of sync." +msgstr "प्याकेज फाइल %s sync भन्दा बाहिर छ ।" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "प्याकेज क्यास विभिन्न वास्तुकलाको लागि निर्माण भएको हो" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "कुनै प्याकेजहरू फेला परेन" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "आधारित" +#: cmdline/apt-cache.cc:1254 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "तपाईँले एउटा वास्तविक बान्की दिनुपर्छ" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "पुन:आधारित" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "सुझाव दिन्छ" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "प्याकेज %s तोक्न असक्षम भयो" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "सिफारिस गर्दछ" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "प्याकेज फाइलहरू:" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "द्वन्दहरू" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "क्यास sync भन्दा बाहिर छ, प्याकेज फाइल x-ref गर्न सक्दैन" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "बदल्छ" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "पिन गरिएका प्याकेजहरू:" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "वेकायमहरू" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(फेला परेन)" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " स्थापना भयो:" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " उमेद्वार:" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "महत्वपूर्ण" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(कुनै पनि होइन)" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "आवश्यक" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr "प्याकेज पिन:" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "मानक" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " संस्करण तालिका:" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "वैकल्पिक" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, fuzzy, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s को लागि %s %s, %s %s मा कम्पाएल गरिएको छ\n" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "अतिरिक्त" - -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "अनुक्रमणिका फाइल प्रकार '%s' समर्थित छैन" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"उपयोग: apt-cache [विकल्पहरू] आदेश\n" +" apt-cache [विकल्पहरू] फाइल १ थप्नुहोस् [फाइल २ ...]\n" +" apt-cache [विकल्पहरू] pkg pkg1 देखाउनुहोस् [pkg2 ...]\n" +" apt-cache [विकल्पहरू] src pkg1 देखाउनुहोस् [pkg2 ...]\n" +"\n" +"तिनीहरुबाट APT's बिनारी क्यास फाइलहरू, र क्वेरी सूचना मिलाउन प्रयोग गरिने apt-cache " +"कम-स्तरको उपकरण हो\n" +"\n" +"\n" +"आदेशहरू:\n" +" थप्नुहोस् - स्रोत क्यासमा प्याकेज फाइल थप्नुहोस्\n" +" gencaches - प्याकेज र स्रोत क्यास दुवै निर्माण गर्नुहोस्\n" +" showpkg - एकल प्याकेजको लागि केही सामान्य सूचनाहरू देखाउनुहोस्\n" +" showsrc - स्रोत रेकर्डहरू देखाउनुहोस्\n" +" stats - केही आधारभूत तथ्यांकशास्त्र हरू देखाउनुहोस्\n" +" dump - पुरै फाइल स्पष्ट रुपमा देखाउनुहोस्\n" +" dumpavail - stdout मा एउटा उपलब्ध फाइल मुद्रण गर्नुहोस्\n" +" unmet - नभेटिएका निर्भरताहरू देखाउनुहोस्\n" +" खोजी गर्नुहोस् - regex बान्कीको लागि प्याकेज सूचि खोजी गर्नुहोस्\n" +" देखाउनुहोस् - प्याकेजको लागि पढ्नयोग्य रेकर्ड देखाउनुहोस्\n" +" आधारित - प्याकेजको लागि कच्चा निर्भरता सूचना देखाउनुहोस्\n" +" rdepends - प्याकेजको लागि उल्टो निर्भरता सूचना देखाउनुहोस्\n" +" pkgnames - सबै प्याकेजहरुको नामहरू सूचिबद्ध गर्नुहोस्\n" +" dotty - GraphViz को लागि प्याकेज ग्राफहरू सिर्जना गर्नुहोस्\n" +" xvcg - xvcg को लागि प्याकेज ग्राफहरू सिर्जना गर्नुहोस्\n" +" नीति - नीति सेटिङ्गहरू देखाउनुहोस्\n" +"\n" +"विकल्पहरू:\n" +" -h यो मद्दत पाठ ।\n" +" -p=? प्याकेज क्यास ।\n" +" -s=? स्रोत क्यास ।\n" +" -q प्रगति सूचक अक्षम गर्नुहोस् ।\n" +" -i नभेटिएको आदेशको लागि महत्वपूर्ण deps देखाउनुहोस् ।\n" +" -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n" +" -o=? एउटा स्वेच्छाचारी कनफिगरेसन फाइल सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n" +"धेरै जानकारीकोप लागि apt-cache(8) र apt.conf(5) म्यानुल पृष्टहरू हेर्नुहोस् ।\n" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" -msgstr "संकलन त्रुटि रिजेक्स गर्नुहोस् - %s" +#: cmdline/apt-cdrom.cc:76 +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "कृपया यो डिस्कको लागि नाम उपलब्ध गराउनुहोस्, जस्तै 'Debian 2.1r1 Disk 1'" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "क्यास संग एउटा नमिल्दो संस्करण प्रणाली छ" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "कृपया ड्राइभमा डिस्क घुसाउनुहोस् र इन्टर थिच्नुहोस्" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (pkg फेला पार्नुहोस् )" +msgid "Failed to mount '%s' to '%s'" +msgstr " %s मा %s पुन:नामकरण असफल भयो" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "वाऊ, APT ले सक्षम गरेको प्याकेज नामहरुको नम्बरलाई तपाईँले उछिन्नुभयो । " +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "वाऊ, APT ले सक्षम गरेको संस्करणहरुको नम्बरलाई तपाईँले उछिन्नुभयो । " +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "तपाईँको सेटमा बाँकी सि डि हरुको लागि यो प्रक्रिया फेरी गर्नुहोस् । " -#: apt-pkg/pkgcachegen.cc:263 -#, fuzzy -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "वाऊ, APT ले सक्षम गरेको संस्करणहरुको नम्बरलाई तपाईँले उछिन्नुभयो । " +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "तर्कहरू जोडामा छैन" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "वाऊ, APT ले सक्षम गरेको निर्भरताहरुको नम्बरलाई तपाईँले उछिन्नुभयो । " +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"उपयग: apt-config [विकल्पहरू] आदेश\n" +"\n" +" APT कनफिग फाइल पढ्नको लागि apt-config साधारण उपकरण हो\n" +"\n" +"आदेशहरू:\n" +" शेल - शेल मोड\n" +" dump - कनफिगरेसन देखाउनुहोस्\n" +"\n" +"विकल्पहरू:\n" +" -h यो मद्दत पाठ ।\n" +" -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n" +" -o=? एउटा स्वेच्छाचारी कनफिगरेसन विकल्प सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "फाइल निर्भरताहरू प्रक्रिया गर्दा प्याकेज %s %s फेला परेन" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "प्याकेज फेला पार्न सकिएन %s" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "स्रोत प्याकेज सूची %s स्थिर गर्न सकिएन " +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "प्याकेज फेला पार्न सकिएन %s" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "प्याकेज सूचिहरू पढिदैछ" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "प्याकेज फेला पार्न सकिएन %s" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "फाइल उपलब्धताहरू संकलन गरिदैछ" +#: cmdline/apt-get.cc:367 +#, fuzzy, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "स्रोत प्याकेज सूची %s स्थिर गर्न सकिएन " -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:423 #, c-format -msgid "Unable to write to %s" -msgstr " %s मा लेख्न असक्षम" - -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "स्रोत क्यास बचत गर्दा IO त्रुटि" - -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" +msgid "Can not find version '%s' of package '%s'" msgstr "" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "प्याकेज फेला पार्न सकिएन %s" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, fuzzy, c-format +msgid "%s set to manually installed.\n" +msgstr "तर %s स्थापना हुनुपर्यो" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "तर %s स्थापना हुनुपर्यो" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "पुन:नामकरण असफल गरियो, %s (%s -> %s) ।" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "आन्तरिक त्रुटि,समस्या हलकर्ताले उत्तम गुण भाँच्यो " -#: apt-pkg/acquire-item.cc:163 -#, fuzzy -msgid "Hash Sum mismatch" -msgstr "MD5Sum मेल भएन" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "डाउनलोड डाइरेक्ट्री ताल्चा मार्न असक्षम" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "साइज मेल खाएन" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "को लागि स्रोत तान्न कम्तिमा एउटा प्याकेज निर्दिष्ट गर्नुपर्छ" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "अवैध सञ्चालन %s" - -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" - -#: apt-pkg/acquire-item.cc:1589 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (१)" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "निम्न कुञ्जी IDs को लागि कुनै सार्वजनिक कुञ्जी उपलब्ध छैन:\n" +msgid "Unable to find a source package for %s" +msgstr "%s को लागि स्रोत प्याकेज फेला पार्न असफल भयो" -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:786 #, c-format msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1691 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:843 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +msgid "Skipping already downloaded file '%s'\n" +msgstr "पहिल्यै डाउनलोड भएका फाइलहरु फड्काइदैछ '%s'\n" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "GPG error: %s: %s" -msgstr "" +msgid "Couldn't determine free space in %s" +msgstr " %s मा खाली ठाऊँ निर्धारण गर्न सकिएन" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:882 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"%s प्याकेजको लागि मैले फाइल स्थित गर्न सकिन । यसको मतलब तपाईँले म्यानुल्ली यो प्याकेज " -"निश्चित गर्नुहोस् । (arch हराएरहेको कारणले) " +msgid "You don't have enough free space in %s" +msgstr "तपाईँ संग %s मा पर्याप्त खाली ठाऊँ छैन" -#: apt-pkg/acquire-item.cc:1925 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "स्रोत संग्रहहरुको %sB/%sB प्राप्त गर्न आवश्यक छ ।\n" -#: apt-pkg/acquire-item.cc:1983 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "प्याकेज अनुक्रमणिका फाइलहरू दूषित भए । प्याकेज %s को लागि कुनै फाइलनाम: फाँट छैन ।" +msgid "Need to get %sB of source archives.\n" +msgstr "स्रोत संग्रहहरुको %sB प्राप्त गर्न आवश्यक छ ।\n" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "बिक्रता ब्ल्क %s ले कुनै औठाछाप समाविष्ट गर्दैन" +msgid "Fetch source %s\n" +msgstr "स्रोत फड्काउनुहोस् %s\n" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "आंशिक सूचिहरुको डाइरेक्ट्री %s हराइरहेछ ।" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "केही संग्रह फड्काउन असफल भयो ।" -#: apt-pkg/acquire.cc:91 -#, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "आंशिक संग्रह डाइरेक्ट्री %s हराइरहेछ ।" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "डाउनलोड समाप्त भयो र डाउनलोडमा मोड मात्रै छ" -#: apt-pkg/acquire.cc:99 -#, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "सूचि डाइरेक्ट्री ताल्चा मार्न असफल" +#: cmdline/apt-get.cc:950 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr " %s मा पहिल्यै अनप्याक गरिएका स्रोतको अनप्याक फड्काइदैछ\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "%li को %li फाइल पुन:प्राप्त गरिदैछ (%s बाँकी छ)" +msgid "Unpack command '%s' failed.\n" +msgstr "अनप्याक आदेश '%s' असफल भयो ।\n" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Retrieving file %li of %li" -msgstr "%li को %li फाइल पुन:प्राप्त गरिदैछ" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "जाँच्नुहोस् यदि 'dpkg-dev' प्याकेज स्थापना भयो ।\n" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "%s %s तान्न असफल भयो\n" +msgid "Build command '%s' failed.\n" +msgstr "निर्माण आदेश '%s' असफल भयो ।\n" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"केही अनुक्रमणिका फाइलहरू डाउनलोड गर्न असफल भयो, तिनीहरू उपेक्षित भए, वा सट्टामा पुरानो " -"एउटा प्रयोग गरियो ।" +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "शाखा प्रक्रिया असफल भयो" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "तपाईँको स्रोत सूचिमा केही 'source' URIs राख्नुहोस्" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "को लागि builddeps जाँच्न कम्तिमा एउटा प्याकेज निर्दष्ट गर्नुपर्छ" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "प्राथमिकता फाइलमा अवैध रेकर्ड, कुनै प्याकेज हेडर छैन" - -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Did not understand pin type %s" -msgstr "पिन टाइप %s बुझ्न सकिएन " - -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "पिनको लागि कुनै प्राथमिकता (वा शून्य) निर्दिष्ट छैन" +msgid "Unable to get build-dependency information for %s" +msgstr "%s को लागि निर्माण-निर्भरता सूचना प्राप्त गर्न असक्षम भयो" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" -msgstr "" +msgid "%s has no build depends.\n" +msgstr "%s कुनै निर्माणमा आधारित हुदैन ।\n" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:1272 #, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "फाइल %s खोल्न सकिएन" - -#: apt-pkg/packagemanager.cc:583 -#, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." -msgstr "" -"द्वन्द/पुन-आधारित लूपको कारणले गर्दा स्थापना चलाउनको लागि अस्थायी रुपमा प्याकेज %s " -"हटाउनु पर्नेछ । यो प्राय नराम्रो हो, तर यदि तपाईँ यो साँच्चै गर्न चाहनुहुन्छ भने, APT::" -"Force-LoopBreak विकल्प सक्रिय गर्नुहोस् ।" - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "लाइन %u स्रोत सूचि %s मा अति लामो छ ।" - -#: apt-pkg/cdrom.cc:571 -#, fuzzy -msgid "Unmounting CD-ROM...\n" -msgstr "सिडी रोम अनमाउन्ट गरिदैछ..." +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "%s को लागि %s निर्भरता सन्तुष्ट हुन सकेन किनभने प्याकेज %s फेला पार्न सकिएन" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1290 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "सिडी रोम माउन्ट विन्दु प्रयोग गरिदैछ %s\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "डिस्को लागि पर्खिदै...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "सिडी रोम माउन्ट गरिदै...\n" - -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "परिचय गराइदैछ..." +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "%s को लागि %s निर्भरता सन्तुष्ट हुन सकेन किनभने प्याकेज %s फेला पार्न सकिएन" -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Stored label: %s\n" -msgstr "लेबुल भण्डारण गर्नुहोस्:%s \n" - -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "अनुक्रमणिका फाइलहरुको लागि डिस्क स्क्यान गरिदैछ...\n" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "%s को लागि %s निर्भरता सन्तुष्ट पार्न असफल भयो: स्थापित प्याकेज %s अति नयाँ छ" -#: apt-pkg/cdrom.cc:734 +#: cmdline/apt-get.cc:1352 #, fuzzy, c-format msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr " %i प्याकेज अनुक्रमणिकाहरू, %i स्रोत अनुक्रमणिका र %i हस्ताक्षरहरू फेला परे\n" - -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" +"%sको लागि %s निर्भरता सन्तुष्ट हुन सकेन किन भने प्याकेज %s को कुनै उपलब्ध संस्करणले संस्करण " +"आवश्यकताहरुलाई सन्तुष्ट पार्न सकेन " -#: apt-pkg/cdrom.cc:771 +#: cmdline/apt-get.cc:1358 #, fuzzy, c-format -msgid "Found label '%s'\n" -msgstr "लेबुल भण्डारण गर्नुहोस्:%s \n" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "त्यो वैध नाम होइन, फेरी प्रयास गर्नुहोस् ।\n" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "%s को लागि %s निर्भरता सन्तुष्ट हुन सकेन किनभने प्याकेज %s फेला पार्न सकिएन" -#: apt-pkg/cdrom.cc:817 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"यो डिस्कको नाम:\n" -"'%s'\n" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "%s को लागि %s निर्भरता सन्तुष्ट गर्न असफल: %s" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "प्यकेज सूचिहरू प्रतिलिपी गरिदैछ..." +#: cmdline/apt-get.cc:1396 +#, c-format +msgid "Build-dependencies for %s could not be satisfied." +msgstr "%s को लागि निर्माण निर्भरताहरू सन्तुष्ट गर्न सकिएन । " -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "नयाँ स्रोत सूचि लेखिदैछ\n" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "निर्माण निर्भरताहरू प्रक्रिया गर्न असफल" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "यो डिस्कको लागि स्रोत सूचि प्रविष्टिहरू:\n" +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "%s (%s) मा जडान गरिदैछ" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "प्याकेज %s पुन:स्थापना हुन चाहन्छ, तर यसको लागि मैले एउटा संग्रह फेला पार्न सकिन ।" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "समर्थित मोड्युलहरू:" -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-get.cc:1633 +#, fuzzy msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"त्रुटि, pkgProblemResolver:: समाधानले विच्छेदन सिर्जना गर्दछ, यो भइरहेको प्याकेजहरुको " -"कारणले गर्दा हो ।" - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "समस्याहरू सुधार्न असक्षम भयो, तपाईँले प्याकेजहरु भाँच्नुभयो ।" - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "निर्भरता ट्री निर्माण गरिदैछ" +"उपयोग: apt-get [विकल्पहरू] आदेश\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get डाउनलोड गर्न र प्याकेजहरू स्थापना गर्नको लागि साधारण आदेश लाइन इन्टरफेस हो ।\n" +"बारम्बार प्रयोग भइरहने आदेशहरू अद्यावधिक र स्थापना हुन् ।\n" +"\n" +"\n" +"आदेशहरू:\n" +" अद्यावधिक गर्नुहोस् - प्याकेजहरुको नयाँ सूचिहरू पुन:प्राप्त गर्नुहोस्\n" +" स्तर वृद्धि गर्नुहोस् - एउटा स्तरवृद्धि सम्पादन गर्नुहोस्\n" +" स्थापना गर्नुहोस् - नयाँ प्याकेजहरू स्थापना गर्नुहोस् (pkg libc6 हो libc6.deb होइन)\n" +" हटाउनुहोस् - प्याकेजहरू हटाउनुहोस्\n" +" स्रोत - स्रोत संग्रहहरू डाउनलोड गर्नुहोस्\n" +" build-dep - स्रोत प्याकेजहरुको लागि निर्माण-निर्भरताहरू कनफिगर गर्नुहोस्\n" +" dist-upgrade - स्तरवृद्धि वितरण गर्नुहोस्, apt-get(8) हेर्नुहोस्\n" +" dselect-upgrade - dselect चयनहरू पछ्याउनुहोस्\n" +" सफा गर्नुहोस् - डाउनलोड गरिएको संग्रह फाइलहरू मेट्नुहोस्\n" +" स्वचालित सफा - पुरानो डाउनलोड भएको संग्रह पाइलहरू मेट्नुहोस्\n" +" जाँच्नुहोस् - त्यहाँ कुनै भाँचिएका निर्भरताहरू छैन भन्ने रूजू गर्नुहोस्\n" +"\n" +"विकल्पहरू:\n" +" -h यो मद्दत पाठ.\n" +" -q लगयोग्य निर्गात - कुनै प्रगति सूचि छैन\n" +" -qq त्रुटिहरुको लागि निर्गात बाहेक केही छैन\n" +" -d डाउनलोड मात्र - संग्रहहरू स्थापना वा अनप्याक नगर्नुहोस्\n" +" -s No-act. Perform ordering simulation\n" +" -y सबै क्वेरीहरुलाई हो मान्नुहोस् र दूषित नबनाउनुहोस्\n" +" -f यदि पूर्णरुपले जाँच असफल भयो भने निरन्तरता दिने प्रयत्न गर्नुहोस्\n" +" -m यदि संग्रहहरु स्थानियकरण योग्य छैन भने निरन्तरता दिने प्रयत्न दिनुहोस्\n" +" -u स्तर वृद्धि प्याकेजहरुको सूचि राम्रो संग देखाउनुहोस्\n" +" -b यसलाई तानिसके पछि स्रोत प्याकेज निर्माण गर्नुहोस्\n" +" -V भरबोस संस्करण नम्बरहरू देखाउनुहोस्\n" +" -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n" +" -o=? एउटा स्वेच्छाचारी कनफिगरेसन विकल्प सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n" +"धेरै सूचना र विकल्पको लागि apt-get(8), sources.list(5) र apt.conf(5) manual\n" +"pages हेर्नुहोस् ।\n" +" APT संग सुपर काउ शक्तिहरू छ ।\n" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "उमेद्वार संस्करणहरू" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "को लागि स्रोत तान्न कम्तिमा एउटा प्याकेज निर्दिष्ट गर्नुपर्छ" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "निर्भरता सिर्जना" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -#, fuzzy -msgid "Reading state information" -msgstr "उपलब्ध सूचना गाँभिदैछ" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: cmdline/apt-mark.cc:68 #, fuzzy, c-format -msgid "Failed to open StateFile %s" -msgstr "%s खोल्न असफल" +msgid "%s can not be marked as it is not installed.\n" +msgstr "तर यो स्थापना भएन" -#: apt-pkg/depcache.cc:256 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "फाइल %s लेख्न असफल भयो" - -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (१)" +msgid "%s was already set to manually installed.\n" +msgstr "तर %s स्थापना हुनुपर्यो" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (२)" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "तर %s स्थापना हुनुपर्यो" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr " '%s' को लागि '%s' निष्काशन फेला पार्न सकिएन" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s पहिल्यै नयाँ संस्करण हो ।\n" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr " '%s' को लागि '%s' संस्करण फेला पार्न सकिएन" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s पहिल्यै नयाँ संस्करण हो ।\n" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Unable to locate package %s" -msgstr "प्याकेज %s तोक्न असक्षम भयो" - -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "प्याकेज फेला पार्न सकिएन %s" +msgid "Waited for %s but it wasn't there" +msgstr " %s को लागि पर्खिरहेको तर यो त्यहाँ छैन" -#: apt-pkg/cacheset.cc:609 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "प्याकेज फेला पार्न सकिएन %s" +msgid "%s set on hold.\n" +msgstr "तर %s स्थापना हुनुपर्यो" -#: apt-pkg/cacheset.cc:615 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "प्याकेज फेला पार्न सकिएन %s" +msgid "Canceled hold on %s.\n" +msgstr "%s खोल्न असफल" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format +#: cmdline/apt-mark.cc:392 msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -#: apt-pkg/cacheset.cc:655 +#: methods/cdrom.cc:203 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +msgid "Unable to read the cdrom database %s" +msgstr "सिडी रोम डेटाबेस पढ्न असक्षम %s" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" msgstr "" +"कृपया APT ले यो सिडी रोमलाई चिन्नको लागि apt-cdrom प्रयोग गर्नुहोस् । apt-get " +"अद्यावधिक नयाँ सिडी रोमहरू थप्नको लागि प्रयोग गरिदैन" -#: apt-pkg/indexrecords.cc:78 -#, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (१)" - -#: apt-pkg/indexrecords.cc:86 -#, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "द्रष्टब्य, %s को सट्टा %s चयन भइरहेछ\n" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "गलत सिडी रोम" -#: apt-pkg/indexrecords.cc:117 +#: methods/cdrom.cc:249 #, c-format -msgid "No Hash entry in Release file %s" -msgstr "" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "%s मा सिडी रोम अनमाउन्ट गर्न असक्षम भयो, यो अहिले प्रयोगमा हुन सक्छ ।" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "घुमाउरो फाइलमा अवैध लाइन:%s" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "डिस्क फेला परेन ।" -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (१)" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "फाइल फेला परेन " -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (URI पद वर्णन)" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "स्थिर गर्न असफल भयो" -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist पद वर्णन )" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "परिमार्जन समय सेट असफल भयो" -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist)" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "अवैध URl, स्थानिय URIS // संग सुरू हुन सक्दैन" -#: apt-pkg/sourcelist.cc:184 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist पद वर्णन )" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "लगइन भइरहेछ" -#: apt-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist पद वर्णन )" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "समान नाम निर्धारण गर्न असक्षम भयो" -#: apt-pkg/sourcelist.cc:193 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist पद वर्णन )" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "स्थानिय नाम निर्धारण गर्न असक्षम भयो" -#: apt-pkg/sourcelist.cc:206 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (URI)" +msgid "The server refused the connection and said: %s" +msgstr "सर्भरले जडान अस्वीकार गर्यो र भन्यो: %s" -#: apt-pkg/sourcelist.cc:208 +#: methods/ftp.cc:225 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist)" +msgid "USER failed, server said: %s" +msgstr "प्रयोगकर्ता असफल भयो, सर्भरले भन्यो: %s" -#: apt-pkg/sourcelist.cc:211 +#: methods/ftp.cc:232 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (URI पद वर्णन)" +msgid "PASS failed, server said: %s" +msgstr "पास असफल भयो, सर्भरले भन्यो: %s" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (पूर्ण dist)" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"प्रोक्सी सर्भर निर्दिष्ट गरियो तर कुनै स्क्रिफ्ट लगइन भएन, Acquire::ftp::ProxyLogin " +"खाली छ ।" -#: apt-pkg/sourcelist.cc:224 +#: methods/ftp.cc:280 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist पद वर्णन )" +msgid "Login script command '%s' failed, server said: %s" +msgstr "लगइन स्क्रिफ्ट आदेश '%s' असफल भयो, सर्भरले भन्यो: %s" -#: apt-pkg/sourcelist.cc:335 +#: methods/ftp.cc:306 #, c-format -msgid "Opening %s" -msgstr "%s खोलिदैछ" +msgid "TYPE failed, server said: %s" +msgstr "टाइप असफल भयो: %s" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "वैरुप्य लाइन %u स्रोत सूचिमा %s (प्रकार)" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "जडान समय सकियो" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "स्रोत सूची %s भित्र %u लाइनमा टाइप '%s' ज्ञात छैन" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "सर्भरले जडान बन्द गर्यो" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "स्रोत सूची %s भित्र %u लाइनमा टाइप '%s' ज्ञात छैन" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "त्रुटि पढ्नुहोस्" -#: apt-pkg/deb/dpkgpm.cc:95 -#, fuzzy, c-format -msgid "Installing %s" -msgstr " %s स्थापना भयो" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "एउटा प्रतिक्रियाले बफर अधिप्रवाह गर्यो" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr " %s कनफिगर गरिदैछ" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "प्रोटोकल दूषित" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr " %s हटाइदैछ" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "त्रुटि लेख्नुहोस्" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr " %s पूर्ण रुपले हट्यो" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "एउटा सकेट सिर्जना गर्न सकेन" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "डेटा सकेट जडान गर्न सकिएन, जडान समय सकियो" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "असफल भयो" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, fuzzy, c-format -msgid "Directory '%s' missing" -msgstr "आंशिक सूचिहरुको डाइरेक्ट्री %s हराइरहेछ ।" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "निस्क्रिय सकेट जडान गर्न सकिएन" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "फाइल %s खोल्न सकिएन" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo सुन्ने सकेट प्राप्त गर्न असक्षम भयो" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr " %s तयार गरिदैछ" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "सकेट बाँध्न सकिएन" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr " %s अनप्याक गरिदैछ" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "सकेटमा सुन्न सकिएन" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr " %s कनफिगर गर्न तयार गरिदैछ" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "सकेट नाम निर्धारण गर्न सकिएन" -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr " %s स्थापना भयो" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "पोर्ट आदेश पठाउन असक्षम भयो" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: methods/ftp.cc:802 #, c-format -msgid "Preparing for removal of %s" -msgstr " %s हटाउन तयार गरिदैछ" +msgid "Unknown address family %u (AF_*)" +msgstr "अज्ञात ठेगाना परिवार %u (AF_*)" -#: apt-pkg/deb/dpkgpm.cc:1004 +#: methods/ftp.cc:811 #, c-format -msgid "Removed %s" -msgstr " %s हट्यो" +msgid "EPRT failed, server said: %s" +msgstr "EPRT असफल भयो, सर्भरले भन्यो: %s" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr " %s पूर्ण रुपले हटाउन तयार गरिदैछ" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "डेटा सकेटको जडान समय सकियो" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr " %s पूर्ण रुपले हट्यो" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr " %s मा लेख्न असक्षम" - -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "जडान स्वीकार गर्न असक्षम भयो" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "समस्या द्रुतान्वेषण फाइल" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/ftp.cc:890 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr " %s को लागि पर्खिरहेको तर यो त्यहाँ छैन" - -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" - -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" +msgid "Unable to fetch file, server said '%s'" +msgstr "फाइल तान्न असक्षम भयो, सर्भरले भन्यो '%s'" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "डेटा सकेट समय सकियो" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" +#: methods/ftp.cc:935 +#, c-format +msgid "Data transfer failed, server said '%s'" +msgstr "डेटा स्थान्तरण असफल भयो, सर्भरले भन्यो '%s'" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "क्वेरी" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "आह्वान गर्न असक्षम भयो" -#: apt-pkg/deb/debsystem.cc:91 +#: methods/connect.cc:76 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" - -#: apt-pkg/deb/debsystem.cc:94 -#, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "सूचि डाइरेक्ट्री ताल्चा मार्न असफल" +msgid "Connecting to %s (%s)" +msgstr "%s (%s) मा जडान गरिदैछ" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: methods/connect.cc:87 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 +#: methods/connect.cc:94 #, c-format -msgid "%lid %lih %limin %lis" -msgstr "" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "%s (f=%u t=%u p=%u) को लागि सकेट सिर्जना गर्न सकिएन" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: methods/connect.cc:100 #, c-format -msgid "%lih %limin %lis" -msgstr "" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr " %s:%s (%s) मा जडान सुरुवात गर्न सकेन" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: methods/connect.cc:108 #, c-format -msgid "%limin %lis" -msgstr "" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "%s:%s (%s) मा जडान गर्न सकिएन, जडान समय सकियो" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: methods/connect.cc:126 #, c-format -msgid "%lis" -msgstr "" +msgid "Could not connect to %s:%s (%s)." +msgstr " %s:%s (%s) मा जडान गर्न सकिएन ।" -#: apt-pkg/contrib/strutl.cc:1243 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Selection %s not found" -msgstr "चयन %s फेला पार्न सकिएन" +msgid "Connecting to %s" +msgstr "%s मा जडान गरिदैछ" -#: apt-pkg/contrib/fileutl.cc:190 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "ताल्चा मारिएको फाइल मात्र पढ्नको लागि ताल्चा मार्न प्रयोग गरिएको छैन %s" +msgid "Could not resolve '%s'" +msgstr "'%s' हल गर्न सकिएन" -#: apt-pkg/contrib/fileutl.cc:195 +#: methods/connect.cc:205 #, c-format -msgid "Could not open lock file %s" -msgstr "ताल्चा मारिएको फाइल खोल्न सकिएन %s" +msgid "Temporary failure resolving '%s'" +msgstr "'%s' हल गर्दा अस्थायी असफल" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "nfs माउन्ट गरिएको लक फाइलको लागि लक प्रयोग गरिएको छैन %s" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr " '%s:%s' (%i) हल गर्दा केही दुष्ट घट्यो" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "ताल्चा प्राप्त गर्न सकिएन %s" +#: methods/connect.cc:211 +#, fuzzy, c-format +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr " '%s:%s' (%i) हल गर्दा केही दुष्ट घट्यो" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#: methods/connect.cc:258 +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" +msgstr "%s %s मा जडान गर्न असफल भयो:" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "आन्तरिक त्रुटि: असल हस्ताक्षर, तर कुञ्जी औठाछाप निर्धारण गर्न सकिएन?!" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "कम्तिमा एउटा अवैध हस्ताक्षर विरोध भयो ।" -#: apt-pkg/contrib/fileutl.cc:421 +#: methods/gpgv.cc:174 +#, fuzzy +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "हस्ताक्षर रूजू गर्न '%s' कार्यन्वयन गर्न सकिएन (के gpgv स्थापना भयो?)" + +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "सहायक प्रक्रिया %s ले खण्डिकरण गल्ति प्राप्त भयो ।" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "gpgv कार्यन्वयन गर्दा अज्ञात त्रुटि" -#: apt-pkg/contrib/fileutl.cc:826 -#, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "सहायक प्रक्रिया %s ले खण्डिकरण गल्ति प्राप्त भयो ।" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "निम्न हस्ताक्षरहरू अवैध छन्:\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "सहायक प्रक्रिया %s ले एउटा त्रुटि कोड फर्कायो (%u)" +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "निम्न हस्ताक्षरहरू रूजू हुन सक्दैन किन भने सार्वजनिक कुञ्जी उपलब्ध छैन:\n" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "सहायक प्रक्रिया %s अनपेक्षित बन्द भयो" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "त्रुटि लेख्नुहोस्" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "फाइलमा त्रुटि लेखिदैछ" -#: apt-pkg/contrib/fileutl.cc:913 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "फाइल बन्द गर्दा समस्या" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "सर्भरबाट त्रुटि पढिदैछ । दूर गन्तब्य बन्द जडान" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "फाइल %s खोल्न सकिएन" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "सर्भरबाट त्रुटि पढिदैछ" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "%s को लागि पाइप खोल्न सकिएन" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "फाइलमा त्रुटि लेखिदैछ" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "सहायक प्रक्रिया IPC सिर्जना गर्न असफल" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "असफल चयन गर्नुहोस्" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "सङ्कुचनकर्ता कार्यान्वयन गर्न असफल भयो" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "जडान समय सकियो" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "त्रुटि पढ्नुहोस्" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "निर्गात फाइलमा त्रुटि लेखिदैछ" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "पड्नुहोस्, अहिले सम्म %lu पढ्न छ तर कुनै बाँकी छैन" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "हेडरहरुको लागि पर्खिदैछ" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "लेख्नुहोस्, अहिले सम्म %lu लेख्न छ तर सकिदैन " +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "खराब हेडर लाइन" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "फाइल बन्द गर्दा समस्या" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "HTTP सर्भरले अवैध जवाफ हेडर पठायो" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "फाइल गुप्तिकरण गर्दा समस्या" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "HTTP सर्भरले अवैध सामग्री-लम्बाई हेडर पठायो" -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "फाइल अनलिङ्क गर्दा समस्या" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "HTTP सर्भरले अवैध सामग्री-दायरा हेडर पठायो" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "फाइल गुप्तिकरण गर्दा समस्या" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "HTTP सर्भर संग भाँचिएको दायरा समर्थन छ" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... त्रुटि!" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "अज्ञात मिति ढाँचा" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... गरियो" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "खराब हेडर डेटा" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "जडान असफल भयो" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... गरियो" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "आन्तरिक त्रुटि" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "एउटा खाली फाइल mmap बनाउन सकिएन" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/contrib/mmap.cc:111 -#, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "%s को लागि पाइप खोल्न सकिएन" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "आन्तरिक त्रुटि, स्थापना प्याकेजहरुलाई भाँचिएको प्याकेज भनिन्थ्यो!" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "%lu बाइटहरुको mmap बनाउन सकिएन" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "प्याकेजहरू हट्न चाहदैछन् तर हटाई अक्षम भइरहेछ ।" -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "%s खोल्न असफल" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "आन्तरिक त्रुटि, आदेश समाप्त भएको छैन" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -#, fuzzy -msgid "Unable to synchronize mmap" -msgstr "आह्वान गर्न असक्षम भयो" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "कस्तो नमिलेको.. साइजहरू मेल खाएन, apt@packages.debian.org इमेल गर्नुहोस्" -#: apt-pkg/contrib/mmap.cc:290 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "%lu बाइटहरुको mmap बनाउन सकिएन" - -#: apt-pkg/contrib/mmap.cc:322 -#, fuzzy -msgid "Failed to truncate file" -msgstr "फाइल %s लेख्न असफल भयो" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "संग्रहहरुको %sB/%sB प्राप्त गर्न आवश्यक ।\n" -#: apt-pkg/contrib/mmap.cc:341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" -msgstr "" +msgid "Need to get %sB of archives.\n" +msgstr "संग्रहहरुको %sB प्राप्त गर्न आवश्यक ।\n" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 +#, fuzzy, c-format +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "अनप्याक गरिसके पछि थप डिस्क खाली ठाउँको %sB प्रयोग हुनेछ ।\n" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 +#, fuzzy, c-format +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "%sB अनप्याक गरिसके पछि डिस्क खाली ठाउँ खाली हुनेछ ।\n" -#: apt-pkg/contrib/cdromutl.cc:65 +#: apt-private/private-install.cc:200 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "माउन्ट बिन्दु %s स्थिर गर्न असक्षम" +msgid "You don't have enough free space in %s." +msgstr "तपाईँ संग %s मा पर्याप्त खाली ठाऊँ छैन ।" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "सिडी रोम स्थिर गर्न असफल भयो" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "त्यहाँ समस्याहरू छन् र हुन्छलाई जोड नगरिकन -y को प्रयोग भयो" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "नचिनिएको टाइप संक्षिप्त रुप: '%c'" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "त्रिभियल मात्र निर्दिष्ट गरिएको छ तर यो त्रिभियल सञ्चालन होइन ।" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "कनफिगरेसन फाइल खोलिदैछ %s" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "हो,मैले भने जस्तै गर्नुहोस्!" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-private/private-install.cc:222 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "वाक्य संरचना त्रुटि %s:%u: बन्द कुनै नाम बिना सुरू हुन्छ ।" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"तपाईँले केही संभवत: हानिकारक काम गर्नुपर्छ ।\n" +"निरन्तरता दिन '%s' वाक्यांशमा टाइप गर्नुहोस् \n" +" ?] " -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "वाक्य संरचना त्रुटि %s:%u: वैरुप गरिएको ट्याग" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "परित्याग गर्नुहोस् ।" -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "वाक्य संरचना त्रुटि %s:%u: मान पछाडि अतिरिक्त जंक" +#: apt-private/private-install.cc:243 +#, fuzzy +msgid "Do you want to continue?" +msgstr "के तपाईँ निरन्तरता दिन चाहनुहुन्छ [Y/n]? " -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "वाक्य संरचना त्रुटि %s:%u: निर्देशनहरू माथिल्लो तहबाट मात्र हुन्छ" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "केही फाइलहरू डाउनलोड गर्न असफल भयो" -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "वाक्य संरचना त्रुटि %s:%u: अति धेरै नेस्टेड समावेश गर्दछ" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"केही संग्रहहरू तान्न असक्षम भयो,apt-get अद्यावधिक चलिरहेछ वा हराइरहेको --fix-संगै प्रयास " +"गर्नुहुन्छ ?" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "वाक्य संरचना त्रुटि %s:%u: यहाँ बाट समावेश गरेको" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "हराइरहेको --fix-र स्वाप भइरहेको मेडिया हाल समर्थित भइरहेको छैन" -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "वाक्य संरचना त्रुटि %s:%u: समर्थन नभएको डाइरेक्टिभ '%s'" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "हराइरहेको प्याकेजहरू सुधार्न असक्षम भयो ।" -#: apt-pkg/contrib/configuration.cc:900 -#, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "वाक्य संरचना त्रुटि %s:%u: निर्देशनहरू माथिल्लो तहबाट मात्र हुन्छ" - -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "वाक्य संरचना त्रुटि %s:%u:फाइलको अन्त्यमा अतिरिक्त जंक" - -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." +#: apt-private/private-install.cc:330 +msgid "Aborting install." msgstr "स्थापना परित्याग गरिदैछ ।" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "आदेश लाइन विकल्प '%c' [%s बाट] ज्ञात छैन ।" +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "आदेश लाइन विकल्प %s बुझिएन" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "आदेश लाइन विकल्प %s बूलियन छैन" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "विकल्प %s लाई एउटा तर्कको आवश्यकता पर्दछ ।" +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "विकल्प %s: कनफिगरेसन वस्तु विशिष्टिकरण संग एउटा =<val> हुनुपर्छ ।" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "निम्न सूचनाले अवस्थालाई हल गर्न मद्दत गर्नेछ: " -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "विकल्प %s लाई एउटा इन्टिजर तर्कको आवश्यक पर्दछ, '%s' होइन" +#: apt-private/private-install.cc:506 +#, fuzzy +msgid "Internal Error, AutoRemover broke stuff" +msgstr "आन्तरिक त्रुटि,समस्या हलकर्ताले उत्तम गुण भाँच्यो " -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "विकल्प '%s' अति लामो छ" +#: apt-private/private-install.cc:513 +#, fuzzy +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" +msgstr[1] "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "अर्थ %s बुझिएन, सत्य वा झूठो प्रयास गर्नुहोस् ।" +#: apt-private/private-install.cc:517 +#, fuzzy, c-format +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" +msgstr[1] "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "अवैध सञ्चालन %s" +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:149 -#, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "प्याकेज %s संस्करण %s संग एउटा नभेटिएको dep छ:\n" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "तपाईँ यसलाई सुधार गर्न 'apt-get -f install' चलाउन चाहनुहुन्छ:" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "कूल प्याकेज नामहरू :" +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"नभेटिएका निर्भरताहरू । प्याकेजहरू बिना 'apt-get -f install' प्रयास गर्नुहोस् ( वा " +"समाधान निर्दिष्ट गर्नुहोस्) ।" -#: cmdline/apt-cache.cc:279 -#, fuzzy -msgid "Total package structures: " -msgstr "कूल प्याकेज नामहरू :" +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"केही प्याकेजहरू स्थापना हुन सक्दैन । यसको मतलब तपाईँले\n" +" एउटा असम्भव अवास्थाको अनुरोध गर्नु भएको छ वा यदि तपाईँले प्रयोग गर्नु भइरहेको केहि " +"प्याकेजहरुको आवश्यकता पर्ने अस्थिर\n" +" वितरण अहिले सम्म सिर्जना\n" +" भएको छैन वा आवगमन विनानै सर्यो ।" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " सामान्य प्याकेजहरू:" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "भाँचिएका प्याकेजहरू" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr "शुद्ध अवास्तविक प्याकेजहरू:" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "निम्न अतिरिक्त प्याकेजहरू स्थापना हुनेछन्:" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " एकल अवास्तविक प्याकेजहरू:" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "सुझाव दिएका प्याकेजहरू:" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " मिश्रित अवास्तविक प्याकेजहरू:" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "सिफारिस गरिएका प्याकेजहरू:" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " हराइरहेको:" +#: apt-private/private-install.cc:825 +#, c-format +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "%s फड्किदैछ, यो पहिल्यै स्थापना भयो र स्तरवृद्धि सेट भएको छैन ।\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "कूल भिन्न संस्करणहरू:" +#: apt-private/private-install.cc:829 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "%s फड्किदैछ, यो पहिल्यै स्थापना भयो र स्तरवृद्धि सेट भएको छैन ।\n" -#: cmdline/apt-cache.cc:327 -#, fuzzy -msgid "Total distinct descriptions: " -msgstr "कूल भिन्न संस्करणहरू:" +#: apt-private/private-install.cc:841 +#, c-format +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr " %s को पुन: स्थापना सम्भव छैन, यो डाउनलोड हुन सक्दैन ।\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "कूल निर्भरताहरू:" +#: apt-private/private-install.cc:846 +#, c-format +msgid "%s is already the newest version.\n" +msgstr "%s पहिल्यै नयाँ संस्करण हो ।\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "जम्मा ver/file सम्बन्धहरू: " +#: apt-private/private-install.cc:894 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "%s को लागि चयन भएको संस्करण %s (%s)\n" -#: cmdline/apt-cache.cc:334 -#, fuzzy -msgid "Total Desc/File relations: " -msgstr "जम्मा ver/file सम्बन्धहरू: " +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "%s को लागि चयन भएको संस्करण %s (%s)\n" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "कूल उपलब्ध मानचित्रणहरू:" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "प्याकेज %s स्थापना भएन, त्यसैले हटेन\n" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "कूल विश्वव्यापी स्ट्रिङ्गहरू:" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "प्याकेज %s स्थापना भएन, त्यसैले हटेन\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "कूल निर्भरता संस्करण खाली ठाऊँ:" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "कूल शिथिल खाली ठाऊँ:" +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "को लागि कूल खाली ठाऊँ लेखांकन:" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "निर्भरताहरू सुधार गरिदैछ..." -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "प्याकेज फाइल %s sync भन्दा बाहिर छ ।" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr "असफल भयो ।" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "कुनै प्याकेजहरू फेला परेन" - -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "तपाईँले एउटा वास्तविक बान्की दिनुपर्छ" - -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" - -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "प्याकेज फाइलहरू:" - -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "क्यास sync भन्दा बाहिर छ, प्याकेज फाइल x-ref गर्न सक्दैन" - -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "पिन गरिएका प्याकेजहरू:" - -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(फेला परेन)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "निर्भरताहरू सुधार गर्न असक्षम भयो" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " स्थापना भयो:" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "स्तर वृद्धि सेटलाई न्यूनतम गर्न असक्षम भयो" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " उमेद्वार:" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr "काम भयो" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(कुनै पनि होइन)" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "यी सुधार गर्न तपाईँले 'apt-get -f install' चलाउन पर्छ ।" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr "प्याकेज पिन:" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "नभेटिएका निर्भरताहरू । -f प्रयोग गरेर प्रयास गर्नुहोस् ।" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " संस्करण तालिका:" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s को लागि %s %s, %s %s मा कम्पाएल गरिएको छ\n" +msgid "[installed,upgradable to: %s]" +msgstr " [स्थापना भयो]" -#: cmdline/apt-cache.cc:1749 +#: apt-private/private-output.cc:238 #, fuzzy -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgid "[installed,local]" +msgstr " [स्थापना भयो]" + +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"उपयोग: apt-cache [विकल्पहरू] आदेश\n" -" apt-cache [विकल्पहरू] फाइल १ थप्नुहोस् [फाइल २ ...]\n" -" apt-cache [विकल्पहरू] pkg pkg1 देखाउनुहोस् [pkg2 ...]\n" -" apt-cache [विकल्पहरू] src pkg1 देखाउनुहोस् [pkg2 ...]\n" -"\n" -"तिनीहरुबाट APT's बिनारी क्यास फाइलहरू, र क्वेरी सूचना मिलाउन प्रयोग गरिने apt-cache " -"कम-स्तरको उपकरण हो\n" -"\n" -"\n" -"आदेशहरू:\n" -" थप्नुहोस् - स्रोत क्यासमा प्याकेज फाइल थप्नुहोस्\n" -" gencaches - प्याकेज र स्रोत क्यास दुवै निर्माण गर्नुहोस्\n" -" showpkg - एकल प्याकेजको लागि केही सामान्य सूचनाहरू देखाउनुहोस्\n" -" showsrc - स्रोत रेकर्डहरू देखाउनुहोस्\n" -" stats - केही आधारभूत तथ्यांकशास्त्र हरू देखाउनुहोस्\n" -" dump - पुरै फाइल स्पष्ट रुपमा देखाउनुहोस्\n" -" dumpavail - stdout मा एउटा उपलब्ध फाइल मुद्रण गर्नुहोस्\n" -" unmet - नभेटिएका निर्भरताहरू देखाउनुहोस्\n" -" खोजी गर्नुहोस् - regex बान्कीको लागि प्याकेज सूचि खोजी गर्नुहोस्\n" -" देखाउनुहोस् - प्याकेजको लागि पढ्नयोग्य रेकर्ड देखाउनुहोस्\n" -" आधारित - प्याकेजको लागि कच्चा निर्भरता सूचना देखाउनुहोस्\n" -" rdepends - प्याकेजको लागि उल्टो निर्भरता सूचना देखाउनुहोस्\n" -" pkgnames - सबै प्याकेजहरुको नामहरू सूचिबद्ध गर्नुहोस्\n" -" dotty - GraphViz को लागि प्याकेज ग्राफहरू सिर्जना गर्नुहोस्\n" -" xvcg - xvcg को लागि प्याकेज ग्राफहरू सिर्जना गर्नुहोस्\n" -" नीति - नीति सेटिङ्गहरू देखाउनुहोस्\n" -"\n" -"विकल्पहरू:\n" -" -h यो मद्दत पाठ ।\n" -" -p=? प्याकेज क्यास ।\n" -" -s=? स्रोत क्यास ।\n" -" -q प्रगति सूचक अक्षम गर्नुहोस् ।\n" -" -i नभेटिएको आदेशको लागि महत्वपूर्ण deps देखाउनुहोस् ।\n" -" -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n" -" -o=? एउटा स्वेच्छाचारी कनफिगरेसन फाइल सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n" -"धेरै जानकारीकोप लागि apt-cache(8) र apt.conf(5) म्यानुल पृष्टहरू हेर्नुहोस् ।\n" -#: cmdline/apt-cdrom.cc:76 +#: apt-private/private-output.cc:243 #, fuzzy -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "कृपया यो डिस्कको लागि नाम उपलब्ध गराउनुहोस्, जस्तै 'Debian 2.1r1 Disk 1'" +msgid "[installed,automatic]" +msgstr " [स्थापना भयो]" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "कृपया ड्राइभमा डिस्क घुसाउनुहोस् र इन्टर थिच्नुहोस्" +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [स्थापना भयो]" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr " %s मा %s पुन:नामकरण असफल भयो" +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "तपाईँको सेटमा बाँकी सि डि हरुको लागि यो प्रक्रिया फेरी गर्नुहोस् । " +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "तर %s स्थापना भयो" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "तर्कहरू जोडामा छैन" +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "तर %s स्थापना हुनुपर्यो" -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -msgstr "" -"उपयग: apt-config [विकल्पहरू] आदेश\n" -"\n" -" APT कनफिग फाइल पढ्नको लागि apt-config साधारण उपकरण हो\n" -"\n" -"आदेशहरू:\n" -" शेल - शेल मोड\n" -" dump - कनफिगरेसन देखाउनुहोस्\n" -"\n" -"विकल्पहरू:\n" -" -h यो मद्दत पाठ ।\n" -" -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n" -" -o=? एउटा स्वेच्छाचारी कनफिगरेसन विकल्प सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "तर यो स्थापनायोग्य छैन" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "प्याकेज फेला पार्न सकिएन %s" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "तर यो अवास्तविक प्याकेज होइन" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "प्याकेज फेला पार्न सकिएन %s" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "तर यो स्थापना भएन" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "प्याकेज फेला पार्न सकिएन %s" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "तर यो स्थापना हुन गइरहेको छैन" -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "स्रोत प्याकेज सूची %s स्थिर गर्न सकिएन " +#: apt-private/private-output.cc:454 +msgid " or" +msgstr "वा" -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "" - -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "प्याकेज फेला पार्न सकिएन %s" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "निम्न प्याकेजहरुले निर्भरताहरू भेटेनन्:" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, fuzzy, c-format -msgid "%s set to manually installed.\n" -msgstr "तर %s स्थापना हुनुपर्यो" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "तर %s स्थापना हुनुपर्यो" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "निम्न प्याकेजहरू हटाइनेछन्:" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "निम्न प्याकेजहरू पछाडि राखिनेछन्:" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "आन्तरिक त्रुटि,समस्या हलकर्ताले उत्तम गुण भाँच्यो " +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "निम्न प्याकेजहरू स्तर वृद्धि हुनेछन्:" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "डाउनलोड डाइरेक्ट्री ताल्चा मार्न असक्षम" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "निम्न प्याकेजहरू स्तरकम गरिनेछन्:" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "को लागि स्रोत तान्न कम्तिमा एउटा प्याकेज निर्दिष्ट गर्नुपर्छ" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "निम्न भइरहेको प्याकेजहरू परिवर्तन हुनेछैन:" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/private-output.cc:668 #, c-format -msgid "Unable to find a source package for %s" -msgstr "%s को लागि स्रोत प्याकेज फेला पार्न असफल भयो" +msgid "%s (due to %s) " +msgstr "%s (%s कारणले) " -#: cmdline/apt-get.cc:786 -#, c-format +#: apt-private/private-output.cc:676 msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" +"चेतावनी: निम्न आवश्यक प्याकेजहरू हटाइनेछन् ।\n" +"तपाईँ के गरिरहेको यकिन नभएसम्म यो काम गरिने छैन!" -#: cmdline/apt-get.cc:791 +#: apt-private/private-output.cc:707 #, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" -msgstr "" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu स्तर वृद्धि गरियो, %lu नयाँ स्थापना भयो, " -#: cmdline/apt-get.cc:843 +#: apt-private/private-output.cc:711 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "पहिल्यै डाउनलोड भएका फाइलहरु फड्काइदैछ '%s'\n" +msgid "%lu reinstalled, " +msgstr "%lu पुन: स्थापना गरियो, " -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-private/private-output.cc:713 #, c-format -msgid "Couldn't determine free space in %s" -msgstr " %s मा खाली ठाऊँ निर्धारण गर्न सकिएन" +msgid "%lu downgraded, " +msgstr "%lu स्तर कम गरियो, " -#: cmdline/apt-get.cc:882 +#: apt-private/private-output.cc:715 #, c-format -msgid "You don't have enough free space in %s" -msgstr "तपाईँ संग %s मा पर्याप्त खाली ठाऊँ छैन" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu हटाउन र %lu स्तर वृद्धि गरिएन ।\n" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: apt-private/private-output.cc:719 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "स्रोत संग्रहहरुको %sB/%sB प्राप्त गर्न आवश्यक छ ।\n" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu पूर्णरुपले स्थापना भएन र हटाइएन ।\n" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "स्रोत संग्रहहरुको %sB प्राप्त गर्न आवश्यक छ ।\n" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "" -#: cmdline/apt-get.cc:902 -#, c-format -msgid "Fetch source %s\n" -msgstr "स्रोत फड्काउनुहोस् %s\n" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "केही संग्रह फड्काउन असफल भयो ।" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "डाउनलोड समाप्त भयो र डाउनलोडमा मोड मात्रै छ" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: cmdline/apt-get.cc:950 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr " %s मा पहिल्यै अनप्याक गरिएका स्रोतको अनप्याक फड्काइदैछ\n" +msgid "Regex compilation error - %s" +msgstr "संकलन त्रुटि रिजेक्स गर्नुहोस् - %s" -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "अनप्याक आदेश '%s' असफल भयो ।\n" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "अद्यावधिक आदेशले कुनै तर्कहरू लिदैन" -#: cmdline/apt-get.cc:963 +#: apt-private/private-update.cc:90 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "जाँच्नुहोस् यदि 'dpkg-dev' प्याकेज स्थापना भयो ।\n" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "निर्माण आदेश '%s' असफल भयो ।\n" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "शाखा प्रक्रिया असफल भयो" +#: apt-private/private-show.cc:156 +#, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "को लागि builddeps जाँच्न कम्तिमा एउटा प्याकेज निर्दष्ट गर्नुपर्छ" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: cmdline/apt-get.cc:1054 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "%s को लागि निर्माण-निर्भरता सूचना प्राप्त गर्न असक्षम भयो" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "चेतावनी: निम्न प्याकलेजहरू प्रणाणीकरण हुन सक्दैन! " -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s कुनै निर्माणमा आधारित हुदैन ।\n" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "प्रमाणिकरण चेतावनी अधिलेखन भयो ।\n" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "%s को लागि %s निर्भरता सन्तुष्ट हुन सकेन किनभने प्याकेज %s फेला पार्न सकिएन" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "केही प्याकेजहरू प्रमाणीकरण हुन सक्दैन" -#: cmdline/apt-get.cc:1289 -#, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "%s को लागि %s निर्भरता सन्तुष्ट हुन सकेन किनभने प्याकेज %s फेला पार्न सकिएन" +#: apt-private/private-download.cc:50 +#, fuzzy +msgid "Install these packages without verification?" +msgstr "यी प्याकेजहरू रूजू बिना स्थापना गर्नुहुन्छ [y/N]? " -#: cmdline/apt-get.cc:1312 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "%s को लागि %s निर्भरता सन्तुष्ट पार्न असफल भयो: स्थापित प्याकेज %s अति नयाँ छ" - -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"%sको लागि %s निर्भरता सन्तुष्ट हुन सकेन किन भने प्याकेज %s को कुनै उपलब्ध संस्करणले संस्करण " -"आवश्यकताहरुलाई सन्तुष्ट पार्न सकेन " +msgid "Failed to fetch %s %s\n" +msgstr "%s %s तान्न असफल भयो\n" -#: cmdline/apt-get.cc:1357 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "%s को लागि %s निर्भरता सन्तुष्ट हुन सकेन किनभने प्याकेज %s फेला पार्न सकिएन" - -#: cmdline/apt-get.cc:1380 -#, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "%s को लागि %s निर्भरता सन्तुष्ट गर्न असफल: %s" +msgid "Failed to parse %s. Edit again? " +msgstr " %s मा %s पुन:नामकरण असफल भयो" -#: cmdline/apt-get.cc:1395 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "%s को लागि निर्माण निर्भरताहरू सन्तुष्ट गर्न सकिएन । " +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "निर्माण निर्भरताहरू प्रक्रिया गर्न असफल" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "%s (%s) मा जडान गरिदैछ" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "स्तर वृद्धि गणना गरिदैछ..." -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "समर्थित मोड्युलहरू:" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "काम भयो" -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "हान्नुहोस्" + +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "प्राप्त गर्नुहोस्:" + +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Err " + +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "%s (%sB/s) मा %sB मा तानियो\n" + +#: apt-private/acqprogress.cc:236 +#, c-format +msgid " [Working]" +msgstr " [काम गरिरहेको]" + +#: apt-private/acqprogress.cc:297 +#, c-format msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"उपयोग: apt-get [विकल्पहरू] आदेश\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get डाउनलोड गर्न र प्याकेजहरू स्थापना गर्नको लागि साधारण आदेश लाइन इन्टरफेस हो ।\n" -"बारम्बार प्रयोग भइरहने आदेशहरू अद्यावधिक र स्थापना हुन् ।\n" -"\n" -"\n" -"आदेशहरू:\n" -" अद्यावधिक गर्नुहोस् - प्याकेजहरुको नयाँ सूचिहरू पुन:प्राप्त गर्नुहोस्\n" -" स्तर वृद्धि गर्नुहोस् - एउटा स्तरवृद्धि सम्पादन गर्नुहोस्\n" -" स्थापना गर्नुहोस् - नयाँ प्याकेजहरू स्थापना गर्नुहोस् (pkg libc6 हो libc6.deb होइन)\n" -" हटाउनुहोस् - प्याकेजहरू हटाउनुहोस्\n" -" स्रोत - स्रोत संग्रहहरू डाउनलोड गर्नुहोस्\n" -" build-dep - स्रोत प्याकेजहरुको लागि निर्माण-निर्भरताहरू कनफिगर गर्नुहोस्\n" -" dist-upgrade - स्तरवृद्धि वितरण गर्नुहोस्, apt-get(8) हेर्नुहोस्\n" -" dselect-upgrade - dselect चयनहरू पछ्याउनुहोस्\n" -" सफा गर्नुहोस् - डाउनलोड गरिएको संग्रह फाइलहरू मेट्नुहोस्\n" -" स्वचालित सफा - पुरानो डाउनलोड भएको संग्रह पाइलहरू मेट्नुहोस्\n" -" जाँच्नुहोस् - त्यहाँ कुनै भाँचिएका निर्भरताहरू छैन भन्ने रूजू गर्नुहोस्\n" -"\n" -"विकल्पहरू:\n" -" -h यो मद्दत पाठ.\n" -" -q लगयोग्य निर्गात - कुनै प्रगति सूचि छैन\n" -" -qq त्रुटिहरुको लागि निर्गात बाहेक केही छैन\n" -" -d डाउनलोड मात्र - संग्रहहरू स्थापना वा अनप्याक नगर्नुहोस्\n" -" -s No-act. Perform ordering simulation\n" -" -y सबै क्वेरीहरुलाई हो मान्नुहोस् र दूषित नबनाउनुहोस्\n" -" -f यदि पूर्णरुपले जाँच असफल भयो भने निरन्तरता दिने प्रयत्न गर्नुहोस्\n" -" -m यदि संग्रहहरु स्थानियकरण योग्य छैन भने निरन्तरता दिने प्रयत्न दिनुहोस्\n" -" -u स्तर वृद्धि प्याकेजहरुको सूचि राम्रो संग देखाउनुहोस्\n" -" -b यसलाई तानिसके पछि स्रोत प्याकेज निर्माण गर्नुहोस्\n" -" -V भरबोस संस्करण नम्बरहरू देखाउनुहोस्\n" -" -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n" -" -o=? एउटा स्वेच्छाचारी कनफिगरेसन विकल्प सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n" -"धेरै सूचना र विकल्पको लागि apt-get(8), sources.list(5) र apt.conf(5) manual\n" -"pages हेर्नुहोस् ।\n" -" APT संग सुपर काउ शक्तिहरू छ ।\n" +"मेडिया परिवर्तन: कृपया डिस्क लेबुल ड्राइभ '%s' मा घुसाउनुहोस्\n" +" '%s'\n" +"र इन्टर थिच्नुहोस्\n" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "को लागि स्रोत तान्न कम्तिमा एउटा प्याकेज निर्दिष्ट गर्नुपर्छ" +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 +#, c-format +msgid "Unable to read %s" +msgstr "%s पढ्न असफल भयो" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 +#, c-format +msgid "Unable to change to %s" +msgstr "%s मा परिवर्तन गर्न असक्षम" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 +#, c-format +msgid "No mirror file '%s' found " msgstr "" -#: cmdline/apt-mark.cc:68 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "तर यो स्थापना भएन" +msgid "Can not read mirror file '%s'" +msgstr "फाइल %s खोल्न सकिएन" -#: cmdline/apt-mark.cc:74 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "तर %s स्थापना हुनुपर्यो" +msgid "No entry found in mirror file '%s'" +msgstr "फाइल %s खोल्न सकिएन" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "तर %s स्थापना हुनुपर्यो" +#: methods/mirror.cc:445 +#, c-format +msgid "[Mirror: %s]" +msgstr "" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s पहिल्यै नयाँ संस्करण हो ।\n" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "सहायक प्रक्रियामा IPC पाइप सिर्जना गर्न असफल" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s पहिल्यै नयाँ संस्करण हो ।\n" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "जडान असमायिक बन्द भयो" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "तर %s स्थापना हुनुपर्यो" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "खराब पूर्वनिर्धारण सेटिङ्ग!" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "%s खोल्न असफल" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "निरन्तरता दिन इन्टर थिच्नुहोस् ।" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" msgstr "" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" +#: dselect/install:102 +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "अनप्याक गर्दा केही त्रुटिहरू देखा पर्यो । म कनफिगर गर्न गइरहेको छु" -#: cmdline/apt.cc:47 +#: dselect/install:103 +#, fuzzy +msgid "will be configured. This may result in duplicate errors" +msgstr "स्थापना भएको प्याकेजहरू । यसले नक्कली त्रुटिहरुमा नतिजा गर्न सक्छ" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "वा त्रुटि हरटाइरहेको निर्भरताहरुले गरेको हो । यो ठीक छ, मात्र त्रुटिहरू" + +#: dselect/install:105 msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" +"दिएको संदेशहरू महत्वपूर्ण छ । कृपया तिनीहरू निश्चित गर्नुहोस् र चलाउनुहोस् [I]फेरी स्थापना " +"गर्नुहोस्" -#: methods/cdrom.cc:203 +#: dselect/update:30 +msgid "Merging available information" +msgstr "उपलब्ध सूचना गाँभिदैछ" + +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "अहिलेसम्म लिङ्क गरिएको नोडमा बोलाइएको ड्रपनोड" + +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "ह्यास तत्व तोक्न असफल भयो" + +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "मोड बाँड्न असफल भयो" + +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "थपमोडमा आन्तरिक त्रुटि" + +#: apt-inst/filelist.cc:477 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "सिडी रोम डेटाबेस पढ्न असक्षम %s" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "मोड अधिलेखन गर्ने प्यास गरिदै, %s -> %s र %s/%s" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"कृपया APT ले यो सिडी रोमलाई चिन्नको लागि apt-cdrom प्रयोग गर्नुहोस् । apt-get " -"अद्यावधिक नयाँ सिडी रोमहरू थप्नको लागि प्रयोग गरिदैन" +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "मोडको डबल थप %s -> %s" + +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "नक्कली कनफिगगरेसन फाइल %s/%s" + +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" +msgstr "बाटो %s अति लामो छ " + +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" +msgstr "एक भन्दा बढी %s अनप्याक गरिदैछ" + +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "डाइरेक्ट्री %s फेरियो " + +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "प्याकेज लक्षित मोडमा लेख्ने प्यास गर्दैछ %s/%s" + +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "घुम्ती बाटो अति लामो छ" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 +#, c-format +msgid "Failed to stat %s" +msgstr " %s स्थिर गर्न असफल" + +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr " %s मा %s पुन:नामकरण असफल भयो" + +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "डाइरेक्ट्री %s डाइरेक्ट्री विहिन द्वारा बदलिदैछ" + +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "यसको ह्यास बाल्टीमा नोड स्थित गर्न असफल भयो" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "बाटो अति लामो छ" + +#: apt-inst/extract.cc:421 +#, c-format +msgid "Overwrite package match with no version for %s" +msgstr " %s को लागि संस्करन बिना अधिलेखन प्याकेज मेल खायो" + +#: apt-inst/extract.cc:438 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" +msgstr "फाइल %s/%s ले प्याकेज %s मा एउटा अधिलेखन गर्दछ" + +#: apt-inst/extract.cc:498 +#, c-format +msgid "Unable to stat %s" +msgstr "%s स्थिर गर्न असक्षम भयो" + +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, c-format +msgid "Failed to write file %s" +msgstr "फाइल %s लेख्न असफल भयो" + +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "%s फाइल बन्द गर्न असफल भयो" + +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "यो वैध DEB संग्रह होइन, '%s' सदस्य हराइरहेछ" + +#: apt-inst/deb/debfile.cc:132 +#, c-format +msgid "Internal error, could not locate member %s" +msgstr "आन्तरीक त्रुटि, सदस्य तोक्न सक्दैन %s" + +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "पद वर्णन गर्न नसकिने नियन्त्रण फाइल" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "अवैध संग्रह हस्ताक्षर" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "गलत सिडी रोम" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "संग्रह सदस्य हेडर पढ्दा त्रुटि " -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "%s मा सिडी रोम अनमाउन्ट गर्न असक्षम भयो, यो अहिले प्रयोगमा हुन सक्छ ।" +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "अवैध संग्रह सदस्य हेडर" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "डिस्क फेला परेन ।" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "अवैध संग्रह सदस्य हेडर" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "फाइल फेला परेन " +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "संग्रह अति छोटो छ" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "स्थिर गर्न असफल भयो" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "संग्रह हेडरहरू पढ्न असफल" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "परिमार्जन समय सेट असफल भयो" +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "पाइपहरू सिर्जना गर्न असफल" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "अवैध URl, स्थानिय URIS // संग सुरू हुन सक्दैन" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "gzip कार्यन्वयन गर्न असफल" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "लगइन भइरहेछ" +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "संग्रह दूषित भयो" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "समान नाम निर्धारण गर्न असक्षम भयो" +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "टार चेकसम असफल भयो, संग्रह दूषित भयो" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "स्थानिय नाम निर्धारण गर्न असक्षम भयो" +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "अज्ञात टार हेडर प्रकार %u, सदस्य %s" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/install-progress.cc:57 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "सर्भरले जडान अस्वीकार गर्यो र भन्यो: %s" +msgid "Progress: [%3i%%]" +msgstr "" -#: methods/ftp.cc:225 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" + +#: apt-pkg/init.cc:146 #, c-format -msgid "USER failed, server said: %s" -msgstr "प्रयोगकर्ता असफल भयो, सर्भरले भन्यो: %s" +msgid "Packaging system '%s' is not supported" +msgstr "प्याकिङ्ग प्रणाली '%s' समर्थित छैन" -#: methods/ftp.cc:232 +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "उपयुक्त प्याकिङ्ग प्रणाली प्रकार निर्धारन गर्न असक्षम भयो" + +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "PASS failed, server said: %s" -msgstr "पास असफल भयो, सर्भरले भन्यो: %s" +msgid "Wrote %i records.\n" +msgstr "%i रेकर्डहरू लेखियो ।\n" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"प्रोक्सी सर्भर निर्दिष्ट गरियो तर कुनै स्क्रिफ्ट लगइन भएन, Acquire::ftp::ProxyLogin " -"खाली छ ।" +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "हराइरहेको फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n" -#: methods/ftp.cc:280 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "लगइन स्क्रिफ्ट आदेश '%s' असफल भयो, सर्भरले भन्यो: %s" +msgid "Wrote %i records with %i mismatched files\n" +msgstr "मेल नखाएका फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n" -#: methods/ftp.cc:306 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "टाइप असफल भयो: %s" +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "हराइरहेको फाइल %i हरू र मेल नखाएका फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "जडान समय सकियो" +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "सर्भरले जडान बन्द गर्यो" +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "MD5Sum मेल भएन" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "एउटा प्रतिक्रियाले बफर अधिप्रवाह गर्यो" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "प्याकेज सूचीहरू वा वस्तुस्थिति फाइल पद वर्णन गर्न वा खोल्न सकिएन ।" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "प्रोटोकल दूषित" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "यो समस्याहरू सुधार्न तपाईँ apt-get अद्यावधिक चलाउन चाहनुहुन्छ" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "एउटा सकेट सिर्जना गर्न सकेन" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "स्रोतहरुको सूचि पढ्न सकिएन ।" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "डेटा सकेट जडान गर्न सकिएन, जडान समय सकियो" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "खाली प्याकेज क्यास" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "असफल भयो" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "प्याकेज क्यास फाइल दूषित भयो " -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "निस्क्रिय सकेट जडान गर्न सकिएन" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "प्याकेज क्यास फाइल एउटा अमिल्दो संस्करण हो" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo सुन्ने सकेट प्राप्त गर्न असक्षम भयो" +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "प्याकेज क्यास फाइल दूषित भयो " -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "सकेट बाँध्न सकिएन" +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "यो APT ले संस्करण प्रणालीलाई समर्थन गर्दैन '%s'" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "सकेटमा सुन्न सकिएन" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "प्याकेज क्यास विभिन्न वास्तुकलाको लागि निर्माण भएको हो" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "सकेट नाम निर्धारण गर्न सकिएन" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "आधारित" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "पोर्ट आदेश पठाउन असक्षम भयो" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "पुन:आधारित" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "अज्ञात ठेगाना परिवार %u (AF_*)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "सुझाव दिन्छ" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT असफल भयो, सर्भरले भन्यो: %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "सिफारिस गर्दछ" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "डेटा सकेटको जडान समय सकियो" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "द्वन्दहरू" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "जडान स्वीकार गर्न असक्षम भयो" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "बदल्छ" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "समस्या द्रुतान्वेषण फाइल" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "वेकायमहरू" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "फाइल तान्न असक्षम भयो, सर्भरले भन्यो '%s'" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "डेटा सकेट समय सकियो" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "डेटा स्थान्तरण असफल भयो, सर्भरले भन्यो '%s'" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "महत्वपूर्ण" + +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "आवश्यक" + +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "मानक" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "क्वेरी" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "वैकल्पिक" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "आह्वान गर्न असक्षम भयो" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "अतिरिक्त" -#: methods/connect.cc:76 +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Connecting to %s (%s)" -msgstr "%s (%s) मा जडान गरिदैछ" +msgid "The method driver %s could not be found." +msgstr "विधि ड्राइभर %s फेला पार्न सकिएन ।" -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "जाँच्नुहोस् यदि 'dpkg-dev' प्याकेज स्थापना भयो ।\n" -#: methods/connect.cc:94 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "%s (f=%u t=%u p=%u) को लागि सकेट सिर्जना गर्न सकिएन" +msgid "Method %s did not start correctly" +msgstr "विधि %s सही रुपले सुरू हुन सकेन" -#: methods/connect.cc:100 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr " %s:%s (%s) मा जडान सुरुवात गर्न सकेन" +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "कृपया डिस्क लेबुल: '%s' ड्राइभ '%s'मा घुसउनुहोस् र इन्टर थिच्नुहोस् । " -#: methods/connect.cc:108 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "%s:%s (%s) मा जडान गर्न सकिएन, जडान समय सकियो" +msgid "Index file type '%s' is not supported" +msgstr "अनुक्रमणिका फाइल प्रकार '%s' समर्थित छैन" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr " %s:%s (%s) मा जडान गर्न सकिएन ।" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "निर्भरता ट्री निर्माण गरिदैछ" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 -#, c-format -msgid "Connecting to %s" -msgstr "%s मा जडान गरिदैछ" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "उमेद्वार संस्करणहरू" -#: methods/connect.cc:180 methods/connect.cc:199 -#, c-format -msgid "Could not resolve '%s'" -msgstr "'%s' हल गर्न सकिएन" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "निर्भरता सिर्जना" -#: methods/connect.cc:205 -#, c-format -msgid "Temporary failure resolving '%s'" -msgstr "'%s' हल गर्दा अस्थायी असफल" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +#, fuzzy +msgid "Reading state information" +msgstr "उपलब्ध सूचना गाँभिदैछ" -#: methods/connect.cc:209 +#: apt-pkg/depcache.cc:250 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr " '%s:%s' (%i) हल गर्दा केही दुष्ट घट्यो" +msgid "Failed to open StateFile %s" +msgstr "%s खोल्न असफल" -#: methods/connect.cc:211 +#: apt-pkg/depcache.cc:256 #, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr " '%s:%s' (%i) हल गर्दा केही दुष्ट घट्यो" +msgid "Failed to write temporary StateFile %s" +msgstr "फाइल %s लेख्न असफल भयो" -#: methods/connect.cc:258 -#, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "%s %s मा जडान गर्न असफल भयो:" +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "पुन:नामकरण असफल गरियो, %s (%s -> %s) ।" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "आन्तरिक त्रुटि: असल हस्ताक्षर, तर कुञ्जी औठाछाप निर्धारण गर्न सकिएन?!" +#: apt-pkg/acquire-item.cc:163 +#, fuzzy +msgid "Hash Sum mismatch" +msgstr "MD5Sum मेल भएन" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "कम्तिमा एउटा अवैध हस्ताक्षर विरोध भयो ।" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "साइज मेल खाएन" -#: methods/gpgv.cc:174 +#: apt-pkg/acquire-item.cc:173 #, fuzzy -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "हस्ताक्षर रूजू गर्न '%s' कार्यन्वयन गर्न सकिएन (के gpgv स्थापना भयो?)" +msgid "Invalid file format" +msgstr "अवैध सञ्चालन %s" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1573 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "gpgv कार्यन्वयन गर्दा अज्ञात त्रुटि" +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (१)" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "निम्न हस्ताक्षरहरू अवैध छन्:\n" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "निम्न कुञ्जी IDs को लागि कुनै सार्वजनिक कुञ्जी उपलब्ध छैन:\n" -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1669 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "निम्न हस्ताक्षरहरू रूजू हुन सक्दैन किन भने सार्वजनिक कुञ्जी उपलब्ध छैन:\n" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "फाइलमा त्रुटि लेखिदैछ" +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "सर्भरबाट त्रुटि पढिदैछ । दूर गन्तब्य बन्द जडान" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "सर्भरबाट त्रुटि पढिदैछ" +#: apt-pkg/acquire-item.cc:1859 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"%s प्याकेजको लागि मैले फाइल स्थित गर्न सकिन । यसको मतलब तपाईँले म्यानुल्ली यो प्याकेज " +"निश्चित गर्नुहोस् । (arch हराएरहेको कारणले) " -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "फाइलमा त्रुटि लेखिदैछ" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "असफल चयन गर्नुहोस्" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "प्याकेज अनुक्रमणिका फाइलहरू दूषित भए । प्याकेज %s को लागि कुनै फाइलनाम: फाँट छैन ।" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "जडान समय सकियो" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "अनुक्रमणिका फाइल प्रकार '%s' समर्थित छैन" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "निर्गात फाइलमा त्रुटि लेखिदैछ" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "%s स्थिर गर्न असक्षम भयो ।" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "हेडरहरुको लागि पर्खिदैछ" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "क्यास संग एउटा नमिल्दो संस्करण प्रणाली छ" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "खराब हेडर लाइन" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (pkg फेला पार्नुहोस् )" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP सर्भरले अवैध जवाफ हेडर पठायो" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "वाऊ, APT ले सक्षम गरेको प्याकेज नामहरुको नम्बरलाई तपाईँले उछिन्नुभयो । " -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP सर्भरले अवैध सामग्री-लम्बाई हेडर पठायो" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "वाऊ, APT ले सक्षम गरेको संस्करणहरुको नम्बरलाई तपाईँले उछिन्नुभयो । " -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP सर्भरले अवैध सामग्री-दायरा हेडर पठायो" +#: apt-pkg/pkgcachegen.cc:263 +#, fuzzy +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "वाऊ, APT ले सक्षम गरेको संस्करणहरुको नम्बरलाई तपाईँले उछिन्नुभयो । " + +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "वाऊ, APT ले सक्षम गरेको निर्भरताहरुको नम्बरलाई तपाईँले उछिन्नुभयो । " + +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "फाइल निर्भरताहरू प्रक्रिया गर्दा प्याकेज %s %s फेला परेन" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "HTTP सर्भर संग भाँचिएको दायरा समर्थन छ" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "स्रोत प्याकेज सूची %s स्थिर गर्न सकिएन " -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "अज्ञात मिति ढाँचा" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "प्याकेज सूचिहरू पढिदैछ" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "खराब हेडर डेटा" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "फाइल उपलब्धताहरू संकलन गरिदैछ" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "जडान असफल भयो" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr " %s मा लेख्न असक्षम" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "आन्तरिक त्रुटि" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "स्रोत क्यास बचत गर्दा IO त्रुटि" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "स्तर वृद्धि गणना गरिदैछ..." +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "बिक्रता ब्ल्क %s ले कुनै औठाछाप समाविष्ट गर्दैन" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "काम भयो" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "आंशिक सूचिहरुको डाइरेक्ट्री %s हराइरहेछ ।" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/acquire.cc:91 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "आंशिक संग्रह डाइरेक्ट्री %s हराइरहेछ ।" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "सूचि डाइरेक्ट्री ताल्चा मार्न असफल" -#: apt-private/private-list.cc:164 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "%li को %li फाइल पुन:प्राप्त गरिदैछ (%s बाँकी छ)" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "निर्भरताहरू सुधार गरिदैछ..." +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "%li को %li फाइल पुन:प्राप्त गरिदैछ" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr "असफल भयो ।" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"केही अनुक्रमणिका फाइलहरू डाउनलोड गर्न असफल भयो, तिनीहरू उपेक्षित भए, वा सट्टामा पुरानो " +"एउटा प्रयोग गरियो ।" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "निर्भरताहरू सुधार गर्न असक्षम भयो" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "तपाईँको स्रोत सूचिमा केही 'source' URIs राख्नुहोस्" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "स्तर वृद्धि सेटलाई न्यूनतम गर्न असक्षम भयो" +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr "काम भयो" +#: apt-pkg/policy.cc:422 +#, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "प्राथमिकता फाइलमा अवैध रेकर्ड, कुनै प्याकेज हेडर छैन" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "यी सुधार गर्न तपाईँले 'apt-get -f install' चलाउन पर्छ ।" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "पिन टाइप %s बुझ्न सकिएन " -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "नभेटिएका निर्भरताहरू । -f प्रयोग गरेर प्रयास गर्नुहोस् ।" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "पिनको लागि कुनै प्राथमिकता (वा शून्य) निर्दिष्ट छैन" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -#: apt-private/private-output.cc:234 +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [स्थापना भयो]" - -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [स्थापना भयो]" +msgid "Could not configure '%s'. " +msgstr "फाइल %s खोल्न सकिएन" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." msgstr "" +"द्वन्द/पुन-आधारित लूपको कारणले गर्दा स्थापना चलाउनको लागि अस्थायी रुपमा प्याकेज %s " +"हटाउनु पर्नेछ । यो प्राय नराम्रो हो, तर यदि तपाईँ यो साँच्चै गर्न चाहनुहुन्छ भने, APT::" +"Force-LoopBreak विकल्प सक्रिय गर्नुहोस् ।" -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [स्थापना भयो]" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "लाइन %u स्रोत सूचि %s मा अति लामो छ ।" -#: apt-private/private-output.cc:245 +#: apt-pkg/cdrom.cc:571 #, fuzzy -msgid "[installed]" -msgstr " [स्थापना भयो]" +msgid "Unmounting CD-ROM...\n" +msgstr "सिडी रोम अनमाउन्ट गरिदैछ..." -#: apt-private/private-output.cc:249 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +msgid "Using CD-ROM mount point %s\n" +msgstr "सिडी रोम माउन्ट विन्दु प्रयोग गरिदैछ %s\n" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "डिस्को लागि पर्खिदै...\n" -#: apt-private/private-output.cc:435 -#, c-format -msgid "but %s is installed" -msgstr "तर %s स्थापना भयो" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "सिडी रोम माउन्ट गरिदै...\n" -#: apt-private/private-output.cc:437 +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "परिचय गराइदैछ..." + +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "but %s is to be installed" -msgstr "तर %s स्थापना हुनुपर्यो" +msgid "Stored label: %s\n" +msgstr "लेबुल भण्डारण गर्नुहोस्:%s \n" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "तर यो स्थापनायोग्य छैन" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "अनुक्रमणिका फाइलहरुको लागि डिस्क स्क्यान गरिदैछ...\n" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "तर यो अवास्तविक प्याकेज होइन" +#: apt-pkg/cdrom.cc:734 +#, fuzzy, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr " %i प्याकेज अनुक्रमणिकाहरू, %i स्रोत अनुक्रमणिका र %i हस्ताक्षरहरू फेला परे\n" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "तर यो स्थापना भएन" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "तर यो स्थापना हुन गइरहेको छैन" +#: apt-pkg/cdrom.cc:771 +#, fuzzy, c-format +msgid "Found label '%s'\n" +msgstr "लेबुल भण्डारण गर्नुहोस्:%s \n" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr "वा" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "त्यो वैध नाम होइन, फेरी प्रयास गर्नुहोस् ।\n" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "निम्न प्याकेजहरुले निर्भरताहरू भेटेनन्:" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"यो डिस्कको नाम:\n" +"'%s'\n" + +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "प्यकेज सूचिहरू प्रतिलिपी गरिदैछ..." + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "नयाँ स्रोत सूचि लेखिदैछ\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "यो डिस्कको लागि स्रोत सूचि प्रविष्टिहरू:\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "प्याकेज %s पुन:स्थापना हुन चाहन्छ, तर यसको लागि मैले एउटा संग्रह फेला पार्न सकिन ।" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "निम्न प्याकेजहरू हटाइनेछन्:" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"त्रुटि, pkgProblemResolver:: समाधानले विच्छेदन सिर्जना गर्दछ, यो भइरहेको प्याकेजहरुको " +"कारणले गर्दा हो ।" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "निम्न प्याकेजहरू पछाडि राखिनेछन्:" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "समस्याहरू सुधार्न असक्षम भयो, तपाईँले प्याकेजहरु भाँच्नुभयो ।" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "निम्न प्याकेजहरू स्तर वृद्धि हुनेछन्:" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "निम्न प्याकेजहरू स्तरकम गरिनेछन्:" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "निम्न भइरहेको प्याकेजहरू परिवर्तन हुनेछैन:" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: apt-private/private-output.cc:668 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (%s कारणले) " +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" msgstr "" -"चेतावनी: निम्न आवश्यक प्याकेजहरू हटाइनेछन् ।\n" -"तपाईँ के गरिरहेको यकिन नभएसम्म यो काम गरिने छैन!" -#: apt-private/private-output.cc:707 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu स्तर वृद्धि गरियो, %lu नयाँ स्थापना भयो, " +msgid "Unable to parse package file %s (1)" +msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (१)" -#: apt-private/private-output.cc:711 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu पुन: स्थापना गरियो, " +msgid "Unable to parse package file %s (2)" +msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (२)" -#: apt-private/private-output.cc:713 -#, c-format -msgid "%lu downgraded, " -msgstr "%lu स्तर कम गरियो, " +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (१)" -#: apt-private/private-output.cc:715 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu हटाउन र %lu स्तर वृद्धि गरिएन ।\n" +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "द्रष्टब्य, %s को सट्टा %s चयन भइरहेछ\n" -#: apt-private/private-output.cc:719 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu पूर्णरुपले स्थापना भएन र हटाइएन ।\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" +msgid "No Hash entry in Release file %s" msgstr "" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "घुमाउरो फाइलमा अवैध लाइन:%s" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (१)" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (URI पद वर्णन)" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "अद्यावधिक आदेशले कुनै तर्कहरू लिदैन" +#: apt-pkg/sourcelist.cc:170 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist पद वर्णन )" -#: apt-private/private-update.cc:90 -#, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/sourcelist.cc:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist)" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: apt-pkg/sourcelist.cc:184 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist पद वर्णन )" -#: apt-private/private-show.cc:156 +#: apt-pkg/sourcelist.cc:190 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist पद वर्णन )" + +#: apt-pkg/sourcelist.cc:193 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist पद वर्णन )" + +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (URI)" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist)" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "आन्तरिक त्रुटि, स्थापना प्याकेजहरुलाई भाँचिएको प्याकेज भनिन्थ्यो!" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (URI पद वर्णन)" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "प्याकेजहरू हट्न चाहदैछन् तर हटाई अक्षम भइरहेछ ।" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (पूर्ण dist)" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "आन्तरिक त्रुटि, आदेश समाप्त भएको छैन" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist पद वर्णन )" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "कस्तो नमिलेको.. साइजहरू मेल खाएन, apt@packages.debian.org इमेल गर्नुहोस्" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "%s खोलिदैछ" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "संग्रहहरुको %sB/%sB प्राप्त गर्न आवश्यक ।\n" +msgid "Malformed line %u in source list %s (type)" +msgstr "वैरुप्य लाइन %u स्रोत सूचिमा %s (प्रकार)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "संग्रहहरुको %sB प्राप्त गर्न आवश्यक ।\n" +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "स्रोत सूची %s भित्र %u लाइनमा टाइप '%s' ज्ञात छैन" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:416 #, fuzzy, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "अनप्याक गरिसके पछि थप डिस्क खाली ठाउँको %sB प्रयोग हुनेछ ।\n" +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "स्रोत सूची %s भित्र %u लाइनमा टाइप '%s' ज्ञात छैन" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 -#, fuzzy, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "%sB अनप्याक गरिसके पछि डिस्क खाली ठाउँ खाली हुनेछ ।\n" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr " '%s' को लागि '%s' निष्काशन फेला पार्न सकिएन" -#: apt-private/private-install.cc:200 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "You don't have enough free space in %s." -msgstr "तपाईँ संग %s मा पर्याप्त खाली ठाऊँ छैन ।" +msgid "Version '%s' for '%s' was not found" +msgstr " '%s' को लागि '%s' संस्करण फेला पार्न सकिएन" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "त्यहाँ समस्याहरू छन् र हुन्छलाई जोड नगरिकन -y को प्रयोग भयो" +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "प्याकेज फेला पार्न सकिएन %s" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "त्रिभियल मात्र निर्दिष्ट गरिएको छ तर यो त्रिभियल सञ्चालन होइन ।" +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "प्याकेज फेला पार्न सकिएन %s" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "हो,मैले भने जस्तै गर्नुहोस्!" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "प्याकेज फेला पार्न सकिएन %s" -#: apt-private/private-install.cc:222 +#: apt-pkg/cacheset.cc:626 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -"तपाईँले केही संभवत: हानिकारक काम गर्नुपर्छ ।\n" -"निरन्तरता दिन '%s' वाक्यांशमा टाइप गर्नुहोस् \n" -" ?] " - -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "परित्याग गर्नुहोस् ।" - -#: apt-private/private-install.cc:243 -#, fuzzy -msgid "Do you want to continue?" -msgstr "के तपाईँ निरन्तरता दिन चाहनुहुन्छ [Y/n]? " - -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "केही फाइलहरू डाउनलोड गर्न असफल भयो" -#: apt-private/private-install.cc:320 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"केही संग्रहहरू तान्न असक्षम भयो,apt-get अद्यावधिक चलिरहेछ वा हराइरहेको --fix-संगै प्रयास " -"गर्नुहुन्छ ?" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "हराइरहेको --fix-र स्वाप भइरहेको मेडिया हाल समर्थित भइरहेको छैन" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "हराइरहेको प्याकेजहरू सुधार्न असक्षम भयो ।" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "स्थापना परित्याग गरिदैछ ।" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -msgstr[1] "" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" msgstr "" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" msgstr "" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" msgstr "" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "निम्न सूचनाले अवस्थालाई हल गर्न मद्दत गर्नेछ: " +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "चयन %s फेला पार्न सकिएन" -#: apt-private/private-install.cc:506 -#, fuzzy -msgid "Internal Error, AutoRemover broke stuff" -msgstr "आन्तरिक त्रुटि,समस्या हलकर्ताले उत्तम गुण भाँच्यो " +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "ताल्चा मारिएको फाइल मात्र पढ्नको लागि ताल्चा मार्न प्रयोग गरिएको छैन %s" -#: apt-private/private-install.cc:513 -#, fuzzy -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" -msgstr[1] "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "ताल्चा मारिएको फाइल खोल्न सकिएन %s" -#: apt-private/private-install.cc:517 -#, fuzzy, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" -msgstr[1] "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "nfs माउन्ट गरिएको लक फाइलको लागि लक प्रयोग गरिएको छैन %s" -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "ताल्चा प्राप्त गर्न सकिएन %s" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "तपाईँ यसलाई सुधार गर्न 'apt-get -f install' चलाउन चाहनुहुन्छ:" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -"नभेटिएका निर्भरताहरू । प्याकेजहरू बिना 'apt-get -f install' प्रयास गर्नुहोस् ( वा " -"समाधान निर्दिष्ट गर्नुहोस्) ।" -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -"केही प्याकेजहरू स्थापना हुन सक्दैन । यसको मतलब तपाईँले\n" -" एउटा असम्भव अवास्थाको अनुरोध गर्नु भएको छ वा यदि तपाईँले प्रयोग गर्नु भइरहेको केहि " -"प्याकेजहरुको आवश्यकता पर्ने अस्थिर\n" -" वितरण अहिले सम्म सिर्जना\n" -" भएको छैन वा आवगमन विनानै सर्यो ।" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "भाँचिएका प्याकेजहरू" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "निम्न अतिरिक्त प्याकेजहरू स्थापना हुनेछन्:" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "सहायक प्रक्रिया %s ले खण्डिकरण गल्ति प्राप्त भयो ।" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "सुझाव दिएका प्याकेजहरू:" +#: apt-pkg/contrib/fileutl.cc:826 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "सहायक प्रक्रिया %s ले खण्डिकरण गल्ति प्राप्त भयो ।" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "सिफारिस गरिएका प्याकेजहरू:" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "सहायक प्रक्रिया %s ले एउटा त्रुटि कोड फर्कायो (%u)" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "%s फड्किदैछ, यो पहिल्यै स्थापना भयो र स्तरवृद्धि सेट भएको छैन ।\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "सहायक प्रक्रिया %s अनपेक्षित बन्द भयो" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:913 #, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "%s फड्किदैछ, यो पहिल्यै स्थापना भयो र स्तरवृद्धि सेट भएको छैन ।\n" +msgid "Problem closing the gzip file %s" +msgstr "फाइल बन्द गर्दा समस्या" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr " %s को पुन: स्थापना सम्भव छैन, यो डाउनलोड हुन सक्दैन ।\n" +msgid "Could not open file %s" +msgstr "फाइल %s खोल्न सकिएन" -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s पहिल्यै नयाँ संस्करण हो ।\n" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "%s को लागि पाइप खोल्न सकिएन" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "सहायक प्रक्रिया IPC सिर्जना गर्न असफल" + +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "सङ्कुचनकर्ता कार्यान्वयन गर्न असफल भयो" + +#: apt-pkg/contrib/fileutl.cc:1514 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "%s को लागि चयन भएको संस्करण %s (%s)\n" +msgid "read, still have %llu to read but none left" +msgstr "पड्नुहोस्, अहिले सम्म %lu पढ्न छ तर कुनै बाँकी छैन" -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "%s को लागि चयन भएको संस्करण %s (%s)\n" +msgid "write, still have %llu to write but couldn't" +msgstr "लेख्नुहोस्, अहिले सम्म %lu लेख्न छ तर सकिदैन " -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/fileutl.cc:1915 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "प्याकेज %s स्थापना भएन, त्यसैले हटेन\n" +msgid "Problem closing the file %s" +msgstr "फाइल बन्द गर्दा समस्या" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/fileutl.cc:1927 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "प्याकेज %s स्थापना भएन, त्यसैले हटेन\n" +msgid "Problem renaming the file %s to %s" +msgstr "फाइल गुप्तिकरण गर्दा समस्या" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1938 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "फाइल अनलिङ्क गर्दा समस्या" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "चेतावनी: निम्न प्याकलेजहरू प्रणाणीकरण हुन सक्दैन! " +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "फाइल गुप्तिकरण गर्दा समस्या" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "प्रमाणिकरण चेतावनी अधिलेखन भयो ।\n" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... त्रुटि!" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "केही प्याकेजहरू प्रमाणीकरण हुन सक्दैन" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... गरियो" -#: apt-private/private-download.cc:50 -#, fuzzy -msgid "Install these packages without verification?" -msgstr "यी प्याकेजहरू रूजू बिना स्थापना गर्नुहुन्छ [y/N]? " +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-sources.cc:58 +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr " %s मा %s पुन:नामकरण असफल भयो" - -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%c%s... %u%%" +msgstr "%c%s... गरियो" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "एउटा खाली फाइल mmap बनाउन सकिएन" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "हान्नुहोस्" +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "%s को लागि पाइप खोल्न सकिएन" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "प्राप्त गर्नुहोस्:" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "%lu बाइटहरुको mmap बनाउन सकिएन" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "%s खोल्न असफल" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "आह्वान गर्न असक्षम भयो" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "%s (%sB/s) मा %sB मा तानियो\n" +msgid "Couldn't make mmap of %lu bytes" +msgstr "%lu बाइटहरुको mmap बनाउन सकिएन" -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [काम गरिरहेको]" +#: apt-pkg/contrib/mmap.cc:322 +#, fuzzy +msgid "Failed to truncate file" +msgstr "फाइल %s लेख्न असफल भयो" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/mmap.cc:341 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -"मेडिया परिवर्तन: कृपया डिस्क लेबुल ड्राइभ '%s' मा घुसाउनुहोस्\n" -" '%s'\n" -"र इन्टर थिच्नुहोस्\n" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "No mirror file '%s' found " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "फाइल %s खोल्न सकिएन" - -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "फाइल %s खोल्न सकिएन" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "[Mirror: %s]" -msgstr "" +msgid "Unable to stat the mount point %s" +msgstr "माउन्ट बिन्दु %s स्थिर गर्न असक्षम" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "सहायक प्रक्रियामा IPC पाइप सिर्जना गर्न असफल" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "सिडी रोम स्थिर गर्न असफल भयो" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "जडान असमायिक बन्द भयो" +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "नचिनिएको टाइप संक्षिप्त रुप: '%c'" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "खराब पूर्वनिर्धारण सेटिङ्ग!" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "कनफिगरेसन फाइल खोलिदैछ %s" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "निरन्तरता दिन इन्टर थिच्नुहोस् ।" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "वाक्य संरचना त्रुटि %s:%u: बन्द कुनै नाम बिना सुरू हुन्छ ।" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "वाक्य संरचना त्रुटि %s:%u: वैरुप गरिएको ट्याग" -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "अनप्याक गर्दा केही त्रुटिहरू देखा पर्यो । म कनफिगर गर्न गइरहेको छु" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "वाक्य संरचना त्रुटि %s:%u: मान पछाडि अतिरिक्त जंक" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "स्थापना भएको प्याकेजहरू । यसले नक्कली त्रुटिहरुमा नतिजा गर्न सक्छ" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "वाक्य संरचना त्रुटि %s:%u: निर्देशनहरू माथिल्लो तहबाट मात्र हुन्छ" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "वा त्रुटि हरटाइरहेको निर्भरताहरुले गरेको हो । यो ठीक छ, मात्र त्रुटिहरू" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "वाक्य संरचना त्रुटि %s:%u: अति धेरै नेस्टेड समावेश गर्दछ" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "" -"दिएको संदेशहरू महत्वपूर्ण छ । कृपया तिनीहरू निश्चित गर्नुहोस् र चलाउनुहोस् [I]फेरी स्थापना " -"गर्नुहोस्" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "वाक्य संरचना त्रुटि %s:%u: यहाँ बाट समावेश गरेको" -#: dselect/update:30 -msgid "Merging available information" -msgstr "उपलब्ध सूचना गाँभिदैछ" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "वाक्य संरचना त्रुटि %s:%u: समर्थन नभएको डाइरेक्टिभ '%s'" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "अहिलेसम्म लिङ्क गरिएको नोडमा बोलाइएको ड्रपनोड" +#: apt-pkg/contrib/configuration.cc:900 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "वाक्य संरचना त्रुटि %s:%u: निर्देशनहरू माथिल्लो तहबाट मात्र हुन्छ" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "ह्यास तत्व तोक्न असफल भयो" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "वाक्य संरचना त्रुटि %s:%u:फाइलको अन्त्यमा अतिरिक्त जंक" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "मोड बाँड्न असफल भयो" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "स्थापना परित्याग गरिदैछ ।" + +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "आदेश लाइन विकल्प '%c' [%s बाट] ज्ञात छैन ।" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "थपमोडमा आन्तरिक त्रुटि" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "आदेश लाइन विकल्प %s बुझिएन" -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "मोड अधिलेखन गर्ने प्यास गरिदै, %s -> %s र %s/%s" +msgid "Command line option %s is not boolean" +msgstr "आदेश लाइन विकल्प %s बूलियन छैन" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "मोडको डबल थप %s -> %s" +msgid "Option %s requires an argument." +msgstr "विकल्प %s लाई एउटा तर्कको आवश्यकता पर्दछ ।" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "नक्कली कनफिगगरेसन फाइल %s/%s" +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "विकल्प %s: कनफिगरेसन वस्तु विशिष्टिकरण संग एउटा =<val> हुनुपर्छ ।" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "The path %s is too long" -msgstr "बाटो %s अति लामो छ " +msgid "Option %s requires an integer argument, not '%s'" +msgstr "विकल्प %s लाई एउटा इन्टिजर तर्कको आवश्यक पर्दछ, '%s' होइन" -#: apt-inst/extract.cc:132 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Unpacking %s more than once" -msgstr "एक भन्दा बढी %s अनप्याक गरिदैछ" +msgid "Option '%s' is too long" +msgstr "विकल्प '%s' अति लामो छ" -#: apt-inst/extract.cc:142 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "The directory %s is diverted" -msgstr "डाइरेक्ट्री %s फेरियो " +msgid "Sense %s is not understood, try true or false." +msgstr "अर्थ %s बुझिएन, सत्य वा झूठो प्रयास गर्नुहोस् ।" -#: apt-inst/extract.cc:152 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "प्याकेज लक्षित मोडमा लेख्ने प्यास गर्दैछ %s/%s" +msgid "Invalid operation %s" +msgstr "अवैध सञ्चालन %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "घुम्ती बाटो अति लामो छ" +#: apt-pkg/deb/dpkgpm.cc:95 +#, fuzzy, c-format +msgid "Installing %s" +msgstr " %s स्थापना भयो" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "Failed to stat %s" -msgstr " %s स्थिर गर्न असफल" +msgid "Configuring %s" +msgstr " %s कनफिगर गरिदैछ" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "Failed to rename %s to %s" -msgstr " %s मा %s पुन:नामकरण असफल भयो" +msgid "Removing %s" +msgstr " %s हटाइदैछ" -#: apt-inst/extract.cc:249 +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr " %s पूर्ण रुपले हट्यो" + +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "डाइरेक्ट्री %s डाइरेक्ट्री विहिन द्वारा बदलिदैछ" +msgid "Noting disappearance of %s" +msgstr "" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "यसको ह्यास बाल्टीमा नोड स्थित गर्न असफल भयो" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "बाटो अति लामो छ" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, fuzzy, c-format +msgid "Directory '%s' missing" +msgstr "आंशिक सूचिहरुको डाइरेक्ट्री %s हराइरहेछ ।" -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr " %s को लागि संस्करन बिना अधिलेखन प्याकेज मेल खायो" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "फाइल %s खोल्न सकिएन" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "फाइल %s/%s ले प्याकेज %s मा एउटा अधिलेखन गर्दछ" +msgid "Preparing %s" +msgstr " %s तयार गरिदैछ" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Unable to stat %s" -msgstr "%s स्थिर गर्न असक्षम भयो" +msgid "Unpacking %s" +msgstr " %s अनप्याक गरिदैछ" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Failed to write file %s" -msgstr "फाइल %s लेख्न असफल भयो" +msgid "Preparing to configure %s" +msgstr " %s कनफिगर गर्न तयार गरिदैछ" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Failed to close file %s" -msgstr "%s फाइल बन्द गर्न असफल भयो" +msgid "Installed %s" +msgstr " %s स्थापना भयो" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "यो वैध DEB संग्रह होइन, '%s' सदस्य हराइरहेछ" +msgid "Preparing for removal of %s" +msgstr " %s हटाउन तयार गरिदैछ" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "आन्तरीक त्रुटि, सदस्य तोक्न सक्दैन %s" +msgid "Removed %s" +msgstr " %s हट्यो" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "पद वर्णन गर्न नसकिने नियन्त्रण फाइल" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr " %s पूर्ण रुपले हटाउन तयार गरिदैछ" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "अवैध संग्रह हस्ताक्षर" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr " %s पूर्ण रुपले हट्यो" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "संग्रह सदस्य हेडर पढ्दा त्रुटि " +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:96 +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "अवैध संग्रह सदस्य हेडर" +msgid "Can not write log (%s)" +msgstr " %s मा लेख्न असक्षम" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "अवैध संग्रह सदस्य हेडर" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "संग्रह अति छोटो छ" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "संग्रह हेडरहरू पढ्न असफल" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "पाइपहरू सिर्जना गर्न असफल" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "gzip कार्यन्वयन गर्न असफल" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "संग्रह दूषित भयो" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "टार चेकसम असफल भयो, संग्रह दूषित भयो" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "अज्ञात टार हेडर प्रकार %u, सदस्य %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "सूचि डाइरेक्ट्री ताल्चा मार्न असफल" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/nl.po b/po/nl.po index a55a94995..9b4ede504 100644 --- a/po/nl.po +++ b/po/nl.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.8.15.9\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2011-12-05 17:10+0100\n" "Last-Translator: Jeroen Schot <schot@a-eskwadraat.nl>\n" "Language-Team: Debian l10n Dutch <debian-l10n-dutch@lists.debian.org>\n" @@ -21,3245 +21,3246 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "Indexbestand van type '%s' wordt niet ondersteund" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "Kan %s niet lezen" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Kan %s niet veranderen" - -#: apt-pkg/clean.cc:64 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Unable to stat %s." -msgstr "Kan de status van %s niet opvragen." +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Pakket %s versie %s heeft een niet-voldane vereiste:\n" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Totaal aantal pakketnamen: " -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "dpkg wordt uitgevoerd" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Totaal aantal pakketstructuren: " -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Pakketbeheersysteem '%s' wordt niet ondersteund" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Normale pakketten: " -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Kan geen geschikt pakketsysteemtype bepalen" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Zuiver virtuele pakketten: " -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "%i records weggeschreven.\n" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Losstaande virtuele pakketten: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "%i records weggeschreven met %i missende bestanden.\n" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Gemengde virtuele pakketten: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "%i records weggeschreven met %i niet overeenkomende bestanden\n" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Ontbrekend: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"%i records weggeschreven met %i missende bestanden en %i niet overeenkomende " -"bestanden\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Totaal aantal verschillende versies: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "Kan geen authenticatierecord vinden voor: %s" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Totaal aantal verschillende beschrijvingen: " -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "Hash-som komt niet overeen voor: %s" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Totaal aantal vereisten: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Het methodestuurprogramma %s kon niet gevonden worden." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Totaal aantal versie/bestand-relaties: " -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Gelieve na te gaan of het 'dpkg-dev'-pakket geïnstalleerd is.\n" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Totaal aantal Beschrijving/bestand-relaties: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Methode %s startte niet op de juiste manier" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Totaal aantal 'Voorziet'-toewijzingen " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "" -"Gelieve de schijf met label '%s' in het station '%s' te plaatsen en op " -"'enter' te drukken." +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Totaal aantal geglobde strings: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "" -"De pakketlijsten of het statusbestand konden of niet ontleed, of niet " -"geopend worden." +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Totale hoeveelheid vereisten-versieruimte: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "" -"U kunt misschien 'apt-get update' uitvoeren om deze problemen te verhelpen" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Totale onbenutte ruimte: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "De lijst van bronnen kon niet gelezen worden." +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Totale hoeveelheid verantwoorde ruimte: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Lege pakketcache" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "Pakketbestand %s is niet meer gesynchroniseerd." -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Het pakketcachebestand is beschadigd" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Geen pakketten gevonden" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Het pakketcachebestand heeft een niet-compatibele versie" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "U dient precies één zoekpatroon op te geven" -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "Het pakketcachebestand is beschadigd" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Deze APT ondersteunt het versienummeringssysteem '%s' niet" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "De pakketcache was aangemaakt voor een andere architectuur" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Vereisten" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Voor-Vereisten" +msgid "Unable to locate package %s" +msgstr "Kan pakket %s niet vinden" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Suggesties" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Pakketbestanden:" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Aanbevelingen" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Cache loopt niet synchroon, kan pakketbestand niet 'x-ref'-en" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Conflicteert met" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Vastgepinde pakketten:" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Vervangt" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(niet gevonden)" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Verouderd" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Geïnstalleerd: " -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Breekt" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Kandidaat: " -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Vult aan" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(geen)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "belangrijk" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Pakketpin: " -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "noodzakelijk" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Versietabel:" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standaard" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s voor %s gecompileerd op %s %s\n" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "optioneel" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Gebruik: apt-cache [opties] opdracht\n" +" apt-cache [opties] add bestand1 [bestand2 ...]\n" +" apt-cache [opties] showpkg pakket1 [pakket2 ...]\n" +" apt-cache [opties] showsrc pakket1 [pakket2 ...]\n" +"\n" +"apt-cache is een basaal hulpmiddel waarmee u de binaire cachebestanden\n" +"van APT kunt manipuleren en informatie daaruit kunt opvragen.\n" +"\n" +"Opdrachten:\n" +" add - Voeg een pakketbestand toe aan de broncache.\n" +" gencaches - Bouw zowel de pakket- als de broncache.\n" +" showpkg - Toon algemene informatie over een enkel pakket.\n" +" showsrc - Toon bronrecords.\n" +" stats - Toon enkele basisstatistieken.\n" +" dump - Toon het gehele bestand in een compacte vorm.\n" +" dumpavail - Print een beschikbaarheidsbestand op de standaarduitvoer.\n" +" unmet - Toon niet-voldane vereisten.\n" +" search - Toon lijst met pakketten die met regexpatroon overeenkomen.\n" +" show - Toon een leesbaar overzicht voor het pakket.\n" +" showauto - Toon een lijst van automatisch geïnstalleerde pakketten.\n" +" depends - Toon de afhankelijkheden van een pakket.\n" +" rdepends - Toon de pakketten die afhankelijk zijn van een pakket.\n" +" pkgnames - Toon de namen van alle pakketten op het systeem.\n" +" dotty - Genereer pakketgrafen voor GraphViz.\n" +" xvcg - Genereer pakketgrafen voor xvcg.\n" +" policy - Toon beleidsinstellingen.\n" +"\n" +"Opties:\n" +" -h Deze hulptekst.\n" +" -p=? De pakketcache.\n" +" -s=? De broncache.\n" +" -q Voortgangsindicator uitschakelen.\n" +" -i Toon alleen belangrijke vereisten voor de 'unmet'-opdracht.\n" +" -c=? Lees dit configuratiebestand.\n" +" -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp.\n" +"Zie de man-pagina's van apt-cache(8) en apt.conf(5) voor meer informatie.\n" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "" +"Gelieve een naam voor deze schijf op te geven, bijvoorbeeld 'Debian 5.0.3 " +"Schijf 1'" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Indexbestand van type '%s' wordt niet ondersteund" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Gelieve een schijf in het station te plaatsen en op 'enter' te drukken" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Regex compilation error - %s" -msgstr "Regex-compilatiefout - %s" - -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Cache heeft een niet-compatibel versienummeringssysteem" +msgid "Failed to mount '%s' to '%s'" +msgstr "Aankoppelen van '%s' op '%s' is mislukt" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Fout tijdens verwerken van %s (FindPkg)" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "Wauw, u heeft meer pakketten dan deze APT aan kan." +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Dit proces dient herhaald te worden voor alle CD's in uw set." -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Wauw, u heeft meer versies dan deze APT aan kan." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumenten niet in paren" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -"Wauw, u heeft het maximum aantal beschrijvingen dat deze APT aan kan " -"overschreden." +"Gebruik: apt-config [opties] opdracht\n" +"\n" +"apt-config is een eenvoudig programma om het APT-configuratiebestand te " +"lezen\n" +"\n" +"Opdrachten:\n" +" shell - Shell modus\n" +" dump - Toon de configuratie\n" +"\n" +"Opties:\n" +" -h Deze hulptekst.\n" +" -c=? Lees dit configuratiebestand.\n" +" -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "Wauw, u heeft meer afhankelijkheden dan deze APT aan kan." +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Kon geen enkel pakket vinden bij regex '%s'" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "" -"Pakket %s %s werd niet gevonden bij het verwerken van de " -"bestandsafhankelijkheden" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Kon geen enkel pakket vinden bij regex '%s'" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "Kon de status van de bronpakketlijst %s niet opvragen" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Kon geen enkel pakket vinden bij regex '%s'" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Pakketlijsten worden ingelezen" +#: cmdline/apt-get.cc:367 +#, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "'%s' wordt genomen als bronpakket in plaats van '%s'\n" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Voorziene bestanden worden verzameld" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Negeer niet beschikbare versie '%s' van pakket '%s'" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Unable to write to %s" -msgstr "Kan niet naar %s schrijven" +msgid "Couldn't find package %s" +msgstr "Kon pakket %s niet vinden" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Invoer/Uitvoer-fout tijdens wegschrijven bronpakket-cache" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s is ingesteld voor handmatige installatie.\n" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s is ingesteld op automatische geïnstalleerd.\n" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Interne fout, probleemoplosser heeft dingen stukgemaakt" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Kon de ophaalmap niet vergrendelen" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" msgstr "" +"U dient minstens 1 pakket op te geven waarvan de broncode opgehaald moet " +"worden" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "herbenoeming is mislukt, %s (%s -> %s)." +msgid "Unable to find a source package for %s" +msgstr "Kan geen bronpakket vinden voor %s" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Hash-som komt niet overeen" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Grootte komt niet overeen" - -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Ongeldige operatie %s" - -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:786 #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" +"MERK OP: Het verpakken van '%s' wordt bijgehouden in het versiebeheersysteem " +"'%s' op:\n" +"%s\n" -#: apt-pkg/acquire-item.cc:1589 +#: cmdline/apt-get.cc:791 #, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Kon Release-bestand %s niet ontleden" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "" -"Er zijn geen publieke sleutels beschikbaar voor de volgende sleutel-IDs:\n" - -#: apt-pkg/acquire-item.cc:1669 -#, c-format msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" +"Gebruik:\n" +"bzr get %s\n" +"om de nieuwste (mogelijk nog niet uit uitgebrachte) versie van het pakket op " +"te halen.\n" -#: apt-pkg/acquire-item.cc:1691 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Conflicterende distributie: %s (verwachtte %s, maar kreeg %s)" - -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:843 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Er is een fout opgetreden bij de handtekeningcontrole. De pakketbron is niet " -"bijgewerkt en de oude indexbestanden zullen worden gebruikt. GPG-fout: %s: " -"%s\n" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Reeds opgehaald bestand '%s' wordt overgeslagen\n" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "GPG error: %s: %s" -msgstr "GPG-fout: %s: %s" +msgid "Couldn't determine free space in %s" +msgstr "Kon de hoeveelheid vrije schijfruimte op %s niet bepalen" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:882 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"Er kon geen bestand gevonden worden voor pakket %s. Dit kan betekenen dat u " -"dit pakket handmatig moet repareren (wegens missende architectuur)" +msgid "You don't have enough free space in %s" +msgstr "U heeft niet voldoende vrije schijfruimte op %s" -#: apt-pkg/acquire-item.cc:1925 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Moet %sB/%sB aan bronarchieven ophalen.\n" -#: apt-pkg/acquire-item.cc:1983 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"De pakketindex-bestanden zijn beschadigd. Er is geen 'Filename:'-veld voor " -"pakket %s." +msgid "Need to get %sB of source archives.\n" +msgstr "Moet %sB aan bronarchieven ophalen.\n" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Verkopersblok %s bevat geen vingerafdruk" +msgid "Fetch source %s\n" +msgstr "Ophalen bron %s\n" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, c-format -msgid "List directory %spartial is missing." -msgstr "Lijstmap %spartial is afwezig." +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Ophalen van sommige archieven is mislukt." -#: apt-pkg/acquire.cc:91 -#, c-format -msgid "Archives directory %spartial is missing." -msgstr "Archiefmap %spartial is afwezig." +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Ophalen klaar en alleen-ophalen-modus staat aan" -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Unable to lock directory %s" -msgstr "Kan de map %s niet vergrendelen" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Het uitpakken van de reeds uitgepakte bron in %s wordt overgeslagen\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Bestand %li van %li wordt opgehaald (nog %s te gaan)" +msgid "Unpack command '%s' failed.\n" +msgstr "Uitpakopdracht '%s' is mislukt.\n" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Bestand %li van %li wordt opgehaald" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Gelieve na te gaan of het 'dpkg-dev'-pakket geïnstalleerd is.\n" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Ophalen van %s is mislukt %s\n" +msgid "Build command '%s' failed.\n" +msgstr "Bouwopdracht '%s' is mislukt.\n" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Ophalen van sommige indexbestanden is mislukt, deze zijn of genegeerd, of er " -"zijn oudere versies van gebruikt." +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Dochterproces is mislukt" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" msgstr "" -"Uw bronnenlijst (/etc/apt/sources.list) dient tenminste één bron-URI te " -"bevatten" +"U dient tenminste één pakket op te geven om de bouwvereisten van te " +"controleren" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-pkg/policy.cc:422 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "" -"Ongeldige record in het voorkeurenbestand %s, 'Package' koptekst ontbreekt" +msgid "Unable to get build-dependency information for %s" +msgstr "Kan de informatie over de bouwvereisten voor %s niet ophalen" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Did not understand pin type %s" -msgstr "Pintype %s wordt niet begrepen" +msgid "%s has no build depends.\n" +msgstr "%s heeft geen bouwvereisten.\n" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Er is geen prioriteit (of nul) opgegeven voor deze pin" +#: cmdline/apt-get.cc:1272 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s " +"onvindbaar is" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -"Kon onmiddellijke configuratie van '%s' niet uitvoeren. Voor details zie " -"'man 5 apt.conf', onder APT::Immediate-Configure. (%d)" +"De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s " +"onvindbaar is" + +#: cmdline/apt-get.cc:1313 +#, c-format +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"Voldoen van Vereiste %s van pakket %s is mislukt: geïnstalleerde versie %s " +"is te nieuw" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:1352 #, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Kon het bestand '%s' niet openen" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"De vereiste %s van pakket %s kan niet voldaan worden omdat er geen " +"beschikbare versies zijn van pakket %s die aan de versievereisten voldoen" -#: apt-pkg/packagemanager.cc:583 -#, c-format +#: cmdline/apt-get.cc:1358 +#, fuzzy, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -"Deze installatie-aanroep vereist het tijdelijk verwijderen van het " -"essentiële pakket %s, dit omwille van een Conflicts/Pre-Depends -lus. Dit is " -"vaak slecht, wilt u dit echt doen dan dient u de APT::Force-LoopBreak optie " -"te activeren." +"De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s " +"onvindbaar is" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Line %u too long in source list %s." -msgstr "Regel %u van de bronlijst %s is te lang." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "CD wordt afgekoppeld...\n" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Voldoen van de vereiste %s van pakket %s is mislukt: %s" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Er wordt gebruik gemaakt van CD-aankoppelpunt %s\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Er wordt gewacht op de schijf...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "CD wordt aangekoppeld...\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Bouwvereisten voor %s konden niet voldaan worden." -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identificatie..." +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Verwerken van de bouwvereisten is mislukt" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Opgeslagen label: %s \n" +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Er wordt verbinding gemaakt met %s (%s)" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Er wordt gescand voor indexbestanden...\n" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Ondersteunde modules:" -#: apt-pkg/cdrom.cc:734 -#, c-format +#: cmdline/apt-get.cc:1633 +#, fuzzy msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Er zijn %zu pakket-indexen, %zu bron-indexen, %zu vertalingsindexen, en %zu " -"handtekeningen gevonden\n" - -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"Kan geen Package-bestanden vinden. Is dit mogelijk geen Debian schijf, of de " -"verkeerde architectuur?" - -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Label '%s' gevonden\n" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Dat is een ongeldige naam, gelieve opnieuw te proberen.\n" +"Gebruik: apt-get [opties] opdracht\n" +" apt-get [opties] install|remove pakket1 [pakket2 ...]\n" +" apt-get [opties] source pakket1 [pakket2 ...]\n" +"\n" +"apt-get is een eenvoudige commandoregel-interface voor het ophalen en\n" +"installeren van pakketten. De meest gebruikte opdrachten zijn 'update\n" +"en 'install'.\n" +"\n" +"Opdrachten:\n" +" update - Haal de huidige versie van pakketlijsten op\n" +" upgrade - Voer een opwaardering uit\n" +" install - Installeer nieuwe pakketten (pakket is b.v. libc6, niet libc6." +"deb)\n" +" remove - Verwijder pakketten\n" +" autoremove - Verwijder automatisch alle ongebruikte pakketten\n" +" purge - Verwijder pakketten en hun configuratiebestanden\n" +" source - Haal bronarchieven op\n" +" build-dep - Installeer de pakketten vereist voor het bouwen van " +"bronpakketten\n" +" dist-upgrade - Opwaardeer de distributie, zie apt-get(8)\n" +" dselect-upgrade - Opwaardeer volgens dselect-selecties\n" +" clean - Verwijder opgehaalde archiefbestanden\n" +" autoclean - Verwijder verouderde opgehaalde archiefbestanden\n" +" check - Controleer onvoldane vereisten\n" +"\n" +"Opties:\n" +" -h Deze hulptekst\n" +" -q Logbare uitvoer - geen voortgangsindicator\n" +" -qq Geen uitvoer anders dan foutmeldingen\n" +" -d Alleen ophalen - archieven NIET installeren of uitpakken\n" +" -s Doe-niets. Doe alleen sorteersimulatie\n" +" -y Antwoord \"ja\" op alle vragen zonder ze te stellen\n" +" -f Probeer door te gaan als de integriteitstest faalt\n" +" -m Probeer door te gaan als archieven niet gevonden kunnen worden\n" +" -u Toon ook een lijst van bijgewerkte pakketten\n" +" -b Bouw het bronpakket nadat het is opgehaald\n" +" -V Toon uitgebreide versie nummers\n" +" -c=? Lees dit configuratiebestand\n" +" -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n" +"Zie de apt-get(8), sources.list(5) en apt.conf(5) handleidingen\n" +"voor meer informatie en opties.\n" +" Deze APT heeft Super Koe kracht.\n" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" msgstr "" -"De schijf heet:\n" -"'%s'\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Pakketlijsten worden gekopieerd..." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Nieuwe bronlijst wordt weggeschreven\n" - -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Bronlijst-ingangen voor de schijf zijn:\n" +"U dient minstens 1 pakket op te geven waarvan de broncode opgehaald moet " +"worden" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"Pakket %s moet opnieuw geïnstalleerd worden, maar er kan geen archief voor " -"gevonden worden." -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-helper.cc:66 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Fout, pkgProblemResolver::Resolve maakte scheidingen aan, dit kan " -"veroorzaakt worden door vastgehouden pakketten." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Kan problemen niet verhelpen, u houdt defecte pakketten vast." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Boom van vereisten wordt opgebouwd" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Kandidaat-versies" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Generatie vereisten" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "De status informatie wordt gelezen" - -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Openen van StateFile %s is mislukt" - -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Wegschrijven van tijdelijke StateFile %s is mislukt" - -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Kon pakketbestand %s niet ontleden (1)" - -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Kon pakketbestand %s niet ontleden (2)" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Release '%s' voor '%s' is niet gevonden" - -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Versie '%s' voor '%s' is niet gevonden" - -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "Kan pakket %s niet vinden" - -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Kon taak '%s' niet vinden" - -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Kon geen enkel pakket vinden bij regex '%s'" - -#: apt-pkg/cacheset.cc:615 +#: cmdline/apt-mark.cc:68 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Kon geen enkel pakket vinden bij regex '%s'" +msgid "%s can not be marked as it is not installed.\n" +msgstr "maar het is niet geïnstalleerd" -#: apt-pkg/cacheset.cc:626 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" -"Kan geen versies selecteren voor pakket '%s' omdat deze zuiver virtueel is" - -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" -"Kan noch de geïnstalleerde, noch de kandidaat-versie van het pakket '%s' " -"selecteren omdat deze geen van beide heeft" - -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"Kan de nieuwste versie van het pakket '%s' niet selecteren omdat deze zuiver " -"virtueel is" - -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" -"Kan de kandidaat-versie van het pakket %s niet selecteren omdat deze geen " -"kandidaat heeft" - -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" -"Kan de geïnstalleerde versie van het pakket %s niet selecteren omdat deze " -"niet geïnstalleerd is" - -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "Kon Release-bestand %s niet ontleden" - -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "Geen secties in Release-bestand %s" - -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Geen Hash-vermelding in Release-bestand %s" - -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Geen 'Valid-Until'-vermelding in Release-bestand %s" - -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Geen 'Date'-vermelding in Release-bestand %s" +msgid "%s was already set to manually installed.\n" +msgstr "%s is ingesteld voor handmatige installatie.\n" -#: apt-pkg/sourcelist.cc:127 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Misvormde regel %lu in bronlijst %s (URI parse)" - -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Misvormde regel %lu in bronlijst %s ([optie] onbegrijpelijk)" - -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Misvormde regel %lu in bronlijst %s ([optie] te kort)" - -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Misvormde regel %lu in bronlijst %s ([%s] is geen toekenning)" +msgid "%s was already set to automatically installed.\n" +msgstr "%s is ingesteld op automatische geïnstalleerd.\n" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Misvormde regel %lu in bronlijst %s ([%s] heeft geen sleutel)" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s is reeds de nieuwste versie.\n" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Misvormde regel %lu in bronlijst %s ([%s] sleutel %s heeft geen waarde)" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s is reeds de nieuwste versie.\n" -#: apt-pkg/sourcelist.cc:206 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Misvormde regel %lu in bronlijst %s (URI)" +msgid "Waited for %s but it wasn't there" +msgstr "Er is gewacht op %s, maar die kwam niet" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Misvormde regel %lu in bronlijst %s (dist)" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "%s is ingesteld voor handmatige installatie.\n" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Misvormde regel %lu in bronlijst %s (URI parse)" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "Openen van %s is mislukt" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Misvormde regel %lu in bronlijst %s (absolute dist)" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Misvormde regel %lu in bronlijst %s (dist parse)" +#: cmdline/apt-mark.cc:392 +msgid "" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." +msgstr "" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "%s wordt geopend" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/sourcelist.cc:371 +#: methods/cdrom.cc:203 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Misvormde regel %u in bronlijst %s (type)" +msgid "Unable to read the cdrom database %s" +msgstr "Kan de cd databank %s niet lezen" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Type '%s' op regel %u in bronlijst %s is onbekend" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" +msgstr "" +"Om deze APT deze CD te laten herkennen kunt u best apt-cdrom gebruiken. 'apt-" +"get update' is niet in staat om nieuwe CDs toe te voegen" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Type '%s' op regel %u in bronlijst %s is onbekend" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Verkeerde CD" -#: apt-pkg/deb/dpkgpm.cc:95 +#: methods/cdrom.cc:249 #, c-format -msgid "Installing %s" -msgstr "%s wordt geïnstalleerd" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "" +"Kan de CD in %s niet loskoppelen, mogelijk wordt die nog steeds gebruikt." -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "%s wordt geconfigureerd" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Schijf niet gevonden" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "%s wordt verwijderd" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Bestand niet gevonden" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "%s wordt volledig verwijderd" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "stat is mislukt" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "De verdwijning van %s wordt opgemerkt" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Instellen van de aanpassingstijd is mislukt" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Post-installatie-trigger %s wordt uitgevoerd" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Ongeldige URI, lokale URIs mogen niet beginnen met //" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Map '%s' ontbreekt" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Bezig met aanmelden" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "Kon het bestand '%s' niet openen" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Kan de 'peer'-naam niet bepalen" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "%s wordt voorbereid" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Kan de lokale naam niet bepalen" -#: apt-pkg/deb/dpkgpm.cc:990 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Unpacking %s" -msgstr "%s wordt uitgepakt" +msgid "The server refused the connection and said: %s" +msgstr "Onze verbinding is door de server geweigerd met bericht: %s" -#: apt-pkg/deb/dpkgpm.cc:995 +#: methods/ftp.cc:225 #, c-format -msgid "Preparing to configure %s" -msgstr "Configuratie van %s wordt voorbereid" +msgid "USER failed, server said: %s" +msgstr "USER mislukt; bericht van server: %s" -#: apt-pkg/deb/dpkgpm.cc:997 +#: methods/ftp.cc:232 #, c-format -msgid "Installed %s" -msgstr "%s is geïnstalleerd" +msgid "PASS failed, server said: %s" +msgstr "PASS mislukt; bericht van server: %s" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "Verwijdering van %s wordt voorbereid" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"Er was een proxy-server opgegeven, maar geen aanmeldscript, Acquire::ftp::" +"ProxyLogin is leeg." -#: apt-pkg/deb/dpkgpm.cc:1004 +#: methods/ftp.cc:280 #, c-format -msgid "Removed %s" -msgstr "%s is verwijderd" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Aanmeldscriptopdracht '%s' is mislukt; bericht van server: %s" -#: apt-pkg/deb/dpkgpm.cc:1009 +#: methods/ftp.cc:306 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Volledige verwijdering van %s wordt voorbereid" +msgid "TYPE failed, server said: %s" +msgstr "TYPE mislukt; bericht van server: %s" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "%s is volledig verwijderd" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Verbinding is verlopen" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Verbinding is verbroken door de server" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Kan niet naar %s schrijven" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Leesfout" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Een reactie deed de buffer overlopen" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protocolcorruptie" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 -#, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Er is gewacht op %s, maar die kwam niet" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Schrijffout" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Kon geen socket aanmaken" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" -"Er is geen apport-verslag weggeschreven omdat het maximum aantal verslagen " -"(MaxReports) al is bereikt" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Kon de datasocket niet verbinden, de verbinding verliep" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "problemen met vereisten - wordt niet geconfigureerd" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Mislukt" + +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Kon de passieve socket niet verbinden." -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"Er is geen apport-verslag weggeschreven omdat de foutmelding volgt op een " -"eerdere mislukking." +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo kon geen luistersocket verkrijgen" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Er is geen apport-verslag weggeschreven omdat de foutmelding een fout is " -"over een volle schijf." +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Kon geen socket binden" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Er is geen apport-verslag weggeschreven omdat de foutmelding een fout is " -"over onvoldoende-geheugen." +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Kon niet op de socket niet luisteren" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" -"Er is geen apport-verslag weggeschreven omdat de foutmelding een fout is " -"over een volle schijf." +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Kon de socketnaam niet bepalen" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" -"Er is geen apport-verslag weggeschreven omdat de foutmelding een fout over " -"dpkg-I/O is." +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Kan PORT-commando niet verzenden" -#: apt-pkg/deb/debsystem.cc:91 +#: methods/ftp.cc:802 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"Kan de beheersmap (%s) niet vergrendelen. Is deze in gebruik door een ander " -"proces?" +msgid "Unknown address family %u (AF_*)" +msgstr "Onbekende adresfamilie %u (AF_*)" -#: apt-pkg/deb/debsystem.cc:94 +#: methods/ftp.cc:811 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Kan de beheersmap (%s) niet vergrendelen. Heeft u beheerdersrechten?" +msgid "EPRT failed, server said: %s" +msgstr "EPRT is mislukt; bericht van server: %s" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" -"dpkg werd onderbroken; voer handmatig '%s' uit om het probleem te verhelpen. " +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Datasocket verbinding is verlopen" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Niet vergrendeld" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Kan de verbinding niet aanvaarden" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lid %liu %limin %lis" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Probleem bij het hashen van het bestand" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: methods/ftp.cc:890 #, c-format -msgid "%lih %limin %lis" -msgstr "%liu %limin %lis" +msgid "Unable to fetch file, server said '%s'" +msgstr "Kan bestand niet ophalen; bericht van server: %s" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%limin %lis" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Datasocket verliep" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: methods/ftp.cc:935 #, c-format -msgid "%lis" -msgstr "%lis" +msgid "Data transfer failed, server said '%s'" +msgstr "Data transfer is mislukt, server zei: %s" -#: apt-pkg/contrib/strutl.cc:1243 -#, c-format -msgid "Selection %s not found" -msgstr "Selectie %s niet gevonden" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Zoekopdracht" -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "" -"Er wordt geen vergrendeling gebruikt voor het alleen-lezen-" -"vergrendelingsbestand %s" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Aanroepen mislukt van " -#: apt-pkg/contrib/fileutl.cc:195 +#: methods/connect.cc:76 #, c-format -msgid "Could not open lock file %s" -msgstr "Kon het vergrendelingsbestand '%s' niet openen" +msgid "Connecting to %s (%s)" +msgstr "Er wordt verbinding gemaakt met %s (%s)" -#: apt-pkg/contrib/fileutl.cc:218 +#: methods/connect.cc:87 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "" -"Het via nfs aangekoppelde vergrendelingsbestand %s wordt niet vergrendeld" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/contrib/fileutl.cc:223 +#: methods/connect.cc:94 #, c-format -msgid "Could not get lock %s" -msgstr "Kon vergrendeling %s niet verkrijgen" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Kon de socket voor %s (f=%u t=%u p=%u) niet aanmaken" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: methods/connect.cc:100 #, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Kan de verbinding met %s:%s (%s) niet aangaan." -#: apt-pkg/contrib/fileutl.cc:394 +#: methods/connect.cc:108 #, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Kon niet verbinden met %s:%s (%s), de verbinding verliep" -#: apt-pkg/contrib/fileutl.cc:412 +#: methods/connect.cc:126 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +msgid "Could not connect to %s:%s (%s)." +msgstr "Kon niet verbinden met %s:%s (%s)." -#: apt-pkg/contrib/fileutl.cc:421 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" -msgstr "" +msgid "Connecting to %s" +msgstr "Er wordt verbinding gemaakt met %s" -#: apt-pkg/contrib/fileutl.cc:824 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Subproces %s ontving een segmentatiefout." +msgid "Could not resolve '%s'" +msgstr "Kon '%s' niet vinden" -#: apt-pkg/contrib/fileutl.cc:826 +#: methods/connect.cc:205 #, c-format -msgid "Sub-process %s received signal %u." -msgstr "Subproces %s ontving signaal %u." +msgid "Temporary failure resolving '%s'" +msgstr "Tijdelijke fout bij het opzoeken van '%s'" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Er gebeurde iets raars bij het oplossen van '%s:%s' (%i - %s)" + +#: methods/connect.cc:211 #, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Subproces %s gaf de foutcode %u terug" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Er gebeurde iets raars bij het oplossen van '%s:%s' (%i - %s)" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#: methods/connect.cc:258 #, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Subproces %s sloot onverwacht af" +msgid "Unable to connect to %s:%s:" +msgstr "Kan geen verbinding maken met %s %s:" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Schrijffout" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "" +"Interne fout: ondertekening is goed maar kon de vingerafdruk van de sleutel\n" +"niet bepalen?!" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Probleem bij het afsluiten van het gzip-bestand %s" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Er is tenminste één ongeldige ondertekening gevonden." -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Kon het bestand %s niet openen" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "" +"Kon 'gpgv' niet uitvoeren om ondertekening te verifiëren (is gpgv " +"geïnstalleerd?)" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format -msgid "Could not open file descriptor %d" -msgstr "Kon de bestandsindicator %d niet openen" +msgid "" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Aanmaken subproces-IPC is mislukt" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Onbekende fout bij het uitvoeren van gpgv" + +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "De volgende ondertekeningen waren ongeldig:\n" + +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "" +"De volgende ondertekeningen konden niet geverifieerd worden omdat de " +"publieke sleutel niet beschikbaar is:\n" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Uitvoeren van de compressor is mislukt " +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Leesfout" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Fout bij het schrijven naar het bestand" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "lees, de laatste te lezen %lu zijn niet beschikbaar" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "" +"Fout bij het lezen van de server, andere kant heeft de verbinding gesloten" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "schrijf, de laatste %lu konden niet weggeschreven worden" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Fout bij het lezen van de server" -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Probleem bij het afsluiten van het bestand %s" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Fout bij het schrijven naar bestand" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Probleem bij het hernoemen van '%s' naar '%s'" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Selectie is mislukt" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "Probleem bij het ontlinken van het bestand %s" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Verbinding verliep" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Probleem bij het synchroniseren van het bestand" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Fout bij het schrijven naar het uitvoerbestand" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Fout!" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Wachtend op de kopteksten" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Klaar" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Foute koptekstregel" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Er is door de HTTP server een ongeldige 'reply'-koptekst verstuurd" + +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" msgstr "" +"Er is door de HTTP server een ongeldige 'Content-Length'-koptekst verstuurd" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Klaar" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "" +"Er is door de HTTP server een ongeldige 'Content-Range'-koptekst verstuurd" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Kan een leeg bestand niet mmappen" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "De bereik-ondersteuning van deze HTTP-server werkt niet" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Kon de bestandsindicator %i niet dupliceren" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Onbekend datumformaat" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Kon van %lu bytes geen mmap maken" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Foute koptekstdata" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Kan mmap niet sluiten" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Verbinding mislukt" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Kan mmap niet synchronizeren" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Interne fout" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Kon van %lu bytes geen mmap maken" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Afkorten van bestand is mislukt" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Interne fout, InstallPackages is aangeroepen met defecte pakketten!" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" -msgstr "" -"Onvoldoende ruimte voor Dynamische MMap. Gelieve de grootte van APT::Cache-" -"Start te verhogen. Huidige waarde: %lu. (man 5 apt.conf)" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Pakketten moeten verwijderd worden maar verwijderen is uitgeschakeld." -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" -"Kan het formaat van de MMap niet vergroten omdat de grens van %lu bytes al " -"is bereikt" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Interne fout, rangschikken is niet voltooid" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" -"Kan het formaat van de MMap niet vergroten omdat het automatisch vergroten " -"door de gebruiker is uitgeschakeld." +"Merkwaardig... De groottes kwamen niet overeen, gelieve apt@packages.debian." +"org te mailen" -#: apt-pkg/contrib/cdromutl.cc:65 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "Kan de status van het aanhechtpunt %s niet opvragen" - -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "stat op de CD-ROM is mislukt" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Er moeten %sB/%sB aan archieven opgehaald worden.\n" -#: apt-pkg/contrib/configuration.cc:519 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Onbekende type-afkorting '%c'" +msgid "Need to get %sB of archives.\n" +msgstr "Er moeten %sB aan archieven opgehaald worden.\n" -#: apt-pkg/contrib/configuration.cc:633 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "Opening configuration file %s" -msgstr "Configuratiebestand %s wordt geopend" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Door deze operatie zal er %sB extra schijfruimte gebruikt worden.\n" -#: apt-pkg/contrib/configuration.cc:801 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Syntaxfout %s:%u: Blok start zonder naam." +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Door deze operatie zal er %sB schijfruimte vrijkomen.\n" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-private/private-install.cc:200 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Syntaxfout %s:%u: Verkeerd gevormde markering" +msgid "You don't have enough free space in %s." +msgstr "U heeft onvoldoende vrije schijfruimte op %s." -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Syntaxfout %s:%u: Extra rommel na waarde" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Er zijn problemen en -y was gebruikt zonder --force-yes" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "'Trivial Only' is opgegeven, dit is echter geen triviale bewerking." + +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Ja, doe wat ik zeg!" + +#: apt-private/private-install.cc:222 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" -"Syntaxfout %s:%u: Richtlijnen kunnen enkel op het hoogste niveau gegeven " -"worden" +"U staat op het punt om iets te doen wat mogelijk schadelijk is.\n" +"Als u wilt doorgaan, dient u de zin '%s' in te typen.\n" +" ?] " -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Syntaxfout %s:%u: Teveel geneste invoegingen" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Afbreken." -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Syntaxfout %s:%u: Vanaf hier ingevoegd" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Wilt u doorgaan?" -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Syntaxfout %s:%u: Niet-ondersteunde richtlijn '%s'" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Ophalen van sommige bestanden is mislukt" -#: apt-pkg/contrib/configuration.cc:900 -#, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -"Syntaxfout %s:%u: De richtlijn 'clear' vereist een optieboom als argument" +"Kon sommige archieven niet ophalen, misschien kunt u 'apt-get update' of --" +"fix-missing proberen?" -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Syntaxfout %s:%u: Extra rommel aan het einde van het bestand" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing en medium wisselen wordt op dit moment niet ondersteund" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, c-format -msgid "No keyring installed in %s." -msgstr "Geen sleutelring geïnstalleerd in %s." +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Geen oplossing voor de missende pakketten gevonden." -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Commandoregel-optie '%c' [van %s] is onbekend." +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Installatie wordt afgebroken." -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "Commandoregel-optie %s wordt niet begrepen" +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"Het volgende pakket is van uw systeem verdwenen omdat\n" +"alle bestanden zijn overschreven door andere pakketten:" +msgstr[1] "" +"De volgende pakketten zijn van uw systeem verdwenen omdat\n" +"alle bestanden zijn overschreven door andere pakketten:" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "Commandoregel-optie %s is niet booleaans" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Let op: Dit wordt automatische en bewust door dpkg gedaan." -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "Optie %s vereist een argument." +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "We mogen geen dingen verwijderen, kan AutoRemover niet starten" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Optie %s: De specificatie van het configuratie-item dient een =<waarde> te " -"bevatten." - -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Optie %s vereist een integer getal als argument, niet '%s'" +"Hmm, het lijkt erop dat de AutoRemover iets vernietigd heeft, dit zou\n" +"niet mogen kunnen. Gelieve een bug-rapport voor apt in te sturen." -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Optie '%s' is te lang" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "De volgende informatie helpt u mogelijk verder:" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Waarde %s wordt niet begrepen, probeer 'true' of 'false'." +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Interne fout, AutoRemover heeft dingen stukgemaakt" -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "Ongeldige operatie %s" +#: apt-private/private-install.cc:513 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "" +"Het volgende pakket is automatisch geïnstalleerd en is niet langer nodig:" +msgstr[1] "" +"De volgende pakketten zijn automatisch geïnstalleerd en zijn niet langer " +"nodig:" -#: cmdline/apt-cache.cc:149 +#: apt-private/private-install.cc:517 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Pakket %s versie %s heeft een niet-voldane vereiste:\n" - -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Totaal aantal pakketnamen: " +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "%lu pakket is automatisch geïnstalleerd en is niet langer nodig.\n" +msgstr[1] "" +"%lu pakketten zijn automatisch geïnstalleerd en zijn niet langer nodig.\n" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Totaal aantal pakketstructuren: " +#: apt-private/private-install.cc:519 +#, fuzzy +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "U kunt deze verwijderen via 'apt-get autoremove'." +msgstr[1] "U kunt deze verwijderen via 'apt-get autoremove'." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Normale pakketten: " +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "" +"U wilt waarschijnlijk 'apt-get -f install' uitvoeren om volgende op te " +"lossen:" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Zuiver virtuele pakketten: " +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"Er zijn niet-voldane vereisten. U kunt best 'apt-get -f install' uitvoeren " +"zonder pakketten op te geven, (of u kunt zelf een oplossing specificeren)." -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Losstaande virtuele pakketten: " +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"Sommige pakketten konden niet geïnstalleerd worden. Dit kan betekenen dat u\n" +"een onmogelijke situatie gevraagd hebt of dat u de 'unstable'-distributie \n" +"gebruikt en sommige benodigde pakketten nog vastzitten in 'incoming'." -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Gemengde virtuele pakketten: " +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Niet-werkende pakketten:" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Ontbrekend: " +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "De volgende extra pakketten zullen geïnstalleerd worden:" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Totaal aantal verschillende versies: " +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Voorgestelde pakketten:" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Totaal aantal verschillende beschrijvingen: " +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Aanbevolen pakketten:" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Totaal aantal vereisten: " +#: apt-private/private-install.cc:825 +#, c-format +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "" +"%s wordt overgeslagen, het is al geïnstalleerd en opwaardering is niet " +"gevraagd.\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Totaal aantal versie/bestand-relaties: " +#: apt-private/private-install.cc:829 +#, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"%s wordt overgeslagen, het is niet geïnstalleerd en alleen opwaardering is " +"gevraagd.\n" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Totaal aantal Beschrijving/bestand-relaties: " +#: apt-private/private-install.cc:841 +#, c-format +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "" +"Herinstallatie van %s is niet mogelijk daar het niet opgehaald kan worden.\n" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Totaal aantal 'Voorziet'-toewijzingen " +#: apt-private/private-install.cc:846 +#, c-format +msgid "%s is already the newest version.\n" +msgstr "%s is reeds de nieuwste versie.\n" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Totaal aantal geglobde strings: " +#: apt-private/private-install.cc:894 +#, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Versie '%s' (%s) geselecteerd voor '%s'\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Totale hoeveelheid vereisten-versieruimte: " +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Versie '%s' (%s) geselecteerd voor '%s'\n" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Totale onbenutte ruimte: " +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "Pakket %s is niet geïnstalleerd, en wordt dus niet verwijderd\n" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Totale hoeveelheid verantwoorde ruimte: " +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Pakket %s is niet geïnstalleerd, en wordt dus niet verwijderd\n" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Pakketbestand %s is niet meer gesynchroniseerd." +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Geen pakketten gevonden" +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "U dient precies één zoekpatroon op te geven" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Vereisten worden gecorrigeerd..." -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " mislukt." -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Pakketbestanden:" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Kan vereisten niet corrigeren" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Cache loopt niet synchroon, kan pakketbestand niet 'x-ref'-en" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Kon de verzameling op te waarderen pakketten niet minimaliseren" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Vastgepinde pakketten:" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Klaar" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(niet gevonden)" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "U kunt 'apt-get -f install' uitvoeren om dit op te lossen." -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Geïnstalleerd: " +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Er zijn vereisten waaraan niet voldaan is. Probeer -f te gebruiken." -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidaat: " +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(geen)" +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Geïnstalleerd]" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Pakketpin: " +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Geïnstalleerd]" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Versietabel:" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s voor %s gecompileerd op %s %s\n" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Geïnstalleerd]" -#: cmdline/apt-cache.cc:1749 +#: apt-private/private-output.cc:245 #, fuzzy -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgid "[installed]" +msgstr " [Geïnstalleerd]" + +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" msgstr "" -"Gebruik: apt-cache [opties] opdracht\n" -" apt-cache [opties] add bestand1 [bestand2 ...]\n" -" apt-cache [opties] showpkg pakket1 [pakket2 ...]\n" -" apt-cache [opties] showsrc pakket1 [pakket2 ...]\n" -"\n" -"apt-cache is een basaal hulpmiddel waarmee u de binaire cachebestanden\n" -"van APT kunt manipuleren en informatie daaruit kunt opvragen.\n" -"\n" -"Opdrachten:\n" -" add - Voeg een pakketbestand toe aan de broncache.\n" -" gencaches - Bouw zowel de pakket- als de broncache.\n" -" showpkg - Toon algemene informatie over een enkel pakket.\n" -" showsrc - Toon bronrecords.\n" -" stats - Toon enkele basisstatistieken.\n" -" dump - Toon het gehele bestand in een compacte vorm.\n" -" dumpavail - Print een beschikbaarheidsbestand op de standaarduitvoer.\n" -" unmet - Toon niet-voldane vereisten.\n" -" search - Toon lijst met pakketten die met regexpatroon overeenkomen.\n" -" show - Toon een leesbaar overzicht voor het pakket.\n" -" showauto - Toon een lijst van automatisch geïnstalleerde pakketten.\n" -" depends - Toon de afhankelijkheden van een pakket.\n" -" rdepends - Toon de pakketten die afhankelijk zijn van een pakket.\n" -" pkgnames - Toon de namen van alle pakketten op het systeem.\n" -" dotty - Genereer pakketgrafen voor GraphViz.\n" -" xvcg - Genereer pakketgrafen voor xvcg.\n" -" policy - Toon beleidsinstellingen.\n" -"\n" -"Opties:\n" -" -h Deze hulptekst.\n" -" -p=? De pakketcache.\n" -" -s=? De broncache.\n" -" -q Voortgangsindicator uitschakelen.\n" -" -i Toon alleen belangrijke vereisten voor de 'unmet'-opdracht.\n" -" -c=? Lees dit configuratiebestand.\n" -" -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp.\n" -"Zie de man-pagina's van apt-cache(8) en apt.conf(5) voor meer informatie.\n" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -"Gelieve een naam voor deze schijf op te geven, bijvoorbeeld 'Debian 5.0.3 " -"Schijf 1'" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Gelieve een schijf in het station te plaatsen en op 'enter' te drukken" +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "maar %s is geïnstalleerd" -#: cmdline/apt-cdrom.cc:139 +#: apt-private/private-output.cc:437 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Aankoppelen van '%s' op '%s' is mislukt" +msgid "but %s is to be installed" +msgstr "maar %s zal geïnstalleerd worden" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "maar het is niet installeerbaar" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Dit proces dient herhaald te worden voor alle CD's in uw set." +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "maar het is een virtueel pakket" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumenten niet in paren" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "maar het is niet geïnstalleerd" -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -msgstr "" -"Gebruik: apt-config [opties] opdracht\n" -"\n" -"apt-config is een eenvoudig programma om het APT-configuratiebestand te " -"lezen\n" -"\n" -"Opdrachten:\n" -" shell - Shell modus\n" -" dump - Toon de configuratie\n" -"\n" -"Opties:\n" -" -h Deze hulptekst.\n" -" -c=? Lees dit configuratiebestand.\n" -" -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "maar het zal niet geïnstalleerd worden" + +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " of" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Kon geen enkel pakket vinden bij regex '%s'" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "De volgende pakketten hebben niet-voldane vereisten:" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Kon geen enkel pakket vinden bij regex '%s'" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "De volgende NIEUWE pakketten zullen geïnstalleerd worden:" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Kon geen enkel pakket vinden bij regex '%s'" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "De volgende pakketten zullen VERWIJDERD worden:" -#: cmdline/apt-get.cc:367 +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "De volgende pakketten zijn achtergehouden:" + +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "De volgende pakketten zullen opgewaardeerd worden:" + +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "De volgende pakketten zullen GEDEGRADEERD worden:" + +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "De volgende vastgehouden pakketten zullen gewijzigd worden:" + +#: apt-private/private-output.cc:668 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "'%s' wordt genomen als bronpakket in plaats van '%s'\n" +msgid "%s (due to %s) " +msgstr "%s (vanwege %s) " -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Negeer niet beschikbare versie '%s' van pakket '%s'" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"WAARSCHUWING: De volgende essentiële pakketten zullen verwijderd worden.\n" +"Dit dient NIET gedaan te worden tenzij u precies weet wat u doet!" -#: cmdline/apt-get.cc:454 +#: apt-private/private-output.cc:707 #, c-format -msgid "Couldn't find package %s" -msgstr "Kon pakket %s niet vinden" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu pakketten opgewaardeerd, %lu pakketten nieuw geïnstalleerd, " -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-private/private-output.cc:711 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s is ingesteld voor handmatige installatie.\n" +msgid "%lu reinstalled, " +msgstr "%lu opnieuw geïnstalleerd, " -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-private/private-output.cc:713 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s is ingesteld op automatische geïnstalleerd.\n" +msgid "%lu downgraded, " +msgstr "%lu gedegradeerd, " -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: apt-private/private-output.cc:715 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu te verwijderen en %lu niet opgewaardeerd.\n" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Interne fout, probleemoplosser heeft dingen stukgemaakt" +#: apt-private/private-output.cc:719 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "%lu pakketten niet volledig geïnstalleerd of verwijderd.\n" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Kon de ophaalmap niet vergrendelen" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[J/n]" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "" -"U dient minstens 1 pakket op te geven waarvan de broncode opgehaald moet " -"worden" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[j/N]" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "J" + +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" + +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Kan geen bronpakket vinden voor %s" +msgid "Regex compilation error - %s" +msgstr "Regex-compilatiefout - %s" -#: cmdline/apt-get.cc:786 +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "De opdracht 'update' aanvaard geen argumenten" + +#: apt-private/private-update.cc:90 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -"MERK OP: Het verpakken van '%s' wordt bijgehouden in het versiebeheersysteem " -"'%s' op:\n" -"%s\n" -#: cmdline/apt-get.cc:791 -#, fuzzy, c-format +#: apt-private/private-show.cc:156 +#, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" + +#: apt-private/private-main.cc:32 msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -"Gebruik:\n" -"bzr get %s\n" -"om de nieuwste (mogelijk nog niet uit uitgebrachte) versie van het pakket op " -"te halen.\n" +"OPMERKING: Dit is een simulatie!\n" +" Voor daadwerkelijke uitvoering heeft apt-get beheerdersrechten nodig.\n" +" Houd er ook rekening mee ook dat vergrendeling is uitgeschakeld en\n" +" vertrouw dus niet op de relevantie voor de werkelijke huidige situatie!" -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Reeds opgehaald bestand '%s' wordt overgeslagen\n" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "" +"WAARSCHUWING: De volgende pakketten kunnen niet geauthentificeerd worden:" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "Kon de hoeveelheid vrije schijfruimte op %s niet bepalen" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Authentificatiewaarschuwing is genegeerd.\n" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "U heeft niet voldoende vrije schijfruimte op %s" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Sommige pakketten konden niet geauthentificeerd worden" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Moet %sB/%sB aan bronarchieven ophalen.\n" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Wilt u deze pakketten installeren zonder verificatie?" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Moet %sB aan bronarchieven ophalen.\n" +msgid "Failed to fetch %s %s\n" +msgstr "Ophalen van %s is mislukt %s\n" -#: cmdline/apt-get.cc:902 +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Hernoemen van %s naar %s is mislukt" + +#: apt-private/private-sources.cc:70 #, c-format -msgid "Fetch source %s\n" -msgstr "Ophalen bron %s\n" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Ophalen van sommige archieven is mislukt." +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Ophalen klaar en alleen-ophalen-modus staat aan" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Opwaardering wordt doorgerekend... " -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Het uitpakken van de reeds uitgepakte bron in %s wordt overgeslagen\n" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Klaar" + +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Geraakt " + +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Ophalen:" + +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Genegeerd " -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Uitpakopdracht '%s' is mislukt.\n" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Fout " -#: cmdline/apt-get.cc:963 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Gelieve na te gaan of het 'dpkg-dev'-pakket geïnstalleerd is.\n" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "%sB opgehaald in %s (%sB/s)\n" -#: cmdline/apt-get.cc:991 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Bouwopdracht '%s' is mislukt.\n" - -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Dochterproces is mislukt" - -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "" -"U dient tenminste één pakket op te geven om de bouwvereisten van te " -"controleren" +msgid " [Working]" +msgstr " [Bezig]" -#: cmdline/apt-get.cc:1054 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" +"Medium wisselen: Gelieve de schijf met label\n" +" '%s'\n" +"in het station '%s' te plaatsen en op 'enter' te drukken\n" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Kan de informatie over de bouwvereisten voor %s niet ophalen" +msgid "Unable to read %s" +msgstr "Kan %s niet lezen" -#: cmdline/apt-get.cc:1101 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s heeft geen bouwvereisten.\n" +msgid "Unable to change to %s" +msgstr "Kan %s niet veranderen" + +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 +#, c-format +msgid "No mirror file '%s' found " +msgstr "Geen spiegelbestand '%s' gevonden " -#: cmdline/apt-get.cc:1271 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s " -"onvindbaar is" +msgid "Can not read mirror file '%s'" +msgstr "Geen spiegelbestand '%s' gevonden " -#: cmdline/apt-get.cc:1289 -#, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" -"De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s " -"onvindbaar is" +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Geen spiegelbestand '%s' gevonden " -#: cmdline/apt-get.cc:1312 +#: methods/mirror.cc:445 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "[Mirror: %s]" +msgstr "[Spiegelserver: %s]" + +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Aanmaken van IPC-pijp naar subproces is mislukt" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Verbinding werd voortijdig afgebroken" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Foute standaardinstelling!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Druk 'enter' om door te gaan." + +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Wilt u alle eerder opgehaalde '.deb'-bestanden verwijderen?" + +# Note to translators: The following four messages belong together. It doesn't +# matter where sentences start, but it has to fit in just these four lines, and +# at only 80 characters per line, if possible. +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" -"Voldoen van Vereiste %s van pakket %s is mislukt: geïnstalleerde versie %s " -"is te nieuw" +"Er zijn fouten opgetreden tijdens het uitpakken. Geïnstalleerde pakketten" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "worden geconfigureerd. Hierbij kunnen fouten meerdere malen optreden" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -"De vereiste %s van pakket %s kan niet voldaan worden omdat er geen " -"beschikbare versies zijn van pakket %s die aan de versievereisten voldoen" +"of veroorzaakt worden door niet-voldane vereisten. Dit is Ok, enkel de fouten" -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format +#: dselect/install:105 msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s " -"onvindbaar is" +"boven dit bericht zijn belangrijk. U dient ze op te lossen en de installatie " +"opnieuw uit te voeren" -#: cmdline/apt-get.cc:1380 -#, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Voldoen van de vereiste %s van pakket %s is mislukt: %s" +#: dselect/update:30 +msgid "Merging available information" +msgstr "De beschikbare informatie wordt samengevoegd" -#: cmdline/apt-get.cc:1395 -#, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Bouwvereisten voor %s konden niet voldaan worden." +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode werd aangeroepen op een nog gelinkte knoop" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Verwerken van de bouwvereisten is mislukt" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Lokaliseren van het hash-element is mislukt!" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Er wordt verbinding gemaakt met %s (%s)" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Toewijzen van de omleiding is mislukt" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Ondersteunde modules:" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Interne fout in AddDiversion" -#: cmdline/apt-get.cc:1632 -#, fuzzy -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -msgstr "" -"Gebruik: apt-get [opties] opdracht\n" -" apt-get [opties] install|remove pakket1 [pakket2 ...]\n" -" apt-get [opties] source pakket1 [pakket2 ...]\n" -"\n" -"apt-get is een eenvoudige commandoregel-interface voor het ophalen en\n" -"installeren van pakketten. De meest gebruikte opdrachten zijn 'update\n" -"en 'install'.\n" -"\n" -"Opdrachten:\n" -" update - Haal de huidige versie van pakketlijsten op\n" -" upgrade - Voer een opwaardering uit\n" -" install - Installeer nieuwe pakketten (pakket is b.v. libc6, niet libc6." -"deb)\n" -" remove - Verwijder pakketten\n" -" autoremove - Verwijder automatisch alle ongebruikte pakketten\n" -" purge - Verwijder pakketten en hun configuratiebestanden\n" -" source - Haal bronarchieven op\n" -" build-dep - Installeer de pakketten vereist voor het bouwen van " -"bronpakketten\n" -" dist-upgrade - Opwaardeer de distributie, zie apt-get(8)\n" -" dselect-upgrade - Opwaardeer volgens dselect-selecties\n" -" clean - Verwijder opgehaalde archiefbestanden\n" -" autoclean - Verwijder verouderde opgehaalde archiefbestanden\n" -" check - Controleer onvoldane vereisten\n" -"\n" -"Opties:\n" -" -h Deze hulptekst\n" -" -q Logbare uitvoer - geen voortgangsindicator\n" -" -qq Geen uitvoer anders dan foutmeldingen\n" -" -d Alleen ophalen - archieven NIET installeren of uitpakken\n" -" -s Doe-niets. Doe alleen sorteersimulatie\n" -" -y Antwoord \"ja\" op alle vragen zonder ze te stellen\n" -" -f Probeer door te gaan als de integriteitstest faalt\n" -" -m Probeer door te gaan als archieven niet gevonden kunnen worden\n" -" -u Toon ook een lijst van bijgewerkte pakketten\n" -" -b Bouw het bronpakket nadat het is opgehaald\n" -" -V Toon uitgebreide versie nummers\n" -" -c=? Lees dit configuratiebestand\n" -" -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n" -"Zie de apt-get(8), sources.list(5) en apt.conf(5) handleidingen\n" -"voor meer informatie en opties.\n" -" Deze APT heeft Super Koe kracht.\n" +#: apt-inst/filelist.cc:477 +#, c-format +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Er wordt gepoogd om de omleiding %s->%s en %s/%s te overschrijven" + +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "Dubbele toevoeging van de omleiding %s->%s" + +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "Dubbel configuratiebestand %s/%s" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "" -"U dient minstens 1 pakket op te geven waarvan de broncode opgehaald moet " -"worden" +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" +msgstr "Het pad %s is te lang" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" +msgstr "%s wordt meer dan eens uitgepakt" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "De map %s is al omgeleid" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "maar het is niet geïnstalleerd" +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Het pakket probeert om het omleidingsdoel %s/%s weg te schrijven" -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s is ingesteld voor handmatige installatie.\n" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Het omleidingspad is te lang" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s is ingesteld op automatische geïnstalleerd.\n" +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 +#, c-format +msgid "Failed to stat %s" +msgstr "stat op %s is mislukt" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s is reeds de nieuwste versie.\n" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Hernoemen van %s naar %s is mislukt" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s is reeds de nieuwste versie.\n" +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "De map %s wordt vervangen door een niet-map" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s is ingesteld voor handmatige installatie.\n" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Vinden van de knoop in de hash-emmer is mislukt" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Openen van %s is mislukt" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Het pad is te lang" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-inst/extract.cc:421 +#, c-format +msgid "Overwrite package match with no version for %s" +msgstr "Pakket-overeenkomst wordt overschreven met 'no version' voor %s" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" +#: apt-inst/extract.cc:438 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Het bestand %s/%s overschrijft het bestand van pakket %s" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-inst/extract.cc:498 +#, c-format +msgid "Unable to stat %s" +msgstr "Kan de status van %s niet opvragen" -#: methods/cdrom.cc:203 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Kan de cd databank %s niet lezen" +msgid "Failed to write file %s" +msgstr "Wegschrijven van bestand %s is mislukt" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"Om deze APT deze CD te laten herkennen kunt u best apt-cdrom gebruiken. 'apt-" -"get update' is niet in staat om nieuwe CDs toe te voegen" +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "Sluiten van bestand %s is mislukt" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Verkeerde CD" +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Dit is geen geldig DEB-archief, het onderdeel '%s' mankeert" -#: methods/cdrom.cc:249 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "" -"Kan de CD in %s niet loskoppelen, mogelijk wordt die nog steeds gebruikt." +msgid "Internal error, could not locate member %s" +msgstr "Interne fout, kon onderdeel %s niet vinden" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Schijf niet gevonden" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Niet-ontleedbaar 'control'-bestand" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Bestand niet gevonden" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Ongeldige archiefondertekening" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "stat is mislukt" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Fout bij het lezen van de koptekst van het archiefonderdeel" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Instellen van de aanpassingstijd is mislukt" +#: apt-inst/contrib/arfile.cc:96 +#, c-format +msgid "Invalid archive member header %s" +msgstr "Ongeldige koptekst voor archiefonderdeel: %s" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Ongeldige URI, lokale URIs mogen niet beginnen met //" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Ongeldige koptekst in archiefonderdeel" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Bezig met aanmelden" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Archief is te kort" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Lezen van de archiefkopteksten is mislukt" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Aanmaken pijp is mislukt" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Uitvoeren van gzip is mislukt " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Beschadigd archief" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar controlesom klopt niet, het pakket is beschadigd" + +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Onbekende TAR-kopteksttype %u, onderdeel %s" + +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" + +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "dpkg wordt uitgevoerd" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Kan de 'peer'-naam niet bepalen" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Pakketbeheersysteem '%s' wordt niet ondersteund" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Kan de lokale naam niet bepalen" +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Kan geen geschikt pakketsysteemtype bepalen" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Onze verbinding is door de server geweigerd met bericht: %s" +msgid "Wrote %i records.\n" +msgstr "%i records weggeschreven.\n" -#: methods/ftp.cc:225 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER mislukt; bericht van server: %s" +msgid "Wrote %i records with %i missing files.\n" +msgstr "%i records weggeschreven met %i missende bestanden.\n" -#: methods/ftp.cc:232 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS mislukt; bericht van server: %s" +msgid "Wrote %i records with %i mismatched files\n" +msgstr "%i records weggeschreven met %i niet overeenkomende bestanden\n" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" -"Er was een proxy-server opgegeven, maar geen aanmeldscript, Acquire::ftp::" -"ProxyLogin is leeg." +"%i records weggeschreven met %i missende bestanden en %i niet overeenkomende " +"bestanden\n" -#: methods/ftp.cc:280 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Aanmeldscriptopdracht '%s' is mislukt; bericht van server: %s" +msgid "Can't find authentication record for: %s" +msgstr "Kan geen authenticatierecord vinden voor: %s" -#: methods/ftp.cc:306 +#: apt-pkg/indexcopy.cc:521 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE mislukt; bericht van server: %s" +msgid "Hash mismatch for: %s" +msgstr "Hash-som komt niet overeen voor: %s" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Verbinding is verlopen" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"De pakketlijsten of het statusbestand konden of niet ontleed, of niet " +"geopend worden." -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Verbinding is verbroken door de server" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "" +"U kunt misschien 'apt-get update' uitvoeren om deze problemen te verhelpen" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Een reactie deed de buffer overlopen" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "De lijst van bronnen kon niet gelezen worden." -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protocolcorruptie" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Lege pakketcache" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Kon geen socket aanmaken" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Het pakketcachebestand is beschadigd" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Kon de datasocket niet verbinden, de verbinding verliep" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Het pakketcachebestand heeft een niet-compatibele versie" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Mislukt" +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "Het pakketcachebestand is beschadigd" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Kon de passieve socket niet verbinden." +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "Deze APT ondersteunt het versienummeringssysteem '%s' niet" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo kon geen luistersocket verkrijgen" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "De pakketcache was aangemaakt voor een andere architectuur" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Kon geen socket binden" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Vereisten" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Kon niet op de socket niet luisteren" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Voor-Vereisten" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Kon de socketnaam niet bepalen" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Suggesties" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Kan PORT-commando niet verzenden" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Aanbevelingen" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Onbekende adresfamilie %u (AF_*)" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Conflicteert met" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT is mislukt; bericht van server: %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Vervangt" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Datasocket verbinding is verlopen" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Verouderd" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Kan de verbinding niet aanvaarden" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Breekt" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Probleem bij het hashen van het bestand" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Vult aan" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Kan bestand niet ophalen; bericht van server: %s" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "belangrijk" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Datasocket verliep" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "noodzakelijk" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Data transfer is mislukt, server zei: %s" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standaard" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Zoekopdracht" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "optioneel" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Aanroepen mislukt van " +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" -#: methods/connect.cc:76 +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Er wordt verbinding gemaakt met %s (%s)" +msgid "The method driver %s could not be found." +msgstr "Het methodestuurprogramma %s kon niet gevonden worden." -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Gelieve na te gaan of het 'dpkg-dev'-pakket geïnstalleerd is.\n" -#: methods/connect.cc:94 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Kon de socket voor %s (f=%u t=%u p=%u) niet aanmaken" +msgid "Method %s did not start correctly" +msgstr "Methode %s startte niet op de juiste manier" -#: methods/connect.cc:100 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Kan de verbinding met %s:%s (%s) niet aangaan." +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Gelieve de schijf met label '%s' in het station '%s' te plaatsen en op " +"'enter' te drukken." -#: methods/connect.cc:108 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Kon niet verbinden met %s:%s (%s), de verbinding verliep" +msgid "Index file type '%s' is not supported" +msgstr "Indexbestand van type '%s' wordt niet ondersteund" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Kon niet verbinden met %s:%s (%s)." +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Boom van vereisten wordt opgebouwd" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Kandidaat-versies" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Generatie vereisten" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "De status informatie wordt gelezen" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Connecting to %s" -msgstr "Er wordt verbinding gemaakt met %s" +msgid "Failed to open StateFile %s" +msgstr "Openen van StateFile %s is mislukt" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Could not resolve '%s'" -msgstr "Kon '%s' niet vinden" +msgid "Failed to write temporary StateFile %s" +msgstr "Wegschrijven van tijdelijke StateFile %s is mislukt" -#: methods/connect.cc:205 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Tijdelijke fout bij het opzoeken van '%s'" +msgid "rename failed, %s (%s -> %s)." +msgstr "herbenoeming is mislukt, %s (%s -> %s)." -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Er gebeurde iets raars bij het oplossen van '%s:%s' (%i - %s)" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Hash-som komt niet overeen" -#: methods/connect.cc:211 -#, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Er gebeurde iets raars bij het oplossen van '%s:%s' (%i - %s)" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Grootte komt niet overeen" -#: methods/connect.cc:258 -#, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Kan geen verbinding maken met %s %s:" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Ongeldige operatie %s" -#: methods/gpgv.cc:168 +#: apt-pkg/acquire-item.cc:1573 +#, c-format msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"Interne fout: ondertekening is goed maar kon de vingerafdruk van de sleutel\n" -"niet bepalen?!" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Er is tenminste één ongeldige ondertekening gevonden." +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Kon Release-bestand %s niet ontleden" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" msgstr "" -"Kon 'gpgv' niet uitvoeren om ondertekening te verifiëren (is gpgv " -"geïnstalleerd?)" +"Er zijn geen publieke sleutels beschikbaar voor de volgende sleutel-IDs:\n" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1669 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Onbekende fout bij het uitvoeren van gpgv" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "De volgende ondertekeningen waren ongeldig:\n" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Conflicterende distributie: %s (verwachtte %s, maar kreeg %s)" -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1721 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -"De volgende ondertekeningen konden niet geverifieerd worden omdat de " -"publieke sleutel niet beschikbaar is:\n" +"Er is een fout opgetreden bij de handtekeningcontrole. De pakketbron is niet " +"bijgewerkt en de oude indexbestanden zullen worden gebruikt. GPG-fout: %s: " +"%s\n" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "GPG-fout: %s: %s" + +#: apt-pkg/acquire-item.cc:1859 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" msgstr "" +"Er kon geen bestand gevonden worden voor pakket %s. Dit kan betekenen dat u " +"dit pakket handmatig moet repareren (wegens missende architectuur)" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Fout bij het schrijven naar het bestand" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" -"Fout bij het lezen van de server, andere kant heeft de verbinding gesloten" +"De pakketindex-bestanden zijn beschadigd. Er is geen 'Filename:'-veld voor " +"pakket %s." -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Fout bij het lezen van de server" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Indexbestand van type '%s' wordt niet ondersteund" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Fout bij het schrijven naar bestand" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Kan de status van %s niet opvragen." -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Selectie is mislukt" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Cache heeft een niet-compatibel versienummeringssysteem" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Verbinding verliep" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Fout tijdens verwerken van %s (FindPkg)" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Fout bij het schrijven naar het uitvoerbestand" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "Wauw, u heeft meer pakketten dan deze APT aan kan." -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Wachtend op de kopteksten" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Wauw, u heeft meer versies dan deze APT aan kan." -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Foute koptekstregel" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "" +"Wauw, u heeft het maximum aantal beschrijvingen dat deze APT aan kan " +"overschreden." -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Er is door de HTTP server een ongeldige 'reply'-koptekst verstuurd" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "Wauw, u heeft meer afhankelijkheden dan deze APT aan kan." -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" msgstr "" -"Er is door de HTTP server een ongeldige 'Content-Length'-koptekst verstuurd" +"Pakket %s %s werd niet gevonden bij het verwerken van de " +"bestandsafhankelijkheden" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "" -"Er is door de HTTP server een ongeldige 'Content-Range'-koptekst verstuurd" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Kon de status van de bronpakketlijst %s niet opvragen" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "De bereik-ondersteuning van deze HTTP-server werkt niet" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Pakketlijsten worden ingelezen" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Onbekend datumformaat" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Voorziene bestanden worden verzameld" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Foute koptekstdata" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Kan niet naar %s schrijven" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Verbinding mislukt" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Invoer/Uitvoer-fout tijdens wegschrijven bronpakket-cache" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Interne fout" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Verkopersblok %s bevat geen vingerafdruk" + +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Lijstmap %spartial is afwezig." + +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Archiefmap %spartial is afwezig." + +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "Kan de map %s niet vergrendelen" + +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Bestand %li van %li wordt opgehaald (nog %s te gaan)" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Opwaardering wordt doorgerekend... " +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Bestand %li van %li wordt opgehaald" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Klaar" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"Ophalen van sommige indexbestanden is mislukt, deze zijn of genegeerd, of er " +"zijn oudere versies van gebruikt." -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" msgstr "" +"Uw bronnenlijst (/etc/apt/sources.list) dient tenminste één bron-URI te " +"bevatten" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/policy.cc:422 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "" +"Ongeldige record in het voorkeurenbestand %s, 'Package' koptekst ontbreekt" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Vereisten worden gecorrigeerd..." +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Pintype %s wordt niet begrepen" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " mislukt." +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Er is geen prioriteit (of nul) opgegeven voor deze pin" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Kan vereisten niet corrigeren" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" +"Kon onmiddellijke configuratie van '%s' niet uitvoeren. Voor details zie " +"'man 5 apt.conf', onder APT::Immediate-Configure. (%d)" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Kon de verzameling op te waarderen pakketten niet minimaliseren" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Kon het bestand '%s' niet openen" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Klaar" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"Deze installatie-aanroep vereist het tijdelijk verwijderen van het " +"essentiële pakket %s, dit omwille van een Conflicts/Pre-Depends -lus. Dit is " +"vaak slecht, wilt u dit echt doen dan dient u de APT::Force-LoopBreak optie " +"te activeren." -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "U kunt 'apt-get -f install' uitvoeren om dit op te lossen." +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "Regel %u van de bronlijst %s is te lang." -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Er zijn vereisten waaraan niet voldaan is. Probeer -f te gebruiken." +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "CD wordt afgekoppeld...\n" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "Er wordt gebruik gemaakt van CD-aankoppelpunt %s\n" -#: apt-private/private-output.cc:234 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Geïnstalleerd]" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Er wordt gewacht op de schijf...\n" -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [Geïnstalleerd]" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "CD wordt aangekoppeld...\n" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identificatie..." -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Geïnstalleerd]" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Opgeslagen label: %s \n" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Geïnstalleerd]" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Er wordt gescand voor indexbestanden...\n" -#: apt-private/private-output.cc:249 +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "[upgradable from: %s]" +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"Er zijn %zu pakket-indexen, %zu bron-indexen, %zu vertalingsindexen, en %zu " +"handtekeningen gevonden\n" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" +"Kan geen Package-bestanden vinden. Is dit mogelijk geen Debian schijf, of de " +"verkeerde architectuur?" -#: apt-private/private-output.cc:435 -#, c-format -msgid "but %s is installed" -msgstr "maar %s is geïnstalleerd" - -#: apt-private/private-output.cc:437 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "but %s is to be installed" -msgstr "maar %s zal geïnstalleerd worden" - -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "maar het is niet installeerbaar" - -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "maar het is een virtueel pakket" +msgid "Found label '%s'\n" +msgstr "Label '%s' gevonden\n" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "maar het is niet geïnstalleerd" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Dat is een ongeldige naam, gelieve opnieuw te proberen.\n" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "maar het zal niet geïnstalleerd worden" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"De schijf heet:\n" +"'%s'\n" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " of" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Pakketlijsten worden gekopieerd..." -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "De volgende pakketten hebben niet-voldane vereisten:" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Nieuwe bronlijst wordt weggeschreven\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "De volgende NIEUWE pakketten zullen geïnstalleerd worden:" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Bronlijst-ingangen voor de schijf zijn:\n" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "De volgende pakketten zullen VERWIJDERD worden:" +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"Pakket %s moet opnieuw geïnstalleerd worden, maar er kan geen archief voor " +"gevonden worden." -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "De volgende pakketten zijn achtergehouden:" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Fout, pkgProblemResolver::Resolve maakte scheidingen aan, dit kan " +"veroorzaakt worden door vastgehouden pakketten." -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "De volgende pakketten zullen opgewaardeerd worden:" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Kan problemen niet verhelpen, u houdt defecte pakketten vast." -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "De volgende pakketten zullen GEDEGRADEERD worden:" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "De volgende vastgehouden pakketten zullen gewijzigd worden:" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: apt-private/private-output.cc:668 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (vanwege %s) " +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -"WAARSCHUWING: De volgende essentiële pakketten zullen verwijderd worden.\n" -"Dit dient NIET gedaan te worden tenzij u precies weet wat u doet!" -#: apt-private/private-output.cc:707 +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" + +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu pakketten opgewaardeerd, %lu pakketten nieuw geïnstalleerd, " +msgid "Unable to parse package file %s (1)" +msgstr "Kon pakketbestand %s niet ontleden (1)" -#: apt-private/private-output.cc:711 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu opnieuw geïnstalleerd, " +msgid "Unable to parse package file %s (2)" +msgstr "Kon pakketbestand %s niet ontleden (2)" -#: apt-private/private-output.cc:713 +#: apt-pkg/indexrecords.cc:78 #, c-format -msgid "%lu downgraded, " -msgstr "%lu gedegradeerd, " +msgid "Unable to parse Release file %s" +msgstr "Kon Release-bestand %s niet ontleden" -#: apt-private/private-output.cc:715 +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu te verwijderen en %lu niet opgewaardeerd.\n" +msgid "No sections in Release file %s" +msgstr "Geen secties in Release-bestand %s" -#: apt-private/private-output.cc:719 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu pakketten niet volledig geïnstalleerd of verwijderd.\n" +msgid "No Hash entry in Release file %s" +msgstr "Geen Hash-vermelding in Release-bestand %s" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[J/n]" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Geen 'Valid-Until'-vermelding in Release-bestand %s" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[j/N]" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Geen 'Date'-vermelding in Release-bestand %s" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "J" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Misvormde regel %lu in bronlijst %s (URI parse)" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "N" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Misvormde regel %lu in bronlijst %s ([optie] onbegrijpelijk)" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "De opdracht 'update' aanvaard geen argumenten" +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Misvormde regel %lu in bronlijst %s ([optie] te kort)" -#: apt-private/private-update.cc:90 +#: apt-pkg/sourcelist.cc:184 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Misvormde regel %lu in bronlijst %s ([%s] is geen toekenning)" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Misvormde regel %lu in bronlijst %s ([%s] heeft geen sleutel)" + +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" +"Misvormde regel %lu in bronlijst %s ([%s] sleutel %s heeft geen waarde)" -#: apt-private/private-show.cc:156 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Misvormde regel %lu in bronlijst %s (URI)" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Misvormde regel %lu in bronlijst %s (dist)" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Interne fout, InstallPackages is aangeroepen met defecte pakketten!" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Misvormde regel %lu in bronlijst %s (URI parse)" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Pakketten moeten verwijderd worden maar verwijderen is uitgeschakeld." +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Misvormde regel %lu in bronlijst %s (absolute dist)" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Interne fout, rangschikken is niet voltooid" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Misvormde regel %lu in bronlijst %s (dist parse)" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Merkwaardig... De groottes kwamen niet overeen, gelieve apt@packages.debian." -"org te mailen" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "%s wordt geopend" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Er moeten %sB/%sB aan archieven opgehaald worden.\n" +msgid "Malformed line %u in source list %s (type)" +msgstr "Misvormde regel %u in bronlijst %s (type)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Er moeten %sB aan archieven opgehaald worden.\n" +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Type '%s' op regel %u in bronlijst %s is onbekend" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Type '%s' op regel %u in bronlijst %s is onbekend" + +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Door deze operatie zal er %sB extra schijfruimte gebruikt worden.\n" +msgid "Release '%s' for '%s' was not found" +msgstr "Release '%s' voor '%s' is niet gevonden" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Door deze operatie zal er %sB schijfruimte vrijkomen.\n" +msgid "Version '%s' for '%s' was not found" +msgstr "Versie '%s' voor '%s' is niet gevonden" -#: apt-private/private-install.cc:200 +#: apt-pkg/cacheset.cc:603 #, c-format -msgid "You don't have enough free space in %s." -msgstr "U heeft onvoldoende vrije schijfruimte op %s." +msgid "Couldn't find task '%s'" +msgstr "Kon taak '%s' niet vinden" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Er zijn problemen en -y was gebruikt zonder --force-yes" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Kon geen enkel pakket vinden bij regex '%s'" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "'Trivial Only' is opgegeven, dit is echter geen triviale bewerking." +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Kon geen enkel pakket vinden bij regex '%s'" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Ja, doe wat ik zeg!" +#: apt-pkg/cacheset.cc:626 +#, fuzzy, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" +"Kan geen versies selecteren voor pakket '%s' omdat deze zuiver virtueel is" -#: apt-private/private-install.cc:222 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 #, c-format msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"U staat op het punt om iets te doen wat mogelijk schadelijk is.\n" -"Als u wilt doorgaan, dient u de zin '%s' in te typen.\n" -" ?] " - -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Afbreken." - -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Wilt u doorgaan?" +"Kan noch de geïnstalleerde, noch de kandidaat-versie van het pakket '%s' " +"selecteren omdat deze geen van beide heeft" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Ophalen van sommige bestanden is mislukt" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"Kan de nieuwste versie van het pakket '%s' niet selecteren omdat deze zuiver " +"virtueel is" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -"Kon sommige archieven niet ophalen, misschien kunt u 'apt-get update' of --" -"fix-missing proberen?" +"Kan de kandidaat-versie van het pakket %s niet selecteren omdat deze geen " +"kandidaat heeft" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing en medium wisselen wordt op dit moment niet ondersteund" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"Kan de geïnstalleerde versie van het pakket %s niet selecteren omdat deze " +"niet geïnstalleerd is" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Geen oplossing voor de missende pakketten gevonden." +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%lid %liu %limin %lis" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Installatie wordt afgebroken." +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%liu %limin %lis" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -"Het volgende pakket is van uw systeem verdwenen omdat\n" -"alle bestanden zijn overschreven door andere pakketten:" -msgstr[1] "" -"De volgende pakketten zijn van uw systeem verdwenen omdat\n" -"alle bestanden zijn overschreven door andere pakketten:" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Let op: Dit wordt automatische en bewust door dpkg gedaan." +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "We mogen geen dingen verwijderen, kan AutoRemover niet starten" +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "Selectie %s niet gevonden" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" msgstr "" -"Hmm, het lijkt erop dat de AutoRemover iets vernietigd heeft, dit zou\n" -"niet mogen kunnen. Gelieve een bug-rapport voor apt in te sturen." - -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "De volgende informatie helpt u mogelijk verder:" +"Er wordt geen vergrendeling gebruikt voor het alleen-lezen-" +"vergrendelingsbestand %s" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Interne fout, AutoRemover heeft dingen stukgemaakt" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Kon het vergrendelingsbestand '%s' niet openen" -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "" -"Het volgende pakket is automatisch geïnstalleerd en is niet langer nodig:" -msgstr[1] "" -"De volgende pakketten zijn automatisch geïnstalleerd en zijn niet langer " -"nodig:" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "" +"Het via nfs aangekoppelde vergrendelingsbestand %s wordt niet vergrendeld" -#: apt-private/private-install.cc:517 +#: apt-pkg/contrib/fileutl.cc:223 #, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "%lu pakket is automatisch geïnstalleerd en is niet langer nodig.\n" -msgstr[1] "" -"%lu pakketten zijn automatisch geïnstalleerd en zijn niet langer nodig.\n" +msgid "Could not get lock %s" +msgstr "Kon vergrendeling %s niet verkrijgen" -#: apt-private/private-install.cc:519 -#, fuzzy -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "U kunt deze verwijderen via 'apt-get autoremove'." -msgstr[1] "U kunt deze verwijderen via 'apt-get autoremove'." +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -"U wilt waarschijnlijk 'apt-get -f install' uitvoeren om volgende op te " -"lossen:" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -"Er zijn niet-voldane vereisten. U kunt best 'apt-get -f install' uitvoeren " -"zonder pakketten op te geven, (of u kunt zelf een oplossing specificeren)." -#: apt-private/private-install.cc:638 +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"Sommige pakketten konden niet geïnstalleerd worden. Dit kan betekenen dat u\n" -"een onmogelijke situatie gevraagd hebt of dat u de 'unstable'-distributie \n" -"gebruikt en sommige benodigde pakketten nog vastzitten in 'incoming'." - -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Niet-werkende pakketten:" - -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "De volgende extra pakketten zullen geïnstalleerd worden:" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Voorgestelde pakketten:" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Subproces %s ontving een segmentatiefout." -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Aanbevolen pakketten:" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "Subproces %s ontving signaal %u." -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "" -"%s wordt overgeslagen, het is al geïnstalleerd en opwaardering is niet " -"gevraagd.\n" +msgid "Sub-process %s returned an error code (%u)" +msgstr "Subproces %s gaf de foutcode %u terug" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"%s wordt overgeslagen, het is niet geïnstalleerd en alleen opwaardering is " -"gevraagd.\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "Subproces %s sloot onverwacht af" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "" -"Herinstallatie van %s is niet mogelijk daar het niet opgehaald kan worden.\n" +msgid "Problem closing the gzip file %s" +msgstr "Probleem bij het afsluiten van het gzip-bestand %s" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s is reeds de nieuwste versie.\n" +msgid "Could not open file %s" +msgstr "Kon het bestand %s niet openen" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Versie '%s' (%s) geselecteerd voor '%s'\n" +msgid "Could not open file descriptor %d" +msgstr "Kon de bestandsindicator %d niet openen" -#: apt-private/private-install.cc:899 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Versie '%s' (%s) geselecteerd voor '%s'\n" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Aanmaken subproces-IPC is mislukt" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "Pakket %s is niet geïnstalleerd, en wordt dus niet verwijderd\n" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Uitvoeren van de compressor is mislukt " -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/fileutl.cc:1514 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Pakket %s is niet geïnstalleerd, en wordt dus niet verwijderd\n" +msgid "read, still have %llu to read but none left" +msgstr "lees, de laatste te lezen %lu zijn niet beschikbaar" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" -"OPMERKING: Dit is een simulatie!\n" -" Voor daadwerkelijke uitvoering heeft apt-get beheerdersrechten nodig.\n" -" Houd er ook rekening mee ook dat vergrendeling is uitgeschakeld en\n" -" vertrouw dus niet op de relevantie voor de werkelijke huidige situatie!" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "schrijf, de laatste %lu konden niet weggeschreven worden" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "" -"WAARSCHUWING: De volgende pakketten kunnen niet geauthentificeerd worden:" +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Probleem bij het afsluiten van het bestand %s" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Authentificatiewaarschuwing is genegeerd.\n" +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Probleem bij het hernoemen van '%s' naar '%s'" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Sommige pakketten konden niet geauthentificeerd worden" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Probleem bij het ontlinken van het bestand %s" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Wilt u deze pakketten installeren zonder verificatie?" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Probleem bij het synchroniseren van het bestand" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Hernoemen van %s naar %s is mislukt" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Fout!" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%c%s... Done" +msgstr "%c%s... Klaar" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Geraakt " +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Klaar" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Ophalen:" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Kan een leeg bestand niet mmappen" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Genegeerd " +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Kon de bestandsindicator %i niet dupliceren" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Fout " +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Kon van %lu bytes geen mmap maken" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Kan mmap niet sluiten" + +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Kan mmap niet synchronizeren" + +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "%sB opgehaald in %s (%sB/s)\n" +msgid "Couldn't make mmap of %lu bytes" +msgstr "Kon van %lu bytes geen mmap maken" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Afkorten van bestand is mislukt" + +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid " [Working]" -msgstr " [Bezig]" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" +"Onvoldoende ruimte voor Dynamische MMap. Gelieve de grootte van APT::Cache-" +"Start te verhogen. Huidige waarde: %lu. (man 5 apt.conf)" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/mmap.cc:446 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -"Medium wisselen: Gelieve de schijf met label\n" -" '%s'\n" -"in het station '%s' te plaatsen en op 'enter' te drukken\n" +"Kan het formaat van de MMap niet vergroten omdat de grens van %lu bytes al " +"is bereikt" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"Kan het formaat van de MMap niet vergroten omdat het automatisch vergroten " +"door de gebruiker is uitgeschakeld." + +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "No mirror file '%s' found " -msgstr "Geen spiegelbestand '%s' gevonden " +msgid "Unable to stat the mount point %s" +msgstr "Kan de status van het aanhechtpunt %s niet opvragen" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Geen spiegelbestand '%s' gevonden " +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "stat op de CD-ROM is mislukt" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Geen spiegelbestand '%s' gevonden " +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Onbekende type-afkorting '%c'" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "[Mirror: %s]" -msgstr "[Spiegelserver: %s]" +msgid "Opening configuration file %s" +msgstr "Configuratiebestand %s wordt geopend" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Aanmaken van IPC-pijp naar subproces is mislukt" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntaxfout %s:%u: Blok start zonder naam." -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Verbinding werd voortijdig afgebroken" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntaxfout %s:%u: Verkeerd gevormde markering" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Foute standaardinstelling!" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntaxfout %s:%u: Extra rommel na waarde" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Druk 'enter' om door te gaan." +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "" +"Syntaxfout %s:%u: Richtlijnen kunnen enkel op het hoogste niveau gegeven " +"worden" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Wilt u alle eerder opgehaalde '.deb'-bestanden verwijderen?" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntaxfout %s:%u: Teveel geneste invoegingen" -# Note to translators: The following four messages belong together. It doesn't -# matter where sentences start, but it has to fit in just these four lines, and -# at only 80 characters per line, if possible. -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "" -"Er zijn fouten opgetreden tijdens het uitpakken. Geïnstalleerde pakketten" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntaxfout %s:%u: Vanaf hier ingevoegd" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "worden geconfigureerd. Hierbij kunnen fouten meerdere malen optreden" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntaxfout %s:%u: Niet-ondersteunde richtlijn '%s'" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"of veroorzaakt worden door niet-voldane vereisten. Dit is Ok, enkel de fouten" +"Syntaxfout %s:%u: De richtlijn 'clear' vereist een optieboom als argument" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "" -"boven dit bericht zijn belangrijk. U dient ze op te lossen en de installatie " -"opnieuw uit te voeren" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Syntaxfout %s:%u: Extra rommel aan het einde van het bestand" -#: dselect/update:30 -msgid "Merging available information" -msgstr "De beschikbare informatie wordt samengevoegd" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "Geen sleutelring geïnstalleerd in %s." -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode werd aangeroepen op een nog gelinkte knoop" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Commandoregel-optie '%c' [van %s] is onbekend." -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Lokaliseren van het hash-element is mislukt!" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Commandoregel-optie %s wordt niet begrepen" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Toewijzen van de omleiding is mislukt" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Commandoregel-optie %s is niet booleaans" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Interne fout in AddDiversion" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Optie %s vereist een argument." -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Er wordt gepoogd om de omleiding %s->%s en %s/%s te overschrijven" +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "" +"Optie %s: De specificatie van het configuratie-item dient een =<waarde> te " +"bevatten." -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Dubbele toevoeging van de omleiding %s->%s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Optie %s vereist een integer getal als argument, niet '%s'" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Dubbel configuratiebestand %s/%s" +msgid "Option '%s' is too long" +msgstr "Optie '%s' is te lang" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "The path %s is too long" -msgstr "Het pad %s is te lang" +msgid "Sense %s is not understood, try true or false." +msgstr "Waarde %s wordt niet begrepen, probeer 'true' of 'false'." -#: apt-inst/extract.cc:132 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "Unpacking %s more than once" -msgstr "%s wordt meer dan eens uitgepakt" +msgid "Invalid operation %s" +msgstr "Ongeldige operatie %s" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "The directory %s is diverted" -msgstr "De map %s is al omgeleid" +msgid "Installing %s" +msgstr "%s wordt geïnstalleerd" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Het pakket probeert om het omleidingsdoel %s/%s weg te schrijven" +msgid "Configuring %s" +msgstr "%s wordt geconfigureerd" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Het omleidingspad is te lang" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "%s wordt verwijderd" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "Failed to stat %s" -msgstr "stat op %s is mislukt" +msgid "Completely removing %s" +msgstr "%s wordt volledig verwijderd" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Hernoemen van %s naar %s is mislukt" +msgid "Noting disappearance of %s" +msgstr "De verdwijning van %s wordt opgemerkt" -#: apt-inst/extract.cc:249 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "De map %s wordt vervangen door een niet-map" +msgid "Running post-installation trigger %s" +msgstr "Post-installatie-trigger %s wordt uitgevoerd" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Vinden van de knoop in de hash-emmer is mislukt" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Map '%s' ontbreekt" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Het pad is te lang" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Kon het bestand '%s' niet openen" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Pakket-overeenkomst wordt overschreven met 'no version' voor %s" +msgid "Preparing %s" +msgstr "%s wordt voorbereid" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Het bestand %s/%s overschrijft het bestand van pakket %s" +msgid "Unpacking %s" +msgstr "%s wordt uitgepakt" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Unable to stat %s" -msgstr "Kan de status van %s niet opvragen" +msgid "Preparing to configure %s" +msgstr "Configuratie van %s wordt voorbereid" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Failed to write file %s" -msgstr "Wegschrijven van bestand %s is mislukt" +msgid "Installed %s" +msgstr "%s is geïnstalleerd" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to close file %s" -msgstr "Sluiten van bestand %s is mislukt" +msgid "Preparing for removal of %s" +msgstr "Verwijdering van %s wordt voorbereid" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Dit is geen geldig DEB-archief, het onderdeel '%s' mankeert" +msgid "Removed %s" +msgstr "%s is verwijderd" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Interne fout, kon onderdeel %s niet vinden" +msgid "Preparing to completely remove %s" +msgstr "Volledige verwijdering van %s wordt voorbereid" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Niet-ontleedbaar 'control'-bestand" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "%s is volledig verwijderd" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Ongeldige archiefondertekening" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Fout bij het lezen van de koptekst van het archiefonderdeel" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Kan niet naar %s schrijven" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Ongeldige koptekst voor archiefonderdeel: %s" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Ongeldige koptekst in archiefonderdeel" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Archief is te kort" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Lezen van de archiefkopteksten is mislukt" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" +"Er is geen apport-verslag weggeschreven omdat het maximum aantal verslagen " +"(MaxReports) al is bereikt" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Aanmaken pijp is mislukt" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "problemen met vereisten - wordt niet geconfigureerd" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Uitvoeren van gzip is mislukt " +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Er is geen apport-verslag weggeschreven omdat de foutmelding volgt op een " +"eerdere mislukking." -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Beschadigd archief" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Er is geen apport-verslag weggeschreven omdat de foutmelding een fout is " +"over een volle schijf." -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar controlesom klopt niet, het pakket is beschadigd" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Er is geen apport-verslag weggeschreven omdat de foutmelding een fout is " +"over onvoldoende-geheugen." -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Er is geen apport-verslag weggeschreven omdat de foutmelding een fout is " +"over een volle schijf." + +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Er is geen apport-verslag weggeschreven omdat de foutmelding een fout over " +"dpkg-I/O is." + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Onbekende TAR-kopteksttype %u, onderdeel %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Kan de beheersmap (%s) niet vergrendelen. Is deze in gebruik door een ander " +"proces?" + +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Kan de beheersmap (%s) niet vergrendelen. Heeft u beheerdersrechten?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"dpkg werd onderbroken; voer handmatig '%s' uit om het probleem te verhelpen. " + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Niet vergrendeld" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/nn.po b/po/nn.po index 95579da0d..23753d57a 100644 --- a/po/nn.po +++ b/po/nn.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_nn\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2005-02-14 23:30+0100\n" "Last-Translator: Havard Korsvoll <korsvoll@skulelinux.no>\n" "Language-Team: Norwegian nynorsk <i18n-nn@lister.ping.uio.no>\n" @@ -20,3146 +20,3147 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: KBabel 1.9.1\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "Indeksfiltypen %s er ikkje sttta" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "Klarte ikkje lesa %s" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Klarte ikkje byta til %s" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "Klarte ikkje f status p %s." - -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Progress: [%3i%%]" -msgstr "" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Pakken %s versjon %s har eit krav som ikkje er oppfylt:\n" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Tal p pakkenamn: " -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Pakkesystemet %s er ikkje sttta" +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "Tal p pakkenamn: " -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Klarte ikkje avgjera ein eigna pakkesystemtype" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Vanlege pakkar: " -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Skreiv %i postar.\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Reine virtuelle pakkar: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Skreiv %i postar med %i manglande filer.\n" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Enkle virtuelle pakkar: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Skreiv %i postar med %i filer som ikkje passa\n" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Samansette virtuelle pakkar: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "Skreiv %i postar med %i manglande filer og %i filer som ikkje passa\n" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Manglar: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Tal p einskildversjonar: " -#: apt-pkg/indexcopy.cc:521 -#, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Feil MD5-sum" +#: cmdline/apt-cache.cc:327 +#, fuzzy +msgid "Total distinct descriptions: " +msgstr "Tal p einskildversjonar: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Finn ikkje metodedrivaren %s." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Tal p krav: " -#: apt-pkg/acquire-worker.cc:118 -#, c-format -msgid "Is the package %s installed?" -msgstr "" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Tal p ver./fil-forhold: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Metoden %s starta ikkje rett" +#: cmdline/apt-cache.cc:334 +#, fuzzy +msgid "Total Desc/File relations: " +msgstr "Tal p ver./fil-forhold: " -#: apt-pkg/acquire-worker.cc:455 -#, fuzzy, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "" -"Skifte av medum: Set inn plata merkt\n" -" %s\n" -"i stasjonen %s og trykk Enter.\n" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Tal p tilbyr-forhold: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Klarte ikkje tolka eller opna pakkelista eller tilstandsfila." +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Tal p strengar med jokerteikn: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "" -"Du vil kanskje prva retta p desse problema ved kyra apt-get update." +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Storleik p kravs- og versjonsrom: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Kjeldelista kan ikkje lesast." +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Slingringsmon: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Tomt pakkelager" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Brukt plass i alt: " -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Pakkelagerfila er ydelagd" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "Pakkefila %s er ute av takt." -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Versjonen til pakkelagerfila er ikkje kompatibel" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Fann ingen pakkar" -#: apt-pkg/pkgcache.cc:169 +#: cmdline/apt-cache.cc:1254 #, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "Pakkelagerfila er ydelagd" - -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "APT stttar ikkje versjonssystemet %s" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Pakkelageret er bygd for ein annan arkitektur" +msgid "You must give at least one search pattern" +msgstr "Du m oppgi nyaktig eitt mnster" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Krav" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Forkrav" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "Finn ikkje pakken %s" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Forslag" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Pakkefiler:" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Tilrdingar" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Mellomlageret er ute av takt, kan ikkje x-referera ei pakkefil" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Konflikt" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Spikra pakkar:" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Byter ut" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(ikkje funne)" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Foreldar" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Installert: " -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Kandidat: " -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(ingen)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "viktig" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Pakke spikra til: " -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "pkravd" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Versjonstabell:" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "vanleg" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, fuzzy, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s for %s %s kompilert p %s %s\n" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "valfri" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Bruk: apt-cache [val] kommando\n" +" apt-cache [val] add fil1 [fil2 ...]\n" +" apt-cache [val] showpkg pakke1 [pakke2 ...]\n" +" apt-cache [val] showsrc pakke1 [pakke2 ...]\n" +"\n" +"apt-cache er eit lgnivverkty som vert brukt til handtera\n" +"binrmellomlageret til APT, og til henta informasjon fr det.\n" +"\n" +"Kommandoar:\n" +" add - Legg ei fil til i kjeldelageret.\n" +" gencaches - Bygg opp lagera for bde pakkane og kjeldekoden.\n" +" showpkg - Vis overordna informasjon om ein enkelt pakke.\n" +" showsrc - Vis data om kjeldekoden.\n" +" stats - Vis ein enkel statistikk.\n" +" dump - Vis fila med lista over tilgjengelege pakkar i tett form.\n" +" dumpavail - Send heile lista over tilgjengelege pakkar til stdout.\n" +" unmet - Vis krav som ikkje er oppfylte.\n" +" search - Sk gjennom pakkelista etter eit regulrt uttrykk.\n" +" show - Vis ei oversikt over pakken.\n" +" depends - Vis r informasjon om krava til ein pakke.\n" +" rdepends - Vis baklengs kravinformasjon for ein pakke\n" +" pkgnames - Vis ei liste over alle pakkenamn.\n" +" dotty - Lag pakkegrafar for GraphViz.\n" +" xvcg - Lag pakkegrafar for xvcg\n" +" policy - Vis regelinnstillingar.\n" +"\n" +"Val:\n" +" -h Vis denne hjelpeteksten.\n" +" -p=? Pakkelageret.\n" +" -s=? Kjeldekodelageret.\n" +" -q Ikkje vis framdriftsmlaren.\n" +" -i Vis berre viktige krav for unmet-kommandoen.\n" +" -c=? Les denne oppsettsfila.\n" +" -o=? Set ei vilkrleg innstilling, t.d. -o dir::cache=/tmp.\n" +"Du finn meir informasjon p manualsidene apt-cache(8) og apt.conf(5).\n" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "tillegg" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Indeksfiltypen %s er ikkje sttta" +#: cmdline/apt-cdrom.cc:91 +#, fuzzy +msgid "Please insert a Disc in the drive and press enter" +msgstr "" +"Skifte av medum: Set inn plata merkt\n" +" %s\n" +"i stasjonen %s og trykk Enter.\n" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Regex-kompileringsfeil - %s" +#: cmdline/apt-cdrom.cc:139 +#, fuzzy, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Klarte ikkje endra namnet p %s til %s" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Mellomlageret brukar eit inkompatibelt versjonssystem" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Feil ved behandling av %s (FindPkg)" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "Jss, du har overgtt talet p pakkenamn som APT kan handtera." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Ikkje parvise argument" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Jss, du har overgtt talet p versjonar som APT kan handtera." +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"Bruk: apt-config [val] kommando\n" +"\n" +"apt-config er eit enkelt verkty for lesa oppsettsfila til APT.\n" +"\n" +"Kommandoar:\n" +" shell - Skalmodus\n" +" dump - Vis oppsettet\n" +"\n" +"Val:\n" +" -h Vis denne hjelpeteksten.\n" +" -c=? Les denne oppsettsfila.\n" +" -o=? Set ei vilkrleg innstilling, t.d. -o dir::cache=/tmp.\n" -#: apt-pkg/pkgcachegen.cc:263 -#, fuzzy -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Jss, du har overgtt talet p versjonar som APT kan handtera." +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Fann ikkje pakken %s" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "Jss, du har overgtt talet p krav som APT kan handtera." +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Fann ikkje pakken %s" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "Fann ikkje pakken %s %s ved behandling av filkrav" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Fann ikkje pakken %s" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" +#: cmdline/apt-get.cc:367 +#, fuzzy, c-format +msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Klarte ikkje f status p kjeldepakkelista %s" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Les pakkelister" - -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Samlar inn filtilbod" +#: cmdline/apt-get.cc:423 +#, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Unable to write to %s" -msgstr "Klarte ikkje skriva til %s" +msgid "Couldn't find package %s" +msgstr "Fann ikkje pakken %s" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "IU-feil ved lagring av kjeldelager" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, fuzzy, c-format +msgid "%s set to manually installed.\n" +msgstr "men %s skal installerast" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "men %s skal installerast" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +#, fuzzy +msgid "Internal error, problem resolver broke stuff" +msgstr "Intern feil. AllUpgrade ydelagde noko" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Klarte ikkje lsa nedlastingskatalogen" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Du m velja minst in pakke som kjeldekoden skal hentast for" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "endring av namn mislukkast, %s (%s -> %s)." +msgid "Unable to find a source package for %s" +msgstr "Finn ingen kjeldepakke for %s" -#: apt-pkg/acquire-item.cc:163 -#, fuzzy -msgid "Hash Sum mismatch" -msgstr "Feil MD5-sum" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Feil storleik" - -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Ugyldig operasjon %s" - -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:786 #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" - -#: apt-pkg/acquire-item.cc:1589 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Klarte ikkje tolka pakkefila %s (1)" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:791 #, c-format msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: apt-pkg/acquire-item.cc:1691 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" +#: cmdline/apt-get.cc:843 +#, fuzzy, c-format +msgid "Skipping already downloaded file '%s'\n" +msgstr "Hoppar over utpakking av kjeldekode som er utpakka fr fr i %s\n" -#: apt-pkg/acquire-item.cc:1721 -#, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#, fuzzy, c-format +msgid "Couldn't determine free space in %s" +msgstr "Du har ikkje nok ledig plass i %s" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:882 #, c-format -msgid "GPG error: %s: %s" -msgstr "" +msgid "You don't have enough free space in %s" +msgstr "Du har ikkje nok ledig plass i %s" -#: apt-pkg/acquire-item.cc:1859 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"Fann ikkje fila for pakken %s. Det kan henda du m fiksa denne pakken sjlv " -"(fordi arkitekturen manglar)." +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "M henta %sB/%sB med kjeldekodearkiv.\n" -#: apt-pkg/acquire-item.cc:1925 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Need to get %sB of source archives.\n" +msgstr "M henta %sB med kjeldekodearkiv.\n" -#: apt-pkg/acquire-item.cc:1983 +#: cmdline/apt-get.cc:902 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Pakkeindeksfilene er ydelagde. Feltet Filename: manglar for pakken %s." +msgid "Fetch source %s\n" +msgstr "Hent kjeldekode %s\n" -#: apt-pkg/vendorlist.cc:85 -#, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Utgjevarblokka %s inneheld ingen fingeravtrykk" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Klarte ikkje henta nokre av arkiva." -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "Listekatalogen %spartial manglar." +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Nedlastinga er ferdig i nedlastingsmodus" -#: apt-pkg/acquire.cc:91 -#, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "Arkivkatalogen %spartial manglar." +#: cmdline/apt-get.cc:950 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Hoppar over utpakking av kjeldekode som er utpakka fr fr i %s\n" -#: apt-pkg/acquire.cc:99 -#, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "Klarte ikkje lsa listekatalogen" +#: cmdline/apt-get.cc:963 +#, c-format +msgid "Unpack command '%s' failed.\n" +msgstr "Utpakkingskommandoen %s mislukkast.\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" +msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: apt-pkg/acquire.cc:904 -#, fuzzy, c-format -msgid "Retrieving file %li of %li" -msgstr "Les filliste" - -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Klarte ikkje henta %s %s\n" +msgid "Build command '%s' failed.\n" +msgstr "Byggjekommandoen %s mislukkast.\n" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Klarte ikkje lasta ned nokre av indeksfilene. Dei er ignorerte, eller gamle " -"filer er brukte i staden." +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Barneprosessen mislukkast" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Du m leggja nokre kjelde-URI-ar i fila sources.list." +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "Du m velja minst ein pakke som byggjekrava skal sjekkast for" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Ugyldig oppslag i innstillingsfila, manglar pakkehovud" +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "Klarte ikkje henta byggjekrav for %s" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Did not understand pin type %s" -msgstr "Skjnar ikkje spikringstypen %s" +msgid "%s has no build depends.\n" +msgstr "%s har ingen byggjekrav.\n" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Ingen prioritet (eller null) oppgitt for spiker" +#: cmdline/apt-get.cc:1272 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "Kravet %s for %s kan ikkje oppfyllast fordi pakken %s ikkje finst" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "Kravet %s for %s kan ikkje oppfyllast fordi pakken %s ikkje finst" + +#: cmdline/apt-get.cc:1313 +#, c-format +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" +"Klarte ikkje oppfylla kravet %s for %s: Den installerte pakken %s er for ny" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:1352 #, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Klarte ikkje opna fila %s" - -#: apt-pkg/packagemanager.cc:583 -#, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" -"Denne installasjonen vil verta nydd til mellombels fjerna den ndvendige " -"pakken %s p grunn av ei konflikt/forkrav-lkkje. Dette er ofte uheldig, men " -"om du verkeleg vil gjera det, kan du bruka innstillinga APT::Force-" -"LoopBreak." - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Linja %u i kjeldelista %s er for lang." +"Kravet %s for %s kan ikkje oppfyllast fordi det ikkje finst nokon " +"tilgjengelege versjonar av pakken %s som oppfyller versjonskrava" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Avmonterer CD-ROM ...\n" +#: cmdline/apt-get.cc:1358 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "Kravet %s for %s kan ikkje oppfyllast fordi pakken %s ikkje finst" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Brukar monteringspunktet %s for CD-ROM\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Ventar p disk ...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Monterer CD-ROM ...\n" - -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identifiserer ... " +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Klarte ikkje oppfylla kravet %s for %s: %s" -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Stored label: %s\n" -msgstr "Lagra etikett: %s \n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Byggjekrav for %s kunne ikkje tilfredstillast." -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Leitar etter indeksfiler p disken ...\n" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Klarte ikkje behandla byggjekrava" -#: apt-pkg/cdrom.cc:734 +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 #, fuzzy, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "Fann %i pakkeindeksar, %i kjeldeindeksar og %i signaturar\n" - -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" +msgid "Changelog for %s (%s)" +msgstr "Koplar til %s (%s)" -#: apt-pkg/cdrom.cc:771 -#, fuzzy, c-format -msgid "Found label '%s'\n" -msgstr "Lagra etikett: %s \n" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Sttta modular:" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Det er ikkje eit gyldig namn, prv igjen.\n" - -#: apt-pkg/cdrom.cc:817 -#, c-format +#: cmdline/apt-get.cc:1633 +#, fuzzy msgid "" -"This disc is called: \n" -"'%s'\n" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"Disken vert kalla: \n" -"%s\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopierer pakkelister ..." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Skriv ny kjeldeliste\n" - -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Kjeldelisteoppfringar for denne disken er:\n" +"Bruk: apt-get [val] kommando\n" +" apt-get [val] install|remove pakke1 [pakke2 ...]\n" +" apt-get [val] source pakke1 [pakke2 ...]\n" +"\n" +"apt-get er eit enkelt grensesnitt til bruk fr kommandolinja for lasta\n" +"ned og installera pakkar. Dei vanlegaste kommandoane er update og\n" +"install.\n" +"\n" +"Kommandoar:\n" +" update - Hent nye pakkelister.\n" +" upgrade - Utfr ei oppgradering.\n" +" install - Installer nye pakkar (bruk pakkenamn, ikkje filnamn (foo." +"deb)).\n" +" remove - Fjern pakkar.\n" +" source - Last ned kjeldekode fr arkiva.\n" +" build-dep - Oppfyll byggjekrava for kjeldepakkar.\n" +" dist-upgrade - Oppgrader distribusjonen, les apt-get(8).\n" +" dselect-upgrade - Flg rda fr dselect.\n" +" clean - Slett nedlasta arkivfiler.\n" +" autoclean - Slett gamle, nedlasta arkivfiler.\n" +" check - Stadfest at det ikkje finst krav som ikkje er oppfylte.\n" +"\n" +"Val:\n" +" -h Vis denne hjelpeteksten.\n" +" -q Ikkje vis framdriftsmtar, for bruk i loggar.\n" +" -qq Inga tilbakemelding - bortsett fr feilmeldingar.\n" +" -d Berre nedlasting - IKKJE installer eller pakk ut arkivfilene.\n" +" -s Skuggespel, berre simulering av handlingane.\n" +" -y Svar ja p alle sprsml utan stoppa.\n" +" -f Prv halda fram sjlv om integritetskontrollen mislukkast.\n" +" -m Prv halda fram sjlv om nokre pakkar ikkje vert funne.\n" +" -u Ta med oppgraderte pakkar i lista som vert vist.\n" +" -b Bygg pakken etter at kjeldekoden er henta.\n" +" -V Vis fullstendige versjonsnummer.\n" +" -c=? Les denne innstillingsfila.\n" +" -o=? Set ei vilkrleg innstilling, t.d. -o dir::cache=/tmp.\n" +"Du finn meir informasjon og fleire kommandolinjeval p manualsidene\n" +"til apt-get(8), sources.list(5) og apt.conf(5).\n" +" APT har superku-krefter.\n" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "Pakken %s m installerast p nytt, men arkivet finst ikkje." +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Du m velja minst in pakke som kjeldekoden skal hentast for" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"Feil, pkgProblemResolver::Resolve har laga brot. Dette kan skuldast pakkar " -"som er haldne tilbake." -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Klarte ikkje retta opp problema. Nokre ydelagde pakkar er haldne tilbake." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Byggjer kravtre" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Kandidatversjonar" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Genererer kravforhold" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -#, fuzzy -msgid "Reading state information" -msgstr "Flettar informasjon om tilgjengelege pakkar" -#: apt-pkg/depcache.cc:250 +#: cmdline/apt-mark.cc:68 #, fuzzy, c-format -msgid "Failed to open StateFile %s" -msgstr "Klarte ikkje opna %s" +msgid "%s can not be marked as it is not installed.\n" +msgstr "men er ikkje installert" -#: apt-pkg/depcache.cc:256 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Klarte ikkje skriva fila %s" - -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Klarte ikkje tolka pakkefila %s (1)" - -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Klarte ikkje tolka pakkefila %s (2)" - -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Fann ikkje utgva %s av %s" - -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Fann ikkje versjonen %s av %s" - -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "Finn ikkje pakken %s" +msgid "%s was already set to manually installed.\n" +msgstr "men %s skal installerast" -#: apt-pkg/cacheset.cc:603 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "Fann ikkje pakken %s" +msgid "%s was already set to automatically installed.\n" +msgstr "men %s skal installerast" -#: apt-pkg/cacheset.cc:609 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Fann ikkje pakken %s" +msgid "%s was already set on hold.\n" +msgstr "Den nyaste versjonen av %s er installert fr fr.\n" -#: apt-pkg/cacheset.cc:615 +#: cmdline/apt-mark.cc:243 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Fann ikkje pakken %s" - -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" - -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" - -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" - -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +msgid "%s was already not hold.\n" +msgstr "Den nyaste versjonen av %s er installert fr fr.\n" -#: apt-pkg/cacheset.cc:663 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" +msgid "Waited for %s but it wasn't there" +msgstr "Venta p %s, men den fanst ikkje" -#: apt-pkg/indexrecords.cc:78 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "Klarte ikkje tolka pakkefila %s (1)" +msgid "%s set on hold.\n" +msgstr "men %s skal installerast" -#: apt-pkg/indexrecords.cc:86 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "Merk, vel %s i staden for %s\n" +msgid "Canceled hold on %s.\n" +msgstr "Klarte ikkje opna %s" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Ugyldig linje i avleiingsfila: %s" - -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Klarte ikkje tolka pakkefila %s (1)" +#: cmdline/apt-mark.cc:392 +msgid "" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." +msgstr "" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Misforma linje %lu i kjeldelista %s (URI-tolking)" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Klarte ikkje lesa CD-ROM-databasen %s" -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Misforma linje %lu i kjeldelista %s (dist)" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" +msgstr "" +"Bruk apt-cdrom for gjera denne CD-plata tilgjengeleg for APT. Du kan " +"ikkje bruka apt-get update til leggja til nye CD-plater." -#: apt-pkg/sourcelist.cc:184 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Feil CD-plate" -#: apt-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "" +"Klarte ikkje montera CD-plata i %s. Det kan henda plata framleis er i bruk." -#: apt-pkg/sourcelist.cc:193 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)" +#: methods/cdrom.cc:254 +#, fuzzy +msgid "Disk not found." +msgstr "Fann ikkje fila" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Misforma linje %lu i kjeldelista %s (URI)" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Fann ikkje fila" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Misforma linje %lu i kjeldelista %s (dist)" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Klarte ikkje f status" -#: apt-pkg/sourcelist.cc:211 +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Klarte ikkje setja endringstidspunkt" + +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Ugyldig URI. Lokale URI-ar kan ikkje starta med //" + +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Loggar inn" + +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Klarte ikkje avgjera namnet p motparten" + +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Klarte ikkje avgjera det lokale namnet" + +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Misforma linje %lu i kjeldelista %s (URI-tolking)" +msgid "The server refused the connection and said: %s" +msgstr "Tenaren nekta oss kopla til, og sa: %s" -#: apt-pkg/sourcelist.cc:217 +#: methods/ftp.cc:225 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Misforma linje %lu i kjeldelista %s (absolutt dist)" +msgid "USER failed, server said: %s" +msgstr "USER mislukkast, tenaren sa: %s" -#: apt-pkg/sourcelist.cc:224 +#: methods/ftp.cc:232 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)" +msgid "PASS failed, server said: %s" +msgstr "PASS mislukkast, tenaren sa: %s" -#: apt-pkg/sourcelist.cc:335 +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"Ein mellomtenar er oppgitt, men ikkje noko innloggingsskript. Feltet " +"Acquire::ftp::ProxyLogin er tomt." + +#: methods/ftp.cc:280 #, c-format -msgid "Opening %s" -msgstr "Opnar %s" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Kommandoen %s i innlogginsskriptet mislukkast, tenaren sa: %s" -#: apt-pkg/sourcelist.cc:371 +#: methods/ftp.cc:306 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Misforma linje %u i kjeldelista %s (type)" +msgid "TYPE failed, server said: %s" +msgstr "TYPE mislukkast, tenaren sa: %s" -#: apt-pkg/sourcelist.cc:375 -#, fuzzy, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Typen %s er ukjend i linja %u i kjeldelista %s" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Tidsavbrot p samband" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Typen %s er ukjend i linja %u i kjeldelista %s" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Tenaren lukka sambandet" -#: apt-pkg/deb/dpkgpm.cc:95 -#, fuzzy, c-format -msgid "Installing %s" -msgstr " Installert: " +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Lesefeil" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, fuzzy, c-format -msgid "Configuring %s" -msgstr "Koplar til %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Eit svar flaumde over bufferen." -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, fuzzy, c-format -msgid "Removing %s" -msgstr "Opnar %s" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protokollydeleggjing" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "Klarte ikkje fjerna %s" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Skrivefeil" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Klarte ikkje oppretta sokkel" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Klarte ikkje kopla til datasokkel, tidsavbrot p sambandet" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, fuzzy, c-format -msgid "Directory '%s' missing" -msgstr "Listekatalogen %spartial manglar." +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Mislukkast" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "Klarte ikkje opna fila %s" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Klarte ikkje kopla til passiv sokkel." -#: apt-pkg/deb/dpkgpm.cc:989 -#, fuzzy, c-format -msgid "Preparing %s" -msgstr "Opnar %s" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo klarte ikkje oppretta ein lyttesokkel" -#: apt-pkg/deb/dpkgpm.cc:990 -#, fuzzy, c-format -msgid "Unpacking %s" -msgstr "Opnar %s" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Klarte ikkje binda til sokkel" -#: apt-pkg/deb/dpkgpm.cc:995 -#, fuzzy, c-format -msgid "Preparing to configure %s" -msgstr "Opnar oppsettsfila %s" - -#: apt-pkg/deb/dpkgpm.cc:997 -#, fuzzy, c-format -msgid "Installed %s" -msgstr " Installert: " - -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1004 -#, fuzzy, c-format -msgid "Removed %s" -msgstr "Tilrdingar" - -#: apt-pkg/deb/dpkgpm.cc:1009 -#, fuzzy, c-format -msgid "Preparing to completely remove %s" -msgstr "Opnar oppsettsfila %s" - -#: apt-pkg/deb/dpkgpm.cc:1010 -#, fuzzy, c-format -msgid "Completely removed %s" -msgstr "Klarte ikkje fjerna %s" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Klarte ikkje lytta til sokkel" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Klarte ikkje skriva til %s" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Klarte ikkje avgjera sokkelnamnet" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Klarte ikkje senda PORT-kommandoen" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "Ukjend adressefamilie %u (AF_*)" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/ftp.cc:811 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Venta p %s, men den fanst ikkje" +msgid "EPRT failed, server said: %s" +msgstr "EPRT mislukkast, tenaren sa: %s" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Tidsavbrot p tilkopling til datasokkel" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Klarte ikkje godta tilkoplinga" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problem ved oppretting av nkkel for fil" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" +#: methods/ftp.cc:890 +#, c-format +msgid "Unable to fetch file, server said '%s'" +msgstr "Klarte ikkje henta fila, tenaren sa %s" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Tidsavbrot p datasokkelen" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" +#: methods/ftp.cc:935 +#, c-format +msgid "Data transfer failed, server said '%s'" +msgstr "Dataoverfringa mislukkast, tenaren sa %s" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Sprjing" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Klarte ikkje starta " -#: apt-pkg/deb/debsystem.cc:91 +#: methods/connect.cc:76 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" - -#: apt-pkg/deb/debsystem.cc:94 -#, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Klarte ikkje lsa listekatalogen" +msgid "Connecting to %s (%s)" +msgstr "Koplar til %s (%s)" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: methods/connect.cc:87 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 +#: methods/connect.cc:94 #, c-format -msgid "%lid %lih %limin %lis" -msgstr "" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Klarte ikkje oppretta sokkel for %s (f=%u t=%u p=%u)" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: methods/connect.cc:100 #, c-format -msgid "%lih %limin %lis" -msgstr "" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Klarte ikkje initiera sambandet til %s:%s (%s)." -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: methods/connect.cc:108 #, c-format -msgid "%limin %lis" -msgstr "" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Klarte ikkje kopla til %s:%s (%s), tidsavbrot p sambandet" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: methods/connect.cc:126 #, c-format -msgid "%lis" -msgstr "" +msgid "Could not connect to %s:%s (%s)." +msgstr "Klarte ikkje kopla til %s:%s (%s)." -#: apt-pkg/contrib/strutl.cc:1243 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Selection %s not found" -msgstr "Fann ikkje utvalet %s" +msgid "Connecting to %s" +msgstr "Koplar til %s" -#: apt-pkg/contrib/fileutl.cc:190 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Brukar ikkje lsing for den skrivebeskytta lsefila %s" +msgid "Could not resolve '%s'" +msgstr "Klarte ikkje sl opp %s" -#: apt-pkg/contrib/fileutl.cc:195 +#: methods/connect.cc:205 #, c-format -msgid "Could not open lock file %s" -msgstr "Klarte ikkje opna lsefila %s" +msgid "Temporary failure resolving '%s'" +msgstr "Mellombels feil ved oppslag av %s" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Brukar ikkje lsing for den nfs-monterte lsefila %s" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Det hende noko dumt ved oppslag av %s:%s (%i)" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Klarte ikkje lsa %s" +#: methods/connect.cc:211 +#, fuzzy, c-format +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Det hende noko dumt ved oppslag av %s:%s (%i)" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" +#: methods/connect.cc:258 +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Klarte ikkje kopla til %s %s:" + +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." msgstr "" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -#: apt-pkg/contrib/fileutl.cc:421 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Underprosessen %s mottok ein segmenteringsfeil." - -#: apt-pkg/contrib/fileutl.cc:826 -#, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "Underprosessen %s mottok ein segmenteringsfeil." +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Underprosessen %s returnerte ein feilkode (%u)" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +#, fuzzy +msgid "The following signatures were invalid:\n" +msgstr "Dei flgjande tilleggspakkane vil verta installerte:" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Underprosessen %s avslutta uventa" - -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Skrivefeil" - -#: apt-pkg/contrib/fileutl.cc:913 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problem ved lsing av fila" +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Klarte ikkje opna fila %s" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "Klarte ikkje opna ryr for %s" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Feil ved skriving til fila" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Klarte ikkje oppretta underprosessen IPC" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Feil ved lesing fr tenaren. Sambandet vart lukka i andre enden" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Klarte ikkje kyra komprimeringa " +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Feil ved lesing fr tenaren" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Lesefeil" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Feil ved skriving til fil" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "lese, har framleis %lu att lesa, men ingen att" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Utvalet mislukkast" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "skrive, har framleis %lu att skrive, men klarte ikkje" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Tidsavbrot p sambandet" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Problem ved lsing av fila" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Feil ved skriving til utfil" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problem ved synkronisering av fila" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Ventar p hovud" -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "Problem ved oppheving av lenkje til fila" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "ydelagd hovudlinje" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problem ved synkronisering av fila" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "HTTP-tenaren sende eit ugyldig svarhovud" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s ... Feil" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "HTTP-tenaren sende eit ugyldig Content-Length-hovud" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s ... Ferdig" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "HTTP-tenaren sende eit ugyldig Content-Range-hovud" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Denne HTTP-tenaren har ydelagd sttte for omrde" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s ... Ferdig" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Ukjend datoformat" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Kan ikkje utfra mmap p ei tom fil" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "ydelagde hovuddata" -#: apt-pkg/contrib/mmap.cc:111 -#, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Klarte ikkje opna ryr for %s" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Sambandet mislukkast" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Klarte ikkje laga mmap av %lu byte" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Intern feil" -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "Klarte ikkje opna %s" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -#, fuzzy -msgid "Unable to synchronize mmap" -msgstr "Klarte ikkje starta " +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Klarte ikkje laga mmap av %lu byte" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Nokre pakkar m fjernast, men fjerning er sltt av." -#: apt-pkg/contrib/mmap.cc:322 +#: apt-private/private-install.cc:110 #, fuzzy -msgid "Failed to truncate file" -msgstr "Klarte ikkje skriva fila %s" +msgid "Internal error, Ordering didn't finish" +msgstr "Intern feil ved tilleggjing av avleiing" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" -#: apt-pkg/contrib/mmap.cc:446 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" - -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "M henta %sB/%sB med arkiv.\n" -#: apt-pkg/contrib/cdromutl.cc:65 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "Klarte ikkje f status til monteringspunktet %s" +msgid "Need to get %sB of archives.\n" +msgstr "M henta %sB med arkiv.\n" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Klarte ikkje f status til CD-ROM" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 +#, fuzzy, c-format +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Etter utpakking vil %sB meir diskplass verta brukt.\n" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Ukjend typeforkorting: %c" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 +#, fuzzy, c-format +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Etter utpakking vil %sB meir diskplass verta frigjort.\n" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-private/private-install.cc:200 #, c-format -msgid "Opening configuration file %s" -msgstr "Opnar oppsettsfila %s" +msgid "You don't have enough free space in %s." +msgstr "Du har ikkje nok ledig plass i %s." -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Syntaksfeil %s:%u: Blokka startar utan namn." +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Det oppstod problem, og -y vart brukt utan --force-yes" -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Syntaksfeil %s:%u: Misforma tagg" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "" +"Trivial Only var spesifisert, men dette er ikkje noka triviell handling." -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Syntaksfeil %s:%u: Ekstra rot etter verdien" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Ja, gjer som eg seier!" -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "Syntaksfeil %s:%u: Direktiva kan berre liggja i det vste nivet" +#: apt-private/private-install.cc:222 +#, fuzzy, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Du er i ferd med utfra ei handling som kan vera skadeleg.\n" +"For halda fram, m du skriva nyaktig %s.\n" +" ?] " -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Syntaksfeil %s:%u: For mange nsta inkluderte filer" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Avbryt." -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Syntaksfeil %s:%u: Inkludert herifr" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Vil du halda fram?" -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Syntaksfeil %s:%u: Direktivet %s er ikkje sttta" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Klarte ikkje henta nokre av filene" -#: apt-pkg/contrib/configuration.cc:900 -#, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "Syntaksfeil %s:%u: Direktiva kan berre liggja i det vste nivet" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"Klarte ikkje henta nokre av arkiva. Du kan prva med apt-get update eller " +"--fix-missing." -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Syntaksfeil %s:%u: Ekstra rot til slutt i fila" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing og byte av medium er ikkje sttta for tida" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "Avbryt installasjon." +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Klarte ikkje retta opp manglande pakkar." -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Kjenner ikkje kommandolinjevalet %c (fr %s)." +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Avbryt installasjon." -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "Skjnar ikkje kommandolinjevalet %s" +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "Kommandolinjevalet %s er ikkje boolsk" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "Valet %s krev eit argument." +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Val %s: Spesifikasjonen av oppsettselementet m ha ein =<verdi>." +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Valet %s m ha eit heiltalsargument, ikkje %s" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Flgjande informasjon kan hjelpa med lysa situasjonen:" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Valet %s er for langt" +#: apt-private/private-install.cc:506 +#, fuzzy +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Intern feil. AllUpgrade ydelagde noko" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Skjnar ikkje %s. Prv true eller false." +#: apt-private/private-install.cc:513 +#, fuzzy +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "Dei flgjande NYE pakkane vil verta installerte:" +msgstr[1] "Dei flgjande NYE pakkane vil verta installerte:" -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "Ugyldig operasjon %s" +#: apt-private/private-install.cc:517 +#, fuzzy, c-format +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "Dei flgjande NYE pakkane vil verta installerte:" +msgstr[1] "Dei flgjande NYE pakkane vil verta installerte:" -#: cmdline/apt-cache.cc:149 -#, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Pakken %s versjon %s har eit krav som ikkje er oppfylt:\n" +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Tal p pakkenamn: " +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "" +"Du vil kanskje prva retta p desse ved kyra apt-get -f install." -#: cmdline/apt-cache.cc:279 -#, fuzzy -msgid "Total package structures: " -msgstr "Tal p pakkenamn: " +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"Nokre krav er ikkje oppfylte. Du kan prva apt-get -f install (eller velja " +"ei lysing)." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Vanlege pakkar: " +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"Nokre av pakkane kunne ikkje installerast. Dette kan koma av at du har\n" +"valt ein umogleg situasjon. Dersom du brukar den ustabile utgva av\n" +"distribusjonen, kan det g henda at nokre av pakkane som trengst ikkje\n" +"er laga enno eller at dei framleis ligg i Incoming." -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Reine virtuelle pakkar: " +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "ydelagde pakkar" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Enkle virtuelle pakkar: " +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Dei flgjande tilleggspakkane vil verta installerte:" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Samansette virtuelle pakkar: " +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Fresltte pakkar:" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Manglar: " +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Tilrdde pakkar" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Tal p einskildversjonar: " +#: apt-private/private-install.cc:825 +#, c-format +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "" +"Hoppar over %s, for den er installert fr fr og ikkje sett til " +"oppgradering.\n" -#: cmdline/apt-cache.cc:327 -#, fuzzy -msgid "Total distinct descriptions: " -msgstr "Tal p einskildversjonar: " +#: apt-private/private-install.cc:829 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"Hoppar over %s, for den er installert fr fr og ikkje sett til " +"oppgradering.\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Tal p krav: " +#: apt-private/private-install.cc:841 +#, c-format +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "%s kan ikkje installerast p nytt, for pakken kan ikkje lastast ned.\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Tal p ver./fil-forhold: " +#: apt-private/private-install.cc:846 +#, c-format +msgid "%s is already the newest version.\n" +msgstr "Den nyaste versjonen av %s er installert fr fr.\n" -#: cmdline/apt-cache.cc:334 -#, fuzzy -msgid "Total Desc/File relations: " -msgstr "Tal p ver./fil-forhold: " +#: apt-private/private-install.cc:894 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Vald versjon %s (%s) for %s\n" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Tal p tilbyr-forhold: " +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Vald versjon %s (%s) for %s\n" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Tal p strengar med jokerteikn: " - -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Storleik p kravs- og versjonsrom: " - -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Slingringsmon: " - -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Brukt plass i alt: " - -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Pakkefila %s er ute av takt." - -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Fann ingen pakkar" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "Pakken %s er ikkje installert, og vert difor ikkje fjerna\n" -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "Du m oppgi nyaktig eitt mnster" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Pakken %s er ikkje installert, og vert difor ikkje fjerna\n" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Pakkefiler:" +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Mellomlageret er ute av takt, kan ikkje x-referera ei pakkefil" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Rettar p krav ..." -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Spikra pakkar:" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " mislukkast." -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(ikkje funne)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Klarte ikkje retta p krav" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Installert: " +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Klarte ikkje minimera oppgraderingsmengda" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidat: " +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Ferdig" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ingen)" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "" +"Du vil kanskje prva retta p desse ved kyra apt-get -f install." -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Pakke spikra til: " +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Nokre krav er ikkje oppfylte. Prv med -f." -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Versjonstabell:" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s for %s %s kompilert p %s %s\n" +msgid "[installed,upgradable to: %s]" +msgstr " [Installert]" -#: cmdline/apt-cache.cc:1749 +#: apt-private/private-output.cc:238 #, fuzzy -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" -msgstr "" -"Bruk: apt-cache [val] kommando\n" -" apt-cache [val] add fil1 [fil2 ...]\n" -" apt-cache [val] showpkg pakke1 [pakke2 ...]\n" -" apt-cache [val] showsrc pakke1 [pakke2 ...]\n" -"\n" -"apt-cache er eit lgnivverkty som vert brukt til handtera\n" -"binrmellomlageret til APT, og til henta informasjon fr det.\n" -"\n" -"Kommandoar:\n" -" add - Legg ei fil til i kjeldelageret.\n" -" gencaches - Bygg opp lagera for bde pakkane og kjeldekoden.\n" -" showpkg - Vis overordna informasjon om ein enkelt pakke.\n" -" showsrc - Vis data om kjeldekoden.\n" -" stats - Vis ein enkel statistikk.\n" -" dump - Vis fila med lista over tilgjengelege pakkar i tett form.\n" -" dumpavail - Send heile lista over tilgjengelege pakkar til stdout.\n" -" unmet - Vis krav som ikkje er oppfylte.\n" -" search - Sk gjennom pakkelista etter eit regulrt uttrykk.\n" -" show - Vis ei oversikt over pakken.\n" -" depends - Vis r informasjon om krava til ein pakke.\n" -" rdepends - Vis baklengs kravinformasjon for ein pakke\n" -" pkgnames - Vis ei liste over alle pakkenamn.\n" -" dotty - Lag pakkegrafar for GraphViz.\n" -" xvcg - Lag pakkegrafar for xvcg\n" -" policy - Vis regelinnstillingar.\n" -"\n" -"Val:\n" -" -h Vis denne hjelpeteksten.\n" -" -p=? Pakkelageret.\n" -" -s=? Kjeldekodelageret.\n" -" -q Ikkje vis framdriftsmlaren.\n" -" -i Vis berre viktige krav for unmet-kommandoen.\n" -" -c=? Les denne oppsettsfila.\n" -" -o=? Set ei vilkrleg innstilling, t.d. -o dir::cache=/tmp.\n" -"Du finn meir informasjon p manualsidene apt-cache(8) og apt.conf(5).\n" +msgid "[installed,local]" +msgstr " [Installert]" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -#: cmdline/apt-cdrom.cc:91 +#: apt-private/private-output.cc:243 #, fuzzy -msgid "Please insert a Disc in the drive and press enter" -msgstr "" -"Skifte av medum: Set inn plata merkt\n" -" %s\n" -"i stasjonen %s og trykk Enter.\n" +msgid "[installed,automatic]" +msgstr " [Installert]" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Klarte ikkje endra namnet p %s til %s" +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Installert]" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" msgstr "" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Ikkje parvise argument" - -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -msgstr "" -"Bruk: apt-config [val] kommando\n" -"\n" -"apt-config er eit enkelt verkty for lesa oppsettsfila til APT.\n" -"\n" -"Kommandoar:\n" -" shell - Skalmodus\n" -" dump - Vis oppsettet\n" -"\n" -"Val:\n" -" -h Vis denne hjelpeteksten.\n" -" -c=? Les denne oppsettsfila.\n" -" -o=? Set ei vilkrleg innstilling, t.d. -o dir::cache=/tmp.\n" +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "men %s er installert" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Fann ikkje pakken %s" +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "men %s skal installerast" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Fann ikkje pakken %s" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "men lt seg ikkje installera" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Fann ikkje pakken %s" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "men er ein virtuell pakke" -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Klarte ikkje f status p kjeldepakkelista %s" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "men er ikkje installert" -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "men skal ikkje installerast" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "Fann ikkje pakken %s" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " eller" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, fuzzy, c-format -msgid "%s set to manually installed.\n" -msgstr "men %s skal installerast" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Flgjande pakkar har krav som ikkje er oppfylte:" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "men %s skal installerast" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Dei flgjande NYE pakkane vil verta installerte:" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Dei flgjande pakkane vil verta FJERNA:" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -#, fuzzy -msgid "Internal error, problem resolver broke stuff" -msgstr "Intern feil. AllUpgrade ydelagde noko" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Dei flgjande pakkane er haldne tilbake:" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Klarte ikkje lsa nedlastingskatalogen" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Dei flgjande pakkane vil verta oppgraderte:" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Du m velja minst in pakke som kjeldekoden skal hentast for" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Dei flgjande pakkane vil verta NEDGRADERTE:" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "Finn ingen kjeldepakke for %s" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Dei flgjande pakkane som er haldne tilbake vil verta endra:" -#: cmdline/apt-get.cc:786 +#: apt-private/private-output.cc:668 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" +msgid "%s (due to %s) " +msgstr "%s (fordi %s) " -#: cmdline/apt-get.cc:791 -#, c-format +#: apt-private/private-output.cc:676 +#, fuzzy msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" +"TVARING: Dei flgjande ndvendige pakkane vil verta fjerna.\n" +"Dette br IKKJE gjerast utan at du er fullstendig klar over kva du gjer!" -#: cmdline/apt-get.cc:843 -#, fuzzy, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Hoppar over utpakking av kjeldekode som er utpakka fr fr i %s\n" - -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 -#, fuzzy, c-format -msgid "Couldn't determine free space in %s" -msgstr "Du har ikkje nok ledig plass i %s" +#: apt-private/private-output.cc:707 +#, c-format +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu oppgraderte, %lu nyleg installerte, " -#: cmdline/apt-get.cc:882 +#: apt-private/private-output.cc:711 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Du har ikkje nok ledig plass i %s" +msgid "%lu reinstalled, " +msgstr "%lu installerte p nytt, " -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: apt-private/private-output.cc:713 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "M henta %sB/%sB med kjeldekodearkiv.\n" +msgid "%lu downgraded, " +msgstr "%lu nedgraderte, " -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 +#: apt-private/private-output.cc:715 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "M henta %sB med kjeldekodearkiv.\n" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu skal fjernast og %lu skal ikkje oppgraderast.\n" -#: cmdline/apt-get.cc:902 +#: apt-private/private-output.cc:719 #, c-format -msgid "Fetch source %s\n" -msgstr "Hent kjeldekode %s\n" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu ikkje fullstendig installerte eller fjerna.\n" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Klarte ikkje henta nokre av arkiva." +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[J/n]" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Nedlastinga er ferdig i nedlastingsmodus" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[j/N]" -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Hoppar over utpakking av kjeldekode som er utpakka fr fr i %s\n" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "J" + +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" -#: cmdline/apt-get.cc:962 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Utpakkingskommandoen %s mislukkast.\n" +msgid "Regex compilation error - %s" +msgstr "Regex-kompileringsfeil - %s" -#: cmdline/apt-get.cc:963 +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Oppdateringskommandoen tek ingen argument" + +#: apt-private/private-update.cc:90 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#: cmdline/apt-get.cc:991 +#: apt-private/private-show.cc:156 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Byggjekommandoen %s mislukkast.\n" - -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Barneprosessen mislukkast" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "Du m velja minst ein pakke som byggjekrava skal sjekkast for" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: cmdline/apt-get.cc:1054 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Klarte ikkje henta byggjekrav for %s" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "TVARING: Klarer ikkje autentisere desse pakkane." -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s har ingen byggjekrav.\n" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "Kravet %s for %s kan ikkje oppfyllast fordi pakken %s ikkje finst" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Nokre pakkar kunne ikkje bli autentisert" -#: cmdline/apt-get.cc:1289 -#, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "Kravet %s for %s kan ikkje oppfyllast fordi pakken %s ikkje finst" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Installer desse pakkane utan verifikasjon?" -#: cmdline/apt-get.cc:1312 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"Klarte ikkje oppfylla kravet %s for %s: Den installerte pakken %s er for ny" +msgid "Failed to fetch %s %s\n" +msgstr "Klarte ikkje henta %s %s\n" -#: cmdline/apt-get.cc:1351 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +msgid "Failed to parse %s. Edit again? " +msgstr "Klarte ikkje endra namnet p %s til %s" + +#: apt-private/private-sources.cc:70 +#, c-format +msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -"Kravet %s for %s kan ikkje oppfyllast fordi det ikkje finst nokon " -"tilgjengelege versjonar av pakken %s som oppfyller versjonskrava" -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "Kravet %s for %s kan ikkje oppfyllast fordi pakken %s ikkje finst" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: cmdline/apt-get.cc:1380 -#, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Klarte ikkje oppfylla kravet %s for %s: %s" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Reknar ut oppgradering ... " -#: cmdline/apt-get.cc:1395 -#, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Byggjekrav for %s kunne ikkje tilfredstillast." +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Ferdig" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Klarte ikkje behandla byggjekrava" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Treff " -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Koplar til %s (%s)" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Hent:" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Sttta modular:" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Feil " + +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Henta %sB p %s (%sB/s)\n" + +#: apt-private/acqprogress.cc:236 +#, c-format +msgid " [Working]" +msgstr " [Arbeider]" + +#: apt-private/acqprogress.cc:297 +#, c-format msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"Bruk: apt-get [val] kommando\n" -" apt-get [val] install|remove pakke1 [pakke2 ...]\n" -" apt-get [val] source pakke1 [pakke2 ...]\n" -"\n" -"apt-get er eit enkelt grensesnitt til bruk fr kommandolinja for lasta\n" -"ned og installera pakkar. Dei vanlegaste kommandoane er update og\n" -"install.\n" -"\n" -"Kommandoar:\n" -" update - Hent nye pakkelister.\n" -" upgrade - Utfr ei oppgradering.\n" -" install - Installer nye pakkar (bruk pakkenamn, ikkje filnamn (foo." -"deb)).\n" -" remove - Fjern pakkar.\n" -" source - Last ned kjeldekode fr arkiva.\n" -" build-dep - Oppfyll byggjekrava for kjeldepakkar.\n" -" dist-upgrade - Oppgrader distribusjonen, les apt-get(8).\n" -" dselect-upgrade - Flg rda fr dselect.\n" -" clean - Slett nedlasta arkivfiler.\n" -" autoclean - Slett gamle, nedlasta arkivfiler.\n" -" check - Stadfest at det ikkje finst krav som ikkje er oppfylte.\n" -"\n" -"Val:\n" -" -h Vis denne hjelpeteksten.\n" -" -q Ikkje vis framdriftsmtar, for bruk i loggar.\n" -" -qq Inga tilbakemelding - bortsett fr feilmeldingar.\n" -" -d Berre nedlasting - IKKJE installer eller pakk ut arkivfilene.\n" -" -s Skuggespel, berre simulering av handlingane.\n" -" -y Svar ja p alle sprsml utan stoppa.\n" -" -f Prv halda fram sjlv om integritetskontrollen mislukkast.\n" -" -m Prv halda fram sjlv om nokre pakkar ikkje vert funne.\n" -" -u Ta med oppgraderte pakkar i lista som vert vist.\n" -" -b Bygg pakken etter at kjeldekoden er henta.\n" -" -V Vis fullstendige versjonsnummer.\n" -" -c=? Les denne innstillingsfila.\n" -" -o=? Set ei vilkrleg innstilling, t.d. -o dir::cache=/tmp.\n" -"Du finn meir informasjon og fleire kommandolinjeval p manualsidene\n" -"til apt-get(8), sources.list(5) og apt.conf(5).\n" -" APT har superku-krefter.\n" +"Skifte av medum: Set inn plata merkt\n" +" %s\n" +"i stasjonen %s og trykk Enter.\n" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Du m velja minst in pakke som kjeldekoden skal hentast for" +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 +#, c-format +msgid "Unable to read %s" +msgstr "Klarte ikkje lesa %s" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 +#, c-format +msgid "Unable to change to %s" +msgstr "Klarte ikkje byta til %s" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 +#, c-format +msgid "No mirror file '%s' found " msgstr "" -#: cmdline/apt-mark.cc:68 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "men er ikkje installert" +msgid "Can not read mirror file '%s'" +msgstr "Klarte ikkje opna fila %s" -#: cmdline/apt-mark.cc:74 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "men %s skal installerast" +msgid "No entry found in mirror file '%s'" +msgstr "Klarte ikkje opna fila %s" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "men %s skal installerast" +#: methods/mirror.cc:445 +#, c-format +msgid "[Mirror: %s]" +msgstr "" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "Den nyaste versjonen av %s er installert fr fr.\n" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Klarte ikkje oppretta IPC-ryr til underprosessen" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "Den nyaste versjonen av %s er installert fr fr.\n" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Sambandet vart uventa stengd" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "men %s skal installerast" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Drleg standardinnstilling" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Klarte ikkje opna %s" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Trykk Enter for halda fram." -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" msgstr "" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" +#: dselect/install:102 +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Nokre feil oppstod ved utpakking. Dei installerte pakkane vert no" -#: cmdline/apt.cc:47 +#: dselect/install:103 +#, fuzzy +msgid "will be configured. This may result in duplicate errors" +msgstr "sette opp. Dette kan fra til flgjefeil eller feil p grunn av" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "krav som ikkje er oppfylte. Det gjer ikkje noko, berre feila ovanfor" + +#: dselect/install:105 msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "er viktige. Rett opp dei feila og [i]nstaller p nytt." -#: methods/cdrom.cc:203 +#: dselect/update:30 +msgid "Merging available information" +msgstr "Flettar informasjon om tilgjengelege pakkar" + +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode vart kalla p ein node som framleis er lenkja" + +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Fann ikkje nkkelelementet." + +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Klarte ikkje tildela avleiing" + +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Intern feil i AddDiversion" + +#: apt-inst/filelist.cc:477 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Klarte ikkje lesa CD-ROM-databasen %s" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Prver skriva over ei avleiing, %s -> %s og %s/%s" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"Bruk apt-cdrom for gjera denne CD-plata tilgjengeleg for APT. Du kan " -"ikkje bruka apt-get update til leggja til nye CD-plater." +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "Dobbel tilleggjing av avleiing %s -> %s" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Feil CD-plate" +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "Dobbel oppsettsfil %s/%s" -#: methods/cdrom.cc:249 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "" -"Klarte ikkje montera CD-plata i %s. Det kan henda plata framleis er i bruk." +msgid "The path %s is too long" +msgstr "Stigen %s er for lang" -#: methods/cdrom.cc:254 -#, fuzzy -msgid "Disk not found." -msgstr "Fann ikkje fila" +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" +msgstr "Pakkar ut %s meir enn in gong" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Fann ikkje fila" +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "Katalogen %s er avleidd" + +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Pakken prver skriva til avleiingsmlet %s/%s" + +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Avleiingsstigen er for lang" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 +#, c-format +msgid "Failed to stat %s" +msgstr "Klarte ikkje f status til %s" + +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Klarte ikkje endra namnet p %s til %s" + +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "Katalogen %s vert bytt ut med ein ikkje-katalog" + +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Fann ikkje noden i nkkelbtta" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Stigen er for lang" + +#: apt-inst/extract.cc:421 +#, c-format +msgid "Overwrite package match with no version for %s" +msgstr "Skriv over pakketreff utan versjon for %s" + +#: apt-inst/extract.cc:438 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Fila %s/%s skriv over den tilsvarande fila i pakken %s" + +#: apt-inst/extract.cc:498 +#, c-format +msgid "Unable to stat %s" +msgstr "Klarte ikkje f status til %s" + +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, fuzzy, c-format +msgid "Failed to write file %s" +msgstr "Klarte ikkje skriva fila %s" + +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "Klarte ikkje lukka fila %s" + +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Dette er ikkje eit gyldig DEB-arkiv, manglar %s-medlemmen" + +#: apt-inst/deb/debfile.cc:132 +#, c-format +msgid "Internal error, could not locate member %s" +msgstr "Intern feil, fann ikkje medlemmen %s" + +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Kontrollfila kan ikkje tolkast" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Ugyldig arkivsignatur" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Feil ved lesing av arkivmedlemshovud" + +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Ugyldig arkivmedlemshovud" + +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Ugyldig arkivmedlemshovud" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Klarte ikkje f status" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Arkivet er for kort" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Klarte ikkje setja endringstidspunkt" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Klarte ikkje lesa arkivhovuda" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Ugyldig URI. Lokale URI-ar kan ikkje starta med //" +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Klarte ikkje oppretta ryr" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Loggar inn" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Klarte ikkje kyra gzip " -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Klarte ikkje avgjera namnet p motparten" +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "ydelagt arkiv" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Klarte ikkje avgjera det lokale namnet" +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar-sjekksummen mislukkast, arkivet er ydelagt" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Tenaren nekta oss kopla til, og sa: %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Ukjend TAR-hovud type %u, medlem %s" -#: methods/ftp.cc:225 +#: apt-pkg/install-progress.cc:57 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER mislukkast, tenaren sa: %s" +msgid "Progress: [%3i%%]" +msgstr "" -#: methods/ftp.cc:232 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" + +#: apt-pkg/init.cc:146 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS mislukkast, tenaren sa: %s" +msgid "Packaging system '%s' is not supported" +msgstr "Pakkesystemet %s er ikkje sttta" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"Ein mellomtenar er oppgitt, men ikkje noko innloggingsskript. Feltet " -"Acquire::ftp::ProxyLogin er tomt." +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Klarte ikkje avgjera ein eigna pakkesystemtype" -#: methods/ftp.cc:280 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Kommandoen %s i innlogginsskriptet mislukkast, tenaren sa: %s" +msgid "Wrote %i records.\n" +msgstr "Skreiv %i postar.\n" -#: methods/ftp.cc:306 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE mislukkast, tenaren sa: %s" +msgid "Wrote %i records with %i missing files.\n" +msgstr "Skreiv %i postar med %i manglande filer.\n" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Tidsavbrot p samband" +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Skreiv %i postar med %i filer som ikkje passa\n" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Tenaren lukka sambandet" +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "Skreiv %i postar med %i manglande filer og %i filer som ikkje passa\n" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Eit svar flaumde over bufferen." +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protokollydeleggjing" +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "Feil MD5-sum" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Klarte ikkje oppretta sokkel" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Klarte ikkje tolka eller opna pakkelista eller tilstandsfila." -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Klarte ikkje kopla til datasokkel, tidsavbrot p sambandet" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "" +"Du vil kanskje prva retta p desse problema ved kyra apt-get update." -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Mislukkast" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Kjeldelista kan ikkje lesast." -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Klarte ikkje kopla til passiv sokkel." +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Tomt pakkelager" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo klarte ikkje oppretta ein lyttesokkel" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Pakkelagerfila er ydelagd" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Klarte ikkje binda til sokkel" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Versjonen til pakkelagerfila er ikkje kompatibel" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Klarte ikkje lytta til sokkel" +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "Pakkelagerfila er ydelagd" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Klarte ikkje avgjera sokkelnamnet" +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "APT stttar ikkje versjonssystemet %s" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Klarte ikkje senda PORT-kommandoen" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Pakkelageret er bygd for ein annan arkitektur" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Ukjend adressefamilie %u (AF_*)" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Krav" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT mislukkast, tenaren sa: %s" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Forkrav" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Tidsavbrot p tilkopling til datasokkel" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Forslag" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Klarte ikkje godta tilkoplinga" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Tilrdingar" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problem ved oppretting av nkkel for fil" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Konflikt" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Klarte ikkje henta fila, tenaren sa %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Byter ut" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Tidsavbrot p datasokkelen" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Foreldar" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Dataoverfringa mislukkast, tenaren sa %s" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Sprjing" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Klarte ikkje starta " +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "viktig" -#: methods/connect.cc:76 -#, c-format -msgid "Connecting to %s (%s)" -msgstr "Koplar til %s (%s)" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "pkravd" -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "vanleg" -#: methods/connect.cc:94 -#, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Klarte ikkje oppretta sokkel for %s (f=%u t=%u p=%u)" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "valfri" + +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "tillegg" -#: methods/connect.cc:100 +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Klarte ikkje initiera sambandet til %s:%s (%s)." +msgid "The method driver %s could not be found." +msgstr "Finn ikkje metodedrivaren %s." -#: methods/connect.cc:108 +#: apt-pkg/acquire-worker.cc:118 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Klarte ikkje kopla til %s:%s (%s), tidsavbrot p sambandet" +msgid "Is the package %s installed?" +msgstr "" -#: methods/connect.cc:126 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Klarte ikkje kopla til %s:%s (%s)." +msgid "Method %s did not start correctly" +msgstr "Metoden %s starta ikkje rett" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 -#, c-format -msgid "Connecting to %s" -msgstr "Koplar til %s" +#: apt-pkg/acquire-worker.cc:455 +#, fuzzy, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Skifte av medum: Set inn plata merkt\n" +" %s\n" +"i stasjonen %s og trykk Enter.\n" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Could not resolve '%s'" -msgstr "Klarte ikkje sl opp %s" +msgid "Index file type '%s' is not supported" +msgstr "Indeksfiltypen %s er ikkje sttta" -#: methods/connect.cc:205 -#, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Mellombels feil ved oppslag av %s" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Byggjer kravtre" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Det hende noko dumt ved oppslag av %s:%s (%i)" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Kandidatversjonar" -#: methods/connect.cc:211 +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Genererer kravforhold" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +#, fuzzy +msgid "Reading state information" +msgstr "Flettar informasjon om tilgjengelege pakkar" + +#: apt-pkg/depcache.cc:250 #, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Det hende noko dumt ved oppslag av %s:%s (%i)" +msgid "Failed to open StateFile %s" +msgstr "Klarte ikkje opna %s" -#: methods/connect.cc:258 +#: apt-pkg/depcache.cc:256 #, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Klarte ikkje kopla til %s %s:" +msgid "Failed to write temporary StateFile %s" +msgstr "Klarte ikkje skriva fila %s" -#: methods/gpgv.cc:168 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "endring av namn mislukkast, %s (%s -> %s)." + +#: apt-pkg/acquire-item.cc:163 +#, fuzzy +msgid "Hash Sum mismatch" +msgstr "Feil MD5-sum" + +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Feil storleik" + +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Ugyldig operasjon %s" + +#: apt-pkg/acquire-item.cc:1573 +#, c-format msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "" +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Klarte ikkje tolka pakkefila %s (1)" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" msgstr "" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1669 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -#, fuzzy -msgid "The following signatures were invalid:\n" -msgstr "Dei flgjande tilleggspakkane vil verta installerte:" - -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1721 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Feil ved skriving til fila" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Feil ved lesing fr tenaren. Sambandet vart lukka i andre enden" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Feil ved lesing fr tenaren" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Feil ved skriving til fil" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Utvalet mislukkast" - -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Tidsavbrot p sambandet" +#: apt-pkg/acquire-item.cc:1859 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"Fann ikkje fila for pakken %s. Det kan henda du m fiksa denne pakken sjlv " +"(fordi arkitekturen manglar)." -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Feil ved skriving til utfil" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Ventar p hovud" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Pakkeindeksfilene er ydelagde. Feltet Filename: manglar for pakken %s." -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "ydelagd hovudlinje" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Indeksfiltypen %s er ikkje sttta" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP-tenaren sende eit ugyldig svarhovud" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Klarte ikkje f status p %s." -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP-tenaren sende eit ugyldig Content-Length-hovud" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Mellomlageret brukar eit inkompatibelt versjonssystem" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP-tenaren sende eit ugyldig Content-Range-hovud" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Feil ved behandling av %s (FindPkg)" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Denne HTTP-tenaren har ydelagd sttte for omrde" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "Jss, du har overgtt talet p pakkenamn som APT kan handtera." -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Ukjend datoformat" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Jss, du har overgtt talet p versjonar som APT kan handtera." -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "ydelagde hovuddata" +#: apt-pkg/pkgcachegen.cc:263 +#, fuzzy +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Jss, du har overgtt talet p versjonar som APT kan handtera." -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Sambandet mislukkast" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "Jss, du har overgtt talet p krav som APT kan handtera." -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Intern feil" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Fann ikkje pakken %s %s ved behandling av filkrav" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Reknar ut oppgradering ... " +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Klarte ikkje f status p kjeldepakkelista %s" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Ferdig" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Les pakkelister" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Samlar inn filtilbod" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Klarte ikkje skriva til %s" -#: apt-private/private-list.cc:164 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "IU-feil ved lagring av kjeldelager" + +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Vendor block %s contains no fingerprint" +msgstr "Utgjevarblokka %s inneheld ingen fingeravtrykk" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Rettar p krav ..." +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "Listekatalogen %spartial manglar." -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " mislukkast." +#: apt-pkg/acquire.cc:91 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "Arkivkatalogen %spartial manglar." -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Klarte ikkje retta p krav" +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "Klarte ikkje lsa listekatalogen" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Klarte ikkje minimera oppgraderingsmengda" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Ferdig" +#: apt-pkg/acquire.cc:904 +#, fuzzy, c-format +msgid "Retrieving file %li of %li" +msgstr "Les filliste" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"Du vil kanskje prva retta p desse ved kyra apt-get -f install." +"Klarte ikkje lasta ned nokre av indeksfilene. Dei er ignorerte, eller gamle " +"filer er brukte i staden." -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Nokre krav er ikkje oppfylte. Prv med -f." +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Du m leggja nokre kjelde-URI-ar i fila sources.list." -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -#: apt-private/private-output.cc:234 +#: apt-pkg/policy.cc:422 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Installert]" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Ugyldig oppslag i innstillingsfila, manglar pakkehovud" -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [Installert]" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Skjnar ikkje spikringstypen %s" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Ingen prioritet (eller null) oppgitt for spiker" -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Installert]" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Installert]" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Klarte ikkje opna fila %s" -#: apt-private/private-output.cc:249 +#: apt-pkg/packagemanager.cc:630 #, c-format -msgid "[upgradable from: %s]" +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." msgstr "" +"Denne installasjonen vil verta nydd til mellombels fjerna den ndvendige " +"pakken %s p grunn av ei konflikt/forkrav-lkkje. Dette er ofte uheldig, men " +"om du verkeleg vil gjera det, kan du bruka innstillinga APT::Force-" +"LoopBreak." -#: apt-private/private-output.cc:253 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "Linja %u i kjeldelista %s er for lang." -#: apt-private/private-output.cc:435 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Avmonterer CD-ROM ...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "but %s is installed" -msgstr "men %s er installert" +msgid "Using CD-ROM mount point %s\n" +msgstr "Brukar monteringspunktet %s for CD-ROM\n" -#: apt-private/private-output.cc:437 +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Ventar p disk ...\n" + +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Monterer CD-ROM ...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identifiserer ... " + +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "but %s is to be installed" -msgstr "men %s skal installerast" +msgid "Stored label: %s\n" +msgstr "Lagra etikett: %s \n" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "men lt seg ikkje installera" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Leitar etter indeksfiler p disken ...\n" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "men er ein virtuell pakke" +#: apt-pkg/cdrom.cc:734 +#, fuzzy, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "Fann %i pakkeindeksar, %i kjeldeindeksar og %i signaturar\n" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "men er ikkje installert" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "men skal ikkje installerast" +#: apt-pkg/cdrom.cc:771 +#, fuzzy, c-format +msgid "Found label '%s'\n" +msgstr "Lagra etikett: %s \n" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " eller" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Det er ikkje eit gyldig namn, prv igjen.\n" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Flgjande pakkar har krav som ikkje er oppfylte:" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Disken vert kalla: \n" +"%s\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Dei flgjande NYE pakkane vil verta installerte:" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopierer pakkelister ..." -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Dei flgjande pakkane vil verta FJERNA:" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Skriv ny kjeldeliste\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Kjeldelisteoppfringar for denne disken er:\n" + +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "Pakken %s m installerast p nytt, men arkivet finst ikkje." + +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Feil, pkgProblemResolver::Resolve har laga brot. Dette kan skuldast pakkar " +"som er haldne tilbake." -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Dei flgjande pakkane er haldne tilbake:" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "" +"Klarte ikkje retta opp problema. Nokre ydelagde pakkar er haldne tilbake." -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Dei flgjande pakkane vil verta oppgraderte:" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Dei flgjande pakkane vil verta NEDGRADERTE:" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Dei flgjande pakkane som er haldne tilbake vil verta endra:" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: apt-private/private-output.cc:668 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (fordi %s) " +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: apt-private/private-output.cc:676 -#, fuzzy -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" msgstr "" -"TVARING: Dei flgjande ndvendige pakkane vil verta fjerna.\n" -"Dette br IKKJE gjerast utan at du er fullstendig klar over kva du gjer!" -#: apt-private/private-output.cc:707 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu oppgraderte, %lu nyleg installerte, " +msgid "Unable to parse package file %s (1)" +msgstr "Klarte ikkje tolka pakkefila %s (1)" -#: apt-private/private-output.cc:711 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu installerte p nytt, " +msgid "Unable to parse package file %s (2)" +msgstr "Klarte ikkje tolka pakkefila %s (2)" -#: apt-private/private-output.cc:713 -#, c-format -msgid "%lu downgraded, " -msgstr "%lu nedgraderte, " +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "Klarte ikkje tolka pakkefila %s (1)" -#: apt-private/private-output.cc:715 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu skal fjernast og %lu skal ikkje oppgraderast.\n" +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "Merk, vel %s i staden for %s\n" -#: apt-private/private-output.cc:719 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu ikkje fullstendig installerte eller fjerna.\n" +msgid "No Hash entry in Release file %s" +msgstr "" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[J/n]" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Ugyldig linje i avleiingsfila: %s" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[j/N]" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Klarte ikkje tolka pakkefila %s (1)" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "J" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Misforma linje %lu i kjeldelista %s (URI-tolking)" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "N" +#: apt-pkg/sourcelist.cc:170 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Oppdateringskommandoen tek ingen argument" +#: apt-pkg/sourcelist.cc:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Misforma linje %lu i kjeldelista %s (dist)" -#: apt-private/private-update.cc:90 -#, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/sourcelist.cc:184 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: apt-pkg/sourcelist.cc:190 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)" -#: apt-private/private-show.cc:156 -#, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/sourcelist.cc:193 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Misforma linje %lu i kjeldelista %s (URI)" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Misforma linje %lu i kjeldelista %s (dist)" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Nokre pakkar m fjernast, men fjerning er sltt av." +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Misforma linje %lu i kjeldelista %s (URI-tolking)" -#: apt-private/private-install.cc:110 -#, fuzzy -msgid "Internal error, Ordering didn't finish" -msgstr "Intern feil ved tilleggjing av avleiing" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Misforma linje %lu i kjeldelista %s (absolutt dist)" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "M henta %sB/%sB med arkiv.\n" +msgid "Opening %s" +msgstr "Opnar %s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "M henta %sB med arkiv.\n" +msgid "Malformed line %u in source list %s (type)" +msgstr "Misforma linje %u i kjeldelista %s (type)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:375 #, fuzzy, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Etter utpakking vil %sB meir diskplass verta brukt.\n" +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Typen %s er ukjend i linja %u i kjeldelista %s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/sourcelist.cc:416 #, fuzzy, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Etter utpakking vil %sB meir diskplass verta frigjort.\n" +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Typen %s er ukjend i linja %u i kjeldelista %s" -#: apt-private/private-install.cc:200 +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Du har ikkje nok ledig plass i %s." - -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Det oppstod problem, og -y vart brukt utan --force-yes" - -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "" -"Trivial Only var spesifisert, men dette er ikkje noka triviell handling." +msgid "Release '%s' for '%s' was not found" +msgstr "Fann ikkje utgva %s av %s" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Ja, gjer som eg seier!" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Fann ikkje versjonen %s av %s" -#: apt-private/private-install.cc:222 +#: apt-pkg/cacheset.cc:603 #, fuzzy, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Du er i ferd med utfra ei handling som kan vera skadeleg.\n" -"For halda fram, m du skriva nyaktig %s.\n" -" ?] " +msgid "Couldn't find task '%s'" +msgstr "Fann ikkje pakken %s" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Avbryt." +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Fann ikkje pakken %s" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Vil du halda fram?" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Fann ikkje pakken %s" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Klarte ikkje henta nokre av filene" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" -#: apt-private/private-install.cc:320 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Klarte ikkje henta nokre av arkiva. Du kan prva med apt-get update eller " -"--fix-missing." -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing og byte av medium er ikkje sttta for tida" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Klarte ikkje retta opp manglande pakkar." +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Avbryt installasjon." +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -msgstr[1] "" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" msgstr "" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" msgstr "" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" msgstr "" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "Flgjande informasjon kan hjelpa med lysa situasjonen:" +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "Fann ikkje utvalet %s" -#: apt-private/private-install.cc:506 -#, fuzzy -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Intern feil. AllUpgrade ydelagde noko" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Brukar ikkje lsing for den skrivebeskytta lsefila %s" -#: apt-private/private-install.cc:513 -#, fuzzy -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "Dei flgjande NYE pakkane vil verta installerte:" -msgstr[1] "Dei flgjande NYE pakkane vil verta installerte:" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Klarte ikkje opna lsefila %s" -#: apt-private/private-install.cc:517 -#, fuzzy, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "Dei flgjande NYE pakkane vil verta installerte:" -msgstr[1] "Dei flgjande NYE pakkane vil verta installerte:" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Brukar ikkje lsing for den nfs-monterte lsefila %s" -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Klarte ikkje lsa %s" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -"Du vil kanskje prva retta p desse ved kyra apt-get -f install." -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -"Nokre krav er ikkje oppfylte. Du kan prva apt-get -f install (eller velja " -"ei lysing)." -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -"Nokre av pakkane kunne ikkje installerast. Dette kan koma av at du har\n" -"valt ein umogleg situasjon. Dersom du brukar den ustabile utgva av\n" -"distribusjonen, kan det g henda at nokre av pakkane som trengst ikkje\n" -"er laga enno eller at dei framleis ligg i Incoming." - -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "ydelagde pakkar" - -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Dei flgjande tilleggspakkane vil verta installerte:" - -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Fresltte pakkar:" - -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Tilrdde pakkar" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:421 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"Hoppar over %s, for den er installert fr fr og ikkje sett til " -"oppgradering.\n" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Underprosessen %s mottok ein segmenteringsfeil." + +#: apt-pkg/contrib/fileutl.cc:826 #, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"Hoppar over %s, for den er installert fr fr og ikkje sett til " -"oppgradering.\n" +msgid "Sub-process %s received signal %u." +msgstr "Underprosessen %s mottok ein segmenteringsfeil." -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "%s kan ikkje installerast p nytt, for pakken kan ikkje lastast ned.\n" +msgid "Sub-process %s returned an error code (%u)" +msgstr "Underprosessen %s returnerte ein feilkode (%u)" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "%s is already the newest version.\n" -msgstr "Den nyaste versjonen av %s er installert fr fr.\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "Underprosessen %s avslutta uventa" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:913 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Vald versjon %s (%s) for %s\n" +msgid "Problem closing the gzip file %s" +msgstr "Problem ved lsing av fila" -#: apt-private/private-install.cc:899 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Vald versjon %s (%s) for %s\n" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Klarte ikkje opna fila %s" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "Pakken %s er ikkje installert, og vert difor ikkje fjerna\n" +msgid "Could not open file descriptor %d" +msgstr "Klarte ikkje opna ryr for %s" -#: apt-private/private-install.cc:947 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Pakken %s er ikkje installert, og vert difor ikkje fjerna\n" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Klarte ikkje oppretta underprosessen IPC" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Klarte ikkje kyra komprimeringa " -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "TVARING: Klarer ikkje autentisere desse pakkane." +#: apt-pkg/contrib/fileutl.cc:1514 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "lese, har framleis %lu att lesa, men ingen att" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "skrive, har framleis %lu att skrive, men klarte ikkje" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Nokre pakkar kunne ikkje bli autentisert" +#: apt-pkg/contrib/fileutl.cc:1915 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Problem ved lsing av fila" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Installer desse pakkane utan verifikasjon?" +#: apt-pkg/contrib/fileutl.cc:1927 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Problem ved synkronisering av fila" -#: apt-private/private-sources.cc:58 +#: apt-pkg/contrib/fileutl.cc:1938 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Klarte ikkje endra namnet p %s til %s" +msgid "Problem unlinking the file %s" +msgstr "Problem ved oppheving av lenkje til fila" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Problem ved synkronisering av fila" + +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%c%s... Error!" +msgstr "%c%s ... Feil" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s ... Ferdig" + +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Treff " +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s ... Ferdig" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Hent:" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Kan ikkje utfra mmap p ei tom fil" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Klarte ikkje opna ryr for %s" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Feil " +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Klarte ikkje laga mmap av %lu byte" -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Henta %sB p %s (%sB/s)\n" +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Klarte ikkje opna %s" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "Klarte ikkje starta " + +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid " [Working]" -msgstr " [Arbeider]" +msgid "Couldn't make mmap of %lu bytes" +msgstr "Klarte ikkje laga mmap av %lu byte" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/mmap.cc:322 +#, fuzzy +msgid "Failed to truncate file" +msgstr "Klarte ikkje skriva fila %s" + +#: apt-pkg/contrib/mmap.cc:341 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -"Skifte av medum: Set inn plata merkt\n" -" %s\n" -"i stasjonen %s og trykk Enter.\n" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "No mirror file '%s' found " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Klarte ikkje opna fila %s" - -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Klarte ikkje opna fila %s" - -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Klarte ikkje oppretta IPC-ryr til underprosessen" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Sambandet vart uventa stengd" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Drleg standardinnstilling" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Klarte ikkje f status til monteringspunktet %s" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Trykk Enter for halda fram." +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Klarte ikkje f status til CD-ROM" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "" +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Ukjend typeforkorting: %c" -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Nokre feil oppstod ved utpakking. Dei installerte pakkane vert no" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Opnar oppsettsfila %s" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "sette opp. Dette kan fra til flgjefeil eller feil p grunn av" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntaksfeil %s:%u: Blokka startar utan namn." -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "krav som ikkje er oppfylte. Det gjer ikkje noko, berre feila ovanfor" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntaksfeil %s:%u: Misforma tagg" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "er viktige. Rett opp dei feila og [i]nstaller p nytt." +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntaksfeil %s:%u: Ekstra rot etter verdien" -#: dselect/update:30 -msgid "Merging available information" -msgstr "Flettar informasjon om tilgjengelege pakkar" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "Syntaksfeil %s:%u: Direktiva kan berre liggja i det vste nivet" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode vart kalla p ein node som framleis er lenkja" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntaksfeil %s:%u: For mange nsta inkluderte filer" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Fann ikkje nkkelelementet." +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntaksfeil %s:%u: Inkludert herifr" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Klarte ikkje tildela avleiing" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntaksfeil %s:%u: Direktivet %s er ikkje sttta" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Intern feil i AddDiversion" +#: apt-pkg/contrib/configuration.cc:900 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "Syntaksfeil %s:%u: Direktiva kan berre liggja i det vste nivet" -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/configuration.cc:950 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Prver skriva over ei avleiing, %s -> %s og %s/%s" +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Syntaksfeil %s:%u: Ekstra rot til slutt i fila" -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Dobbel tilleggjing av avleiing %s -> %s" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "Avbryt installasjon." -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Dobbel oppsettsfil %s/%s" +msgid "Command line option '%c' [from %s] is not known." +msgstr "Kjenner ikkje kommandolinjevalet %c (fr %s)." -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 #, c-format -msgid "The path %s is too long" -msgstr "Stigen %s er for lang" +msgid "Command line option %s is not understood" +msgstr "Skjnar ikkje kommandolinjevalet %s" -#: apt-inst/extract.cc:132 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format -msgid "Unpacking %s more than once" -msgstr "Pakkar ut %s meir enn in gong" +msgid "Command line option %s is not boolean" +msgstr "Kommandolinjevalet %s er ikkje boolsk" -#: apt-inst/extract.cc:142 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "The directory %s is diverted" -msgstr "Katalogen %s er avleidd" +msgid "Option %s requires an argument." +msgstr "Valet %s krev eit argument." -#: apt-inst/extract.cc:152 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Pakken prver skriva til avleiingsmlet %s/%s" +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Val %s: Spesifikasjonen av oppsettselementet m ha ein =<verdi>." -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Avleiingsstigen er for lang" +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Valet %s m ha eit heiltalsargument, ikkje %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Failed to stat %s" -msgstr "Klarte ikkje f status til %s" +msgid "Option '%s' is too long" +msgstr "Valet %s er for langt" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Klarte ikkje endra namnet p %s til %s" +msgid "Sense %s is not understood, try true or false." +msgstr "Skjnar ikkje %s. Prv true eller false." -#: apt-inst/extract.cc:249 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Katalogen %s vert bytt ut med ein ikkje-katalog" +msgid "Invalid operation %s" +msgstr "Ugyldig operasjon %s" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Fann ikkje noden i nkkelbtta" +#: apt-pkg/deb/dpkgpm.cc:95 +#, fuzzy, c-format +msgid "Installing %s" +msgstr " Installert: " -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Stigen er for lang" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, fuzzy, c-format +msgid "Configuring %s" +msgstr "Koplar til %s" -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Skriv over pakketreff utan versjon for %s" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, fuzzy, c-format +msgid "Removing %s" +msgstr "Opnar %s" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "Klarte ikkje fjerna %s" + +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Fila %s/%s skriv over den tilsvarande fila i pakken %s" +msgid "Noting disappearance of %s" +msgstr "" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Unable to stat %s" -msgstr "Klarte ikkje f status til %s" +msgid "Running post-installation trigger %s" +msgstr "" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, fuzzy, c-format -msgid "Failed to write file %s" -msgstr "Klarte ikkje skriva fila %s" +msgid "Directory '%s' missing" +msgstr "Listekatalogen %spartial manglar." -#: apt-inst/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "Klarte ikkje lukka fila %s" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "Klarte ikkje opna fila %s" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 -#, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Dette er ikkje eit gyldig DEB-arkiv, manglar %s-medlemmen" +#: apt-pkg/deb/dpkgpm.cc:989 +#, fuzzy, c-format +msgid "Preparing %s" +msgstr "Opnar %s" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:990 +#, fuzzy, c-format +msgid "Unpacking %s" +msgstr "Opnar %s" + +#: apt-pkg/deb/dpkgpm.cc:995 +#, fuzzy, c-format +msgid "Preparing to configure %s" +msgstr "Opnar oppsettsfila %s" + +#: apt-pkg/deb/dpkgpm.cc:997 +#, fuzzy, c-format +msgid "Installed %s" +msgstr " Installert: " + +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Intern feil, fann ikkje medlemmen %s" +msgid "Preparing for removal of %s" +msgstr "" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Kontrollfila kan ikkje tolkast" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, fuzzy, c-format +msgid "Removed %s" +msgstr "Tilrdingar" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Ugyldig arkivsignatur" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, fuzzy, c-format +msgid "Preparing to completely remove %s" +msgstr "Opnar oppsettsfila %s" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Feil ved lesing av arkivmedlemshovud" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, fuzzy, c-format +msgid "Completely removed %s" +msgstr "Klarte ikkje fjerna %s" -#: apt-inst/contrib/arfile.cc:96 +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Ugyldig arkivmedlemshovud" +msgid "Can not write log (%s)" +msgstr "Klarte ikkje skriva til %s" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Ugyldig arkivmedlemshovud" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arkivet er for kort" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Klarte ikkje lesa arkivhovuda" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Klarte ikkje oppretta ryr" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Klarte ikkje kyra gzip " +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "ydelagt arkiv" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar-sjekksummen mislukkast, arkivet er ydelagt" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Ukjend TAR-hovud type %u, medlem %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Klarte ikkje lsa listekatalogen" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/pl.po b/po/pl.po index 916949180..3a2bdab05 100644 --- a/po/pl.po +++ b/po/pl.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.3\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2012-07-28 21:53+0200\n" "Last-Translator: Michał Kułach <michal.kulach@gmail.com>\n" "Language-Team: Polish <debian-l10n-polish@lists.debian.org>\n" @@ -23,3280 +23,3281 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "Plik indeksu typu \"%s\" nie jest obsługiwany" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "Nie można czytać %s" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Nie udało się przejść do %s" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "Nie udało się wykonać operacji stat na pliku %s." - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" - -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Uruchamianie dpkg" - -#: apt-pkg/init.cc:146 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "System pakietów \"%s\" nie jest obsługiwany" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Nie udało się określić odpowiedniego typu systemu pakietów" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Pakiet %s w wersji %s ma niespełnione zależności:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Zapisano %i rekordów.\n" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Liczba nazw pakietów: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Zapisano %i rekordów z %i brakującymi plikami.\n" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Liczba wszystkich typów pakietów: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Zapisano %i rekordów z %i niepasującymi plikami\n" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Zwykłych pakietów: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "Zapisano %i rekordów z %i brakującymi plikami i %i niepasującymi\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Czysto wirtualnych pakietów: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "Nie udało się znaleźć wpisu uwierzytelnienia dla: %s" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Pojedynczych pakietów wirtualnych: " -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "Błędna suma kontrolna dla: %s" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Mieszanych pakietów wirtualnych: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Nie udało się odnaleźć sterownika metody %s." +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Brakujących: " -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Proszę sprawdzić czy pakiet \"dpkg-dev\" jest zainstalowany.\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "W sumie różnych wersji: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Metoda %s nie uruchomiła się poprawnie" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "W sumie różnych opisów: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Proszę włożyć do napędu \"%s\" dysk o nazwie: \"%s\" i nacisnąć enter." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "W sumie zależności: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Nie udało się otworzyć lub zanalizować zawartości list pakietów." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "W sumie zależności wersja/plik: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Należy uruchomić apt-get update aby naprawić te problemy." +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "W sumie zależności opis/plik: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Nie udało się odczytać list źródeł." +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "W sumie mapowań zapewnień: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Pusty magazyn podręczny pakietów" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "W sumie dopasowanych napisów: " -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Magazyn podręczny pakietów jest uszkodzony" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Sumaryczny rozmiar obszaru zależności od wersji: " -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Magazyn podręczny pakietów jest w niezgodnej wersji" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Sumaryczny rozmiar niewykorzystanego miejsca: " -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Magazyn podręczny pakietów jest uszkodzony - jest zbyt mały" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Całkowity rozmiar: " -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Ta wersja APT nie obsługuje systemu wersji \"%s\"" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Ten magazyn podręczny pakietów został zbudowany dla innej architektury" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Wymaga" +msgid "Package file %s is out of sync." +msgstr "Plik pakietu %s jest przestarzały." -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Wymaga wstępnie" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Nie znaleziono żadnych pakietów" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Sugeruje" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Należy podać przynajmniej jeden wzorzec" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Poleca" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "To polecenie jest przestarzałe. Prosimy używać \"apt-mark showauto\"." -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "W konflikcie z" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "Nie udało się odnaleźć pakietu %s" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Zastępuje" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Plików pakietów:" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Dezaktualizuje" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" +"Magazyn podręczny jest przestarzały, nie można odwołać się (x-ref) do pliku " +"pakietu." -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Narusza zależności" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Przypięte pakiety:" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Rozszerza" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(nie znaleziono)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "ważny" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Zainstalowana: " -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "wymagany" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Kandydująca: " -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standardowy" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(brak)" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opcjonalny" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Sposób przypięcia: " -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "dodatkowy" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Tabela wersji:" -#: apt-pkg/pkgrecords.cc:38 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "Plik indeksu typu \"%s\" nie jest obsługiwany" - -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Błąd kompilacji wyrażenia regularnego - %s" - -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Magazyn podręczny ma niezgodny system wersji" - -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Wystąpił błąd podczas przetwarzania %s (%s%d)" - -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "Przekroczono liczbę pakietów, którą ten APT jest w stanie obsłużyć." - -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Przekroczono liczbę wersji, którą ten APT jest w stanie obsłużyć." - -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Przekroczono liczbę opisów, którą ten APT jest w stanie obsłużyć." - -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "Przekroczono liczbę zależności, którą ten APT jest w stanie obsłużyć." +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s dla %s skompilowany %s %s\n" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" +#: cmdline/apt-cache.cc:1749 +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" msgstr "" -"Pakiet %s %s nie został odnaleziony podczas przetwarzania zależności plików" - -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "Nie udało się wykonać operacji stat na liście pakietów źródłowych %s" +"Użycie: apt-cache [opcje] polecenie\n" +" apt-cache [opcje] showpkg pakiet1 [pakiet2 ...]\n" +" apt-cache [opcje] showsrc pakiet1 [pakiet2 ...]\n" +"\n" +"apt-cache to niskopoziomowe narzędzie służące pobierania informacji\n" +"z podręcznego magazynu plików binarnych APT-a.\n" +"\n" +"Polecenia:\n" +" gencaches - Buduje magazyn podręczny pakietów i źródeł\n" +" showpkg - Pokazuje ogólne informacje na temat pojedynczego pakietu\n" +" showsrc - Pokazuje informacje dla źródeł\n" +" stats - Pokazuje podstawowe statystyki\n" +" dump - Pokazuje cały plik w skrótowej formie\n" +" dumpavail - Wypisuje plik dostępnych pakietów na standardowe wyjście\n" +" unmet - Pokazuje niespełnione zależności\n" +" search - Przeszukuje listę pakietów według wyrażenia regularnego\n" +" show - Pokazuje informacje dla danego pakietu\n" +" depends - Pokazuje surowe informacje o zależnościach danego pakietu\n" +" rdepends - Pokazuje informacje o zależnościach OD danego pakietu\n" +" pkgnames - Pokazuje listę nazw wszystkich pakietów w systemie\n" +" dotty - Generuje grafy pakietów dla programu GraphViz\n" +" xvcg - Generuje grafy pakietów dla programu xvcg\n" +" policy - Pokazuje ustawienia polityki\n" +"\n" +"Opcje:\n" +" -h Ten tekst pomocy.\n" +" -p=? Podręczny magazyn pakietów.\n" +" -s=? Podręczny magazyn źródeł.\n" +" -q Wyłącza wskaźnik postępu.\n" +" -i Pokazuje tylko ważne zależności przy poleceniu unmet.\n" +" -c=? Czyta wskazany plik konfiguracyjny.\n" +" -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n" +"Więcej informacji można znaleźć na stronach podręcznika apt-cache(8)\n" +"oraz apt.conf(5).\n" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Czytanie list pakietów" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Proszę wprowadzić nazwę dla tej płyty, np. \"Debian 5.0.3 Disk 1\"" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Zbieranie zapewnień plików" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Proszę włożyć dysk do napędu i nacisnąć enter" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Unable to write to %s" -msgstr "Nie udało się pisać do %s" +msgid "Failed to mount '%s' to '%s'" +msgstr "Nie udało się zamontować \"%s\" w \"%s\"" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Błąd wejścia/wyjścia przy zapisywaniu podręcznego magazynu źródeł" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "Wysyłanie scenariusza do mechanizmu rozwiązywania zależności" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Należy powtórzyć ten proces dla reszty płyt." -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "Wysyłanie żądania do mechanizmu rozwiązywania zależności" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumenty nie są w parach" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "Przygotowywanie na otrzymanie rozwiązania" +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"Użycie: apt-config [opcje] polecenie\n" +"\n" +"apt-config to proste narzędzie do czytania pliku konfiguracyjnego APT\n" +"\n" +"Polecenia:\n" +" shell - Tryb powłoki\n" +" dump - Pokazuje konfigurację\n" +"\n" +"Opcje:\n" +" -h Ten tekst pomocy.\n" +" -c=? Czyta wskazany plik konfiguracyjny.\n" +" -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" msgstr "" -"Zewnętrzny mechanizm rozwiązywania zależności zawiódł, bez podania " -"prawidłowego komunikatu o błędzie" +"Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\"" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "Wykonywanie zewnętrznego mechanizmu rozwiązywania zależności" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "" +"Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\"" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "" +"Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\"" + +#: cmdline/apt-get.cc:367 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "nie udało się zmienić nazwy, %s (%s -> %s)" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Zmieniono wybrany pakiet źródłowy na \"%s\" z \"%s\"\n" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Błędna suma kontrolna" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Ignorowanie niedostępnej wersji \"%s\" pakietu \"%s\"" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Błędny rozmiar" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Nie udało się odnaleźć pakietu %s" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Nieprawidłowa operacja %s" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s zaznaczony jako zainstalowany ręcznie.\n" -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s zaznaczony jako zainstalowany automatycznie.\n" + +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -"Nie udało się znaleźć oczekiwanego wpisu \"%s\" w pliku Release " -"(nieprawidłowy wpis sources.list lub nieprawidłowy plik)" +"To polecenie jest przestarzałe. Prosimy używać \"apt-mark auto\" i \"apt-" +"mark manual\"." -#: apt-pkg/acquire-item.cc:1589 -#, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Nie udało się znaleźć sumy kontrolnej \"%s\" w pliku Release" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Błąd wewnętrzny, spowodowany przez moduł rozwiązywania problemów" -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Dla następujących identyfikatorów kluczy brakuje klucza publicznego:\n" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Nie udało się zablokować katalogu pobierania" -#: apt-pkg/acquire-item.cc:1669 -#, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" msgstr "" -"Plik Release dla %s wygasnął (nieprawidłowy od %s). Aktualizacje z tego " -"repozytorium nie będą wykonywane." +"Należy podać przynajmniej jeden pakiet, dla którego mają zostać pobrane " +"źródła" -#: apt-pkg/acquire-item.cc:1691 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Nieprawidłowa dystrybucja: %s (oczekiwano %s, a otrzymano %s)" +msgid "Unable to find a source package for %s" +msgstr "Nie udało się odnaleźć źródła dla pakietu %s" -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:786 #, c-format msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"Podczas weryfikacji podpisu wystąpił błąd. Nie zaktualizowano repozytorium i " -"w dalszym ciągu będą używane poprzednie pliki indeksu. Błąd GPG %s: %s\n" - -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 -#, c-format -msgid "GPG error: %s: %s" -msgstr "Błąd GPG: %s: %s" +"UWAGA: pakietowanie \"%s\" jest zarządzane w systemie kontroli wersji \"%s\" " +"pod adresem:\n" +"%s\n" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:791 #, c-format msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -"Nie udało się odnaleźć pliku dla pakietu %s. Może to oznaczać, że trzeba " -"będzie ręcznie naprawić ten pakiet (z powodu brakującej architektury)." +"Proszę użyć:\n" +"bzr branch %s\n" +"by pobrać najnowsze (prawdopodobnie jeszcze niewydane) poprawki tego " +"pakietu.\n" -#: apt-pkg/acquire-item.cc:1925 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "Nie można znaleźć źródła do pobrania wersji \"%s\" pakietu \"%s\"" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Pomijanie już pobranego pliku \"%s\"\n" -#: apt-pkg/acquire-item.cc:1983 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Pliki indeksu pakietów są uszkodzone. Brak pola Filename: dla pakietu %s." +msgid "Couldn't determine free space in %s" +msgstr "Nie udało się ustalić ilości wolnego miejsca w %s" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:882 +#, c-format +msgid "You don't have enough free space in %s" +msgstr "W %s nie ma wystarczającej ilości wolnego miejsca" + +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Blok producenta %s nie zawiera odcisku" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Konieczne pobranie %sB/%sB archiwów źródeł.\n" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "List directory %spartial is missing." -msgstr "Brakuje katalogu list %spartial." +msgid "Need to get %sB of source archives.\n" +msgstr "Konieczne pobranie %sB archiwów źródeł.\n" -#: apt-pkg/acquire.cc:91 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Brakuje katalogu archiwów %spartial." +msgid "Fetch source %s\n" +msgstr "Pobieranie źródeł %s\n" -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Nie udało się pobrać niektórych archiwów." + +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Ukończono pobieranie w trybie samego pobierania" + +#: cmdline/apt-get.cc:950 #, c-format -msgid "Unable to lock directory %s" -msgstr "Nie udało się zablokować katalogu %s" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Pomijanie rozpakowania już rozpakowanego źródła w %s\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Pobieranie pliku %li z %li (pozostało %s)" +msgid "Unpack command '%s' failed.\n" +msgstr "Polecenie rozpakowania \"%s\" zawiodło.\n" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Pobieranie pliku %li z %li" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Proszę sprawdzić czy pakiet \"dpkg-dev\" jest zainstalowany.\n" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Nie udało się pobrać %s %s\n" +msgid "Build command '%s' failed.\n" +msgstr "Polecenie budowania \"%s\" zawiodło.\n" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Nie udało się pobrać niektórych plików indeksu, zostały one zignorowane lub " -"użyto ich starszej wersji." +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Proces potomny zawiódł" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Należy dopisać jakieś URI pakietów źródłowych do pliku sources.list" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "" +"Należy podać przynajmniej jeden pakiet, dla którego mają zostać sprawdzone " +"zależności dla budowania" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -"Wartość %s jest nieprawidłowa dla APT::Default-Release, ponieważ takie " -"wydanie nie jest dostępne w źródłach" +"Nie znaleziono informacji o architekturze dla %s. Proszę zapoznać się z apt." +"conf(5) APT::Architectures" -#: apt-pkg/policy.cc:422 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Nieprawidłowe informacje w pliku ustawień %s, brak nagłówka Package" +msgid "Unable to get build-dependency information for %s" +msgstr "Nie udało się pobrać informacji o zależnościach dla budowania %s" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Did not understand pin type %s" -msgstr "Nierozpoznany typ przypinania %s" +msgid "%s has no build depends.\n" +msgstr "%s nie ma zależności dla budowania.\n" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Brak (lub zerowy) priorytet przypięcia" +#: cmdline/apt-get.cc:1272 +#, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"Zależność %s od %s nie może zostać spełniona, ponieważ %s nie jest dozwolone " +"w pakietach \"%s\"" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -"Nie udało się wykonać natychmiastowej konfiguracji %s. Proszę wykonać \"man " -"5 apt.conf\" i zapoznać się z wpisem APT::Immediate-Configure aby dowiedzieć " -"się więcej. (%d)" +"Zależność %s od %s nie może zostać spełniona, ponieważ nie znaleziono " +"pakietu %s" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Could not configure '%s'. " -msgstr "Nie udało się skonfigurować \"%s\". " +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"Nie udało się spełnić zależności %s od %s: Zainstalowany pakiet %s jest zbyt " +"nowy" -#: apt-pkg/packagemanager.cc:583 +#: cmdline/apt-get.cc:1352 #, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" -"To uruchomienie programu będzie wymagało tymczasowego usunięcia istotnego " -"pakietu %s z powodu pętli konfliktów/wymagań wstępnych. Często jest to złe " -"rozwiązanie, ale jeśli jest się pewnym swoich działań, należy włączyć opcję " -"APT::Force-LoopBreak." +"Zależność %s od %s nie może zostać spełniona, ponieważ kandydująca wersja " +"pakietu %s nie spełnia wymagań wersji" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-get.cc:1358 #, c-format -msgid "Line %u too long in source list %s." -msgstr "Linia %u w liście źródeł %s jest zbyt długa." +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"Zależność %s od %s nie może zostać spełniona, ponieważ pakiet %s nie ma " +"wersji kandydującej" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Odmontowanie CD-ROM-u...\n" +#: cmdline/apt-get.cc:1381 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Nie udało się spełnić zależności %s od %s: %s" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Użycie %s jako punktu montowania CD-ROM-u\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Nie udało się spełnić zależności dla budowania %s." -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Oczekiwanie na płytę...\n" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Nie udało się przetworzyć zależności dla budowania" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Montowanie CD-ROM-u...\n" +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 +#, c-format +msgid "Changelog for %s (%s)" +msgstr "Dziennik zmian %s (%s)" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identyfikacja... " +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Obsługiwane moduły:" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Etykieta: %s \n" +#: cmdline/apt-get.cc:1633 +msgid "" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" +msgstr "" +"Użycie: apt-get [opcje] polecenie\n" +" apt-get [opcje] install|remove pakiet1 [pakiet2 ...]\n" +" apt-get [opcje] source pakiet1 [pakiet2 ...]\n" +"\n" +"apt-get to prosty interfejs wiersza poleceń do pobierania i instalacji\n" +"pakietów. Najczęściej używane polecenia to update i install.\n" +"\n" +"Polecenia:\n" +" update - Pobiera nowe listy pakietów\n" +" upgrade - Wykonuje aktualizację\n" +" install - Instaluje nowe pakiety (pakiet to np. libc6, nie libc6.deb)\n" +" remove - Usuwa pakiety\n" +" autoremove - Usuwa automatycznie wszystkie nieużywane pakiety\n" +" purge - Usuwa pakiety łącznie z plikami konfiguracyjnymi\n" +" source - Pobiera archiwa źródłowe\n" +" build-dep - Konfiguruje zależności dla budowania pakietów źródłowych\n" +" dist-upgrade - Aktualizacja dystrybucji, patrz apt-get(8)\n" +" dselect-upgrade - Instaluje według wyborów dselect\n" +" clean - Usuwa pobrane pliki archiwów\n" +" autoclean - Usuwa stare pobrane pliki archiwów\n" +" check - Sprawdza, czy wszystkie zależności są spełnione\n" +" changelog - Pobiera i wyświetla dziennika zmian wybranych pakietów\n" +" download - Pobiera pakiet binarny do bieżącego katalogu\n" +"\n" +"Opcje:\n" +" -h Ten tekst pomocy\n" +" -q Nie pokazuje wskaźnika postępu (przydatne przy rejestrowaniu " +"działania)\n" +" -qq Nie wypisuje nic oprócz komunikatów błędów\n" +" -d Tylko pobiera - NIE instaluje ani nie rozpakowuje archiwów\n" +" -s Bez działania. Wykonuje tylko symulację ustalenia kolejności\n" +" -y Zakłada odpowiedź \"tak\" na wszystkie pytania, nie pyta\n" +" -f Próbuje naprawić system, w którym występują niespełnione zależności\n" +" -m Próbuje działać nawet jeśli nie można znaleźć niektórych archiwów\n" +" -u Pokazuje też listę aktualizowanych pakietów\n" +" -b Buduje pakiet po pobraniu archiwum źródłowego\n" +" -V Pokazuje pełną informację na temat wersji\n" +" -c=? Czyta wskazany plik konfiguracyjny.\n" +" -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n" +"Więcej informacji i opcji można znaleźć na stronach podręcznika\n" +"apt-get(8), sources.list(5) i apt.conf(5).\n" +" Ten APT ma moce Super Krowy.\n" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Skanowanie płyty w poszukiwaniu plików indeksu...\n" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "" +"Należy podać przynajmniej jeden pakiet, dla którego mają zostać pobrane " +"źródła" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"Znaleziono %zu indeksów pakietów, %zu indeksów źródłowych, %zu indeksów " -"tłumaczeń i %zu podpisów\n" -#: apt-pkg/cdrom.cc:744 +#: cmdline/apt-helper.cc:66 msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Nie można odnaleźć żadnych plików pakietów, być może nie jest to dysk " -"Debiana lub jest to inna architektura?" -#: apt-pkg/cdrom.cc:771 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Found label '%s'\n" -msgstr "Znaleziono etykietę \"%s\"\n" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s nie może zostać oznaczony, ponieważ nie jest zainstalowany.\n" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "To nie jest prawidłowa nazwa, proszę spróbować ponownie.\n" +#: cmdline/apt-mark.cc:74 +#, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s został już ustawiony jako zainstalowany ręcznie.\n" -#: apt-pkg/cdrom.cc:817 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Płyta nosi nazwę: \n" -"\"%s\"\n" +msgid "%s was already set to automatically installed.\n" +msgstr "%s został już ustawiony jako zainstalowany automatycznie.\n" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopiowanie list pakietów..." +#: cmdline/apt-mark.cc:241 +#, c-format +msgid "%s was already set on hold.\n" +msgstr "%s został już zatrzymany.\n" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Zapisywanie nowej listy źródeł\n" +#: cmdline/apt-mark.cc:243 +#, c-format +msgid "%s was already not hold.\n" +msgstr "%s został już odznaczony jako zatrzymany.\n" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Źródła dla tej płyty to:\n" +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 +#, c-format +msgid "Waited for %s but it wasn't there" +msgstr "Oczekiwano na proces %s, ale nie było go" -#: apt-pkg/algorithms.cc:265 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +msgid "%s set on hold.\n" +msgstr "%s został zatrzymany.\n" + +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, c-format +msgid "Canceled hold on %s.\n" +msgstr "Odznaczono zatrzymanie %s\n" + +# Musi pasować do su i sudo. +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -"Pakiet %s ma zostać ponownie zainstalowany, ale nie można znaleźć jego " -"archiwum." +"Uruchomienie dpkg nie powiodło się. Czy użyto uprawnień administratora?" -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-mark.cc:392 +#, fuzzy msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -"Błąd, pkgProblemResolver::Resolve zwrócił błąd, może to być spowodowane " -"zatrzymanymi pakietami." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Nie udało się naprawić problemów, zatrzymano uszkodzone pakiety." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Budowanie drzewa zależności" +"Użycie: apt-mark [opcje] {auto|manual} pakiet1 [pakiet2 ...]\n" +"\n" +"apt-mark jest prostym poleceniem wiersza poleceń do oznaczania pakietów\n" +"jako zainstalowane automatycznie lub ręcznie. Może także służyć\n" +"do wyświetlania stanu oznaczeń.\n" +"\n" +"Polecenia:\n" +" auto - Oznacza dany pakiet jako zainstalowany automatycznie\n" +" manual - Oznacza dany pakiet jako zainstalowany ręcznie\n" +"\n" +"Opcje:\n" +" -h Ten tekst pomocy\n" +" -q Nie pokazuje wskaźnika postępu (przydatne przy rejestrowaniu " +"działania)\n" +" -qq Nie wypisuje nic oprócz komunikatów błędów\n" +" -s Symulacja - wyświetla jedynie co powinno zostać zrobione\n" +" -f zapis/odczyt oznaczenia jako automatyczny/ręczny danego pliku\n" +" -c=? Czyta wskazany plik konfiguracyjny.\n" +" -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n" +"Proszę zapoznać się ze stronami podręcznika systemowego apt-mark(8)\n" +"i apt.conf(5), aby uzyskać więcej informacji." -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Kandydujące wersje" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Generowanie zależności" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Nie można odczytać bazy danych CD-ROM-ów %s" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Odczyt informacji o stanie" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" +msgstr "" +"Proszę użyć programu apt-cdrom, aby APT mógł rozpoznać tę płytę CD. Nowych " +"płyt nie można dodawać przy pomocy polecenia apt-get update" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Nie udało się otworzyć pliku stanu %s" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Niewłaściwa płyta CD" -#: apt-pkg/depcache.cc:256 +#: methods/cdrom.cc:249 #, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Nie udało się zapisać tymczasowego pliku stanu %s" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Nie udało się odmontować CD-ROM-u w %s, być może wciąż jest używany." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Nie udało się zanalizować pliku pakietu %s (1)" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Nie odnaleziono dysku." -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Nie udało się zanalizować pliku pakietu %s (2)" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Nie odnaleziono pliku" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Wydanie \"%s\" dla \"%s\" nie zostało znalezione" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Nie udało się wykonać operacji stat" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Wersja \"%s\" dla \"%s\" nie została znaleziona" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Nie udało się ustawić czasu modyfikacji" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "Nie udało się odnaleźć pakietu %s" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Nieprawidłowe URI, lokalne URI nie mogą zaczynać się od //" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Nie udało się odnaleźć zadania \"%s\"" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Logowanie się" -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "" -"Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\"" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Nie można określić nazwy zdalnego systemu" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "" -"Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\"" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Nie udało się określić nazwy lokalnego systemu" -#: apt-pkg/cacheset.cc:626 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" -"Nie udało się wybrać wersji z pakietu \"%s\", ponieważ jest on czysto " -"wirtualny" +msgid "The server refused the connection and said: %s" +msgstr "Serwer odrzucił połączenie, otrzymana odpowiedź: %s" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: methods/ftp.cc:225 #, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" -"Nie udało się wybrać zainstalowanej ani kandydującej wersji pakietu \"%s\", " -"ponieważ nie ma żadnej z nich" +msgid "USER failed, server said: %s" +msgstr "Polecenie USER nie powiodło się, odpowiedź serwera: %s" -#: apt-pkg/cacheset.cc:647 +#: methods/ftp.cc:232 #, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"Nie udało się wybrać najnowszej wersji pakietu \"%s\", ponieważ jest on " -"czysto wirtualny" +msgid "PASS failed, server said: %s" +msgstr "Polecenie PASS nie powiodło się, odpowiedź serwera: %s" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -"Nie udało się wybrać wersji kandydującej pakietu %s, ponieważ nie ma " -"kandydata" +"Określono serwer pośredniczący, ale nie określono skryptu rejestrowania, " +"Acquire::ftp::ProxyLogin jest puste." -#: apt-pkg/cacheset.cc:663 +#: methods/ftp.cc:280 #, c-format -msgid "Can't select installed version from package %s as it is not installed" +msgid "Login script command '%s' failed, server said: %s" msgstr "" -"Nie udało się wybrać zainstalowanej wersji z pakietu %s, ponieważ nie jest " -"zainstalowany" - -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "Nie udało się przeanalizować pliku Release %s" +"Polecenie skryptu rejestrowania \"%s\" nie powiodło się, odpowiedź serwera: " +"%s" -#: apt-pkg/indexrecords.cc:86 +#: methods/ftp.cc:306 #, c-format -msgid "No sections in Release file %s" -msgstr "Brak sekcji w pliku Release %s" +msgid "TYPE failed, server said: %s" +msgstr "Polecenie TYPE nie powiodło się, odpowiedź serwera: %s" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Brak wpisu Hash w pliku Release %s" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Przekroczenie czasu połączenia" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Nieprawidłowy wpis Valid-Until w pliku Release %s" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Serwer zamknął połączenie" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Nieprawidłowy wpis Date w pliku Release %s" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Błąd odczytu" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Nieprawidłowa linia %lu w liście źródeł %s (analiza URI)" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Odpowiedź przepełniła bufor." -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"Nieprawidłowa linia %lu w liście źródeł %s ([opcja] nie dająca się sparsować)" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Naruszenie zasad protokołu" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Nieprawidłowa linia %lu w liście źródeł %s ([opcja] zbyt krótka)" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Błąd zapisu" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Nieprawidłowa linia %lu w liście źródeł %s ([%s] nie jest przypisane)" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Nie udało się utworzyć gniazda" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Nieprawidłowa linia %lu w liście źródeł %s ([%s] nie ma klucza)" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Nie udało się połączyć gniazda danych, przekroczenie czasu połączenia" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Nieprawidłowa linia %lu w liście źródeł %s ([%s] klucz %s nie ma wartości)" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Nie udało się" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Nieprawidłowa linia %lu w liście źródeł %s (URI)" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Nie udało się połączyć pasywnego gniazda." -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Nieprawidłowa linia %lu w liście źródeł %s (dystrybucja)" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo nie było w stanie uzyskać nasłuchującego gniazda" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Nieprawidłowa linia %lu w liście źródeł %s (analiza URI)" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Nie udało się przyłączyć gniazda" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Nieprawidłowa linia %lu w liście źródeł %s (bezwzględna dystrybucja)" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Nie udało się nasłuchiwać na gnieździe" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Nieprawidłowa linia %lu w liście źródeł %s (analiza dystrybucji)" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Nie udało się określić nazwy gniazda" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Otwieranie %s" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Nie można wysłać polecenia PORT" -#: apt-pkg/sourcelist.cc:371 +#: methods/ftp.cc:802 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Nieprawidłowa linia %u w liście źródeł %s (typ)" +msgid "Unknown address family %u (AF_*)" +msgstr "Nieznana rodzina adresów %u (AF_*)" -#: apt-pkg/sourcelist.cc:375 +#: methods/ftp.cc:811 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Typ \"%s\" jest nieznany w linii %u listy źródeł %s" - -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Typ \"%s\" jest nieznany w linii %u listy źródeł %s" +msgid "EPRT failed, server said: %s" +msgstr "Polecenie EPRT nie powiodło się, odpowiedź serwera: %s" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Instalowanie %s" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Przekroczony czas połączenia gniazda danych" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Konfigurowanie %s" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Nie udało się przyjąć połączenia" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Usuwanie %s" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Nie udało się obliczyć skrótu pliku" -#: apt-pkg/deb/dpkgpm.cc:98 +#: methods/ftp.cc:890 #, c-format -msgid "Completely removing %s" -msgstr "Całkowite usuwanie %s" +msgid "Unable to fetch file, server said '%s'" +msgstr "Nie można pobrać pliku, odpowiedź serwera: %s" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "Proszę odnotować zniknięcie %s" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Przekroczony czas oczekiwania na dane" -#: apt-pkg/deb/dpkgpm.cc:100 +#: methods/ftp.cc:935 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Uruchamianie wyzwalacza post-installation %s" +msgid "Data transfer failed, server said '%s'" +msgstr "Nie udało się przesłać danych, odpowiedź serwera: %s" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Brakuje katalogu \"%s\"" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Info" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "Nie udało się otworzyć pliku \"%s\"" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Nie można wywołać " -#: apt-pkg/deb/dpkgpm.cc:989 +#: methods/connect.cc:76 #, c-format -msgid "Preparing %s" -msgstr "Przygotowywanie %s" +msgid "Connecting to %s (%s)" +msgstr "Łączenie z %s (%s)" -#: apt-pkg/deb/dpkgpm.cc:990 +#: methods/connect.cc:87 #, c-format -msgid "Unpacking %s" -msgstr "Rozpakowywanie %s" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/deb/dpkgpm.cc:995 +#: methods/connect.cc:94 #, c-format -msgid "Preparing to configure %s" -msgstr "Przygotowywanie do konfiguracji %s" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Nie udało się utworzyć gniazda dla %s (f=%u t=%u p=%u)" -#: apt-pkg/deb/dpkgpm.cc:997 +#: methods/connect.cc:100 #, c-format -msgid "Installed %s" -msgstr "Pakiet %s został zainstalowany" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Nie udało się zainicjalizować połączenia z %s:%s (%s)." -#: apt-pkg/deb/dpkgpm.cc:1002 +#: methods/connect.cc:108 #, c-format -msgid "Preparing for removal of %s" -msgstr "Przygotowywanie do usunięcia %s" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Nie udało się połączyć z %s:%s (%s), przekroczenie czasu połączenia" -#: apt-pkg/deb/dpkgpm.cc:1004 +#: methods/connect.cc:126 #, c-format -msgid "Removed %s" -msgstr "Pakiet %s został usunięty" +msgid "Could not connect to %s:%s (%s)." +msgstr "Nie udało się połączyć z %s:%s (%s)." -#: apt-pkg/deb/dpkgpm.cc:1009 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Przygotowywanie do całkowitego usunięcia %s" +msgid "Connecting to %s" +msgstr "Łączenie z %s" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Completely removed %s" -msgstr "Pakiet %s został całkowicie usunięty" +msgid "Could not resolve '%s'" +msgstr "Nie udało się przetłumaczyć nazwy \"%s\"" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: methods/connect.cc:205 +#, c-format +msgid "Temporary failure resolving '%s'" +msgstr "Tymczasowy błąd przy tłumaczeniu \"%s\"" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#: methods/connect.cc:209 #, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Nie udało się pisać do %s" - -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +msgid "System error resolving '%s:%s'" +msgstr "Coś niewłaściwego stało się przy tłumaczeniu \"%s:%s\" (%i - %s)" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/connect.cc:211 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Oczekiwano na proces %s, ale nie było go" - -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "Operacja została przerwana, zanim mogła zostać zakończona" - -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "Brak raportu programu apport, ponieważ osiągnięto limit MaxReports" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Coś niewłaściwego stało się przy tłumaczeniu \"%s:%s\" (%i - %s)" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "problemy z zależnościami - pozostawianie nieskonfigurowanego" +#: methods/connect.cc:258 +#, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Nie udało się połączyć z %s:%s:" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: methods/gpgv.cc:168 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Brak raportu programu apport, ponieważ komunikat błędu wskazuje, że " -"przyczyna niepowodzenia leży w poprzednim błędzie." +"Błąd wewnętrzny: Prawidłowy podpis, ale nie udało się ustalić odcisku klucza!" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Brak raportu programu apport, ponieważ komunikat błędu wskazuje na " -"przepełnienie dysku" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Napotkano przynajmniej jeden nieprawidłowy podpis." -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"Brak raportu programu apport, ponieważ komunikat błędu wskazuje na błąd " -"braku wolnej pamięci" +"Nie udało się uruchomić gpgv by zweryfikować podpis (czy gpgv jest " +"zainstalowane?)" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 +#, c-format msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"Brak raportu programu apport, ponieważ komunikat błędu wskazuje na " -"przepełnienie dysku" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" -"Brak raportu programu apport, ponieważ komunikat błędu wskazuje na błąd " -"wejścia/wyjścia dpkg" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Nieznany błąd podczas uruchamiania gpgv" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Następujące podpisy były błędne:\n" + +#: methods/gpgv.cc:231 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -"Nie udało się zablokować katalogu administracyjnego (%s), czy inny proces go " -"używa?" +"Następujące podpisy nie mogły zostać zweryfikowane z powodu braku klucza " +"publicznego:\n" -# Musi pasować do su i sudo. -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "" -"Nie udało się zablokować katalogu administracyjnego (%s), czy użyto " -"uprawnień administratora?" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Puste pliki nie mogą być prawidłowymi archiwami" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" -"dpkg został przerwany, należy wykonać ręcznie \"%s\", aby naprawić problem." +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Błąd przy pisaniu do pliku" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Niezablokowany" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Błąd czytania z serwera: Zdalna strona zamknęła połączenie" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lidni %lig %limin %lis" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Błąd czytania z serwera" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%lig %limin %lis" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Błąd przy pisaniu do pliku" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%limin %lis" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Operacja select nie powiodła się" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%lis" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Przekroczenie czasu połączenia" -#: apt-pkg/contrib/strutl.cc:1243 -#, c-format -msgid "Selection %s not found" -msgstr "Nie odnaleziono wyboru %s" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Błąd przy pisaniu do pliku wyjściowego" -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Dla pliku blokady %s tylko do odczytu nie zostanie użyta blokada" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Oczekiwanie na nagłówki" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Nie udało się otworzyć pliku blokady %s" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Nieprawidłowa linia nagłówka" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Dla pliku blokady %s montowanego przez NFS nie zostanie użyta blokada" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Serwer HTTP przysłał nieprawidłowy nagłówek odpowiedzi" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Nie udało się uzyskać blokady %s" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "Serwer HTTP przysłał nieprawidłowy nagłówek Content-Length" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" -"Lista plików nie może zostać stworzona, ponieważ \"%s\" nie jest katalogiem" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "Serwer HTTP przysłał nieprawidłowy nagłówek Content-Range" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "Ignorowanie \"%s\" w katalogu \"%s\", ponieważ nie jest to zwykły plik" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Ten serwer HTTP nieprawidłowo obsługuje zakresy (ranges)" + +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Nieznany format daty" + +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Błędne dane nagłówka" + +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Połączenie nie powiodło się" + +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Błąd wewnętrzny" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -"Ignorowanie pliku \"%s\" w katalogu \"%s\", ponieważ nie ma on rozszerzenia " -"pliku" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" -msgstr "" -"Ignorowanie pliku \"%s\" w katalogu \"%s\", ponieważ ma on nieprawidłowe " -"rozszerzenie pliku" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Błąd wewnętrzny, użyto InstallPackages z uszkodzonymi pakietami!" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Podproces %s spowodował naruszenie ochrony pamięci." +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Pakiety powinny zostać usunięte, ale Remove jest wyłączone." -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "Podproces %s otrzymał sygnał %u." +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Błąd wewnętrzny, sortowanie niezakończone" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Podproces %s zwrócił kod błędu (%u)" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Wystąpił dziwny błąd - rozmiary się nie zgadzają. Proszę to zgłosić pod " +"apt@packages.debian.org" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Podproces %s zakończył się niespodziewanie" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Konieczne pobranie %sB/%sB archiwów.\n" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Błąd zapisu" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 +#, c-format +msgid "Need to get %sB of archives.\n" +msgstr "Konieczne pobranie %sB archiwów.\n" -#: apt-pkg/contrib/fileutl.cc:913 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problem przy zamykaniu pliku gzip %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Po tej operacji zostanie dodatkowo użyte %sB miejsca na dysku.\n" -#: apt-pkg/contrib/fileutl.cc:1101 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "Could not open file %s" -msgstr "Nie udało się otworzyć pliku %s" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Po tej operacji zostanie zwolnione %sB miejsca na dysku.\n" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#: apt-private/private-install.cc:200 #, c-format -msgid "Could not open file descriptor %d" -msgstr "Nie udało się otworzyć deskryptora pliku %d" +msgid "You don't have enough free space in %s." +msgstr "Niestety w %s nie ma wystarczającej ilości wolnego miejsca." -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Nie udało się utworzyć IPC z podprocesem" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Wystąpiły problemy, a użyto -y bez --force-yes" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Nie udało się uruchomić kompresora " +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Nakazano wykonywać tylko trywialne operacje, a ta do nich nie należy." -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Błąd odczytu" +# Bezpieczniej jest nie używać tu polskich znaków. +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Tak, jestem pewien!" -#: apt-pkg/contrib/fileutl.cc:1514 +#: apt-private/private-install.cc:222 #, c-format -msgid "read, still have %llu to read but none left" -msgstr "należało przeczytać jeszcze %llu, ale nic nie zostało" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Zaraz stanie się coś potencjalnie szkodliwego.\n" +"Aby kontynuować proszę napisać zdanie \"%s\"\n" +" ?] " -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "należało zapisać jeszcze %llu, ale nie udało się to" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Przerwane." -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Problem przy zamykaniu pliku %s" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Kontynuować?" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problem przy zapisywaniu pliku %s w %s" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Nie udało się pobrać niektórych plików" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "Problem przy odlinkowywaniu pliku %s" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"Nie udało się pobrać niektórych archiwów, proszę spróbować uruchomić apt-get " +"update lub użyć opcji --fix-missing." -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problem przy zapisywaniu pliku na dysk" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing i zamiana nośników nie są obecnie obsługiwane" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Błąd!" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Nie udało się poprawić brakujących pakietów." -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Gotowe" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Przerywanie instalacji" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"Następujący pakiet zniknął z tego systemu, ponieważ wszystkie jego pliki " +"zostały nadpisane przez inne pakiety:" +msgstr[1] "" +"Następujące pakiety zniknęły z tego systemu, ponieważ wszystkie ich pliki " +"zostały nadpisane przez inne pakiety:" +msgstr[2] "" +"Następujące pakiety zniknęły z tego systemu, ponieważ wszystkie ich pliki " +"zostały nadpisane przez inne pakiety:" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Gotowe" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Uwaga: dpkg wykonał to automatycznie i celowo." -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Nie można wykonać mmap na pustym pliku" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Nic nie powinno być usuwane, AutoRemover nie zostanie uruchomiony" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Nie udało się zduplikować deskryptora pliku %i" +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" +"Wygląda na to, że AutoRemover coś uszkodził, a to naprawdę nie\n" +"powinno się zdarzyć. Prosimy o zgłoszenie błędu w pakiecie apt." -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Nie udało się wykonać mmap %llu bajtów" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Następujące informacje mogą pomóc rozwiązać sytuację:" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Nie udało się zamknąć mmap" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Błąd wewnętrzny spowodowany przez AutoRemover" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Nie udało się zsynchronizować mmap" +#: apt-private/private-install.cc:513 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "" +"Następujący pakiet został zainstalowany automatycznie i nie jest już więcej " +"wymagany:" +msgstr[1] "" +"Następujące pakiety zostały zainstalowane automatycznie i nie są już więcej " +"wymagane:" +msgstr[2] "" +"Następujące pakiety zostały zainstalowane automatycznie i nie są już więcej " +"wymagane:" -#: apt-pkg/contrib/mmap.cc:290 +#: apt-private/private-install.cc:517 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Nie udało się wykonać mmap %lu bajtów" +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "" +"%lu pakiet został zainstalowany automatycznie i nie jest już więcej " +"wymagany.\n" +msgstr[1] "" +"%lu pakiety zostały zainstalowane automatycznie i nie są już więcej " +"wymagane.\n" +msgstr[2] "" +"%lu pakietów zostało zainstalowanych automatycznie i nie są już więcej " +"wymagane.\n" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Nie udało się uciąć zawartości pliku %s" +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Aby go usunąć należy użyć \"apt-get autoremove\"." +msgstr[1] "Aby je usunąć należy użyć \"apt-get autoremove\"." +msgstr[2] "Aby je usunąć należy użyć \"apt-get autoremove\"." -#: apt-pkg/contrib/mmap.cc:341 -#, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -"Brak miejsca dla dynamicznego MMap. Proszę zwiększyć rozmiar APT::Cache-" -"Start. Bieżąca wartość: %lu. (man 5 apt.conf)" +"Należy uruchomić \"apt-get -f install\", aby naprawić poniższe problemy:" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format +#: apt-private/private-install.cc:614 msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"Nie udało się zwiększyć rozmiaru MMap, ponieważ limit %lu bajtów został już " -"osiągnięty." +"Niespełnione zależności. Proszę spróbować wykonać \"apt-get -f install\" bez " +"pakietów (lub podać rozwiązanie)." -#: apt-pkg/contrib/mmap.cc:449 +#: apt-private/private-install.cc:638 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." msgstr "" -"Nie udało się zwiększyć rozmiaru MMap, ponieważ automatycznie powiększanie " -"zostało wyłączone przez użytkownika." - -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Nie udało się wykonać operacji stat na punkcie montowania %s" +"Nie udało się zainstalować niektórych pakietów. Może to oznaczać,\n" +"że zażądano niemożliwej sytuacji lub użyto dystrybucji niestabilnej,\n" +"w której niektóre pakiety nie zostały jeszcze utworzone lub przeniesione\n" +"z katalogu Incoming (\"Przychodzące\")." -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Nie udało się wykonać operacji stat na CDROM-ie" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Pakiety są uszkodzone" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Nierozpoznany skrót typu: \"%c\"" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Zostaną zainstalowane następujące dodatkowe pakiety:" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Otwieranie pliku konfiguracyjnego %s" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Sugerowane pakiety:" -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Błąd składniowy %s:%u: Blok nie zaczyna się nazwą." +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Polecane pakiety:" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-private/private-install.cc:825 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Błąd składniowy %s:%u: Błędny znacznik" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "" +"Pomijanie %s, jest już zainstalowane, a nie została wybrana aktualizacja.\n" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-private/private-install.cc:829 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Błąd składniowy %s:%u: Po wartości występują śmieci" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"Pomijanie %s, nie jest zainstalowane, a wybrano wyłącznie aktualizacje.\n" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-private/private-install.cc:841 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" -"Błąd składniowy %s:%u: Dyrektywy mogą występować tylko na najwyższym poziomie" +"Ponowna instalacja pakietu %s nie jest możliwa, nie może on zostać pobrany.\n" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-private/private-install.cc:846 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Błąd składniowy %s:%u: Zbyt wiele zagnieżdżonych operacji include" +msgid "%s is already the newest version.\n" +msgstr "%s jest już w najnowszej wersji.\n" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-private/private-install.cc:894 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Błąd składniowy %s:%u: Włączony tutaj" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Wybrano wersję \"%s\" (%s) pakietu \"%s\"\n" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-private/private-install.cc:899 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Błąd składniowy %s:%u: Nieobsługiwana dyrektywa \"%s\"" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Wybrano wersję \"%s\" (%s) pakietu \"%s\", z powodu \"%s\"\n" -#: apt-pkg/contrib/configuration.cc:900 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" msgstr "" -"Błąd składniowy %s:%u: czysta dyrektywa wymaga drzewa opcji jako argumentu" - -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Błąd składniowy %s:%u: Śmieci na końcu pliku" - -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, c-format -msgid "No keyring installed in %s." -msgstr "Brak zainstalowanej bazy kluczy w %s." +"Pakiet %s nie jest zainstalowany, więc nie zostanie usunięty. Czy chodziło o " +"\"%s\"?\n" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-private/private-install.cc:947 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Opcja linii poleceń \"%c\" [z %s] jest nieznana." +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Pakiet \"%s\" nie jest zainstalowany, więc nie zostanie usunięty\n" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "Niezrozumiała opcja linii poleceń %s" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-private/private-list.cc:164 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Opcja linii poleceń %s nie jest typu logicznego" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "Opcja %s wymaga argumentu." +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Naprawianie zależności..." -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Opcja %s: Specyfikacja elementu konfiguracji musi zawierać =<wartość>." +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " nie udało się." -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Opcja %s wymaga argumentu typu całkowitego, nie \"%s\"" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Nie udało się naprawić zależności" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Opcja \"%s\" jest zbyt długa" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Nie udało się zminimalizować zbioru aktualizacji" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Znaczenie %s jest nieznane, proszę spróbować true lub false." +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Gotowe" -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "Nieprawidłowa operacja %s" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Należy uruchomić \"apt-get -f install\", aby je naprawić." -#: cmdline/apt-cache.cc:149 -#, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Pakiet %s w wersji %s ma niespełnione zależności:\n" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Niespełnione zależności. Proszę spróbować użyć -f." -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Liczba nazw pakietów: " +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Liczba wszystkich typów pakietów: " +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Zainstalowany]" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Zwykłych pakietów: " +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Zainstalowany]" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Czysto wirtualnych pakietów: " +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Pojedynczych pakietów wirtualnych: " +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Zainstalowany]" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Mieszanych pakietów wirtualnych: " +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Zainstalowany]" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Brakujących: " +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "W sumie różnych wersji: " +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "W sumie różnych opisów: " +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "ale %s jest zainstalowany" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "W sumie zależności: " +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "ale %s ma zostać zainstalowany" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "W sumie zależności wersja/plik: " +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "ale nie da się go zainstalować" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "W sumie zależności opis/plik: " +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "ale jest pakietem wirtualnym" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "W sumie mapowań zapewnień: " +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "ale nie jest zainstalowany" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "W sumie dopasowanych napisów: " +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "ale nie zostanie zainstalowany" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Sumaryczny rozmiar obszaru zależności od wersji: " +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " lub" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Sumaryczny rozmiar niewykorzystanego miejsca: " +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Następujące pakiety mają niespełnione zależności:" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Całkowity rozmiar: " +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Zostaną zainstalowane następujące NOWE pakiety:" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Plik pakietu %s jest przestarzały." +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Następujące pakiety zostaną USUNIĘTE:" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Nie znaleziono żadnych pakietów" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Następujące pakiety zostały zatrzymane:" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Należy podać przynajmniej jeden wzorzec" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Następujące pakiety zostaną zaktualizowane:" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "To polecenie jest przestarzałe. Prosimy używać \"apt-mark showauto\"." +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Zostaną zainstalowane STARE wersje następujących pakietów:" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Plików pakietów:" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Zostaną zmienione następujące zatrzymane pakiety:" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "" -"Magazyn podręczny jest przestarzały, nie można odwołać się (x-ref) do pliku " -"pakietu." +#: apt-private/private-output.cc:668 +#, c-format +msgid "%s (due to %s) " +msgstr "%s (z powodu %s) " -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Przypięte pakiety:" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"UWAGA: Zostaną usunięte następujące istotne pakiety.\n" +"NIE należy kontynuować, jeśli nie jest się pewnym tego co się robi!" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(nie znaleziono)" +#: apt-private/private-output.cc:707 +#, c-format +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu aktualizowanych, %lu nowo instalowanych, " -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Zainstalowana: " +#: apt-private/private-output.cc:711 +#, c-format +msgid "%lu reinstalled, " +msgstr "%lu ponownie instalowanych, " -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandydująca: " +#: apt-private/private-output.cc:713 +#, c-format +msgid "%lu downgraded, " +msgstr "%lu cofniętych wersji, " -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(brak)" +#: apt-private/private-output.cc:715 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu usuwanych i %lu nieaktualizowanych.\n" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Sposób przypięcia: " +#: apt-private/private-output.cc:719 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "%lu nie w pełni zainstalowanych lub usuniętych.\n" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabela wersji:" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[T/n]" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s dla %s skompilowany %s %s\n" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[t/N]" -#: cmdline/apt-cache.cc:1749 -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" -msgstr "" -"Użycie: apt-cache [opcje] polecenie\n" -" apt-cache [opcje] showpkg pakiet1 [pakiet2 ...]\n" -" apt-cache [opcje] showsrc pakiet1 [pakiet2 ...]\n" -"\n" -"apt-cache to niskopoziomowe narzędzie służące pobierania informacji\n" -"z podręcznego magazynu plików binarnych APT-a.\n" -"\n" -"Polecenia:\n" -" gencaches - Buduje magazyn podręczny pakietów i źródeł\n" -" showpkg - Pokazuje ogólne informacje na temat pojedynczego pakietu\n" -" showsrc - Pokazuje informacje dla źródeł\n" -" stats - Pokazuje podstawowe statystyki\n" -" dump - Pokazuje cały plik w skrótowej formie\n" -" dumpavail - Wypisuje plik dostępnych pakietów na standardowe wyjście\n" -" unmet - Pokazuje niespełnione zależności\n" -" search - Przeszukuje listę pakietów według wyrażenia regularnego\n" -" show - Pokazuje informacje dla danego pakietu\n" -" depends - Pokazuje surowe informacje o zależnościach danego pakietu\n" -" rdepends - Pokazuje informacje o zależnościach OD danego pakietu\n" -" pkgnames - Pokazuje listę nazw wszystkich pakietów w systemie\n" -" dotty - Generuje grafy pakietów dla programu GraphViz\n" -" xvcg - Generuje grafy pakietów dla programu xvcg\n" -" policy - Pokazuje ustawienia polityki\n" -"\n" -"Opcje:\n" -" -h Ten tekst pomocy.\n" -" -p=? Podręczny magazyn pakietów.\n" -" -s=? Podręczny magazyn źródeł.\n" -" -q Wyłącza wskaźnik postępu.\n" -" -i Pokazuje tylko ważne zależności przy poleceniu unmet.\n" -" -c=? Czyta wskazany plik konfiguracyjny.\n" -" -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n" -"Więcej informacji można znaleźć na stronach podręcznika apt-cache(8)\n" -"oraz apt.conf(5).\n" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "T" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Proszę wprowadzić nazwę dla tej płyty, np. \"Debian 5.0.3 Disk 1\"" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Proszę włożyć dysk do napędu i nacisnąć enter" +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Błąd kompilacji wyrażenia regularnego - %s" -#: cmdline/apt-cdrom.cc:139 +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Polecenie update nie wymaga żadnych argumentów" + +#: apt-private/private-update.cc:90 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Nie udało się zamontować \"%s\" w \"%s\"" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Należy powtórzyć ten proces dla reszty płyt." +#: apt-private/private-show.cc:156 +#, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumenty nie są w parach" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: cmdline/apt-config.cc:89 +#: apt-private/private-main.cc:32 msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -"Użycie: apt-config [opcje] polecenie\n" -"\n" -"apt-config to proste narzędzie do czytania pliku konfiguracyjnego APT\n" -"\n" -"Polecenia:\n" -" shell - Tryb powłoki\n" -" dump - Pokazuje konfigurację\n" -"\n" -"Opcje:\n" -" -h Ten tekst pomocy.\n" -" -c=? Czyta wskazany plik konfiguracyjny.\n" -" -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n" +"UWAGA: To jest tylko symulacja!\n" +" apt-get wymaga do normalnego działania uprawnień administratora.\n" +" Aktualnie blokowanie jest wyłączone, więc nie należy polegać\n" +" na związku z rzeczywistą sytuacją!" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "" -"Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\"" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "UWAGA: Następujące pakiety nie mogą zostać zweryfikowane!" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "" -"Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\"" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Zignorowano ostrzeżenie uwierzytelniania.\n" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "" -"Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\"" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Niektóre pakiety nie mogły zostać zweryfikowane" -#: cmdline/apt-get.cc:367 +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Zainstalować te pakiety bez weryfikacji?" + +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Zmieniono wybrany pakiet źródłowy na \"%s\" z \"%s\"\n" +msgid "Failed to fetch %s %s\n" +msgstr "Nie udało się pobrać %s %s\n" -#: cmdline/apt-get.cc:423 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Ignorowanie niedostępnej wersji \"%s\" pakietu \"%s\"" +msgid "Failed to parse %s. Edit again? " +msgstr "Nie udało się zmienić nazwy %s na %s" -#: cmdline/apt-get.cc:454 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Couldn't find package %s" -msgstr "Nie udało się odnaleźć pakietu %s" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s zaznaczony jako zainstalowany ręcznie.\n" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s zaznaczony jako zainstalowany automatycznie.\n" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Obliczanie aktualizacji..." -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"To polecenie jest przestarzałe. Prosimy używać \"apt-mark auto\" i \"apt-" -"mark manual\"." +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Gotowe" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Błąd wewnętrzny, spowodowany przez moduł rozwiązywania problemów" +# Ujednolicono z aptitude +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Stary " -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Nie udało się zablokować katalogu pobierania" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Pobieranie:" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "" -"Należy podać przynajmniej jeden pakiet, dla którego mają zostać pobrane " -"źródła" +# Wyrównane do Hit i Err. +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign. " + +# Wyrównane do Hit i Ign. +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Błąd " -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Nie udało się odnaleźć źródła dla pakietu %s" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Pobrano %sB w %s (%sB/s)\n" -#: cmdline/apt-get.cc:786 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" -"UWAGA: pakietowanie \"%s\" jest zarządzane w systemie kontroli wersji \"%s\" " -"pod adresem:\n" -"%s\n" +msgid " [Working]" +msgstr " [Pracuje]" -#: cmdline/apt-get.cc:791 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"Proszę użyć:\n" -"bzr branch %s\n" -"by pobrać najnowsze (prawdopodobnie jeszcze niewydane) poprawki tego " -"pakietu.\n" +"Zmiana nośnika: Proszę włożyć dysk oznaczony\n" +" \"%s\"\n" +"do napędu \"%s\" i nacisnąć enter\n" -#: cmdline/apt-get.cc:843 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Pomijanie już pobranego pliku \"%s\"\n" +msgid "Unable to read %s" +msgstr "Nie można czytać %s" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Nie udało się ustalić ilości wolnego miejsca w %s" +msgid "Unable to change to %s" +msgstr "Nie udało się przejść do %s" -#: cmdline/apt-get.cc:882 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "You don't have enough free space in %s" -msgstr "W %s nie ma wystarczającej ilości wolnego miejsca" +msgid "No mirror file '%s' found " +msgstr "Nie znaleziono pliku serwera lustrzanego \"%s\"" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Konieczne pobranie %sB/%sB archiwów źródeł.\n" +msgid "Can not read mirror file '%s'" +msgstr "Nie udało się otworzyć pliku serwera lustrzanego \"%s\"" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Konieczne pobranie %sB archiwów źródeł.\n" +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Nie udało się otworzyć pliku serwera lustrzanego \"%s\"" -#: cmdline/apt-get.cc:902 +#: methods/mirror.cc:445 #, c-format -msgid "Fetch source %s\n" -msgstr "Pobieranie źródeł %s\n" +msgid "[Mirror: %s]" +msgstr "[Serwer lustrzany: %s]" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Nie udało się pobrać niektórych archiwów." +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Nie udało się utworzyć potoku IPC do podprocesu" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Ukończono pobieranie w trybie samego pobierania" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Połączenie zostało przedwcześnie zamknięte" -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Pomijanie rozpakowania już rozpakowanego źródła w %s\n" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Nieprawidłowe ustawienie domyślne!" -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Polecenie rozpakowania \"%s\" zawiodło.\n" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Proszę nacisnąć enter, aby kontynuować." -#: cmdline/apt-get.cc:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Proszę sprawdzić czy pakiet \"dpkg-dev\" jest zainstalowany.\n" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Czy usunąć wszystkie pobrane wcześniej pliki .deb?" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "Polecenie budowania \"%s\" zawiodło.\n" +# Note to translators: The following four messages belong together. It doesn't +# matter where sentences start, but it has to fit in just these four lines, and +# at only 80 characters per line, if possible. +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Wystąpiły problemy przy rozpakowywaniu. Zainstalowane pakiety zostaną" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Proces potomny zawiódł" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "skonfigurowane. Może to spowodować podwójne błędy lub błędy" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -"Należy podać przynajmniej jeden pakiet, dla którego mają zostać sprawdzone " -"zależności dla budowania" +"spowodowane brakującymi zależnościami. Jest to normalne. Tylko błędy nad tym" -#: cmdline/apt-get.cc:1054 -#, c-format +#: dselect/install:105 msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"Nie znaleziono informacji o architekturze dla %s. Proszę zapoznać się z apt." -"conf(5) APT::Architectures" +"komunikatem są istotne. Proszę je poprawić i ponownie wybrać [I]nstalację." -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Nie udało się pobrać informacji o zależnościach dla budowania %s" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Łączenie informacji o dostępnych pakietach" -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s nie ma zależności dla budowania.\n" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode wywołane na wciąż podłączonym węźle" -#: cmdline/apt-get.cc:1271 -#, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"Zależność %s od %s nie może zostać spełniona, ponieważ %s nie jest dozwolone " -"w pakietach \"%s\"" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Nie udało się odnaleźć elementu tablicy haszującej!" -#: cmdline/apt-get.cc:1289 -#, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" -"Zależność %s od %s nie może zostać spełniona, ponieważ nie znaleziono " -"pakietu %s" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Nie udało się utworzyć ominięcia" + +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Błąd wewnętrzny w AddDiversion" -#: cmdline/apt-get.cc:1312 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"Nie udało się spełnić zależności %s od %s: Zainstalowany pakiet %s jest zbyt " -"nowy" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Próba nadpisania ominięcia, %s -> %s i %s/%s" -#: cmdline/apt-get.cc:1351 +#: apt-inst/filelist.cc:506 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"Zależność %s od %s nie może zostać spełniona, ponieważ kandydująca wersja " -"pakietu %s nie spełnia wymagań wersji" +msgid "Double add of diversion %s -> %s" +msgstr "Podwójne dodanie ominięcia %s -> %s" -#: cmdline/apt-get.cc:1357 +#: apt-inst/filelist.cc:549 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "" -"Zależność %s od %s nie może zostać spełniona, ponieważ pakiet %s nie ma " -"wersji kandydującej" +msgid "Duplicate conf file %s/%s" +msgstr "Zduplikowany plik konfiguracyjny %s/%s" -#: cmdline/apt-get.cc:1380 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Nie udało się spełnić zależności %s od %s: %s" +msgid "The path %s is too long" +msgstr "Ścieżka %s jest zbyt długa" -#: cmdline/apt-get.cc:1395 +#: apt-inst/extract.cc:132 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Nie udało się spełnić zależności dla budowania %s." +msgid "Unpacking %s more than once" +msgstr "Wypakowanie %s więcej niż raz" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Nie udało się przetworzyć zależności dla budowania" +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "Ominięcie katalogu %s" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-inst/extract.cc:152 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Dziennik zmian %s (%s)" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Pakiet próbuje pisać do celu ominięcia %s/%s" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Obsługiwane moduły:" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Zbyt długa ścieżka ominięcia" -#: cmdline/apt-get.cc:1632 -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -msgstr "" -"Użycie: apt-get [opcje] polecenie\n" -" apt-get [opcje] install|remove pakiet1 [pakiet2 ...]\n" -" apt-get [opcje] source pakiet1 [pakiet2 ...]\n" -"\n" -"apt-get to prosty interfejs wiersza poleceń do pobierania i instalacji\n" -"pakietów. Najczęściej używane polecenia to update i install.\n" -"\n" -"Polecenia:\n" -" update - Pobiera nowe listy pakietów\n" -" upgrade - Wykonuje aktualizację\n" -" install - Instaluje nowe pakiety (pakiet to np. libc6, nie libc6.deb)\n" -" remove - Usuwa pakiety\n" -" autoremove - Usuwa automatycznie wszystkie nieużywane pakiety\n" -" purge - Usuwa pakiety łącznie z plikami konfiguracyjnymi\n" -" source - Pobiera archiwa źródłowe\n" -" build-dep - Konfiguruje zależności dla budowania pakietów źródłowych\n" -" dist-upgrade - Aktualizacja dystrybucji, patrz apt-get(8)\n" -" dselect-upgrade - Instaluje według wyborów dselect\n" -" clean - Usuwa pobrane pliki archiwów\n" -" autoclean - Usuwa stare pobrane pliki archiwów\n" -" check - Sprawdza, czy wszystkie zależności są spełnione\n" -" changelog - Pobiera i wyświetla dziennika zmian wybranych pakietów\n" -" download - Pobiera pakiet binarny do bieżącego katalogu\n" -"\n" -"Opcje:\n" -" -h Ten tekst pomocy\n" -" -q Nie pokazuje wskaźnika postępu (przydatne przy rejestrowaniu " -"działania)\n" -" -qq Nie wypisuje nic oprócz komunikatów błędów\n" -" -d Tylko pobiera - NIE instaluje ani nie rozpakowuje archiwów\n" -" -s Bez działania. Wykonuje tylko symulację ustalenia kolejności\n" -" -y Zakłada odpowiedź \"tak\" na wszystkie pytania, nie pyta\n" -" -f Próbuje naprawić system, w którym występują niespełnione zależności\n" -" -m Próbuje działać nawet jeśli nie można znaleźć niektórych archiwów\n" -" -u Pokazuje też listę aktualizowanych pakietów\n" -" -b Buduje pakiet po pobraniu archiwum źródłowego\n" -" -V Pokazuje pełną informację na temat wersji\n" -" -c=? Czyta wskazany plik konfiguracyjny.\n" -" -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n" -"Więcej informacji i opcji można znaleźć na stronach podręcznika\n" -"apt-get(8), sources.list(5) i apt.conf(5).\n" -" Ten APT ma moce Super Krowy.\n" +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 +#, c-format +msgid "Failed to stat %s" +msgstr "Nie udało się wykonać operacji stat na %s" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "" -"Należy podać przynajmniej jeden pakiet, dla którego mają zostać pobrane " -"źródła" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Nie udało się zmienić nazwy %s na %s" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "Katalog %s został zastąpiony obiektem nie będącym katalogiem" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Nie udało się znaleźć węzła w jego kubełku haszującym" -#: cmdline/apt-mark.cc:68 +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Ścieżka jest zbyt długa" + +#: apt-inst/extract.cc:421 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s nie może zostać oznaczony, ponieważ nie jest zainstalowany.\n" +msgid "Overwrite package match with no version for %s" +msgstr "Nadpisujący pakiet nie pasuje z wersją %s" -#: cmdline/apt-mark.cc:74 +#: apt-inst/extract.cc:438 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s został już ustawiony jako zainstalowany ręcznie.\n" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Plik %s/%s nadpisuje plik w pakiecie %s" -#: cmdline/apt-mark.cc:76 +#: apt-inst/extract.cc:498 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s został już ustawiony jako zainstalowany automatycznie.\n" +msgid "Unable to stat %s" +msgstr "Nie można wykonać operacji stat na %s" -#: cmdline/apt-mark.cc:241 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s został już zatrzymany.\n" +msgid "Failed to write file %s" +msgstr "Nie udało się zapisać pliku %s" -#: cmdline/apt-mark.cc:243 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s został już odznaczony jako zatrzymany.\n" +msgid "Failed to close file %s" +msgstr "Nie udało się zamknąć pliku %s" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "%s set on hold.\n" -msgstr "%s został zatrzymany.\n" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "To nie jest poprawne archiwum DEB, brakuje składnika \"%s\"" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Odznaczono zatrzymanie %s\n" +msgid "Internal error, could not locate member %s" +msgstr "Błąd wewnętrzny, nie udało się odnaleźć składnika %s" -# Musi pasować do su i sudo. -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" -"Uruchomienie dpkg nie powiodło się. Czy użyto uprawnień administratora?" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Plik kontrolny nie może zostać poprawnie zinterpretowany" -#: cmdline/apt-mark.cc:392 -#, fuzzy -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" -"Użycie: apt-mark [opcje] {auto|manual} pakiet1 [pakiet2 ...]\n" -"\n" -"apt-mark jest prostym poleceniem wiersza poleceń do oznaczania pakietów\n" -"jako zainstalowane automatycznie lub ręcznie. Może także służyć\n" -"do wyświetlania stanu oznaczeń.\n" -"\n" -"Polecenia:\n" -" auto - Oznacza dany pakiet jako zainstalowany automatycznie\n" -" manual - Oznacza dany pakiet jako zainstalowany ręcznie\n" -"\n" -"Opcje:\n" -" -h Ten tekst pomocy\n" -" -q Nie pokazuje wskaźnika postępu (przydatne przy rejestrowaniu " -"działania)\n" -" -qq Nie wypisuje nic oprócz komunikatów błędów\n" -" -s Symulacja - wyświetla jedynie co powinno zostać zrobione\n" -" -f zapis/odczyt oznaczenia jako automatyczny/ręczny danego pliku\n" -" -c=? Czyta wskazany plik konfiguracyjny.\n" -" -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n" -"Proszę zapoznać się ze stronami podręcznika systemowego apt-mark(8)\n" -"i apt.conf(5), aby uzyskać więcej informacji." +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Nieprawidłowy podpis archiwum" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Błąd przy czytaniu nagłówka składnika archiwum" -#: methods/cdrom.cc:203 +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Nie można odczytać bazy danych CD-ROM-ów %s" +msgid "Invalid archive member header %s" +msgstr "Nieprawidłowy nagłówek składnika archiwum: %s" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"Proszę użyć programu apt-cdrom, aby APT mógł rozpoznać tę płytę CD. Nowych " -"płyt nie można dodawać przy pomocy polecenia apt-get update" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Nieprawidłowy nagłówek składnika archiwum" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Niewłaściwa płyta CD" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Archiwum jest za krótkie" -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Nie udało się odmontować CD-ROM-u w %s, być może wciąż jest używany." +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Nie udało się odczytać nagłówków archiwum" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Nie odnaleziono dysku." +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Nie udało się utworzyć potoków" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Nie odnaleziono pliku" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Nie udało się uruchomić programu gzip " -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Nie udało się wykonać operacji stat" +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Uszkodzone archiwum" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Nie udało się ustawić czasu modyfikacji" +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Niepoprawna suma kontrolna tar, archiwum jest uszkodzone" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Nieprawidłowe URI, lokalne URI nie mogą zaczynać się od //" +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Nieznany typ nagłówka TAR %u, składnik %s" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Logowanie się" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Nie można określić nazwy zdalnego systemu" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Uruchamianie dpkg" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Nie udało się określić nazwy lokalnego systemu" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "System pakietów \"%s\" nie jest obsługiwany" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Nie udało się określić odpowiedniego typu systemu pakietów" + +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Serwer odrzucił połączenie, otrzymana odpowiedź: %s" +msgid "Wrote %i records.\n" +msgstr "Zapisano %i rekordów.\n" -#: methods/ftp.cc:225 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "USER failed, server said: %s" -msgstr "Polecenie USER nie powiodło się, odpowiedź serwera: %s" +msgid "Wrote %i records with %i missing files.\n" +msgstr "Zapisano %i rekordów z %i brakującymi plikami.\n" -#: methods/ftp.cc:232 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "PASS failed, server said: %s" -msgstr "Polecenie PASS nie powiodło się, odpowiedź serwera: %s" +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Zapisano %i rekordów z %i niepasującymi plikami\n" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"Określono serwer pośredniczący, ale nie określono skryptu rejestrowania, " -"Acquire::ftp::ProxyLogin jest puste." +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "Zapisano %i rekordów z %i brakującymi plikami i %i niepasującymi\n" -#: methods/ftp.cc:280 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "" -"Polecenie skryptu rejestrowania \"%s\" nie powiodło się, odpowiedź serwera: " -"%s" +msgid "Can't find authentication record for: %s" +msgstr "Nie udało się znaleźć wpisu uwierzytelnienia dla: %s" -#: methods/ftp.cc:306 +#: apt-pkg/indexcopy.cc:521 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "Polecenie TYPE nie powiodło się, odpowiedź serwera: %s" +msgid "Hash mismatch for: %s" +msgstr "Błędna suma kontrolna dla: %s" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Przekroczenie czasu połączenia" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Nie udało się otworzyć lub zanalizować zawartości list pakietów." -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Serwer zamknął połączenie" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Należy uruchomić apt-get update aby naprawić te problemy." -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Odpowiedź przepełniła bufor." +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Nie udało się odczytać list źródeł." -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Naruszenie zasad protokołu" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Pusty magazyn podręczny pakietów" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Nie udało się utworzyć gniazda" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Magazyn podręczny pakietów jest uszkodzony" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Nie udało się połączyć gniazda danych, przekroczenie czasu połączenia" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Magazyn podręczny pakietów jest w niezgodnej wersji" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Nie udało się" +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "Magazyn podręczny pakietów jest uszkodzony - jest zbyt mały" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Nie udało się połączyć pasywnego gniazda." +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "Ta wersja APT nie obsługuje systemu wersji \"%s\"" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo nie było w stanie uzyskać nasłuchującego gniazda" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Ten magazyn podręczny pakietów został zbudowany dla innej architektury" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Nie udało się przyłączyć gniazda" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Wymaga" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Nie udało się nasłuchiwać na gnieździe" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Wymaga wstępnie" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Nie udało się określić nazwy gniazda" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Sugeruje" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Nie można wysłać polecenia PORT" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Poleca" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Nieznana rodzina adresów %u (AF_*)" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "W konflikcie z" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "Polecenie EPRT nie powiodło się, odpowiedź serwera: %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Zastępuje" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Przekroczony czas połączenia gniazda danych" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Dezaktualizuje" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Nie udało się przyjąć połączenia" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Narusza zależności" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Nie udało się obliczyć skrótu pliku" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Rozszerza" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Nie można pobrać pliku, odpowiedź serwera: %s" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "ważny" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Przekroczony czas oczekiwania na dane" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "wymagany" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Nie udało się przesłać danych, odpowiedź serwera: %s" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standardowy" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Info" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "opcjonalny" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Nie można wywołać " +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "dodatkowy" -#: methods/connect.cc:76 +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Łączenie z %s (%s)" +msgid "The method driver %s could not be found." +msgstr "Nie udało się odnaleźć sterownika metody %s." -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Proszę sprawdzić czy pakiet \"dpkg-dev\" jest zainstalowany.\n" -#: methods/connect.cc:94 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Nie udało się utworzyć gniazda dla %s (f=%u t=%u p=%u)" +msgid "Method %s did not start correctly" +msgstr "Metoda %s nie uruchomiła się poprawnie" -#: methods/connect.cc:100 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Nie udało się zainicjalizować połączenia z %s:%s (%s)." +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Proszę włożyć do napędu \"%s\" dysk o nazwie: \"%s\" i nacisnąć enter." -#: methods/connect.cc:108 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Nie udało się połączyć z %s:%s (%s), przekroczenie czasu połączenia" +msgid "Index file type '%s' is not supported" +msgstr "Plik indeksu typu \"%s\" nie jest obsługiwany" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Nie udało się połączyć z %s:%s (%s)." +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Budowanie drzewa zależności" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Kandydujące wersje" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Generowanie zależności" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Odczyt informacji o stanie" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Connecting to %s" -msgstr "Łączenie z %s" +msgid "Failed to open StateFile %s" +msgstr "Nie udało się otworzyć pliku stanu %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Could not resolve '%s'" -msgstr "Nie udało się przetłumaczyć nazwy \"%s\"" +msgid "Failed to write temporary StateFile %s" +msgstr "Nie udało się zapisać tymczasowego pliku stanu %s" -#: methods/connect.cc:205 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Tymczasowy błąd przy tłumaczeniu \"%s\"" +msgid "rename failed, %s (%s -> %s)." +msgstr "nie udało się zmienić nazwy, %s (%s -> %s)" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Coś niewłaściwego stało się przy tłumaczeniu \"%s:%s\" (%i - %s)" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Błędna suma kontrolna" -#: methods/connect.cc:211 -#, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Coś niewłaściwego stało się przy tłumaczeniu \"%s:%s\" (%i - %s)" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Błędny rozmiar" + +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Nieprawidłowa operacja %s" -#: methods/connect.cc:258 +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Nie udało się połączyć z %s:%s:" - -#: methods/gpgv.cc:168 msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"Błąd wewnętrzny: Prawidłowy podpis, ale nie udało się ustalić odcisku klucza!" +"Nie udało się znaleźć oczekiwanego wpisu \"%s\" w pliku Release " +"(nieprawidłowy wpis sources.list lub nieprawidłowy plik)" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Napotkano przynajmniej jeden nieprawidłowy podpis." +#: apt-pkg/acquire-item.cc:1589 +#, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Nie udało się znaleźć sumy kontrolnej \"%s\" w pliku Release" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "" -"Nie udało się uruchomić gpgv by zweryfikować podpis (czy gpgv jest " -"zainstalowane?)" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Dla następujących identyfikatorów kluczy brakuje klucza publicznego:\n" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1669 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" +"Plik Release dla %s wygasnął (nieprawidłowy od %s). Aktualizacje z tego " +"repozytorium nie będą wykonywane." -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Nieznany błąd podczas uruchamiania gpgv" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Następujące podpisy były błędne:\n" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Nieprawidłowa dystrybucja: %s (oczekiwano %s, a otrzymano %s)" -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1721 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -"Następujące podpisy nie mogły zostać zweryfikowane z powodu braku klucza " -"publicznego:\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Puste pliki nie mogą być prawidłowymi archiwami" - -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Błąd przy pisaniu do pliku" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Błąd czytania z serwera: Zdalna strona zamknęła połączenie" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Błąd czytania z serwera" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Błąd przy pisaniu do pliku" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Operacja select nie powiodła się" - -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Przekroczenie czasu połączenia" - -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Błąd przy pisaniu do pliku wyjściowego" - -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Oczekiwanie na nagłówki" +"Podczas weryfikacji podpisu wystąpił błąd. Nie zaktualizowano repozytorium i " +"w dalszym ciągu będą używane poprzednie pliki indeksu. Błąd GPG %s: %s\n" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Nieprawidłowa linia nagłówka" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "Błąd GPG: %s: %s" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Serwer HTTP przysłał nieprawidłowy nagłówek odpowiedzi" +#: apt-pkg/acquire-item.cc:1859 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"Nie udało się odnaleźć pliku dla pakietu %s. Może to oznaczać, że trzeba " +"będzie ręcznie naprawić ten pakiet (z powodu brakującej architektury)." -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Serwer HTTP przysłał nieprawidłowy nagłówek Content-Length" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "Nie można znaleźć źródła do pobrania wersji \"%s\" pakietu \"%s\"" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Serwer HTTP przysłał nieprawidłowy nagłówek Content-Range" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Pliki indeksu pakietów są uszkodzone. Brak pola Filename: dla pakietu %s." -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Ten serwer HTTP nieprawidłowo obsługuje zakresy (ranges)" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Plik indeksu typu \"%s\" nie jest obsługiwany" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Nieznany format daty" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Nie udało się wykonać operacji stat na pliku %s." -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Błędne dane nagłówka" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Magazyn podręczny ma niezgodny system wersji" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Połączenie nie powiodło się" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Wystąpił błąd podczas przetwarzania %s (%s%d)" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Błąd wewnętrzny" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "Przekroczono liczbę pakietów, którą ten APT jest w stanie obsłużyć." -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Obliczanie aktualizacji..." +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Przekroczono liczbę wersji, którą ten APT jest w stanie obsłużyć." -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Gotowe" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Przekroczono liczbę opisów, którą ten APT jest w stanie obsłużyć." -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "Przekroczono liczbę zależności, którą ten APT jest w stanie obsłużyć." -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" msgstr "" +"Pakiet %s %s nie został odnaleziony podczas przetwarzania zależności plików" -#: apt-private/private-list.cc:164 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Naprawianie zależności..." - -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " nie udało się." - -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Nie udało się naprawić zależności" - -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Nie udało się zminimalizować zbioru aktualizacji" +msgid "Couldn't stat source package list %s" +msgstr "Nie udało się wykonać operacji stat na liście pakietów źródłowych %s" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Gotowe" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Czytanie list pakietów" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Należy uruchomić \"apt-get -f install\", aby je naprawić." +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Zbieranie zapewnień plików" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Niespełnione zależności. Proszę spróbować użyć -f." +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Nie udało się pisać do %s" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Błąd wejścia/wyjścia przy zapisywaniu podręcznego magazynu źródeł" -#: apt-private/private-output.cc:234 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Zainstalowany]" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Blok producenta %s nie zawiera odcisku" -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [Zainstalowany]" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Brakuje katalogu list %spartial." -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Brakuje katalogu archiwów %spartial." -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Zainstalowany]" +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "Nie udało się zablokować katalogu %s" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Zainstalowany]" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Pobieranie pliku %li z %li (pozostało %s)" -#: apt-private/private-output.cc:249 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "[upgradable from: %s]" +msgid "Retrieving file %li of %li" +msgstr "Pobieranie pliku %li z %li" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" +"Nie udało się pobrać niektórych plików indeksu, zostały one zignorowane lub " +"użyto ich starszej wersji." -#: apt-private/private-output.cc:253 -msgid "[residual-config]" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Należy dopisać jakieś URI pakietów źródłowych do pliku sources.list" + +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" +"Wartość %s jest nieprawidłowa dla APT::Default-Release, ponieważ takie " +"wydanie nie jest dostępne w źródłach" -#: apt-private/private-output.cc:435 +#: apt-pkg/policy.cc:422 #, c-format -msgid "but %s is installed" -msgstr "ale %s jest zainstalowany" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Nieprawidłowe informacje w pliku ustawień %s, brak nagłówka Package" -#: apt-private/private-output.cc:437 +#: apt-pkg/policy.cc:444 #, c-format -msgid "but %s is to be installed" -msgstr "ale %s ma zostać zainstalowany" +msgid "Did not understand pin type %s" +msgstr "Nierozpoznany typ przypinania %s" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "ale nie da się go zainstalować" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Brak (lub zerowy) priorytet przypięcia" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "ale jest pakietem wirtualnym" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" +"Nie udało się wykonać natychmiastowej konfiguracji %s. Proszę wykonać \"man " +"5 apt.conf\" i zapoznać się z wpisem APT::Immediate-Configure aby dowiedzieć " +"się więcej. (%d)" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "ale nie jest zainstalowany" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Nie udało się skonfigurować \"%s\". " -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "ale nie zostanie zainstalowany" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"To uruchomienie programu będzie wymagało tymczasowego usunięcia istotnego " +"pakietu %s z powodu pętli konfliktów/wymagań wstępnych. Często jest to złe " +"rozwiązanie, ale jeśli jest się pewnym swoich działań, należy włączyć opcję " +"APT::Force-LoopBreak." -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " lub" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "Linia %u w liście źródeł %s jest zbyt długa." -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Następujące pakiety mają niespełnione zależności:" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Odmontowanie CD-ROM-u...\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Zostaną zainstalowane następujące NOWE pakiety:" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "Użycie %s jako punktu montowania CD-ROM-u\n" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Następujące pakiety zostaną USUNIĘTE:" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Oczekiwanie na płytę...\n" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Następujące pakiety zostały zatrzymane:" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Montowanie CD-ROM-u...\n" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Następujące pakiety zostaną zaktualizowane:" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identyfikacja... " -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Zostaną zainstalowane STARE wersje następujących pakietów:" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Etykieta: %s \n" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Zostaną zmienione następujące zatrzymane pakiety:" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Skanowanie płyty w poszukiwaniu plików indeksu...\n" -#: apt-private/private-output.cc:668 +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "%s (due to %s) " -msgstr "%s (z powodu %s) " +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" +"Znaleziono %zu indeksów pakietów, %zu indeksów źródłowych, %zu indeksów " +"tłumaczeń i %zu podpisów\n" -#: apt-private/private-output.cc:676 +#: apt-pkg/cdrom.cc:744 msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"UWAGA: Zostaną usunięte następujące istotne pakiety.\n" -"NIE należy kontynuować, jeśli nie jest się pewnym tego co się robi!" +"Nie można odnaleźć żadnych plików pakietów, być może nie jest to dysk " +"Debiana lub jest to inna architektura?" -#: apt-private/private-output.cc:707 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu aktualizowanych, %lu nowo instalowanych, " +msgid "Found label '%s'\n" +msgstr "Znaleziono etykietę \"%s\"\n" -#: apt-private/private-output.cc:711 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu ponownie instalowanych, " +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "To nie jest prawidłowa nazwa, proszę spróbować ponownie.\n" -#: apt-private/private-output.cc:713 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "%lu downgraded, " -msgstr "%lu cofniętych wersji, " +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Płyta nosi nazwę: \n" +"\"%s\"\n" -#: apt-private/private-output.cc:715 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu usuwanych i %lu nieaktualizowanych.\n" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopiowanie list pakietów..." -#: apt-private/private-output.cc:719 +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Zapisywanie nowej listy źródeł\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Źródła dla tej płyty to:\n" + +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu nie w pełni zainstalowanych lub usuniętych.\n" +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"Pakiet %s ma zostać ponownie zainstalowany, ale nie można znaleźć jego " +"archiwum." -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[T/n]" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Błąd, pkgProblemResolver::Resolve zwrócił błąd, może to być spowodowane " +"zatrzymanymi pakietami." -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[t/N]" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Nie udało się naprawić problemów, zatrzymano uszkodzone pakiety." + +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Wysyłanie scenariusza do mechanizmu rozwiązywania zależności" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "T" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Wysyłanie żądania do mechanizmu rozwiązywania zależności" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "N" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Przygotowywanie na otrzymanie rozwiązania" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Polecenie update nie wymaga żadnych argumentów" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" +"Zewnętrzny mechanizm rozwiązywania zależności zawiódł, bez podania " +"prawidłowego komunikatu o błędzie" -#: apt-private/private-update.cc:90 +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Wykonywanie zewnętrznego mechanizmu rozwiązywania zależności" + +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "Unable to parse package file %s (1)" +msgstr "Nie udało się zanalizować pliku pakietu %s (1)" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Nie udało się zanalizować pliku pakietu %s (2)" -#: apt-private/private-show.cc:156 +#: apt-pkg/indexrecords.cc:78 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "Unable to parse Release file %s" +msgstr "Nie udało się przeanalizować pliku Release %s" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "Brak sekcji w pliku Release %s" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Błąd wewnętrzny, użyto InstallPackages z uszkodzonymi pakietami!" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Brak wpisu Hash w pliku Release %s" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Pakiety powinny zostać usunięte, ale Remove jest wyłączone." +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Nieprawidłowy wpis Valid-Until w pliku Release %s" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Błąd wewnętrzny, sortowanie niezakończone" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Nieprawidłowy wpis Date w pliku Release %s" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Nieprawidłowa linia %lu w liście źródeł %s (analiza URI)" + +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" -"Wystąpił dziwny błąd - rozmiary się nie zgadzają. Proszę to zgłosić pod " -"apt@packages.debian.org" +"Nieprawidłowa linia %lu w liście źródeł %s ([opcja] nie dająca się sparsować)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Konieczne pobranie %sB/%sB archiwów.\n" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Nieprawidłowa linia %lu w liście źródeł %s ([opcja] zbyt krótka)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:184 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Konieczne pobranie %sB archiwów.\n" +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Nieprawidłowa linia %lu w liście źródeł %s ([%s] nie jest przypisane)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Po tej operacji zostanie dodatkowo użyte %sB miejsca na dysku.\n" +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Nieprawidłowa linia %lu w liście źródeł %s ([%s] nie ma klucza)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Po tej operacji zostanie zwolnione %sB miejsca na dysku.\n" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "" +"Nieprawidłowa linia %lu w liście źródeł %s ([%s] klucz %s nie ma wartości)" -#: apt-private/private-install.cc:200 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Niestety w %s nie ma wystarczającej ilości wolnego miejsca." +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Nieprawidłowa linia %lu w liście źródeł %s (URI)" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Wystąpiły problemy, a użyto -y bez --force-yes" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Nieprawidłowa linia %lu w liście źródeł %s (dystrybucja)" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Nakazano wykonywać tylko trywialne operacje, a ta do nich nie należy." +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Nieprawidłowa linia %lu w liście źródeł %s (analiza URI)" -# Bezpieczniej jest nie używać tu polskich znaków. -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Tak, jestem pewien!" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Nieprawidłowa linia %lu w liście źródeł %s (bezwzględna dystrybucja)" -#: apt-private/private-install.cc:222 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Zaraz stanie się coś potencjalnie szkodliwego.\n" -"Aby kontynuować proszę napisać zdanie \"%s\"\n" -" ?] " +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Nieprawidłowa linia %lu w liście źródeł %s (analiza dystrybucji)" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Przerwane." +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Otwieranie %s" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Kontynuować?" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Nieprawidłowa linia %u w liście źródeł %s (typ)" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Nie udało się pobrać niektórych plików" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Typ \"%s\" jest nieznany w linii %u listy źródeł %s" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Nie udało się pobrać niektórych archiwów, proszę spróbować uruchomić apt-get " -"update lub użyć opcji --fix-missing." +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Typ \"%s\" jest nieznany w linii %u listy źródeł %s" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing i zamiana nośników nie są obecnie obsługiwane" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Wydanie \"%s\" dla \"%s\" nie zostało znalezione" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Nie udało się poprawić brakujących pakietów." +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Wersja \"%s\" dla \"%s\" nie została znaleziona" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Przerywanie instalacji" +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Nie udało się odnaleźć zadania \"%s\"" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -"Następujący pakiet zniknął z tego systemu, ponieważ wszystkie jego pliki " -"zostały nadpisane przez inne pakiety:" -msgstr[1] "" -"Następujące pakiety zniknęły z tego systemu, ponieważ wszystkie ich pliki " -"zostały nadpisane przez inne pakiety:" -msgstr[2] "" -"Następujące pakiety zniknęły z tego systemu, ponieważ wszystkie ich pliki " -"zostały nadpisane przez inne pakiety:" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "" +"Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\"" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Uwaga: dpkg wykonał to automatycznie i celowo." +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "" +"Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\"" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Nic nie powinno być usuwane, AutoRemover nie zostanie uruchomiony" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" +"Nie udało się wybrać wersji z pakietu \"%s\", ponieważ jest on czysto " +"wirtualny" -#: apt-private/private-install.cc:499 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Wygląda na to, że AutoRemover coś uszkodził, a to naprawdę nie\n" -"powinno się zdarzyć. Prosimy o zgłoszenie błędu w pakiecie apt." +"Nie udało się wybrać zainstalowanej ani kandydującej wersji pakietu \"%s\", " +"ponieważ nie ma żadnej z nich" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "Następujące informacje mogą pomóc rozwiązać sytuację:" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"Nie udało się wybrać najnowszej wersji pakietu \"%s\", ponieważ jest on " +"czysto wirtualny" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Błąd wewnętrzny spowodowany przez AutoRemover" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" +"Nie udało się wybrać wersji kandydującej pakietu %s, ponieważ nie ma " +"kandydata" -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "" -"Następujący pakiet został zainstalowany automatycznie i nie jest już więcej " -"wymagany:" -msgstr[1] "" -"Następujące pakiety zostały zainstalowane automatycznie i nie są już więcej " -"wymagane:" -msgstr[2] "" -"Następujące pakiety zostały zainstalowane automatycznie i nie są już więcej " -"wymagane:" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"Nie udało się wybrać zainstalowanej wersji z pakietu %s, ponieważ nie jest " +"zainstalowany" -#: apt-private/private-install.cc:517 +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "" -"%lu pakiet został zainstalowany automatycznie i nie jest już więcej " -"wymagany.\n" -msgstr[1] "" -"%lu pakiety zostały zainstalowane automatycznie i nie są już więcej " -"wymagane.\n" -msgstr[2] "" -"%lu pakietów zostało zainstalowanych automatycznie i nie są już więcej " -"wymagane.\n" +msgid "%lid %lih %limin %lis" +msgstr "%lidni %lig %limin %lis" -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Aby go usunąć należy użyć \"apt-get autoremove\"." -msgstr[1] "Aby je usunąć należy użyć \"apt-get autoremove\"." -msgstr[2] "Aby je usunąć należy użyć \"apt-get autoremove\"." +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%lig %limin %lis" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "" -"Należy uruchomić \"apt-get -f install\", aby naprawić poniższe problemy:" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Niespełnione zależności. Proszę spróbować wykonać \"apt-get -f install\" bez " -"pakietów (lub podać rozwiązanie)." +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." -msgstr "" -"Nie udało się zainstalować niektórych pakietów. Może to oznaczać,\n" -"że zażądano niemożliwej sytuacji lub użyto dystrybucji niestabilnej,\n" -"w której niektóre pakiety nie zostały jeszcze utworzone lub przeniesione\n" -"z katalogu Incoming (\"Przychodzące\")." +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "Nie odnaleziono wyboru %s" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Pakiety są uszkodzone" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Dla pliku blokady %s tylko do odczytu nie zostanie użyta blokada" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Zostaną zainstalowane następujące dodatkowe pakiety:" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Nie udało się otworzyć pliku blokady %s" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Sugerowane pakiety:" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Dla pliku blokady %s montowanego przez NFS nie zostanie użyta blokada" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Polecane pakiety:" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Nie udało się uzyskać blokady %s" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -"Pomijanie %s, jest już zainstalowane, a nie została wybrana aktualizacja.\n" +"Lista plików nie może zostać stworzona, ponieważ \"%s\" nie jest katalogiem" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:394 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "Ignorowanie \"%s\" w katalogu \"%s\", ponieważ nie jest to zwykły plik" + +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -"Pomijanie %s, nie jest zainstalowane, a wybrano wyłącznie aktualizacje.\n" +"Ignorowanie pliku \"%s\" w katalogu \"%s\", ponieważ nie ma on rozszerzenia " +"pliku" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:421 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"Ponowna instalacja pakietu %s nie jest możliwa, nie może on zostać pobrany.\n" +"Ignorowanie pliku \"%s\" w katalogu \"%s\", ponieważ ma on nieprawidłowe " +"rozszerzenie pliku" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s jest już w najnowszej wersji.\n" +msgid "Sub-process %s received a segmentation fault." +msgstr "Podproces %s spowodował naruszenie ochrony pamięci." -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:826 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Wybrano wersję \"%s\" (%s) pakietu \"%s\"\n" +msgid "Sub-process %s received signal %u." +msgstr "Podproces %s otrzymał sygnał %u." -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Wybrano wersję \"%s\" (%s) pakietu \"%s\", z powodu \"%s\"\n" +msgid "Sub-process %s returned an error code (%u)" +msgstr "Podproces %s zwrócił kod błędu (%u)" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" -"Pakiet %s nie jest zainstalowany, więc nie zostanie usunięty. Czy chodziło o " -"\"%s\"?\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "Podproces %s zakończył się niespodziewanie" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Pakiet \"%s\" nie jest zainstalowany, więc nie zostanie usunięty\n" +msgid "Problem closing the gzip file %s" +msgstr "Problem przy zamykaniu pliku gzip %s" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" -"UWAGA: To jest tylko symulacja!\n" -" apt-get wymaga do normalnego działania uprawnień administratora.\n" -" Aktualnie blokowanie jest wyłączone, więc nie należy polegać\n" -" na związku z rzeczywistą sytuacją!" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Nie udało się otworzyć pliku %s" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "UWAGA: Następujące pakiety nie mogą zostać zweryfikowane!" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Nie udało się otworzyć deskryptora pliku %d" + +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Nie udało się utworzyć IPC z podprocesem" + +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Nie udało się uruchomić kompresora " + +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "należało przeczytać jeszcze %llu, ale nic nie zostało" + +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "należało zapisać jeszcze %llu, ale nie udało się to" + +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Problem przy zamykaniu pliku %s" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Zignorowano ostrzeżenie uwierzytelniania.\n" +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Problem przy zapisywaniu pliku %s w %s" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Niektóre pakiety nie mogły zostać zweryfikowane" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Problem przy odlinkowywaniu pliku %s" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Zainstalować te pakiety bez weryfikacji?" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Problem przy zapisywaniu pliku na dysk" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Nie udało się zmienić nazwy %s na %s" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Błąd!" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%c%s... Done" +msgstr "%c%s... Gotowe" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -# Ujednolicono z aptitude -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Stary " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Pobieranie:" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Gotowe" -# Wyrównane do Hit i Err. -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign. " +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Nie można wykonać mmap na pustym pliku" -# Wyrównane do Hit i Ign. -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Błąd " +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Nie udało się zduplikować deskryptora pliku %i" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:119 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Pobrano %sB w %s (%sB/s)\n" +msgid "Couldn't make mmap of %llu bytes" +msgstr "Nie udało się wykonać mmap %llu bajtów" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Nie udało się zamknąć mmap" + +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Nie udało się zsynchronizować mmap" + +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid " [Working]" -msgstr " [Pracuje]" +msgid "Couldn't make mmap of %lu bytes" +msgstr "Nie udało się wykonać mmap %lu bajtów" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Nie udało się uciąć zawartości pliku %s" + +#: apt-pkg/contrib/mmap.cc:341 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -"Zmiana nośnika: Proszę włożyć dysk oznaczony\n" -" \"%s\"\n" -"do napędu \"%s\" i nacisnąć enter\n" +"Brak miejsca dla dynamicznego MMap. Proszę zwiększyć rozmiar APT::Cache-" +"Start. Bieżąca wartość: %lu. (man 5 apt.conf)" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "No mirror file '%s' found " -msgstr "Nie znaleziono pliku serwera lustrzanego \"%s\"" +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" +"Nie udało się zwiększyć rozmiaru MMap, ponieważ limit %lu bajtów został już " +"osiągnięty." -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"Nie udało się zwiększyć rozmiaru MMap, ponieważ automatycznie powiększanie " +"zostało wyłączone przez użytkownika." + +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Nie udało się otworzyć pliku serwera lustrzanego \"%s\"" +msgid "Unable to stat the mount point %s" +msgstr "Nie udało się wykonać operacji stat na punkcie montowania %s" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Nie udało się otworzyć pliku serwera lustrzanego \"%s\"" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Nie udało się wykonać operacji stat na CDROM-ie" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "[Mirror: %s]" -msgstr "[Serwer lustrzany: %s]" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Nierozpoznany skrót typu: \"%c\"" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Nie udało się utworzyć potoku IPC do podprocesu" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Otwieranie pliku konfiguracyjnego %s" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Połączenie zostało przedwcześnie zamknięte" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Błąd składniowy %s:%u: Blok nie zaczyna się nazwą." -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Nieprawidłowe ustawienie domyślne!" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Błąd składniowy %s:%u: Błędny znacznik" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Proszę nacisnąć enter, aby kontynuować." +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Błąd składniowy %s:%u: Po wartości występują śmieci" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Czy usunąć wszystkie pobrane wcześniej pliki .deb?" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "" +"Błąd składniowy %s:%u: Dyrektywy mogą występować tylko na najwyższym poziomie" -# Note to translators: The following four messages belong together. It doesn't -# matter where sentences start, but it has to fit in just these four lines, and -# at only 80 characters per line, if possible. -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Wystąpiły problemy przy rozpakowywaniu. Zainstalowane pakiety zostaną" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Błąd składniowy %s:%u: Zbyt wiele zagnieżdżonych operacji include" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "skonfigurowane. Może to spowodować podwójne błędy lub błędy" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Błąd składniowy %s:%u: Włączony tutaj" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"spowodowane brakującymi zależnościami. Jest to normalne. Tylko błędy nad tym" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Błąd składniowy %s:%u: Nieobsługiwana dyrektywa \"%s\"" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"komunikatem są istotne. Proszę je poprawić i ponownie wybrać [I]nstalację." +"Błąd składniowy %s:%u: czysta dyrektywa wymaga drzewa opcji jako argumentu" -#: dselect/update:30 -msgid "Merging available information" -msgstr "Łączenie informacji o dostępnych pakietach" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Błąd składniowy %s:%u: Śmieci na końcu pliku" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode wywołane na wciąż podłączonym węźle" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "Brak zainstalowanej bazy kluczy w %s." -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Nie udało się odnaleźć elementu tablicy haszującej!" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Opcja linii poleceń \"%c\" [z %s] jest nieznana." -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Nie udało się utworzyć ominięcia" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Niezrozumiała opcja linii poleceń %s" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Błąd wewnętrzny w AddDiversion" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Opcja linii poleceń %s nie jest typu logicznego" + +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Opcja %s wymaga argumentu." -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Próba nadpisania ominięcia, %s -> %s i %s/%s" +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Opcja %s: Specyfikacja elementu konfiguracji musi zawierać =<wartość>." -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Podwójne dodanie ominięcia %s -> %s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Opcja %s wymaga argumentu typu całkowitego, nie \"%s\"" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Zduplikowany plik konfiguracyjny %s/%s" +msgid "Option '%s' is too long" +msgstr "Opcja \"%s\" jest zbyt długa" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "The path %s is too long" -msgstr "Ścieżka %s jest zbyt długa" +msgid "Sense %s is not understood, try true or false." +msgstr "Znaczenie %s jest nieznane, proszę spróbować true lub false." -#: apt-inst/extract.cc:132 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "Unpacking %s more than once" -msgstr "Wypakowanie %s więcej niż raz" +msgid "Invalid operation %s" +msgstr "Nieprawidłowa operacja %s" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "The directory %s is diverted" -msgstr "Ominięcie katalogu %s" +msgid "Installing %s" +msgstr "Instalowanie %s" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Pakiet próbuje pisać do celu ominięcia %s/%s" +msgid "Configuring %s" +msgstr "Konfigurowanie %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Zbyt długa ścieżka ominięcia" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Usuwanie %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "Failed to stat %s" -msgstr "Nie udało się wykonać operacji stat na %s" +msgid "Completely removing %s" +msgstr "Całkowite usuwanie %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Nie udało się zmienić nazwy %s na %s" +msgid "Noting disappearance of %s" +msgstr "Proszę odnotować zniknięcie %s" -#: apt-inst/extract.cc:249 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Katalog %s został zastąpiony obiektem nie będącym katalogiem" +msgid "Running post-installation trigger %s" +msgstr "Uruchamianie wyzwalacza post-installation %s" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Nie udało się znaleźć węzła w jego kubełku haszującym" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Brakuje katalogu \"%s\"" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Ścieżka jest zbyt długa" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Nie udało się otworzyć pliku \"%s\"" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Nadpisujący pakiet nie pasuje z wersją %s" +msgid "Preparing %s" +msgstr "Przygotowywanie %s" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Plik %s/%s nadpisuje plik w pakiecie %s" +msgid "Unpacking %s" +msgstr "Rozpakowywanie %s" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Unable to stat %s" -msgstr "Nie można wykonać operacji stat na %s" +msgid "Preparing to configure %s" +msgstr "Przygotowywanie do konfiguracji %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Failed to write file %s" -msgstr "Nie udało się zapisać pliku %s" +msgid "Installed %s" +msgstr "Pakiet %s został zainstalowany" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to close file %s" -msgstr "Nie udało się zamknąć pliku %s" +msgid "Preparing for removal of %s" +msgstr "Przygotowywanie do usunięcia %s" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "To nie jest poprawne archiwum DEB, brakuje składnika \"%s\"" +msgid "Removed %s" +msgstr "Pakiet %s został usunięty" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Błąd wewnętrzny, nie udało się odnaleźć składnika %s" +msgid "Preparing to completely remove %s" +msgstr "Przygotowywanie do całkowitego usunięcia %s" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Plik kontrolny nie może zostać poprawnie zinterpretowany" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Pakiet %s został całkowicie usunięty" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Nieprawidłowy podpis archiwum" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Błąd przy czytaniu nagłówka składnika archiwum" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Nie udało się pisać do %s" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Nieprawidłowy nagłówek składnika archiwum: %s" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Nieprawidłowy nagłówek składnika archiwum" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Archiwum jest za krótkie" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "Operacja została przerwana, zanim mogła zostać zakończona" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Nie udało się odczytać nagłówków archiwum" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "Brak raportu programu apport, ponieważ osiągnięto limit MaxReports" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Nie udało się utworzyć potoków" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "problemy z zależnościami - pozostawianie nieskonfigurowanego" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Nie udało się uruchomić programu gzip " +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Brak raportu programu apport, ponieważ komunikat błędu wskazuje, że " +"przyczyna niepowodzenia leży w poprzednim błędzie." -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Uszkodzone archiwum" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Brak raportu programu apport, ponieważ komunikat błędu wskazuje na " +"przepełnienie dysku" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Niepoprawna suma kontrolna tar, archiwum jest uszkodzone" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Brak raportu programu apport, ponieważ komunikat błędu wskazuje na błąd " +"braku wolnej pamięci" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Brak raportu programu apport, ponieważ komunikat błędu wskazuje na " +"przepełnienie dysku" + +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Brak raportu programu apport, ponieważ komunikat błędu wskazuje na błąd " +"wejścia/wyjścia dpkg" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Nieznany typ nagłówka TAR %u, składnik %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Nie udało się zablokować katalogu administracyjnego (%s), czy inny proces go " +"używa?" + +# Musi pasować do su i sudo. +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "" +"Nie udało się zablokować katalogu administracyjnego (%s), czy użyto " +"uprawnień administratora?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"dpkg został przerwany, należy wykonać ręcznie \"%s\", aby naprawić problem." + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Niezablokowany" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/pt.po b/po/pt.po index 339b70694..9e76976f1 100644 --- a/po/pt.po +++ b/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2012-06-29 15:45+0100\n" "Last-Translator: Miguel Figueiredo <elmig@debianpt.org>\n" "Language-Team: Portuguese <traduz@debianpt.org>\n" @@ -18,3270 +18,3271 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 1.0\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "Tipo do ficheiro de índice '%s' não é suportado" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "Não foi possível ler %s" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Impossível mudar para %s" - -#: apt-pkg/clean.cc:64 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Unable to stat %s." -msgstr "Não foi possível fazer stat %s." +msgid "Package %s version %s has an unmet dep:\n" +msgstr "O pacote %s versão %s tem uma dependência não satisfeita:\n" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Total de nomes de pacotes: " -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "A correr o dpkg" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Total de estruturas de pacotes: " -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Sistema de empacotamento '%s' não é suportado" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Pacotes normais: " -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "" -"Não foi possível determinar um tipo de sistema de empacotamento adequado" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Pacotes virtuais puros: " -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Escreveu %i registos.\n" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Pacotes virtuais únicos: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Escreveu %i registos com %i ficheiros em falta.\n" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Pacotes virtuais misturados: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Escreveu %i registos com %i ficheiros não coincidentes\n" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Faltam: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"Escreveu %i registos com %i ficheiros em falta e %i ficheiros não " -"coincidentes\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Total de versões distintas: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "Não foi possível encontrar registo de autenticação para: %s" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Total de descrições distintas: " -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "Hash não coincide para: %s" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Total de dependências: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "O driver do método %s não pôde ser encontrado." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Total de relações ver/ficheiro: " -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Verifique se o pacote 'dpkg-dev' está instalado.\n" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Total de relações Desc/Ficheiro: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Método %s não iniciou correctamente" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Total de Mapeamentos 'Provides': " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "" -"Por favor insira o disco denominado: '%s' no leitor '%s' e pressione enter." +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Total de strings globbed: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "" -"As listas de pacotes ou o ficheiro de status não pôde ser analisado ou " -"aberto." +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Espaço total de dependência de versão: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Você terá que executar apt-get update para corrigir estes problemas" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Espaço total desperdiçado: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "A lista de fontes não pôde ser lida." +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Espaço total contabilizado: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Cache de pacotes vazia" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "O ficheiro do pacote %s está dessincronizado." -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "O ficheiro de cache de pacotes está corrompido" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Não foi encontrado nenhum pacote" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "O ficheiro de cache de pacotes é de uma versão incompatível" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Tem de fornecer pelo menos um padrão de busca" -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "O ficheiro de cache de pacotes está corrompido, é demasiado pequeno" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" +"Este comando foi depreceado. Em vez disso por favor utilize 'apt-mark " +"showauto'." -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Este APT não suporta o sistema de versões '%s'" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "A cache de pacotes foi gerada para uma arquitectura diferente" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Depende" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Pré-Depende" +msgid "Unable to locate package %s" +msgstr "Não foi possível encontrar o pacote %s" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Sugere" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Ficheiros de Pacotes :" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Recomenda" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" +"A cache está dessincronizada, não pode x-referenciar um ficheiro de pacote" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Em Conflito" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Pacotes Marcados:" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Substitui" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(não encontrado)" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Obsoleta" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Instalado: " -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Estraga" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Candidato: " -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Aumenta" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(nenhum)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "importante" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Marcação do Pacote: " -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "necessário" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Tabela de Versão:" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "padrão" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s para %s compilado em %s %s\n" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opcional" +#: cmdline/apt-cache.cc:1749 +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Utilização: apt-cache [opções] comando\n" +" apt-cache [opções] showpkg pacote1 [pacote2 ...]\n" +" apt-cache [opções] showsrc pacote1 [pacote2 ...]\n" +"\n" +"O apt-cache é uma ferramenta de baixo nível utilizada para questionar\n" +" informação dos ficheiros de cache binários do APT\n" +"\n" +"Comandos:\n" +" gencaches - Construir as caches de pacotes e de código-fonte\n" +" showpkg - Mostrar informações gerais sobre um pacote\n" +" showsrc - Mostrar registos de código-fonte\n" +" stats - Mostrar algumas estatísticas simples\n" +" dump - Mostrar todo o ficheiro de forma concisa\n" +" dumpavail - Escrever um ficheiro disponível para stdout\n" +" unmet - Mostrar dependências não satisfeitas\n" +" search - Procurar na lista de pacotes por um padrão regex\n" +" show - Mostrar um registo legível sobre o pacote\n" +" depends - Mostrar informações em bruto de dependências de um pacote\n" +" rdepends - Mostrar a informação de dependências inversas de um pacote\n" +" pkgnames - Listar o nome de todos os pacotes no sistema\n" +" dotty - Gerar gráficos de pacotes para o GraphViz\n" +" xvcg - Gerar gráficos de pacotes para o xvcg\n" +" policy - Mostrar as configurações de políticas\n" +"\n" +"Opções:\n" +" -h Este texto de ajuda.\n" +" -p=? A cache de pacotes.\n" +" -s=? A cache de fontes.\n" +" -q Desabilitar o indicador de progresso.\n" +" -i Mostrar apenas dependências importantes para o comando unmet.\n" +" -c=? Ler este ficheiro de configuração.\n" +" -o=? Definir uma opção arbitrária de configuração, p.e.: -o dir::cache=/" +"tmp\n" +"Para mais informações veja as páginas do manual apt-cache(8) e apt.conf(5).\n" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "" +"Por favor indique um nome para este Disco, tal como 'Debian 5.0.3 Disco 1'" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Tipo do ficheiro de índice '%s' não é suportado" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Por favor insira um Disco no leitor e pressione enter" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Regex compilation error - %s" -msgstr "Erro de compilação de regex - %s" +msgid "Failed to mount '%s' to '%s'" +msgstr "Falhou ao montar '%s' para '%s'" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "A cache possui um sistema de versões incompatível" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Ocorreu um erro ao processar %s (%s%d)" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Repita este processo para o resto dos CDs no seu conjunto." -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" -"Uau, você excedeu o número de nomes de pacotes que este APT é capaz de " -"suportar." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "os argumentos não estão em pares" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -"Uau, você excedeu o número de versões que este APT é capaz de suportar." +"Utilização: apt-config [opções] comando\n" +"\n" +"O apt-config é uma ferramenta simples para ler o ficheiro de config do APT\n" +"\n" +"Comandos:\n" +" shell - Modo shell\n" +" dump - Mostrar a configuração\n" +"\n" +"Opções:\n" +" -h Este texto de ajuda.\n" +" -c=? Ler este ficheiro de configuração\n" +" -o=? Definir uma opção arbitrária de configuração, p.e.: -o dir::cache=/" +"tmp\n" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "" -"Uau, você excedeu o número de descrições que este APT é capaz de suportar." +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Não foi possível encontrar o pacote através da expressão regular '%s'" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "" -"Uau, você excedeu o número de dependências que este APT é capaz de suportar." +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Não foi possível encontrar o pacote através da expressão regular '%s'" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "" -"O pacote %s %s não foi encontrado ao processar as dependências de ficheiros" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Não foi possível encontrar o pacote através da expressão regular '%s'" -#: apt-pkg/pkgcachegen.cc:1211 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Não foi possível executar stat à lista de pacotes de código fonte %s" - -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "A ler as listas de pacotes" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "A escolher '%s' como pacote pacote de código fonte em vez de '%s'\n" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "A obter File Provides" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Ignorar a versão '%s', não disponível, do pacote '%s'" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Unable to write to %s" -msgstr "Não conseguiu escrever para %s" +msgid "Couldn't find package %s" +msgstr "Impossível encontrar o pacote %s" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Erro de I/O ao gravar a cache de código fonte" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s está definido para ser instalado manualmente.\n" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "Enviar cenário a resolver" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s está definido para ser instalado automaticamente.\n" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "Enviar pedido para resolvedor" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" +"Este comando foi depreceado. Em vez disso, por favor utilize 'apt-mark auto' " +"e 'apt-mark manual'." -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "Preparar para receber solução" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Erro Interno, o solucionador de problemas estragou coisas" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "O resolvedor externo falhou sem uma mensagem de erro adequada" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Impossível criar acesso exclusivo ao directório de downloads" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "Executar resolvedor externo" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Tem de especificar pelo menos um pacote para obter o código fonte de" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "falhou renomear, %s (%s -> %s)." +msgid "Unable to find a source package for %s" +msgstr "Não foi possível encontrar um pacote de código fonte para %s" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Código de verificação hash não coincide" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Tamanho incorrecto" - -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Operação %s inválida" - -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:786 #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" -"Incapaz de encontrar a entrada '%s' esperada no ficheiro Release (entrada " -"errada em sources.list ou ficheiro malformado)" - -#: apt-pkg/acquire-item.cc:1589 -#, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Não foi possível encontrar hash sum para '%s' no ficheiro Release" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"Não existe qualquer chave pública disponível para as seguintes IDs de " -"chave:\n" +"AVISO: o empacotamento de '%s' é mantido no sistema de controle de versões " +"'%s' em:\n" +"%s\n" -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:791 #, c-format msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -"O ficheiro Release para %s está expirado (inválido desde %s). Não serão " -"aplicadas as actualizações para este repositório." +"Por favor utilize:\n" +"bzr branch %s\n" +"para obter as últimas actualizações (possivelmente por lançar) ao pacote.\n" -#: apt-pkg/acquire-item.cc:1691 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Distribuição em conflito: %s (esperado %s mas obtido %s)" +msgid "Skipping already downloaded file '%s'\n" +msgstr "A saltar o ficheiro '%s', já tinha sido feito download'\n" -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Ocorreu um erro durante a verificação da assinatura. O repositório não está " -"actualizado e serão utilizados os ficheiros anteriores de índice. Erro do " -"GPG: %s: %s\n" +msgid "Couldn't determine free space in %s" +msgstr "Não foi possível determinar o espaço livre em %s" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:882 #, c-format -msgid "GPG error: %s: %s" -msgstr "Erro GPG: %s: %s" +msgid "You don't have enough free space in %s" +msgstr "Você não possui espaço livre suficiente em %s" -#: apt-pkg/acquire-item.cc:1859 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"Não foi possível localizar um ficheiro para o pacote %s. Isto pode " -"significar que você precisa corrigir manualmente este pacote. (devido a " -"arquitectura em falta)" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "É necessário obter %sB/%sB de arquivos de código fonte.\n" -#: apt-pkg/acquire-item.cc:1925 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "Não conseguiu encontrar uma fonte para obter a versão '%s' de '%s'" +msgid "Need to get %sB of source archives.\n" +msgstr "É necessário obter %sB de arquivos de código fonte.\n" -#: apt-pkg/acquire-item.cc:1983 +#: cmdline/apt-get.cc:902 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Os arquivos de índice de pacotes estão corrompidos. Nenhum campo Filename: " -"para o pacote %s." +msgid "Fetch source %s\n" +msgstr "Obter código fonte %s\n" -#: apt-pkg/vendorlist.cc:85 -#, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "O bloco de fabricante %s não contém a impressão digital" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Falhou obter alguns arquivos." -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, c-format -msgid "List directory %spartial is missing." -msgstr "Falta directório de listas %spartial." +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Download completo e em modo de fazer apenas o download" -#: apt-pkg/acquire.cc:91 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Falta o directório de arquivos %spartial." +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "" +"A saltar a descompactação do pacote de código fonte já descompactado em %s\n" -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Unable to lock directory %s" -msgstr "Impossível criar acesso exclusivo ao directório %s" +msgid "Unpack command '%s' failed.\n" +msgstr "O comando de descompactação '%s' falhou.\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "A obter o ficheiro %li de %li (%s restantes)" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Verifique se o pacote 'dpkg-dev' está instalado.\n" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Retrieving file %li of %li" -msgstr "A obter o ficheiro %li de %li" +msgid "Build command '%s' failed.\n" +msgstr "O comando de compilação '%s' falhou.\n" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Falhou obter %s %s\n" +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "O processo filho falhou" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" msgstr "" -"Falhou o download de alguns ficheiros de índice. Foram ignorados ou os " -"antigos foram usados em seu lugar." - -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Você deve colocar alguns URIs 'source' no seu sources.list" +"Deve especificar pelo menos um pacote para verificar as dependências de " +"compilação" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -"O valor '%s' é inválido para APT::Default-Release porque tal lançamento não " -"está disponível nas fontes" +"Nenhuma informação de arquitectura disponível para %s. Para configuração " +"veja apt.conf(5) APT::Architectures" -#: apt-pkg/policy.cc:422 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Registo inválido no ficheiro de preferências %s, sem cabeçalho Package" +msgid "Unable to get build-dependency information for %s" +msgstr "" +"Não foi possível obter informações de dependências de compilação para %s" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Did not understand pin type %s" -msgstr "Não foi possível entender o tipo de marca (pin) %s" +msgid "%s has no build depends.\n" +msgstr "%s não tem dependências de compilação.\n" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Nenhuma prioridade (ou zero) especificada para marcação (pin)" +#: cmdline/apt-get.cc:1272 +#, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"a dependência de %s por %s não pode ser satisfeita porque %s não é permitido " +"em pacotes '%s'" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -"Não foi possível proceder à configuração imediata em '%s'. Para detalhes, " -"por favor veja man 5 apt.conf em APT::Immediate-Configure. (%d)" +"a dependência de %s para %s não pôde ser satisfeita porque o pacote %s não " +"pôde ser encontrado" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Could not configure '%s'. " -msgstr "Não pode configurar '%s'. " +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"Falha ao satisfazer a dependência %s para %s: O pacote instalado %s é " +"demasiado novo" -#: apt-pkg/packagemanager.cc:583 +#: cmdline/apt-get.cc:1352 #, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" -"Esta execução da instalação irá necessitar de remover temporariamente o " -"pacote essencial %s devido a um loop de Conflitos/Pré-Dependências. Isto " -"normalmente é mau, mas se você quer realmente fazer isso, active a opção " -"APT::Force-LoopBreak." +"a dependência de %s para %s não pode ser satisfeita porque a versão " +"candidata do pacote %s não pode satisfazer os requisitos de versão" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-get.cc:1358 #, c-format -msgid "Line %u too long in source list %s." -msgstr "Linha %u é demasiado longa na lista de fontes %s." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "A desmontar o CD-ROM...\n" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"a dependência de %s para %s não pode ser satisfeita porque o pacote %s não " +"tem versão candidata" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "A utilizar o ponto de montagem do CD-ROM %s\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "A aguardar pelo disco...\n" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Falha ao satisfazer a dependência %s para %s: %s" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "A montar o CD-ROM...\n" +#: cmdline/apt-get.cc:1396 +#, c-format +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Não foi possível satisfazer as dependências de compilação para %s." -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "A identificar... " +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Falhou processar as dependências de compilação" -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 #, c-format -msgid "Stored label: %s\n" -msgstr "Label Guardada: %s \n" +msgid "Changelog for %s (%s)" +msgstr "Changlog para %s (%s)" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "A pesquisar os ficheiros de índice do disco...\n" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Módulos Suportados:" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Foram encontrados %zu índices de pacotes, %zu índices de código-fonte, %zu " -"índices de tradução e %zu assinaturas\n" - -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"Não foi possível localizar quaisquer ficheiros de pacote, talvez este não " -"seja um disco Debian ou seja a arquitectura errada?" - -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Encontrada a etiqueta '%s'\n" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Isso não é um nome válido, tente novamente.\n" - -#: apt-pkg/cdrom.cc:817 -#, c-format +#: cmdline/apt-get.cc:1633 msgid "" -"This disc is called: \n" -"'%s'\n" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"Este disco tem o nome: \n" -"'%s'\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "A copiar listas de pacotes..." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "A escrever lista de novas source\n" +"Utilização: apt-get [opções] comando\n" +" apt-get [opções] install|remove pacote1 [pacote2 ...]\n" +" apt-get [opções] source pacote1 [pacote2 ...]\n" +"\n" +"O apt-get é um interface simples de linha de comandos para obter\n" +"e instalar pacotes. Os comandos utilizados mais frequentemente\n" +"são update e install.\n" +"\n" +"Comandos:\n" +" update - Obter novas listas de pacotes\n" +" upgrade - Executar uma actualização\n" +" install - Instalar novos pacotes (o pacote é libc6 e não libc6.deb)\n" +" remove - Remover pacotes\n" +" autoremove - Remover automaticamente todos os pacotes não utilizados\n" +" purge - Remover pacotes e ficheiros de configuração\n" +" source - Fazer o download de arquivos de código-fonte\n" +" build-dep - Configurar as dependências de compilação de pacotes de código-" +"fonte\n" +" dist-upgrade - Actualizar a distribuição, veja apt-get(8)\n" +" dselect-upgrade - Seguir as escolhas feitas no dselect\n" +" clean - Apagar ficheiros de arquivo obtidos por download\n" +" autoclean - Apagar ficheiros de arquivo antigos obtidos por download\n" +" check - Verificar se existem dependências erradas\n" +" changelog - Obter e mostrar o changelog de um pacote\n" +" download - Obter o pacote binário para o directório actual\n" +"\n" +"Opções:\n" +" -h Este texto de ajuda\n" +" -q Saída para registo - sem indicador de progresso\n" +" -qq Sem saída, excepto para erros\n" +" -d Fazer apenas o download - NÃO instalar ou descompactar arquivos\n" +" -s Não agir. Executar simulação de ordens\n" +" -y Assumir Sim para todas as perguntas e não fazer perguntas\n" +" -f Tentar corrigir um sistema com dependências erradas\n" +" -m Tentar continuar se os arquivos não poderem ser localizados\n" +" -u Mostrar também uma lista de pacotes actualizados\n" +" -b Construir o pacote de código-fonte depois de o obter\n" +" -V Mostrar números da versão detalhados\n" +" -c=? Ler este ficheiro de configuração\n" +" -o=? Definir uma opção de configuração arbitrária, p.e. -o dir::cache=/" +"tmp\n" +"Para mais informações e opções veja as páginas do manual\n" +"apt-get(8), sources.list(5) e apt.conf(5)\n" +" Este APT tem Poderes de Super Vaca.\n" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "As entradas de listas de Source para este Disco são:\n" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Tem de especificar pelo menos um pacote para obter o código fonte de" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"O pacote %s necessita ser reinstalado, mas não foi possível encontrar um " -"repositório para o mesmo." -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-helper.cc:66 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Erro, pkgProblemResolver::Resolve gerou falhas, isto pode ser causado por " -"pacotes mantidos (hold)." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Não foi possível corrigir problemas, você tem pacotes mantidos (hold) " -"estragados." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "A construir árvore de dependências" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Versões candidatas" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Geração de dependências" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "A ler a informação de estado" - -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Falhou abrir o StateFile %s" -#: apt-pkg/depcache.cc:256 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Falha escrever ficheiro temporário StateFile %s" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s não pode ser marcado pois não está instalado.\n" -#: apt-pkg/tagfile.cc:140 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Não foi possível fazer parse ao ficheiro do pacote %s (1)" +msgid "%s was already set to manually installed.\n" +msgstr "%s já estava definido para ser instalado manualmente.\n" -#: apt-pkg/tagfile.cc:237 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Não foi possível fazer parse ao ficheiro de pacote %s (2)" +msgid "%s was already set to automatically installed.\n" +msgstr "%s já estava definido para ser instalado automaticamente.\n" -#: apt-pkg/cacheset.cc:489 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Não foi encontrado o Release '%s' para '%s'" +msgid "%s was already set on hold.\n" +msgstr "%s já estava marcado para manter.\n" -#: apt-pkg/cacheset.cc:492 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Não foi encontrada a versão '%s' para '%s'" +msgid "%s was already not hold.\n" +msgstr "%s já estava para não manter.\n" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Unable to locate package %s" -msgstr "Não foi possível encontrar o pacote %s" +msgid "Waited for %s but it wasn't there" +msgstr "Esperou por %s mas não estava lá" -#: apt-pkg/cacheset.cc:603 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Couldn't find task '%s'" -msgstr "Não foi possível encontrar a tarefa '%s'" +msgid "%s set on hold.\n" +msgstr "%s marcado para manter.\n" -#: apt-pkg/cacheset.cc:609 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Não foi possível encontrar o pacote através da expressão regular '%s'" - -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Não foi possível encontrar o pacote através da expressão regular '%s'" +msgid "Canceled hold on %s.\n" +msgstr "Cancelou manter em %s.\n" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" -"Não foi possível seleccionar versões do pacote '%s' pois é puramente virtual" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "Falhou executar dpkg. É root?" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format +#: cmdline/apt-mark.cc:392 +#, fuzzy msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" -"Não pode seleccionar a versão instalada nem a versão candidata do pacote " -"'%s' pois não tem nenhuma destas" - -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"Não foi possível seleccionar a versão mais recente a partir do pacote '%s' " -"já que é puramente virtual" - -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -"Não é possível seleccionar a versão candidata do pacote %s já que não tem " -"candidato" +"Utilização: apt-mark [opções] {auto|manual} pacote1 [pacote2...]\n" +"\n" +"apt-mark é um interface simples de linha de comandos para marcar pacotes " +"como instalados de forma manual ou automática. Pode também listar " +"marcações.\n" +"\n" +"Comandos:\n" +" auto - Marca os pacotes como instalados automaticamente\n" +" manual - Marca os pacotes como instalados manualmente\n" +"\n" +"Opções:\n" +" -h\tEste texto de ajuda.\n" +" -q\tSaída para registo - sem indicador de progresso\n" +" -qq Sem saída excepto para erros\n" +" -s\tNão fazer. Apenas escreve o que seria feito.\n" +" -f\tler/escrever marcação auto/manual no ficheiro indicado\n" +" -c=? Ler este ficheiro de configuração\n" +" -o=? Definir uma opção de configuração arbitrária, p.e. -o dir::cache=/" +"tmp\n" +"Para mais informações veja as páginas apt-mark(8) e apt.conf(5) do manual." -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -"Não é possível seleccionar a versão instalada do pacote %s pois não está " -"instalado" -#: apt-pkg/indexrecords.cc:78 +#: methods/cdrom.cc:203 #, c-format -msgid "Unable to parse Release file %s" -msgstr "Não foi possível fazer parse ao ficheiro Release %s" +msgid "Unable to read the cdrom database %s" +msgstr "Não foi capaz de ler a base de dados de cdrom %s" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "Nenhuma secção, no ficheiro Release %s" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" +msgstr "" +"Por favor utilize o apt-cdrom para fazer com que este CD seja reconhecido " +"pelo APT. apt-get update não pode ser utilizado para adicionar novos CDs" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Nenhuma entrada hash no ficheiro Release %s" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD errado" -#: apt-pkg/indexrecords.cc:130 +#: methods/cdrom.cc:249 #, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Entrada inválida, 'Valid-until', no ficheiro de Release: %s" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Impossível desmontar o CD-ROM em %s, pode ainda estar a ser utilizado." -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Entrada, 'Date', inválida no ficheiro Release %s" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disco não encontrado." -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Linha mal formada %lu na lista de fontes %s (parse de URI)" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Ficheiro não encontrado" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"Linha mal formada %lu na lista de fontes %s ([opção] não interpretável)" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Falhou o stat" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Linha mal formada %lu na lista de fontes %s ([opção] demasiado curta)" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Falhou definir hora de modificação" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "" -"Linha mal formada %lu na lista de fontes %s ([%s] não é uma atribuição)" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI inválido, URIs locais não devem começar por //" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Linha mal formada %lu na lista de fontes %s ([%s] não tem chave)" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "A identificar-se no sistema" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Linha mal formada %lu na lista de fontes %s ([%s] chave %s não tem valor)" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Não foi possível determinar o nome do posto" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Linha mal formada %lu na lista de fontes %s (URI)" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Não foi possível determinar o nome local" -#: apt-pkg/sourcelist.cc:208 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Linha mal formada %lu na lista de fontes %s (distribuição)" +msgid "The server refused the connection and said: %s" +msgstr "O servidor recusou a ligação e respondeu: %s" -#: apt-pkg/sourcelist.cc:211 +#: methods/ftp.cc:225 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Linha mal formada %lu na lista de fontes %s (parse de URI)" +msgid "USER failed, server said: %s" +msgstr "USER falhou, o servidor respondeu: %s" -#: apt-pkg/sourcelist.cc:217 +#: methods/ftp.cc:232 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Linha mal formada %lu na lista de fontes %s (distribuição absoluta)" +msgid "PASS failed, server said: %s" +msgstr "PASS falhou, o servidor respondeu: %s" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Linha mal formada %lu na lista de fontes %s (dist parse)" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"Foi especificado um servidor de proxy mas não um script de login, Acquire::" +"ftp::ProxyLogin está vazio." -#: apt-pkg/sourcelist.cc:335 +#: methods/ftp.cc:280 #, c-format -msgid "Opening %s" -msgstr "A abrir %s" +msgid "Login script command '%s' failed, server said: %s" +msgstr "O comando de script de login '%s' falhou, o servidor respondeu: %s" -#: apt-pkg/sourcelist.cc:371 +#: methods/ftp.cc:306 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Linha mal formada %u na lista de fontes %s (tipo)" +msgid "TYPE failed, server said: %s" +msgstr "TYPE falhou, o servidor respondeu: %s" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "O tipo '%s' não é conhecido na linha %u na lista de fontes %s" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Foi atingido o tempo limite de ligação" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "O tipo '%s' não é conhecido na linha %u na lista de fontes %s" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "O servidor fechou a ligação" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "A instalar %s" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Erro de leitura" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "A configurar %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Uma resposta sobrecarregou o buffer." -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "A remover %s" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Corrupção de protocolo" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "A remover completamente %s" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Erro de escrita" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "A notar o desaparecimento de %s" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Não foi possível criar um socket" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "A correr o 'trigger' de pós-instalação %s" - -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Falta o directório '%s'" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Não foi possível ligar socket de dados, a ligação expirou" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "Não foi possível abrir ficheiro o '%s'" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Falhou" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "A preparar %s" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Não foi possível ligar socket passivo." -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "A desempacotar %s" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo não foi capaz de obter um socket de escuta" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "A preparar para configurar %s" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Não foi possível fazer o bind a um socket" -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "%s instalado" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Não foi possível executar listen no socket" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "A preparar a remoção de %s" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Não foi possível determinar o nome do socket" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "%s removido" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Não foi possível enviar o comando PORT" -#: apt-pkg/deb/dpkgpm.cc:1009 +#: methods/ftp.cc:802 #, c-format -msgid "Preparing to completely remove %s" -msgstr "A preparar para remover completamente %s" +msgid "Unknown address family %u (AF_*)" +msgstr "Família de endereços %u desconhecida (AF_*)" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: methods/ftp.cc:811 #, c-format -msgid "Completely removed %s" -msgstr "Remoção completa de %s" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +msgid "EPRT failed, server said: %s" +msgstr "EPRT falhou, o servidor respondeu: %s" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Não conseguiu escrever para %s" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Ligação de socket de dados expirou" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Impossível aceitar ligação" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problema ao calcular o hash do ficheiro" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/ftp.cc:890 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Esperou por %s mas não estava lá" - -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "A operação foi interrompida antes de poder terminar" - -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "Nenhum relatório apport escrito pois MaxReports já foi atingido" - -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "problemas de dependências - deixando por configurar" - -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"Nenhum relatório apport escrito pois a mensagem de erro indica que é um erro " -"de seguimento de um erro anterior." +msgid "Unable to fetch file, server said '%s'" +msgstr "Não foi possível obter o ficheiro, o servidor respondeu '%s'" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Nenhum relatório apport escrito pois a mensagem de erro indica erro de disco " -"cheio" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Expirou o tempo do socket de dados" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Nenhum relatório apport escrito pois a mensagem de erro indica um erro de " -"memória esgotada" +#: methods/ftp.cc:935 +#, c-format +msgid "Data transfer failed, server said '%s'" +msgstr "A transferência de dados falhou, o servidor respondeu '%s'" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" -"Nenhum relatório apport escrito pois a mensagem de erro indica erro de disco " -"cheio" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Pesquisa" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" -"Nenhum relatório apport escrito pois a mensagem de erro indica um erro de I/" -"O do dpkg" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Não foi possível invocar " -#: apt-pkg/deb/debsystem.cc:91 +#: methods/connect.cc:76 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"Não foi possível obter acesso exclusivo ao directório de administração (%s), " -"outro processo está a utilizá-lo?" +msgid "Connecting to %s (%s)" +msgstr "A Ligar a %s (%s)" -#: apt-pkg/deb/debsystem.cc:94 +#: methods/connect.cc:87 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "" -"Não foi possível criar acesso exclusivo ao directório de administração (%s), " -"é root?" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: methods/connect.cc:94 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" -"O dpkg foi interrompido, para corrigir o problema tem de correr manualmente " -"'%s'" - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Sem acesso exclusivo" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Não foi possível criar um socket para %s (f=%u t=%u p=%u)" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 +#: methods/connect.cc:100 #, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lid %lih %limin %lis" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Não posso iniciar a ligação para %s:%s (%s)." -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: methods/connect.cc:108 #, c-format -msgid "%lih %limin %lis" -msgstr "%lih %limin %lis" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Não foi possível ligar a %s:%s (%s), a conexão expirou" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: methods/connect.cc:126 #, c-format -msgid "%limin %lis" -msgstr "%limin %lis" +msgid "Could not connect to %s:%s (%s)." +msgstr "Não foi possível ligar em %s:%s (%s)." -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "%lis" -msgstr "%lis" +msgid "Connecting to %s" +msgstr "A ligar a %s" -#: apt-pkg/contrib/strutl.cc:1243 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Selection %s not found" -msgstr "A selecção %s não foi encontrada" +msgid "Could not resolve '%s'" +msgstr "Não foi possível resolver '%s'" -#: apt-pkg/contrib/fileutl.cc:190 +#: methods/connect.cc:205 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "" -"Não está a ser utilizado acesso exclusivo para apenas leitura ao ficheiro %s" +msgid "Temporary failure resolving '%s'" +msgstr "Falha temporária a resolver '%s'" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Não foi possível abrir ficheiro de lock %s" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Algo estranho aconteceu ao resolver '%s:%s' (%i - %s)" -#: apt-pkg/contrib/fileutl.cc:218 +#: methods/connect.cc:211 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "" -"Não está a ser utilizado o acesso exclusivo para o ficheiro %s, montado via " -"nfs" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Algo estranho aconteceu ao resolver '%s:%s' (%i - %s)" -#: apt-pkg/contrib/fileutl.cc:223 +#: methods/connect.cc:258 #, c-format -msgid "Could not get lock %s" -msgstr "Não foi possível obter acesso exclusivo a %s" +msgid "Unable to connect to %s:%s:" +msgstr "Não foi possível ligar a %s:%s:" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Lista de ficheiros que não podem ser criados porque '%s' não é um directório" +"Erro interno: Assinatura válida, mas não foi possível determinar a impressão " +"digital da chave?!" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "A ignorar '%s' no directório '%s' porque não é um ficheiro normal" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Pelo menos uma assinatura inválida foi encontrada." -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"A ignorar o ficheiro '%s' no directório '%s' porque não tem extensão no nome " -"do ficheiro" +"Não foi possível executar 'gpgv' para verificar a assinatura (o gpgv está " +"instalado?)" -#: apt-pkg/contrib/fileutl.cc:421 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"A ignorar o ficheiro '%s' no directório '%s' porque tem uma extensão " -"inválida no nome do ficheiro" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "O sub-processo %s recebeu uma falha de segmentação." +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Erro desconhecido ao executar gpgv" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "O sub-processo %s recebeu o sinal %u." +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "As seguintes assinaturas eram inválidas:\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "O sub-processo %s retornou um código de erro (%u)" +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "" +"As seguintes assinaturas não puderam ser verificadas porque a chave pública " +"não está disponível:\n" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "O sub-processo %s terminou inesperadamente" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Ficheiros vazios não podem ser arquivos válidos" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Erro de escrita" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Erro ao escrever para o ficheiro" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problema ao fechar o ficheiro gzip %s" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Erro ao ler do servidor. O lado remoto fechou a ligação" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Não foi possível abrir ficheiro o %s" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Erro ao ler do servidor" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "Não foi possível abrir o descritor de ficheiro %d" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Erro ao escrever para ficheiro" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Falhou criar subprocesso IPC" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "A selecção falhou" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Falhou executar compactador " +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "O tempo da ligação expirou" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Erro de leitura" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Erro ao escrever para o ficheiro de saída" -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" -msgstr "lidos, ainda restam %llu para serem lidos mas não resta nenhum" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "A aguardar por cabeçalhos" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "escritos, ainda restam %llu para escrever mas não foi possível" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Linha de cabeçalho errada" -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Problema ao fechar o ficheiro %s" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "O servidor HTTP enviou um cabeçalho de resposta inválido" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problema ao renomear o ficheiro %s para %s" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "O servidor HTTP enviou um cabeçalho Content-Length inválido" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "Problema ao remover o link do ficheiro %s" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "O servidor HTTP enviou um cabeçalho Content-Range inválido" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problema sincronizando o ficheiro" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Este servidor HTTP possui suporte de range errado" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Erro !" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Formato de data desconhecido" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Pronto" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Dados de cabeçalho errados" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "A ligação falhou" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Pronto" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Erro interno" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Não é possível fazer mmap a um ficheiro vazio" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Não foi possível duplicar o descritor de ficheiro %i" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Erro Interno, InstallPackages foi chamado com pacotes estragados!" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Não foi possível fazer mmap de %llu bytes" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Pacotes precisam de ser removidos mas Remove está desabilitado." -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Não foi possível fechar mmap" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Erro Interno, Ordering não terminou" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Não foi sincronizar mmap " +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Estranho... Os tamanhos não coincidiram, escreva para apt@packages.debian.org" -#: apt-pkg/contrib/mmap.cc:290 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Não foi possível fazer mmap de %lu bytes" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "É necessário obter %sB/%sB de arquivos.\n" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Falhou truncar o ficheiro" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 +#, c-format +msgid "Need to get %sB of archives.\n" +msgstr "É necessário obter %sB de arquivos.\n" -#: apt-pkg/contrib/mmap.cc:341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" -"O Dynamic MMap ficou sem espaço. Por favor aumente o tamanho de APT::Cache-" -"Start. Valor actual: %lu. (man 5 apt.conf)" +"Após esta operação, serão utilizados %sB adicionais de espaço em disco.\n" -#: apt-pkg/contrib/mmap.cc:446 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" -"Não foi possível aumentar o tamanho do MMap pois o limite de %lu bytes já " -"foi alcançado." +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Após esta operação, será libertado %sB de espaço em disco.\n" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" -"Não foi possível aumentar o tamanho do MMap pois o crescimento automático " -"está desabilitado pelo utilizador." - -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Impossível executar stat ao ponto de montagem %s" - -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Impossível executar stat ao cdrom" - -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Abreviatura de tipo desconhecida: '%c'" - -#: apt-pkg/contrib/configuration.cc:633 +#: apt-private/private-install.cc:200 #, c-format -msgid "Opening configuration file %s" -msgstr "A abrir o ficheiro de configuração %s" +msgid "You don't have enough free space in %s." +msgstr "Você não possui espaço livre suficiente em %s." -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Erro de sintaxe %s:%u: O bloco começa sem nome." +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Há problemas e foi utilizado -y sem --force-yes" -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Erro de sintaxe %s:%u: Tag mal formada" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Trivial Only especificado mas isto não é uma operação trivial." -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Erro de sintaxe %s:%u: Lixo extra depois do valor" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Sim, faça como eu digo!" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-private/private-install.cc:222 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" -"Erro de sintaxe %s:%u: Directivas só podem ser feitas no nível mais alto" +"Você está prestes a fazer algo potencialmente nocivo.\n" +"Para continuar escreva a frase '%s'\n" +" ?] " -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Erro de sintaxe %s:%u: Demasiados includes encadeados" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Abortado." -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Erro de sintaxe %s:%u: Incluído a partir deste ponto" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Deseja continuar?" -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Erro de sintaxe %s:%u: Directiva '%s' não suportada" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Falhou o download de alguns ficheiros" -#: apt-pkg/contrib/configuration.cc:900 -#, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -"Erro de sintaxe %s:%u: directiva clara necessita de uma árvore de opções " -"como argumento" +"Não foi possível obter alguns arquivos, tente talvez correr apt-get update " +"ou tente com --fix-missing?" -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Erro de sintaxe %s:%u: Lixo extra no final do ficheiro" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing e troca de mídia não são suportados actualmente" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, c-format -msgid "No keyring installed in %s." -msgstr "Nenhum keyring instalado em %s." +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Não foi possível corrigir os pacotes em falta." -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Opção '%c' da linha de comandos [de %s] é desconhecida." +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "A abortar a instalação." -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "Opção %s de linha de comandos não é compreendida" +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"O seguinte pacote desapareceu do seu sistema pois\n" +"todos os ficheiros foram sobrescritos por outros pacotes:" +msgstr[1] "" +"Os seguintes pacotes desapareceram do seu sistema pois\n" +"todos os ficheiros foram por outros pacotes:" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "Opção %s da linha de comandos não é booleana" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Nota: Isto foi feito automaticamente e intencionalmente pelo dpkg." -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "A opção %s necessita de um argumento." +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Não é suposto nós apagarmos coisas, não pode iniciar o AutoRemover" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Opção %s: Especificação de item de configuração tem de ter um =<val>." +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" +"Hmm, parece que o AutoRemover destruiu algo que realmente não deveria ter\n" +"acontecido. Por favor arquive um relatório de bug contra o apt." -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Opção %s necessita de um número inteiro como argumento, não '%s'" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "A seguinte informação pode ajudar a resolver a situação:" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Opção '%s' é demasiado longa" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Erro Interno, o AutoRemover estragou coisas" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "O sentido %s não é compreendido, tente verdadeiro ou falso." +#: apt-private/private-install.cc:513 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "" +"O seguinte pacote foi instalado automaticamente e já não é necessário:" +msgstr[1] "" +"Os seguintes pacotes foram instalados automaticamente e já não são " +"necessários:" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-private/private-install.cc:517 #, c-format -msgid "Invalid operation %s" -msgstr "Operação %s inválida" +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "O pacote %lu foi instalado automaticamente e já não é necessário.\n" +msgstr[1] "" +"Os pacotes %lu foram instalados automaticamente e já não são necessários.\n" -#: cmdline/apt-cache.cc:149 -#, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "O pacote %s versão %s tem uma dependência não satisfeita:\n" +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Utilize 'apt-get autoremove' para o remover." +msgstr[1] "Utilize 'apt-get autoremove' para os remover." -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Total de nomes de pacotes: " +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Você deve querer executar 'apt-get -f install' para corrigir estes:" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Total de estruturas de pacotes: " +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"Dependências não satisfeitas. Tente 'apt-get -f install' sem nenhum pacote " +"(ou especifique uma solução)." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Pacotes normais: " +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"Alguns pacotes não puderam ser instalados. Isso pode significar que\n" +"você solicitou uma situação impossível ou se você está a usar a\n" +"distribuição unstable em que alguns pacotes pedidos ainda não foram \n" +"criados ou foram movidos do Incoming." -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Pacotes virtuais puros: " +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Pacotes estragados" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Pacotes virtuais únicos: " +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Os seguintes pacotes extra serão instalados:" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Pacotes virtuais misturados: " - -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Faltam: " +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Pacotes sugeridos:" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Total de versões distintas: " +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Pacotes recomendados:" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Total de descrições distintas: " +#: apt-private/private-install.cc:825 +#, c-format +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Saltando %s, já está instalado e a actualização não está definida.\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Total de dependências: " +#: apt-private/private-install.cc:829 +#, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "Saltando %s, não está instalado e só são pedidas actualizações.\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Total de relações ver/ficheiro: " +#: apt-private/private-install.cc:841 +#, c-format +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "" +"A reinstalação de %s não é possível, o download do mesmo não pode ser " +"feito.\n" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Total de relações Desc/Ficheiro: " +#: apt-private/private-install.cc:846 +#, c-format +msgid "%s is already the newest version.\n" +msgstr "%s já está na versão mais recente.\n" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Total de Mapeamentos 'Provides': " +#: apt-private/private-install.cc:894 +#, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Versão seleccionada '%s' (%s) para '%s'\n" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Total de strings globbed: " +#: apt-private/private-install.cc:899 +#, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Versão seleccionada '%s' (%s) para '%s' devido a '%s'\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Espaço total de dependência de versão: " +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "" +"O pacote '%s' não está instalado, por isso não será removido. Queria dizer " +"'%s'?\n" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Espaço total desperdiçado: " +#: apt-private/private-install.cc:947 +#, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "O pacote '%s' não está instalado, por isso não será removido\n" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Espaço total contabilizado: " +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 +#: apt-private/private-list.cc:164 #, c-format -msgid "Package file %s is out of sync." -msgstr "O ficheiro do pacote %s está dessincronizado." +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Não foi encontrado nenhum pacote" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "A corrigir dependências..." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Tem de fornecer pelo menos um padrão de busca" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " falhou." -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" -"Este comando foi depreceado. Em vez disso por favor utilize 'apt-mark " -"showauto'." +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Não foi possível corrigir dependências" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Ficheiros de Pacotes :" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Não foi possível minimizar o conjunto de actualizações" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "" -"A cache está dessincronizada, não pode x-referenciar um ficheiro de pacote" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Feito" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Pacotes Marcados:" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Você pode querer executar 'apt-get -f install' para corrigir isso." -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(não encontrado)" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Dependências não satisfeitas. Tente utilizar -f." -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Instalado: " +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidato: " +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Instalado]" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(nenhum)" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Instalado]" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Marcação do Pacote: " +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabela de Versão:" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Instalado]" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s para %s compilado em %s %s\n" +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Instalado]" -#: cmdline/apt-cache.cc:1749 -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" msgstr "" -"Utilização: apt-cache [opções] comando\n" -" apt-cache [opções] showpkg pacote1 [pacote2 ...]\n" -" apt-cache [opções] showsrc pacote1 [pacote2 ...]\n" -"\n" -"O apt-cache é uma ferramenta de baixo nível utilizada para questionar\n" -" informação dos ficheiros de cache binários do APT\n" -"\n" -"Comandos:\n" -" gencaches - Construir as caches de pacotes e de código-fonte\n" -" showpkg - Mostrar informações gerais sobre um pacote\n" -" showsrc - Mostrar registos de código-fonte\n" -" stats - Mostrar algumas estatísticas simples\n" -" dump - Mostrar todo o ficheiro de forma concisa\n" -" dumpavail - Escrever um ficheiro disponível para stdout\n" -" unmet - Mostrar dependências não satisfeitas\n" -" search - Procurar na lista de pacotes por um padrão regex\n" -" show - Mostrar um registo legível sobre o pacote\n" -" depends - Mostrar informações em bruto de dependências de um pacote\n" -" rdepends - Mostrar a informação de dependências inversas de um pacote\n" -" pkgnames - Listar o nome de todos os pacotes no sistema\n" -" dotty - Gerar gráficos de pacotes para o GraphViz\n" -" xvcg - Gerar gráficos de pacotes para o xvcg\n" -" policy - Mostrar as configurações de políticas\n" -"\n" -"Opções:\n" -" -h Este texto de ajuda.\n" -" -p=? A cache de pacotes.\n" -" -s=? A cache de fontes.\n" -" -q Desabilitar o indicador de progresso.\n" -" -i Mostrar apenas dependências importantes para o comando unmet.\n" -" -c=? Ler este ficheiro de configuração.\n" -" -o=? Definir uma opção arbitrária de configuração, p.e.: -o dir::cache=/" -"tmp\n" -"Para mais informações veja as páginas do manual apt-cache(8) e apt.conf(5).\n" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -"Por favor indique um nome para este Disco, tal como 'Debian 5.0.3 Disco 1'" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Por favor insira um Disco no leitor e pressione enter" +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "mas %s está instalado" -#: cmdline/apt-cdrom.cc:139 +#: apt-private/private-output.cc:437 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Falhou ao montar '%s' para '%s'" +msgid "but %s is to be installed" +msgstr "mas %s está para ser instalado" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "mas não é instalável" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Repita este processo para o resto dos CDs no seu conjunto." +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "mas é um pacote virtual" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "os argumentos não estão em pares" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "mas não está instalado" -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -msgstr "" -"Utilização: apt-config [opções] comando\n" -"\n" -"O apt-config é uma ferramenta simples para ler o ficheiro de config do APT\n" -"\n" -"Comandos:\n" -" shell - Modo shell\n" -" dump - Mostrar a configuração\n" -"\n" -"Opções:\n" -" -h Este texto de ajuda.\n" -" -c=? Ler este ficheiro de configuração\n" -" -o=? Definir uma opção arbitrária de configuração, p.e.: -o dir::cache=/" -"tmp\n" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "mas não vai ser instalado" + +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " ou" + +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Os pacotes a seguir têm dependências não satisfeitas:" + +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Serão instalados os seguintes NOVOS pacotes:" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Não foi possível encontrar o pacote através da expressão regular '%s'" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Serão REMOVIDOS os seguintes pacotes:" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Não foi possível encontrar o pacote através da expressão regular '%s'" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Serão mantidos em suas versões actuais os seguintes pacotes:" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Não foi possível encontrar o pacote através da expressão regular '%s'" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Serão actualizados os seguintes pacotes:" -#: cmdline/apt-get.cc:367 +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Será feito o DOWNGRADE aos seguintes pacotes:" + +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Os seguintes pacotes mantidos serão mudados:" + +#: apt-private/private-output.cc:668 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "A escolher '%s' como pacote pacote de código fonte em vez de '%s'\n" +msgid "%s (due to %s) " +msgstr "%s (devido a %s) " -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Ignorar a versão '%s', não disponível, do pacote '%s'" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"AVISO: Os seguintes pacotes essenciais serão removidos.\n" +"Isso NÃO deverá ser feito a menos que saiba exactamente o que está a fazer!" -#: cmdline/apt-get.cc:454 +#: apt-private/private-output.cc:707 #, c-format -msgid "Couldn't find package %s" -msgstr "Impossível encontrar o pacote %s" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu pacotes actualizados, %lu pacotes novos instalados, " -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-private/private-output.cc:711 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s está definido para ser instalado manualmente.\n" +msgid "%lu reinstalled, " +msgstr "%lu reinstalados, " -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-private/private-output.cc:713 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s está definido para ser instalado automaticamente.\n" +msgid "%lu downgraded, " +msgstr "%lu a que foi feito o downgrade, " -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"Este comando foi depreceado. Em vez disso, por favor utilize 'apt-mark auto' " -"e 'apt-mark manual'." +#: apt-private/private-output.cc:715 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu a remover e %lu não actualizados.\n" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Erro Interno, o solucionador de problemas estragou coisas" +#: apt-private/private-output.cc:719 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "%lu pacotes não totalmente instalados ou removidos.\n" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Impossível criar acesso exclusivo ao directório de downloads" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[S/n]" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Tem de especificar pelo menos um pacote para obter o código fonte de" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "s/N]" + +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "S" + +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Não foi possível encontrar um pacote de código fonte para %s" +msgid "Regex compilation error - %s" +msgstr "Erro de compilação de regex - %s" -#: cmdline/apt-get.cc:786 +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "O comando update não leva argumentos" + +#: apt-private/private-update.cc:90 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -"AVISO: o empacotamento de '%s' é mantido no sistema de controle de versões " -"'%s' em:\n" -"%s\n" -#: cmdline/apt-get.cc:791 +#: apt-private/private-show.cc:156 #, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" + +#: apt-private/private-main.cc:32 msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -"Por favor utilize:\n" -"bzr branch %s\n" -"para obter as últimas actualizações (possivelmente por lançar) ao pacote.\n" +"NOTE:\tIsto é apenas uma simulação!\n" +"\to apt-get necessita de privilégios de root para a execução real.\n" +"\tTenha em mente que o acesso exclusivo está desabilitado,\n" +"\tpor isso não confie na relevância da real situação actual!" -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "A saltar o ficheiro '%s', já tinha sido feito download'\n" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "AVISO: Os seguintes pacotes não podem ser autenticados!" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "Não foi possível determinar o espaço livre em %s" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Aviso de autenticação ultrapassado.\n" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "Você não possui espaço livre suficiente em %s" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Alguns pacotes não puderam ser autenticados" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "É necessário obter %sB/%sB de arquivos de código fonte.\n" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Instalar estes pacotes sem verificação?" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "É necessário obter %sB de arquivos de código fonte.\n" +msgid "Failed to fetch %s %s\n" +msgstr "Falhou obter %s %s\n" -#: cmdline/apt-get.cc:902 +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Falha ao baixar %s %s\n" + +#: apt-private/private-sources.cc:70 #, c-format -msgid "Fetch source %s\n" -msgstr "Obter código fonte %s\n" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Falhou obter alguns arquivos." +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Download completo e em modo de fazer apenas o download" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "A calcular a actualização... " -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "" -"A saltar a descompactação do pacote de código fonte já descompactado em %s\n" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Pronto" -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "O comando de descompactação '%s' falhou.\n" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Hit " -#: cmdline/apt-get.cc:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Verifique se o pacote 'dpkg-dev' está instalado.\n" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Obter:" + +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Err " -#: cmdline/apt-get.cc:991 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "O comando de compilação '%s' falhou.\n" - -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "O processo filho falhou" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Obtidos %sB em %s (%sB/s)\n" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "" -"Deve especificar pelo menos um pacote para verificar as dependências de " -"compilação" +#: apt-private/acqprogress.cc:236 +#, c-format +msgid " [Working]" +msgstr " [A trabalhar]" -#: cmdline/apt-get.cc:1054 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"Nenhuma informação de arquitectura disponível para %s. Para configuração " -"veja apt.conf(5) APT::Architectures" +"Troca de mídia: Por favor insira o disco chamado\n" +" '%s'\n" +"no leitor '%s' e pressione enter\n" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "" -"Não foi possível obter informações de dependências de compilação para %s" +msgid "Unable to read %s" +msgstr "Não foi possível ler %s" -#: cmdline/apt-get.cc:1101 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s não tem dependências de compilação.\n" +msgid "Unable to change to %s" +msgstr "Impossível mudar para %s" -#: cmdline/apt-get.cc:1271 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"a dependência de %s por %s não pode ser satisfeita porque %s não é permitido " -"em pacotes '%s'" +msgid "No mirror file '%s' found " +msgstr "Não foi encontrado ficheiro de mirror '%s'" -#: cmdline/apt-get.cc:1289 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" -"a dependência de %s para %s não pôde ser satisfeita porque o pacote %s não " -"pôde ser encontrado" +msgid "Can not read mirror file '%s'" +msgstr "Não pode ler ficheiro de mirror '%s'" -#: cmdline/apt-get.cc:1312 -#, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"Falha ao satisfazer a dependência %s para %s: O pacote instalado %s é " -"demasiado novo" +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Não pode ler ficheiro de mirror '%s'" -#: cmdline/apt-get.cc:1351 +#: methods/mirror.cc:445 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +msgid "[Mirror: %s]" +msgstr "[Mirror: %s]" + +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Falha ao criar pipe IPC para subprocesso" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Ligação encerrada prematuramente" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Configuração pré-definida errada!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Carregue em enter para continuar." + +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Deseja apagar quaisquer ficheiros .deb obtidos previamente?" + +# Note to translators: The following four messages belong together. It doesn't +# matter where sentences start, but it has to fit in just these four lines, and +# at only 80 characters per line, if possible. +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" -"a dependência de %s para %s não pode ser satisfeita porque a versão " -"candidata do pacote %s não pode satisfazer os requisitos de versão" +"Ocorreram alguns erros ao descompactar. Os pacotes que foram instalados" -#: cmdline/apt-get.cc:1357 -#, c-format +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "serão configurados. Isto pode resultar em erros duplicados" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "causados por dependências em falta. Isto está OK, somente os erros" + +#: dselect/install:105 msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"a dependência de %s para %s não pode ser satisfeita porque o pacote %s não " -"tem versão candidata" +"acima desta mensagem são importantes. Por favor resolva-os e execute " +"[I]nstalar novamente" -#: cmdline/apt-get.cc:1380 -#, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Falha ao satisfazer a dependência %s para %s: %s" +#: dselect/update:30 +msgid "Merging available information" +msgstr "A juntar a informação disponível" -#: cmdline/apt-get.cc:1395 -#, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Não foi possível satisfazer as dependências de compilação para %s." +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode chamado em nó ainda linkado" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Falhou processar as dependências de compilação" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Falha ao localizar o elemento de hash!" + +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Falha ao alocar desvio (diversion)" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Erro Interno em AddDiversion" + +#: apt-inst/filelist.cc:477 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Changlog para %s (%s)" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "A tentar sobrescrever um desvio, %s -> %s e %s/%s" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Módulos Suportados:" +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "Adição dupla de desvio %s -> %s" -#: cmdline/apt-get.cc:1632 -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -msgstr "" -"Utilização: apt-get [opções] comando\n" -" apt-get [opções] install|remove pacote1 [pacote2 ...]\n" -" apt-get [opções] source pacote1 [pacote2 ...]\n" -"\n" -"O apt-get é um interface simples de linha de comandos para obter\n" -"e instalar pacotes. Os comandos utilizados mais frequentemente\n" -"são update e install.\n" -"\n" -"Comandos:\n" -" update - Obter novas listas de pacotes\n" -" upgrade - Executar uma actualização\n" -" install - Instalar novos pacotes (o pacote é libc6 e não libc6.deb)\n" -" remove - Remover pacotes\n" -" autoremove - Remover automaticamente todos os pacotes não utilizados\n" -" purge - Remover pacotes e ficheiros de configuração\n" -" source - Fazer o download de arquivos de código-fonte\n" -" build-dep - Configurar as dependências de compilação de pacotes de código-" -"fonte\n" -" dist-upgrade - Actualizar a distribuição, veja apt-get(8)\n" -" dselect-upgrade - Seguir as escolhas feitas no dselect\n" -" clean - Apagar ficheiros de arquivo obtidos por download\n" -" autoclean - Apagar ficheiros de arquivo antigos obtidos por download\n" -" check - Verificar se existem dependências erradas\n" -" changelog - Obter e mostrar o changelog de um pacote\n" -" download - Obter o pacote binário para o directório actual\n" -"\n" -"Opções:\n" -" -h Este texto de ajuda\n" -" -q Saída para registo - sem indicador de progresso\n" -" -qq Sem saída, excepto para erros\n" -" -d Fazer apenas o download - NÃO instalar ou descompactar arquivos\n" -" -s Não agir. Executar simulação de ordens\n" -" -y Assumir Sim para todas as perguntas e não fazer perguntas\n" -" -f Tentar corrigir um sistema com dependências erradas\n" -" -m Tentar continuar se os arquivos não poderem ser localizados\n" -" -u Mostrar também uma lista de pacotes actualizados\n" -" -b Construir o pacote de código-fonte depois de o obter\n" -" -V Mostrar números da versão detalhados\n" -" -c=? Ler este ficheiro de configuração\n" -" -o=? Definir uma opção de configuração arbitrária, p.e. -o dir::cache=/" -"tmp\n" -"Para mais informações e opções veja as páginas do manual\n" -"apt-get(8), sources.list(5) e apt.conf(5)\n" -" Este APT tem Poderes de Super Vaca.\n" +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "Arquivo de configuração duplicado %s/%s" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Tem de especificar pelo menos um pacote para obter o código fonte de" +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" +msgstr "O caminho %s é demasiado longo" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" +msgstr "A descompactar %s mais de uma vez" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "O directório %s é desviado" -#: cmdline/apt-mark.cc:68 +#: apt-inst/extract.cc:152 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s não pode ser marcado pois não está instalado.\n" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "O pacote está a tentar escrever no alvo de desvio %s/%s" -#: cmdline/apt-mark.cc:74 +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "O caminho de desvio é muito longo" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s já estava definido para ser instalado manualmente.\n" +msgid "Failed to stat %s" +msgstr "Falha stat %s" -#: cmdline/apt-mark.cc:76 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s já estava definido para ser instalado automaticamente.\n" +msgid "Failed to rename %s to %s" +msgstr "Falhou renomear %s para %s" -#: cmdline/apt-mark.cc:241 +#: apt-inst/extract.cc:249 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s já estava marcado para manter.\n" +msgid "The directory %s is being replaced by a non-directory" +msgstr "O directório %s está a ser substituído por um não-directório" -#: cmdline/apt-mark.cc:243 +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Falhou localizar o nó no seu hash bucket" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "O caminho é demasiado longo" + +#: apt-inst/extract.cc:421 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s já estava para não manter.\n" +msgid "Overwrite package match with no version for %s" +msgstr "Substituir o pacote correspondente sem versão para %s" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-inst/extract.cc:438 #, c-format -msgid "%s set on hold.\n" -msgstr "%s marcado para manter.\n" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "O ficheiro %s/%s substitui o que está no pacote %s" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-inst/extract.cc:498 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Cancelou manter em %s.\n" +msgid "Unable to stat %s" +msgstr "Não foi possível fazer stat %s" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "Falhou executar dpkg. É root?" +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, c-format +msgid "Failed to write file %s" +msgstr "Falhou escrever o ficheiro %s" -#: cmdline/apt-mark.cc:392 -#, fuzzy -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" -"Utilização: apt-mark [opções] {auto|manual} pacote1 [pacote2...]\n" -"\n" -"apt-mark é um interface simples de linha de comandos para marcar pacotes " -"como instalados de forma manual ou automática. Pode também listar " -"marcações.\n" -"\n" -"Comandos:\n" -" auto - Marca os pacotes como instalados automaticamente\n" -" manual - Marca os pacotes como instalados manualmente\n" -"\n" -"Opções:\n" -" -h\tEste texto de ajuda.\n" -" -q\tSaída para registo - sem indicador de progresso\n" -" -qq Sem saída excepto para erros\n" -" -s\tNão fazer. Apenas escreve o que seria feito.\n" -" -f\tler/escrever marcação auto/manual no ficheiro indicado\n" -" -c=? Ler este ficheiro de configuração\n" -" -o=? Definir uma opção de configuração arbitrária, p.e. -o dir::cache=/" -"tmp\n" -"Para mais informações veja as páginas apt-mark(8) e apt.conf(5) do manual." +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "Falhou fechar o ficheiro %s" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Este não é um arquivo DEB válido, falta o membro '%s'" -#: methods/cdrom.cc:203 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Não foi capaz de ler a base de dados de cdrom %s" +msgid "Internal error, could not locate member %s" +msgstr "Erro Interno, não foi possível localizar o membro %s" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"Por favor utilize o apt-cdrom para fazer com que este CD seja reconhecido " -"pelo APT. apt-get update não pode ser utilizado para adicionar novos CDs" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Ficheiro de controle não interpretável" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD errado" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Assinatura de arquivo inválida" -#: methods/cdrom.cc:249 +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Erro na leitura de cabeçalho membro de arquivo" + +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Impossível desmontar o CD-ROM em %s, pode ainda estar a ser utilizado." +msgid "Invalid archive member header %s" +msgstr "Cabeçalho membro de arquivo inválido %s" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disco não encontrado." +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Cabeçalho membro de arquivo inválido" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Ficheiro não encontrado" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Arquivo é demasiado pequeno" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Falhou o stat" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Falha ao ler os cabeçalhos do arquivo" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Falhou definir hora de modificação" +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Falhou a criação de pipes" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI inválido, URIs locais não devem começar por //" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Falhou executar gzip " -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "A identificar-se no sistema" +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Arquivo corrompido" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Não foi possível determinar o nome do posto" +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "A soma de controlo do tar falhou, arquivo corrompido" + +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Tipo de cabeçalho TAR %u desconhecido, membro %s" + +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" + +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "A correr o dpkg" + +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Sistema de empacotamento '%s' não é suportado" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Não foi possível determinar o nome local" +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "" +"Não foi possível determinar um tipo de sistema de empacotamento adequado" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "O servidor recusou a ligação e respondeu: %s" +msgid "Wrote %i records.\n" +msgstr "Escreveu %i registos.\n" -#: methods/ftp.cc:225 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER falhou, o servidor respondeu: %s" +msgid "Wrote %i records with %i missing files.\n" +msgstr "Escreveu %i registos com %i ficheiros em falta.\n" -#: methods/ftp.cc:232 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS falhou, o servidor respondeu: %s" +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Escreveu %i registos com %i ficheiros não coincidentes\n" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" -"Foi especificado um servidor de proxy mas não um script de login, Acquire::" -"ftp::ProxyLogin está vazio." +"Escreveu %i registos com %i ficheiros em falta e %i ficheiros não " +"coincidentes\n" -#: methods/ftp.cc:280 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "O comando de script de login '%s' falhou, o servidor respondeu: %s" +msgid "Can't find authentication record for: %s" +msgstr "Não foi possível encontrar registo de autenticação para: %s" -#: methods/ftp.cc:306 +#: apt-pkg/indexcopy.cc:521 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE falhou, o servidor respondeu: %s" +msgid "Hash mismatch for: %s" +msgstr "Hash não coincide para: %s" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Foi atingido o tempo limite de ligação" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"As listas de pacotes ou o ficheiro de status não pôde ser analisado ou " +"aberto." -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "O servidor fechou a ligação" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Você terá que executar apt-get update para corrigir estes problemas" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Uma resposta sobrecarregou o buffer." +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "A lista de fontes não pôde ser lida." -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Corrupção de protocolo" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Cache de pacotes vazia" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Não foi possível criar um socket" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "O ficheiro de cache de pacotes está corrompido" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Não foi possível ligar socket de dados, a ligação expirou" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "O ficheiro de cache de pacotes é de uma versão incompatível" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Falhou" +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "O ficheiro de cache de pacotes está corrompido, é demasiado pequeno" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Não foi possível ligar socket passivo." +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "Este APT não suporta o sistema de versões '%s'" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo não foi capaz de obter um socket de escuta" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "A cache de pacotes foi gerada para uma arquitectura diferente" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Não foi possível fazer o bind a um socket" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Depende" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Não foi possível executar listen no socket" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Pré-Depende" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Não foi possível determinar o nome do socket" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Sugere" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Não foi possível enviar o comando PORT" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Recomenda" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Família de endereços %u desconhecida (AF_*)" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Em Conflito" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT falhou, o servidor respondeu: %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Substitui" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Ligação de socket de dados expirou" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Obsoleta" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Impossível aceitar ligação" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Estraga" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problema ao calcular o hash do ficheiro" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Aumenta" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Não foi possível obter o ficheiro, o servidor respondeu '%s'" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "importante" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Expirou o tempo do socket de dados" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "necessário" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "A transferência de dados falhou, o servidor respondeu '%s'" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "padrão" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Pesquisa" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "opcional" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Não foi possível invocar " +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" -#: methods/connect.cc:76 +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Connecting to %s (%s)" -msgstr "A Ligar a %s (%s)" +msgid "The method driver %s could not be found." +msgstr "O driver do método %s não pôde ser encontrado." -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Verifique se o pacote 'dpkg-dev' está instalado.\n" -#: methods/connect.cc:94 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Não foi possível criar um socket para %s (f=%u t=%u p=%u)" +msgid "Method %s did not start correctly" +msgstr "Método %s não iniciou correctamente" -#: methods/connect.cc:100 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Não posso iniciar a ligação para %s:%s (%s)." +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Por favor insira o disco denominado: '%s' no leitor '%s' e pressione enter." -#: methods/connect.cc:108 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Não foi possível ligar a %s:%s (%s), a conexão expirou" +msgid "Index file type '%s' is not supported" +msgstr "Tipo do ficheiro de índice '%s' não é suportado" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Não foi possível ligar em %s:%s (%s)." +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "A construir árvore de dependências" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Versões candidatas" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Geração de dependências" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "A ler a informação de estado" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Connecting to %s" -msgstr "A ligar a %s" +msgid "Failed to open StateFile %s" +msgstr "Falhou abrir o StateFile %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Could not resolve '%s'" -msgstr "Não foi possível resolver '%s'" +msgid "Failed to write temporary StateFile %s" +msgstr "Falha escrever ficheiro temporário StateFile %s" -#: methods/connect.cc:205 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Falha temporária a resolver '%s'" +msgid "rename failed, %s (%s -> %s)." +msgstr "falhou renomear, %s (%s -> %s)." -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Algo estranho aconteceu ao resolver '%s:%s' (%i - %s)" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Código de verificação hash não coincide" -#: methods/connect.cc:211 +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Tamanho incorrecto" + +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Operação %s inválida" + +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Algo estranho aconteceu ao resolver '%s:%s' (%i - %s)" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" +"Incapaz de encontrar a entrada '%s' esperada no ficheiro Release (entrada " +"errada em sources.list ou ficheiro malformado)" -#: methods/connect.cc:258 +#: apt-pkg/acquire-item.cc:1589 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Não foi possível ligar a %s:%s:" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Não foi possível encontrar hash sum para '%s' no ficheiro Release" -#: methods/gpgv.cc:168 +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "" +"Não existe qualquer chave pública disponível para as seguintes IDs de " +"chave:\n" + +#: apt-pkg/acquire-item.cc:1669 +#, c-format msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -"Erro interno: Assinatura válida, mas não foi possível determinar a impressão " -"digital da chave?!" +"O ficheiro Release para %s está expirado (inválido desde %s). Não serão " +"aplicadas as actualizações para este repositório." -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Pelo menos uma assinatura inválida foi encontrada." +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Distribuição em conflito: %s (esperado %s mas obtido %s)" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -"Não foi possível executar 'gpgv' para verificar a assinatura (o gpgv está " -"instalado?)" +"Ocorreu um erro durante a verificação da assinatura. O repositório não está " +"actualizado e serão utilizados os ficheiros anteriores de índice. Erro do " +"GPG: %s: %s\n" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "Erro GPG: %s: %s" + +#: apt-pkg/acquire-item.cc:1859 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" msgstr "" +"Não foi possível localizar um ficheiro para o pacote %s. Isto pode " +"significar que você precisa corrigir manualmente este pacote. (devido a " +"arquitectura em falta)" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Erro desconhecido ao executar gpgv" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "As seguintes assinaturas eram inválidas:\n" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "Não conseguiu encontrar uma fonte para obter a versão '%s' de '%s'" -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1983 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" -"As seguintes assinaturas não puderam ser verificadas porque a chave pública " -"não está disponível:\n" +"Os arquivos de índice de pacotes estão corrompidos. Nenhum campo Filename: " +"para o pacote %s." -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Ficheiros vazios não podem ser arquivos válidos" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Tipo do ficheiro de índice '%s' não é suportado" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Erro ao escrever para o ficheiro" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Não foi possível fazer stat %s." -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Erro ao ler do servidor. O lado remoto fechou a ligação" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "A cache possui um sistema de versões incompatível" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Erro ao ler do servidor" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Ocorreu um erro ao processar %s (%s%d)" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Erro ao escrever para ficheiro" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "" +"Uau, você excedeu o número de nomes de pacotes que este APT é capaz de " +"suportar." -#: methods/http.cc:621 -msgid "Select failed" -msgstr "A selecção falhou" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "" +"Uau, você excedeu o número de versões que este APT é capaz de suportar." -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "O tempo da ligação expirou" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "" +"Uau, você excedeu o número de descrições que este APT é capaz de suportar." -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Erro ao escrever para o ficheiro de saída" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "" +"Uau, você excedeu o número de dependências que este APT é capaz de suportar." -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "A aguardar por cabeçalhos" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "" +"O pacote %s %s não foi encontrado ao processar as dependências de ficheiros" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Linha de cabeçalho errada" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Não foi possível executar stat à lista de pacotes de código fonte %s" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "O servidor HTTP enviou um cabeçalho de resposta inválido" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "A ler as listas de pacotes" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "O servidor HTTP enviou um cabeçalho Content-Length inválido" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "A obter File Provides" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "O servidor HTTP enviou um cabeçalho Content-Range inválido" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Não conseguiu escrever para %s" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Este servidor HTTP possui suporte de range errado" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Erro de I/O ao gravar a cache de código fonte" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Formato de data desconhecido" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "O bloco de fabricante %s não contém a impressão digital" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Dados de cabeçalho errados" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Falta directório de listas %spartial." -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "A ligação falhou" +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Falta o directório de arquivos %spartial." -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Erro interno" +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "Impossível criar acesso exclusivo ao directório %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "A calcular a actualização... " +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "A obter o ficheiro %li de %li (%s restantes)" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Pronto" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "A obter o ficheiro %li de %li" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" +"Falhou o download de alguns ficheiros de índice. Foram ignorados ou os " +"antigos foram usados em seu lugar." -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Você deve colocar alguns URIs 'source' no seu sources.list" + +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" +"O valor '%s' é inválido para APT::Default-Release porque tal lançamento não " +"está disponível nas fontes" -#: apt-private/private-list.cc:164 +#: apt-pkg/policy.cc:422 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Registo inválido no ficheiro de preferências %s, sem cabeçalho Package" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "A corrigir dependências..." +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Não foi possível entender o tipo de marca (pin) %s" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " falhou." +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Nenhuma prioridade (ou zero) especificada para marcação (pin)" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Não foi possível corrigir dependências" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" +"Não foi possível proceder à configuração imediata em '%s'. Para detalhes, " +"por favor veja man 5 apt.conf em APT::Immediate-Configure. (%d)" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Não foi possível minimizar o conjunto de actualizações" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Não pode configurar '%s'. " -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Feito" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"Esta execução da instalação irá necessitar de remover temporariamente o " +"pacote essencial %s devido a um loop de Conflitos/Pré-Dependências. Isto " +"normalmente é mau, mas se você quer realmente fazer isso, active a opção " +"APT::Force-LoopBreak." -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Você pode querer executar 'apt-get -f install' para corrigir isso." +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "Linha %u é demasiado longa na lista de fontes %s." -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dependências não satisfeitas. Tente utilizar -f." +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "A desmontar o CD-ROM...\n" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "A utilizar o ponto de montagem do CD-ROM %s\n" -#: apt-private/private-output.cc:234 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Instalado]" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "A aguardar pelo disco...\n" -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [Instalado]" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "A montar o CD-ROM...\n" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "A identificar... " -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Instalado]" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Label Guardada: %s \n" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Instalado]" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "A pesquisar os ficheiros de índice do disco...\n" -#: apt-private/private-output.cc:249 +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "[upgradable from: %s]" +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"Foram encontrados %zu índices de pacotes, %zu índices de código-fonte, %zu " +"índices de tradução e %zu assinaturas\n" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" +"Não foi possível localizar quaisquer ficheiros de pacote, talvez este não " +"seja um disco Debian ou seja a arquitectura errada?" -#: apt-private/private-output.cc:435 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "but %s is installed" -msgstr "mas %s está instalado" +msgid "Found label '%s'\n" +msgstr "Encontrada a etiqueta '%s'\n" -#: apt-private/private-output.cc:437 -#, c-format -msgid "but %s is to be installed" -msgstr "mas %s está para ser instalado" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Isso não é um nome válido, tente novamente.\n" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "mas não é instalável" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Este disco tem o nome: \n" +"'%s'\n" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "mas é um pacote virtual" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "A copiar listas de pacotes..." -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "mas não está instalado" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "A escrever lista de novas source\n" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "mas não vai ser instalado" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "As entradas de listas de Source para este Disco são:\n" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " ou" +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"O pacote %s necessita ser reinstalado, mas não foi possível encontrar um " +"repositório para o mesmo." -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Os pacotes a seguir têm dependências não satisfeitas:" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Erro, pkgProblemResolver::Resolve gerou falhas, isto pode ser causado por " +"pacotes mantidos (hold)." -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Serão instalados os seguintes NOVOS pacotes:" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "" +"Não foi possível corrigir problemas, você tem pacotes mantidos (hold) " +"estragados." -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Serão REMOVIDOS os seguintes pacotes:" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Enviar cenário a resolver" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Serão mantidos em suas versões actuais os seguintes pacotes:" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Enviar pedido para resolvedor" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Serão actualizados os seguintes pacotes:" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Preparar para receber solução" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Será feito o DOWNGRADE aos seguintes pacotes:" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "O resolvedor externo falhou sem uma mensagem de erro adequada" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Os seguintes pacotes mantidos serão mudados:" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Executar resolvedor externo" -#: apt-private/private-output.cc:668 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%s (due to %s) " -msgstr "%s (devido a %s) " - -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" -msgstr "" -"AVISO: Os seguintes pacotes essenciais serão removidos.\n" -"Isso NÃO deverá ser feito a menos que saiba exactamente o que está a fazer!" +msgid "Unable to parse package file %s (1)" +msgstr "Não foi possível fazer parse ao ficheiro do pacote %s (1)" -#: apt-private/private-output.cc:707 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu pacotes actualizados, %lu pacotes novos instalados, " +msgid "Unable to parse package file %s (2)" +msgstr "Não foi possível fazer parse ao ficheiro de pacote %s (2)" -#: apt-private/private-output.cc:711 +#: apt-pkg/indexrecords.cc:78 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinstalados, " +msgid "Unable to parse Release file %s" +msgstr "Não foi possível fazer parse ao ficheiro Release %s" -#: apt-private/private-output.cc:713 +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "%lu downgraded, " -msgstr "%lu a que foi feito o downgrade, " +msgid "No sections in Release file %s" +msgstr "Nenhuma secção, no ficheiro Release %s" -#: apt-private/private-output.cc:715 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu a remover e %lu não actualizados.\n" +msgid "No Hash entry in Release file %s" +msgstr "Nenhuma entrada hash no ficheiro Release %s" -#: apt-private/private-output.cc:719 +#: apt-pkg/indexrecords.cc:130 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu pacotes não totalmente instalados ou removidos.\n" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Entrada inválida, 'Valid-until', no ficheiro de Release: %s" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[S/n]" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Entrada, 'Date', inválida no ficheiro Release %s" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "s/N]" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Linha mal formada %lu na lista de fontes %s (parse de URI)" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "S" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "" +"Linha mal formada %lu na lista de fontes %s ([opção] não interpretável)" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "N" +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Linha mal formada %lu na lista de fontes %s ([opção] demasiado curta)" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "O comando update não leva argumentos" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "" +"Linha mal formada %lu na lista de fontes %s ([%s] não é uma atribuição)" -#: apt-private/private-update.cc:90 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Linha mal formada %lu na lista de fontes %s ([%s] não tem chave)" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" +"Linha mal formada %lu na lista de fontes %s ([%s] chave %s não tem valor)" -#: apt-private/private-show.cc:156 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Linha mal formada %lu na lista de fontes %s (URI)" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Linha mal formada %lu na lista de fontes %s (distribuição)" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Erro Interno, InstallPackages foi chamado com pacotes estragados!" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Linha mal formada %lu na lista de fontes %s (parse de URI)" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Pacotes precisam de ser removidos mas Remove está desabilitado." +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Linha mal formada %lu na lista de fontes %s (distribuição absoluta)" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Erro Interno, Ordering não terminou" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Linha mal formada %lu na lista de fontes %s (dist parse)" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Estranho... Os tamanhos não coincidiram, escreva para apt@packages.debian.org" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "A abrir %s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "É necessário obter %sB/%sB de arquivos.\n" +msgid "Malformed line %u in source list %s (type)" +msgstr "Linha mal formada %u na lista de fontes %s (tipo)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "É necessário obter %sB de arquivos.\n" +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "O tipo '%s' não é conhecido na linha %u na lista de fontes %s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "O tipo '%s' não é conhecido na linha %u na lista de fontes %s" + +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "" -"Após esta operação, serão utilizados %sB adicionais de espaço em disco.\n" +msgid "Release '%s' for '%s' was not found" +msgstr "Não foi encontrado o Release '%s' para '%s'" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Após esta operação, será libertado %sB de espaço em disco.\n" +msgid "Version '%s' for '%s' was not found" +msgstr "Não foi encontrada a versão '%s' para '%s'" -#: apt-private/private-install.cc:200 +#: apt-pkg/cacheset.cc:603 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Você não possui espaço livre suficiente em %s." +msgid "Couldn't find task '%s'" +msgstr "Não foi possível encontrar a tarefa '%s'" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Há problemas e foi utilizado -y sem --force-yes" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Não foi possível encontrar o pacote através da expressão regular '%s'" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Trivial Only especificado mas isto não é uma operação trivial." +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Não foi possível encontrar o pacote através da expressão regular '%s'" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Sim, faça como eu digo!" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" +"Não foi possível seleccionar versões do pacote '%s' pois é puramente virtual" -#: apt-private/private-install.cc:222 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 #, c-format msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Você está prestes a fazer algo potencialmente nocivo.\n" -"Para continuar escreva a frase '%s'\n" -" ?] " - -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Abortado." - -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Deseja continuar?" +"Não pode seleccionar a versão instalada nem a versão candidata do pacote " +"'%s' pois não tem nenhuma destas" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Falhou o download de alguns ficheiros" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"Não foi possível seleccionar a versão mais recente a partir do pacote '%s' " +"já que é puramente virtual" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -"Não foi possível obter alguns arquivos, tente talvez correr apt-get update " -"ou tente com --fix-missing?" +"Não é possível seleccionar a versão candidata do pacote %s já que não tem " +"candidato" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing e troca de mídia não são suportados actualmente" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"Não é possível seleccionar a versão instalada do pacote %s pois não está " +"instalado" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Não foi possível corrigir os pacotes em falta." +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%lid %lih %limin %lis" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "A abortar a instalação." +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%lih %limin %lis" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -"O seguinte pacote desapareceu do seu sistema pois\n" -"todos os ficheiros foram sobrescritos por outros pacotes:" -msgstr[1] "" -"Os seguintes pacotes desapareceram do seu sistema pois\n" -"todos os ficheiros foram por outros pacotes:" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Nota: Isto foi feito automaticamente e intencionalmente pelo dpkg." +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Não é suposto nós apagarmos coisas, não pode iniciar o AutoRemover" +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "A selecção %s não foi encontrada" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" msgstr "" -"Hmm, parece que o AutoRemover destruiu algo que realmente não deveria ter\n" -"acontecido. Por favor arquive um relatório de bug contra o apt." - -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "A seguinte informação pode ajudar a resolver a situação:" +"Não está a ser utilizado acesso exclusivo para apenas leitura ao ficheiro %s" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Erro Interno, o AutoRemover estragou coisas" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Não foi possível abrir ficheiro de lock %s" -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "" -"O seguinte pacote foi instalado automaticamente e já não é necessário:" -msgstr[1] "" -"Os seguintes pacotes foram instalados automaticamente e já não são " -"necessários:" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "" +"Não está a ser utilizado o acesso exclusivo para o ficheiro %s, montado via " +"nfs" -#: apt-private/private-install.cc:517 +#: apt-pkg/contrib/fileutl.cc:223 #, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "O pacote %lu foi instalado automaticamente e já não é necessário.\n" -msgstr[1] "" -"Os pacotes %lu foram instalados automaticamente e já não são necessários.\n" +msgid "Could not get lock %s" +msgstr "Não foi possível obter acesso exclusivo a %s" -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Utilize 'apt-get autoremove' para o remover." -msgstr[1] "Utilize 'apt-get autoremove' para os remover." +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" +"Lista de ficheiros que não podem ser criados porque '%s' não é um directório" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Você deve querer executar 'apt-get -f install' para corrigir estes:" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "A ignorar '%s' no directório '%s' porque não é um ficheiro normal" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -"Dependências não satisfeitas. Tente 'apt-get -f install' sem nenhum pacote " -"(ou especifique uma solução)." +"A ignorar o ficheiro '%s' no directório '%s' porque não tem extensão no nome " +"do ficheiro" -#: apt-private/private-install.cc:638 +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"Alguns pacotes não puderam ser instalados. Isso pode significar que\n" -"você solicitou uma situação impossível ou se você está a usar a\n" -"distribuição unstable em que alguns pacotes pedidos ainda não foram \n" -"criados ou foram movidos do Incoming." - -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Pacotes estragados" - -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Os seguintes pacotes extra serão instalados:" - -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Pacotes sugeridos:" - -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Pacotes recomendados:" +"A ignorar o ficheiro '%s' no directório '%s' porque tem uma extensão " +"inválida no nome do ficheiro" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Saltando %s, já está instalado e a actualização não está definida.\n" +msgid "Sub-process %s received a segmentation fault." +msgstr "O sub-processo %s recebeu uma falha de segmentação." -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:826 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "Saltando %s, não está instalado e só são pedidas actualizações.\n" +msgid "Sub-process %s received signal %u." +msgstr "O sub-processo %s recebeu o sinal %u." -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "" -"A reinstalação de %s não é possível, o download do mesmo não pode ser " -"feito.\n" +msgid "Sub-process %s returned an error code (%u)" +msgstr "O sub-processo %s retornou um código de erro (%u)" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s já está na versão mais recente.\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "O sub-processo %s terminou inesperadamente" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Versão seleccionada '%s' (%s) para '%s'\n" +msgid "Problem closing the gzip file %s" +msgstr "Problema ao fechar o ficheiro gzip %s" -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Versão seleccionada '%s' (%s) para '%s' devido a '%s'\n" +msgid "Could not open file %s" +msgstr "Não foi possível abrir ficheiro o %s" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" -"O pacote '%s' não está instalado, por isso não será removido. Queria dizer " -"'%s'?\n" +msgid "Could not open file descriptor %d" +msgstr "Não foi possível abrir o descritor de ficheiro %d" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Falhou criar subprocesso IPC" + +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Falhou executar compactador " + +#: apt-pkg/contrib/fileutl.cc:1514 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "O pacote '%s' não está instalado, por isso não será removido\n" +msgid "read, still have %llu to read but none left" +msgstr "lidos, ainda restam %llu para serem lidos mas não resta nenhum" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" -"NOTE:\tIsto é apenas uma simulação!\n" -"\to apt-get necessita de privilégios de root para a execução real.\n" -"\tTenha em mente que o acesso exclusivo está desabilitado,\n" -"\tpor isso não confie na relevância da real situação actual!" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "escritos, ainda restam %llu para escrever mas não foi possível" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "AVISO: Os seguintes pacotes não podem ser autenticados!" +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Problema ao fechar o ficheiro %s" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Aviso de autenticação ultrapassado.\n" +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Problema ao renomear o ficheiro %s para %s" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Alguns pacotes não puderam ser autenticados" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Problema ao remover o link do ficheiro %s" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Instalar estes pacotes sem verificação?" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Problema sincronizando o ficheiro" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Falha ao baixar %s %s\n" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Erro !" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%c%s... Done" +msgstr "%c%s... Pronto" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Hit " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Obter:" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Pronto" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Não é possível fazer mmap a um ficheiro vazio" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Não foi possível duplicar o descritor de ficheiro %i" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:119 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Obtidos %sB em %s (%sB/s)\n" +msgid "Couldn't make mmap of %llu bytes" +msgstr "Não foi possível fazer mmap de %llu bytes" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Não foi possível fechar mmap" + +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Não foi sincronizar mmap " + +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid " [Working]" -msgstr " [A trabalhar]" +msgid "Couldn't make mmap of %lu bytes" +msgstr "Não foi possível fazer mmap de %lu bytes" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Falhou truncar o ficheiro" + +#: apt-pkg/contrib/mmap.cc:341 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -"Troca de mídia: Por favor insira o disco chamado\n" -" '%s'\n" -"no leitor '%s' e pressione enter\n" +"O Dynamic MMap ficou sem espaço. Por favor aumente o tamanho de APT::Cache-" +"Start. Valor actual: %lu. (man 5 apt.conf)" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "No mirror file '%s' found " -msgstr "Não foi encontrado ficheiro de mirror '%s'" +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" +"Não foi possível aumentar o tamanho do MMap pois o limite de %lu bytes já " +"foi alcançado." -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"Não foi possível aumentar o tamanho do MMap pois o crescimento automático " +"está desabilitado pelo utilizador." + +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Não pode ler ficheiro de mirror '%s'" +msgid "Unable to stat the mount point %s" +msgstr "Impossível executar stat ao ponto de montagem %s" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Não pode ler ficheiro de mirror '%s'" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Impossível executar stat ao cdrom" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "[Mirror: %s]" -msgstr "[Mirror: %s]" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Falha ao criar pipe IPC para subprocesso" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Abreviatura de tipo desconhecida: '%c'" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Ligação encerrada prematuramente" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "A abrir o ficheiro de configuração %s" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Configuração pré-definida errada!" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Erro de sintaxe %s:%u: O bloco começa sem nome." -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Carregue em enter para continuar." +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Erro de sintaxe %s:%u: Tag mal formada" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Deseja apagar quaisquer ficheiros .deb obtidos previamente?" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Erro de sintaxe %s:%u: Lixo extra depois do valor" -# Note to translators: The following four messages belong together. It doesn't -# matter where sentences start, but it has to fit in just these four lines, and -# at only 80 characters per line, if possible. -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -"Ocorreram alguns erros ao descompactar. Os pacotes que foram instalados" +"Erro de sintaxe %s:%u: Directivas só podem ser feitas no nível mais alto" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "serão configurados. Isto pode resultar em erros duplicados" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Erro de sintaxe %s:%u: Demasiados includes encadeados" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "causados por dependências em falta. Isto está OK, somente os erros" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Erro de sintaxe %s:%u: Incluído a partir deste ponto" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Erro de sintaxe %s:%u: Directiva '%s' não suportada" + +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"acima desta mensagem são importantes. Por favor resolva-os e execute " -"[I]nstalar novamente" +"Erro de sintaxe %s:%u: directiva clara necessita de uma árvore de opções " +"como argumento" -#: dselect/update:30 -msgid "Merging available information" -msgstr "A juntar a informação disponível" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Erro de sintaxe %s:%u: Lixo extra no final do ficheiro" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode chamado em nó ainda linkado" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "Nenhum keyring instalado em %s." -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Falha ao localizar o elemento de hash!" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Opção '%c' da linha de comandos [de %s] é desconhecida." -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Falha ao alocar desvio (diversion)" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Opção %s de linha de comandos não é compreendida" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Erro Interno em AddDiversion" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Opção %s da linha de comandos não é booleana" + +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "A opção %s necessita de um argumento." -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "A tentar sobrescrever um desvio, %s -> %s e %s/%s" +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Opção %s: Especificação de item de configuração tem de ter um =<val>." -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Adição dupla de desvio %s -> %s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Opção %s necessita de um número inteiro como argumento, não '%s'" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Arquivo de configuração duplicado %s/%s" +msgid "Option '%s' is too long" +msgstr "Opção '%s' é demasiado longa" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "The path %s is too long" -msgstr "O caminho %s é demasiado longo" +msgid "Sense %s is not understood, try true or false." +msgstr "O sentido %s não é compreendido, tente verdadeiro ou falso." -#: apt-inst/extract.cc:132 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "Unpacking %s more than once" -msgstr "A descompactar %s mais de uma vez" +msgid "Invalid operation %s" +msgstr "Operação %s inválida" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "The directory %s is diverted" -msgstr "O directório %s é desviado" +msgid "Installing %s" +msgstr "A instalar %s" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "O pacote está a tentar escrever no alvo de desvio %s/%s" +msgid "Configuring %s" +msgstr "A configurar %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "O caminho de desvio é muito longo" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "A remover %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "Failed to stat %s" -msgstr "Falha stat %s" +msgid "Completely removing %s" +msgstr "A remover completamente %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Falhou renomear %s para %s" +msgid "Noting disappearance of %s" +msgstr "A notar o desaparecimento de %s" -#: apt-inst/extract.cc:249 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "O directório %s está a ser substituído por um não-directório" +msgid "Running post-installation trigger %s" +msgstr "A correr o 'trigger' de pós-instalação %s" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Falhou localizar o nó no seu hash bucket" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Falta o directório '%s'" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "O caminho é demasiado longo" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Não foi possível abrir ficheiro o '%s'" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Substituir o pacote correspondente sem versão para %s" +msgid "Preparing %s" +msgstr "A preparar %s" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "O ficheiro %s/%s substitui o que está no pacote %s" +msgid "Unpacking %s" +msgstr "A desempacotar %s" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Unable to stat %s" -msgstr "Não foi possível fazer stat %s" +msgid "Preparing to configure %s" +msgstr "A preparar para configurar %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Failed to write file %s" -msgstr "Falhou escrever o ficheiro %s" +msgid "Installed %s" +msgstr "%s instalado" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to close file %s" -msgstr "Falhou fechar o ficheiro %s" +msgid "Preparing for removal of %s" +msgstr "A preparar a remoção de %s" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Este não é um arquivo DEB válido, falta o membro '%s'" +msgid "Removed %s" +msgstr "%s removido" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Erro Interno, não foi possível localizar o membro %s" +msgid "Preparing to completely remove %s" +msgstr "A preparar para remover completamente %s" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Ficheiro de controle não interpretável" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Remoção completa de %s" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Assinatura de arquivo inválida" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Erro na leitura de cabeçalho membro de arquivo" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Não conseguiu escrever para %s" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Cabeçalho membro de arquivo inválido %s" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Cabeçalho membro de arquivo inválido" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arquivo é demasiado pequeno" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "A operação foi interrompida antes de poder terminar" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Falha ao ler os cabeçalhos do arquivo" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "Nenhum relatório apport escrito pois MaxReports já foi atingido" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Falhou a criação de pipes" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "problemas de dependências - deixando por configurar" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Falhou executar gzip " +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Nenhum relatório apport escrito pois a mensagem de erro indica que é um erro " +"de seguimento de um erro anterior." -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Arquivo corrompido" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Nenhum relatório apport escrito pois a mensagem de erro indica erro de disco " +"cheio" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "A soma de controlo do tar falhou, arquivo corrompido" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Nenhum relatório apport escrito pois a mensagem de erro indica um erro de " +"memória esgotada" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Nenhum relatório apport escrito pois a mensagem de erro indica erro de disco " +"cheio" + +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Nenhum relatório apport escrito pois a mensagem de erro indica um erro de I/" +"O do dpkg" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Tipo de cabeçalho TAR %u desconhecido, membro %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Não foi possível obter acesso exclusivo ao directório de administração (%s), " +"outro processo está a utilizá-lo?" + +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "" +"Não foi possível criar acesso exclusivo ao directório de administração (%s), " +"é root?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"O dpkg foi interrompido, para corrigir o problema tem de correr manualmente " +"'%s'" + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Sem acesso exclusivo" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/pt_BR.po b/po/pt_BR.po index 01eaedb9a..304986cde 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2008-11-17 02:33-0200\n" "Last-Translator: Felipe Augusto van de Wiel (faw) <faw@debian.org>\n" "Language-Team: Brazilian Portuguese <debian-l10n-portuguese@lists.debian." @@ -18,3189 +18,3190 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "Tipo de arquivo de índice '%s' não é suportado" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "Impossível ler %s" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Impossível mudar para %s" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "Impossível executar \"stat\" %s." - -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Progress: [%3i%%]" -msgstr "" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "O pacote %s versão %s tem uma dependência desencontrada:\n" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Total de Nomes de Pacotes: " -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Sistema de empacotamento '%s' não é suportado" +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "Total de Nomes de Pacotes: " -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Impossível determinar um tipo de sistema de empacotamento aplicável." +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Pacotes normais: " -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Gravados %i registros.\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Pacotes puramente virtuais: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Gravados %i registros com %i arquivos faltando.\n" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Pacotes virtuais únicos: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Gravados %i registros com %i arquivos que não combinam\n" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Pacotes virtuais misturados: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"Gravados %i registros com %i arquivos faltando e %i arquivos que não " -"combinam\n" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Faltando: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Total de versões distintas: " -#: apt-pkg/indexcopy.cc:521 -#, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Hash Sum incorreto" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Total de descrições distintas: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "O driver do método %s não pode ser encontrado." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Total de dependências: " -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Confira se o pacote 'dpkg-dev' está instalado.\n" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Total de relações ver/arquivo: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Método %s não iniciou corretamente" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Total de relações Desc/Arquivo: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "" -"Por favor, insira o disco nomeado: '%s' na unidade '%s' e pressione enter." +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Total de mapeamentos \"Provides\": " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "" -"As listas de pacotes ou os arquivos de estado não puderam ser analisados ou " -"abertos." +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Total de strings \"globbed\": " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Você terá que executar apt-get update para corrigir estes problemas" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Total de espaço de dependência de versão: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "A lista de fontes não pode ser lida." +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Total de espaço frouxo: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Cache de pacotes vazio" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Total de espaço contabilizado para: " -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "O arquivo de cache de pacotes está corrompido" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "O arquivo de pacote %s está fora de sincronia." -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "O arquivo de cache de pacotes é uma versão incompatível" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Nenhum pacote encontrado" -#: apt-pkg/pkgcache.cc:169 +#: cmdline/apt-cache.cc:1254 #, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "O arquivo de cache de pacotes está corrompido" - -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Este APT não suporta o sistema de versões '%s'" +msgid "You must give at least one search pattern" +msgstr "Você deve passar exatamente um padrão" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "O cache de pacotes foi gerado para uma arquitetura diferente" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Depende" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "Impossível encontrar o pacote %s" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Pré-Depende" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Arquivos de pacote:" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Sugere" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" +"O cache está fora de sincronia, não foi possível fazer a referência cruzada " +"de um arquivo de pacote" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Recomenda" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Pacotes alfinetados (\"pinned\"):" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Conflita" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(não encontrado)" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Substitui" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Instalado: " -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Obsoleta" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Candidato: " -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Quebra" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(nenhum)" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Pacote alfinetado (\"pin\"): " -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "importante" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Tabela de versão:" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "requerido" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s para %s compilado em %s %s\n" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "padrão" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Uso: apt-cache [opções] comando\n" +" apt-cache [opções] add arquivo1 [arquivo1 ...]\n" +" apt-cache [opções] showpkg pacote1 [pacote2 ...]\n" +" apt-cache [opções] showsrc pacote1 [pacote2 ...]\n" +"\n" +"O apt-cache é uma ferramenta de baixo nível usada para manipular os\n" +"arquivos de cache binários do APT e para buscar informações neles\n" +"\n" +"Comandos:\n" +" add - Adiciona um arquivo de pacote ao cache de fontes\n" +" gencaches - Constrói ambos os caches de pacotes e fontes\n" +" showpkg - Mostra informações gerais para um único pacote\n" +" showsrc - Mostra registros fontes\n" +" stats - Mostra algumas estatísticas básicas\n" +" dump - Mostra o arquivo inteiro em uma forma concisa\n" +" dumpavail - Imprime um arquivo \"available\" para stdout\n" +" unmet - Mostra dependências desencontradas\n" +" search - Procura a lista de pacotes por um padrão regex\n" +" show - Mostra um registro legível sobre o pacote\n" +" depends - Mostra informações de dependências não processadas de um " +"pacote\n" +" rdepends - Mostra informações de dependências reversas de um pacote\n" +" pkgnames - Lista o nome de todos os pacotes no sistema\n" +" dotty - Gera gráficos de pacotes para o GraphViz\n" +" xvcg - Gera gráficos de pacotes para o xvcg\n" +" policy - Mostra as configurações de políticas\n" +"\n" +"Opções:\n" +" -h Este texto de ajuda.\n" +" -p=? O cache de pacotes.\n" +" -s=? O cache de fontes.\n" +" -q Desabilita o indicador de progresso.\n" +" -i Mostra somente dependências importantes para o comando \"unmet\".\n" +" -c=? Lê o arquivo de configuração especificado.\n" +" -o=? Define uma opção de configuração arbitrária, e.g.: -o dir::cache=/" +"tmp\n" +"Veja as páginas de manual apt-cache(8) e apt.conf(5) para mais informações.\n" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opcional" +#: cmdline/apt-cdrom.cc:76 +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "" +"Por favor, forneça um nome para este Disco, algo como 'Debian 2.1r1 Disco 1'" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Por favor, insira um Disco na unidade e pressione enter" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Tipo de arquivo de índice '%s' não é suportado" +#: cmdline/apt-cdrom.cc:139 +#, fuzzy, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Falhou ao renomear %s para %s" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Erro de compilação de regex - %s" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "O cache possui um sistema de versões incompatível" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Repita este processo para o restante dos CDs em seu conjunto." -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Um erro ocorreu processando %s (EncontrarPacote)" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumentos não estão em pares" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -"Uau, você excedeu o número de nomes de pacotes que este APT é capaz de " -"suportar." +"Uso: apt-config [opções] comando\n" +"\n" +"O apt-config é uma ferramenta simples para ler o arquivo de configuração\n" +"do APT\n" +"\n" +"Comandos:\n" +" shell - Modo shell\n" +" dump - Mostra a configuração\n" +"\n" +"Opções:\n" +" -h Este texto de ajuda.\n" +" -c=? Lê o arquivo de configuração especificado.\n" +" -o=? Define uma opção de configuração arbitrária, e.g.: -o dir::cache=/" +"tmp\n" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "" -"Uau, você excedeu o número de versões que este APT é capaz de suportar." +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Impossível achar pacote %s" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "" -"Uau, você excedeu o número de descrições que este APT é capaz de suportar." +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Impossível achar pacote %s" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "" -"Uau, você excedeu o número de dependências que este APT é capaz de suportar." +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Impossível achar pacote %s" -#: apt-pkg/pkgcachegen.cc:576 +#: cmdline/apt-get.cc:367 +#, fuzzy, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Não foi possível executar \"stat\" na lista de pacotes fonte %s" + +#: cmdline/apt-get.cc:423 #, c-format -msgid "Package %s %s was not found while processing file dependencies" +msgid "Can not find version '%s' of package '%s'" msgstr "" -"Pacote %s %s não foi encontrado enquanto processando dependências de arquivo" -#: apt-pkg/pkgcachegen.cc:1211 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Não foi possível executar \"stat\" na lista de pacotes fonte %s" - -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Lendo listas de pacotes" - -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Coletando Arquivo \"Provides\"" +msgid "Couldn't find package %s" +msgstr "Impossível achar pacote %s" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Unable to write to %s" -msgstr "Impossível escrever para %s" +msgid "%s set to manually installed.\n" +msgstr "%s configurado para instalar manualmente.\n" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Erro de E/S ao gravar cache fonte" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s configurado para instalar manualmente.\n" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Erro interno, o solucionador de problemas quebrou coisas" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Impossível criar trava no diretório de download" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Deve-se especificar pelo menos um pacote para que se busque o fonte" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "Impossível encontrar um pacote fonte para %s" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "renomeação falhou, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Hash Sum incorreto" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Tamanho incorreto" - -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Operação %s inválida" - -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:786 #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -#: apt-pkg/acquire-item.cc:1589 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Impossível analisar arquivo de pacote %s (1)" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Não existem chaves públicas para os seguintes IDs de chaves:\n" - -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:791 #, c-format msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" - -#: apt-pkg/acquire-item.cc:1691 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:843 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Pulando arquivo já baixado '%s'\n" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "GPG error: %s: %s" -msgstr "" +msgid "Couldn't determine free space in %s" +msgstr "Não foi possível determinar o espaço livre em %s" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:882 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"Não foi possível localizar um arquivo para o pacote %s. Isto pode significar " -"que você precisa consertar manualmente este pacote. (devido a arquitetura " -"não especificada)." +msgid "You don't have enough free space in %s" +msgstr "Você não possui espaço livre suficiente em %s" -#: apt-pkg/acquire-item.cc:1925 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Preciso obter %sB/%sB de arquivos fonte.\n" -#: apt-pkg/acquire-item.cc:1983 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Os arquivos de índice de pacotes estão corrompidos. Nenhum campo \"Filename:" -"\" para o pacote %s." +msgid "Need to get %sB of source archives.\n" +msgstr "Preciso obter %sB de arquivos fonte.\n" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Bloco fornecedor %s não contém impressão digital (\"fingerprint\")" +msgid "Fetch source %s\n" +msgstr "Obter fonte %s\n" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "Diretório de listas %spartial está faltando." +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Falhou ao buscar alguns arquivos." -#: apt-pkg/acquire.cc:91 -#, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "Diretório de arquivos %spartial está faltando." +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Baixar completo e no modo somente baixar (\"download only\")" -#: apt-pkg/acquire.cc:99 -#, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "Impossível criar trava no diretório de listas" +#: cmdline/apt-get.cc:950 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Pulando o desempacotamento de fontes já desempacotados em %s\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Obtendo o arquivo %li de %li (%s restantes)" +msgid "Unpack command '%s' failed.\n" +msgstr "Comando de desempacotamento '%s' falhou.\n" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Obtendo arquivo %li de %li" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Confira se o pacote 'dpkg-dev' está instalado.\n" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Falhou ao buscar %s %s\n" +msgid "Build command '%s' failed.\n" +msgstr "Comando de construção '%s' falhou.\n" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Alguns arquivos de índice falharam para baixar, eles foram ignorados ou os " -"antigos foram usados no lugar." +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Processo filho falhou" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Você deve colocar algumas URIs 'source' em seu sources.list" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "" +"Deve-se especificar pelo menos um pacote para que se cheque as dependências " +"de construção" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Registro inválido no arquivo de preferências, sem cabeçalho Package" +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "Impossível conseguir informações de dependência de construção para %s" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Did not understand pin type %s" -msgstr "Não foi possível entender o tipo de \"pin\" %s" +msgid "%s has no build depends.\n" +msgstr "%s não tem dependências de construção.\n" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Nenhuma prioridade (ou zero) especificada para \"pin\"" +#: cmdline/apt-get.cc:1272 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"a dependência de %s por %s não pode ser satisfeita porque o pacote %s não " +"pode ser encontrado" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"a dependência de %s por %s não pode ser satisfeita porque o pacote %s não " +"pode ser encontrado" + +#: cmdline/apt-get.cc:1313 +#, c-format +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" +"Falhou ao satisfazer a dependência de %s por %s: Pacote instalado %s é muito " +"novo" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:1352 #, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Não foi possível abrir arquivo %s" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"a dependência de %s por %s não pode ser satisfeita porque nenhuma versão " +"disponível do pacote %s pode satisfazer os requerimentos de versão" -#: apt-pkg/packagemanager.cc:583 -#, c-format +#: cmdline/apt-get.cc:1358 +#, fuzzy, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -"Esta execução de instalação requererá a remoção temporária do pacote " -"essencial %s devido a um loop de Conflitos/Pré-Dependências. Isso geralmente " -"é ruim, mas se você realmente quer fazer isso, ative a opção APT::Force-" -"LoopBreak." +"a dependência de %s por %s não pode ser satisfeita porque o pacote %s não " +"pode ser encontrado" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Line %u too long in source list %s." -msgstr "Linha %u muito longa na lista de fontes %s." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Desmontando CD-ROM...\n" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Falhou ao satisfazer a dependência de %s por %s: %s" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Usando ponto de montagem de CD-ROM %s\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Aguardando por disco...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Montando CD-ROM...\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Não foi possível satisfazer as dependências de compilação para %s." -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identificando... " +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Falhou ao processar as dependências de construção" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Rótulo armazenado: %s \n" +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Conectando em %s (%s)" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Procurando por arquivos de índice no disco...\n" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Módulos para os quais há suporte:" -#: apt-pkg/cdrom.cc:734 -#, c-format +#: cmdline/apt-get.cc:1633 +#, fuzzy msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Encontrado(s) %zu índice(s) de pacote(s), %zu índice(s) de fonte(s), %zu " -"índice(s) de traduções e %zu assinatura(s)\n" - -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" +"Uso: apt-get [opções] comando\n" +" apt-get [opções] install|remove pacote1 [pacote2 ...]\n" +" apt-get [opções] source pacote1 [pacote2 ...]\n" +"\n" +"O apt-get é uma interface simples de linha de comando para baixar\n" +"pacotes e instalá-los. Os comandos usados mais frequentemente são\n" +"update e install.\n" +"\n" +"Comandos:\n" +" update - Obtém novas listas de pacotes\n" +" upgrade - Realiza uma atualização\n" +" install - Instala novos pacotes (um pacote é libc6 e não libc6.deb)\n" +" remove - Remove pacotes\n" +" autoremove - Remove automaticamente todos os pacotes não usados\n" +" purge - Remove e expurga (\"purge\") pacotes\n" +" source - Baixa arquivos fonte\n" +" build-dep - Configura as dependências de compilação de pacotes fonte\n" +" dist-upgrade - Atualiza a distribuição, veja apt-get(8)\n" +" dselect-upgrade - Segue as seleções do dselect\n" +" clean - Apaga arquivos baixados para instalação\n" +" autoclean - Apaga arquivos antigos baixados para instalação\n" +" check - Verifica se não há dependências quebradas\n" +"\n" +"Opções:\n" +" -h Este texto de ajuda\n" +" -q Saída que pode ser registrada em log - sem indicador de progresso\n" +" -qq Sem saída, exceto para erros\n" +" -d Apenas baixa - NÃO instala ou desempacota arquivos\n" +" -s Não-age. Executa simulação de ordenação\n" +" -y Assume Sim para todas as perguntas e não questiona\n" +" -f Tenta corrigir um sistema com dependências quebradas\n" +" -m Tenta continuar se os arquivos não podem ser localizados\n" +" -u Mostra uma lista de pacotes atualizados também\n" +" -b Constrói o pacote fonte depois de baixá-lo\n" +" -V Exibe números de versões mais detalhados\n" +" -c=? Lê o arquivo de configuração especificado.\n" +" -o=? Define uma opção de configuração arbitrária, e.g.: -o dir::cache=/" +"tmp\n" +"Veja as páginas de manual apt-get(8), sources.list(5) e apt.conf(5)\n" +"para mais informações e opções.\n" +" Este APT tem Poderes de Super Vaca.\n" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Rótulo encontrado: '%s'\n" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Deve-se especificar pelo menos um pacote para que se busque o fonte" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Este não é um nome válido, tente novamente.\n" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: apt-pkg/cdrom.cc:817 -#, c-format +#: cmdline/apt-helper.cc:66 msgid "" -"This disc is called: \n" -"'%s'\n" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Esse disco é chamado: \n" -"'%s'\n" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Copiando lista de pacotes..." +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "mas não está instalado" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Gravando nova lista de fontes\n" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s configurado para instalar manualmente.\n" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Entradas na lista de fontes para este disco são:\n" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s configurado para instalar manualmente.\n" -#: apt-pkg/algorithms.cc:265 +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s já é a versão mais nova.\n" + +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s já é a versão mais nova.\n" + +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +msgid "Waited for %s but it wasn't there" +msgstr "Esperado %s mas este não estava lá" + +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "%s configurado para instalar manualmente.\n" + +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "Falhou ao abrir %s" + +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -"O pacote %s precisa ser reinstalado, mas não foi possível encontrar um " -"arquivo para o mesmo." -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-mark.cc:392 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -"Erro, pkgProblemResolver::Resolve gerou falhas, isto pode ser causado por " -"pacotes mantidos (hold)." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Impossível corrigir problemas, você manteve (hold) pacotes quebrados." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Construindo árvore de dependências" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Versões candidatas" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Geração de dependência" +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Impossível ler o banco de dados de cdrom %s" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Lendo informação de estado" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" +msgstr "" +"Por favor, use o apt-cdrom para fazer com que este CD-ROM seja reconhecido " +"pelo APT. O apt-get update não pode ser usado para adicionar novos CD-ROMs" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Falha ao abrir Arquivo de Estado (\"StateFile\") %s" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD-ROM errado" -#: apt-pkg/depcache.cc:256 +#: methods/cdrom.cc:249 #, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Falha ao escrever Arquivo de Estado (\"StateFile\") temporário %s" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Impossível desmontar o CD-ROM em %s, o mesmo ainda pode estar em uso." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Impossível analisar arquivo de pacote %s (1)" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disco não encontrado." -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Impossível analisar arquivo de pacote %s (2)" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Arquivo não encontrado" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Release '%s' para '%s' não foi encontrada" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Falhou ao executar \"stat\"" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Versão '%s' para '%s' não foi encontrada" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Falhou ao definir hora de modificação" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "Impossível encontrar o pacote %s" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI inválida, URIs locais não devem iniciar com //" -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "Impossível achar tarefa %s" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Efetuando login" -#: apt-pkg/cacheset.cc:609 -#, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Impossível achar pacote %s" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Impossível determinar o nome do ponto" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Impossível achar pacote %s" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Impossível determinar o nome local" -#: apt-pkg/cacheset.cc:626 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" +msgid "The server refused the connection and said: %s" +msgstr "O servidor recusou a conexão e disse: %s" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: methods/ftp.cc:225 #, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" +msgid "USER failed, server said: %s" +msgstr "USER falhou, servidor disse: %s" -#: apt-pkg/cacheset.cc:647 +#: methods/ftp.cc:232 #, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" +msgid "PASS failed, server said: %s" +msgstr "PASS falhou, servidor disse: %s" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" +"Um servidor proxy foi especificado mas não um script de login, Acquire::ftp::" +"ProxyLogin está vazio." -#: apt-pkg/cacheset.cc:663 +#: methods/ftp.cc:280 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Comando de script de login '%s' falhou, servidor disse: %s" -#: apt-pkg/indexrecords.cc:78 -#, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "Impossível analisar arquivo de pacote %s (1)" +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "TYPE falhou, servidor disse: %s" -#: apt-pkg/indexrecords.cc:86 -#, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "Nota, selecionando %s ao invés de %s\n" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Conexão expirou" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Servidor fechou a conexão" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Linha inválida no arquivo de desvios: %s" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Erro de leitura" -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Impossível analisar arquivo de pacote %s (1)" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Uma resposta sobrecarregou o buffer" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Linha mal formada %lu no arquivo de fontes %s (análise de URI)" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Corrupção de protocolo" -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"Linha mal formada %lu no arquivo de fontes %s (análise de distribuição)" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Erro de escrita" -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Linha mal formada %lu no arquivo de fontes %s (distribuição)" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Não foi possível criar um socket" -#: apt-pkg/sourcelist.cc:184 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "" -"Linha mal formada %lu no arquivo de fontes %s (análise de distribuição)" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Não foi possível conectar um socket de dados, conexão expirou" -#: apt-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "" -"Linha mal formada %lu no arquivo de fontes %s (análise de distribuição)" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Falhou" -#: apt-pkg/sourcelist.cc:193 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Linha mal formada %lu no arquivo de fontes %s (análise de distribuição)" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Não foi possível conectar um socket passivo." -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Linha mal formada %lu no arquivo de fontes %s (URI)" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo não foi capaz de obter um socket de escuta" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Linha mal formada %lu no arquivo de fontes %s (distribuição)" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Não foi possível fazer \"bind\" de um socket" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Linha mal formada %lu no arquivo de fontes %s (análise de URI)" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Não foi possível ouvir no socket" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Linha mal formada %lu no arquivo de fontes %s (distribuição absoluta)" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Não foi possível determinar o nome do socket" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "" -"Linha mal formada %lu no arquivo de fontes %s (análise de distribuição)" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Impossível enviar o comando PORT" -#: apt-pkg/sourcelist.cc:335 +#: methods/ftp.cc:802 #, c-format -msgid "Opening %s" -msgstr "Abrindo %s" +msgid "Unknown address family %u (AF_*)" +msgstr "Família de endereços %u desconhecida (AF_*)" -#: apt-pkg/sourcelist.cc:371 +#: methods/ftp.cc:811 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Linha mal formada %u no arquivo de fontes %s (tipo)" +msgid "EPRT failed, server said: %s" +msgstr "EPRT falhou, servidor disse: %s" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Tipo '%s' não é conhecido na linha %u na lista de fontes %s" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Conexão do socket de dados expirou" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Tipo '%s' não é conhecido na linha %u na lista de fontes %s" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Impossível aceitar conexão" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Instalando %s" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problema criando o hash do arquivo" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#: methods/ftp.cc:890 #, c-format -msgid "Configuring %s" -msgstr "Configurando %s" +msgid "Unable to fetch file, server said '%s'" +msgstr "Impossível obter arquivo, servidor disse '%s'" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Socket de dados expirou" + +#: methods/ftp.cc:935 #, c-format -msgid "Removing %s" -msgstr "Removendo %s" +msgid "Data transfer failed, server said '%s'" +msgstr "Transferência de dados falhou, servidor disse '%s'" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "%s completamente removido" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Pesquisa" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Impossível invocar " -#: apt-pkg/deb/dpkgpm.cc:100 +#: methods/connect.cc:76 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Executando gatilho pós-instalação %s" +msgid "Connecting to %s (%s)" +msgstr "Conectando em %s (%s)" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#: methods/connect.cc:87 #, c-format -msgid "Directory '%s' missing" -msgstr "Diretório '%s' está faltando" - -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "Não foi possível abrir arquivo %s" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/deb/dpkgpm.cc:989 +#: methods/connect.cc:94 #, c-format -msgid "Preparing %s" -msgstr "Preparando %s" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Não foi possível criar um socket para %s (f=%u t=%u p=%u)" -#: apt-pkg/deb/dpkgpm.cc:990 +#: methods/connect.cc:100 #, c-format -msgid "Unpacking %s" -msgstr "Desempacotando %s" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Não foi possível iniciar a conexão para %s:%s (%s)." -#: apt-pkg/deb/dpkgpm.cc:995 +#: methods/connect.cc:108 #, c-format -msgid "Preparing to configure %s" -msgstr "Preparando para configurar %s" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Não foi possível conectar em %s:%s (%s), conexão expirou" -#: apt-pkg/deb/dpkgpm.cc:997 +#: methods/connect.cc:126 #, c-format -msgid "Installed %s" -msgstr "%s instalado" +msgid "Could not connect to %s:%s (%s)." +msgstr "Não foi possível conectar em %s:%s (%s)." -#: apt-pkg/deb/dpkgpm.cc:1002 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Preparing for removal of %s" -msgstr "Preparando para a remoção de %s" +msgid "Connecting to %s" +msgstr "Conectando a %s" -#: apt-pkg/deb/dpkgpm.cc:1004 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Removed %s" -msgstr "%s removido" +msgid "Could not resolve '%s'" +msgstr "Não foi possível resolver '%s'" -#: apt-pkg/deb/dpkgpm.cc:1009 +#: methods/connect.cc:205 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Preparando para remover completamente %s" +msgid "Temporary failure resolving '%s'" +msgstr "Falha temporária resolvendo '%s'" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "%s completamente removido" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Algo estranho aconteceu resolvendo '%s:%s' (%i)" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: methods/connect.cc:211 +#, fuzzy, c-format +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Algo estranho aconteceu resolvendo '%s:%s' (%i)" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#: methods/connect.cc:258 #, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Impossível escrever para %s" +msgid "Unable to connect to %s:%s:" +msgstr "Impossível conectar em %s %s:" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" +"Erro interno: Assinatura boa, mas não foi possível determinar a impressão " +"digital da chave?!" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Ao menos uma assinatura inválida foi encontrada." + +#: methods/gpgv.cc:174 +#, fuzzy +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" +"Não foi possível executar '%s' para verificar a assinatura (o gpgv está " +"instalado?)" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Esperado %s mas este não estava lá" - -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" +msgid "" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Erro desconhecido executando gpgv" + +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "As seguintes assinaturas eram inválidas:\n" + +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" +"As assinaturas a seguir não puderam ser verificadas devido à chave pública " +"não estar disponível:\n" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Erro escrevendo para o arquivo" + +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Erro lendo do servidor. Ponto remoto fechou a conexão" + +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Erro lendo do servidor" + +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Erro escrevendo para arquivo" + +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Seleção falhou" + +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Conexão expirou" + +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Erro escrevendo para arquivo de saída" + +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Aguardando por cabeçalhos" + +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Linha de cabeçalho ruim" + +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "O servidor HTTP enviou um cabeçalho de resposta inválido" + +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "O servidor HTTP enviou um cabeçalho \"Content-Length\" inválido" + +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "O servidor HTTP enviou um cabeçalho \"Content-Range\" inválido" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Este servidor HTTP possui suporte a \"range\" quebrado" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Formato de data desconhecido" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Dados de cabeçalho ruins" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Conexão falhou" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Erro interno" + +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -#: apt-pkg/deb/debsystem.cc:94 -#, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Impossível criar trava no diretório de listas" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Erro interno, InstallPackages foi chamado com pacotes quebrados!" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Pacotes precisam ser removidos mas a remoção está desabilitada." -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Erro interno, Ordenação não finalizou" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" +"Que estranho... Os tamanhos não batem, mande e-mail para apt@packages.debian." +"org" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "%lih %limin %lis" -msgstr "" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "É preciso baixar %sB/%sB de arquivos.\n" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "%limin %lis" -msgstr "" +msgid "Need to get %sB of archives.\n" +msgstr "É preciso baixar %sB de arquivos.\n" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "%lis" +msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" +"Depois desta operação, %sB adicionais de espaço em disco serão usados.\n" -#: apt-pkg/contrib/strutl.cc:1243 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "Selection %s not found" -msgstr "Seleção %s não encontrada" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Depois desta operação, %sB de espaço em disco serão liberados.\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:200 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Não usando travamento para arquivo de trava somente leitura %s" +msgid "You don't have enough free space in %s." +msgstr "Você não possui espaço suficiente em %s." -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Não foi possível abrir arquivo de trava %s" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Há problemas e -y foi usado sem --force-yes" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Não usando travamento para arquivo de trava montado via nfs %s" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "\"Trivial Only\" especificado mas esta não é uma operação trivial." -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Não foi possível obter trava %s" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Sim, faça o que eu digo!" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: apt-private/private-install.cc:222 #, c-format -msgid "List of files can't be created as '%s' is not a directory" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"Você está prestes a fazer algo potencialmente destrutivo.\n" +"Para continuar digite a frase '%s'\n" +" ?] " -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Abortar." -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Você quer continuar?" + +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Alguns arquivos falharam ao baixar" + +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"Impossível buscar alguns arquivos, talvez executar apt-get update ou tentar " +"com --fix-missing?" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing e troca de mídia não são suportados atualmente" + +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Impossível corrigir pacotes faltantes." + +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Abortando instalação." + +#: apt-private/private-install.cc:366 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Sub-processo %s recebeu uma falha de segmentação." +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Nós não deveríamos apagar coisas, impossível iniciar AutoRemover" -#: apt-pkg/contrib/fileutl.cc:826 -#, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "Sub-processo %s recebeu uma falha de segmentação." +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" +"Hmm, parece que o AutoRemover destruiu algo o que realmente não deveria\n" +"acontecer. Por favor, reporte um bug contra o apt." -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Sub-processo %s retornou um código de erro (%u)" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "A informação a seguir pode ajudar a resolver a situação:" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Sub-processo %s finalizou inesperadamente" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Erro Interno, o AutoRemover quebrou coisas" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Erro de escrita" +#: apt-private/private-install.cc:513 +#, fuzzy +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "" +"Os seguintes pacotes foram automaticamente instalados e não são mais " +"requeridos:" +msgstr[1] "" +"Os seguintes pacotes foram automaticamente instalados e não são mais " +"requeridos:" -#: apt-pkg/contrib/fileutl.cc:913 +#: apt-private/private-install.cc:517 #, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problema fechando o arquivo" +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "" +"Os seguintes pacotes foram automaticamente instalados e não são mais " +"requeridos:" +msgstr[1] "" +"Os seguintes pacotes foram automaticamente instalados e não são mais " +"requeridos:" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Não foi possível abrir arquivo %s" +#: apt-private/private-install.cc:519 +#, fuzzy +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Use 'apt-get autoremove' para removê-los." +msgstr[1] "Use 'apt-get autoremove' para removê-los." -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "Não foi possível abrir \"pipe\" para %s" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Você deve querer executar 'apt-get -f install' para corrigí-los:" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Falhou ao criar sub-processo IPC" +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"Dependências desencontradas. Tente 'apt-get -f install' sem nenhum pacote " +"(ou especifique uma solução)." -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Falhou ao executar compactador " +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"Alguns pacotes não puderam ser instalados. Isto pode significar que\n" +"você solicitou uma situação impossível ou, se você está usando a\n" +"distribuição instável, que alguns pacotes requeridos não foram\n" +"criados ainda ou foram retirados da \"Incoming\"." -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Erro de leitura" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Pacotes quebrados" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "leitura, ainda restam %lu para serem lidos mas nenhum deixado" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Os pacotes extra a seguir serão instalados:" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "escrita, ainda restam %lu para gravar mas não foi possível" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Pacotes sugeridos:" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Problema fechando o arquivo" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Pacotes recomendados:" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problema sincronizando o arquivo" +#: apt-private/private-install.cc:825 +#, c-format +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Pulando %s, já está instalado e a atualização não está configurada.\n" -#: apt-pkg/contrib/fileutl.cc:1938 +#: apt-private/private-install.cc:829 #, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "Problema removendo o arquivo" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problema sincronizando o arquivo" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "Pulando %s, já está instalado e a atualização não está configurada.\n" -#: apt-pkg/contrib/progress.cc:148 +#: apt-private/private-install.cc:841 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Erro!" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "A reinstalação de %s não é possível, não pode ser baixado.\n" -#: apt-pkg/contrib/progress.cc:150 +#: apt-private/private-install.cc:846 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Pronto" - -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +msgid "%s is already the newest version.\n" +msgstr "%s já é a versão mais nova.\n" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#: apt-private/private-install.cc:894 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Pronto" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Não foi possível fazer \"mmap\" de um arquivo vazio" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Versão selecionada %s (%s) para %s\n" -#: apt-pkg/contrib/mmap.cc:111 +#: apt-private/private-install.cc:899 #, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Não foi possível abrir \"pipe\" para %s" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Versão selecionada %s (%s) para %s\n" -#: apt-pkg/contrib/mmap.cc:119 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Não foi possível fazer \"mmap\" de %lu bytes" - -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "Impossível abrir %s" - -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -#, fuzzy -msgid "Unable to synchronize mmap" -msgstr "Impossível invocar " - -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Não foi possível fazer \"mmap\" de %lu bytes" - -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Falhou ao truncar arquivo" - -#: apt-pkg/contrib/mmap.cc:341 -#, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" -msgstr "" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "O pacote %s não está instalado, então não será removido\n" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "O pacote %s não está instalado, então não será removido\n" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Impossível executar \"stat\" no ponto de montagem %s" - -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Impossível executar \"stat\" no cdrom" - -#: apt-pkg/contrib/configuration.cc:519 +#: apt-private/private-list.cc:164 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Abreviação de tipo desconhecida: '%c'" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Abrindo arquivo de configuração %s" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Corrigindo dependências..." -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Erro de sintaxe %s:%u: Bloco inicia sem nome." +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " falhou." -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Erro de sintaxe %s:%u: Tag mal formada" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Impossível corrigir dependências" -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Erro de sintaxe %s:%u: Lixo extra depois do valor" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Impossível minimizar o conjunto de atualizações" -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" -"Erro de sintaxe %s:%u: Diretivas podem ser feitas somente no nível mais alto" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Pronto" -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Erro de sintaxe %s:%u: Muitos \"includes\" aninhados" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Você pode querer executar 'apt-get -f install' para corrigí-los." -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Erro de sintaxe %s:%u: Incluído a partir deste ponto" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Dependências desencontradas. Tente usar -f." -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Erro de sintaxe %s:%u: Não há suporte para a diretiva '%s'" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgid "[installed,upgradable to: %s]" +msgstr " [Instalado]" + +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Instalado]" + +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"Erro de sintaxe %s:%u: Diretivas podem ser feitas somente no nível mais alto" -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Erro de sintaxe %s:%u: Lixo extra no final do arquivo" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Instalado]" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "Abortando instalação." +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Instalado]" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-private/private-output.cc:249 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Opção de linha de comando '%c' [de %s] é desconhecida." +msgid "[upgradable from: %s]" +msgstr "" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "Opção de linha de comando %s não é compreendida" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-private/private-output.cc:435 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Opção de linha de comando %s não é booleana" +msgid "but %s is installed" +msgstr "mas %s está instalado" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-private/private-output.cc:437 #, c-format -msgid "Option %s requires an argument." -msgstr "Opção %s requer um argumento." +msgid "but %s is to be installed" +msgstr "mas %s está para ser instalado" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "" -"Opção %s: Especificação de item de configuração deve possuir um =<val>." +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "mas não é instalável" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Opção %s requer um argumento inteiro, não '%s'" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "mas é um pacote virtual" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Opção '%s' é muito longa" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "mas não está instalado" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Sentido %s não é compreendido, tente verdadeiro ou falso." +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "mas não será instalado" -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "Operação %s inválida" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " ou" -#: cmdline/apt-cache.cc:149 -#, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "O pacote %s versão %s tem uma dependência desencontrada:\n" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Os pacotes a seguir têm dependências desencontradas:" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Total de Nomes de Pacotes: " +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Os NOVOS pacotes a seguir serão instalados:" -#: cmdline/apt-cache.cc:279 -#, fuzzy -msgid "Total package structures: " -msgstr "Total de Nomes de Pacotes: " +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Os pacotes a seguir serão REMOVIDOS:" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Pacotes normais: " +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Os pacotes a seguir serão mantidos em suas versões atuais:" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Pacotes puramente virtuais: " +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Os pacotes a seguir serão atualizados:" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Pacotes virtuais únicos: " +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Os pacotes a seguir serão REVERTIDOS:" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Pacotes virtuais misturados: " +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Os seguintes pacotes mantidos serão mudados:" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Faltando: " +#: apt-private/private-output.cc:668 +#, c-format +msgid "%s (due to %s) " +msgstr "%s (por causa de %s) " -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Total de versões distintas: " +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"AVISO: Os pacotes essenciais a seguir serão removidos.\n" +"Isso NÃO deveria ser feito a menos que você saiba exatamente o que você está " +"fazendo!" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Total de descrições distintas: " +#: apt-private/private-output.cc:707 +#, c-format +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu pacotes atualizados, %lu pacotes novos instalados, " -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Total de dependências: " +#: apt-private/private-output.cc:711 +#, c-format +msgid "%lu reinstalled, " +msgstr "%lu reinstalados, " -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Total de relações ver/arquivo: " +#: apt-private/private-output.cc:713 +#, c-format +msgid "%lu downgraded, " +msgstr "%lu revertidos, " -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Total de relações Desc/Arquivo: " +#: apt-private/private-output.cc:715 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu a serem removidos e %lu não atualizados.\n" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Total de mapeamentos \"Provides\": " +#: apt-private/private-output.cc:719 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "%lu pacotes não totalmente instalados ou removidos.\n" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Total de strings \"globbed\": " +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[S/n]" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Total de espaço de dependência de versão: " +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[s/N]" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Total de espaço frouxo: " +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "S" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Total de espaço contabilizado para: " +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Package file %s is out of sync." -msgstr "O arquivo de pacote %s está fora de sincronia." +msgid "Regex compilation error - %s" +msgstr "Erro de compilação de regex - %s" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Nenhum pacote encontrado" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "O comando update não leva argumentos" -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "Você deve passar exatamente um padrão" +#: apt-private/private-update.cc:90 +#, c-format +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Arquivos de pacote:" +#: apt-private/private-show.cc:156 +#, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" msgstr "" -"O cache está fora de sincronia, não foi possível fazer a referência cruzada " -"de um arquivo de pacote" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Pacotes alfinetados (\"pinned\"):" +#: apt-private/private-main.cc:32 +msgid "" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" +msgstr "" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(não encontrado)" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "AVISO: Os pacotes a seguir não podem ser autenticados!" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Instalado: " +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Aviso de autenticação sobreposto.\n" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidato: " +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Alguns pacotes não puderam ser autenticados" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(nenhum)" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Instalar estes pacotes sem verificação?" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Pacote alfinetado (\"pin\"): " +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 +#, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Falhou ao buscar %s %s\n" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabela de versão:" +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Falha ao baixar %s %s\n" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-private/private-sources.cc:70 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s para %s compilado em %s %s\n" - -#: cmdline/apt-cache.cc:1749 -#, fuzzy -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -"Uso: apt-cache [opções] comando\n" -" apt-cache [opções] add arquivo1 [arquivo1 ...]\n" -" apt-cache [opções] showpkg pacote1 [pacote2 ...]\n" -" apt-cache [opções] showsrc pacote1 [pacote2 ...]\n" -"\n" -"O apt-cache é uma ferramenta de baixo nível usada para manipular os\n" -"arquivos de cache binários do APT e para buscar informações neles\n" -"\n" -"Comandos:\n" -" add - Adiciona um arquivo de pacote ao cache de fontes\n" -" gencaches - Constrói ambos os caches de pacotes e fontes\n" -" showpkg - Mostra informações gerais para um único pacote\n" -" showsrc - Mostra registros fontes\n" -" stats - Mostra algumas estatísticas básicas\n" -" dump - Mostra o arquivo inteiro em uma forma concisa\n" -" dumpavail - Imprime um arquivo \"available\" para stdout\n" -" unmet - Mostra dependências desencontradas\n" -" search - Procura a lista de pacotes por um padrão regex\n" -" show - Mostra um registro legível sobre o pacote\n" -" depends - Mostra informações de dependências não processadas de um " -"pacote\n" -" rdepends - Mostra informações de dependências reversas de um pacote\n" -" pkgnames - Lista o nome de todos os pacotes no sistema\n" -" dotty - Gera gráficos de pacotes para o GraphViz\n" -" xvcg - Gera gráficos de pacotes para o xvcg\n" -" policy - Mostra as configurações de políticas\n" -"\n" -"Opções:\n" -" -h Este texto de ajuda.\n" -" -p=? O cache de pacotes.\n" -" -s=? O cache de fontes.\n" -" -q Desabilita o indicador de progresso.\n" -" -i Mostra somente dependências importantes para o comando \"unmet\".\n" -" -c=? Lê o arquivo de configuração especificado.\n" -" -o=? Define uma opção de configuração arbitrária, e.g.: -o dir::cache=/" -"tmp\n" -"Veja as páginas de manual apt-cache(8) e apt.conf(5) para mais informações.\n" -#: cmdline/apt-cdrom.cc:76 -#, fuzzy -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" msgstr "" -"Por favor, forneça um nome para este Disco, algo como 'Debian 2.1r1 Disco 1'" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Por favor, insira um Disco na unidade e pressione enter" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Calculando atualização... " -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Falhou ao renomear %s para %s" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Pronto" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Atingido " -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Repita este processo para o restante dos CDs em seu conjunto." +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Obter:" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumentos não estão em pares" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " -#: cmdline/apt-config.cc:89 +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Err " + +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Baixados %sB em %s (%sB/s)\n" + +#: apt-private/acqprogress.cc:236 +#, c-format +msgid " [Working]" +msgstr " [Trabalhando]" + +#: apt-private/acqprogress.cc:297 +#, c-format msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"Uso: apt-config [opções] comando\n" -"\n" -"O apt-config é uma ferramenta simples para ler o arquivo de configuração\n" -"do APT\n" -"\n" -"Comandos:\n" -" shell - Modo shell\n" -" dump - Mostra a configuração\n" -"\n" -"Opções:\n" -" -h Este texto de ajuda.\n" -" -c=? Lê o arquivo de configuração especificado.\n" -" -o=? Define uma opção de configuração arbitrária, e.g.: -o dir::cache=/" -"tmp\n" +"Troca de mídia: por favor, insira o disco nomeado\n" +" '%s'\n" +"na unidade '%s' e pressione enter\n" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Impossível achar pacote %s" +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 +#, c-format +msgid "Unable to read %s" +msgstr "Impossível ler %s" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Impossível achar pacote %s" +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 +#, c-format +msgid "Unable to change to %s" +msgstr "Impossível mudar para %s" + +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 +#, c-format +msgid "No mirror file '%s' found " +msgstr "" -#: cmdline/apt-get.cc:330 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Impossível achar pacote %s" +msgid "Can not read mirror file '%s'" +msgstr "Não foi possível abrir arquivo %s" -#: cmdline/apt-get.cc:367 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Não foi possível executar \"stat\" na lista de pacotes fonte %s" +msgid "No entry found in mirror file '%s'" +msgstr "Não foi possível abrir arquivo %s" -#: cmdline/apt-get.cc:423 +#: methods/mirror.cc:445 #, c-format -msgid "Can not find version '%s' of package '%s'" +msgid "[Mirror: %s]" msgstr "" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "Impossível achar pacote %s" - -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s configurado para instalar manualmente.\n" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Falhou ao criar pipe IPC para sub-processo" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s configurado para instalar manualmente.\n" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Conexão encerrada prematuramente" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Configuração padrão ruim!" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Erro interno, o solucionador de problemas quebrou coisas" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Pressione enter para continuar." -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Impossível criar trava no diretório de download" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Você quer apagar quaisquer arquivos .deb previamente baixados?" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Deve-se especificar pelo menos um pacote para que se busque o fonte" +# Note to translators: The following four messages belong together. It doesn't +# matter where sentences start, but it has to fit in just these four lines, and +# at only 80 characters per line, if possible. +#: dselect/install:102 +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "" +"Alguns erros ocorreram ao desempacotar. Vou configurar os pacotes que foram" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "Impossível encontrar um pacote fonte para %s" +#: dselect/install:103 +#, fuzzy +msgid "will be configured. This may result in duplicate errors" +msgstr "" +"instalados. Isto pode resultar em erros duplicados ou erros causados por" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" +"dependências faltantes. Isto está OK, somente os erros acima desta mensagem" -#: cmdline/apt-get.cc:791 -#, c-format +#: dselect/install:105 msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" -msgstr "" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "são importantes. Por favor, conserte-os e execute [I]nstalar novamente" -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Pulando arquivo já baixado '%s'\n" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Mesclando informação disponível" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "Não foi possível determinar o espaço livre em %s" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "\"DropNode\" chamado em nó ainda ligado (\"linked\")" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "Você não possui espaço livre suficiente em %s" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Falhou ao localizar o elemento hash!" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Preciso obter %sB/%sB de arquivos fonte.\n" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Falhou ao alocar desvio (\"diversion\")" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Preciso obter %sB de arquivos fonte.\n" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Erro interno em \"AddDiversion\"" -#: cmdline/apt-get.cc:902 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Fetch source %s\n" -msgstr "Obter fonte %s\n" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Falhou ao buscar alguns arquivos." +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Tentando sobrescrever um desvio, %s -> %s e %s/%s" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Baixar completo e no modo somente baixar (\"download only\")" +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "Adição dupla de desvio %s -> %s" -#: cmdline/apt-get.cc:950 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Pulando o desempacotamento de fontes já desempacotados em %s\n" +msgid "Duplicate conf file %s/%s" +msgstr "Arquivo de configuração duplicado %s/%s" -#: cmdline/apt-get.cc:962 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Comando de desempacotamento '%s' falhou.\n" +msgid "The path %s is too long" +msgstr "O caminho %s é muito longo" -#: cmdline/apt-get.cc:963 +#: apt-inst/extract.cc:132 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Confira se o pacote 'dpkg-dev' está instalado.\n" +msgid "Unpacking %s more than once" +msgstr "Desempacotando %s mais de uma vez" -#: cmdline/apt-get.cc:991 +#: apt-inst/extract.cc:142 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Comando de construção '%s' falhou.\n" +msgid "The directory %s is diverted" +msgstr "O diretório %s é desviado (\"diverted\")" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Processo filho falhou" +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "O pacote está tentando escrever no alvo do desvio %s/%s" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "" -"Deve-se especificar pelo menos um pacote para que se cheque as dependências " -"de construção" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "O caminho de desvio é muito longo" -#: cmdline/apt-get.cc:1054 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" +msgid "Failed to stat %s" +msgstr "Falhou ao executar \"stat\" %s" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Impossível conseguir informações de dependência de construção para %s" +msgid "Failed to rename %s to %s" +msgstr "Falhou ao renomear %s para %s" -#: cmdline/apt-get.cc:1101 +#: apt-inst/extract.cc:249 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s não tem dependências de construção.\n" +msgid "The directory %s is being replaced by a non-directory" +msgstr "O diretório %s está sendo substituído por um não-diretório" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"a dependência de %s por %s não pode ser satisfeita porque o pacote %s não " -"pode ser encontrado" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Falha ao localizar nó em seu \"hash bucket\"" -#: cmdline/apt-get.cc:1289 -#, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" -"a dependência de %s por %s não pode ser satisfeita porque o pacote %s não " -"pode ser encontrado" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "O caminho é muito longo" -#: cmdline/apt-get.cc:1312 +#: apt-inst/extract.cc:421 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"Falhou ao satisfazer a dependência de %s por %s: Pacote instalado %s é muito " -"novo" +msgid "Overwrite package match with no version for %s" +msgstr "Sobrescrita de pacote não combina com nenhuma versão para %s" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"a dependência de %s por %s não pode ser satisfeita porque nenhuma versão " -"disponível do pacote %s pode satisfazer os requerimentos de versão" +#: apt-inst/extract.cc:438 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Arquivo %s/%s sobrescreve arquivo no pacote %s" -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "" -"a dependência de %s por %s não pode ser satisfeita porque o pacote %s não " -"pode ser encontrado" +#: apt-inst/extract.cc:498 +#, c-format +msgid "Unable to stat %s" +msgstr "Impossível executar \"stat\" em %s" -#: cmdline/apt-get.cc:1380 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Falhou ao satisfazer a dependência de %s por %s: %s" +msgid "Failed to write file %s" +msgstr "Falhou ao escrever arquivo %s" -#: cmdline/apt-get.cc:1395 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Não foi possível satisfazer as dependências de compilação para %s." +msgid "Failed to close file %s" +msgstr "Falhou ao fechar arquivo %s" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Falhou ao processar as dependências de construção" +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Este não é um arquivo DEB válido, membro '%s' faltando" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Conectando em %s (%s)" +#: apt-inst/deb/debfile.cc:132 +#, c-format +msgid "Internal error, could not locate member %s" +msgstr "Erro interno, não foi possível localizar membro %s" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Módulos para os quais há suporte:" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Arquivo de controle não interpretável" -#: cmdline/apt-get.cc:1632 -#, fuzzy -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -msgstr "" -"Uso: apt-get [opções] comando\n" -" apt-get [opções] install|remove pacote1 [pacote2 ...]\n" -" apt-get [opções] source pacote1 [pacote2 ...]\n" -"\n" -"O apt-get é uma interface simples de linha de comando para baixar\n" -"pacotes e instalá-los. Os comandos usados mais frequentemente são\n" -"update e install.\n" -"\n" -"Comandos:\n" -" update - Obtém novas listas de pacotes\n" -" upgrade - Realiza uma atualização\n" -" install - Instala novos pacotes (um pacote é libc6 e não libc6.deb)\n" -" remove - Remove pacotes\n" -" autoremove - Remove automaticamente todos os pacotes não usados\n" -" purge - Remove e expurga (\"purge\") pacotes\n" -" source - Baixa arquivos fonte\n" -" build-dep - Configura as dependências de compilação de pacotes fonte\n" -" dist-upgrade - Atualiza a distribuição, veja apt-get(8)\n" -" dselect-upgrade - Segue as seleções do dselect\n" -" clean - Apaga arquivos baixados para instalação\n" -" autoclean - Apaga arquivos antigos baixados para instalação\n" -" check - Verifica se não há dependências quebradas\n" -"\n" -"Opções:\n" -" -h Este texto de ajuda\n" -" -q Saída que pode ser registrada em log - sem indicador de progresso\n" -" -qq Sem saída, exceto para erros\n" -" -d Apenas baixa - NÃO instala ou desempacota arquivos\n" -" -s Não-age. Executa simulação de ordenação\n" -" -y Assume Sim para todas as perguntas e não questiona\n" -" -f Tenta corrigir um sistema com dependências quebradas\n" -" -m Tenta continuar se os arquivos não podem ser localizados\n" -" -u Mostra uma lista de pacotes atualizados também\n" -" -b Constrói o pacote fonte depois de baixá-lo\n" -" -V Exibe números de versões mais detalhados\n" -" -c=? Lê o arquivo de configuração especificado.\n" -" -o=? Define uma opção de configuração arbitrária, e.g.: -o dir::cache=/" -"tmp\n" -"Veja as páginas de manual apt-get(8), sources.list(5) e apt.conf(5)\n" -"para mais informações e opções.\n" -" Este APT tem Poderes de Super Vaca.\n" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Assinatura de arquivo inválida" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Deve-se especificar pelo menos um pacote para que se busque o fonte" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Erro na leitura de cabeçalho membro de arquivo" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Cabeçalho membro de arquivo inválido" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Cabeçalho membro de arquivo inválido" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "mas não está instalado" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Arquivo é muito pequeno" -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s configurado para instalar manualmente.\n" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Falhou ao ler os cabeçalhos do arquivo" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s configurado para instalar manualmente.\n" +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Falhou ao criar \"pipes\"" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s já é a versão mais nova.\n" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Falhou ao executar gzip " -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s já é a versão mais nova.\n" +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Arquivo corrompido" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s configurado para instalar manualmente.\n" +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Checksum do arquivo tar falhou, arquivo corrompido" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Falhou ao abrir %s" +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Tipo de cabeçalho TAR %u desconhecido, membro %s" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" msgstr "" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" msgstr "" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Sistema de empacotamento '%s' não é suportado" -#: methods/cdrom.cc:203 +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Impossível determinar um tipo de sistema de empacotamento aplicável." + +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Impossível ler o banco de dados de cdrom %s" +msgid "Wrote %i records.\n" +msgstr "Gravados %i registros.\n" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"Por favor, use o apt-cdrom para fazer com que este CD-ROM seja reconhecido " -"pelo APT. O apt-get update não pode ser usado para adicionar novos CD-ROMs" +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "Gravados %i registros com %i arquivos faltando.\n" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD-ROM errado" +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Gravados %i registros com %i arquivos que não combinam\n" -#: methods/cdrom.cc:249 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Impossível desmontar o CD-ROM em %s, o mesmo ainda pode estar em uso." +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" +"Gravados %i registros com %i arquivos faltando e %i arquivos que não " +"combinam\n" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disco não encontrado." +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Arquivo não encontrado" +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "Hash Sum incorreto" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Falhou ao executar \"stat\"" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"As listas de pacotes ou os arquivos de estado não puderam ser analisados ou " +"abertos." -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Falhou ao definir hora de modificação" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Você terá que executar apt-get update para corrigir estes problemas" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI inválida, URIs locais não devem iniciar com //" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "A lista de fontes não pode ser lida." -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Efetuando login" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Cache de pacotes vazio" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Impossível determinar o nome do ponto" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "O arquivo de cache de pacotes está corrompido" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Impossível determinar o nome local" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "O arquivo de cache de pacotes é uma versão incompatível" -#: methods/ftp.cc:219 methods/ftp.cc:247 -#, c-format -msgid "The server refused the connection and said: %s" -msgstr "O servidor recusou a conexão e disse: %s" +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "O arquivo de cache de pacotes está corrompido" -#: methods/ftp.cc:225 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER falhou, servidor disse: %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "Este APT não suporta o sistema de versões '%s'" -#: methods/ftp.cc:232 -#, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS falhou, servidor disse: %s" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "O cache de pacotes foi gerado para uma arquitetura diferente" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"Um servidor proxy foi especificado mas não um script de login, Acquire::ftp::" -"ProxyLogin está vazio." +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Depende" -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Comando de script de login '%s' falhou, servidor disse: %s" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Pré-Depende" -#: methods/ftp.cc:306 -#, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE falhou, servidor disse: %s" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Sugere" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Conexão expirou" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Recomenda" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Servidor fechou a conexão" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Conflita" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Uma resposta sobrecarregou o buffer" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Substitui" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Corrupção de protocolo" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Obsoleta" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Não foi possível criar um socket" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Quebra" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Não foi possível conectar um socket de dados, conexão expirou" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Falhou" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "importante" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Não foi possível conectar um socket passivo." +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "requerido" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo não foi capaz de obter um socket de escuta" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "padrão" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Não foi possível fazer \"bind\" de um socket" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "opcional" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Não foi possível ouvir no socket" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Não foi possível determinar o nome do socket" +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "O driver do método %s não pode ser encontrado." -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Impossível enviar o comando PORT" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Confira se o pacote 'dpkg-dev' está instalado.\n" -#: methods/ftp.cc:802 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Família de endereços %u desconhecida (AF_*)" +msgid "Method %s did not start correctly" +msgstr "Método %s não iniciou corretamente" -#: methods/ftp.cc:811 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT falhou, servidor disse: %s" +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Por favor, insira o disco nomeado: '%s' na unidade '%s' e pressione enter." -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Conexão do socket de dados expirou" +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "Tipo de arquivo de índice '%s' não é suportado" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Impossível aceitar conexão" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Construindo árvore de dependências" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problema criando o hash do arquivo" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Versões candidatas" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Geração de dependência" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Lendo informação de estado" -#: methods/ftp.cc:890 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Impossível obter arquivo, servidor disse '%s'" +msgid "Failed to open StateFile %s" +msgstr "Falha ao abrir Arquivo de Estado (\"StateFile\") %s" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Socket de dados expirou" +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Falha ao escrever Arquivo de Estado (\"StateFile\") temporário %s" -#: methods/ftp.cc:935 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Transferência de dados falhou, servidor disse '%s'" +msgid "rename failed, %s (%s -> %s)." +msgstr "renomeação falhou, %s (%s -> %s)." -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Pesquisa" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Hash Sum incorreto" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Impossível invocar " +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Tamanho incorreto" -#: methods/connect.cc:76 -#, c-format -msgid "Connecting to %s (%s)" -msgstr "Conectando em %s (%s)" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Operação %s inválida" -#: methods/connect.cc:87 +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#: methods/connect.cc:94 +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Impossível analisar arquivo de pacote %s (1)" + +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Não existem chaves públicas para os seguintes IDs de chaves:\n" + +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Não foi possível criar um socket para %s (f=%u t=%u p=%u)" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: methods/connect.cc:100 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Não foi possível iniciar a conexão para %s:%s (%s)." +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" -#: methods/connect.cc:108 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Não foi possível conectar em %s:%s (%s), conexão expirou" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" -#: methods/connect.cc:126 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Não foi possível conectar em %s:%s (%s)." +msgid "GPG error: %s: %s" +msgstr "" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Connecting to %s" -msgstr "Conectando a %s" +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"Não foi possível localizar um arquivo para o pacote %s. Isto pode significar " +"que você precisa consertar manualmente este pacote. (devido a arquitetura " +"não especificada)." -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Could not resolve '%s'" -msgstr "Não foi possível resolver '%s'" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: methods/connect.cc:205 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Falha temporária resolvendo '%s'" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Os arquivos de índice de pacotes estão corrompidos. Nenhum campo \"Filename:" +"\" para o pacote %s." -#: methods/connect.cc:209 +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Algo estranho aconteceu resolvendo '%s:%s' (%i)" +msgid "Clean of %s is not supported" +msgstr "Tipo de arquivo de índice '%s' não é suportado" -#: methods/connect.cc:211 -#, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Algo estranho aconteceu resolvendo '%s:%s' (%i)" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Impossível executar \"stat\" %s." -#: methods/connect.cc:258 +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "O cache possui um sistema de versões incompatível" + +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Impossível conectar em %s %s:" +msgid "Error occurred while processing %s (%s%d)" +msgstr "Um erro ocorreu processando %s (EncontrarPacote)" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -"Erro interno: Assinatura boa, mas não foi possível determinar a impressão " -"digital da chave?!" +"Uau, você excedeu o número de nomes de pacotes que este APT é capaz de " +"suportar." -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Ao menos uma assinatura inválida foi encontrada." +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "" +"Uau, você excedeu o número de versões que este APT é capaz de suportar." -#: methods/gpgv.cc:174 -#, fuzzy -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" -"Não foi possível executar '%s' para verificar a assinatura (o gpgv está " -"instalado?)" +"Uau, você excedeu o número de descrições que este APT é capaz de suportar." -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "" +"Uau, você excedeu o número de dependências que este APT é capaz de suportar." + +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +msgid "Package %s %s was not found while processing file dependencies" msgstr "" +"Pacote %s %s não foi encontrado enquanto processando dependências de arquivo" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Erro desconhecido executando gpgv" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Não foi possível executar \"stat\" na lista de pacotes fonte %s" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "As seguintes assinaturas eram inválidas:\n" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Lendo listas de pacotes" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "" -"As assinaturas a seguir não puderam ser verificadas devido à chave pública " -"não estar disponível:\n" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Coletando Arquivo \"Provides\"" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Impossível escrever para %s" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Erro escrevendo para o arquivo" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Erro de E/S ao gravar cache fonte" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Erro lendo do servidor. Ponto remoto fechou a conexão" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Bloco fornecedor %s não contém impressão digital (\"fingerprint\")" + +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "Diretório de listas %spartial está faltando." + +#: apt-pkg/acquire.cc:91 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "Diretório de arquivos %spartial está faltando." + +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "Impossível criar trava no diretório de listas" + +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Obtendo o arquivo %li de %li (%s restantes)" + +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Obtendo arquivo %li de %li" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Erro lendo do servidor" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"Alguns arquivos de índice falharam para baixar, eles foram ignorados ou os " +"antigos foram usados no lugar." -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Erro escrevendo para arquivo" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Você deve colocar algumas URIs 'source' em seu sources.list" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Seleção falhou" +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Conexão expirou" +#: apt-pkg/policy.cc:422 +#, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Registro inválido no arquivo de preferências, sem cabeçalho Package" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Erro escrevendo para arquivo de saída" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Não foi possível entender o tipo de \"pin\" %s" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Aguardando por cabeçalhos" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Nenhuma prioridade (ou zero) especificada para \"pin\"" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Linha de cabeçalho ruim" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "O servidor HTTP enviou um cabeçalho de resposta inválido" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Não foi possível abrir arquivo %s" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "O servidor HTTP enviou um cabeçalho \"Content-Length\" inválido" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"Esta execução de instalação requererá a remoção temporária do pacote " +"essencial %s devido a um loop de Conflitos/Pré-Dependências. Isso geralmente " +"é ruim, mas se você realmente quer fazer isso, ative a opção APT::Force-" +"LoopBreak." -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "O servidor HTTP enviou um cabeçalho \"Content-Range\" inválido" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "Linha %u muito longa na lista de fontes %s." -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Este servidor HTTP possui suporte a \"range\" quebrado" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Desmontando CD-ROM...\n" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Formato de data desconhecido" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "Usando ponto de montagem de CD-ROM %s\n" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Dados de cabeçalho ruins" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Aguardando por disco...\n" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Conexão falhou" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Montando CD-ROM...\n" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Erro interno" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identificando... " -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Calculando atualização... " +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Rótulo armazenado: %s \n" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Pronto" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Procurando por arquivos de índice no disco...\n" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/cdrom.cc:734 +#, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"Encontrado(s) %zu índice(s) de pacote(s), %zu índice(s) de fonte(s), %zu " +"índice(s) de traduções e %zu assinatura(s)\n" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Found label '%s'\n" +msgstr "Rótulo encontrado: '%s'\n" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Corrigindo dependências..." +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Este não é um nome válido, tente novamente.\n" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " falhou." +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Esse disco é chamado: \n" +"'%s'\n" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Impossível corrigir dependências" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Copiando lista de pacotes..." -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Impossível minimizar o conjunto de atualizações" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Gravando nova lista de fontes\n" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Pronto" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Entradas na lista de fontes para este disco são:\n" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Você pode querer executar 'apt-get -f install' para corrigí-los." +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"O pacote %s precisa ser reinstalado, mas não foi possível encontrar um " +"arquivo para o mesmo." -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dependências desencontradas. Tente usar -f." +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Erro, pkgProblemResolver::Resolve gerou falhas, isto pode ser causado por " +"pacotes mantidos (hold)." -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Impossível corrigir problemas, você manteve (hold) pacotes quebrados." + +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" msgstr "" -#: apt-private/private-output.cc:234 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Instalado]" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [Instalado]" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Instalado]" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Instalado]" +#: apt-pkg/tagfile.cc:140 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Impossível analisar arquivo de pacote %s (1)" -#: apt-private/private-output.cc:249 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +msgid "Unable to parse package file %s (2)" +msgstr "Impossível analisar arquivo de pacote %s (2)" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "Impossível analisar arquivo de pacote %s (1)" -#: apt-private/private-output.cc:435 -#, c-format -msgid "but %s is installed" -msgstr "mas %s está instalado" +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "Nota, selecionando %s ao invés de %s\n" -#: apt-private/private-output.cc:437 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "but %s is to be installed" -msgstr "mas %s está para ser instalado" - -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "mas não é instalável" +msgid "No Hash entry in Release file %s" +msgstr "" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "mas é um pacote virtual" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Linha inválida no arquivo de desvios: %s" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "mas não está instalado" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Impossível analisar arquivo de pacote %s (1)" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "mas não será instalado" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Linha mal formada %lu no arquivo de fontes %s (análise de URI)" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " ou" +#: apt-pkg/sourcelist.cc:170 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "" +"Linha mal formada %lu no arquivo de fontes %s (análise de distribuição)" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Os pacotes a seguir têm dependências desencontradas:" +#: apt-pkg/sourcelist.cc:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Linha mal formada %lu no arquivo de fontes %s (distribuição)" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Os NOVOS pacotes a seguir serão instalados:" +#: apt-pkg/sourcelist.cc:184 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "" +"Linha mal formada %lu no arquivo de fontes %s (análise de distribuição)" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Os pacotes a seguir serão REMOVIDOS:" +#: apt-pkg/sourcelist.cc:190 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "" +"Linha mal formada %lu no arquivo de fontes %s (análise de distribuição)" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Os pacotes a seguir serão mantidos em suas versões atuais:" +#: apt-pkg/sourcelist.cc:193 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "" +"Linha mal formada %lu no arquivo de fontes %s (análise de distribuição)" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Os pacotes a seguir serão atualizados:" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Linha mal formada %lu no arquivo de fontes %s (URI)" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Os pacotes a seguir serão REVERTIDOS:" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Linha mal formada %lu no arquivo de fontes %s (distribuição)" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Os seguintes pacotes mantidos serão mudados:" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Linha mal formada %lu no arquivo de fontes %s (análise de URI)" -#: apt-private/private-output.cc:668 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "%s (due to %s) " -msgstr "%s (por causa de %s) " +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Linha mal formada %lu no arquivo de fontes %s (distribuição absoluta)" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" -"AVISO: Os pacotes essenciais a seguir serão removidos.\n" -"Isso NÃO deveria ser feito a menos que você saiba exatamente o que você está " -"fazendo!" +"Linha mal formada %lu no arquivo de fontes %s (análise de distribuição)" -#: apt-private/private-output.cc:707 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu pacotes atualizados, %lu pacotes novos instalados, " +msgid "Opening %s" +msgstr "Abrindo %s" -#: apt-private/private-output.cc:711 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinstalados, " +msgid "Malformed line %u in source list %s (type)" +msgstr "Linha mal formada %u no arquivo de fontes %s (tipo)" -#: apt-private/private-output.cc:713 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "%lu downgraded, " -msgstr "%lu revertidos, " +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Tipo '%s' não é conhecido na linha %u na lista de fontes %s" -#: apt-private/private-output.cc:715 +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Tipo '%s' não é conhecido na linha %u na lista de fontes %s" + +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu a serem removidos e %lu não atualizados.\n" +msgid "Release '%s' for '%s' was not found" +msgstr "Release '%s' para '%s' não foi encontrada" -#: apt-private/private-output.cc:719 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu pacotes não totalmente instalados ou removidos.\n" +msgid "Version '%s' for '%s' was not found" +msgstr "Versão '%s' para '%s' não foi encontrada" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[S/n]" +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "Impossível achar tarefa %s" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[s/N]" +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Impossível achar pacote %s" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "S" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Impossível achar pacote %s" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "O comando update não leva argumentos" - -#: apt-private/private-update.cc:90 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -#: apt-private/private-show.cc:156 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Erro interno, InstallPackages foi chamado com pacotes quebrados!" - -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Pacotes precisam ser removidos mas a remoção está desabilitada." +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Erro interno, Ordenação não finalizou" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" msgstr "" -"Que estranho... Os tamanhos não batem, mande e-mail para apt@packages.debian." -"org" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "É preciso baixar %sB/%sB de arquivos.\n" +msgid "%lih %limin %lis" +msgstr "" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "É preciso baixar %sB de arquivos.\n" +msgid "%limin %lis" +msgstr "" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" +msgid "%lis" msgstr "" -"Depois desta operação, %sB adicionais de espaço em disco serão usados.\n" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/contrib/strutl.cc:1246 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Depois desta operação, %sB de espaço em disco serão liberados.\n" +msgid "Selection %s not found" +msgstr "Seleção %s não encontrada" -#: apt-private/private-install.cc:200 +#: apt-pkg/contrib/fileutl.cc:190 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Você não possui espaço suficiente em %s." +msgid "Not using locking for read only lock file %s" +msgstr "Não usando travamento para arquivo de trava somente leitura %s" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Há problemas e -y foi usado sem --force-yes" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Não foi possível abrir arquivo de trava %s" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "\"Trivial Only\" especificado mas esta não é uma operação trivial." +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Não usando travamento para arquivo de trava montado via nfs %s" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Sim, faça o que eu digo!" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Não foi possível obter trava %s" -#: apt-private/private-install.cc:222 +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -"Você está prestes a fazer algo potencialmente destrutivo.\n" -"Para continuar digite a frase '%s'\n" -" ?] " - -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Abortar." - -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Você quer continuar?" - -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Alguns arquivos falharam ao baixar" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -"Impossível buscar alguns arquivos, talvez executar apt-get update ou tentar " -"com --fix-missing?" - -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing e troca de mídia não são suportados atualmente" - -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Impossível corrigir pacotes faltantes." - -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Abortando instalação." - -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -msgstr[1] "" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Nós não deveríamos apagar coisas, impossível iniciar AutoRemover" - -#: apt-private/private-install.cc:499 +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"Hmm, parece que o AutoRemover destruiu algo o que realmente não deveria\n" -"acontecer. Por favor, reporte um bug contra o apt." -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "A informação a seguir pode ajudar a resolver a situação:" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Sub-processo %s recebeu uma falha de segmentação." -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Erro Interno, o AutoRemover quebrou coisas" +#: apt-pkg/contrib/fileutl.cc:826 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "Sub-processo %s recebeu uma falha de segmentação." -#: apt-private/private-install.cc:513 -#, fuzzy -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "" -"Os seguintes pacotes foram automaticamente instalados e não são mais " -"requeridos:" -msgstr[1] "" -"Os seguintes pacotes foram automaticamente instalados e não são mais " -"requeridos:" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "Sub-processo %s retornou um código de erro (%u)" -#: apt-private/private-install.cc:517 -#, fuzzy, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "" -"Os seguintes pacotes foram automaticamente instalados e não são mais " -"requeridos:" -msgstr[1] "" -"Os seguintes pacotes foram automaticamente instalados e não são mais " -"requeridos:" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Sub-processo %s finalizou inesperadamente" -#: apt-private/private-install.cc:519 -#, fuzzy -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Use 'apt-get autoremove' para removê-los." -msgstr[1] "Use 'apt-get autoremove' para removê-los." +#: apt-pkg/contrib/fileutl.cc:913 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problema fechando o arquivo" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Você deve querer executar 'apt-get -f install' para corrigí-los:" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Não foi possível abrir arquivo %s" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Dependências desencontradas. Tente 'apt-get -f install' sem nenhum pacote " -"(ou especifique uma solução)." +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Não foi possível abrir \"pipe\" para %s" -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." -msgstr "" -"Alguns pacotes não puderam ser instalados. Isto pode significar que\n" -"você solicitou uma situação impossível ou, se você está usando a\n" -"distribuição instável, que alguns pacotes requeridos não foram\n" -"criados ainda ou foram retirados da \"Incoming\"." +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Falhou ao criar sub-processo IPC" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Pacotes quebrados" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Falhou ao executar compactador " -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Os pacotes extra a seguir serão instalados:" +#: apt-pkg/contrib/fileutl.cc:1514 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "leitura, ainda restam %lu para serem lidos mas nenhum deixado" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Pacotes sugeridos:" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "escrita, ainda restam %lu para gravar mas não foi possível" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Pacotes recomendados:" +#: apt-pkg/contrib/fileutl.cc:1915 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Problema fechando o arquivo" -#: apt-private/private-install.cc:825 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Pulando %s, já está instalado e a atualização não está configurada.\n" +#: apt-pkg/contrib/fileutl.cc:1927 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Problema sincronizando o arquivo" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:1938 #, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "Pulando %s, já está instalado e a atualização não está configurada.\n" +msgid "Problem unlinking the file %s" +msgstr "Problema removendo o arquivo" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Problema sincronizando o arquivo" + +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "A reinstalação de %s não é possível, não pode ser baixado.\n" +msgid "%c%s... Error!" +msgstr "%c%s... Erro!" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s já é a versão mais nova.\n" +msgid "%c%s... Done" +msgstr "%c%s... Pronto" -#: apt-private/private-install.cc:894 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Versão selecionada %s (%s) para %s\n" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-install.cc:899 +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Versão selecionada %s (%s) para %s\n" +msgid "%c%s... %u%%" +msgstr "%c%s... Pronto" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "O pacote %s não está instalado, então não será removido\n" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Não foi possível fazer \"mmap\" de um arquivo vazio" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/mmap.cc:111 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "O pacote %s não está instalado, então não será removido\n" - -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" +msgid "Couldn't duplicate file descriptor %i" +msgstr "Não foi possível abrir \"pipe\" para %s" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "AVISO: Os pacotes a seguir não podem ser autenticados!" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Não foi possível fazer \"mmap\" de %lu bytes" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Aviso de autenticação sobreposto.\n" +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Impossível abrir %s" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Alguns pacotes não puderam ser autenticados" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "Impossível invocar " -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Instalar estes pacotes sem verificação?" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Não foi possível fazer \"mmap\" de %lu bytes" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Falha ao baixar %s %s\n" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Falhou ao truncar arquivo" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: apt-pkg/contrib/mmap.cc:446 +#, c-format +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Atingido " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Obter:" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Impossível executar \"stat\" no ponto de montagem %s" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Impossível executar \"stat\" no cdrom" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Baixados %sB em %s (%sB/s)\n" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Abreviação de tipo desconhecida: '%c'" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid " [Working]" -msgstr " [Trabalhando]" +msgid "Opening configuration file %s" +msgstr "Abrindo arquivo de configuração %s" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" -msgstr "" -"Troca de mídia: por favor, insira o disco nomeado\n" -" '%s'\n" -"na unidade '%s' e pressione enter\n" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Erro de sintaxe %s:%u: Bloco inicia sem nome." -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/configuration.cc:820 #, c-format -msgid "No mirror file '%s' found " -msgstr "" - -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Não foi possível abrir arquivo %s" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Erro de sintaxe %s:%u: Tag mal formada" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Não foi possível abrir arquivo %s" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Erro de sintaxe %s:%u: Lixo extra depois do valor" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:877 #, c-format -msgid "[Mirror: %s]" +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" +"Erro de sintaxe %s:%u: Diretivas podem ser feitas somente no nível mais alto" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Falhou ao criar pipe IPC para sub-processo" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Conexão encerrada prematuramente" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Configuração padrão ruim!" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Pressione enter para continuar." +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Erro de sintaxe %s:%u: Muitos \"includes\" aninhados" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Você quer apagar quaisquer arquivos .deb previamente baixados?" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Erro de sintaxe %s:%u: Incluído a partir deste ponto" -# Note to translators: The following four messages belong together. It doesn't -# matter where sentences start, but it has to fit in just these four lines, and -# at only 80 characters per line, if possible. -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "" -"Alguns erros ocorreram ao desempacotar. Vou configurar os pacotes que foram" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Erro de sintaxe %s:%u: Não há suporte para a diretiva '%s'" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" +#: apt-pkg/contrib/configuration.cc:900 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"instalados. Isto pode resultar em erros duplicados ou erros causados por" +"Erro de sintaxe %s:%u: Diretivas podem ser feitas somente no nível mais alto" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"dependências faltantes. Isto está OK, somente os erros acima desta mensagem" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Erro de sintaxe %s:%u: Lixo extra no final do arquivo" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "são importantes. Por favor, conserte-os e execute [I]nstalar novamente" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "Abortando instalação." -#: dselect/update:30 -msgid "Merging available information" -msgstr "Mesclando informação disponível" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Opção de linha de comando '%c' [de %s] é desconhecida." -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "\"DropNode\" chamado em nó ainda ligado (\"linked\")" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Opção de linha de comando %s não é compreendida" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Falhou ao localizar o elemento hash!" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Opção de linha de comando %s não é booleana" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Falhou ao alocar desvio (\"diversion\")" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Opção %s requer um argumento." -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Erro interno em \"AddDiversion\"" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "" +"Opção %s: Especificação de item de configuração deve possuir um =<val>." -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Tentando sobrescrever um desvio, %s -> %s e %s/%s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Opção %s requer um argumento inteiro, não '%s'" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Adição dupla de desvio %s -> %s" +msgid "Option '%s' is too long" +msgstr "Opção '%s' é muito longa" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Arquivo de configuração duplicado %s/%s" +msgid "Sense %s is not understood, try true or false." +msgstr "Sentido %s não é compreendido, tente verdadeiro ou falso." -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The path %s is too long" -msgstr "O caminho %s é muito longo" +msgid "Invalid operation %s" +msgstr "Operação %s inválida" -#: apt-inst/extract.cc:132 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unpacking %s more than once" -msgstr "Desempacotando %s mais de uma vez" +msgid "Installing %s" +msgstr "Instalando %s" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The directory %s is diverted" -msgstr "O diretório %s é desviado (\"diverted\")" +msgid "Configuring %s" +msgstr "Configurando %s" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "O pacote está tentando escrever no alvo do desvio %s/%s" +msgid "Removing %s" +msgstr "Removendo %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "O caminho de desvio é muito longo" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "%s completamente removido" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to stat %s" -msgstr "Falhou ao executar \"stat\" %s" +msgid "Noting disappearance of %s" +msgstr "" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Falhou ao renomear %s para %s" +msgid "Running post-installation trigger %s" +msgstr "Executando gatilho pós-instalação %s" -#: apt-inst/extract.cc:249 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "O diretório %s está sendo substituído por um não-diretório" +msgid "Directory '%s' missing" +msgstr "Diretório '%s' está faltando" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Falha ao localizar nó em seu \"hash bucket\"" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "Não foi possível abrir arquivo %s" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "O caminho é muito longo" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Preparando %s" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Sobrescrita de pacote não combina com nenhuma versão para %s" +msgid "Unpacking %s" +msgstr "Desempacotando %s" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Arquivo %s/%s sobrescreve arquivo no pacote %s" +msgid "Preparing to configure %s" +msgstr "Preparando para configurar %s" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Unable to stat %s" -msgstr "Impossível executar \"stat\" em %s" +msgid "Installed %s" +msgstr "%s instalado" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to write file %s" -msgstr "Falhou ao escrever arquivo %s" +msgid "Preparing for removal of %s" +msgstr "Preparando para a remoção de %s" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Failed to close file %s" -msgstr "Falhou ao fechar arquivo %s" +msgid "Removed %s" +msgstr "%s removido" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Este não é um arquivo DEB válido, membro '%s' faltando" +msgid "Preparing to completely remove %s" +msgstr "Preparando para remover completamente %s" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Erro interno, não foi possível localizar membro %s" +msgid "Completely removed %s" +msgstr "%s completamente removido" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Arquivo de controle não interpretável" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Assinatura de arquivo inválida" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Impossível escrever para %s" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Erro na leitura de cabeçalho membro de arquivo" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:96 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Cabeçalho membro de arquivo inválido" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Cabeçalho membro de arquivo inválido" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arquivo é muito pequeno" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Falhou ao ler os cabeçalhos do arquivo" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Falhou ao criar \"pipes\"" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Falhou ao executar gzip " +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Arquivo corrompido" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Checksum do arquivo tar falhou, arquivo corrompido" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Tipo de cabeçalho TAR %u desconhecido, membro %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Impossível criar trava no diretório de listas" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/ro.po b/po/ro.po index 4db62978f..a0019d481 100644 --- a/po/ro.po +++ b/po/ro.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ro\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2008-11-15 02:21+0200\n" "Last-Translator: Eddy Petrișor <eddy.petrisor@gmail.com>\n" "Language-Team: Romanian <debian-l10n-romanian@lists.debian.org>\n" @@ -19,3191 +19,3192 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "Tipul de fișier index '%s' nu este suportat" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "Nu s-a putut citi %s" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Nu pot schimba la %s" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "Nu pot determina starea %s." - -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Progress: [%3i%%]" -msgstr "" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Pachetul %s versiunea %s are o dependență neîndeplinită:\n" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Total nume pachete : " -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Sistemul de pachete '%s' nu este suportat" +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "Total nume pachete : " -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Nu s-a putut determina un tip de sistem de împachetare potrivit" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Pachete normale: " -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "S-au scris %i înregistrări.\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Pachete virtuale pure: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "S-au scris %i înregistrări cu %i fișiere lipsă.\n" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Pachete virtuale singulare: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "S-au scris %i înregistrări cu %i fișiere nepotrivite\n" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Pachete virtuale mixte: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"S-au scris %i înregistrări cu %i fișiere lipsă și %i fișiere nepotrivite\n" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Lipsă: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Total versiuni distincte: " -#: apt-pkg/indexcopy.cc:521 -#, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Nepotrivire la suma de căutare" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Numărul total de descrieri distincte: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Metoda driver %s nu poate fi găsită." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Total dependențe: " -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Verificați dacă pachetul 'dpkg-dev' este instalat.\n" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Total relații versiune/fișier: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Metoda %s nu s-a lansat corect" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Total relații desc/fișier: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "" -"Vă rog introduceți discul numit: '%s' în unitatea '%s' și apăsați Enter." +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Total cartări Furnizează: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "" -"Listele de pachete sau fișierul de stare n-au putut fi analizate sau " -"deschise." +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Total șiruri înglobate: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "" -"Ați putea vrea să porniți 'apt-get update' pentru a corecta aceste probleme." +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Total spațiu versiuni ale dependențelor: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Lista surselor nu poate fi citită." +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Total spațiu intern: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Cache gol de pachet" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Total spațiu contorizat pentru: " -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Cache-ul fișierului pachet este deteriorat" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "Fișierul pachetului %s este desincronizat." -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Fișierul cache al pachetului este o versiune incompatibilă" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Nu s-au găsit pachete" -#: apt-pkg/pkgcache.cc:169 +#: cmdline/apt-cache.cc:1254 #, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "Cache-ul fișierului pachet este deteriorat" - -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Acest APT nu suportă versioning system '%s'" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Cache-ul pachetului a fost construit pentru o arhitectură diferită" +msgid "You must give at least one search pattern" +msgstr "Trebuie să dați exact un șablon" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Depinde" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Pre-depinde" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "Nu s-a putut localiza pachetul %s" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Sugerează" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Fișiere pachet: " -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Recomandă" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" +"Cache-ul este desincronizat, nu se poate executa x-ref pe un fișier pachet" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Este în conflict" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Pachete alese special:" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Înlocuiește" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(negăsit)" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Învechit" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Instalat: " -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Corupe" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Candidează: " -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(niciunul)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "important" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Pachet ales special: " -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "cerut" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Tabela de versiuni:" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standard" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s pentru %s compilat la %s %s\n" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opțional" - -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" - -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Tipul de fișier index '%s' nu este suportat" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Utilizare: apt-cache [opțiuni] comanda\n" +" apt-cache [opțiuni] add fișier1 [fișier2 ...]\n" +" apt-cache [opțiuni] showpkg pachet1 [pachet2 ...]\n" +" apt-cache [opțiuni] showsrc pachet1 [pachet2 ...]\n" +"\n" +"apt-cache este o unealtă de nivel scăzut pentru manipularea fișierelor\n" +"binare din cache-ul APT, și de interogare a informațiilor din ele\n" +"\n" +"Comenzi:\n" +" add - Adaugă un fișier pachet la cache-ul sursă\n" +" gencaches - Generează cache-ul de pachete și cache-ul de surse\n" +" showpkg - Arată câteva informații generale pentru un pachet\n" +" showsrc - Arată înregistrările despre sursă\n" +" stats - Arată câteva statistici de bază\n" +" dump - Arată întregul fișier într-o formă concisă\n" +" dumpavail - Afișează un fișier disponibil la ieșirea standard\n" +" unmet - Arată dependențele neîndeplinite\n" +" search - Caută în lista de pachete folosind un șablon regex\n" +" show - Arată o înregistrare lizibilă pentru pachet\n" +" depends - Arată informații brute de dependențe pentru un pachet\n" +" rdepends - Arată dependențele inverse pentru un pachet\n" +" pkgnames - Afișează numele tuturor pachetelor din sistem\n" +" dotty - Generează grafice cu pachete pentru GraphViz\n" +" xvcg - Generează grafice cu pachete pentru xvcg\n" +" policy - Arată configurațiile de politici\n" +"\n" +"Opțiuni:\n" +" -h Acest text de ajutor.\n" +" -p=? Cache-ul de pachete.\n" +" -s=? Cache-ul de surse.\n" +" -q Dezactivează indicatorul de progres.\n" +" -i Arată doar dependențele importante pentru comanda „unmet”.\n" +" -c=? Citește acest fișier de configurare\n" +" -o=? Ajustează o opțiune de configurare arbitrară, ex. -o dir::cache=/tmp\n" +"Vedeți manualele apt-cache(8) și apt.conf(5) pentru mai multe informații.\n" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Eroare de compilare expresie regulată - %s" +#: cmdline/apt-cdrom.cc:76 +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Furnizați un nume pentru acest disc, de exemplu „Debian 2.1r1 Disk 1”" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Cache are un versioning system incompatibil" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Introduceți un disc în unitate și apăsați Enter" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Eroare apărută în timpul procesării %s (FindPkg)" +msgid "Failed to mount '%s' to '%s'" +msgstr "Eșec la redenumirea lui %s în %s" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"Mamăăă, ați depășit numărul de nume de pachete de care este capabil acest " -"APT." -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "" -"Mamăăă, ați depășit numărul de versiuni de care este capabil acest APT." +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Repetați această procedură pentru restul CD-urilor din set." -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "" -"Mamăăă, ați depășit numărul de descrieri de care este capabil acest APT." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumentele nu sunt perechi" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -"Mamăăă, ați depășit numărul de dependențe de care este capabil acest APT." +"Utilizare: apt-config [opțiuni] comanda\n" +"\n" +"apt-config este o unealtă simplă pentru citirea fișierului de configurare " +"APT\n" +"\n" +"Comenzi:\n" +" shell - Modul consolă\n" +" dump - Arată configurația\n" +"\n" +"Opțiuni:\n" +" -h Acest text de ajutor.\n" +" -c=? Citește acest fișier de configurare\n" +" -o=? Ajustează o opțiune de configurare arbitrară, ex. -o dir::cache=/tmp\n" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "" -"Nu s-a găsit pachetul %s %s în timpul procesării dependențelor de fișiere" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Nu pot găsi pachetul %s" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "Nu pot determina starea listei surse de pachete %s" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Nu pot găsi pachetul %s" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Citire liste de pachete" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Nu pot găsi pachetul %s" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Colectare furnizori fișier" +#: cmdline/apt-get.cc:367 +#, fuzzy, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Nu pot determina starea listei surse de pachete %s" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:423 #, c-format -msgid "Unable to write to %s" -msgstr "Nu s-a putut scrie în %s" +msgid "Can not find version '%s' of package '%s'" +msgstr "" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Eroare IO în timpul salvării sursei cache" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Nu pot găsi pachetul %s" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s este marcat ca fiind instalat manual.\n" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s este marcat ca fiind instalat manual.\n" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" msgstr "" +"Eroare internă, rezolvatorul de probleme a deteriorat diverse chestiuni" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Nu s-a putut bloca directorul de descărcare" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Trebuie specificat cel puțin un pachet pentru a-i aduce sursa" + +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "redenumire eșuată, %s (%s -> %s)." +msgid "Unable to find a source package for %s" +msgstr "Nu s-a putut găsi o sursă pachet pentru %s" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Nepotrivire la suma de căutare" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Nepotrivire dimensiune" - -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Operațiune invalidă %s" - -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:786 #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" - -#: apt-pkg/acquire-item.cc:1589 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Nu s-a putut analiza fișierul pachet %s (1)" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"Nu există nici o cheie publică disponibilă pentru următoarele " -"identificatoare de chei:\n" -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:791 #, c-format msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" - -#: apt-pkg/acquire-item.cc:1691 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:843 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Sar peste fișierul deja descărcat '%s'\n" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "GPG error: %s: %s" -msgstr "" +msgid "Couldn't determine free space in %s" +msgstr "N-am putut determina spațiul disponibil în %s" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:882 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"N-am putut localiza un fișier pentru pachetul %s. Aceasta ar putea însemna " -"că aveți nevoie să reparați manual acest pachet (din pricina unui arch lipsă)" +msgid "You don't have enough free space in %s" +msgstr "Nu aveți suficient spațiu în %s" -#: apt-pkg/acquire-item.cc:1925 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Este nevoie să descărcați %sB/%sB din arhivele surselor.\n" -#: apt-pkg/acquire-item.cc:1983 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Fișierele index de pachete sunt deteriorate. Fără câmpul 'nume fișier:' la " -"pachetul %s." +msgid "Need to get %sB of source archives.\n" +msgstr "Este nevoie să descărcați %sB din arhivele surselor.\n" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Blocul vânzător %s nu conține amprentă" +msgid "Fetch source %s\n" +msgstr "Aducere sursa %s\n" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "Directorul de liste %spartial lipsește." +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Eșec la aducerea unor arhive." -#: apt-pkg/acquire.cc:91 -#, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "Directorul de arhive %spartial lipsește." +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Descărcare completă și în modul doar descărcare" -#: apt-pkg/acquire.cc:99 -#, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "Nu pot încuia directorul cu lista" +#: cmdline/apt-get.cc:950 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Sar peste despachetarea sursei deja despachetate în %s\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Se descarcă fișierul %li din %li (%s rămas)" +msgid "Unpack command '%s' failed.\n" +msgstr "Comanda de despachetare '%s' eșuată.\n" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Se descarcă fișierul %li din %li" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Verificați dacă pachetul 'dpkg-dev' este instalat.\n" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Eșec la aducerea lui %s %s\n" +msgid "Build command '%s' failed.\n" +msgstr "Comanda de construire '%s' eșuată.\n" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Descărcarea unor fișiere index a eșuat, acestea fie au fost ignorate, fie au " -"fost folosite în loc unele vechi." +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Procesul copil a eșuat" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Trebuie să puneți niște 'surse' de URI în sources.list" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "" +"Trebuie specificat cel puțin un pachet pentru a-i verifica dependențele " +"înglobate" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Înregistrare invalidă în fișierul de preferințe, fără antet de pachet" +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "Nu pot prelua informațiile despre dependențele înglobate ale lui %s" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Did not understand pin type %s" -msgstr "Nu s-a înțeles tipul de pin %s" +msgid "%s has no build depends.\n" +msgstr "%s nu are dependențe înglobate.\n" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Fără prioritate (sau zero) specificată pentru pin" +#: cmdline/apt-get.cc:1272 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"Dependența lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu " +"poate fi găsit" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"Dependența lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu " +"poate fi găsit" + +#: cmdline/apt-get.cc:1313 +#, c-format +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" +"Eșec la satisfacerea dependenței %s pentru %s: Pachetul instalat %s este " +"prea nou" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:1352 #, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Nu s-a putut deschide fișierul %s" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"Dependența lui %s de %s nu poate fi satisfăcută deoarece nici o versiune " +"disponibilă a pachetului %s nu poate satisface versiunile cerute" -#: apt-pkg/packagemanager.cc:583 -#, c-format +#: cmdline/apt-get.cc:1358 +#, fuzzy, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -"Aceasta instalare va avea nevoie de ștergerea temporară a pachetului " -"esențial %s din cauza unui bucle conflict/pre-dependență. Asta de multe ori " -"nu-i de bine, dar dacă vreți întradevăr s-o faceți, activați opțiunea APT::" -"Force-LoopBreak." +"Dependența lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu " +"poate fi găsit" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Line %u too long in source list %s." -msgstr "Linia %u prea lungă în lista sursă %s." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Se demontează CD-ul...\n" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Eșec la satisfacerea dependenței %s pentru %s: %s" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Utilizare punct de montare CD-ROM %s\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Aștept discul...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Montez CD-ROM...\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Dependențele înglobate pentru %s nu pot fi satisfăcute." -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identificare... " +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Eșec la prelucrarea dependențelor de compilare" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Etichetă memorată: %s \n" +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Conectare la %s (%s)" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Scanez discul de fișierele index...\n" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Module suportate:" -# DEVELOPERS: please consider using somehow plural forms -#: apt-pkg/cdrom.cc:734 -#, c-format +#: cmdline/apt-get.cc:1633 +#, fuzzy msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Au fost găsite %zu indexuri de pachete, %zu indexuri de surse, %zu indexuri " -"de traduceri și %zu semnături\n" - -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" - -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "A fost găsită eticheta „%s”\n" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Acesta nu este un nume valid, mai încercați.\n" - -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"Acest disc este numit: \n" -"'%s'\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Copiez listele de pachete.." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Scriere noua listă sursă\n" +"Utilizare: apt-get [opțiuni] comanda\n" +" apt-get [opțiuni] install|remove pachet1 [pachet2 ...]\n" +" apt-get [opțiuni] source pachet1 [pachet2 ...]\n" +"\n" +"apt-get este o simplă interfață în linie de comandă pentru descărcarea și\n" +"instalarea pachetelor. Cele mai frecvent folosite comenzi sunt update\n" +"și install.\n" +"\n" +"Comenzi:\n" +" update - Aduce listele noi de pachete\n" +" upgrade - Realizează o înnoire\n" +" install - Instalează pachete noi (pachet este libc6, nu libc6.deb)\n" +" remove - Șterge pachete\n" +" autoremove - Șterge automat toate pachetele nefolosite\n" +" purge - Șterge și curăță pachete\n" +" source - Descarcă pachete-sursă\n" +" build-dep - Configurează dependențele de compilare pentru\n" +" pachetele-sursă\n" +" dist-upgrade - Înnoirea distribuției, a se vedea apt-get(8)\n" +" dselect-upgrade - Urmează selecțiile dselect\n" +" clean - Șterge fișierele-arhivă descărcate\n" +" autoclean - Șterge fișiere-arhivă descărcate învechite\n" +" check - Verifică dacă există dependențe neîndeplinite\n" +"\n" +"Opțiuni:\n" +" -h Acest text de ajutor.\n" +" -q Afișare jurnalizabilă - fără indicator de progres\n" +" -qq Fără afișare, cu excepția erorilor\n" +" -d Doar descărcare - NU instala sau despacheta arhive\n" +" -s Fără acțiune. Realizează o simulare\n" +" -y Presupune DA ca răspuns la toate întrebările și nu\n" +" solicita răspuns\n" +" -f Încearcă corectarea unui sistem cu dependențe corupte\n" +" -m Încearcă continuarea dacă arhivele nu pot fi găsite\n" +" -u Arată o listă de pachete ce pot fi înnoite\n" +" -b Construiește sursa pachetului după aducere\n" +" -V Arată versiunile în mod logoreic\n" +" -c=? Citește acest fișier de configurare\n" +" -o=? Ajustează o opțiune de configurare arbitrară, ex. -o dir::cache=/tmp\n" +"Vedeți manualele apt-get(8), sources.list(5) și apt.conf(5)\n" +"pentru mai multe informații și opțiuni.\n" +" Acest APT are puterile unei Super Vaci.\n" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Intrările listei surselor pentru acest disc sunt:\n" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Trebuie specificat cel puțin un pachet pentru a-i aduce sursa" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"Pachetul %s are nevoie să fie reinstalat, dar nu pot găsi o arhivă pentru el." -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-helper.cc:66 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Eroare, pkgProblemResolver::Resolve a generat întreruperi, aceasta poate fi " -"cauzată de pachete ținute." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Nu pot corecta problema, ați ținut pachete deteriorate." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Se construiește arborele de dependență" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Versiuni candidat" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Generare dependențe" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Se citesc informațiile de stare" - -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Eșec la deschiderea fișierului de stare %s" - -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Eșec la scrierea fișierului temporar de stare %s" - -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Nu s-a putut analiza fișierul pachet %s (1)" - -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Nu s-a putut analiza fișierul pachet %s (2)" - -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Release '%s' pentru '%s' n-a fost găsită" - -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Versiunea '%s' pentru '%s' n-a fost găsită" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "Nu s-a putut localiza pachetul %s" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "dar nu este instalat" -#: apt-pkg/cacheset.cc:603 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "Nu s-a putut găsi sarcina %s" +msgid "%s was already set to manually installed.\n" +msgstr "%s este marcat ca fiind instalat manual.\n" -#: apt-pkg/cacheset.cc:609 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Nu pot găsi pachetul %s" +msgid "%s was already set to automatically installed.\n" +msgstr "%s este marcat ca fiind instalat manual.\n" -#: apt-pkg/cacheset.cc:615 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Nu pot găsi pachetul %s" +msgid "%s was already set on hold.\n" +msgstr "%s este deja la cea mai nouă versiune.\n" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s este deja la cea mai nouă versiune.\n" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" +msgid "Waited for %s but it wasn't there" +msgstr "Așteptat %s, dar n-a fost acolo" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "%s este marcat ca fiind instalat manual.\n" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "Eșec la „open” pentru %s" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -#: apt-pkg/indexrecords.cc:78 -#, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "Nu s-a putut analiza fișierul pachet %s (1)" +#: cmdline/apt-mark.cc:392 +msgid "" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." +msgstr "" -#: apt-pkg/indexrecords.cc:86 -#, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "Notă, se selectează %s în locul lui %s\n" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/indexrecords.cc:117 +#: methods/cdrom.cc:203 #, c-format -msgid "No Hash entry in Release file %s" +msgid "Unable to read the cdrom database %s" +msgstr "Nu s-a putut citi baza de date de CD %s" + +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" msgstr "" +"Folosiți apt-cdrom pentru a-l face pe APT să recunoască acest CD. „apt-get " +"update” nu poate fi folosit pentru adăugarea de noi CD-uri" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Linie necorespunzătoare în fișierul-redirectare: %s" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD-ROM necorespunzător" -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Nu s-a putut analiza fișierul pachet %s (1)" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Nu se poate demonta CD-ul din %s, poate este încă utilizat." -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Linie greșită %lu în lista sursă %s (analiza URI)" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disc negăsit." -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Fișier negăsit" -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Linie greșită %lu în lista sursă %s (dist)" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Eșec la „stat”" -#: apt-pkg/sourcelist.cc:184 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Eșec la ajustarea timpului de modificare" -#: apt-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI invalid, URI-uile locale trebuie să nu înceapă cu //" -#: apt-pkg/sourcelist.cc:193 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Se autentifică" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Linie greșită %lu în lista sursă %s (URI)" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Nu se poate detecta numele perechii" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Linie greșită %lu în lista sursă %s (dist)" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Nu s-a putut detecta numele local" -#: apt-pkg/sourcelist.cc:211 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Linie greșită %lu în lista sursă %s (analiza URI)" +msgid "The server refused the connection and said: %s" +msgstr "Serverul a refuzat conexiunea și a spus: %s" -#: apt-pkg/sourcelist.cc:217 +#: methods/ftp.cc:225 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Linie greșită %lu în lista sursă %s (dist. absolută)" +msgid "USER failed, server said: %s" +msgstr "„USER” a eșuat, serverul a spus: %s" -#: apt-pkg/sourcelist.cc:224 +#: methods/ftp.cc:232 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)" +msgid "PASS failed, server said: %s" +msgstr "„PASS” a eșuat, serverul a spus: %s" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Deschidere %s" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"Un server proxy a fost precizat, dar nu există nici un script de conectare, " +"Acquire::ftp::ProxyLogin este gol." -#: apt-pkg/sourcelist.cc:371 +#: methods/ftp.cc:280 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Linie greșită %u în lista sursă %s (tip)" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Scriptul „%s” cu comenzile de conectare a eșuat, serverul a spus: %s" -#: apt-pkg/sourcelist.cc:375 +#: methods/ftp.cc:306 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Tipul '%s' nu este cunoscut în linia %u din lista sursă %s" +msgid "TYPE failed, server said: %s" +msgstr "„TYPE” a eșuat, serverul a spus: %s" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Tipul '%s' nu este cunoscut în linia %u din lista sursă %s" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Timpul de conectare a expirat" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Se instalează %s" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Serverul a închis conexiunea" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Se configurează %s" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Eroare de citire" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Se șterge %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Un răspuns a depășit zona de tampon." -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "Șters complet %s" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protocol corupt" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Eroare de scriere" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Se rulează declanșatorul post-instalare %s" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Nu s-a putut crea un socket" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Directorul „%s” lipsește." +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "" +"Nu s-a putut realiza conectarea la socket-ul de date, timpul de conectare a " +"expirat" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "Nu s-a putut deschide fișierul %s" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Eșec" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "Se pregătește %s" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Nu s-a putut realiza conectarea la un socket pasiv" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Se despachetează %s" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "„getaddrinfo” n-a reușit să obțină un socket de ascultare" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Se pregătește configurarea %s" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Nu s-a putut realiza asocierea la un socket" -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "Instalat %s" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Nu s-a putut asculta pe socket" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "Se pregătește ștergerea lui %s" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Nu s-a putut detecta numele socket-ului" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "Șters %s" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Nu s-a putut trimite comanda PORT" -#: apt-pkg/deb/dpkgpm.cc:1009 +#: methods/ftp.cc:802 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Se pregătește ștergerea completă a %s" +msgid "Unknown address family %u (AF_*)" +msgstr "Familie de adrese necunoscută %u (AF_*)" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: methods/ftp.cc:811 #, c-format -msgid "Completely removed %s" -msgstr "Șters complet %s" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +msgid "EPRT failed, server said: %s" +msgstr "„EPRT” a eșuat, serverul a spus: %s" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Nu s-a putut scrie în %s" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Timpul de conectare la socket-ul de date expirat" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Nu s-a putut accepta conexiune" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problemă la calcularea dispersiei pentru fișierul" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/ftp.cc:890 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Așteptat %s, dar n-a fost acolo" - -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" - -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" +msgid "Unable to fetch file, server said '%s'" +msgstr "Nu s-a putut aduce fișierul, serverul a spus „%s”" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Timp expirat pentru socket-ul de date" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" +#: methods/ftp.cc:935 +#, c-format +msgid "Data transfer failed, server said '%s'" +msgstr "Transferul de date a eșuat, serverul a spus: '%s'" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Interogare" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Nu s-a putut invoca" -#: apt-pkg/deb/debsystem.cc:91 +#: methods/connect.cc:76 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" - -#: apt-pkg/deb/debsystem.cc:94 -#, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Nu pot încuia directorul cu lista" +msgid "Connecting to %s (%s)" +msgstr "Conectare la %s (%s)" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: methods/connect.cc:87 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 +#: methods/connect.cc:94 #, c-format -msgid "%lid %lih %limin %lis" -msgstr "" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Nu s-a putut crea un socket pentru %s (f=%u t=%u p=%u)" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: methods/connect.cc:100 #, c-format -msgid "%lih %limin %lis" -msgstr "" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Nu s-a putut iniția conexiunea cu %s:%s (%s)." -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: methods/connect.cc:108 #, c-format -msgid "%limin %lis" +msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "" +"Nu s-a putut realiza conexiunea cu %s:%s (%s), timpul de conectare expirat" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: methods/connect.cc:126 #, c-format -msgid "%lis" -msgstr "" +msgid "Could not connect to %s:%s (%s)." +msgstr "Nu s-a putut realiza conexiunea cu %s:%s (%s)." -#: apt-pkg/contrib/strutl.cc:1243 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Selection %s not found" -msgstr "Selecția %s nu a fost găsită" +msgid "Connecting to %s" +msgstr "Conectare la %s" -#: apt-pkg/contrib/fileutl.cc:190 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Nu s-a folosit închiderea pentru fișierul disponibil doar-citire %s" +msgid "Could not resolve '%s'" +msgstr "Nu s-a putut rezolva „%s”" -#: apt-pkg/contrib/fileutl.cc:195 +#: methods/connect.cc:205 #, c-format -msgid "Could not open lock file %s" -msgstr "Nu pot deschide fișierul blocat %s" +msgid "Temporary failure resolving '%s'" +msgstr "Eșec temporar la rezolvarea lui „%s”" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Nu este folosit blocajul pentru fișierul montat nfs %s" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "S-a întâmplat ceva „necurat” la rezolvarea lui „%s:%s” (%i)" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Nu pot determina blocajul %s" +#: methods/connect.cc:211 +#, fuzzy, c-format +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "S-a întâmplat ceva „necurat” la rezolvarea lui „%s:%s” (%i)" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#: methods/connect.cc:258 +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Nu s-a putut realiza conexiunea cu %s %s:" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" +"Eroare internă: Semnătură corespunzătoare, dar nu s-a putut determina " +"amprenta digitale a cheii?!" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Cel puțin o semnătură nevalidă a fost întâlnită." + +#: methods/gpgv.cc:174 +#, fuzzy +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" +"Nu s-a putut executa „%s” pentru verificarea semnăturii (gpgv este instalat?)" -#: apt-pkg/contrib/fileutl.cc:421 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Subprocesul %s a primit o eroare de segmentare." +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Eroare necunoscută în timp ce se execută gpgv" -#: apt-pkg/contrib/fileutl.cc:826 -#, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "Subprocesul %s a primit o eroare de segmentare." +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Următoarele semnături nu au fost valide:\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Subprocesul %s a întors un cod de eroare (%u)" - -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Subprocesul %s s-a terminat brusc" - -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Eroare de scriere" - -#: apt-pkg/contrib/fileutl.cc:913 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problemă la închiderea fișierului" - -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Nu s-a putut deschide fișierul %s" - -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "Nu s-a putut deschide conexiunea pentru %s" +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "" +"Următoarele semnături n-au putut fi verificate, deoarece cheia publică nu " +"este disponibilă:\n" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Eșec la crearea IPC-ului pentru subproces" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Eșec la executarea compresorului" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Eroare la scrierea în fișierul" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Eroare de citire" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "" +"Eroare la citirea de la server. Conexiunea a fost închisă de la distanță" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "citire, încă mai am %lu de citit dar n-a mai rămas nimic" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Eroare la citirea de la server" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "scriere, încă mai am %lu de scris dar nu pot" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Eroare la scrierea în fișier" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Problemă la închiderea fișierului" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Selecția a eșuat" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problemă în timpul sincronizării fișierului" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Timp de conectare expirat" -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "Problemă la dezlegarea fișierului" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Eroare la scrierea fișierului de rezultat" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problemă în timpul sincronizării fișierului" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "În așteptarea antetelor" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Eroare!" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Linie de antet necorespunzătoare" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Terminat" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Serverul HTTP a trimis un antet de răspuns necorespunzător" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "Serverul HTTP a trimis un antet Content-Length necorespunzător" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Terminat" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "Serverul HTTP a trimis un antet zonă de conținut necorespunzător" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Nu s-a putut executa „mmap” cu un fișier gol" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Acest server HTTP are un suport defect de intervale" -#: apt-pkg/contrib/mmap.cc:111 -#, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Nu s-a putut deschide conexiunea pentru %s" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Format dată necunoscut" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Nu s-a putut face mmap cu %lu octeți" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Antet de date necorespunzător" -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "Nu s-a putut deschide %s" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Conectare eșuată" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -#, fuzzy -msgid "Unable to synchronize mmap" -msgstr "Nu s-a putut invoca" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Eroare internă" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Nu s-a putut face mmap cu %lu octeți" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Eșec la trunchierea fișierului" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Eroare internă, InstallPackages a fost apelat cu pachete deteriorate!" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" -msgstr "" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Pachete trebuiesc șterse dar ștergerea este dezactivată." -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Eroare internă, Ordering nu s-a terminat" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" +"Ce ciudat... Dimensiunile nu se potrivesc, scrieți la apt@packages.debian.org" -#: apt-pkg/contrib/cdromutl.cc:65 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "Nu pot determina starea punctului de montare %s" - -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Eșec la „stat” pentru CD" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Este nevoie să descărcați %sB/%sB de arhive.\n" -#: apt-pkg/contrib/configuration.cc:519 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Abreviere de tip nerecunoscut: „%c”" +msgid "Need to get %sB of archives.\n" +msgstr "Este nevoie să descărcați %sB de arhive.\n" -#: apt-pkg/contrib/configuration.cc:633 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "Opening configuration file %s" -msgstr "Se deschide fișierul de configurare %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "După această operație vor fi folosiți din disc încă %sB.\n" -#: apt-pkg/contrib/configuration.cc:801 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Eroare de sintaxă %s:%u: Blocul începe fără nume" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "După această operație se vor elibera %sB din spațiul ocupat pe disc.\n" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-private/private-install.cc:200 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Eroare de sintaxă %s:%u: etichetă greșită" +msgid "You don't have enough free space in %s." +msgstr "Nu aveți suficient spațiu în %s." -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Eroare de sintaxă %s:%u: mizerii suplimentare după valoare" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Sunt unele probleme și -y a fost folosit fără --force-yes" -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -"Eroare de sintaxă %s:%u: Directivele pot fi date doar la nivelul superior" +"A fost specificat 'doar neimportant' dar nu este o operațiune neimportantă." -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Eroare de sintaxă %s:%u: prea multe imbricări incluse" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Da, fă cum îți spun!" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-private/private-install.cc:222 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Eroare de sintaxă %s:%u: incluse de aici" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Sunteți pe cale de a face ceva cu potențial distructiv.\n" +"Pentru a continua tastați fraza '%s'\n" +" ?] " -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Eroare de sintaxă %s:%u: directivă nesuportată '%s'" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Renunțare." -#: apt-pkg/contrib/configuration.cc:900 -#, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Eroare de sintaxă %s:%u: Directivele pot fi date doar la nivelul superior" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Vreți să continuați?" -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Eroare de sintaxă %s:%u: mizerii suplimentare la sfârșitul fișierului" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Descărcarea unor fișiere a eșuat" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "Abandonez instalarea." +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"Nu s-au putut aduce unele arhive, poate ar fi o idee bună să rulați 'apt-get " +"update' sau încercați cu --fix-missing?" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Opțiunea linie de comandă '%c' [din %s] este necunoscută." +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing și schimbul de mediu nu este deocamdată suportat" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "Opțiunea linie de comandă %s nu este înțeleasă" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Nu pot corecta pachetele lipsă." -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "Opțiunea linie de comandă %s nu este booleană" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Abandonez instalarea." -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "Opțiunea %s necesită un argument" +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -"Opțiunea %s: Specificația configurării articolului trebuie să aibă o =<val>." -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Opțiunea %s necesită un argument integru, nu '%s'" +# XXX: orice sugestie este bine-venită +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Nu este voie să se șteargă lucruri, nu se poate porni AutoRemover" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Opțiunea '%s' este prea lungă" +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" +"Hmm, se pare că AutoRemover a distrus ceva, lucru care n-ar trebui să se " +"întâmple. Sunteți rugat să trimiteți un raportați de defect pentru pachetul " +"apt." -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Sensul %s nu este înțeles, încercați adevărat (true) sau fals (false)." +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Următoarele informații ar putea să vă ajute la rezolvarea situației:" -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "Operațiune invalidă %s" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Eroare internă, AutoRemover a deteriorat diverse chestiuni" -#: cmdline/apt-cache.cc:149 -#, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Pachetul %s versiunea %s are o dependență neîndeplinită:\n" +#: apt-private/private-install.cc:513 +#, fuzzy +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "" +"Următoarele pachete au fost instalate automat și nu mai sunt necesare:" +msgstr[1] "" +"Următoarele pachete au fost instalate automat și nu mai sunt necesare:" +msgstr[2] "" +"Următoarele pachete au fost instalate automat și nu mai sunt necesare:" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Total nume pachete : " +#: apt-private/private-install.cc:517 +#, fuzzy, c-format +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "" +"Următoarele pachete au fost instalate automat și nu mai sunt necesare:" +msgstr[1] "" +"Următoarele pachete au fost instalate automat și nu mai sunt necesare:" +msgstr[2] "" +"Următoarele pachete au fost instalate automat și nu mai sunt necesare:" -#: cmdline/apt-cache.cc:279 +#: apt-private/private-install.cc:519 #, fuzzy -msgid "Total package structures: " -msgstr "Total nume pachete : " +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Folosiți 'apt-get autoremove' pentru a le șterge." +msgstr[1] "Folosiți 'apt-get autoremove' pentru a le șterge." +msgstr[2] "Folosiți 'apt-get autoremove' pentru a le șterge." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Pachete normale: " +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Ați putea porni 'apt-get -f install' pentru a corecta acestea:" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Pachete virtuale pure: " +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"Dependențe neîndeplinite. Încercați 'apt-get -f install' fără nici un pachet " +"(sau oferiți o altă soluție)." -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Pachete virtuale singulare: " +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"Unele pachete n-au putut fi instalate. Aceasta ar putea însemna că ați " +"cerut\n" +"o situație imposibilă sau că folosiți distribuția instabilă în care unele " +"pachete\n" +"cerute n-au fost create încă sau au fost mutate din Incoming." -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Pachete virtuale mixte: " +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Pachete deteriorate" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Lipsă: " +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Următoarele extra pachete vor fi instalate:" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Total versiuni distincte: " +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Pachete sugerate:" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Numărul total de descrieri distincte: " +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Pachete recomandate:" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Total dependențe: " +#: apt-private/private-install.cc:825 +#, c-format +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Sar peste %s, este deja instalat și înnoirea nu este activată.\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Total relații versiune/fișier: " +#: apt-private/private-install.cc:829 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "Sar peste %s, este deja instalat și înnoirea nu este activată.\n" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Total relații desc/fișier: " +#: apt-private/private-install.cc:841 +#, c-format +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Reinstalarea lui %s nu este posibilă, nu poate fi descărcat.\n" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Total cartări Furnizează: " +#: apt-private/private-install.cc:846 +#, c-format +msgid "%s is already the newest version.\n" +msgstr "%s este deja la cea mai nouă versiune.\n" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Total șiruri înglobate: " - -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Total spațiu versiuni ale dependențelor: " - -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Total spațiu intern: " - -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Total spațiu contorizat pentru: " +#: apt-private/private-install.cc:894 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Versiune selectată %s (%s) pentru %s\n" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Fișierul pachetului %s este desincronizat." +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Versiune selectată %s (%s) pentru %s\n" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Nu s-au găsit pachete" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "Pachetul %s nu este instalat, așa încât nu este șters\n" -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "Trebuie să dați exact un șablon" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Pachetul %s nu este instalat, așa încât nu este șters\n" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Fișiere pachet: " +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "" -"Cache-ul este desincronizat, nu se poate executa x-ref pe un fișier pachet" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Corectez dependențele..." -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Pachete alese special:" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " eșec." -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(negăsit)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Nu s-au putut corecta dependențele" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Instalat: " +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Nu s-a putut micșora mulțimea pachetelor de înnoit" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidează: " +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Terminat" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(niciunul)" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Ați putea să porniți 'apt-get -f install' pentru a corecta acestea." -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Pachet ales special: " +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Dependențe neîndeplinite. Încercați să folosiți -f." -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabela de versiuni:" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s pentru %s compilat la %s %s\n" +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Instalat]" -#: cmdline/apt-cache.cc:1749 +#: apt-private/private-output.cc:238 #, fuzzy -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgid "[installed,local]" +msgstr " [Instalat]" + +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"Utilizare: apt-cache [opțiuni] comanda\n" -" apt-cache [opțiuni] add fișier1 [fișier2 ...]\n" -" apt-cache [opțiuni] showpkg pachet1 [pachet2 ...]\n" -" apt-cache [opțiuni] showsrc pachet1 [pachet2 ...]\n" -"\n" -"apt-cache este o unealtă de nivel scăzut pentru manipularea fișierelor\n" -"binare din cache-ul APT, și de interogare a informațiilor din ele\n" -"\n" -"Comenzi:\n" -" add - Adaugă un fișier pachet la cache-ul sursă\n" -" gencaches - Generează cache-ul de pachete și cache-ul de surse\n" -" showpkg - Arată câteva informații generale pentru un pachet\n" -" showsrc - Arată înregistrările despre sursă\n" -" stats - Arată câteva statistici de bază\n" -" dump - Arată întregul fișier într-o formă concisă\n" -" dumpavail - Afișează un fișier disponibil la ieșirea standard\n" -" unmet - Arată dependențele neîndeplinite\n" -" search - Caută în lista de pachete folosind un șablon regex\n" -" show - Arată o înregistrare lizibilă pentru pachet\n" -" depends - Arată informații brute de dependențe pentru un pachet\n" -" rdepends - Arată dependențele inverse pentru un pachet\n" -" pkgnames - Afișează numele tuturor pachetelor din sistem\n" -" dotty - Generează grafice cu pachete pentru GraphViz\n" -" xvcg - Generează grafice cu pachete pentru xvcg\n" -" policy - Arată configurațiile de politici\n" -"\n" -"Opțiuni:\n" -" -h Acest text de ajutor.\n" -" -p=? Cache-ul de pachete.\n" -" -s=? Cache-ul de surse.\n" -" -q Dezactivează indicatorul de progres.\n" -" -i Arată doar dependențele importante pentru comanda „unmet”.\n" -" -c=? Citește acest fișier de configurare\n" -" -o=? Ajustează o opțiune de configurare arbitrară, ex. -o dir::cache=/tmp\n" -"Vedeți manualele apt-cache(8) și apt.conf(5) pentru mai multe informații.\n" -#: cmdline/apt-cdrom.cc:76 +#: apt-private/private-output.cc:243 #, fuzzy -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Furnizați un nume pentru acest disc, de exemplu „Debian 2.1r1 Disk 1”" +msgid "[installed,automatic]" +msgstr " [Instalat]" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Introduceți un disc în unitate și apăsați Enter" +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Instalat]" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Eșec la redenumirea lui %s în %s" +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Repetați această procedură pentru restul CD-urilor din set." +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "dar %s este instalat" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumentele nu sunt perechi" +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "dar %s este pe cale de a fi instalat" -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -msgstr "" -"Utilizare: apt-config [opțiuni] comanda\n" -"\n" -"apt-config este o unealtă simplă pentru citirea fișierului de configurare " -"APT\n" -"\n" -"Comenzi:\n" -" shell - Modul consolă\n" -" dump - Arată configurația\n" -"\n" -"Opțiuni:\n" -" -h Acest text de ajutor.\n" -" -c=? Citește acest fișier de configurare\n" -" -o=? Ajustează o opțiune de configurare arbitrară, ex. -o dir::cache=/tmp\n" - -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Nu pot găsi pachetul %s" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "dar nu este instalabil" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Nu pot găsi pachetul %s" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "dar este un pachet virtual" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Nu pot găsi pachetul %s" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "dar nu este instalat" -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Nu pot determina starea listei surse de pachete %s" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "dar nu este pe cale să fie instalat" -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " sau" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "Nu pot găsi pachetul %s" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Următoarele pachete au dependențe neîndeplinite:" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s este marcat ca fiind instalat manual.\n" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Următoarele pachete NOI vor fi instalate:" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s este marcat ca fiind instalat manual.\n" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Următoarele pachete vor fi ȘTERSE:" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Următoarele pachete au fost reținute:" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "" -"Eroare internă, rezolvatorul de probleme a deteriorat diverse chestiuni" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Următoarele pachete vor fi ÎNNOITE:" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Nu s-a putut bloca directorul de descărcare" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Următoarele pachete vor fi DE-GRADATE:" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Trebuie specificat cel puțin un pachet pentru a-i aduce sursa" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Următoarele pachete ținute vor fi schimbate:" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/private-output.cc:668 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Nu s-a putut găsi o sursă pachet pentru %s" +msgid "%s (due to %s) " +msgstr "%s (datorită %s) " -#: cmdline/apt-get.cc:786 -#, c-format +#: apt-private/private-output.cc:676 msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" +"AVERTISMENT: Următoarele pachete esențiale vor fi șterse.\n" +"Aceasta NU ar trebui făcută decât dacă știți exact ce vreți!" -#: cmdline/apt-get.cc:791 +#: apt-private/private-output.cc:707 #, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" -msgstr "" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu înnoite, %lu nou instalate, " -#: cmdline/apt-get.cc:843 +#: apt-private/private-output.cc:711 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Sar peste fișierul deja descărcat '%s'\n" +msgid "%lu reinstalled, " +msgstr "%lu reinstalate, " -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-private/private-output.cc:713 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "N-am putut determina spațiul disponibil în %s" +msgid "%lu downgraded, " +msgstr "%lu de-gradate, " -#: cmdline/apt-get.cc:882 +#: apt-private/private-output.cc:715 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Nu aveți suficient spațiu în %s" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu de șters și %lu neînnoite.\n" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: apt-private/private-output.cc:719 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Este nevoie să descărcați %sB/%sB din arhivele surselor.\n" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu instalate sau șterse incomplet.\n" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Este nevoie să descărcați %sB din arhivele surselor.\n" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "" -#: cmdline/apt-get.cc:902 -#, c-format -msgid "Fetch source %s\n" -msgstr "Aducere sursa %s\n" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Eșec la aducerea unor arhive." +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "Y" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Descărcare completă și în modul doar descărcare" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: cmdline/apt-get.cc:950 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Sar peste despachetarea sursei deja despachetate în %s\n" +msgid "Regex compilation error - %s" +msgstr "Eroare de compilare expresie regulată - %s" -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Comanda de despachetare '%s' eșuată.\n" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Comanda de actualizare nu are argumente" -#: cmdline/apt-get.cc:963 +#: apt-private/private-update.cc:90 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Verificați dacă pachetul 'dpkg-dev' este instalat.\n" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "Comanda de construire '%s' eșuată.\n" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Procesul copil a eșuat" +#: apt-private/private-show.cc:156 +#, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" msgstr "" -"Trebuie specificat cel puțin un pachet pentru a-i verifica dependențele " -"înglobate" -#: cmdline/apt-get.cc:1054 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Nu pot prelua informațiile despre dependențele înglobate ale lui %s" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "AVERTISMENT: Următoarele pachete nu pot fi autentificate!" -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s nu are dependențe înglobate.\n" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Avertisment de autentificare înlocuit.\n" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"Dependența lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu " -"poate fi găsit" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Unele pachete n-au putut fi autentificate" + +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Instalați aceste pachete fără verificare?" -#: cmdline/apt-get.cc:1289 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" -"Dependența lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu " -"poate fi găsit" +msgid "Failed to fetch %s %s\n" +msgstr "Eșec la aducerea lui %s %s\n" -#: cmdline/apt-get.cc:1312 +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Eșec la redenumirea lui %s în %s" + +#: apt-private/private-sources.cc:70 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -"Eșec la satisfacerea dependenței %s pentru %s: Pachetul instalat %s este " -"prea nou" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" msgstr "" -"Dependența lui %s de %s nu poate fi satisfăcută deoarece nici o versiune " -"disponibilă a pachetului %s nu poate satisface versiunile cerute" -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Calculez înnoirea... " + +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Terminat" + +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Atins " + +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Luat:" + +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ignorat " + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Eroare" + +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Aduși: %sB în %s (%sB/s)\n" + +#: apt-private/acqprogress.cc:236 +#, c-format +msgid " [Working]" +msgstr " [În lucru]" + +#: apt-private/acqprogress.cc:297 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"Dependența lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu " -"poate fi găsit" +"Schimbare de mediu: introduceți discul numit\n" +" „%s”\n" +"în unitatea „%s” și apăsați Enter\n" -#: cmdline/apt-get.cc:1380 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Eșec la satisfacerea dependenței %s pentru %s: %s" +msgid "Unable to read %s" +msgstr "Nu s-a putut citi %s" -#: cmdline/apt-get.cc:1395 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Dependențele înglobate pentru %s nu pot fi satisfăcute." +msgid "Unable to change to %s" +msgstr "Nu pot schimba la %s" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Eșec la prelucrarea dependențelor de compilare" +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 +#, c-format +msgid "No mirror file '%s' found " +msgstr "" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Conectare la %s (%s)" +msgid "Can not read mirror file '%s'" +msgstr "Nu s-a putut deschide fișierul %s" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Module suportate:" +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Nu s-a putut deschide fișierul %s" -#: cmdline/apt-get.cc:1632 -#, fuzzy -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" +#: methods/mirror.cc:445 +#, c-format +msgid "[Mirror: %s]" msgstr "" -"Utilizare: apt-get [opțiuni] comanda\n" -" apt-get [opțiuni] install|remove pachet1 [pachet2 ...]\n" -" apt-get [opțiuni] source pachet1 [pachet2 ...]\n" -"\n" -"apt-get este o simplă interfață în linie de comandă pentru descărcarea și\n" -"instalarea pachetelor. Cele mai frecvent folosite comenzi sunt update\n" -"și install.\n" -"\n" -"Comenzi:\n" -" update - Aduce listele noi de pachete\n" -" upgrade - Realizează o înnoire\n" -" install - Instalează pachete noi (pachet este libc6, nu libc6.deb)\n" -" remove - Șterge pachete\n" -" autoremove - Șterge automat toate pachetele nefolosite\n" -" purge - Șterge și curăță pachete\n" -" source - Descarcă pachete-sursă\n" -" build-dep - Configurează dependențele de compilare pentru\n" -" pachetele-sursă\n" -" dist-upgrade - Înnoirea distribuției, a se vedea apt-get(8)\n" -" dselect-upgrade - Urmează selecțiile dselect\n" -" clean - Șterge fișierele-arhivă descărcate\n" -" autoclean - Șterge fișiere-arhivă descărcate învechite\n" -" check - Verifică dacă există dependențe neîndeplinite\n" -"\n" -"Opțiuni:\n" -" -h Acest text de ajutor.\n" -" -q Afișare jurnalizabilă - fără indicator de progres\n" -" -qq Fără afișare, cu excepția erorilor\n" -" -d Doar descărcare - NU instala sau despacheta arhive\n" -" -s Fără acțiune. Realizează o simulare\n" -" -y Presupune DA ca răspuns la toate întrebările și nu\n" -" solicita răspuns\n" -" -f Încearcă corectarea unui sistem cu dependențe corupte\n" -" -m Încearcă continuarea dacă arhivele nu pot fi găsite\n" -" -u Arată o listă de pachete ce pot fi înnoite\n" -" -b Construiește sursa pachetului după aducere\n" -" -V Arată versiunile în mod logoreic\n" -" -c=? Citește acest fișier de configurare\n" -" -o=? Ajustează o opțiune de configurare arbitrară, ex. -o dir::cache=/tmp\n" -"Vedeți manualele apt-get(8), sources.list(5) și apt.conf(5)\n" -"pentru mai multe informații și opțiuni.\n" -" Acest APT are puterile unei Super Vaci.\n" -#: cmdline/apt-helper.cc:35 +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Eșec la crearea conexiunii IPC către subproces" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Conexiune închisă prematur" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Configurări implicite necorespunzătoare!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Apăsați Enter pentru a continua." + +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Doriți să ștergeți eventualele fișiere .deb descărcate anterior?" + +#: dselect/install:102 #, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Trebuie specificat cel puțin un pachet pentru a-i aduce sursa" +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "S-au produs unele erori în timpul despachetării. Se vor configura" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: dselect/install:103 +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "" +"pachetele care au fost instalate. Aceasta ar putea rezulta erori duplicate" -#: cmdline/apt-helper.cc:66 +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "sau erori cauzate de dependențe lipsă. Fiind normal, doar erorile de" + +#: dselect/install:105 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" +"deasupra acestui mesaj sunt importante. Corectați-le și reporniți " +"[I]nstalarea" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "dar nu este instalat" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Se combină informațiile disponibile" -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s este marcat ca fiind instalat manual.\n" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "S-a chemat DropNode pe un nod încă „legat”" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s este marcat ca fiind instalat manual.\n" +# XXX: nu-mi place, fie e hash, fie „element de dispersie” +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Eșec la localizarea elementului de dispersie!" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s este deja la cea mai nouă versiune.\n" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Eșec la alocarea redirectării" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s este deja la cea mai nouă versiune.\n" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Eroare internă în „AddDiversion”" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s este marcat ca fiind instalat manual.\n" +#: apt-inst/filelist.cc:477 +#, c-format +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Încercare de suprascriere a redirectării, %s -> %s și %s/%s" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "Adăugare dublă de redirectare %s -> %s" + +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "Fișier „conf” duplicat %s/%s" + +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" +msgstr "Calea %s este prea lungă" + +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" +msgstr "Se despachetează %s de mai multe ori" + +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "Directorul %s este redirectat" + +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Pachetul încearcă să scrie în ținta redirectării %s/%s" + +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Calea de redirectare este prea lungă" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 +#, c-format +msgid "Failed to stat %s" +msgstr "Eșec la „stat” pentru %s" + +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Eșec la redenumirea lui %s în %s" + +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "Directorul %s este înlocuit de un non-director" + +# XXX: nu-mi place, hash bucket ar trebui tradus mai elegant +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Eșec la localizarea nodului în clasa lui din tabela de dispersie" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Calea este prea lungă" + +#: apt-inst/extract.cc:421 +#, c-format +msgid "Overwrite package match with no version for %s" +msgstr "Pachet suprascris fără nici o versiune pentru %s" + +#: apt-inst/extract.cc:438 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Fișierul %s/%s îl suprascrie pe cel din pachetul %s" + +#: apt-inst/extract.cc:498 +#, c-format +msgid "Unable to stat %s" +msgstr "Nu se poate executa „stat” pe %s" + +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, c-format +msgid "Failed to write file %s" +msgstr "Eșec la scrierea fișierului %s" + +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "Eșec la închiderea fișierului %s" + +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Aceasta nu este o arhivă DEB validă, lipsește membrul „%s”" + +#: apt-inst/deb/debfile.cc:132 +#, c-format +msgid "Internal error, could not locate member %s" +msgstr "Eroare internă, nu pot localiza membrul %s" + +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Fișier de control neanalizabil" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Semnătură de arhivă necorespunzătoare" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Eroare la citirea antetului membrului arhivei" + +#: apt-inst/contrib/arfile.cc:96 #, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Eșec la „open” pentru %s" +msgid "Invalid archive member header %s" +msgstr "Antet de membru de arhivă necorespunzător" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Antet de membru de arhivă necorespunzător" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Arhiva este prea scurtă" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Eșec la citirea antetelor arhivei" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Eșec la crearea conexiunilor" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Eșec la executarea lui gzip " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Arhivă deteriorată" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" msgstr "" +"Suma de control a arhivei tar nu s-a verificat, arhiva este deteriorată" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Tip antet TAR %u necunoscut, membrul %s" + +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" msgstr "" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" msgstr "" -#: methods/cdrom.cc:203 +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Sistemul de pachete '%s' nu este suportat" + +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Nu s-a putut determina un tip de sistem de împachetare potrivit" + +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "S-au scris %i înregistrări.\n" + +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "S-au scris %i înregistrări cu %i fișiere lipsă.\n" + +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Nu s-a putut citi baza de date de CD %s" +msgid "Wrote %i records with %i mismatched files\n" +msgstr "S-au scris %i înregistrări cu %i fișiere nepotrivite\n" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" -"Folosiți apt-cdrom pentru a-l face pe APT să recunoască acest CD. „apt-get " -"update” nu poate fi folosit pentru adăugarea de noi CD-uri" - -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD-ROM necorespunzător" +"S-au scris %i înregistrări cu %i fișiere lipsă și %i fișiere nepotrivite\n" -#: methods/cdrom.cc:249 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Nu se poate demonta CD-ul din %s, poate este încă utilizat." - -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disc negăsit." +msgid "Can't find authentication record for: %s" +msgstr "" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Fișier negăsit" +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "Nepotrivire la suma de căutare" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Eșec la „stat”" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"Listele de pachete sau fișierul de stare n-au putut fi analizate sau " +"deschise." -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Eșec la ajustarea timpului de modificare" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "" +"Ați putea vrea să porniți 'apt-get update' pentru a corecta aceste probleme." -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI invalid, URI-uile locale trebuie să nu înceapă cu //" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Lista surselor nu poate fi citită." -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Se autentifică" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Cache gol de pachet" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Nu se poate detecta numele perechii" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Cache-ul fișierului pachet este deteriorat" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Nu s-a putut detecta numele local" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Fișierul cache al pachetului este o versiune incompatibilă" -#: methods/ftp.cc:219 methods/ftp.cc:247 -#, c-format -msgid "The server refused the connection and said: %s" -msgstr "Serverul a refuzat conexiunea și a spus: %s" +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "Cache-ul fișierului pachet este deteriorat" -#: methods/ftp.cc:225 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "USER failed, server said: %s" -msgstr "„USER” a eșuat, serverul a spus: %s" +msgid "This APT does not support the versioning system '%s'" +msgstr "Acest APT nu suportă versioning system '%s'" -#: methods/ftp.cc:232 -#, c-format -msgid "PASS failed, server said: %s" -msgstr "„PASS” a eșuat, serverul a spus: %s" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Cache-ul pachetului a fost construit pentru o arhitectură diferită" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"Un server proxy a fost precizat, dar nu există nici un script de conectare, " -"Acquire::ftp::ProxyLogin este gol." +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Depinde" -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Scriptul „%s” cu comenzile de conectare a eșuat, serverul a spus: %s" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Pre-depinde" -#: methods/ftp.cc:306 -#, c-format -msgid "TYPE failed, server said: %s" -msgstr "„TYPE” a eșuat, serverul a spus: %s" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Sugerează" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Timpul de conectare a expirat" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Recomandă" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Serverul a închis conexiunea" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Este în conflict" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Un răspuns a depășit zona de tampon." +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Înlocuiește" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protocol corupt" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Învechit" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Nu s-a putut crea un socket" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Corupe" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" msgstr "" -"Nu s-a putut realiza conectarea la socket-ul de date, timpul de conectare a " -"expirat" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Eșec" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "important" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Nu s-a putut realiza conectarea la un socket pasiv" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "cerut" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "„getaddrinfo” n-a reușit să obțină un socket de ascultare" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standard" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Nu s-a putut realiza asocierea la un socket" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "opțional" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Nu s-a putut asculta pe socket" +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Nu s-a putut detecta numele socket-ului" +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Metoda driver %s nu poate fi găsită." -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Nu s-a putut trimite comanda PORT" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Verificați dacă pachetul 'dpkg-dev' este instalat.\n" -#: methods/ftp.cc:802 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Familie de adrese necunoscută %u (AF_*)" +msgid "Method %s did not start correctly" +msgstr "Metoda %s nu s-a lansat corect" -#: methods/ftp.cc:811 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "„EPRT” a eșuat, serverul a spus: %s" +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Vă rog introduceți discul numit: '%s' în unitatea '%s' și apăsați Enter." -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Timpul de conectare la socket-ul de date expirat" +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "Tipul de fișier index '%s' nu este suportat" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Nu s-a putut accepta conexiune" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Se construiește arborele de dependență" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Versiuni candidat" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Generare dependențe" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Se citesc informațiile de stare" + +#: apt-pkg/depcache.cc:250 +#, c-format +msgid "Failed to open StateFile %s" +msgstr "Eșec la deschiderea fișierului de stare %s" + +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Eșec la scrierea fișierului temporar de stare %s" + +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "redenumire eșuată, %s (%s -> %s)." -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problemă la calcularea dispersiei pentru fișierul" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Nepotrivire la suma de căutare" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Nu s-a putut aduce fișierul, serverul a spus „%s”" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Nepotrivire dimensiune" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Timp expirat pentru socket-ul de date" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Operațiune invalidă %s" -#: methods/ftp.cc:935 +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Transferul de date a eșuat, serverul a spus: '%s'" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Interogare" +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Nu s-a putut analiza fișierul pachet %s (1)" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Nu s-a putut invoca" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "" +"Nu există nici o cheie publică disponibilă pentru următoarele " +"identificatoare de chei:\n" -#: methods/connect.cc:76 +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Conectare la %s (%s)" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: methods/connect.cc:87 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" -#: methods/connect.cc:94 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Nu s-a putut crea un socket pentru %s (f=%u t=%u p=%u)" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" -#: methods/connect.cc:100 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Nu s-a putut iniția conexiunea cu %s:%s (%s)." +msgid "GPG error: %s: %s" +msgstr "" -#: methods/connect.cc:108 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" msgstr "" -"Nu s-a putut realiza conexiunea cu %s:%s (%s), timpul de conectare expirat" +"N-am putut localiza un fișier pentru pachetul %s. Aceasta ar putea însemna " +"că aveți nevoie să reparați manual acest pachet (din pricina unui arch lipsă)" -#: methods/connect.cc:126 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Nu s-a putut realiza conexiunea cu %s:%s (%s)." +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "Connecting to %s" -msgstr "Conectare la %s" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Fișierele index de pachete sunt deteriorate. Fără câmpul 'nume fișier:' la " +"pachetul %s." -#: methods/connect.cc:180 methods/connect.cc:199 -#, c-format -msgid "Could not resolve '%s'" -msgstr "Nu s-a putut rezolva „%s”" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Tipul de fișier index '%s' nu este suportat" -#: methods/connect.cc:205 +#: apt-pkg/clean.cc:64 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Eșec temporar la rezolvarea lui „%s”" +msgid "Unable to stat %s." +msgstr "Nu pot determina starea %s." -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "S-a întâmplat ceva „necurat” la rezolvarea lui „%s:%s” (%i)" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Cache are un versioning system incompatibil" -#: methods/connect.cc:211 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "S-a întâmplat ceva „necurat” la rezolvarea lui „%s:%s” (%i)" +msgid "Error occurred while processing %s (%s%d)" +msgstr "Eroare apărută în timpul procesării %s (FindPkg)" -#: methods/connect.cc:258 -#, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Nu s-a putut realiza conexiunea cu %s %s:" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "" +"Mamăăă, ați depășit numărul de nume de pachete de care este capabil acest " +"APT." -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" -"Eroare internă: Semnătură corespunzătoare, dar nu s-a putut determina " -"amprenta digitale a cheii?!" +"Mamăăă, ați depășit numărul de versiuni de care este capabil acest APT." -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Cel puțin o semnătură nevalidă a fost întâlnită." +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "" +"Mamăăă, ați depășit numărul de descrieri de care este capabil acest APT." -#: methods/gpgv.cc:174 -#, fuzzy -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -"Nu s-a putut executa „%s” pentru verificarea semnăturii (gpgv este instalat?)" +"Mamăăă, ați depășit numărul de dependențe de care este capabil acest APT." -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +msgid "Package %s %s was not found while processing file dependencies" msgstr "" +"Nu s-a găsit pachetul %s %s în timpul procesării dependențelor de fișiere" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Eroare necunoscută în timp ce se execută gpgv" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Nu pot determina starea listei surse de pachete %s" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Următoarele semnături nu au fost valide:\n" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Citire liste de pachete" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "" -"Următoarele semnături n-au putut fi verificate, deoarece cheia publică nu " -"este disponibilă:\n" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Colectare furnizori fișier" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Nu s-a putut scrie în %s" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Eroare la scrierea în fișierul" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Eroare IO în timpul salvării sursei cache" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "" -"Eroare la citirea de la server. Conexiunea a fost închisă de la distanță" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Blocul vânzător %s nu conține amprentă" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Eroare la citirea de la server" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "Directorul de liste %spartial lipsește." + +#: apt-pkg/acquire.cc:91 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "Directorul de arhive %spartial lipsește." + +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "Nu pot încuia directorul cu lista" + +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Se descarcă fișierul %li din %li (%s rămas)" + +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Se descarcă fișierul %li din %li" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"Descărcarea unor fișiere index a eșuat, acestea fie au fost ignorate, fie au " +"fost folosite în loc unele vechi." -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Eroare la scrierea în fișier" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Trebuie să puneți niște 'surse' de URI în sources.list" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Selecția a eșuat" +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Timp de conectare expirat" +#: apt-pkg/policy.cc:422 +#, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Înregistrare invalidă în fișierul de preferințe, fără antet de pachet" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Eroare la scrierea fișierului de rezultat" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Nu s-a înțeles tipul de pin %s" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "În așteptarea antetelor" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Fără prioritate (sau zero) specificată pentru pin" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Linie de antet necorespunzătoare" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Serverul HTTP a trimis un antet de răspuns necorespunzător" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Nu s-a putut deschide fișierul %s" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Serverul HTTP a trimis un antet Content-Length necorespunzător" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"Aceasta instalare va avea nevoie de ștergerea temporară a pachetului " +"esențial %s din cauza unui bucle conflict/pre-dependență. Asta de multe ori " +"nu-i de bine, dar dacă vreți întradevăr s-o faceți, activați opțiunea APT::" +"Force-LoopBreak." -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Serverul HTTP a trimis un antet zonă de conținut necorespunzător" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "Linia %u prea lungă în lista sursă %s." -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Acest server HTTP are un suport defect de intervale" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Se demontează CD-ul...\n" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Format dată necunoscut" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "Utilizare punct de montare CD-ROM %s\n" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Antet de date necorespunzător" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Aștept discul...\n" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Conectare eșuată" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Montez CD-ROM...\n" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Eroare internă" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identificare... " -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Calculez înnoirea... " +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Etichetă memorată: %s \n" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Terminat" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Scanez discul de fișierele index...\n" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +# DEVELOPERS: please consider using somehow plural forms +#: apt-pkg/cdrom.cc:734 +#, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"Au fost găsite %zu indexuri de pachete, %zu indexuri de surse, %zu indexuri " +"de traduceri și %zu semnături\n" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Corectez dependențele..." - -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " eșec." +msgid "Found label '%s'\n" +msgstr "A fost găsită eticheta „%s”\n" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Nu s-au putut corecta dependențele" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Acesta nu este un nume valid, mai încercați.\n" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Nu s-a putut micșora mulțimea pachetelor de înnoit" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Acest disc este numit: \n" +"'%s'\n" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Terminat" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Copiez listele de pachete.." -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Ați putea să porniți 'apt-get -f install' pentru a corecta acestea." +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Scriere noua listă sursă\n" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dependențe neîndeplinite. Încercați să folosiți -f." +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Intrările listei surselor pentru acest disc sunt:\n" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" +"Pachetul %s are nevoie să fie reinstalat, dar nu pot găsi o arhivă pentru el." -#: apt-private/private-output.cc:234 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Instalat]" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Eroare, pkgProblemResolver::Resolve a generat întreruperi, aceasta poate fi " +"cauzată de pachete ținute." -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [Instalat]" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Nu pot corecta problema, ați ținut pachete deteriorate." -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" msgstr "" -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Instalat]" - -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Instalat]" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: apt-private/private-output.cc:249 -#, c-format -msgid "[upgradable from: %s]" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" msgstr "" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -#: apt-private/private-output.cc:435 -#, c-format -msgid "but %s is installed" -msgstr "dar %s este instalat" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" -#: apt-private/private-output.cc:437 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "but %s is to be installed" -msgstr "dar %s este pe cale de a fi instalat" - -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "dar nu este instalabil" - -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "dar este un pachet virtual" +msgid "Unable to parse package file %s (1)" +msgstr "Nu s-a putut analiza fișierul pachet %s (1)" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "dar nu este instalat" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Nu s-a putut analiza fișierul pachet %s (2)" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "dar nu este pe cale să fie instalat" +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "Nu s-a putut analiza fișierul pachet %s (1)" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " sau" +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "Notă, se selectează %s în locul lui %s\n" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Următoarele pachete au dependențe neîndeplinite:" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Următoarele pachete NOI vor fi instalate:" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Linie necorespunzătoare în fișierul-redirectare: %s" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Următoarele pachete vor fi ȘTERSE:" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Nu s-a putut analiza fișierul pachet %s (1)" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Următoarele pachete au fost reținute:" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Linie greșită %lu în lista sursă %s (analiza URI)" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Următoarele pachete vor fi ÎNNOITE:" +#: apt-pkg/sourcelist.cc:170 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Următoarele pachete vor fi DE-GRADATE:" +#: apt-pkg/sourcelist.cc:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Linie greșită %lu în lista sursă %s (dist)" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Următoarele pachete ținute vor fi schimbate:" +#: apt-pkg/sourcelist.cc:184 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)" -#: apt-private/private-output.cc:668 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (datorită %s) " +#: apt-pkg/sourcelist.cc:190 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" -msgstr "" -"AVERTISMENT: Următoarele pachete esențiale vor fi șterse.\n" -"Aceasta NU ar trebui făcută decât dacă știți exact ce vreți!" +#: apt-pkg/sourcelist.cc:193 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)" -#: apt-private/private-output.cc:707 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu înnoite, %lu nou instalate, " +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Linie greșită %lu în lista sursă %s (URI)" -#: apt-private/private-output.cc:711 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinstalate, " +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Linie greșită %lu în lista sursă %s (dist)" -#: apt-private/private-output.cc:713 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "%lu downgraded, " -msgstr "%lu de-gradate, " +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Linie greșită %lu în lista sursă %s (analiza URI)" -#: apt-private/private-output.cc:715 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu de șters și %lu neînnoite.\n" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Linie greșită %lu în lista sursă %s (dist. absolută)" -#: apt-private/private-output.cc:719 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu instalate sau șterse incomplet.\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "" - -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "" - -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "Y" - -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "" - -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Comanda de actualizare nu are argumente" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)" -#: apt-private/private-update.cc:90 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "Opening %s" +msgstr "Deschidere %s" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Linie greșită %u în lista sursă %s (tip)" -#: apt-private/private-show.cc:156 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Tipul '%s' nu este cunoscut în linia %u din lista sursă %s" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Tipul '%s' nu este cunoscut în linia %u din lista sursă %s" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Eroare internă, InstallPackages a fost apelat cu pachete deteriorate!" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Release '%s' pentru '%s' n-a fost găsită" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Pachete trebuiesc șterse dar ștergerea este dezactivată." +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Versiunea '%s' pentru '%s' n-a fost găsită" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Eroare internă, Ordering nu s-a terminat" +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "Nu s-a putut găsi sarcina %s" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Ce ciudat... Dimensiunile nu se potrivesc, scrieți la apt@packages.debian.org" +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Nu pot găsi pachetul %s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 -#, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Este nevoie să descărcați %sB/%sB de arhive.\n" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Nu pot găsi pachetul %s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/cacheset.cc:626 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Este nevoie să descărcați %sB de arhive.\n" +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "După această operație vor fi folosiți din disc încă %sB.\n" +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "După această operație se vor elibera %sB din spațiul ocupat pe disc.\n" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: apt-private/private-install.cc:200 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Nu aveți suficient spațiu în %s." - -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Sunt unele probleme și -y a fost folosit fără --force-yes" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" msgstr "" -"A fost specificat 'doar neimportant' dar nu este o operațiune neimportantă." -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Da, fă cum îți spun!" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "" -#: apt-private/private-install.cc:222 +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +msgid "%lih %limin %lis" msgstr "" -"Sunteți pe cale de a face ceva cu potențial distructiv.\n" -"Pentru a continua tastați fraza '%s'\n" -" ?] " -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Renunțare." +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Vreți să continuați?" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Descărcarea unor fișiere a eșuat" +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "Selecția %s nu a fost găsită" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Nu s-au putut aduce unele arhive, poate ar fi o idee bună să rulați 'apt-get " -"update' sau încercați cu --fix-missing?" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Nu s-a folosit închiderea pentru fișierul disponibil doar-citire %s" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing și schimbul de mediu nu este deocamdată suportat" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Nu pot deschide fișierul blocat %s" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Nu pot corecta pachetele lipsă." +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Nu este folosit blocajul pentru fișierul montat nfs %s" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Abandonez instalarea." +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Nu pot determina blocajul %s" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -# XXX: orice sugestie este bine-venită -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Nu este voie să se șteargă lucruri, nu se poate porni AutoRemover" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: apt-private/private-install.cc:499 +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"Hmm, se pare că AutoRemover a distrus ceva, lucru care n-ar trebui să se " -"întâmple. Sunteți rugat să trimiteți un raportați de defect pentru pachetul " -"apt." -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "Următoarele informații ar putea să vă ajute la rezolvarea situației:" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Subprocesul %s a primit o eroare de segmentare." -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Eroare internă, AutoRemover a deteriorat diverse chestiuni" +#: apt-pkg/contrib/fileutl.cc:826 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "Subprocesul %s a primit o eroare de segmentare." -#: apt-private/private-install.cc:513 -#, fuzzy -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "" -"Următoarele pachete au fost instalate automat și nu mai sunt necesare:" -msgstr[1] "" -"Următoarele pachete au fost instalate automat și nu mai sunt necesare:" -msgstr[2] "" -"Următoarele pachete au fost instalate automat și nu mai sunt necesare:" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "Subprocesul %s a întors un cod de eroare (%u)" -#: apt-private/private-install.cc:517 -#, fuzzy, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "" -"Următoarele pachete au fost instalate automat și nu mai sunt necesare:" -msgstr[1] "" -"Următoarele pachete au fost instalate automat și nu mai sunt necesare:" -msgstr[2] "" -"Următoarele pachete au fost instalate automat și nu mai sunt necesare:" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Subprocesul %s s-a terminat brusc" -#: apt-private/private-install.cc:519 -#, fuzzy -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Folosiți 'apt-get autoremove' pentru a le șterge." -msgstr[1] "Folosiți 'apt-get autoremove' pentru a le șterge." -msgstr[2] "Folosiți 'apt-get autoremove' pentru a le șterge." +#: apt-pkg/contrib/fileutl.cc:913 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problemă la închiderea fișierului" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Ați putea porni 'apt-get -f install' pentru a corecta acestea:" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Nu s-a putut deschide fișierul %s" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Dependențe neîndeplinite. Încercați 'apt-get -f install' fără nici un pachet " -"(sau oferiți o altă soluție)." +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Nu s-a putut deschide conexiunea pentru %s" -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." -msgstr "" -"Unele pachete n-au putut fi instalate. Aceasta ar putea însemna că ați " -"cerut\n" -"o situație imposibilă sau că folosiți distribuția instabilă în care unele " -"pachete\n" -"cerute n-au fost create încă sau au fost mutate din Incoming." +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Eșec la crearea IPC-ului pentru subproces" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Pachete deteriorate" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Eșec la executarea compresorului" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Următoarele extra pachete vor fi instalate:" +#: apt-pkg/contrib/fileutl.cc:1514 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "citire, încă mai am %lu de citit dar n-a mai rămas nimic" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Pachete sugerate:" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "scriere, încă mai am %lu de scris dar nu pot" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Pachete recomandate:" +#: apt-pkg/contrib/fileutl.cc:1915 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Problemă la închiderea fișierului" -#: apt-private/private-install.cc:825 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Sar peste %s, este deja instalat și înnoirea nu este activată.\n" +#: apt-pkg/contrib/fileutl.cc:1927 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Problemă în timpul sincronizării fișierului" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:1938 #, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "Sar peste %s, este deja instalat și înnoirea nu este activată.\n" +msgid "Problem unlinking the file %s" +msgstr "Problemă la dezlegarea fișierului" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Problemă în timpul sincronizării fișierului" + +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Reinstalarea lui %s nu este posibilă, nu poate fi descărcat.\n" +msgid "%c%s... Error!" +msgstr "%c%s... Eroare!" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s este deja la cea mai nouă versiune.\n" +msgid "%c%s... Done" +msgstr "%c%s... Terminat" -#: apt-private/private-install.cc:894 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Versiune selectată %s (%s) pentru %s\n" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-install.cc:899 +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Versiune selectată %s (%s) pentru %s\n" +msgid "%c%s... %u%%" +msgstr "%c%s... Terminat" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "Pachetul %s nu este instalat, așa încât nu este șters\n" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Nu s-a putut executa „mmap” cu un fișier gol" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/mmap.cc:111 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Pachetul %s nu este instalat, așa încât nu este șters\n" - -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" +msgid "Couldn't duplicate file descriptor %i" +msgstr "Nu s-a putut deschide conexiunea pentru %s" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "AVERTISMENT: Următoarele pachete nu pot fi autentificate!" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Nu s-a putut face mmap cu %lu octeți" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Avertisment de autentificare înlocuit.\n" +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Nu s-a putut deschide %s" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Unele pachete n-au putut fi autentificate" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "Nu s-a putut invoca" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Instalați aceste pachete fără verificare?" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Nu s-a putut face mmap cu %lu octeți" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Eșec la redenumirea lui %s în %s" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Eșec la trunchierea fișierului" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: apt-pkg/contrib/mmap.cc:446 +#, c-format +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Atins " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Luat:" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ignorat " +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Nu pot determina starea punctului de montare %s" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Eroare" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Eșec la „stat” pentru CD" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Aduși: %sB în %s (%sB/s)\n" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Abreviere de tip nerecunoscut: „%c”" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid " [Working]" -msgstr " [În lucru]" +msgid "Opening configuration file %s" +msgstr "Se deschide fișierul de configurare %s" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" -msgstr "" -"Schimbare de mediu: introduceți discul numit\n" -" „%s”\n" -"în unitatea „%s” și apăsați Enter\n" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Eroare de sintaxă %s:%u: Blocul începe fără nume" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/configuration.cc:820 #, c-format -msgid "No mirror file '%s' found " -msgstr "" - -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Nu s-a putut deschide fișierul %s" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Eroare de sintaxă %s:%u: etichetă greșită" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Nu s-a putut deschide fișierul %s" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Eroare de sintaxă %s:%u: mizerii suplimentare după valoare" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:877 #, c-format -msgid "[Mirror: %s]" +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" +"Eroare de sintaxă %s:%u: Directivele pot fi date doar la nivelul superior" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Eșec la crearea conexiunii IPC către subproces" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Conexiune închisă prematur" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Configurări implicite necorespunzătoare!" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Apăsați Enter pentru a continua." +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Eroare de sintaxă %s:%u: prea multe imbricări incluse" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Doriți să ștergeți eventualele fișiere .deb descărcate anterior?" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Eroare de sintaxă %s:%u: incluse de aici" -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "S-au produs unele erori în timpul despachetării. Se vor configura" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Eroare de sintaxă %s:%u: directivă nesuportată '%s'" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" +#: apt-pkg/contrib/configuration.cc:900 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"pachetele care au fost instalate. Aceasta ar putea rezulta erori duplicate" +"Eroare de sintaxă %s:%u: Directivele pot fi date doar la nivelul superior" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "sau erori cauzate de dependențe lipsă. Fiind normal, doar erorile de" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Eroare de sintaxă %s:%u: mizerii suplimentare la sfârșitul fișierului" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "" -"deasupra acestui mesaj sunt importante. Corectați-le și reporniți " -"[I]nstalarea" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "Abandonez instalarea." -#: dselect/update:30 -msgid "Merging available information" -msgstr "Se combină informațiile disponibile" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Opțiunea linie de comandă '%c' [din %s] este necunoscută." -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "S-a chemat DropNode pe un nod încă „legat”" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Opțiunea linie de comandă %s nu este înțeleasă" -# XXX: nu-mi place, fie e hash, fie „element de dispersie” -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Eșec la localizarea elementului de dispersie!" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Opțiunea linie de comandă %s nu este booleană" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Eșec la alocarea redirectării" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Opțiunea %s necesită un argument" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Eroare internă în „AddDiversion”" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "" +"Opțiunea %s: Specificația configurării articolului trebuie să aibă o =<val>." -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Încercare de suprascriere a redirectării, %s -> %s și %s/%s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Opțiunea %s necesită un argument integru, nu '%s'" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Adăugare dublă de redirectare %s -> %s" +msgid "Option '%s' is too long" +msgstr "Opțiunea '%s' este prea lungă" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Fișier „conf” duplicat %s/%s" +msgid "Sense %s is not understood, try true or false." +msgstr "Sensul %s nu este înțeles, încercați adevărat (true) sau fals (false)." -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The path %s is too long" -msgstr "Calea %s este prea lungă" +msgid "Invalid operation %s" +msgstr "Operațiune invalidă %s" -#: apt-inst/extract.cc:132 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unpacking %s more than once" -msgstr "Se despachetează %s de mai multe ori" +msgid "Installing %s" +msgstr "Se instalează %s" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The directory %s is diverted" -msgstr "Directorul %s este redirectat" +msgid "Configuring %s" +msgstr "Se configurează %s" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Pachetul încearcă să scrie în ținta redirectării %s/%s" +msgid "Removing %s" +msgstr "Se șterge %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Calea de redirectare este prea lungă" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "Șters complet %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to stat %s" -msgstr "Eșec la „stat” pentru %s" +msgid "Noting disappearance of %s" +msgstr "" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Eșec la redenumirea lui %s în %s" +msgid "Running post-installation trigger %s" +msgstr "Se rulează declanșatorul post-instalare %s" -#: apt-inst/extract.cc:249 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Directorul %s este înlocuit de un non-director" +msgid "Directory '%s' missing" +msgstr "Directorul „%s” lipsește." -# XXX: nu-mi place, hash bucket ar trebui tradus mai elegant -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Eșec la localizarea nodului în clasa lui din tabela de dispersie" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "Nu s-a putut deschide fișierul %s" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Calea este prea lungă" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Se pregătește %s" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Pachet suprascris fără nici o versiune pentru %s" +msgid "Unpacking %s" +msgstr "Se despachetează %s" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Fișierul %s/%s îl suprascrie pe cel din pachetul %s" +msgid "Preparing to configure %s" +msgstr "Se pregătește configurarea %s" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Unable to stat %s" -msgstr "Nu se poate executa „stat” pe %s" +msgid "Installed %s" +msgstr "Instalat %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to write file %s" -msgstr "Eșec la scrierea fișierului %s" +msgid "Preparing for removal of %s" +msgstr "Se pregătește ștergerea lui %s" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Failed to close file %s" -msgstr "Eșec la închiderea fișierului %s" +msgid "Removed %s" +msgstr "Șters %s" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Aceasta nu este o arhivă DEB validă, lipsește membrul „%s”" +msgid "Preparing to completely remove %s" +msgstr "Se pregătește ștergerea completă a %s" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Eroare internă, nu pot localiza membrul %s" +msgid "Completely removed %s" +msgstr "Șters complet %s" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Fișier de control neanalizabil" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Semnătură de arhivă necorespunzătoare" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Nu s-a putut scrie în %s" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Eroare la citirea antetului membrului arhivei" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:96 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Antet de membru de arhivă necorespunzător" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Antet de membru de arhivă necorespunzător" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arhiva este prea scurtă" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Eșec la citirea antetelor arhivei" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Eșec la crearea conexiunilor" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Eșec la executarea lui gzip " +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Arhivă deteriorată" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" msgstr "" -"Suma de control a arhivei tar nu s-a verificat, arhiva este deteriorată" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Tip antet TAR %u necunoscut, membrul %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Nu pot încuia directorul cu lista" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/ru.po b/po/ru.po index fa8bbdd7c..c43623c4d 100644 --- a/po/ru.po +++ b/po/ru.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: apt rev2227.1.3\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2012-06-30 08:47+0400\n" "Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n" "Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n" @@ -25,3273 +25,3274 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "Не поддерживается индексный файл типа «%s»" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "Невозможно прочитать %s" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Невозможно сменить текущий каталог на %s" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "Невозможно получить атрибуты %s." - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" - -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Запускается dpkg" - -#: apt-pkg/init.cc:146 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Система пакетирования «%s» не поддерживается" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Невозможно определить подходящий тип системы пакетирования" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Пакет %s версии %s имеет неудовлетворённую зависимость:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Сохранено %i записей.\n" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Всего имён пакетов: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Сохранено %i записей с %i отсутствующими файлами.\n" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Всего структур пакетов: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Сохранено %i записей с %i несовпадающими файлами\n" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Обычных пакетов: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"Сохранено %i записей с %i отсутствующими файлами и с %i несовпадающими " -"файлами\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Полностью виртуальных пакетов: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "Не удалось найти аутентификационную запись для: %s" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Одиночных виртуальных пакетов: " -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "Не совпадает хеш сумма для: %s" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Смешанных виртуальных пакетов: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Драйвер для метода %s не найден." +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Отсутствует: " -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Проверьте, установлен ли пакет «dpkg-dev».\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Всего уникальных версий: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Метод %s запустился не корректно" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Всего уникальных описаний: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Вставьте диск с меткой «%s» в устройство «%s» и нажмите ввод." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Всего зависимостей: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Списки пакетов или файл состояния не могут быть открыты или прочитаны." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Всего отношений Версия/Файл: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Вы можете запустить «apt-get update» для исправления этих ошибок" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Всего отношений Описание/Файл: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Не читается перечень источников." +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Всего отношений Provides: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Кэш пакетов пуст" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Всего развёрнутых строк: " -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Кэш пакетов повреждён" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Всего информации о зависимостях: " -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Не поддерживаемая версия кэша пакетов" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Пустого места в кэше: " -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Кэш пакетов повреждён, он слишком мал" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Полное учтённое пространство: " -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Эта версия APT не поддерживает систему версий «%s»" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Кэш пакетов был собран для другой архитектуры" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Зависит" +msgid "Package file %s is out of sync." +msgstr "Список пакетов %s рассинхронизирован." -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "ПредЗависит" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Не найдено ни одного пакета" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Предлагает" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Вы должны задать не менее одно шаблона поиска" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Рекомендует" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "Эта команда устарела. Используйте вместо неё «apt-mark showauto»." -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Конфликтует" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "Не удалось найти пакет %s" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Заменяет" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Списки пакетов:" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Замещает" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Кэш рассинхронизирован, невозможно обнаружить ссылку на список пакетов" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Ломает" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Зафиксированные пакеты:" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Улучшает" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(не найдено)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "важный" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Установлен: " -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "необходимый" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Кандидат: " -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "стандартный" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(отсутствует)" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "необязательный" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Фиксатор пакета: " -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "дополнительный" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Таблица версий:" -#: apt-pkg/pkgrecords.cc:38 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "Не поддерживается индексный файл типа «%s»" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s для %s скомпилирован %s %s\n" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Ошибка компиляции регулярного выражения — %s" +#: cmdline/apt-cache.cc:1749 +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Использование: apt-cache [параметры] команда\n" +" или: apt-cache [параметры] showpkg пакет1 [пакет2…]\n" +" или: apt-cache [параметры] showsrc пакет1 [пакет2…]\n" +"\n" +"apt-cache — низкоуровневый инструмент для поиска\n" +"информации в двоичных кэш-файлах APT\n" +"\n" +"Команды:\n" +" gencaches - построить кэш пакетов и кэш источников\n" +" showpkg - показать общую информацию о конкретном пакете\n" +" showsrc - показать записи об источниках\n" +" stats - показать общую статистику\n" +" dump - показать весь файл в сокращённой форме\n" +" dumpavail - выдать на stdout файл available\n" +" unmet - показать неудовлетворённые зависимости\n" +" search - найти пакеты, имя которых удовлетворяет регулярному выражению\n" +" show - показать информацию о пакете в удобочитаемой форме\n" +" depends - показать необработанную информацию о зависимостях пакета\n" +" rdepends - показать информацию об обратных зависимостях пакета\n" +" pkgnames - показать имена всех пакетов в системе\n" +" dotty - генерировать граф пакетов в формате GraphVis\n" +" xvcg - генерировать граф пакетов в формате xvcg\n" +" policy - показать текущую политику выбора пакетов\n" +"\n" +"Параметры:\n" +" -h Эта справка.\n" +" -p=? Кэш пакетов.\n" +" -s=? Кэш источников.\n" +" -q Не показывать индикатор хода выполнения.\n" +" -i Показывать только важные зависимости для команды unmet.\n" +" -c=? Читать указанный файл настройки.\n" +" -o=? Задать значение произвольной настройки, например, -o dir::cache=/tmp\n" +"Подробности в справочных страницах apt-cache(8) и apt.conf(5).\n" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Кэш имеет несовместимую систему версий" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Задайте имя для этого диска, например «Debian 5.0.3 Disk 1»" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Вставьте диск в устройство и нажмите ввод" + +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Произошла ошибка во время обработки %s (%s%d)" +msgid "Failed to mount '%s' to '%s'" +msgstr "Не удалось примонтировать «%s» к «%s»" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"Превышено допустимое количество имён пакетов, которое способен обработать " -"APT." -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "" -"Превышено допустимое количество версий, которое способен обработать APT." +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Повторите этот процесс для всех имеющихся CD." -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "" -"Превышено допустимое количество описаний, которое способен обработать APT." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Непарные аргументы" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -"Превышено допустимое количество зависимостей, которое способен обработать " -"APT." +"Использование: apt-config [параметры] команда\n" +"\n" +"apt-config — простой инструмент для чтения файла настройки APT\n" +"\n" +"Команды:\n" +" shell - режим shell\n" +" dump - показать настройки\n" +"\n" +"Параметры:\n" +" -h Этот текст.\n" +" -с=? Читать указанный файл настройки.\n" +" -o=? Задать значение произвольной настройке, например, -o dir::cache=/" +"tmp\n" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "Во время обработки файла зависимостей не найден пакет %s %s" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Не удалось найти пакет по регулярному выражению «%s»" -#: apt-pkg/pkgcachegen.cc:1211 +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Не удалось найти пакет по регулярному выражению «%s»" + +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Не удалось найти пакет по регулярному выражению «%s»" + +#: cmdline/apt-get.cc:367 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Не удалось получить атрибуты списка пакетов исходного кода %s" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Используется «%s» в качестве исходного пакета вместо «%s»\n" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Чтение списков пакетов" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Игнорируется недоступная версия «%s» пакета «%s»" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Сбор информации о Provides" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Не удалось найти пакет %s" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Unable to write to %s" -msgstr "Невозможно записать в %s" +msgid "%s set to manually installed.\n" +msgstr "%s установлен вручную.\n" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Ошибка ввода/вывода при попытке сохранить кэш источников" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s выбран для автоматической установки.\n" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "Отправка сценария решателю" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" +"Эта команда устарела. Используйте вместо неё «apt-mark auto» и «apt-mark " +"manual»." -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "Отправка запроса решателю" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Внутренняя ошибка, решатель проблем всё поломал" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "Подготовка к приёму решения" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Невозможно заблокировать каталог, куда складываются скачиваемые файлы" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "Внешний решатель завершился с ошибкой не передав сообщения об ошибке" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "" +"Укажите как минимум один пакет, исходный код которого необходимо получить" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "Запустить внешний решатель" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "Невозможно найти пакет с исходным кодом для %s" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:786 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "переименовать не удалось, %s (%s -> %s)." +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"ВНИМАНИЕ: упаковка «%s» поддерживается в системе контроля версий «%s»:\n" +"%s\n" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Хеш сумма не совпадает" +#: cmdline/apt-get.cc:791 +#, c-format +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"Используйте:\n" +"bzr branch %s\n" +"для получения последних (возможно не выпущенных) обновлений пакета.\n" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Не совпадает размер" +#: cmdline/apt-get.cc:843 +#, c-format +msgid "Skipping already downloaded file '%s'\n" +msgstr "Пропускаем уже скачанный файл «%s»\n" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Неверная операция %s" +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#, c-format +msgid "Couldn't determine free space in %s" +msgstr "Не удалось определить количество свободного места в %s" -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:882 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" -"Невозможно найти ожидаемый элемент «%s» в файле Release (некорректная запись " -"в sources.list или файл)" +msgid "You don't have enough free space in %s" +msgstr "Недостаточно места в %s" -#: apt-pkg/acquire-item.cc:1589 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Невозможно найти хеш-сумму «%s» в файле Release" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Необходимо получить %sб/%sб архивов исходного кода.\n" -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Недоступен открытый ключ для следующих ID ключей:\n" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 +#, c-format +msgid "Need to get %sB of source archives.\n" +msgstr "Необходимо получить %sб архивов исходного кода.\n" -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:902 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" -"Файл Release для %s просрочен (недостоверный начиная с %s). Обновление этого " -"репозитория производиться не будет." +msgid "Fetch source %s\n" +msgstr "Получение исходного кода %s\n" + +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Некоторые архивы не удалось получить." + +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Указан режим «только скачивание», и скачивание завершено" -#: apt-pkg/acquire-item.cc:1691 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Конфликт распространения: %s (ожидался %s, но получен %s)" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Пропускается распаковка уже распакованного исходного кода в %s\n" -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:963 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Произошла ошибка при проверке подписи. Репозиторий не обновлён и будут " -"использованы предыдущие индексные файлы. Ошибка GPG: %s: %s\n" +msgid "Unpack command '%s' failed.\n" +msgstr "Команда распаковки «%s» завершилась неудачно.\n" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:964 #, c-format -msgid "GPG error: %s: %s" -msgstr "Ошибка GPG: %s: %s" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Проверьте, установлен ли пакет «dpkg-dev».\n" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:992 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"Не удалось обнаружить файл пакета %s. Это может означать, что вам придётся " -"вручную исправить этот пакет (возможно, пропущен arch)" +msgid "Build command '%s' failed.\n" +msgstr "Команда сборки «%s» завершилась неудачно.\n" -#: apt-pkg/acquire-item.cc:1925 -#, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "Невозможно найти источник для загрузки «%2$s» версии «%1$s»" +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Порождённый процесс завершился неудачно" -#: apt-pkg/acquire-item.cc:1983 -#, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "Некорректный перечень пакетов. Нет поля Filename: для пакета %s." +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "" +"Для проверки зависимостей для сборки необходимо указать как минимум один " +"пакет" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:1055 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Блок поставщика %s не содержит отпечатка (fingerprint)" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" +"У %s отсутствует информация об архитектуре. Для её настройки смотрите apt." +"conf(5) APT::Architectures" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "List directory %spartial is missing." -msgstr "Каталог списка %spartial отсутствует." +msgid "Unable to get build-dependency information for %s" +msgstr "Невозможно получить информацию о зависимостях для сборки %s" -#: apt-pkg/acquire.cc:91 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Архивный каталог %spartial отсутствует." +msgid "%s has no build depends.\n" +msgstr "%s не имеет зависимостей для сборки.\n" -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:1272 #, c-format -msgid "Unable to lock directory %s" -msgstr "Невозможно заблокировать каталог %s" +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"Зависимость типа %s для %s не может быть удовлетворена, так как %s не " +"разрешён для пакетов «%s»" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:1290 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Скачивается файл %li из %li (осталось %s)" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"Зависимость типа %s для %s не может быть удовлетворена, так как пакет %s не " +"найден" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Скачивается файл %li из %li" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"Не удалось удовлетворить зависимость типа %s для пакета %s: Установленный " +"пакет %s новее, чем надо" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:1352 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Не удалось получить %s %s\n" - -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" -"Некоторые индексные файлы не скачались. Они были проигнорированы или вместо " -"них были использованы старые версии." - -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Вы должны заполнить sources.list, поместив туда URI источников пакетов" +"Зависимость типа %s для %s не может быть удовлетворена, так как версия-" +"кандидат пакета %s не может удовлетворить требованиям по версии" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1358 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -"Значение «%s» недопустимо для APT::Default-Release, так как выпуск " -"недоступен в источниках" +"Зависимость типа %s для %s не может быть удовлетворена, так как пакет %s не " +"имеет версии-кандидата" -#: apt-pkg/policy.cc:422 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Неверная запись в файле параметров %s: отсутствует заголовок Package" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Невозможно удовлетворить зависимость типа %s для пакета %s: %s" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Did not understand pin type %s" -msgstr "Неизвестный тип фиксации %s" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Зависимости для сборки %s не могут быть удовлетворены." -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Для фиксации не указан приоритет (или указан нулевой)" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Обработка зависимостей для сборки завершилась неудачно" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 #, c-format +msgid "Changelog for %s (%s)" +msgstr "Changelog для %s (%s)" + +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Поддерживаемые модули:" + +#: cmdline/apt-get.cc:1633 msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"Не удалось выполнить оперативную настройку «%s». Подробней, смотрите в man 5 " -"apt.conf о APT::Immediate-Configure. (%d)" +"Использование: apt-get [параметры] команда\n" +" apt-get [параметры] install|remove пакет1 [пакет2…]\n" +" apt-get [параметры] source пакет1 [пакет2…]\n" +"\n" +"apt-get — простая программа с интерфейсом командной строки\n" +"для скачивания и установки пакетов. Наиболее часто используемые\n" +"команды — update и install.\n" +"\n" +"Команды:\n" +" update - получить новые списки пакетов\n" +" upgrade - выполнить обновление\n" +" install - установить новые пакеты (на месте пакета указывается имя " +"пакета\n" +" (libc6, а не имя файла libc6.deb)\n" +" remove - удалить пакеты\n" +" autoremove - автоматически удалить все неиспользуемые пакеты\n" +" purge - удалить пакеты вместе с их файлами настройки\n" +" source - скачать архивы с исходным кодом\n" +" build-dep - настроить всё необходимое для сборки\n" +" пакета из исходного кода\n" +" dist-upgrade - обновить всю систему, подробнее в apt-get(8)\n" +" dselect-upgrade - руководствоваться выбором, сделанным в dselect\n" +" clean - удалить скачанные файлы архивов\n" +" autoclean - удалить старые скачанные файлы архивов\n" +" check - проверить наличие нарушенных зависимостей\n" +" changelog - скачать и показать файл изменений заданного пакета\n" +" download - скачать двоичный пакет в текущий каталог\n" +"\n" +"Параметры:\n" +" -h эта справка\n" +" -q показывать сообщения о работе, не выводить индикатор хода работы\n" +" -qq показывать только сообщения об ошибках\n" +" -d только скачать и НЕ устанавливать и не распаковывать архивы\n" +" -s не выполнять действия на самом деле, только имитация работы\n" +" -y отвечать «Да» на все вопросы, сами вопросы при этом не выводить\n" +" -f попытаться исправить систему, имеющую сломанные зависимости\n" +" -m попытаться продолжить, даже если архивы не найдены\n" +" -u показывать также список обновляемых пакетов\n" +" -b собрать пакет из исходного кода после его получения\n" +" -V показывать полные номера версий\n" +" -c=? читать указанный файл настройки\n" +" -o=? задать значение произвольному параметру настройки,\n" +" например, -o dir::cache=/tmp\n" +"В справочных страницах apt-get(8), sources.list(5) и apt.conf(5)\n" +"содержится подробная информация и описание параметров.\n" +" В APT есть коровья СУПЕРСИЛА.\n" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "Не удалось настроить «%s»." +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "" +"Укажите как минимум один пакет, исходный код которого необходимо получить" -#: apt-pkg/packagemanager.cc:583 -#, c-format +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" + +#: cmdline/apt-helper.cc:66 msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Вследствие возникновения циклических зависимостей типа Конфликтует/" -"ПредЗависит, для продолжения установки необходимо временно удалить " -"существенно важный пакет %s. Это может привести к фатальным последствиям. " -"Если вы действительно хотите продолжить, установите параметр APT::Force-" -"LoopBreak." -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Line %u too long in source list %s." -msgstr "Строка %u в списке источников %s слишком длинна." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Размонтирование CD-ROM…\n" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s не может быть помечен, так он не установлен.\n" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Использование %s в качестве точки монтирования CD-ROM\n" +msgid "%s was already set to manually installed.\n" +msgstr "%s уже помечен как установленный вручную.\n" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Ожидание операции работы с диском…\n" +#: cmdline/apt-mark.cc:76 +#, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s уже помечен как установленный автоматически.\n" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Монтирование CD-ROM…\n" +#: cmdline/apt-mark.cc:241 +#, c-format +msgid "%s was already set on hold.\n" +msgstr "%s уже помечен как зафиксированный.\n" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Идентификация... " +#: cmdline/apt-mark.cc:243 +#, c-format +msgid "%s was already not hold.\n" +msgstr "%s уже помечен как не зафиксированный.\n" -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Stored label: %s\n" -msgstr "Найдена метка: %s \n" +msgid "Waited for %s but it wasn't there" +msgstr "Ожидалось завершение процесса %s, но он не был запущен" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Поиск на диске индексных файлов...\n" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, c-format +msgid "%s set on hold.\n" +msgstr "%s помечен как зафиксированный.\n" -#: apt-pkg/cdrom.cc:734 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" +msgid "Canceled hold on %s.\n" +msgstr "Отмена фиксации для %s.\n" + +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -"Найдено индексов: %zu для пакетов, %zu для источников, %zu для переводов и " -"%zu для сигнатур\n" +"Выполнение dpkg завершилось с ошибкой. У вас есть права суперпользователя?" -#: apt-pkg/cdrom.cc:744 +#: cmdline/apt-mark.cc:392 +#, fuzzy msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -"Не удалось найти ни одного файла пакетов; возможно это не диск Debian или с " -"не той архитектурой?" - -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Найден ярлык «%s»\n" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Это неправильное имя, попробуйте ещё раз.\n" +"Использование: apt-mark [параметры] {auto|manual} пакет1 [пакет2…]\n" +"\n" +"apt-mark — простая программа с интерфейсом командной строки\n" +"для отметки пакетов, что они установлены вручную или автоматически.\n" +"Также может показывать списки помеченных пакетов.\n" +"\n" +"Команды:\n" +" auto - пометить указанные пакеты, как установленные автоматически\n" +" manual - пометить указанные пакеты, как установленные вручную\n" +"\n" +"Параметры:\n" +" -h эта справка\n" +" -q показывать сообщения о работе, не выводить индикатор хода работы\n" +" -qq показывать только сообщения об ошибках\n" +" -s не выполнять действия на самом деле, только имитация работы\n" +" -f читать/писать данные о пометках в заданный файл\n" +" -c=? читать указанный файл настройки\n" +" -o=? задать значение произвольному параметру настройки,\n" +" например, -o dir::cache=/tmp\n" +"В справочных страницах apt-mark(8) и apt.conf(5)\n" +"содержится подробная информация и описание параметров." -#: apt-pkg/cdrom.cc:817 -#, c-format +#: cmdline/apt.cc:47 msgid "" -"This disc is called: \n" -"'%s'\n" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -"Название диска: \n" -"«%s»\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Копирование списков пакетов…" - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Запись нового списка источников\n" - -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Записи в списке источников для этого диска:\n" -#: apt-pkg/algorithms.cc:265 +#: methods/cdrom.cc:203 #, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"Пакет %s нуждается в переустановке, но найти архив для него не удалось." +msgid "Unable to read the cdrom database %s" +msgstr "Невозможно прочесть базу %s с CD" -#: apt-pkg/algorithms.cc:1086 +#: methods/cdrom.cc:212 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" msgstr "" -"Ошибка, pkgProblemResolver::Resolve сгенерировал повреждённые пакеты. Это " -"может быть вызвано отложенными (held) пакетами." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Невозможно исправить ошибки, у вас отложены (held) битые пакеты." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Построение дерева зависимостей" +"Пожалуйста, используйте apt-cdrom, чтобы APT смог распознать данный CD. apt-" +"get update не используется для добавления нового CD" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Версии-кандидаты" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Ошибочный CD" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Генерирование зависимостей" +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Невозможно размонтировать CD-ROM в %s, возможно он ещё используется." -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Чтение информации о состоянии" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Диск не найден." -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Не удалось открыть StateFile %s" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Файл не найден" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Не удалось записать временный StateFile %s" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Не удалось получить атрибуты" -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Невозможно разобрать содержимое пакета %s (1)" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Не удалось установить время модификации" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Невозможно разобрать содержимое пакета %s (2)" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Неправильный URI, локальный URI не должен начинаться с //" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Выпуск «%s» для «%s» не найден" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Вход в систему" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Версия «%s» для «%s» не найдена" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Невозможно определить имя удалённого сервера" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "Не удалось найти пакет %s" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Невозможно определить локальное имя" -#: apt-pkg/cacheset.cc:603 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Couldn't find task '%s'" -msgstr "Не удалось найти задачу «%s»" +msgid "The server refused the connection and said: %s" +msgstr "Сервер разорвал соединение и сообщил: %s" -#: apt-pkg/cacheset.cc:609 +#: methods/ftp.cc:225 #, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Не удалось найти пакет по регулярному выражению «%s»" - -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Не удалось найти пакет по регулярному выражению «%s»" +msgid "USER failed, server said: %s" +msgstr "Команда USER не выполнена, сервер сообщил: %s" -#: apt-pkg/cacheset.cc:626 +#: methods/ftp.cc:232 #, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" -"Не удалось выбрать версии из пакета «%s», так как он полностью виртуальный" +msgid "PASS failed, server said: %s" +msgstr "Команда PASS не выполнена, сервер сообщил: %s" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format +#: methods/ftp.cc:252 msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" -"Не удалось выбрать ни установленную, ни версию кандидата из пакета «%s», так " -"как в нём нет ни той, ни другой" - -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -"Не удалось выбрать самую новую версию из пакета «%s», так как он полностью " -"виртуальный" +"Proxy-сервер указан, однако нет сценария входа в систему, Acquire::ftp::" +"ProxyLogin пуст." -#: apt-pkg/cacheset.cc:655 +#: methods/ftp.cc:280 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +msgid "Login script command '%s' failed, server said: %s" msgstr "" -"Не удалось выбрать самую версию кандидата из пакета %s, так как у него нет " -"кандидатов" +"Команда «%s» сценария входа в систему завершилась неудачно, сервер сообщил: " +"%s" -#: apt-pkg/cacheset.cc:663 +#: methods/ftp.cc:306 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" -"Не удалось выбрать установленную версию из пакета %s, так как он не " -"установлен" +msgid "TYPE failed, server said: %s" +msgstr "Команда TYPE не выполнена, сервер сообщил: %s" -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "Невозможно разобрать содержимое файла Release (%s)" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Допустимое время ожидания для соединения истекло" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "Отсутствуют разделы в файле Release (%s)" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Сервер прервал соединение" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Отсутствуют элементы Hash в файле Release (%s)" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Ошибка чтения" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Неправильный элемент «Valid-Until» в файле Release %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Ответ переполнил буфер." -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Неправильный элемент «Date» в файле Release %s" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Искажение протокола" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Искажённая строка %lu в списке источников %s (анализ URI)" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Ошибка записи" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Искажённая строка %lu в списке источников %s ([параметр] неразбираем)" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Не удалось создать сокет" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" msgstr "" -"Искажённая строка %lu в списке источников %s ([параметр] слишком короткий)" - -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Искажённая строка %lu в списке источников %s (([%s] не назначаем)" - -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Искажённая строка %lu в списке источников %s ([%s] не имеет ключа)" +"Не удалось присоединиться к сокету данных, время на установление соединения " +"истекло" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Искажённая строка %lu в списке источников %s (([%s] ключ %s не имеет " -"значения)" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Неудачно" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Искажённая строка %lu в списке источников %s (проблема в URI)" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Невозможно присоединить пассивный сокет" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "" -"Искажённая строка %lu в списке источников %s (проблема в имени дистрибутива)" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "Вызов getaddrinfo не смог получить сокет" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Искажённая строка %lu в списке источников %s (анализ URI)" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Невозможно присоединиться к сокету" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Искажённая строка %lu в списке источников %s (absolute dist)" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Не удалось принимать соединения на сокете" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Искажённая строка %lu в списке источников %s (dist parse)" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Не удалось определить имя сокета" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Открытие %s" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Невозможно послать команду PORT" -#: apt-pkg/sourcelist.cc:371 +#: methods/ftp.cc:802 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Искажённая строка %u в списке источников %s (тип)" +msgid "Unknown address family %u (AF_*)" +msgstr "Неизвестное семейство адресов %u (AF_*)" -#: apt-pkg/sourcelist.cc:375 +#: methods/ftp.cc:811 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Неизвестный тип «%s» в строке %u в списке источников %s" - -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Неизвестный тип «%s» в строке %u в списке источников %s" +msgid "EPRT failed, server said: %s" +msgstr "Команда EPRT не выполнена, сервер сообщил: %s" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Устанавливается %s" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Время установления соединения для сокета данных истекло" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Настраивается %s" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Невозможно принять соединение" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Удаляется %s" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Проблема при хешировании файла" -#: apt-pkg/deb/dpkgpm.cc:98 +#: methods/ftp.cc:890 #, c-format -msgid "Completely removing %s" -msgstr "Выполняется полное удаление %s" +msgid "Unable to fetch file, server said '%s'" +msgstr "Невозможно получить файл, сервер сообщил: «%s»" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "Уведомление об исчезновении %s" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Время ожидания соединения для сокета данных истекло" -#: apt-pkg/deb/dpkgpm.cc:100 +#: methods/ftp.cc:935 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Выполняется послеустановочный триггер %s" +msgid "Data transfer failed, server said '%s'" +msgstr "Передача данных завершилась неудачно, сервер сообщил: «%s»" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Отсутствует каталог «%s»" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Запрос" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "Не удалось открыть файл «%s»" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Невозможно вызвать " -#: apt-pkg/deb/dpkgpm.cc:989 +#: methods/connect.cc:76 #, c-format -msgid "Preparing %s" -msgstr "Подготавливается %s" +msgid "Connecting to %s (%s)" +msgstr "Соединение с %s (%s)" -#: apt-pkg/deb/dpkgpm.cc:990 +#: methods/connect.cc:87 #, c-format -msgid "Unpacking %s" -msgstr "Распаковывается %s" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/deb/dpkgpm.cc:995 +#: methods/connect.cc:94 #, c-format -msgid "Preparing to configure %s" -msgstr "Подготавливается для настройки %s" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Не удаётся создать сокет для %s (f=%u t=%u p=%u)" -#: apt-pkg/deb/dpkgpm.cc:997 +#: methods/connect.cc:100 #, c-format -msgid "Installed %s" -msgstr "Установлен %s" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Невозможно инициализировать соединение с %s:%s (%s)." -#: apt-pkg/deb/dpkgpm.cc:1002 +#: methods/connect.cc:108 #, c-format -msgid "Preparing for removal of %s" -msgstr "Подготавливается для удаления %s" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Не удаётся соединиться с %s:%s (%s), connection timed out" -#: apt-pkg/deb/dpkgpm.cc:1004 +#: methods/connect.cc:126 #, c-format -msgid "Removed %s" -msgstr "Удалён %s" +msgid "Could not connect to %s:%s (%s)." +msgstr "Не удаётся соединиться с %s:%s (%s)." -#: apt-pkg/deb/dpkgpm.cc:1009 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Подготовка к полному удалению %s" +msgid "Connecting to %s" +msgstr "Соединение с %s" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Completely removed %s" -msgstr "%s полностью удалён" +msgid "Could not resolve '%s'" +msgstr "Не удалось найти IP-адрес для «%s»" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: methods/connect.cc:205 +#, c-format +msgid "Temporary failure resolving '%s'" +msgstr "Временная ошибка при попытке получить IP-адрес «%s»" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#: methods/connect.cc:209 #, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Невозможно записать в %s" - -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +msgid "System error resolving '%s:%s'" +msgstr "Что-то странное произошло при определении «%s:%s» (%i - %s)" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: methods/connect.cc:211 +#, c-format +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Что-то странное произошло при определении «%s:%s» (%i - %s)" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/connect.cc:258 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Ожидалось завершение процесса %s, но он не был запущен" +msgid "Unable to connect to %s:%s:" +msgstr "Невозможно соединиться с %s: %s:" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "Действие прервано до его завершения" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "" +"Внутренняя ошибка: Правильная подпись, но не удалось определить отпечаток " +"ключа?!" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "Отчёты apport не записаны, так достигнут MaxReports" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Найдена как минимум одна неправильная подпись." -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "проблемы с зависимостями — оставляем ненастроенным" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "Не удалось выполнить «gpgv» для проверки подписи (gpgv установлена?)" -#: apt-pkg/deb/dpkgpm.cc:1638 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 +#, c-format msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"Отчёты apport не записаны, так как сообщение об ошибке указывает на " -"повторную ошибку от предыдущего отказа." -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Отчёты apport не записаны, так как получено сообщение об ошибке о нехватке " -"места на диске" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Неизвестная ошибка при выполнении gpgv" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Отчёты apport не записаны, так как получено сообщение об ошибке о нехватке " -"памяти" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Следующие подписи неверные:\n" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy +#: methods/gpgv.cc:231 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -"Отчёты apport не записаны, так как получено сообщение об ошибке о нехватке " -"места на диске" +"Следующие подписи не могут быть проверены, так как недоступен открытый " +"ключ:\n" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" -"Отчёты apport не записаны, так как получено сообщение об ошибке об ошибке " -"ввода-выводы dpkg" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Пустые файлы не могут быть допустимыми архивами" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"Не удалось выполнить блокировку управляющего каталога (%s); он уже " -"используется другим процессом?" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Ошибка записи в файл" -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "" -"Не удалось выполнить блокировку управляющего каталога (%s); у вас есть права " -"суперпользователя?" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Ошибка чтения, удалённый сервер прервал соединение" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" -"Работа dpkg прервана, вы должны вручную запустить «%s» для устранения " -"проблемы. " +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Ошибка чтения с сервера" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Не заблокирован" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Ошибка записи в файл" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%liд %liч %liмин %liс" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Ошибка в select" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%liч %liмин %liс" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Время ожидания для соединения истекло" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%liмин %liс" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Ошибка записи в выходной файл" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%liс" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Ожидание заголовков" -#: apt-pkg/contrib/strutl.cc:1243 -#, c-format -msgid "Selection %s not found" -msgstr "Не найдено: %s" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Неверный заголовок" -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "" -"Блокировка не используется, так как файл блокировки %s доступен только для " -"чтения" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Http-сервер послал неверный заголовок" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Не удалось открыть файл блокировки %s" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "Http сервер послал неверный заголовок Content-Length" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "" -"Блокировка не используется, так как файл блокировки %s находится на файловой " -"системе nfs" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "Http-сервер послал неверный заголовок Content-Range" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Не удалось получить доступ к файлу блокировки %s" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Этот HTTP-сервер не поддерживает скачивание фрагментов файлов" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "Список файлов не может быть создан, так как «%s» не является каталогом" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Неизвестный формат данных" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "Файл «%s» в каталоге «%s» игнорируется, так как это необычный файл" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Неверный заголовок данных" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "Файл «%s» в каталоге «%s» игнорируется, так как он не имеет расширения" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Соединение разорвано" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Внутренняя ошибка" + +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -"Файл «%s» в каталоге «%s» игнорируется, так как он не имеет неправильное " -"расширение" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" -"Нарушение защиты памяти (segmentation fault) в порождённом процессе %s." +"Внутренняя ошибка, InstallPackages была вызвана с неработоспособными " +"пакетами!" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "Порождённый процесс %s получил сигнал %u." +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Пакеты необходимо удалить, но удаление запрещено." -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Порождённый процесс %s вернул код ошибки (%u)" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Внутренняя ошибка, Ordering не завершилась" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "Странно. Несовпадение размеров, напишите на apt@packages.debian.org" + +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Порождённый процесс %s неожиданно завершился" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Необходимо скачать %sB/%sB архивов.\n" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Ошибка записи" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 +#, c-format +msgid "Need to get %sB of archives.\n" +msgstr "Необходимо скачать %sБ архивов.\n" -#: apt-pkg/contrib/fileutl.cc:913 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "Problem closing the gzip file %s" -msgstr "Проблема закрытия gzip-файла %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "" +"После данной операции, объём занятого дискового пространства возрастёт на " +"%sB.\n" -#: apt-pkg/contrib/fileutl.cc:1101 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "Could not open file %s" -msgstr "Не удалось открыть файл %s" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "" +"После данной операции, объём занятого дискового пространства уменьшится на " +"%sB.\n" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#: apt-private/private-install.cc:200 #, c-format -msgid "Could not open file descriptor %d" -msgstr "Не удалось открыть файловый дескриптор %d" +msgid "You don't have enough free space in %s." +msgstr "Недостаточно свободного места в %s." -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Не удалось создать IPC с порождённым процессом" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Существуют проблемы, а параметр -y указан без --force-yes" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Не удалось выполнить компрессор " +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "" +"Запрошено выполнение только тривиальных операций, но это не тривиальная " +"операция." -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Ошибка чтения" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Да, делать, как я скажу!" -#: apt-pkg/contrib/fileutl.cc:1514 +#: apt-private/private-install.cc:222 #, c-format -msgid "read, still have %llu to read but none left" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" -"ошибка при чтении; собирались прочесть ещё %llu байт, но ничего больше нет" +"То, что вы хотите сделать, может иметь нежелательные последствия.\n" +"Чтобы продолжить, введите фразу: «%s»\n" +" ?] " -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "ошибка при записи; собирались записать ещё %llu байт, но не смогли" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Аварийное завершение." -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Проблема закрытия файла %s" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Хотите продолжить?" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Проблема при переименовании файла %s в %s" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Некоторые файлы скачать не удалось" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "Проблема при удалении файла %s" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"Невозможно получить некоторые архивы, вероятно надо запустить apt-get update " +"или попытаться повторить запуск с ключом --fix-missing" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Проблема при синхронизации файла" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing и смена носителя в данный момент не поддерживаются" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s… Ошибка!" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Невозможно исправить ситуацию с пропущенными пакетами." -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s… Готово" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Аварийное завершение установки." -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "…" +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"Следующий пакет исчез из системы, так как все их файлы\n" +"теперь берутся из других пакетов:" +msgstr[1] "" +"Следующие пакеты исчез из системы, так как все их файлы\n" +"теперь берутся из других пакетов:" +msgstr[2] "" +"Следующие пакеты исчез из системы, так как все их файлы\n" +"теперь берутся из других пакетов:" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, c-format -msgid "%c%s... %u%%" -msgstr "%c%s… %u%%" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Замечание: это сделано автоматически и специально программой dpkg." -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Невозможно отобразить в память пустой файл" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Не предполагалось удалять stuff, невозможно запустить AutoRemover" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Не удалось сделать копию файлового дескриптора %i" +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" +"Хм, кажется, что AutoRemover был как-то удалён, чего не должно\n" +"было случиться. Пожалуйста, отправьте сообщение об ошибке в пакете apt." -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Невозможно отобразить в память %llu байт" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Следующая информация, возможно, поможет вам:" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Не удалось закрыть mmap" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Внутренняя ошибка, AutoRemover всё поломал" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Не удалось синхронизировать mmap" +#: apt-private/private-install.cc:513 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "Следующий пакет устанавливался автоматически и больше не требуется:" +msgstr[1] "" +"Следующие пакеты устанавливались автоматически и больше не требуются:" +msgstr[2] "" +"Следующие пакеты устанавливались автоматически и больше не требуются:" -#: apt-pkg/contrib/mmap.cc:290 +#: apt-private/private-install.cc:517 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Невозможно отобразить в память %lu байт" +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "%lu пакет был установлен автоматически и больше не требуется.\n" +msgstr[1] "%lu пакета было установлено автоматически и больше не требуется.\n" +msgstr[2] "%lu пакетов было установлены автоматически и больше не требуются.\n" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Не удалось обрезать файл" +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Для его удаления используйте «apt-get autoremove»." +msgstr[1] "Для их удаления используйте «apt-get autoremove»." +msgstr[2] "Для их удаления используйте «apt-get autoremove»." -#: apt-pkg/contrib/mmap.cc:341 -#, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -"Не хватает места для Dynamic MMap. Увеличьте значение APT::Cache-Start. " -"Текущее значение: %lu. (man 5 apt.conf)" +"Возможно, для исправления этих ошибок вы захотите воспользоваться «apt-get -" +"f install»:" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format +#: apt-private/private-install.cc:614 msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"Не удалось увеличить размер MMap, так как уже достигнут предел в %lu байт." +"Неудовлетворённые зависимости. Попытайтесь выполнить «apt-get -f install», " +"не указывая имени пакета, (или найдите другое решение)." -#: apt-pkg/contrib/mmap.cc:449 +#: apt-private/private-install.cc:638 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." msgstr "" -"Не удалось увеличить размер MMap, так как автоматическое увеличение " -"отключено пользователем." - -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Невозможно прочитать атрибуты точки монтирования %s" - -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Невозможно получить атрибуты cdrom" +"Некоторые пакеты невозможно установить. Возможно, вы просите невозможного,\n" +"или же используете нестабильную версию дистрибутива, где запрошенные вами\n" +"пакеты ещё не созданы или были удалены из Incoming." -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Неизвестная аббревиатура типа: «%c»" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Сломанные пакеты" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Открытие файла настройки %s" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Будут установлены следующие дополнительные пакеты:" -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Синтаксическая ошибка %s:%u: в начале блока нет имени." +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Предлагаемые пакеты:" -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Синтаксическая ошибка %s:%u: искажённый тег" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Рекомендуемые пакеты:" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-private/private-install.cc:825 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Синтаксическая ошибка %s:%u: лишние символы после значения" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Пропускается %s — пакет уже установлен и нет команды upgrade.\n" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-private/private-install.cc:829 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" -"Синтаксическая ошибка %s:%u: директивы могут задаваться только на верхнем " -"уровне" - -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Синтаксическая ошибка %s:%u: слишком много вложенных include" - -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Синтаксическая ошибка %s:%u вызвана include из этого места" - -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Синтаксическая ошибка %s:%u: не поддерживаемая директива «%s»" +"Пропускается %s — пакет не установлен, а запрошено только обновление.\n" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-private/private-install.cc:841 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Синтаксическая ошибка %s:%u: для директивы clear требуется третий параметр в " -"качестве аргумента" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Переустановка %s невозможна, он не скачивается.\n" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-private/private-install.cc:846 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Синтаксическая ошибка %s:%u: лишние символы в конце файла" +msgid "%s is already the newest version.\n" +msgstr "Уже установлена самая новая версия %s.\n" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-private/private-install.cc:894 #, c-format -msgid "No keyring installed in %s." -msgstr "Связка ключей в %s не установлена." +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Выбрана версия «%s» (%s) для «%s»\n" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-private/private-install.cc:899 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Неизвестный параметр командной строки «%c» [из %s]." +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Выбрана версия «%s» (%s) для «%s» из-за «%s»\n" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Command line option %s is not understood" -msgstr "Не распознанный параметр командной строки %s" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "" +"Пакет «%s» не установлен, поэтому не может быть удалён. Возможно имелся в " +"виду «%s»?\n" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-private/private-install.cc:947 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Параметр командной строки %s — не логический переключатель \"да/нет\"" +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Пакет «%s» не установлен, поэтому не может быть удалён\n" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "Для параметра %s требуется аргумент." +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-private/private-list.cc:164 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Значение параметра %s должно иметь вид =<val>." +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Для параметра %s требуется аргумент в виде целого числа, а не «%s»" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Исправление зависимостей…" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Параметр «%s» слишком длинный" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " не удалось." -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Смысл %s не ясен, используйте true или false." +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Невозможно скорректировать зависимости" -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "Неверная операция %s" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Невозможно минимизировать набор обновлений" -#: cmdline/apt-cache.cc:149 -#, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Пакет %s версии %s имеет неудовлетворённую зависимость:\n" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Готово" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Всего имён пакетов: " +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "" +"Возможно, для исправления этих ошибок вы захотите воспользоваться «apt-get -" +"f install»." -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Всего структур пакетов: " +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Неудовлетворённые зависимости. Попытайтесь использовать -f." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Обычных пакетов: " +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Полностью виртуальных пакетов: " +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Установлен]" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Одиночных виртуальных пакетов: " +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Установлен]" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Смешанных виртуальных пакетов: " +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Отсутствует: " +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Установлен]" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Всего уникальных версий: " +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Установлен]" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Всего уникальных описаний: " +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Всего зависимостей: " +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Всего отношений Версия/Файл: " +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "но %s уже установлен" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Всего отношений Описание/Файл: " +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "но %s будет установлен" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Всего отношений Provides: " +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "но он не может быть установлен" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Всего развёрнутых строк: " +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "но это виртуальный пакет" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Всего информации о зависимостях: " +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "но он не установлен" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Пустого места в кэше: " +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "но он не будет установлен" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Полное учтённое пространство: " +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " или" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Список пакетов %s рассинхронизирован." +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Пакеты, имеющие неудовлетворённые зависимости:" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Не найдено ни одного пакета" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "НОВЫЕ пакеты, которые будут установлены:" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Вы должны задать не менее одно шаблона поиска" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Пакеты, которые будут УДАЛЕНЫ:" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "Эта команда устарела. Используйте вместо неё «apt-mark showauto»." +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Пакеты, которые будут оставлены в неизменном виде:" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Списки пакетов:" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Пакеты, которые будут обновлены:" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Кэш рассинхронизирован, невозможно обнаружить ссылку на список пакетов" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Пакеты, будут заменены на более СТАРЫЕ версии:" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Зафиксированные пакеты:" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "" +"Пакеты, которые должны были бы остаться без изменений, но будут заменены:" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(не найдено)" +#: apt-private/private-output.cc:668 +#, c-format +msgid "%s (due to %s) " +msgstr "%s (вследствие %s) " -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Установлен: " +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"ВНИМАНИЕ: Эти существенно важные пакеты будут удалены.\n" +"НЕ ДЕЛАЙТЕ этого, если вы НЕ представляете себе все возможные последствия!" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Кандидат: " +#: apt-private/private-output.cc:707 +#, c-format +msgid "%lu upgraded, %lu newly installed, " +msgstr "обновлено %lu, установлено %lu новых пакетов, " -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(отсутствует)" +#: apt-private/private-output.cc:711 +#, c-format +msgid "%lu reinstalled, " +msgstr "переустановлено %lu переустановлено, " -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Фиксатор пакета: " +#: apt-private/private-output.cc:713 +#, c-format +msgid "%lu downgraded, " +msgstr "%lu пакетов заменены на старые версии, " -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Таблица версий:" +#: apt-private/private-output.cc:715 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "для удаления отмечено %lu пакетов, и %lu пакетов не обновлено.\n" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-private/private-output.cc:719 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s для %s скомпилирован %s %s\n" +msgid "%lu not fully installed or removed.\n" +msgstr "не установлено до конца или удалено %lu пакетов.\n" -#: cmdline/apt-cache.cc:1749 -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" -msgstr "" -"Использование: apt-cache [параметры] команда\n" -" или: apt-cache [параметры] showpkg пакет1 [пакет2…]\n" -" или: apt-cache [параметры] showsrc пакет1 [пакет2…]\n" -"\n" -"apt-cache — низкоуровневый инструмент для поиска\n" -"информации в двоичных кэш-файлах APT\n" -"\n" -"Команды:\n" -" gencaches - построить кэш пакетов и кэш источников\n" -" showpkg - показать общую информацию о конкретном пакете\n" -" showsrc - показать записи об источниках\n" -" stats - показать общую статистику\n" -" dump - показать весь файл в сокращённой форме\n" -" dumpavail - выдать на stdout файл available\n" -" unmet - показать неудовлетворённые зависимости\n" -" search - найти пакеты, имя которых удовлетворяет регулярному выражению\n" -" show - показать информацию о пакете в удобочитаемой форме\n" -" depends - показать необработанную информацию о зависимостях пакета\n" -" rdepends - показать информацию об обратных зависимостях пакета\n" -" pkgnames - показать имена всех пакетов в системе\n" -" dotty - генерировать граф пакетов в формате GraphVis\n" -" xvcg - генерировать граф пакетов в формате xvcg\n" -" policy - показать текущую политику выбора пакетов\n" -"\n" -"Параметры:\n" -" -h Эта справка.\n" -" -p=? Кэш пакетов.\n" -" -s=? Кэш источников.\n" -" -q Не показывать индикатор хода выполнения.\n" -" -i Показывать только важные зависимости для команды unmet.\n" -" -c=? Читать указанный файл настройки.\n" -" -o=? Задать значение произвольной настройки, например, -o dir::cache=/tmp\n" -"Подробности в справочных страницах apt-cache(8) и apt.conf(5).\n" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[Д/н]" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Задайте имя для этого диска, например «Debian 5.0.3 Disk 1»" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Вставьте диск в устройство и нажмите ввод" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "д" -#: cmdline/apt-cdrom.cc:139 +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "н" + +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Не удалось примонтировать «%s» к «%s»" +msgid "Regex compilation error - %s" +msgstr "Ошибка компиляции регулярного выражения — %s" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Команде update не нужны аргументы" + +#: apt-private/private-update.cc:90 +#, c-format +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Повторите этот процесс для всех имеющихся CD." +#: apt-private/private-show.cc:156 +#, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Непарные аргументы" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: cmdline/apt-config.cc:89 +#: apt-private/private-main.cc:32 msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -"Использование: apt-config [параметры] команда\n" -"\n" -"apt-config — простой инструмент для чтения файла настройки APT\n" -"\n" -"Команды:\n" -" shell - режим shell\n" -" dump - показать настройки\n" -"\n" -"Параметры:\n" -" -h Этот текст.\n" -" -с=? Читать указанный файл настройки.\n" -" -o=? Задать значение произвольной настройке, например, -o dir::cache=/" -"tmp\n" +"ЗАМЕЧАНИЕ: Производить только имитация работы!\n" +" Для реальной работы apt-get требуются права суперпользователя.\n" +" Учтите, что блокировка не используется,\n" +" поэтому нет полного соответствия с текущей реальной ситуацией!" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Не удалось найти пакет по регулярному выражению «%s»" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "ВНИМАНИЕ: Следующие пакеты невозможно аутентифицировать!" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Не удалось найти пакет по регулярному выражению «%s»" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Предупреждение об аутентификации не принято в внимание.\n" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Не удалось найти пакет по регулярному выражению «%s»" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Некоторые пакеты невозможно аутентифицировать" -#: cmdline/apt-get.cc:367 +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Установить эти пакеты без проверки?" + +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Используется «%s» в качестве исходного пакета вместо «%s»\n" +msgid "Failed to fetch %s %s\n" +msgstr "Не удалось получить %s %s\n" -#: cmdline/apt-get.cc:423 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Игнорируется недоступная версия «%s» пакета «%s»" +msgid "Failed to parse %s. Edit again? " +msgstr "Не удалось переименовать %s в %s" -#: cmdline/apt-get.cc:454 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Couldn't find package %s" -msgstr "Не удалось найти пакет %s" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s установлен вручную.\n" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s выбран для автоматической установки.\n" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Расчёт обновлений…" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"Эта команда устарела. Используйте вместо неё «apt-mark auto» и «apt-mark " -"manual»." +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Готово" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Внутренняя ошибка, решатель проблем всё поломал" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "В кэше " -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Невозможно заблокировать каталог, куда складываются скачиваемые файлы" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Получено:" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "" -"Укажите как минимум один пакет, исходный код которого необходимо получить" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Игн " + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Ош " -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Невозможно найти пакет с исходным кодом для %s" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Получено %sБ за %s (%sБ/c)\n" -#: cmdline/apt-get.cc:786 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" -"ВНИМАНИЕ: упаковка «%s» поддерживается в системе контроля версий «%s»:\n" -"%s\n" +msgid " [Working]" +msgstr " [Обработка]" -#: cmdline/apt-get.cc:791 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"Используйте:\n" -"bzr branch %s\n" -"для получения последних (возможно не выпущенных) обновлений пакета.\n" - -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Пропускаем уже скачанный файл «%s»\n" +"Смена носителя: вставьте диск с меткой\n" +" «%s»\n" +"в устройство «%s» и нажмите ввод\n" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Не удалось определить количество свободного места в %s" +msgid "Unable to read %s" +msgstr "Невозможно прочитать %s" -#: cmdline/apt-get.cc:882 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Недостаточно места в %s" +msgid "Unable to change to %s" +msgstr "Невозможно сменить текущий каталог на %s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Необходимо получить %sб/%sб архивов исходного кода.\n" +msgid "No mirror file '%s' found " +msgstr "Файл «%s» не найден на зеркале" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Необходимо получить %sб архивов исходного кода.\n" +msgid "Can not read mirror file '%s'" +msgstr "Невозможно прочитать файл на зеркале «%s»" -#: cmdline/apt-get.cc:902 +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Невозможно прочитать файл на зеркале «%s»" + +#: methods/mirror.cc:445 #, c-format -msgid "Fetch source %s\n" -msgstr "Получение исходного кода %s\n" +msgid "[Mirror: %s]" +msgstr "[Зеркало: %s]" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Некоторые архивы не удалось получить." +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Не удалось создать IPC-канал для порождённого процесса" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Указан режим «только скачивание», и скачивание завершено" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Соединение закрыто преждевременно" -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Пропускается распаковка уже распакованного исходного кода в %s\n" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Неправильное значение по умолчанию!" -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Команда распаковки «%s» завершилась неудачно.\n" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Для продолжения нажмите ввод." -#: cmdline/apt-get.cc:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Проверьте, установлен ли пакет «dpkg-dev».\n" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Удалить все ранее скачанные .deb файлы?" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "Команда сборки «%s» завершилась неудачно.\n" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Во время распаковки возникли ошибки. Пакеты, которые были установлены," -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Порождённый процесс завершился неудачно" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "будут настроены. Это может привести к повторению ошибок" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -"Для проверки зависимостей для сборки необходимо указать как минимум один " -"пакет" +"или возникновению новых из-за неудовлетворённых зависимостей. Это нормально, " +"важны" -#: cmdline/apt-get.cc:1054 -#, c-format +#: dselect/install:105 msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"У %s отсутствует информация об архитектуре. Для её настройки смотрите apt." -"conf(5) APT::Architectures" +"только ошибки, указанные в этом сообщении. Исправьте их и выполните " +"установку ещё раз" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Невозможно получить информацию о зависимостях для сборки %s" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Слияние доступной информации" -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s не имеет зависимостей для сборки.\n" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode вызван для узла, который ещё используется" + +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Не удалось найти элемент хеша!" + +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Не удалось создать diversion" + +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Внутренняя ошибка в AddDiversion" -#: cmdline/apt-get.cc:1271 +#: apt-inst/filelist.cc:477 #, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"Зависимость типа %s для %s не может быть удовлетворена, так как %s не " -"разрешён для пакетов «%s»" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Попытка изменения diversion, %s -> %s и %s/%s" -#: cmdline/apt-get.cc:1289 +#: apt-inst/filelist.cc:506 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" -"Зависимость типа %s для %s не может быть удовлетворена, так как пакет %s не " -"найден" +msgid "Double add of diversion %s -> %s" +msgstr "Двойное добавление diversion %s -> %s" -#: cmdline/apt-get.cc:1312 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"Не удалось удовлетворить зависимость типа %s для пакета %s: Установленный " -"пакет %s новее, чем надо" +msgid "Duplicate conf file %s/%s" +msgstr "Повторно указан файл настройки %s/%s" -#: cmdline/apt-get.cc:1351 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"Зависимость типа %s для %s не может быть удовлетворена, так как версия-" -"кандидат пакета %s не может удовлетворить требованиям по версии" +msgid "The path %s is too long" +msgstr "Слишком длинный путь %s" -#: cmdline/apt-get.cc:1357 +#: apt-inst/extract.cc:132 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "" -"Зависимость типа %s для %s не может быть удовлетворена, так как пакет %s не " -"имеет версии-кандидата" +msgid "Unpacking %s more than once" +msgstr "Повторная распаковка %s" -#: cmdline/apt-get.cc:1380 +#: apt-inst/extract.cc:142 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Невозможно удовлетворить зависимость типа %s для пакета %s: %s" +msgid "The directory %s is diverted" +msgstr "Каталог %s входит в список diverted" -#: cmdline/apt-get.cc:1395 +#: apt-inst/extract.cc:152 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Зависимости для сборки %s не могут быть удовлетворены." +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Пакет пытается писать в diversion %s/%s" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Обработка зависимостей для сборки завершилась неудачно" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Путь diversion слишком длинен" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Changelog для %s (%s)" - -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Поддерживаемые модули:" +msgid "Failed to stat %s" +msgstr "Не удалось получить атрибуты %s" -#: cmdline/apt-get.cc:1632 -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -msgstr "" -"Использование: apt-get [параметры] команда\n" -" apt-get [параметры] install|remove пакет1 [пакет2…]\n" -" apt-get [параметры] source пакет1 [пакет2…]\n" -"\n" -"apt-get — простая программа с интерфейсом командной строки\n" -"для скачивания и установки пакетов. Наиболее часто используемые\n" -"команды — update и install.\n" -"\n" -"Команды:\n" -" update - получить новые списки пакетов\n" -" upgrade - выполнить обновление\n" -" install - установить новые пакеты (на месте пакета указывается имя " -"пакета\n" -" (libc6, а не имя файла libc6.deb)\n" -" remove - удалить пакеты\n" -" autoremove - автоматически удалить все неиспользуемые пакеты\n" -" purge - удалить пакеты вместе с их файлами настройки\n" -" source - скачать архивы с исходным кодом\n" -" build-dep - настроить всё необходимое для сборки\n" -" пакета из исходного кода\n" -" dist-upgrade - обновить всю систему, подробнее в apt-get(8)\n" -" dselect-upgrade - руководствоваться выбором, сделанным в dselect\n" -" clean - удалить скачанные файлы архивов\n" -" autoclean - удалить старые скачанные файлы архивов\n" -" check - проверить наличие нарушенных зависимостей\n" -" changelog - скачать и показать файл изменений заданного пакета\n" -" download - скачать двоичный пакет в текущий каталог\n" -"\n" -"Параметры:\n" -" -h эта справка\n" -" -q показывать сообщения о работе, не выводить индикатор хода работы\n" -" -qq показывать только сообщения об ошибках\n" -" -d только скачать и НЕ устанавливать и не распаковывать архивы\n" -" -s не выполнять действия на самом деле, только имитация работы\n" -" -y отвечать «Да» на все вопросы, сами вопросы при этом не выводить\n" -" -f попытаться исправить систему, имеющую сломанные зависимости\n" -" -m попытаться продолжить, даже если архивы не найдены\n" -" -u показывать также список обновляемых пакетов\n" -" -b собрать пакет из исходного кода после его получения\n" -" -V показывать полные номера версий\n" -" -c=? читать указанный файл настройки\n" -" -o=? задать значение произвольному параметру настройки,\n" -" например, -o dir::cache=/tmp\n" -"В справочных страницах apt-get(8), sources.list(5) и apt.conf(5)\n" -"содержится подробная информация и описание параметров.\n" -" В APT есть коровья СУПЕРСИЛА.\n" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Не удалось переименовать %s в %s" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "" -"Укажите как минимум один пакет, исходный код которого необходимо получить" +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "Каталог %s был заменён не-каталогом" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Не удалось разместить узел в хеше" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Путь слишком длинен" -#: cmdline/apt-mark.cc:68 +#: apt-inst/extract.cc:421 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s не может быть помечен, так он не установлен.\n" +msgid "Overwrite package match with no version for %s" +msgstr "Файлы заменяются содержимым пакета %s без версии" -#: cmdline/apt-mark.cc:74 +#: apt-inst/extract.cc:438 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s уже помечен как установленный вручную.\n" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Файл %s/%s переписывает файл в пакете %s" -#: cmdline/apt-mark.cc:76 +#: apt-inst/extract.cc:498 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s уже помечен как установленный автоматически.\n" +msgid "Unable to stat %s" +msgstr "Невозможно получить атрибуты %s" -#: cmdline/apt-mark.cc:241 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s уже помечен как зафиксированный.\n" +msgid "Failed to write file %s" +msgstr "Не удалось записать в файл %s" -#: cmdline/apt-mark.cc:243 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s уже помечен как не зафиксированный.\n" +msgid "Failed to close file %s" +msgstr "Не удалось закрыть файл %s" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "%s set on hold.\n" -msgstr "%s помечен как зафиксированный.\n" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Это неправильный DEB-архив — отсутствует составная часть «%s»" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Отмена фиксации для %s.\n" +msgid "Internal error, could not locate member %s" +msgstr "Внутренняя ошибка, не удалось найти составную часть %s" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" -"Выполнение dpkg завершилось с ошибкой. У вас есть права суперпользователя?" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Не удалось прочесть содержимое control-файла" -#: cmdline/apt-mark.cc:392 -#, fuzzy -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" -"Использование: apt-mark [параметры] {auto|manual} пакет1 [пакет2…]\n" -"\n" -"apt-mark — простая программа с интерфейсом командной строки\n" -"для отметки пакетов, что они установлены вручную или автоматически.\n" -"Также может показывать списки помеченных пакетов.\n" -"\n" -"Команды:\n" -" auto - пометить указанные пакеты, как установленные автоматически\n" -" manual - пометить указанные пакеты, как установленные вручную\n" -"\n" -"Параметры:\n" -" -h эта справка\n" -" -q показывать сообщения о работе, не выводить индикатор хода работы\n" -" -qq показывать только сообщения об ошибках\n" -" -s не выполнять действия на самом деле, только имитация работы\n" -" -f читать/писать данные о пометках в заданный файл\n" -" -c=? читать указанный файл настройки\n" -" -o=? задать значение произвольному параметру настройки,\n" -" например, -o dir::cache=/tmp\n" -"В справочных страницах apt-mark(8) и apt.conf(5)\n" -"содержится подробная информация и описание параметров." +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Неверная сигнатура архива" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Ошибка чтения заголовка элемента архива" -#: methods/cdrom.cc:203 +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Невозможно прочесть базу %s с CD" +msgid "Invalid archive member header %s" +msgstr "Неправильный заголовок элемента архива %s" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"Пожалуйста, используйте apt-cdrom, чтобы APT смог распознать данный CD. apt-" -"get update не используется для добавления нового CD" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Неправильный заголовок элемента архива" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Ошибочный CD" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Слишком короткий архив" -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Невозможно размонтировать CD-ROM в %s, возможно он ещё используется." +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Не удалось прочитать заголовки архива" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Диск не найден." +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Не удалось создать каналы" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Файл не найден" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Не удалось выполнить gzip " -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Не удалось получить атрибуты" +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Повреждённый архив" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Не удалось установить время модификации" +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Неправильная контрольная сумма Tar, архив повреждён" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Неправильный URI, локальный URI не должен начинаться с //" +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Неизвестный заголовок в архиве TAR. Тип %u, элемент %s" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Вход в систему" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Невозможно определить имя удалённого сервера" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Запускается dpkg" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Невозможно определить локальное имя" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Система пакетирования «%s» не поддерживается" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Невозможно определить подходящий тип системы пакетирования" + +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Сервер разорвал соединение и сообщил: %s" +msgid "Wrote %i records.\n" +msgstr "Сохранено %i записей.\n" -#: methods/ftp.cc:225 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "USER failed, server said: %s" -msgstr "Команда USER не выполнена, сервер сообщил: %s" +msgid "Wrote %i records with %i missing files.\n" +msgstr "Сохранено %i записей с %i отсутствующими файлами.\n" -#: methods/ftp.cc:232 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "PASS failed, server said: %s" -msgstr "Команда PASS не выполнена, сервер сообщил: %s" +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Сохранено %i записей с %i несовпадающими файлами\n" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" -"Proxy-сервер указан, однако нет сценария входа в систему, Acquire::ftp::" -"ProxyLogin пуст." +"Сохранено %i записей с %i отсутствующими файлами и с %i несовпадающими " +"файлами\n" -#: methods/ftp.cc:280 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "" -"Команда «%s» сценария входа в систему завершилась неудачно, сервер сообщил: " -"%s" +msgid "Can't find authentication record for: %s" +msgstr "Не удалось найти аутентификационную запись для: %s" -#: methods/ftp.cc:306 +#: apt-pkg/indexcopy.cc:521 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "Команда TYPE не выполнена, сервер сообщил: %s" +msgid "Hash mismatch for: %s" +msgstr "Не совпадает хеш сумма для: %s" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Допустимое время ожидания для соединения истекло" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Списки пакетов или файл состояния не могут быть открыты или прочитаны." -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Сервер прервал соединение" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Вы можете запустить «apt-get update» для исправления этих ошибок" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Ответ переполнил буфер." +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Не читается перечень источников." -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Искажение протокола" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Кэш пакетов пуст" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Не удалось создать сокет" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Кэш пакетов повреждён" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "" -"Не удалось присоединиться к сокету данных, время на установление соединения " -"истекло" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Не поддерживаемая версия кэша пакетов" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Неудачно" +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "Кэш пакетов повреждён, он слишком мал" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Невозможно присоединить пассивный сокет" +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "Эта версия APT не поддерживает систему версий «%s»" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "Вызов getaddrinfo не смог получить сокет" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Кэш пакетов был собран для другой архитектуры" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Невозможно присоединиться к сокету" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Зависит" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Не удалось принимать соединения на сокете" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "ПредЗависит" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Не удалось определить имя сокета" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Предлагает" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Невозможно послать команду PORT" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Рекомендует" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Неизвестное семейство адресов %u (AF_*)" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Конфликтует" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "Команда EPRT не выполнена, сервер сообщил: %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Заменяет" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Время установления соединения для сокета данных истекло" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Замещает" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Невозможно принять соединение" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Ломает" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Проблема при хешировании файла" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Улучшает" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Невозможно получить файл, сервер сообщил: «%s»" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "важный" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Время ожидания соединения для сокета данных истекло" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "необходимый" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Передача данных завершилась неудачно, сервер сообщил: «%s»" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "стандартный" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Запрос" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "необязательный" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Невозможно вызвать " +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "дополнительный" -#: methods/connect.cc:76 +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Соединение с %s (%s)" +msgid "The method driver %s could not be found." +msgstr "Драйвер для метода %s не найден." -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Проверьте, установлен ли пакет «dpkg-dev».\n" -#: methods/connect.cc:94 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Не удаётся создать сокет для %s (f=%u t=%u p=%u)" +msgid "Method %s did not start correctly" +msgstr "Метод %s запустился не корректно" -#: methods/connect.cc:100 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Невозможно инициализировать соединение с %s:%s (%s)." +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Вставьте диск с меткой «%s» в устройство «%s» и нажмите ввод." -#: methods/connect.cc:108 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Не удаётся соединиться с %s:%s (%s), connection timed out" +msgid "Index file type '%s' is not supported" +msgstr "Не поддерживается индексный файл типа «%s»" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Не удаётся соединиться с %s:%s (%s)." +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Построение дерева зависимостей" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 -#, c-format -msgid "Connecting to %s" -msgstr "Соединение с %s" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Версии-кандидаты" -#: methods/connect.cc:180 methods/connect.cc:199 -#, c-format -msgid "Could not resolve '%s'" -msgstr "Не удалось найти IP-адрес для «%s»" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Генерирование зависимостей" -#: methods/connect.cc:205 -#, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Временная ошибка при попытке получить IP-адрес «%s»" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Чтение информации о состоянии" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Что-то странное произошло при определении «%s:%s» (%i - %s)" +#: apt-pkg/depcache.cc:250 +#, c-format +msgid "Failed to open StateFile %s" +msgstr "Не удалось открыть StateFile %s" -#: methods/connect.cc:211 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Что-то странное произошло при определении «%s:%s» (%i - %s)" +msgid "Failed to write temporary StateFile %s" +msgstr "Не удалось записать временный StateFile %s" -#: methods/connect.cc:258 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Невозможно соединиться с %s: %s:" +msgid "rename failed, %s (%s -> %s)." +msgstr "переименовать не удалось, %s (%s -> %s)." -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "" -"Внутренняя ошибка: Правильная подпись, но не удалось определить отпечаток " -"ключа?!" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Хеш сумма не совпадает" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Найдена как минимум одна неправильная подпись." +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Не совпадает размер" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "Не удалось выполнить «gpgv» для проверки подписи (gpgv установлена?)" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Неверная операция %s" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1573 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" +"Невозможно найти ожидаемый элемент «%s» в файле Release (некорректная запись " +"в sources.list или файл)" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Неизвестная ошибка при выполнении gpgv" +#: apt-pkg/acquire-item.cc:1589 +#, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Невозможно найти хеш-сумму «%s» в файле Release" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Следующие подписи неверные:\n" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Недоступен открытый ключ для следующих ID ключей:\n" -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1669 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -"Следующие подписи не могут быть проверены, так как недоступен открытый " -"ключ:\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Пустые файлы не могут быть допустимыми архивами" - -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Ошибка записи в файл" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Ошибка чтения, удалённый сервер прервал соединение" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Ошибка чтения с сервера" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Ошибка записи в файл" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Ошибка в select" - -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Время ожидания для соединения истекло" - -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Ошибка записи в выходной файл" +"Файл Release для %s просрочен (недостоверный начиная с %s). Обновление этого " +"репозитория производиться не будет." -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Ожидание заголовков" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Конфликт распространения: %s (ожидался %s, но получен %s)" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Неверный заголовок" +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"Произошла ошибка при проверке подписи. Репозиторий не обновлён и будут " +"использованы предыдущие индексные файлы. Ошибка GPG: %s: %s\n" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Http-сервер послал неверный заголовок" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "Ошибка GPG: %s: %s" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Http сервер послал неверный заголовок Content-Length" +#: apt-pkg/acquire-item.cc:1859 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"Не удалось обнаружить файл пакета %s. Это может означать, что вам придётся " +"вручную исправить этот пакет (возможно, пропущен arch)" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Http-сервер послал неверный заголовок Content-Range" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "Невозможно найти источник для загрузки «%2$s» версии «%1$s»" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Этот HTTP-сервер не поддерживает скачивание фрагментов файлов" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "Некорректный перечень пакетов. Нет поля Filename: для пакета %s." -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Неизвестный формат данных" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Не поддерживается индексный файл типа «%s»" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Неверный заголовок данных" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Невозможно получить атрибуты %s." -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Соединение разорвано" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Кэш имеет несовместимую систему версий" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Внутренняя ошибка" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Произошла ошибка во время обработки %s (%s%d)" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Расчёт обновлений…" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "" +"Превышено допустимое количество имён пакетов, которое способен обработать " +"APT." -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Готово" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "" +"Превышено допустимое количество версий, которое способен обработать APT." -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" +"Превышено допустимое количество описаний, которое способен обработать APT." -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" +"Превышено допустимое количество зависимостей, которое способен обработать " +"APT." -#: apt-private/private-list.cc:164 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Исправление зависимостей…" - -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " не удалось." - -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Невозможно скорректировать зависимости" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Во время обработки файла зависимостей не найден пакет %s %s" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Невозможно минимизировать набор обновлений" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Не удалось получить атрибуты списка пакетов исходного кода %s" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Готово" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Чтение списков пакетов" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "" -"Возможно, для исправления этих ошибок вы захотите воспользоваться «apt-get -" -"f install»." +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Сбор информации о Provides" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Неудовлетворённые зависимости. Попытайтесь использовать -f." +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Невозможно записать в %s" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Ошибка ввода/вывода при попытке сохранить кэш источников" -#: apt-private/private-output.cc:234 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Установлен]" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Блок поставщика %s не содержит отпечатка (fingerprint)" -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [Установлен]" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Каталог списка %spartial отсутствует." -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Архивный каталог %spartial отсутствует." -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Установлен]" +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "Невозможно заблокировать каталог %s" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Установлен]" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Скачивается файл %li из %li (осталось %s)" -#: apt-private/private-output.cc:249 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "[upgradable from: %s]" +msgid "Retrieving file %li of %li" +msgstr "Скачивается файл %li из %li" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" +"Некоторые индексные файлы не скачались. Они были проигнорированы или вместо " +"них были использованы старые версии." -#: apt-private/private-output.cc:253 -msgid "[residual-config]" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Вы должны заполнить sources.list, поместив туда URI источников пакетов" + +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" +"Значение «%s» недопустимо для APT::Default-Release, так как выпуск " +"недоступен в источниках" -#: apt-private/private-output.cc:435 +#: apt-pkg/policy.cc:422 #, c-format -msgid "but %s is installed" -msgstr "но %s уже установлен" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Неверная запись в файле параметров %s: отсутствует заголовок Package" -#: apt-private/private-output.cc:437 +#: apt-pkg/policy.cc:444 #, c-format -msgid "but %s is to be installed" -msgstr "но %s будет установлен" +msgid "Did not understand pin type %s" +msgstr "Неизвестный тип фиксации %s" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "но он не может быть установлен" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Для фиксации не указан приоритет (или указан нулевой)" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "но это виртуальный пакет" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" +"Не удалось выполнить оперативную настройку «%s». Подробней, смотрите в man 5 " +"apt.conf о APT::Immediate-Configure. (%d)" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "но он не установлен" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Не удалось настроить «%s»." -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "но он не будет установлен" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"Вследствие возникновения циклических зависимостей типа Конфликтует/" +"ПредЗависит, для продолжения установки необходимо временно удалить " +"существенно важный пакет %s. Это может привести к фатальным последствиям. " +"Если вы действительно хотите продолжить, установите параметр APT::Force-" +"LoopBreak." -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " или" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "Строка %u в списке источников %s слишком длинна." -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Пакеты, имеющие неудовлетворённые зависимости:" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Размонтирование CD-ROM…\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "НОВЫЕ пакеты, которые будут установлены:" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "Использование %s в качестве точки монтирования CD-ROM\n" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Пакеты, которые будут УДАЛЕНЫ:" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Ожидание операции работы с диском…\n" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Пакеты, которые будут оставлены в неизменном виде:" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Монтирование CD-ROM…\n" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Пакеты, которые будут обновлены:" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Идентификация... " -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Пакеты, будут заменены на более СТАРЫЕ версии:" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Найдена метка: %s \n" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "" -"Пакеты, которые должны были бы остаться без изменений, но будут заменены:" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Поиск на диске индексных файлов...\n" -#: apt-private/private-output.cc:668 +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "%s (due to %s) " -msgstr "%s (вследствие %s) " +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" +"Найдено индексов: %zu для пакетов, %zu для источников, %zu для переводов и " +"%zu для сигнатур\n" -#: apt-private/private-output.cc:676 +#: apt-pkg/cdrom.cc:744 msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"ВНИМАНИЕ: Эти существенно важные пакеты будут удалены.\n" -"НЕ ДЕЛАЙТЕ этого, если вы НЕ представляете себе все возможные последствия!" +"Не удалось найти ни одного файла пакетов; возможно это не диск Debian или с " +"не той архитектурой?" -#: apt-private/private-output.cc:707 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "обновлено %lu, установлено %lu новых пакетов, " +msgid "Found label '%s'\n" +msgstr "Найден ярлык «%s»\n" -#: apt-private/private-output.cc:711 -#, c-format -msgid "%lu reinstalled, " -msgstr "переустановлено %lu переустановлено, " +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Это неправильное имя, попробуйте ещё раз.\n" -#: apt-private/private-output.cc:713 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "%lu downgraded, " -msgstr "%lu пакетов заменены на старые версии, " +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Название диска: \n" +"«%s»\n" -#: apt-private/private-output.cc:715 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "для удаления отмечено %lu пакетов, и %lu пакетов не обновлено.\n" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Копирование списков пакетов…" -#: apt-private/private-output.cc:719 +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Запись нового списка источников\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Записи в списке источников для этого диска:\n" + +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "не установлено до конца или удалено %lu пакетов.\n" +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"Пакет %s нуждается в переустановке, но найти архив для него не удалось." + +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Ошибка, pkgProblemResolver::Resolve сгенерировал повреждённые пакеты. Это " +"может быть вызвано отложенными (held) пакетами." + +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Невозможно исправить ошибки, у вас отложены (held) битые пакеты." + +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Отправка сценария решателю" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[Д/н]" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Отправка запроса решателю" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Подготовка к приёму решения" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "д" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "Внешний решатель завершился с ошибкой не передав сообщения об ошибке" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "н" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Запустить внешний решатель" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Команде update не нужны аргументы" +#: apt-pkg/tagfile.cc:140 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Невозможно разобрать содержимое пакета %s (1)" -#: apt-private/private-update.cc:90 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "Unable to parse package file %s (2)" +msgstr "Невозможно разобрать содержимое пакета %s (2)" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Невозможно разобрать содержимое файла Release (%s)" -#: apt-private/private-show.cc:156 +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "No sections in Release file %s" +msgstr "Отсутствуют разделы в файле Release (%s)" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Отсутствуют элементы Hash в файле Release (%s)" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "" -"Внутренняя ошибка, InstallPackages была вызвана с неработоспособными " -"пакетами!" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Неправильный элемент «Valid-Until» в файле Release %s" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Пакеты необходимо удалить, но удаление запрещено." +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Неправильный элемент «Date» в файле Release %s" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Внутренняя ошибка, Ordering не завершилась" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Искажённая строка %lu в списке источников %s (анализ URI)" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "Странно. Несовпадение размеров, напишите на apt@packages.debian.org" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Искажённая строка %lu в списке источников %s ([параметр] неразбираем)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Необходимо скачать %sB/%sB архивов.\n" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "" +"Искажённая строка %lu в списке источников %s ([параметр] слишком короткий)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:184 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Необходимо скачать %sБ архивов.\n" +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Искажённая строка %lu в списке источников %s (([%s] не назначаем)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "" -"После данной операции, объём занятого дискового пространства возрастёт на " -"%sB.\n" +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Искажённая строка %lu в списке источников %s ([%s] не имеет ключа)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -"После данной операции, объём занятого дискового пространства уменьшится на " -"%sB.\n" +"Искажённая строка %lu в списке источников %s (([%s] ключ %s не имеет " +"значения)" -#: apt-private/private-install.cc:200 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Недостаточно свободного места в %s." - -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Существуют проблемы, а параметр -y указан без --force-yes" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Искажённая строка %lu в списке источников %s (проблема в URI)" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" msgstr "" -"Запрошено выполнение только тривиальных операций, но это не тривиальная " -"операция." +"Искажённая строка %lu в списке источников %s (проблема в имени дистрибутива)" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Да, делать, как я скажу!" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Искажённая строка %lu в списке источников %s (анализ URI)" -#: apt-private/private-install.cc:222 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"То, что вы хотите сделать, может иметь нежелательные последствия.\n" -"Чтобы продолжить, введите фразу: «%s»\n" -" ?] " +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Искажённая строка %lu в списке источников %s (absolute dist)" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Аварийное завершение." +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Искажённая строка %lu в списке источников %s (dist parse)" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Хотите продолжить?" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Открытие %s" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Некоторые файлы скачать не удалось" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Искажённая строка %u в списке источников %s (тип)" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Невозможно получить некоторые архивы, вероятно надо запустить apt-get update " -"или попытаться повторить запуск с ключом --fix-missing" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Неизвестный тип «%s» в строке %u в списке источников %s" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing и смена носителя в данный момент не поддерживаются" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Неизвестный тип «%s» в строке %u в списке источников %s" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Невозможно исправить ситуацию с пропущенными пакетами." +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Выпуск «%s» для «%s» не найден" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Аварийное завершение установки." +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Версия «%s» для «%s» не найдена" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -"Следующий пакет исчез из системы, так как все их файлы\n" -"теперь берутся из других пакетов:" -msgstr[1] "" -"Следующие пакеты исчез из системы, так как все их файлы\n" -"теперь берутся из других пакетов:" -msgstr[2] "" -"Следующие пакеты исчез из системы, так как все их файлы\n" -"теперь берутся из других пакетов:" +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Не удалось найти задачу «%s»" + +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Не удалось найти пакет по регулярному выражению «%s»" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Замечание: это сделано автоматически и специально программой dpkg." +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Не удалось найти пакет по регулярному выражению «%s»" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Не предполагалось удалять stuff, невозможно запустить AutoRemover" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" +"Не удалось выбрать версии из пакета «%s», так как он полностью виртуальный" -#: apt-private/private-install.cc:499 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Хм, кажется, что AutoRemover был как-то удалён, чего не должно\n" -"было случиться. Пожалуйста, отправьте сообщение об ошибке в пакете apt." +"Не удалось выбрать ни установленную, ни версию кандидата из пакета «%s», так " +"как в нём нет ни той, ни другой" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "Следующая информация, возможно, поможет вам:" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"Не удалось выбрать самую новую версию из пакета «%s», так как он полностью " +"виртуальный" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Внутренняя ошибка, AutoRemover всё поломал" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" +"Не удалось выбрать самую версию кандидата из пакета %s, так как у него нет " +"кандидатов" -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "Следующий пакет устанавливался автоматически и больше не требуется:" -msgstr[1] "" -"Следующие пакеты устанавливались автоматически и больше не требуются:" -msgstr[2] "" -"Следующие пакеты устанавливались автоматически и больше не требуются:" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"Не удалось выбрать установленную версию из пакета %s, так как он не " +"установлен" -#: apt-private/private-install.cc:517 +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "%lu пакет был установлен автоматически и больше не требуется.\n" -msgstr[1] "%lu пакета было установлено автоматически и больше не требуется.\n" -msgstr[2] "%lu пакетов было установлены автоматически и больше не требуются.\n" +msgid "%lid %lih %limin %lis" +msgstr "%liд %liч %liмин %liс" -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Для его удаления используйте «apt-get autoremove»." -msgstr[1] "Для их удаления используйте «apt-get autoremove»." -msgstr[2] "Для их удаления используйте «apt-get autoremove»." +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%liч %liмин %liс" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "" -"Возможно, для исправления этих ошибок вы захотите воспользоваться «apt-get -" -"f install»:" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%liмин %liс" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%liс" + +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "Не найдено: %s" + +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" msgstr "" -"Неудовлетворённые зависимости. Попытайтесь выполнить «apt-get -f install», " -"не указывая имени пакета, (или найдите другое решение)." +"Блокировка не используется, так как файл блокировки %s доступен только для " +"чтения" -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Не удалось открыть файл блокировки %s" + +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" msgstr "" -"Некоторые пакеты невозможно установить. Возможно, вы просите невозможного,\n" -"или же используете нестабильную версию дистрибутива, где запрошенные вами\n" -"пакеты ещё не созданы или были удалены из Incoming." +"Блокировка не используется, так как файл блокировки %s находится на файловой " +"системе nfs" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Сломанные пакеты" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Не удалось получить доступ к файлу блокировки %s" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Будут установлены следующие дополнительные пакеты:" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "Список файлов не может быть создан, так как «%s» не является каталогом" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Предлагаемые пакеты:" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "Файл «%s» в каталоге «%s» игнорируется, так как это необычный файл" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Рекомендуемые пакеты:" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "Файл «%s» в каталоге «%s» игнорируется, так как он не имеет расширения" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:421 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Пропускается %s — пакет уже установлен и нет команды upgrade.\n" +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" +"Файл «%s» в каталоге «%s» игнорируется, так как он не имеет неправильное " +"расширение" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgid "Sub-process %s received a segmentation fault." msgstr "" -"Пропускается %s — пакет не установлен, а запрошено только обновление.\n" +"Нарушение защиты памяти (segmentation fault) в порождённом процессе %s." -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:826 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Переустановка %s невозможна, он не скачивается.\n" +msgid "Sub-process %s received signal %u." +msgstr "Порождённый процесс %s получил сигнал %u." -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "%s is already the newest version.\n" -msgstr "Уже установлена самая новая версия %s.\n" +msgid "Sub-process %s returned an error code (%u)" +msgstr "Порождённый процесс %s вернул код ошибки (%u)" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Выбрана версия «%s» (%s) для «%s»\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "Порождённый процесс %s неожиданно завершился" -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Выбрана версия «%s» (%s) для «%s» из-за «%s»\n" +msgid "Problem closing the gzip file %s" +msgstr "Проблема закрытия gzip-файла %s" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" -"Пакет «%s» не установлен, поэтому не может быть удалён. Возможно имелся в " -"виду «%s»?\n" +msgid "Could not open file %s" +msgstr "Не удалось открыть файл %s" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Пакет «%s» не установлен, поэтому не может быть удалён\n" +msgid "Could not open file descriptor %d" +msgstr "Не удалось открыть файловый дескриптор %d" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Не удалось создать IPC с порождённым процессом" + +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Не удалось выполнить компрессор " + +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" msgstr "" -"ЗАМЕЧАНИЕ: Производить только имитация работы!\n" -" Для реальной работы apt-get требуются права суперпользователя.\n" -" Учтите, что блокировка не используется,\n" -" поэтому нет полного соответствия с текущей реальной ситуацией!" +"ошибка при чтении; собирались прочесть ещё %llu байт, но ничего больше нет" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ВНИМАНИЕ: Следующие пакеты невозможно аутентифицировать!" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "ошибка при записи; собирались записать ещё %llu байт, но не смогли" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Предупреждение об аутентификации не принято в внимание.\n" +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Проблема закрытия файла %s" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Некоторые пакеты невозможно аутентифицировать" +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Проблема при переименовании файла %s в %s" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Установить эти пакеты без проверки?" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Проблема при удалении файла %s" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Не удалось переименовать %s в %s" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Проблема при синхронизации файла" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%c%s... Error!" +msgstr "%c%s… Ошибка!" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s… Готово" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "В кэше " +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "…" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Получено:" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, c-format +msgid "%c%s... %u%%" +msgstr "%c%s… %u%%" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Игн " +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Невозможно отобразить в память пустой файл" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Ош " +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Не удалось сделать копию файлового дескриптора %i" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:119 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Получено %sБ за %s (%sБ/c)\n" +msgid "Couldn't make mmap of %llu bytes" +msgstr "Невозможно отобразить в память %llu байт" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Не удалось закрыть mmap" + +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Не удалось синхронизировать mmap" + +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid " [Working]" -msgstr " [Обработка]" +msgid "Couldn't make mmap of %lu bytes" +msgstr "Невозможно отобразить в память %lu байт" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Не удалось обрезать файл" + +#: apt-pkg/contrib/mmap.cc:341 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -"Смена носителя: вставьте диск с меткой\n" -" «%s»\n" -"в устройство «%s» и нажмите ввод\n" +"Не хватает места для Dynamic MMap. Увеличьте значение APT::Cache-Start. " +"Текущее значение: %lu. (man 5 apt.conf)" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "No mirror file '%s' found " -msgstr "Файл «%s» не найден на зеркале" +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" +"Не удалось увеличить размер MMap, так как уже достигнут предел в %lu байт." -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"Не удалось увеличить размер MMap, так как автоматическое увеличение " +"отключено пользователем." + +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Невозможно прочитать файл на зеркале «%s»" +msgid "Unable to stat the mount point %s" +msgstr "Невозможно прочитать атрибуты точки монтирования %s" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Невозможно прочитать файл на зеркале «%s»" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Невозможно получить атрибуты cdrom" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "[Mirror: %s]" -msgstr "[Зеркало: %s]" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Неизвестная аббревиатура типа: «%c»" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Не удалось создать IPC-канал для порождённого процесса" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Открытие файла настройки %s" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Соединение закрыто преждевременно" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Синтаксическая ошибка %s:%u: в начале блока нет имени." -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Неправильное значение по умолчанию!" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Синтаксическая ошибка %s:%u: искажённый тег" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Для продолжения нажмите ввод." +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Синтаксическая ошибка %s:%u: лишние символы после значения" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Удалить все ранее скачанные .deb файлы?" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "" +"Синтаксическая ошибка %s:%u: директивы могут задаваться только на верхнем " +"уровне" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Во время распаковки возникли ошибки. Пакеты, которые были установлены," +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Синтаксическая ошибка %s:%u: слишком много вложенных include" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "будут настроены. Это может привести к повторению ошибок" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Синтаксическая ошибка %s:%u вызвана include из этого места" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"или возникновению новых из-за неудовлетворённых зависимостей. Это нормально, " -"важны" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Синтаксическая ошибка %s:%u: не поддерживаемая директива «%s»" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"только ошибки, указанные в этом сообщении. Исправьте их и выполните " -"установку ещё раз" +"Синтаксическая ошибка %s:%u: для директивы clear требуется третий параметр в " +"качестве аргумента" -#: dselect/update:30 -msgid "Merging available information" -msgstr "Слияние доступной информации" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Синтаксическая ошибка %s:%u: лишние символы в конце файла" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode вызван для узла, который ещё используется" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "Связка ключей в %s не установлена." -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Не удалось найти элемент хеша!" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Неизвестный параметр командной строки «%c» [из %s]." -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Не удалось создать diversion" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Не распознанный параметр командной строки %s" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Внутренняя ошибка в AddDiversion" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Параметр командной строки %s — не логический переключатель \"да/нет\"" + +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Для параметра %s требуется аргумент." -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Попытка изменения diversion, %s -> %s и %s/%s" +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Значение параметра %s должно иметь вид =<val>." -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Двойное добавление diversion %s -> %s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Для параметра %s требуется аргумент в виде целого числа, а не «%s»" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Повторно указан файл настройки %s/%s" +msgid "Option '%s' is too long" +msgstr "Параметр «%s» слишком длинный" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "The path %s is too long" -msgstr "Слишком длинный путь %s" +msgid "Sense %s is not understood, try true or false." +msgstr "Смысл %s не ясен, используйте true или false." -#: apt-inst/extract.cc:132 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "Unpacking %s more than once" -msgstr "Повторная распаковка %s" +msgid "Invalid operation %s" +msgstr "Неверная операция %s" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "The directory %s is diverted" -msgstr "Каталог %s входит в список diverted" +msgid "Installing %s" +msgstr "Устанавливается %s" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Пакет пытается писать в diversion %s/%s" +msgid "Configuring %s" +msgstr "Настраивается %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Путь diversion слишком длинен" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Удаляется %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "Failed to stat %s" -msgstr "Не удалось получить атрибуты %s" +msgid "Completely removing %s" +msgstr "Выполняется полное удаление %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Не удалось переименовать %s в %s" +msgid "Noting disappearance of %s" +msgstr "Уведомление об исчезновении %s" -#: apt-inst/extract.cc:249 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Каталог %s был заменён не-каталогом" +msgid "Running post-installation trigger %s" +msgstr "Выполняется послеустановочный триггер %s" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Не удалось разместить узел в хеше" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Отсутствует каталог «%s»" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Путь слишком длинен" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Не удалось открыть файл «%s»" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Файлы заменяются содержимым пакета %s без версии" +msgid "Preparing %s" +msgstr "Подготавливается %s" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Файл %s/%s переписывает файл в пакете %s" +msgid "Unpacking %s" +msgstr "Распаковывается %s" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Unable to stat %s" -msgstr "Невозможно получить атрибуты %s" +msgid "Preparing to configure %s" +msgstr "Подготавливается для настройки %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Failed to write file %s" -msgstr "Не удалось записать в файл %s" +msgid "Installed %s" +msgstr "Установлен %s" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to close file %s" -msgstr "Не удалось закрыть файл %s" +msgid "Preparing for removal of %s" +msgstr "Подготавливается для удаления %s" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Это неправильный DEB-архив — отсутствует составная часть «%s»" +msgid "Removed %s" +msgstr "Удалён %s" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Внутренняя ошибка, не удалось найти составную часть %s" +msgid "Preparing to completely remove %s" +msgstr "Подготовка к полному удалению %s" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Не удалось прочесть содержимое control-файла" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "%s полностью удалён" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Неверная сигнатура архива" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Ошибка чтения заголовка элемента архива" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Невозможно записать в %s" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Неправильный заголовок элемента архива %s" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Неправильный заголовок элемента архива" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Слишком короткий архив" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "Действие прервано до его завершения" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Не удалось прочитать заголовки архива" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "Отчёты apport не записаны, так достигнут MaxReports" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Не удалось создать каналы" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "проблемы с зависимостями — оставляем ненастроенным" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Не удалось выполнить gzip " +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Отчёты apport не записаны, так как сообщение об ошибке указывает на " +"повторную ошибку от предыдущего отказа." -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Повреждённый архив" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Отчёты apport не записаны, так как получено сообщение об ошибке о нехватке " +"места на диске" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Неправильная контрольная сумма Tar, архив повреждён" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Отчёты apport не записаны, так как получено сообщение об ошибке о нехватке " +"памяти" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Отчёты apport не записаны, так как получено сообщение об ошибке о нехватке " +"места на диске" + +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Отчёты apport не записаны, так как получено сообщение об ошибке об ошибке " +"ввода-выводы dpkg" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Неизвестный заголовок в архиве TAR. Тип %u, элемент %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Не удалось выполнить блокировку управляющего каталога (%s); он уже " +"используется другим процессом?" + +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "" +"Не удалось выполнить блокировку управляющего каталога (%s); у вас есть права " +"суперпользователя?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"Работа dpkg прервана, вы должны вручную запустить «%s» для устранения " +"проблемы. " + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Не заблокирован" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/sk.po b/po/sk.po index 5595bb83c..dee7d589a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2012-06-28 20:49+0100\n" "Last-Translator: Ivan Masár <helix84@centrum.sk>\n" "Language-Team: Slovak <sk-i18n@lists.linux.sk>\n" @@ -20,3220 +20,3221 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "Indexový súbor typu „%s“ nie je podporovaný" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "Nedá sa načítať %s" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Nedá sa prejsť do %s" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "Nie je možné vykonať stat %s." - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" - -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Spúšťa sa dpkg" - -#: apt-pkg/init.cc:146 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Systém balíkov „%s“ nie je podporovaný" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Nedá sa určiť vhodný typ systému balíkov" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Balík %s verzie %s má nesplnené závislosti:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Zapísaných %i záznamov.\n" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Celkom názvov balíkov: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Zapísaných %i záznamov s %i chýbajúcimi súbormi.\n" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Celkom štruktúr balíkov: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Zapísaných %i záznamov s %i chybnými súbormi\n" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Normálnych balíkov: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "Zapísaných %i záznamov s %i chýbajúcimi a %i chybnými súbormi\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Čisto virtuálnych balíkov: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "Nebolo možné nájsť autentifikačný záznam pre: %s" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Jednoduchých virtuálnych balíkov: " -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "Nezhoda kontrolných haš súčtov: %s" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Zmiešaných virtuálnych balíkov: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Nedá sa nájsť ovládač spôsobu %s." +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Chýbajúcich: " -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Skontrolujte, či je nainštalovaný balík „dpkg-dev“.\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Celkom rôznych verzií: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Spôsob %s nebol správne spustený" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Celkom rôznych popisov: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Vložte disk nazvaný „%s“ do mechaniky „%s“ a stlačte Enter." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Celkom závislostí: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Zoznamy balíkov alebo stavový súbor sa nedajú spracovať alebo otvoriť." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Celkom vzťahov ver/súbor: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Na opravu týchto problémov môžete skúsiť spustiť apt-get update" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Celkom vzťahov popis/súbor: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Nedá sa načítať zoznam zdrojov." +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Celkom poskytnutých mapovaní: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Vyrovnávacia pamäť balíkov je prázdna" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Celkom globovaných reťazcov: " -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Súbor vyrovnávacej pamäti balíkov je poškodený" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Celkom miesta závislých verzií: " -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Súbor vyrovnávacej pamäti balíkov je nezlučiteľnej verzie" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Celkom jalového miesta: " -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Súbor vyrovnávacej pamäti balíkov je poškodený, je príliš malý" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Celkom priradeného miesta: " -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Tento APT nepodporuje systém na správu verzií „%s“" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Súbor vyrovnávacej pamäti balíkov bol vytvorený pre inú architektúru" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Závisí na" +msgid "Package file %s is out of sync." +msgstr "Súbor balíkov %s je neaktuálny." -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Predzávisí na" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Neboli nájdené žiadne balíky" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Navrhuje" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Musíte zadať aspoň jeden vyhľadávací vzor" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Odporúča" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" +"Tento príkaz je zavrhovaný. Prosím, použite namiesto neho „apt-mark " +"showauto“." -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Koliduje s" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "Nedá sa nájsť balík %s" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Nahrádza" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Súbory balíka:" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Zneplatňuje" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Vyrovnávacia pamäť je neaktuálna, nedá sa odvolať na súbor balíka" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Kazí" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Pripevnené balíky:" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Rozširuje" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(nenájdené)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "dôležitý" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Nainštalovaná verzia: " -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "požadovaný" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Kandidát: " -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "štandardný" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(žiadna)" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "voliteľný" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Pripevnený balík:" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Tabuľka verzií:" -#: apt-pkg/pkgrecords.cc:38 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "Indexový súbor typu „%s“ nie je podporovaný" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s pre %s skompilovaný %s %s\n" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Chyba pri preklade regulárneho výrazu - %s" +#: cmdline/apt-cache.cc:1749 +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Použitie: apt-cache [voľby] príkaz\n" +" apt-cache [voľby] showpkg balík1 [balík2 ...]\n" +" apt-cache [voľby] showsrc balík1 [balík2 ...]\n" +"\n" +"apt-cache je nízkoúrovňový nástroj na zisťovanie informácií\n" +"z binárnych súborov vyrovnávacej pamäti APT\n" +"\n" +"Príkazy:\n" +" gencaches - Zostaví vyrovnávaciu pamäť balíkov a zdrojov\n" +" showpkg - Zobrazí všeobecné údaje o balíku\n" +" showsrc - Zobrazí zdrojové záznamy\n" +" stats - Zobrazí základné štatistiky\n" +" dump - Zobrazí celý súbor v zhustenej podobe\n" +" dumpavail - Vypíše súbor dostupných balíkov na štandardný výstup\n" +" unmet - Zobrazí nesplnené závislosti\n" +" search - Prehľadá zoznam balíkov podľa regulárneho výrazu\n" +" show - Zobrazí prehľadné informácie o balíku\n" +" depends - Zobrazí základné údaje o závislostiach balíka\n" +" rdepends - Zobrazí údaje o spätných závislostiach balíka\n" +" pkgnames - Vypíše zoznam názvov všetkých balíkov v systéme\n" +" dotty - Vytvorí diagramy balíka pre GraphViz\n" +" xvcg - Vytvorí diagramy balíka pre xvcg\n" +" policy - Zobrazí nastavenia zásad\n" +"\n" +"Voľby:\n" +" -h Tento pomocník.\n" +" -p=? Vyrovnávacia pamäť balíkov.\n" +" -s=? Vyrovnávacia pamäť zdrojov.\n" +" -q Nezobrazí indikátor priebehu.\n" +" -i Pri príkaze unmet zobrazí iba dôležité závislosti.\n" +" -c=? Načíta tento konfiguračný súbor\n" +" -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n" +"Ďalšie informácie nájdete v manuálových stránkach apt-cache(8)\n" +"a apt.conf(5).\n" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Vyrovnávacia pamäť má nezlučiteľný systém na správu verzií" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Prosím, zadajte názov tohto disku, napríklad „Debian 5.0.3 Disk 1“" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Vložte disk do mechaniky a stlačte Enter" + +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Vyskytla sa chyba pri spracovávaní %s (%s%d)" +msgid "Failed to mount '%s' to '%s'" +msgstr "Pripojenie „%s“ na „%s“ zlyhalo" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -"Fíha, prekročili ste počet názvov balíkov, ktoré toto APT zvládne spracovať." -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Fíha, prekročili ste počet verzií, ktoré toto APT zvládne spracovať." +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Zopakujte tento postup pre všetky CD v sade diskov." -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Fíha, prekročili ste počet popisov, ktoré toto APT zvládne spracovať." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumenty nie sú vo dvojiciach" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -"Fíha, prekročili ste počet závislostí, ktoré toto APT zvládne spracovať." +"Použitie: apt-config [voľby] príkaz\n" +"\n" +"apt-config je jednoduchý nástroj na čítanie konfiguračného súboru APT\n" +"\n" +"Príkazy:\n" +" shell - Režim shell\n" +" dump - Zobrazí nastavenie\n" +"\n" +"Voľby:\n" +" -h Tento pomocník.\n" +" -c=? Načíta tento konfiguračný súbor\n" +" -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "Pri spracovaní závislostí nebol nájdený balík %s %s" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Nebol nájdený žiaden balík zodpovedajúci regulárnemu výrazu „%s“" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "Nedá sa vyhodnotiť zoznam zdrojových balíkov %s" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Nebol nájdený žiaden balík zodpovedajúci regulárnemu výrazu „%s“" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Načítavajú sa zoznamy balíkov" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Nebol nájdený žiaden balík zodpovedajúci regulárnemu výrazu „%s“" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Collecting File poskytuje" +#: cmdline/apt-get.cc:367 +#, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Vyberá sa „%s“ ako zdrojový balík namiesto „%s“\n" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Ignorovať nedostupnú verziu „%s“ balíka „%s“" + +#: cmdline/apt-get.cc:454 #, c-format -msgid "Unable to write to %s" -msgstr "Do %s sa nedá zapisovať" +msgid "Couldn't find package %s" +msgstr "Balík %s sa nedá nájsť" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "V/V chyba pri ukladaní zdrojovej vyrovnávacej pamäti" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s je označený ako manuálne nainštalovaný.\n" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "Poslať scénár riešiteľovi" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s je označený ako automaticky nainštalovaný.\n" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "Poslať požiadavku riešiteľovi" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" +"Tento príkaz je zavrhovaný. Prosím, použite namiesto neho „apt-mark auto“ a " +"„apt-mark manual“." -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "Pripraviť sa na prijatie riešenia" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Vnútorná chyba, „problem resolver“ niečo pokazil" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "Externý riešiteľ zlyhal bez uvedenia chybovej správy" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Adresár pre sťahovanie sa nedá zamknúť" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "Spustiť externého riešiteľa" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Musíte zadať aspoň jeden balík, pre ktorý sa stiahnu zdrojové texty" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "premenovanie zlyhalo, %s (%s -> %s)." +msgid "Unable to find a source package for %s" +msgstr "Nedá sa nájsť zdrojový balík pre %s" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Nezhoda kontrolných haš súčtov" +#: cmdline/apt-get.cc:786 +#, c-format +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"POZN.: tvorba balíka „%s“ sa spravuje v sytéme na riadenie revízií „%s“ na " +"adrese:\n" +"%s\n" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Veľkosti sa nezhodujú" - -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Neplatná operácia %s" - -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:791 #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -"Nepodarilo sa nájsť očakávanú položku „%s“ v súbore Release (Nesprávna " -"položka sources.list alebo chybný formát súboru)" +"Prosím, použite:\n" +"bzr branch %s\n" +"ak chcete získať najnovšie (a pravdepodobne zatiaľ nevydané) aktualizácie " +"balíka.\n" -#: apt-pkg/acquire-item.cc:1589 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Nepodarilo sa nájsť haš „%s“ v súbore Release" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Nie sú dostupné žiadne verejné kľúče ku kľúčom s nasledovnými ID:\n" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Preskakuje sa už stiahnutý súbor „%s“\n" -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" -"Súbor Release pre %s vypršal (neplatný od %s). Aktualizácie tohto zdroja " -"softvéru sa nepoužijú." +msgid "Couldn't determine free space in %s" +msgstr "Na %s sa nedá zistiť veľkosť voľného miesta" -#: apt-pkg/acquire-item.cc:1691 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "V konflikte s distribúciou: %s (očakávalo sa %s ale dostali sme %s)" +msgid "You don't have enough free space in %s" +msgstr "Na %s nemáte dostatok voľného miesta" -#: apt-pkg/acquire-item.cc:1721 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Počas overovania podpisu sa vyskytla chyba. Repozitár nie je aktualizovaný a " -"použijú sa predošlé indexové súbory. Chyba GPG: %s: %s\n" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Je potrebné stiahnuť %sB/%sB zdrojových archívov.\n" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "GPG error: %s: %s" -msgstr "Chyba GPG: %s: %s" +msgid "Need to get %sB of source archives.\n" +msgstr "Je potrebné stiahnuť %sB zdrojových archívov.\n" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:902 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"Nedá sa nájsť súbor s balíkom %s. To by mohlo znamenať, že tento balík je " -"potrebné opraviť manuálne (kvôli chýbajúcej architektúre)." +msgid "Fetch source %s\n" +msgstr "Stiahnuť zdroj %s\n" -#: apt-pkg/acquire-item.cc:1925 -#, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "Nie je možné nájsť zdroj na stiahnutie verzie „%s“ balíka „%s“" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Zlyhalo stiahnutie niektorých archívov." -#: apt-pkg/acquire-item.cc:1983 -#, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "Indexové súbory balíka sú narušené. Chýba pole Filename: pre balík %s." +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Sťahovanie ukončené v režime „iba stiahnuť“" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Blok výrobcu %s neobsahuje otlačok (fingerprint)" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Preskakuje sa rozbalenie už rozbaleného zdroja v %s\n" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: cmdline/apt-get.cc:963 #, c-format -msgid "List directory %spartial is missing." -msgstr "Adresár zoznamov %spartial chýba." +msgid "Unpack command '%s' failed.\n" +msgstr "Príkaz na rozbalenie „%s“ zlyhal.\n" -#: apt-pkg/acquire.cc:91 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Archívny adresár %spartial chýba." +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Skontrolujte, či je nainštalovaný balík „dpkg-dev“.\n" -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Unable to lock directory %s" -msgstr "Adresár %s sa nedá zamknúť" +msgid "Build command '%s' failed.\n" +msgstr "Príkaz na zostavenie „%s“ zlyhal.\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 -#, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Sťahuje sa %li. súbor z %li (zostáva %s)" +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Proces potomka zlyhal" -#: apt-pkg/acquire.cc:904 -#, c-format -msgid "Retrieving file %li of %li" -msgstr "Sťahuje sa %li. súbor z %li" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "" +"Musíte zadať aspoň jeden balík, pre ktorý sa budú overovať závislosti na " +"zostavenie" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:1055 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Zlyhalo stiahnutie %s %s\n" - -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -"Niektoré indexové súbory sa nepodarilo stiahnuť. Boli ignorované alebo sa " -"použili staršie verzie." +"Informácie o architektúre nie sú dostupné pre %s. Informácie o nastavení " +"nájdete v apt.conf(5) APT::Architectures" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Do sources.list musíte zadať nejaký „source“ (zdrojový) URI" +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "Nedajú sa získať závislosti na zostavenie %s" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1102 +#, c-format +msgid "%s has no build depends.\n" +msgstr "%s nemá žiadne závislosti na zostavenie.\n" + +#: cmdline/apt-get.cc:1272 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" msgstr "" -"„%s“ nie je platná hodnota pre APT::Default-Release, pretože také vydanie " -"nie je dostupné v zdrojoch" +"%s závislosť pre %s nemožno splniť, pretože %s nie je povolené na balíkoch " +"„%s“" -#: apt-pkg/policy.cc:422 +#: cmdline/apt-get.cc:1290 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Neplatný záznam v súbore nastavení %s, chýba hlavička Package" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "%s závislosť pre %s nemožno splniť, pretože sa nedá nájsť balík %s" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Did not understand pin type %s" -msgstr "Nezrozumiteľné pridržanie typu %s" - -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Nebola zadaná žiadna (alebo nulová) priorita na pridržanie" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"Zlyhalo splnenie %s závislosti pre %s: Inštalovaný balík %s je príliš nový" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1352 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" -"Nebolo možné vykonať okamžitú konfiguráciu „%s“. Pozri prosím podrobnosti v " -"man 5 apt.conf pod APT::Immediate-Configure (%d)" - -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "Nedá sa nakonfigurovať „%s“." +"%s závislosť pre %s nemožno splniť, pretože kandidátska verzia balíka %s, " +"nedokáže splniť požiadavky na verziu" -#: apt-pkg/packagemanager.cc:583 +#: cmdline/apt-get.cc:1358 #, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -"Tento beh inštalácie si vyžiada dočasné odstránenie kľúčového balíka %s " -"kvôli slučke v Conflicts/Pre-Depends. Často je to nevhodné, ale ak to chcete " -"naozaj urobiť, aktivujte možnosť APT::Force-LoopBreak." +"%s závislosť pre %s nemožno splniť, pretože balík %s nemá kandidátsku verziu" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Line %u too long in source list %s." -msgstr "Riadok %u v zozname zdrojov %s je príliš dlhý." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "CD-ROM sa odpája...\n" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Zlyhalo splnenie %s závislosti pre %s: %s" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Použije sa prípojný bod CD-ROM %s\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Čaká sa na disk...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Pripája sa CD-ROM...\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Závislosti na zostavenie %s nemožno splniť." -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identifikuje sa..." +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Spracovanie závislostí na zostavenie zlyhalo" -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 #, c-format -msgid "Stored label: %s\n" -msgstr "Uložená menovka: %s \n" - -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Na disku sa hľadajú indexové súbory...\n" +msgid "Changelog for %s (%s)" +msgstr "Záznam zmien %s (%s)" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Nájdených %zu indexov balíkov, %zu indexov zdrojových balíkov, %zu indexov " -"prekladov a %zu signatúr\n" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Podporované moduly:" -#: apt-pkg/cdrom.cc:744 +#: cmdline/apt-get.cc:1633 msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"Nepodarilo sa nájsť žiadne súbory balíkov, možno toto nie je disk s Debianom " -"alebo je pre nesprávnu architektúru?" - -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Nájdená menovka: „%s“\n" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Neplatný názov, skúste znova.\n" - -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"Názov tohto disku je: \n" -"„%s“\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopírujú sa zoznamy balíkov..." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Zapisuje sa nový zoznam zdrojov\n" +"Použitie: apt-get [voľby] príkaz\n" +" apt-get [voľby] install|remove balík1 [balík2 ...]\n" +" apt-get [voľby] source balík1 [balík2 ...]\n" +"\n" +"apt-get je jednoduché rozhranie na príkazovom riadku na sťahovanie\n" +"a inštaláciu balíkov. Najpoužívanejšími príkazmi sú update a install.\n" +"\n" +"Príkazy:\n" +" update - Získa nové zoznamy balíkov\n" +" upgrade - Vykoná aktualizáciu\n" +" install - Nainštaluje nové balíky (balík je libc6, nie libc6." +"deb)\n" +" remove - Odstráni balíky\n" +" autoremove - Automaticky odstráni všetky nepoužité balíky\n" +" purge - Odstráni a balíky a ich konfiguračné súbory\n" +" source - Stiahne zdrojové archívy\n" +" build-dep - Nastaví závislosti kompilácie pre zdrojové balíky\n" +" dist-upgrade - Aktualizácia distribúcie, pozri apt-get(8)\n" +" dselect-upgrade - Riadi sa podľa výberu v dselect\n" +" clean - Zmaže stiahnuté archívy\n" +" autoclean - Zmaže staré stiahnuté archívy\n" +" check - Overí, či neexistujú poškodené závislosti\n" +" markauto - Označí zadané balíky ako automaticky nainštalované\n" +" unmarkauto - Označí zadané balíky ako manuálne nainštalované\n" +"\n" +"Voľby:\n" +" -h Tento pomocník\n" +" -q Nezobrazí indikátor priebehu - pre záznam\n" +" -qq Zobrazí iba chyby\n" +" -d Iba stiahne - neinštaluje ani nerozbaľuje archívy\n" +" -s Žiadna akcia. Iba simuluje postupnosť pripravených akcií\n" +" -y Na všetky otázky odpovedá Áno\n" +" -f Pokúsi sa opraviť systém s poškodenými závislosťami\n" +" -m Skúsi pokračovať, aj keď sa nepodarí nájsť archívy\n" +" -u Zobrazí tiež zoznam aktualizovaných balíkov\n" +" -b Po stiahnutí zdrojového balíka ho aj skompiluje\n" +" -V Zobrazí čísla verzií\n" +" -c=? Načíta tento konfiguračný súbor\n" +" -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n" +"Viac volieb nájdete v manuálových stránkach apt-get(8), sources.list(5)\n" +"a apt.conf(5).\n" +" Tento APT má schopnosti posvätnej kravy.\n" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Položky zoznamu zdrojov pre tento disk sú:\n" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Musíte zadať aspoň jeden balík, pre ktorý sa stiahnu zdrojové texty" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "Je nutné preinštalovať balík %s, ale nedá sa nájsť jeho archív." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-helper.cc:66 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Chyba, pkgProblemResolver::Resolve vytvára poruchy, čo môže být spôsobené " -"pridržanými balíkmi." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Problémy sa nedajú opraviť, niektoré balíky držíte v poškodenom stave." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Vytvára sa strom závislostí" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Kandidátske verzie" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Generovanie závislostí" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Načítavajú sa stavové informácie" - -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Nie je možné otvoriť StateFile %s" -#: apt-pkg/depcache.cc:256 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Nie je možné zapísať dočasný StateFile %s" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s nemožno označiť, pretože nie je nainštalovaný.\n" -#: apt-pkg/tagfile.cc:140 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Súbor %s sa nedá spracovať (1)" +msgid "%s was already set to manually installed.\n" +msgstr "%s už bol označený ako manuálne nainštalovaný.\n" -#: apt-pkg/tagfile.cc:237 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Súbor %s sa nedá spracovať (2)" +msgid "%s was already set to automatically installed.\n" +msgstr "%s už bol označený ako automaticky nainštalovaný.\n" -#: apt-pkg/cacheset.cc:489 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Nebolo nájdené vydanie „%s“ pre „%s“" +msgid "%s was already set on hold.\n" +msgstr "%s bol už nastavený na podržanie.\n" -#: apt-pkg/cacheset.cc:492 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Nebola nájdená verzia „%s“ pre „%s“" +msgid "%s was already not hold.\n" +msgstr "%s bol už nastavený na nepodržanie.\n" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Unable to locate package %s" -msgstr "Nedá sa nájsť balík %s" +msgid "Waited for %s but it wasn't there" +msgstr "Čakalo sa na %s, ale nebolo to tam" -#: apt-pkg/cacheset.cc:603 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Couldn't find task '%s'" -msgstr "Nebolo možné nájsť úlohu „%s“" +msgid "%s set on hold.\n" +msgstr "%s je označený na podržanie.\n" -#: apt-pkg/cacheset.cc:609 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Nebol nájdený žiaden balík zodpovedajúci regulárnemu výrazu „%s“" - -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Nebol nájdený žiaden balík zodpovedajúci regulárnemu výrazu „%s“" +msgid "Canceled hold on %s.\n" +msgstr "Zrušené podržanie %s.\n" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "Nie je možné vybrať verzie z balíka „%s“, pretože je čisto virtuálny" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "Vykonanie dpkg zlyhalo. Ste root?" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format +#: cmdline/apt-mark.cc:392 +#, fuzzy msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" -"Nie je možné vybrať nainštalované ani kandidátske verzie z balíka „%s“, " -"pretože nemá žiadnu z nich" - -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -"Nie je možné vybrať najnovšiu verziu z balíka „%s“, pretože je čisto " -"virtuálny" +"Použitie: apt-mark [voľby] {auto|manual} balík1 [balík2 ...]\n" +"\n" +"apt-mark je jednoduché rozhranie príkazového riadka na označovanie\n" +"balíkov ako manuálne alebo automaticky nainštalované.\n" +"Tiež dokáže označenia vypisovať.\n" +"\n" +"Príkazy:\n" +" auto - Označí uvedené balíky ako automaticky nainštalované\n" +" manual - Označí uvedené balíky ako manuálne nainštalované\n" +"\n" +"Voľby:\n" +" -h Tento text pomocníka.\n" +" -q Výstup vhodný do záznamu - bez indikátora priebehu\n" +" -qq Nevypisovať nič, len chyby\n" +" -s Nevykonávať zmeny. Iba vypísať, čo by sa urobilo.\n" +" -f čítanie/zápis označenia auto/manálne v uvedenom súbore\n" +" -c=? Načítať tento konfiguračný súbor\n" +" -o=? Nastaviť ľubovoľný konfiguračnú voľbu, napr. -o dir::cache=/tmp\n" +"Ďalšie informácie nájdete na manuálových stránkach apt-mark(8) a apt.conf(5)." -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -"Nie je možné vybrať kandidátsku verziu z balíka „%s“, pretože nemá kandidáta" -#: apt-pkg/cacheset.cc:663 +#: methods/cdrom.cc:203 #, c-format -msgid "Can't select installed version from package %s as it is not installed" +msgid "Unable to read the cdrom database %s" +msgstr "Nedá sa čítať databáza na CD-ROM %s" + +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" msgstr "" -"Nie je možné vybrať nainštalovanú verziu z balíka „%s“, pretože nie je " -"nainštalovaný" +"Pre pridanie CD do APT použije apt-cdrom. apt-get update sa nedá využiť na " +"pridávanie nových CD." -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "Nedá spracovať súbor Release %s" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Chybné CD" -#: apt-pkg/indexrecords.cc:86 +#: methods/cdrom.cc:249 #, c-format -msgid "No sections in Release file %s" -msgstr "Žiadne sekcie v Release súbore %s" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Nedá sa odpojiť CD-ROM v %s - možno sa ešte používa." -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Chýba položka „Hash“ v súbore Release %s" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disk sa nenašiel." -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Chýba položka „Valid-Until“ v súbore Release %s" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Súbor sa nenašiel" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Chýba položka „Date“ v súbore Release %s" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Vyhodnotenie zlyhalo" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Skomolený riadok %lu v zozname zdrojov %s (spracovanie URI)" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Zlyhalo nastavenie času zmeny" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"Skomolený riadok %lu v zozname zdrojov %s (nie je možné spracovať [option])" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Neplatné URI, lokálne URI nesmie začínať s //" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Skomolený riadok %lu v zozname zdrojov %s ([option] je príliš krátke)" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Prihlasovanie" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Skomolený riadok %lu v zozname zdrojov %s ([%s] nie je priradenie)" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Nedá sa zistiť názov druhej strany" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Skomolený riadok %lu v zozname zdrojov %s ([%s] nemá kľúč)" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Nedá sa zistiť lokálny názov" -#: apt-pkg/sourcelist.cc:193 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "Skomolený riadok %lu v zozname zdrojov %s ([%s] kľúč %s nemá hodnotu)" +msgid "The server refused the connection and said: %s" +msgstr "Server zamietol naše spojenie s chybou: %s" -#: apt-pkg/sourcelist.cc:206 +#: methods/ftp.cc:225 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Skomolený riadok %lu v zozname zdrojov %s (URI)" +msgid "USER failed, server said: %s" +msgstr "Zlyhalo zadanie používateľa, server odpovedal: %s" -#: apt-pkg/sourcelist.cc:208 +#: methods/ftp.cc:232 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Skomolený riadok %lu v zozname zdrojov %s (dist)" +msgid "PASS failed, server said: %s" +msgstr "Zlyhalo zadanie hesla, server odpovedal: %s" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Skomolený riadok %lu v zozname zdrojov %s (spracovanie URI)" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"Bol zadaný proxy server, ale nie prihlasovací skript. Acquire::ftp::" +"ProxyLogin je prázdny." -#: apt-pkg/sourcelist.cc:217 +#: methods/ftp.cc:280 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Skomolený riadok %lu v zozname zdrojov %s (absolútny dist)" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Príkaz „%s“ prihlasovacieho skriptu zlyhal, server odpovedal: %s" -#: apt-pkg/sourcelist.cc:224 +#: methods/ftp.cc:306 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Skomolený riadok %lu v zozname zdrojov %s (spracovanie dist)" +msgid "TYPE failed, server said: %s" +msgstr "Zlyhalo zadanie typu, server odpovedal: %s" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Otvára sa %s" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Uplynul čas spojenia" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Skomolený riadok %u v zozname zdrojov %s (typ)" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Server ukončil spojenie" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Typ „%s“ je neznámy na riadku %u v zozname zdrojov %s" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Chyba pri čítaní" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Typ „%s“ je neznámy na riadku %u v zozname zdrojov %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Odpoveď preplnila zásobník." -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Inštaluje sa %s" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Narušenie protokolu" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Nastavuje sa %s" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Chyba pri zápise" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Odstraňuje sa %s" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Nedá sa vytvoriť socket" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "Úplne sa odstraňuje %s" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Nedá sa pripojiť dátový socket, uplynul čas spojenia" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "Zaznamenali sme zmiznutie %s" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Chyba" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Vykonáva sa spúšťač post-installation %s" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Nedá sa pripojiť pasívny socket." -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Adresár „%s“ chýba" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo nezískal počúvajúci socket" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "Nedá sa otvoriť súbor „%s“" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Nedá sa nadviazať socket" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "Pripravuje sa %s" - -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Rozbaľuje sa %s" - -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Pripravuje sa nastavenie %s" - -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "Nainštalovaný balík %s" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Na sockete sa nedá počúvať" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "Pripravuje sa odstránenie %s" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Názov socketu sa nedá zistiť" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "Odstránený balík %s" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Príkaz PORT sa nedá odoslať" -#: apt-pkg/deb/dpkgpm.cc:1009 +#: methods/ftp.cc:802 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Pripravuje sa úplné odstránenie %s" +msgid "Unknown address family %u (AF_*)" +msgstr "Neznáma rodina adries %u (AF_*)" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: methods/ftp.cc:811 #, c-format -msgid "Completely removed %s" -msgstr "Balík „%s“ je úplne odstránený" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +msgid "EPRT failed, server said: %s" +msgstr "Zlyhalo zadanie EPRT, server odpovedal: %s" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Do %s sa nedá zapisovať" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Uplynulo spojenie dátového socketu" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Spojenie sa nedá prijať" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problém s hašovaním súboru" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/ftp.cc:890 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Čakalo sa na %s, ale nebolo to tam" - -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "Operácia bola prerušená predtým, než sa stihla dokončiť" - -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "Nezapíše sa správa apport, pretože už bol dosiahnutý limit MaxReports" - -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "problém so závislosťami - ponecháva sa nenakonfigurované" - -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"Nezapíše sa správa apport, pretože chybová správa indikuje, že je to chyba v " -"nadväznosti na predošlé zlyhanie." +msgid "Unable to fetch file, server said '%s'" +msgstr "Súbor sa nedá stiahnuť, server odpovedal „%s“" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Nezapíše sa správa apport, pretože chybová správa indikuje, že je disk " -"zaplnený" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Uplynula doba dátového socketu" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Nezapíše sa správa apport, pretože chybová správa indikuje chybu nedostatku " -"pamäte" +#: methods/ftp.cc:935 +#, c-format +msgid "Data transfer failed, server said '%s'" +msgstr "Prenos dát zlyhal, server odpovedal „%s“" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" -"Nezapíše sa správa apport, pretože chybová správa indikuje, že je disk " -"zaplnený" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Dotaz" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" -"Nezapíše sa správa apport, pretože chybová správa indikuje V/V chybu dpkg" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Nedá sa vyvolať " -#: apt-pkg/deb/debsystem.cc:91 +#: methods/connect.cc:76 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "Nedá sa zamknúť adresár na správu (%s), používa ho iný proces?" +msgid "Connecting to %s (%s)" +msgstr "Pripája sa k %s (%s)" -#: apt-pkg/deb/debsystem.cc:94 +#: methods/connect.cc:87 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Nedá sa zamknúť adresár na správu (%s), ste root?" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: methods/connect.cc:94 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "dpkg bol prerušený, musíte ručne opraviť problém spustením „%s“. " - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Nie je zamknuté" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Nedá sa vytvoriť socket pre %s (f=%u t=%u p=%u)" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 +#: methods/connect.cc:100 #, c-format -msgid "%lid %lih %limin %lis" -msgstr "%li d %li h %li min %li s" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Nedá sa nadviazať spojenie na %s:%s (%s)." -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: methods/connect.cc:108 #, c-format -msgid "%lih %limin %lis" -msgstr "%li h %li min %li s" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Nedá sa pripojiť k %s:%s (%s), uplynul čas spojenia" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: methods/connect.cc:126 #, c-format -msgid "%limin %lis" -msgstr "%li min %li s" +msgid "Could not connect to %s:%s (%s)." +msgstr "Nedá sa pripojiť k %s:%s (%s)." -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "%lis" -msgstr "%li s" +msgid "Connecting to %s" +msgstr "Pripája sa k %s" -#: apt-pkg/contrib/strutl.cc:1243 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Selection %s not found" -msgstr "Voľba %s nenájdená" +msgid "Could not resolve '%s'" +msgstr "Nie je možné preložiť „%s“" -#: apt-pkg/contrib/fileutl.cc:190 +#: methods/connect.cc:205 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Zamykanie pre súbor zámku %s, ktorý je iba na čítanie, sa nepoužíva" +msgid "Temporary failure resolving '%s'" +msgstr "Dočasné zlyhanie pri preklade „%s“" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Súbor zámku %s sa nedá otvoriť" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Niečo veľmi zlé sa prihodilo pri preklade „%s:%s“ (%i - %s)" -#: apt-pkg/contrib/fileutl.cc:218 +#: methods/connect.cc:211 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Zamykanie pre súbor zámku %s pripojený cez NFS sa nepoužíva" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Niečo veľmi zlé sa prihodilo pri preklade „%s:%s“ (%i - %s)" -#: apt-pkg/contrib/fileutl.cc:223 +#: methods/connect.cc:258 #, c-format -msgid "Could not get lock %s" -msgstr "Zámok %s sa nedá získať" +msgid "Unable to connect to %s:%s:" +msgstr "Nedá sa pripojiť k %s:%s:" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "Zoznam súborov nemožno vytvoriť, pretože „%s“ nie je adresár" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "Vnútorná chyba: Správna signatúra, ale sa nedá zistiť odtlačok kľúča?!" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "Ignoruje sa „%s“ v adresári „%s“, pretože to nie je obyčajný súbor" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Bola zistená aspoň jedna nesprávna signatúra." -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "Ignoruje sa „%s“ v adresári „%s“, pretože nemá príponu názvu súboru" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "Nedá sa spustiť „gpgv“ kvôli overeniu podpisu (je nainštalované gpgv?)" -#: apt-pkg/contrib/fileutl.cc:421 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"Ignoruje sa „%s“ v adresári „%s“, pretože má neplatnú príponu názvu súboru" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Podproces %s obdržal chybu segmentácie." +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Neznáma chyba pri spustení gpgv" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "Podproces %s dostal signál %u." +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Nasledovné signatúry sú neplatné:\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Podproces %s vrátil chybový kód (%u)" +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "" +"Nasledovné signatúry sa nedajú overiť, pretože nie je dostupný verejný " +"kľúč:\n" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Podproces %s neočakávane skončil" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Prázdne súbory nemôžu byť platné archívy" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Chyba pri zápise" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Chyba zápisu do tohto súboru" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problém pri zatváraní gzip súboru %s" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Chyba pri čítaní zo servera. Druhá strana ukončila spojenie" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Nedá sa otvoriť súbor %s" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Chyba pri čítaní zo servera" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "Nedá sa otvoriť popisovač súboru %d" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Chyba zápisu do súboru" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Nedá sa vytvoriť podproces IPC" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Výber zlyhal" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Nepodarilo sa spustiť kompresor " +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Uplynul čas spojenia" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Chyba pri čítaní" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Chyba zápisu do výstupného súboru" -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" -msgstr "čítanie, treba prečítať ešte %llu, ale už nič neostáva" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Čaká sa na hlavičky" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "zápis, treba zapísať ešte %llu, no nedá sa to" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Chybná hlavička" -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Problém pri zatváraní súboru %s" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "HTTP server poslal neplatnú hlavičku odpovede" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problém pri synchronizovaní súboru %s na %s" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "HTTP server poslal neplatnú hlavičku Content-Length" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "Problém pri odstraňovaní súboru %s" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "HTTP server poslal neplatnú hlavičku Content-Range" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problém pri synchronizovaní súboru" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Tento HTTP server má poškodenú podporu rozsahov" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Chyba!" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Neznámy formát dátumu" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Hotovo" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Zlé dátové záhlavie" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Spojenie zlyhalo" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Hotovo" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Vnútorná chyba" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Nedá sa vykonať mmap prázdneho súboru" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Nedá sa duplikovať popisovač súboru %i" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Vnútorná chyba, InstallPackages bolo volané s poškodenými balíkmi!" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Nedá sa urobiť mmap %llu bajtov" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Je potrebné odstránenie balíka, ale funkcia Odstrániť je vypnutá." -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Nedá sa zatvoriť mmap" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Vnútorná chyba, Triedenie sa neukončilo" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Nedá sa synchronizovať mmap" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Nezvyčajná udalosť... Veľkosti nesúhlasia, pošlite e-mail na apt@packages." +"debian.org" -#: apt-pkg/contrib/mmap.cc:290 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Nedá sa urobiť mmap %lu bajtov" - -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Nepodarilo sa skrátiť súbor" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Je potrebné stiahnuť %sB/%sB archívov.\n" -#: apt-pkg/contrib/mmap.cc:341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" -msgstr "" -"Nedostatok miesta pre dynamický MMap. Prosím, zväčšite veľkosť APT::Cache-" -"Start. Aktuálna hodnota: %lu. (man 5 apt.conf)" +msgid "Need to get %sB of archives.\n" +msgstr "Je potrebné stiahnuť %sB archívov.\n" -#: apt-pkg/contrib/mmap.cc:446 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" -"Napodarilo sa zväčšiť veľkosť MMap, pretože limit %lu už bol dosiahnutý." +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Po tejto operácii sa na disku použije ďalších %sB.\n" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" -"Napodarilo sa zväčšiť veľkosť MMap, pretože automatické zväčovanie vypol " -"používateľ." +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 +#, c-format +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Po tejto operácii sa na disku uvoľní %sB.\n" -#: apt-pkg/contrib/cdromutl.cc:65 +#: apt-private/private-install.cc:200 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "Prípojný bod %s sa nedá vyhodnotiť" +msgid "You don't have enough free space in %s." +msgstr "Na %s nemáte dostatok voľného miesta." -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Nedá sa vykonať stat() CD-ROM" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Nastali problémy a -y bolo použité bez --force-yes" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Nerozpoznaná skratka typu: „%c“" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Zadané „iba triviálne“, ale toto nie je triviálna operácia." -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Otvára sa konfiguračný súbor %s" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Áno, urob to, čo vravím!" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-private/private-install.cc:222 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Syntaktická chyba %s:%u: Blok začína bez názvu." - -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Syntaktická chyba %s:%u: Skomolená značka" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Možno sa chystáte vykonať niečo škodlivé.\n" +"Ak chcete pokračovať, opíšte frázu „%s“\n" +" ?]" -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Syntaktická chyba %s:%u: Za hodnotou nasledujú chybné údaje" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Prerušené." -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Chcete pokračovať?" + +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Niektoré súbory sa nedajú stiahnuť" + +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -"Syntaktická chyba %s:%u: Direktívy sa dajú vykonať len na najvyššej úrovni" +"Niektoré archívy sa nedajú stiahnuť. Skúste spustiť apt-get update alebo --" +"fix-missing" -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Syntaktická chyba %s:%u: Príliš mnoho vnorených prepojení (include)" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing a výmena nosiča nie sú momentálne podporované" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Syntaktická chyba %s:%u: Zahrnuté odtiaľ" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Chýbajúce balíky sa nedajú opraviť." -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Syntaktická chyba %s:%u: Nepodporovaná direktíva „%s“" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Inštalácia sa prerušuje." -#: apt-pkg/contrib/configuration.cc:900 -#, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"Nasledovný balík zmizol z vášho systému, pretože\n" +"všetky súbory boli prepísané inými balíkmi:" +msgstr[1] "" +"Nasledovné balíky zmizli z vášho systému, pretože\n" +"všetky súbory boli prepísané inými balíkmi:" +msgstr[2] "" +"Nasledovné balíky zmizli z vášho systému, pretože\n" +"všetky súbory boli prepísané inými balíkmi:" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Pozn.: Toto robí dpkg automaticky a zámerne." + +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Nemajú sa odstraňovať veci, nespustí sa AutoRemover" + +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Syntaktická chyba %s:%u: direktíva clear vyžaduje ako argument strom volieb" +"Hmm, zdá sa, že AutoRemover niečo zničil, čo sa naozaj nemalo stať.\n" +"Prosím, pošlite hlásenie o chybe balíka apt." -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Syntaktická chyba %s:%u: Na konci súboru sú chybné údaje" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Nasledovné informácie vám možno pomôžu vyriešiť túto situáciu:" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, c-format -msgid "No keyring installed in %s." -msgstr "V %s nie je nainštalovaný žiaden zväzok kľúčov." +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Vnútorná chyba, AutoRemover niečo pokazil" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Parameter príkazového riadka „%c“ [z %s] je neznámy" +#: apt-private/private-install.cc:513 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "" +"Nasledovný balík bol nainštalovaný automaticky a už viac nie je potrebný:" +msgstr[1] "" +"Nasledovné balíky boli nainštalované automaticky a už viac nie sú potrebné:" +msgstr[2] "" +"Nasledovné balíky boli nainštalované automaticky a už viac nie sú potrebné:" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-private/private-install.cc:517 #, c-format -msgid "Command line option %s is not understood" -msgstr "Nezrozumiteľný parameter %s na príkazovom riadku" +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "" +"%lu balík bol nainštalovaný automaticky a už viac nie je potrebný.\n" +msgstr[1] "" +"%lu balíkov bolo nainštalovaných automaticky a už viac nie sú potrebné.\n" +msgstr[2] "" +"%lu balíkov bolo nainštalovaných automaticky a už viac nie sú potrebné.\n" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "Parameter príkazového riadku %s nie je pravdivostná hodnota" +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Na jeho odstránenie použite „apt-get autoremove“." +msgstr[1] "Na ich odstránenie použite „apt-get autoremove“." +msgstr[2] "Na ich odstránenie použite „apt-get autoremove“." -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Možno to budete chcieť napraviť spustením „apt-get -f install“:" + +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"Nesplnené závislosti. Skúste spustiť „apt-get -f install“ bez balíkov (alebo " +"navrhnite riešenie)." + +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"Niektoré balíky sa nedajú nainštalovať. To môže znamenať, že požadujete\n" +"nemožnú situáciu, alebo ak používate nestabilnú distribúciu, že\n" +"požadované balíky ešte neboli vytvorené alebo presunuté z fronty\n" +"Novoprichádzajúcich (Incoming) balíkov." + +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Poškodené balíky" + +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Nainštalujú sa nasledovné extra balíky:" + +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Navrhované balíky:" + +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Odporúčané balíky:" + +#: apt-private/private-install.cc:825 #, c-format -msgid "Option %s requires an argument." -msgstr "Voľba %s vyžaduje argument." +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Preskakuje sa %s, pretože je už nainštalovaný.\n" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-private/private-install.cc:829 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Parameter %s: Zadanie konfiguračnej položky musí obsahovať =<hodn>." +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"Preskakuje sa %s, nie je nainštalovaný a bola vy6iadan8 iba aktualizácia.\n" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-private/private-install.cc:841 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Voľba %s vyžaduje ako argument celé číslo (integer), nie „%s“" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Nie je možná reinštalácia %s, pretože sa nedá stiahnuť.\n" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-private/private-install.cc:846 #, c-format -msgid "Option '%s' is too long" -msgstr "Voľba „%s“ je príliš dlhá" +msgid "%s is already the newest version.\n" +msgstr "%s je už najnovšej verzie.\n" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-private/private-install.cc:894 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Nezrozumiteľný význam %s, skúste true alebo false. " +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Vybraná verzia „%s“ (%s) pre „%s“\n" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-private/private-install.cc:899 #, c-format -msgid "Invalid operation %s" -msgstr "Neplatná operácia %s" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Vybraná verzia „%s“ (%s) pre „%s“ kvôli „%s“\n" -#: cmdline/apt-cache.cc:149 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Balík %s verzie %s má nesplnené závislosti:\n" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "" +"Balík „%s“ nie je nainštalovaný, nedá sa teda odstrániť. Mali ste na mysli " +"„%s“?\n" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Celkom názvov balíkov: " +#: apt-private/private-install.cc:947 +#, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Balík „%s“ nie je nainštalovaný, nedá sa teda odstrániť\n" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Celkom štruktúr balíkov: " +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Normálnych balíkov: " +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Čisto virtuálnych balíkov: " +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Opravujú sa závislosti..." -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Jednoduchých virtuálnych balíkov: " +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " zlyhalo." -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Zmiešaných virtuálnych balíkov: " +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Závislosti sa nedajú opraviť" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Chýbajúcich: " +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Sada na aktualizáciu sa nedá minimalizovať" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Celkom rôznych verzií: " +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Hotovo" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Celkom rôznych popisov: " +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Možno to budete chcieť napraviť spustením „apt-get -f install“." -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Celkom závislostí: " +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Nesplnené závislosti. Skúste použiť -f." -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Celkom vzťahov ver/súbor: " +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Celkom vzťahov popis/súbor: " +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Nainštalovaný]" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Celkom poskytnutých mapovaní: " +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Nainštalovaný]" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Celkom globovaných reťazcov: " +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Celkom miesta závislých verzií: " +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Nainštalovaný]" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Celkom jalového miesta: " +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Nainštalovaný]" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Celkom priradeného miesta: " +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "" + +#: apt-private/private-output.cc:435 #, c-format -msgid "Package file %s is out of sync." -msgstr "Súbor balíkov %s je neaktuálny." +msgid "but %s is installed" +msgstr "ale nainštalovaný je %s" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Neboli nájdené žiadne balíky" +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "ale inštalovať sa bude %s" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Musíte zadať aspoň jeden vyhľadávací vzor" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "ale sa nedá nainštalovať" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" -"Tento príkaz je zavrhovaný. Prosím, použite namiesto neho „apt-mark " -"showauto“." +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "ale je to virtuálny balík" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Súbory balíka:" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "ale nie je nainštalovaný" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Vyrovnávacia pamäť je neaktuálna, nedá sa odvolať na súbor balíka" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "ale sa nebude inštalovať" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Pripevnené balíky:" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " alebo" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(nenájdené)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Nasledovné balíky majú nesplnené závislosti:" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Nainštalovaná verzia: " +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Nainštalujú sa nasledovné NOVÉ balíky:" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidát: " +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Nasledovné balíky sa ODSTRÁNIA:" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(žiadna)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Nasledovné balíky sa ponechajú v súčasnej verzii:" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Pripevnený balík:" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Nasledovné balíky sa aktualizujú:" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabuľka verzií:" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Nasledovné balíky sa DEGRADUJÚ:" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Nasledovné pridržané balíky sa zmenia:" + +#: apt-private/private-output.cc:668 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s pre %s skompilovaný %s %s\n" +msgid "%s (due to %s) " +msgstr "%s (kvôli %s) " -#: cmdline/apt-cache.cc:1749 +#: apt-private/private-output.cc:676 msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Použitie: apt-cache [voľby] príkaz\n" -" apt-cache [voľby] showpkg balík1 [balík2 ...]\n" -" apt-cache [voľby] showsrc balík1 [balík2 ...]\n" -"\n" -"apt-cache je nízkoúrovňový nástroj na zisťovanie informácií\n" -"z binárnych súborov vyrovnávacej pamäti APT\n" -"\n" -"Príkazy:\n" -" gencaches - Zostaví vyrovnávaciu pamäť balíkov a zdrojov\n" -" showpkg - Zobrazí všeobecné údaje o balíku\n" -" showsrc - Zobrazí zdrojové záznamy\n" -" stats - Zobrazí základné štatistiky\n" -" dump - Zobrazí celý súbor v zhustenej podobe\n" -" dumpavail - Vypíše súbor dostupných balíkov na štandardný výstup\n" -" unmet - Zobrazí nesplnené závislosti\n" -" search - Prehľadá zoznam balíkov podľa regulárneho výrazu\n" -" show - Zobrazí prehľadné informácie o balíku\n" -" depends - Zobrazí základné údaje o závislostiach balíka\n" -" rdepends - Zobrazí údaje o spätných závislostiach balíka\n" -" pkgnames - Vypíše zoznam názvov všetkých balíkov v systéme\n" -" dotty - Vytvorí diagramy balíka pre GraphViz\n" -" xvcg - Vytvorí diagramy balíka pre xvcg\n" -" policy - Zobrazí nastavenia zásad\n" -"\n" -"Voľby:\n" -" -h Tento pomocník.\n" -" -p=? Vyrovnávacia pamäť balíkov.\n" -" -s=? Vyrovnávacia pamäť zdrojov.\n" -" -q Nezobrazí indikátor priebehu.\n" -" -i Pri príkaze unmet zobrazí iba dôležité závislosti.\n" -" -c=? Načíta tento konfiguračný súbor\n" -" -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n" -"Ďalšie informácie nájdete v manuálových stránkach apt-cache(8)\n" -"a apt.conf(5).\n" - -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Prosím, zadajte názov tohto disku, napríklad „Debian 5.0.3 Disk 1“" +"UPOZORNENIE: Nasledovné dôležité balíky sa odstránia.\n" +"Ak presne neviete, čo robíte, tak to NEROBTE!" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Vložte disk do mechaniky a stlačte Enter" +#: apt-private/private-output.cc:707 +#, c-format +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu aktualizovaných, %lu nových nainštalovaných, " -#: cmdline/apt-cdrom.cc:139 +#: apt-private/private-output.cc:711 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Pripojenie „%s“ na „%s“ zlyhalo" +msgid "%lu reinstalled, " +msgstr "%lu reinštalovaných, " -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-private/private-output.cc:713 +#, c-format +msgid "%lu downgraded, " +msgstr "%lu degradovaných, " -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Zopakujte tento postup pre všetky CD v sade diskov." +#: apt-private/private-output.cc:715 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu na odstránenie a %lu neaktualizovaných.\n" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumenty nie sú vo dvojiciach" +#: apt-private/private-output.cc:719 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "%lu iba čiastočne nainštalovaných alebo odstránených.\n" -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" msgstr "" -"Použitie: apt-config [voľby] príkaz\n" -"\n" -"apt-config je jednoduchý nástroj na čítanie konfiguračného súboru APT\n" -"\n" -"Príkazy:\n" -" shell - Režim shell\n" -" dump - Zobrazí nastavenie\n" -"\n" -"Voľby:\n" -" -h Tento pomocník.\n" -" -c=? Načíta tento konfiguračný súbor\n" -" -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Nebol nájdený žiaden balík zodpovedajúci regulárnemu výrazu „%s“" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Nebol nájdený žiaden balík zodpovedajúci regulárnemu výrazu „%s“" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Nebol nájdený žiaden balík zodpovedajúci regulárnemu výrazu „%s“" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: cmdline/apt-get.cc:367 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Vyberá sa „%s“ ako zdrojový balík namiesto „%s“\n" +msgid "Regex compilation error - %s" +msgstr "Chyba pri preklade regulárneho výrazu - %s" -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Ignorovať nedostupnú verziu „%s“ balíka „%s“" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Príkaz update neprijíma žiadne argumenty" -#: cmdline/apt-get.cc:454 +#: apt-private/private-update.cc:90 #, c-format -msgid "Couldn't find package %s" -msgstr "Balík %s sa nedá nájsť" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s je označený ako manuálne nainštalovaný.\n" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-private/private-show.cc:156 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s je označený ako automaticky nainštalovaný.\n" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" + +#: apt-private/private-main.cc:32 msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -"Tento príkaz je zavrhovaný. Prosím, použite namiesto neho „apt-mark auto“ a " -"„apt-mark manual“." +"POZN.: Toto je iba simulácia!\n" +" apt-get potrebuje na skutočné spustenie práva používateľa root.\n" +" Tiež pamätajte, že zamykanie je deaktivované, takže\n" +" sa nespoliehajte na to že to bude platiť v reálnej situácii!" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Vnútorná chyba, „problem resolver“ niečo pokazil" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "UPOZORNENIE: Pri nasledovných balíkoch sa nedá overiť vierohodnosť!" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Adresár pre sťahovanie sa nedá zamknúť" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Upozornenie o vierohodnosti bolo potlačené.\n" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Musíte zadať aspoň jeden balík, pre ktorý sa stiahnu zdrojové texty" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Nedala sa zistiť vierohodnosť niektorých balíkov" + +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Nainštalovať tieto nekontrolované balíky?" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Nedá sa nájsť zdrojový balík pre %s" +msgid "Failed to fetch %s %s\n" +msgstr "Zlyhalo stiahnutie %s %s\n" -#: cmdline/apt-get.cc:786 +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Premenovanie %s na %s zlyhalo" + +#: apt-private/private-sources.cc:70 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -"POZN.: tvorba balíka „%s“ sa spravuje v sytéme na riadenie revízií „%s“ na " -"adrese:\n" -"%s\n" -#: cmdline/apt-get.cc:791 -#, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" msgstr "" -"Prosím, použite:\n" -"bzr branch %s\n" -"ak chcete získať najnovšie (a pravdepodobne zatiaľ nevydané) aktualizácie " -"balíka.\n" -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Preskakuje sa už stiahnutý súbor „%s“\n" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Prepočítava sa aktualizácia... " -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "Na %s sa nedá zistiť veľkosť voľného miesta" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Hotovo" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "Na %s nemáte dostatok voľného miesta" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Už existuje " -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Je potrebné stiahnuť %sB/%sB zdrojových archívov.\n" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Získava sa:" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Chyba " + +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Je potrebné stiahnuť %sB zdrojových archívov.\n" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "%sB sa stiahlo za %s (%sB/s)\n" -#: cmdline/apt-get.cc:902 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Fetch source %s\n" -msgstr "Stiahnuť zdroj %s\n" +msgid " [Working]" +msgstr " [Prebieha spracovanie]" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Zlyhalo stiahnutie niektorých archívov." +#: apt-private/acqprogress.cc:297 +#, c-format +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Výmena nosiča: Vložte disk s názvom\n" +" „%s“\n" +"do mechaniky „%s“ a stlačte Enter\n" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Sťahovanie ukončené v režime „iba stiahnuť“" +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 +#, c-format +msgid "Unable to read %s" +msgstr "Nedá sa načítať %s" -#: cmdline/apt-get.cc:950 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Preskakuje sa rozbalenie už rozbaleného zdroja v %s\n" +msgid "Unable to change to %s" +msgstr "Nedá sa prejsť do %s" -#: cmdline/apt-get.cc:962 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Príkaz na rozbalenie „%s“ zlyhal.\n" +msgid "No mirror file '%s' found " +msgstr "Na zrkadle nebol nájdený súbor „%s“" -#: cmdline/apt-get.cc:963 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Skontrolujte, či je nainštalovaný balík „dpkg-dev“.\n" +msgid "Can not read mirror file '%s'" +msgstr "Nepodarilo sa prečítať súbor „%s“ na zrkadle" + +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Nepodarilo sa prečítať súbor „%s“ na zrkadle" -#: cmdline/apt-get.cc:991 +#: methods/mirror.cc:445 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Príkaz na zostavenie „%s“ zlyhal.\n" +msgid "[Mirror: %s]" +msgstr "[Zrkadlo: %s]" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Proces potomka zlyhal" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Zlyhalo vytvorenie IPC rúry k podprocesu" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Spojenie bolo predčasne ukončené" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Chybné predvolené nastavenie!" + +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Stlačte Enter, ak chcete pokračovať." + +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Chcete odstrániť všetky doteraz stiahnuté .deb súbory?" + +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" -"Musíte zadať aspoň jeden balík, pre ktorý sa budú overovať závislosti na " -"zostavenie" +"Pri rozbaľovaní došlo k nejakým chybám. Balíky, ktoré boli nainštalované" -#: cmdline/apt-get.cc:1054 -#, c-format +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "budú nakonfigurované. Môže to spôsobiť opakované chybové správy" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "o nesplnených závislostiach. Je to v poriadku, dôležité sú iba" + +#: dselect/install:105 msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"Informácie o architektúre nie sú dostupné pre %s. Informácie o nastavení " -"nájdete v apt.conf(5) APT::Architectures" +"chyby nad touto správou. Opravte ich a potom znovu spusťte [I]nštalovať" + +#: dselect/update:30 +msgid "Merging available information" +msgstr "Zlučujú sa dostupné informácie" + +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "Pokus o uvoľnenie uzla (DropNode) na stále prepojenom uzle" + +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Hašovací prvok sa nedá nájsť!" + +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Nedá sa alokovať diverzia" + +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Vnútorná chyba pri AddDiversion" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Nedajú sa získať závislosti na zostavenie %s" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Pokus o prepísanie diverzie, %s -> %s a %s/%s" -#: cmdline/apt-get.cc:1101 +#: apt-inst/filelist.cc:506 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s nemá žiadne závislosti na zostavenie.\n" +msgid "Double add of diversion %s -> %s" +msgstr "Dvojité pridanie diverzie %s -> %s" -#: cmdline/apt-get.cc:1271 +#: apt-inst/filelist.cc:549 #, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"%s závislosť pre %s nemožno splniť, pretože %s nie je povolené na balíkoch " -"„%s“" +msgid "Duplicate conf file %s/%s" +msgstr "Duplicitný konfiguračný súbor %s/%s" -#: cmdline/apt-get.cc:1289 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "%s závislosť pre %s nemožno splniť, pretože sa nedá nájsť balík %s" +msgid "The path %s is too long" +msgstr "Cesta %s je príliš dlhá" -#: cmdline/apt-get.cc:1312 +#: apt-inst/extract.cc:132 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"Zlyhalo splnenie %s závislosti pre %s: Inštalovaný balík %s je príliš nový" +msgid "Unpacking %s more than once" +msgstr "%s sa rozbaľuje viackrát" -#: cmdline/apt-get.cc:1351 +#: apt-inst/extract.cc:142 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"%s závislosť pre %s nemožno splniť, pretože kandidátska verzia balíka %s, " -"nedokáže splniť požiadavky na verziu" +msgid "The directory %s is diverted" +msgstr "Adresár %s je divertovaný" -#: cmdline/apt-get.cc:1357 +#: apt-inst/extract.cc:152 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "" -"%s závislosť pre %s nemožno splniť, pretože balík %s nemá kandidátsku verziu" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Balík sa pokúša zapisovať do diverzného cieľa %s/%s" + +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Diverzná cesta je príliš dlhá" -#: cmdline/apt-get.cc:1380 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Zlyhalo splnenie %s závislosti pre %s: %s" +msgid "Failed to stat %s" +msgstr "%s sa nedá vyhodnotiť" -#: cmdline/apt-get.cc:1395 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Závislosti na zostavenie %s nemožno splniť." +msgid "Failed to rename %s to %s" +msgstr "Premenovanie %s na %s zlyhalo" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Spracovanie závislostí na zostavenie zlyhalo" +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "Adresár %s sa nahradí neadresárom" + +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Nedá sa nájsť uzol na adrese jeho hašu" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Cesta je príliš dlhá" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-inst/extract.cc:421 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Záznam zmien %s (%s)" +msgid "Overwrite package match with no version for %s" +msgstr "Prepísať zodpovedajúci balík bez udania verzie pre %s" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Podporované moduly:" +#: apt-inst/extract.cc:438 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Súbor %s/%s prepisuje ten z balíka %s" -#: cmdline/apt-get.cc:1632 -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -msgstr "" -"Použitie: apt-get [voľby] príkaz\n" -" apt-get [voľby] install|remove balík1 [balík2 ...]\n" -" apt-get [voľby] source balík1 [balík2 ...]\n" -"\n" -"apt-get je jednoduché rozhranie na príkazovom riadku na sťahovanie\n" -"a inštaláciu balíkov. Najpoužívanejšími príkazmi sú update a install.\n" -"\n" -"Príkazy:\n" -" update - Získa nové zoznamy balíkov\n" -" upgrade - Vykoná aktualizáciu\n" -" install - Nainštaluje nové balíky (balík je libc6, nie libc6." -"deb)\n" -" remove - Odstráni balíky\n" -" autoremove - Automaticky odstráni všetky nepoužité balíky\n" -" purge - Odstráni a balíky a ich konfiguračné súbory\n" -" source - Stiahne zdrojové archívy\n" -" build-dep - Nastaví závislosti kompilácie pre zdrojové balíky\n" -" dist-upgrade - Aktualizácia distribúcie, pozri apt-get(8)\n" -" dselect-upgrade - Riadi sa podľa výberu v dselect\n" -" clean - Zmaže stiahnuté archívy\n" -" autoclean - Zmaže staré stiahnuté archívy\n" -" check - Overí, či neexistujú poškodené závislosti\n" -" markauto - Označí zadané balíky ako automaticky nainštalované\n" -" unmarkauto - Označí zadané balíky ako manuálne nainštalované\n" -"\n" -"Voľby:\n" -" -h Tento pomocník\n" -" -q Nezobrazí indikátor priebehu - pre záznam\n" -" -qq Zobrazí iba chyby\n" -" -d Iba stiahne - neinštaluje ani nerozbaľuje archívy\n" -" -s Žiadna akcia. Iba simuluje postupnosť pripravených akcií\n" -" -y Na všetky otázky odpovedá Áno\n" -" -f Pokúsi sa opraviť systém s poškodenými závislosťami\n" -" -m Skúsi pokračovať, aj keď sa nepodarí nájsť archívy\n" -" -u Zobrazí tiež zoznam aktualizovaných balíkov\n" -" -b Po stiahnutí zdrojového balíka ho aj skompiluje\n" -" -V Zobrazí čísla verzií\n" -" -c=? Načíta tento konfiguračný súbor\n" -" -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n" -"Viac volieb nájdete v manuálových stránkach apt-get(8), sources.list(5)\n" -"a apt.conf(5).\n" -" Tento APT má schopnosti posvätnej kravy.\n" +#: apt-inst/extract.cc:498 +#, c-format +msgid "Unable to stat %s" +msgstr "Nedá sa vyhodnotiť %s" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Musíte zadať aspoň jeden balík, pre ktorý sa stiahnu zdrojové texty" +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, c-format +msgid "Failed to write file %s" +msgstr "Zápis súboru %s zlyhal" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "Zatvorenie súboru %s zlyhalo" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Toto nie je platný DEB archív, chýba časť „%s“" + +#: apt-inst/deb/debfile.cc:132 +#, c-format +msgid "Internal error, could not locate member %s" +msgstr "Vnútorná chyba, nedá sa nájsť časť %s" + +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Nespracovateľný riadiaci súbor" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Neplatný podpis archívu" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Chyba pri čítaní záhlavia prvku archívu" + +#: apt-inst/contrib/arfile.cc:96 +#, c-format +msgid "Invalid archive member header %s" +msgstr "Neplatná hlavička prvku archívu %s" + +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Neplatné záhlavie prvku archívu" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Archív je príliš krátky" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Chyba pri čítaní hlavičiek archívu" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Vytvorenie rúry zlyhalo" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Spustenie gzip zlyhalo " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Porušený archív" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Kontrolný súčet pre tar zlyhal, archív je poškodený" + +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Neznáma TAR hlavička typu %u, člen %s" + +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" msgstr "" -#: cmdline/apt-mark.cc:68 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Spúšťa sa dpkg" + +#: apt-pkg/init.cc:146 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s nemožno označiť, pretože nie je nainštalovaný.\n" +msgid "Packaging system '%s' is not supported" +msgstr "Systém balíkov „%s“ nie je podporovaný" -#: cmdline/apt-mark.cc:74 +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Nedá sa určiť vhodný typ systému balíkov" + +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s už bol označený ako manuálne nainštalovaný.\n" +msgid "Wrote %i records.\n" +msgstr "Zapísaných %i záznamov.\n" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s už bol označený ako automaticky nainštalovaný.\n" +msgid "Wrote %i records with %i missing files.\n" +msgstr "Zapísaných %i záznamov s %i chýbajúcimi súbormi.\n" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s bol už nastavený na podržanie.\n" +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Zapísaných %i záznamov s %i chybnými súbormi\n" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s bol už nastavený na nepodržanie.\n" +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "Zapísaných %i záznamov s %i chýbajúcimi a %i chybnými súbormi\n" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "%s set on hold.\n" -msgstr "%s je označený na podržanie.\n" +msgid "Can't find authentication record for: %s" +msgstr "Nebolo možné nájsť autentifikačný záznam pre: %s" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/indexcopy.cc:521 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Zrušené podržanie %s.\n" +msgid "Hash mismatch for: %s" +msgstr "Nezhoda kontrolných haš súčtov: %s" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "Vykonanie dpkg zlyhalo. Ste root?" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Zoznamy balíkov alebo stavový súbor sa nedajú spracovať alebo otvoriť." -#: cmdline/apt-mark.cc:392 -#, fuzzy -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" -"Použitie: apt-mark [voľby] {auto|manual} balík1 [balík2 ...]\n" -"\n" -"apt-mark je jednoduché rozhranie príkazového riadka na označovanie\n" -"balíkov ako manuálne alebo automaticky nainštalované.\n" -"Tiež dokáže označenia vypisovať.\n" -"\n" -"Príkazy:\n" -" auto - Označí uvedené balíky ako automaticky nainštalované\n" -" manual - Označí uvedené balíky ako manuálne nainštalované\n" -"\n" -"Voľby:\n" -" -h Tento text pomocníka.\n" -" -q Výstup vhodný do záznamu - bez indikátora priebehu\n" -" -qq Nevypisovať nič, len chyby\n" -" -s Nevykonávať zmeny. Iba vypísať, čo by sa urobilo.\n" -" -f čítanie/zápis označenia auto/manálne v uvedenom súbore\n" -" -c=? Načítať tento konfiguračný súbor\n" -" -o=? Nastaviť ľubovoľný konfiguračnú voľbu, napr. -o dir::cache=/tmp\n" -"Ďalšie informácie nájdete na manuálových stránkach apt-mark(8) a apt.conf(5)." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Na opravu týchto problémov môžete skúsiť spustiť apt-get update" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Nedá sa načítať zoznam zdrojov." -#: methods/cdrom.cc:203 -#, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Nedá sa čítať databáza na CD-ROM %s" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Vyrovnávacia pamäť balíkov je prázdna" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"Pre pridanie CD do APT použije apt-cdrom. apt-get update sa nedá využiť na " -"pridávanie nových CD." +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Súbor vyrovnávacej pamäti balíkov je poškodený" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Chybné CD" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Súbor vyrovnávacej pamäti balíkov je nezlučiteľnej verzie" -#: methods/cdrom.cc:249 +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "Súbor vyrovnávacej pamäti balíkov je poškodený, je príliš malý" + +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Nedá sa odpojiť CD-ROM v %s - možno sa ešte používa." +msgid "This APT does not support the versioning system '%s'" +msgstr "Tento APT nepodporuje systém na správu verzií „%s“" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disk sa nenašiel." +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Súbor vyrovnávacej pamäti balíkov bol vytvorený pre inú architektúru" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Súbor sa nenašiel" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Závisí na" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Vyhodnotenie zlyhalo" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Predzávisí na" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Zlyhalo nastavenie času zmeny" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Navrhuje" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Neplatné URI, lokálne URI nesmie začínať s //" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Odporúča" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Prihlasovanie" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Koliduje s" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Nedá sa zistiť názov druhej strany" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Nahrádza" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Nedá sa zistiť lokálny názov" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Zneplatňuje" -#: methods/ftp.cc:219 methods/ftp.cc:247 -#, c-format -msgid "The server refused the connection and said: %s" -msgstr "Server zamietol naše spojenie s chybou: %s" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Kazí" -#: methods/ftp.cc:225 +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Rozširuje" + +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "dôležitý" + +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "požadovaný" + +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "štandardný" + +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "voliteľný" + +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" + +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "USER failed, server said: %s" -msgstr "Zlyhalo zadanie používateľa, server odpovedal: %s" +msgid "The method driver %s could not be found." +msgstr "Nedá sa nájsť ovládač spôsobu %s." -#: methods/ftp.cc:232 +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Skontrolujte, či je nainštalovaný balík „dpkg-dev“.\n" + +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "PASS failed, server said: %s" -msgstr "Zlyhalo zadanie hesla, server odpovedal: %s" +msgid "Method %s did not start correctly" +msgstr "Spôsob %s nebol správne spustený" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"Bol zadaný proxy server, ale nie prihlasovací skript. Acquire::ftp::" -"ProxyLogin je prázdny." +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Vložte disk nazvaný „%s“ do mechaniky „%s“ a stlačte Enter." -#: methods/ftp.cc:280 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Príkaz „%s“ prihlasovacieho skriptu zlyhal, server odpovedal: %s" +msgid "Index file type '%s' is not supported" +msgstr "Indexový súbor typu „%s“ nie je podporovaný" -#: methods/ftp.cc:306 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Vytvára sa strom závislostí" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Kandidátske verzie" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Generovanie závislostí" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Načítavajú sa stavové informácie" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "Zlyhalo zadanie typu, server odpovedal: %s" +msgid "Failed to open StateFile %s" +msgstr "Nie je možné otvoriť StateFile %s" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Uplynul čas spojenia" +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Nie je možné zapísať dočasný StateFile %s" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Server ukončil spojenie" +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "premenovanie zlyhalo, %s (%s -> %s)." -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Odpoveď preplnila zásobník." +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Nezhoda kontrolných haš súčtov" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Narušenie protokolu" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Veľkosti sa nezhodujú" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Nedá sa vytvoriť socket" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Neplatná operácia %s" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Nedá sa pripojiť dátový socket, uplynul čas spojenia" +#: apt-pkg/acquire-item.cc:1573 +#, c-format +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" +"Nepodarilo sa nájsť očakávanú položku „%s“ v súbore Release (Nesprávna " +"položka sources.list alebo chybný formát súboru)" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Chyba" +#: apt-pkg/acquire-item.cc:1589 +#, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Nepodarilo sa nájsť haš „%s“ v súbore Release" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Nedá sa pripojiť pasívny socket." +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Nie sú dostupné žiadne verejné kľúče ku kľúčom s nasledovnými ID:\n" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo nezískal počúvajúci socket" +#: apt-pkg/acquire-item.cc:1669 +#, c-format +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" +"Súbor Release pre %s vypršal (neplatný od %s). Aktualizácie tohto zdroja " +"softvéru sa nepoužijú." -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Nedá sa nadviazať socket" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "V konflikte s distribúciou: %s (očakávalo sa %s ale dostali sme %s)" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Na sockete sa nedá počúvať" +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"Počas overovania podpisu sa vyskytla chyba. Repozitár nie je aktualizovaný a " +"použijú sa predošlé indexové súbory. Chyba GPG: %s: %s\n" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Názov socketu sa nedá zistiť" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "Chyba GPG: %s: %s" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Príkaz PORT sa nedá odoslať" +#: apt-pkg/acquire-item.cc:1859 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"Nedá sa nájsť súbor s balíkom %s. To by mohlo znamenať, že tento balík je " +"potrebné opraviť manuálne (kvôli chýbajúcej architektúre)." -#: methods/ftp.cc:802 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Neznáma rodina adries %u (AF_*)" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "Nie je možné nájsť zdroj na stiahnutie verzie „%s“ balíka „%s“" -#: methods/ftp.cc:811 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "Zlyhalo zadanie EPRT, server odpovedal: %s" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "Indexové súbory balíka sú narušené. Chýba pole Filename: pre balík %s." -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Uplynulo spojenie dátového socketu" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Indexový súbor typu „%s“ nie je podporovaný" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Spojenie sa nedá prijať" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Nie je možné vykonať stat %s." -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problém s hašovaním súboru" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Vyrovnávacia pamäť má nezlučiteľný systém na správu verzií" -#: methods/ftp.cc:890 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Súbor sa nedá stiahnuť, server odpovedal „%s“" +msgid "Error occurred while processing %s (%s%d)" +msgstr "Vyskytla sa chyba pri spracovávaní %s (%s%d)" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Uplynula doba dátového socketu" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "" +"Fíha, prekročili ste počet názvov balíkov, ktoré toto APT zvládne spracovať." -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Prenos dát zlyhal, server odpovedal „%s“" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Fíha, prekročili ste počet verzií, ktoré toto APT zvládne spracovať." -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Dotaz" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Fíha, prekročili ste počet popisov, ktoré toto APT zvládne spracovať." -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Nedá sa vyvolať " +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "" +"Fíha, prekročili ste počet závislostí, ktoré toto APT zvládne spracovať." -#: methods/connect.cc:76 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Pripája sa k %s (%s)" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Pri spracovaní závislostí nebol nájdený balík %s %s" -#: methods/connect.cc:87 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Couldn't stat source package list %s" +msgstr "Nedá sa vyhodnotiť zoznam zdrojových balíkov %s" -#: methods/connect.cc:94 -#, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Nedá sa vytvoriť socket pre %s (f=%u t=%u p=%u)" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Načítavajú sa zoznamy balíkov" -#: methods/connect.cc:100 -#, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Nedá sa nadviazať spojenie na %s:%s (%s)." +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Collecting File poskytuje" -#: methods/connect.cc:108 +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Nedá sa pripojiť k %s:%s (%s), uplynul čas spojenia" +msgid "Unable to write to %s" +msgstr "Do %s sa nedá zapisovať" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Nedá sa pripojiť k %s:%s (%s)." +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "V/V chyba pri ukladaní zdrojovej vyrovnávacej pamäti" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Connecting to %s" -msgstr "Pripája sa k %s" +msgid "Vendor block %s contains no fingerprint" +msgstr "Blok výrobcu %s neobsahuje otlačok (fingerprint)" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 #, c-format -msgid "Could not resolve '%s'" -msgstr "Nie je možné preložiť „%s“" +msgid "List directory %spartial is missing." +msgstr "Adresár zoznamov %spartial chýba." -#: methods/connect.cc:205 +#: apt-pkg/acquire.cc:91 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Dočasné zlyhanie pri preklade „%s“" - -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Niečo veľmi zlé sa prihodilo pri preklade „%s:%s“ (%i - %s)" +msgid "Archives directory %spartial is missing." +msgstr "Archívny adresár %spartial chýba." -#: methods/connect.cc:211 +#: apt-pkg/acquire.cc:99 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Niečo veľmi zlé sa prihodilo pri preklade „%s:%s“ (%i - %s)" +msgid "Unable to lock directory %s" +msgstr "Adresár %s sa nedá zamknúť" -#: methods/connect.cc:258 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Nedá sa pripojiť k %s:%s:" - -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "Vnútorná chyba: Správna signatúra, ale sa nedá zistiť odtlačok kľúča?!" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Bola zistená aspoň jedna nesprávna signatúra." - -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "Nedá sa spustiť „gpgv“ kvôli overeniu podpisu (je nainštalované gpgv?)" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Sťahuje sa %li. súbor z %li (zostáva %s)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire.cc:904 #, c-format +msgid "Retrieving file %li of %li" +msgstr "Sťahuje sa %li. súbor z %li" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" +"Niektoré indexové súbory sa nepodarilo stiahnuť. Boli ignorované alebo sa " +"použili staršie verzie." -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Neznáma chyba pri spustení gpgv" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Nasledovné signatúry sú neplatné:\n" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Do sources.list musíte zadať nejaký „source“ (zdrojový) URI" -#: methods/gpgv.cc:231 +#: apt-pkg/policy.cc:83 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"Nasledovné signatúry sa nedajú overiť, pretože nie je dostupný verejný " -"kľúč:\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Prázdne súbory nemôžu byť platné archívy" - -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Chyba zápisu do tohto súboru" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Chyba pri čítaní zo servera. Druhá strana ukončila spojenie" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Chyba pri čítaní zo servera" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Chyba zápisu do súboru" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Výber zlyhal" +"„%s“ nie je platná hodnota pre APT::Default-Release, pretože také vydanie " +"nie je dostupné v zdrojoch" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Uplynul čas spojenia" +#: apt-pkg/policy.cc:422 +#, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Neplatný záznam v súbore nastavení %s, chýba hlavička Package" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Chyba zápisu do výstupného súboru" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Nezrozumiteľné pridržanie typu %s" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Čaká sa na hlavičky" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Nebola zadaná žiadna (alebo nulová) priorita na pridržanie" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Chybná hlavička" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" +"Nebolo možné vykonať okamžitú konfiguráciu „%s“. Pozri prosím podrobnosti v " +"man 5 apt.conf pod APT::Immediate-Configure (%d)" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP server poslal neplatnú hlavičku odpovede" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Nedá sa nakonfigurovať „%s“." -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP server poslal neplatnú hlavičku Content-Length" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"Tento beh inštalácie si vyžiada dočasné odstránenie kľúčového balíka %s " +"kvôli slučke v Conflicts/Pre-Depends. Často je to nevhodné, ale ak to chcete " +"naozaj urobiť, aktivujte možnosť APT::Force-LoopBreak." -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP server poslal neplatnú hlavičku Content-Range" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "Riadok %u v zozname zdrojov %s je príliš dlhý." -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Tento HTTP server má poškodenú podporu rozsahov" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "CD-ROM sa odpája...\n" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Neznámy formát dátumu" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "Použije sa prípojný bod CD-ROM %s\n" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Zlé dátové záhlavie" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Čaká sa na disk...\n" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Spojenie zlyhalo" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Pripája sa CD-ROM...\n" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Vnútorná chyba" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identifikuje sa..." -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Prepočítava sa aktualizácia... " +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Uložená menovka: %s \n" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Hotovo" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Na disku sa hľadajú indexové súbory...\n" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/cdrom.cc:734 +#, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"Nájdených %zu indexov balíkov, %zu indexov zdrojových balíkov, %zu indexov " +"prekladov a %zu signatúr\n" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" +"Nepodarilo sa nájsť žiadne súbory balíkov, možno toto nie je disk s Debianom " +"alebo je pre nesprávnu architektúru?" -#: apt-private/private-list.cc:164 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Opravujú sa závislosti..." +msgid "Found label '%s'\n" +msgstr "Nájdená menovka: „%s“\n" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " zlyhalo." +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Neplatný názov, skúste znova.\n" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Závislosti sa nedajú opraviť" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Názov tohto disku je: \n" +"„%s“\n" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Sada na aktualizáciu sa nedá minimalizovať" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopírujú sa zoznamy balíkov..." -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Hotovo" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Zapisuje sa nový zoznam zdrojov\n" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Možno to budete chcieť napraviť spustením „apt-get -f install“." +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Položky zoznamu zdrojov pre tento disk sú:\n" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Nesplnené závislosti. Skúste použiť -f." +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "Je nutné preinštalovať balík %s, ale nedá sa nájsť jeho archív." -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" +"Chyba, pkgProblemResolver::Resolve vytvára poruchy, čo môže být spôsobené " +"pridržanými balíkmi." -#: apt-private/private-output.cc:234 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Nainštalovaný]" - -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [Nainštalovaný]" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Problémy sa nedajú opraviť, niektoré balíky držíte v poškodenom stave." -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Poslať scénár riešiteľovi" -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Nainštalovaný]" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Poslať požiadavku riešiteľovi" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Nainštalovaný]" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Pripraviť sa na prijatie riešenia" -#: apt-private/private-output.cc:249 -#, c-format -msgid "[upgradable from: %s]" -msgstr "" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "Externý riešiteľ zlyhal bez uvedenia chybovej správy" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Spustiť externého riešiteľa" -#: apt-private/private-output.cc:435 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "but %s is installed" -msgstr "ale nainštalovaný je %s" +msgid "Unable to parse package file %s (1)" +msgstr "Súbor %s sa nedá spracovať (1)" -#: apt-private/private-output.cc:437 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "but %s is to be installed" -msgstr "ale inštalovať sa bude %s" +msgid "Unable to parse package file %s (2)" +msgstr "Súbor %s sa nedá spracovať (2)" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "ale sa nedá nainštalovať" +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Nedá spracovať súbor Release %s" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "ale je to virtuálny balík" +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "Žiadne sekcie v Release súbore %s" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "ale nie je nainštalovaný" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Chýba položka „Hash“ v súbore Release %s" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "ale sa nebude inštalovať" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Chýba položka „Valid-Until“ v súbore Release %s" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " alebo" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Chýba položka „Date“ v súbore Release %s" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Nasledovné balíky majú nesplnené závislosti:" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Skomolený riadok %lu v zozname zdrojov %s (spracovanie URI)" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Nainštalujú sa nasledovné NOVÉ balíky:" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "" +"Skomolený riadok %lu v zozname zdrojov %s (nie je možné spracovať [option])" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Nasledovné balíky sa ODSTRÁNIA:" +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Skomolený riadok %lu v zozname zdrojov %s ([option] je príliš krátke)" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Nasledovné balíky sa ponechajú v súčasnej verzii:" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Skomolený riadok %lu v zozname zdrojov %s ([%s] nie je priradenie)" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Nasledovné balíky sa aktualizujú:" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Skomolený riadok %lu v zozname zdrojov %s ([%s] nemá kľúč)" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Nasledovné balíky sa DEGRADUJÚ:" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "Skomolený riadok %lu v zozname zdrojov %s ([%s] kľúč %s nemá hodnotu)" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Nasledovné pridržané balíky sa zmenia:" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Skomolený riadok %lu v zozname zdrojov %s (URI)" -#: apt-private/private-output.cc:668 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "%s (due to %s) " -msgstr "%s (kvôli %s) " +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Skomolený riadok %lu v zozname zdrojov %s (dist)" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" -msgstr "" -"UPOZORNENIE: Nasledovné dôležité balíky sa odstránia.\n" -"Ak presne neviete, čo robíte, tak to NEROBTE!" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Skomolený riadok %lu v zozname zdrojov %s (spracovanie URI)" -#: apt-private/private-output.cc:707 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu aktualizovaných, %lu nových nainštalovaných, " +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Skomolený riadok %lu v zozname zdrojov %s (absolútny dist)" -#: apt-private/private-output.cc:711 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinštalovaných, " +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Skomolený riadok %lu v zozname zdrojov %s (spracovanie dist)" -#: apt-private/private-output.cc:713 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "%lu downgraded, " -msgstr "%lu degradovaných, " +msgid "Opening %s" +msgstr "Otvára sa %s" -#: apt-private/private-output.cc:715 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu na odstránenie a %lu neaktualizovaných.\n" +msgid "Malformed line %u in source list %s (type)" +msgstr "Skomolený riadok %u v zozname zdrojov %s (typ)" -#: apt-private/private-output.cc:719 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu iba čiastočne nainštalovaných alebo odstránených.\n" +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Typ „%s“ je neznámy na riadku %u v zozname zdrojov %s" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Typ „%s“ je neznámy na riadku %u v zozname zdrojov %s" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Nebolo nájdené vydanie „%s“ pre „%s“" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Nebola nájdená verzia „%s“ pre „%s“" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "" +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Nebolo možné nájsť úlohu „%s“" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Príkaz update neprijíma žiadne argumenty" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Nebol nájdený žiaden balík zodpovedajúci regulárnemu výrazu „%s“" -#: apt-private/private-update.cc:90 +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Nebol nájdený žiaden balík zodpovedajúci regulárnemu výrazu „%s“" + +#: apt-pkg/cacheset.cc:626 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "Nie je možné vybrať verzie z balíka „%s“, pretože je čisto virtuálny" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" +"Nie je možné vybrať nainštalované ani kandidátske verzie z balíka „%s“, " +"pretože nemá žiadnu z nich" -#: apt-private/private-show.cc:156 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"Nie je možné vybrať najnovšiu verziu z balíka „%s“, pretože je čisto " +"virtuálny" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" +"Nie je možné vybrať kandidátsku verziu z balíka „%s“, pretože nemá kandidáta" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Vnútorná chyba, InstallPackages bolo volané s poškodenými balíkmi!" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"Nie je možné vybrať nainštalovanú verziu z balíka „%s“, pretože nie je " +"nainštalovaný" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Je potrebné odstránenie balíka, ale funkcia Odstrániť je vypnutá." +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%li d %li h %li min %li s" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Vnútorná chyba, Triedenie sa neukončilo" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%li h %li min %li s" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Nezvyčajná udalosť... Veľkosti nesúhlasia, pošlite e-mail na apt@packages." -"debian.org" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%li min %li s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Je potrebné stiahnuť %sB/%sB archívov.\n" +msgid "%lis" +msgstr "%li s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/contrib/strutl.cc:1246 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Je potrebné stiahnuť %sB archívov.\n" +msgid "Selection %s not found" +msgstr "Voľba %s nenájdená" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/contrib/fileutl.cc:190 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Po tejto operácii sa na disku použije ďalších %sB.\n" +msgid "Not using locking for read only lock file %s" +msgstr "Zamykanie pre súbor zámku %s, ktorý je iba na čítanie, sa nepoužíva" + +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Súbor zámku %s sa nedá otvoriť" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/contrib/fileutl.cc:218 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Po tejto operácii sa na disku uvoľní %sB.\n" +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Zamykanie pre súbor zámku %s pripojený cez NFS sa nepoužíva" -#: apt-private/private-install.cc:200 +#: apt-pkg/contrib/fileutl.cc:223 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Na %s nemáte dostatok voľného miesta." +msgid "Could not get lock %s" +msgstr "Zámok %s sa nedá získať" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Nastali problémy a -y bolo použité bez --force-yes" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "Zoznam súborov nemožno vytvoriť, pretože „%s“ nie je adresár" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Zadané „iba triviálne“, ale toto nie je triviálna operácia." +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "Ignoruje sa „%s“ v adresári „%s“, pretože to nie je obyčajný súbor" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Áno, urob to, čo vravím!" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "Ignoruje sa „%s“ v adresári „%s“, pretože nemá príponu názvu súboru" -#: apt-private/private-install.cc:222 +#: apt-pkg/contrib/fileutl.cc:421 #, c-format msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"Možno sa chystáte vykonať niečo škodlivé.\n" -"Ak chcete pokračovať, opíšte frázu „%s“\n" -" ?]" - -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Prerušené." +"Ignoruje sa „%s“ v adresári „%s“, pretože má neplatnú príponu názvu súboru" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Chcete pokračovať?" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Podproces %s obdržal chybu segmentácie." -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Niektoré súbory sa nedajú stiahnuť" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "Podproces %s dostal signál %u." -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Niektoré archívy sa nedajú stiahnuť. Skúste spustiť apt-get update alebo --" -"fix-missing" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "Podproces %s vrátil chybový kód (%u)" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing a výmena nosiča nie sú momentálne podporované" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Podproces %s neočakávane skončil" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Chýbajúce balíky sa nedajú opraviť." +#: apt-pkg/contrib/fileutl.cc:913 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problém pri zatváraní gzip súboru %s" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Inštalácia sa prerušuje." +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Nedá sa otvoriť súbor %s" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -"Nasledovný balík zmizol z vášho systému, pretože\n" -"všetky súbory boli prepísané inými balíkmi:" -msgstr[1] "" -"Nasledovné balíky zmizli z vášho systému, pretože\n" -"všetky súbory boli prepísané inými balíkmi:" -msgstr[2] "" -"Nasledovné balíky zmizli z vášho systému, pretože\n" -"všetky súbory boli prepísané inými balíkmi:" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Nedá sa otvoriť popisovač súboru %d" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Pozn.: Toto robí dpkg automaticky a zámerne." +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Nedá sa vytvoriť podproces IPC" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Nemajú sa odstraňovať veci, nespustí sa AutoRemover" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Nepodarilo sa spustiť kompresor " -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Hmm, zdá sa, že AutoRemover niečo zničil, čo sa naozaj nemalo stať.\n" -"Prosím, pošlite hlásenie o chybe balíka apt." +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "čítanie, treba prečítať ešte %llu, ale už nič neostáva" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "Nasledovné informácie vám možno pomôžu vyriešiť túto situáciu:" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "zápis, treba zapísať ešte %llu, no nedá sa to" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Vnútorná chyba, AutoRemover niečo pokazil" +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Problém pri zatváraní súboru %s" -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "" -"Nasledovný balík bol nainštalovaný automaticky a už viac nie je potrebný:" -msgstr[1] "" -"Nasledovné balíky boli nainštalované automaticky a už viac nie sú potrebné:" -msgstr[2] "" -"Nasledovné balíky boli nainštalované automaticky a už viac nie sú potrebné:" +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Problém pri synchronizovaní súboru %s na %s" -#: apt-private/private-install.cc:517 +#: apt-pkg/contrib/fileutl.cc:1938 #, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "" -"%lu balík bol nainštalovaný automaticky a už viac nie je potrebný.\n" -msgstr[1] "" -"%lu balíkov bolo nainštalovaných automaticky a už viac nie sú potrebné.\n" -msgstr[2] "" -"%lu balíkov bolo nainštalovaných automaticky a už viac nie sú potrebné.\n" +msgid "Problem unlinking the file %s" +msgstr "Problém pri odstraňovaní súboru %s" -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Na jeho odstránenie použite „apt-get autoremove“." -msgstr[1] "Na ich odstránenie použite „apt-get autoremove“." -msgstr[2] "Na ich odstránenie použite „apt-get autoremove“." +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Problém pri synchronizovaní súboru" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Možno to budete chcieť napraviť spustením „apt-get -f install“:" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Chyba!" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Nesplnené závislosti. Skúste spustiť „apt-get -f install“ bez balíkov (alebo " -"navrhnite riešenie)." +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Hotovo" -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -"Niektoré balíky sa nedajú nainštalovať. To môže znamenať, že požadujete\n" -"nemožnú situáciu, alebo ak používate nestabilnú distribúciu, že\n" -"požadované balíky ešte neboli vytvorené alebo presunuté z fronty\n" -"Novoprichádzajúcich (Incoming) balíkov." - -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Poškodené balíky" - -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Nainštalujú sa nasledovné extra balíky:" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Navrhované balíky:" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Hotovo" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Odporúčané balíky:" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Nedá sa vykonať mmap prázdneho súboru" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Preskakuje sa %s, pretože je už nainštalovaný.\n" +msgid "Couldn't duplicate file descriptor %i" +msgstr "Nedá sa duplikovať popisovač súboru %i" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/mmap.cc:119 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"Preskakuje sa %s, nie je nainštalovaný a bola vy6iadan8 iba aktualizácia.\n" +msgid "Couldn't make mmap of %llu bytes" +msgstr "Nedá sa urobiť mmap %llu bajtov" -#: apt-private/private-install.cc:841 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Nie je možná reinštalácia %s, pretože sa nedá stiahnuť.\n" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Nedá sa zatvoriť mmap" -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s je už najnovšej verzie.\n" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Nedá sa synchronizovať mmap" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Vybraná verzia „%s“ (%s) pre „%s“\n" +msgid "Couldn't make mmap of %lu bytes" +msgstr "Nedá sa urobiť mmap %lu bajtov" -#: apt-private/private-install.cc:899 -#, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Vybraná verzia „%s“ (%s) pre „%s“ kvôli „%s“\n" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Nepodarilo sa skrátiť súbor" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -"Balík „%s“ nie je nainštalovaný, nedá sa teda odstrániť. Mali ste na mysli " -"„%s“?\n" +"Nedostatok miesta pre dynamický MMap. Prosím, zväčšite veľkosť APT::Cache-" +"Start. Aktuálna hodnota: %lu. (man 5 apt.conf)" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Balík „%s“ nie je nainštalovaný, nedá sa teda odstrániť\n" - -#: apt-private/private-main.cc:32 msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -"POZN.: Toto je iba simulácia!\n" -" apt-get potrebuje na skutočné spustenie práva používateľa root.\n" -" Tiež pamätajte, že zamykanie je deaktivované, takže\n" -" sa nespoliehajte na to že to bude platiť v reálnej situácii!" - -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "UPOZORNENIE: Pri nasledovných balíkoch sa nedá overiť vierohodnosť!" - -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Upozornenie o vierohodnosti bolo potlačené.\n" - -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Nedala sa zistiť vierohodnosť niektorých balíkov" - -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Nainštalovať tieto nekontrolované balíky?" - -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Premenovanie %s na %s zlyhalo" +"Napodarilo sa zväčšiť veľkosť MMap, pretože limit %lu už bol dosiahnutý." -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" +"Napodarilo sa zväčšiť veľkosť MMap, pretože automatické zväčovanie vypol " +"používateľ." -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Prípojný bod %s sa nedá vyhodnotiť" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Už existuje " +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Nedá sa vykonať stat() CD-ROM" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Získava sa:" +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Nerozpoznaná skratka typu: „%c“" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Otvára sa konfiguračný súbor %s" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Chyba " +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntaktická chyba %s:%u: Blok začína bez názvu." -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/configuration.cc:820 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "%sB sa stiahlo za %s (%sB/s)\n" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntaktická chyba %s:%u: Skomolená značka" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/configuration.cc:837 #, c-format -msgid " [Working]" -msgstr " [Prebieha spracovanie]" +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntaktická chyba %s:%u: Za hodnotou nasledujú chybné údaje" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/configuration.cc:877 #, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -"Výmena nosiča: Vložte disk s názvom\n" -" „%s“\n" -"do mechaniky „%s“ a stlačte Enter\n" +"Syntaktická chyba %s:%u: Direktívy sa dajú vykonať len na najvyššej úrovni" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/configuration.cc:884 #, c-format -msgid "No mirror file '%s' found " -msgstr "Na zrkadle nebol nájdený súbor „%s“" +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntaktická chyba %s:%u: Príliš mnoho vnorených prepojení (include)" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Nepodarilo sa prečítať súbor „%s“ na zrkadle" - -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Nepodarilo sa prečítať súbor „%s“ na zrkadle" +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntaktická chyba %s:%u: Zahrnuté odtiaľ" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:897 #, c-format -msgid "[Mirror: %s]" -msgstr "[Zrkadlo: %s]" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Zlyhalo vytvorenie IPC rúry k podprocesu" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Spojenie bolo predčasne ukončené" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Chybné predvolené nastavenie!" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Stlačte Enter, ak chcete pokračovať." - -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Chcete odstrániť všetky doteraz stiahnuté .deb súbory?" +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntaktická chyba %s:%u: Nepodporovaná direktíva „%s“" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"Pri rozbaľovaní došlo k nejakým chybám. Balíky, ktoré boli nainštalované" - -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "budú nakonfigurované. Môže to spôsobiť opakované chybové správy" - -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "o nesplnených závislostiach. Je to v poriadku, dôležité sú iba" +"Syntaktická chyba %s:%u: direktíva clear vyžaduje ako argument strom volieb" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "" -"chyby nad touto správou. Opravte ich a potom znovu spusťte [I]nštalovať" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Syntaktická chyba %s:%u: Na konci súboru sú chybné údaje" -#: dselect/update:30 -msgid "Merging available information" -msgstr "Zlučujú sa dostupné informácie" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "V %s nie je nainštalovaný žiaden zväzok kľúčov." -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "Pokus o uvoľnenie uzla (DropNode) na stále prepojenom uzle" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Parameter príkazového riadka „%c“ [z %s] je neznámy" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Hašovací prvok sa nedá nájsť!" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Nezrozumiteľný parameter %s na príkazovom riadku" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Nedá sa alokovať diverzia" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Parameter príkazového riadku %s nie je pravdivostná hodnota" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Vnútorná chyba pri AddDiversion" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Voľba %s vyžaduje argument." -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Pokus o prepísanie diverzie, %s -> %s a %s/%s" +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Parameter %s: Zadanie konfiguračnej položky musí obsahovať =<hodn>." -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Dvojité pridanie diverzie %s -> %s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Voľba %s vyžaduje ako argument celé číslo (integer), nie „%s“" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Duplicitný konfiguračný súbor %s/%s" +msgid "Option '%s' is too long" +msgstr "Voľba „%s“ je príliš dlhá" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "The path %s is too long" -msgstr "Cesta %s je príliš dlhá" +msgid "Sense %s is not understood, try true or false." +msgstr "Nezrozumiteľný význam %s, skúste true alebo false. " -#: apt-inst/extract.cc:132 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "Unpacking %s more than once" -msgstr "%s sa rozbaľuje viackrát" +msgid "Invalid operation %s" +msgstr "Neplatná operácia %s" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "The directory %s is diverted" -msgstr "Adresár %s je divertovaný" +msgid "Installing %s" +msgstr "Inštaluje sa %s" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Balík sa pokúša zapisovať do diverzného cieľa %s/%s" +msgid "Configuring %s" +msgstr "Nastavuje sa %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Diverzná cesta je príliš dlhá" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Odstraňuje sa %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "Failed to stat %s" -msgstr "%s sa nedá vyhodnotiť" +msgid "Completely removing %s" +msgstr "Úplne sa odstraňuje %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Premenovanie %s na %s zlyhalo" +msgid "Noting disappearance of %s" +msgstr "Zaznamenali sme zmiznutie %s" -#: apt-inst/extract.cc:249 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Adresár %s sa nahradí neadresárom" +msgid "Running post-installation trigger %s" +msgstr "Vykonáva sa spúšťač post-installation %s" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Nedá sa nájsť uzol na adrese jeho hašu" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Adresár „%s“ chýba" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Cesta je príliš dlhá" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Nedá sa otvoriť súbor „%s“" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Prepísať zodpovedajúci balík bez udania verzie pre %s" +msgid "Preparing %s" +msgstr "Pripravuje sa %s" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Súbor %s/%s prepisuje ten z balíka %s" +msgid "Unpacking %s" +msgstr "Rozbaľuje sa %s" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Unable to stat %s" -msgstr "Nedá sa vyhodnotiť %s" +msgid "Preparing to configure %s" +msgstr "Pripravuje sa nastavenie %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Failed to write file %s" -msgstr "Zápis súboru %s zlyhal" +msgid "Installed %s" +msgstr "Nainštalovaný balík %s" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to close file %s" -msgstr "Zatvorenie súboru %s zlyhalo" +msgid "Preparing for removal of %s" +msgstr "Pripravuje sa odstránenie %s" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Toto nie je platný DEB archív, chýba časť „%s“" +msgid "Removed %s" +msgstr "Odstránený balík %s" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Vnútorná chyba, nedá sa nájsť časť %s" +msgid "Preparing to completely remove %s" +msgstr "Pripravuje sa úplné odstránenie %s" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Nespracovateľný riadiaci súbor" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Balík „%s“ je úplne odstránený" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Neplatný podpis archívu" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Chyba pri čítaní záhlavia prvku archívu" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Do %s sa nedá zapisovať" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Neplatná hlavička prvku archívu %s" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Neplatné záhlavie prvku archívu" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Archív je príliš krátky" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "Operácia bola prerušená predtým, než sa stihla dokončiť" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Chyba pri čítaní hlavičiek archívu" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "Nezapíše sa správa apport, pretože už bol dosiahnutý limit MaxReports" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Vytvorenie rúry zlyhalo" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "problém so závislosťami - ponecháva sa nenakonfigurované" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Spustenie gzip zlyhalo " +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Nezapíše sa správa apport, pretože chybová správa indikuje, že je to chyba v " +"nadväznosti na predošlé zlyhanie." -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Porušený archív" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Nezapíše sa správa apport, pretože chybová správa indikuje, že je disk " +"zaplnený" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Kontrolný súčet pre tar zlyhal, archív je poškodený" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Nezapíše sa správa apport, pretože chybová správa indikuje chybu nedostatku " +"pamäte" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Nezapíše sa správa apport, pretože chybová správa indikuje, že je disk " +"zaplnený" + +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Nezapíše sa správa apport, pretože chybová správa indikuje V/V chybu dpkg" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Neznáma TAR hlavička typu %u, člen %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "Nedá sa zamknúť adresár na správu (%s), používa ho iný proces?" + +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Nedá sa zamknúť adresár na správu (%s), ste root?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "dpkg bol prerušený, musíte ručne opraviť problém spustením „%s“. " + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Nie je zamknuté" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/sl.po b/po/sl.po index 5dba5f9f6..de1e2d398 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.5\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2012-06-27 21:29+0000\n" "Last-Translator: Andrej Znidarsic <andrej.znidarsic@gmail.com>\n" "Language-Team: Slovenian <sl@li.org>\n" @@ -20,3227 +20,3228 @@ msgstr "" "X-Poedit-Language: Slovenian\n" "X-Poedit-SourceCharset: utf-8\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "Vrsta datoteke s kazalom '%s' ni podprta" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "Ni mogoče brati %s" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Ni mogoče spremeniti v %s" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "Ni mogoče določiti %s." - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" - -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Poganjanje dpkg" - -#: apt-pkg/init.cc:146 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Paketni sistem '%s' ni podprt" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Ni mogoče določiti ustrezne vrste paketnega sistema" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Paket %s različica %s ima nerešene odvisnosti:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Zapisanih je bilo %i zapisov.\n" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Vseh imen paketov: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Zapisanih je bilo %i zapisov z %i manjkajočimi datotekami.\n" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Skupno struktur paketov : " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Zapisanih je bilo %i zapisov z %i neujemajočimi datotekami.\n" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Običajni paketi: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"Zapisanih je bilo %i zapisov z %i manjkajočimi datotekami in %i " -"neujemajočimi datotekami.\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Čisti navidezni paketi: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "Ni mogoče najti zapisa overitve za: %s" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Posamezni navidezni paketi: " -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "Neujemanje razpršila za: %s" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Mešani navidezni paketi: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Gonilnika načinov %s ni mogoče najti." +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Manjka: " -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Izberite, če je paket 'dpkg-dev' nameščen.\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Vseh različic: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Način %s se ni začel pravilno" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Skupno različnih opisov: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Vstavite disk z oznako '%s' v pogon '%s' in pritisnite vnosno tipko." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Vseh odvisnosti: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Ni mogoče odprti ali razčleniti seznama paketov ali datoteke stanja." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Vseh povezav Raz/Dat: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Za odpravljanje težav poskusite zagnati apt-get update." +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Skupno razmerij opisov/datotek: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Seznama virov ni mogoče brati." +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Vseh dobljenih preslikav: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Prazen predpomnilnik paketov" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Vseh razširjenih nizov: " -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Datoteka s predpomnilnikom paketov je pokvarjena" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Celotna velikost z odvisnostmi različice: " -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Različica datoteke s predpomnilnikom paketov ni združljiva" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Celotna ohlapna velikost: " -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Datoteka predpomnilnika paketa je okvarjena. Je premajhna" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Celotna velikost, izračunana za: " -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Ta APT ne podpira sistema različic '%s'" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Predpomnilnik paketov je bil izgrajen za drugačno arhitekturo" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Odvisen od" +msgid "Package file %s is out of sync." +msgstr "Datoteka paketa %s ni usklajena." -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Predodvisen od" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Noben paket ni bil najden" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Priporoča" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Podati morate vsaj en iskalni vzorec" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Priporoča" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "Ta ukaz je zastarel. Namesto njega uporabite 'apt-mark showauto'." -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "V sporu z" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "Ni mogoče najti paketa %s" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Zamenja" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Datoteke paketa:" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Zastara" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Predpomnilnik ni usklajen, x-ref datoteke paketa ni mogoč" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Pokvari" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Pripeti paketi:" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Izboljša" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(ni najdeno)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "pomembno" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Nameščen: " -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "obvezno" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Kandidat: " -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "običajni" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(brez)" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "izbirno" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Bucika paketa: " -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "dodatno" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Preglednica različic:" -#: apt-pkg/pkgrecords.cc:38 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "Vrsta datoteke s kazalom '%s' ni podprta" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s za %s kodno preveden na %s %s\n" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#: cmdline/apt-cache.cc:1749 +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Uporaba: apt-cache [možnosti] ukaz\n" +" apt-cache [možnosti] showpkg paket1 [paket2 ...]\n" +" apt-cache [možnosti] showsrc paket1 [paket2 ...]\n" +"\n" +"apt-cache je orodje nizke ravni za poizvedbo podatkov\n" +"iz binarni datotek predpomnilnika APT\n" +"\n" +"Ukazi:\n" +" gencaches - Izgradi tako predpomnilnik paketa in izvorne kode\n" +" showpkg - Prikaže nekaj splošnih podatkov o posameznem paketu\n" +" showsrc - Prikaže zapise izvorne kode\n" +" stats - Prikaže nekaj osnovne statistike\n" +" dump - Prikaže celotno datoteko v skrajšani obliki\n" +" dumpavail - Izpiše razpoložljivo datoteko na stdout\n" +" unmet - Prikaže nezadoščene odvisnosti\n" +" search - Išče seznam paketov z vzorcem logičnega izraza\n" +" show - Show a readable record for the package\n" +" depends - Prikaže surove podatke odvisnosti za paket\n" +" rdepends - Pokaže obratne podatke odvisnosti za paket\n" +" pkgnames - Izpiše imena vseh paketov na sistemu\n" +" dotty - Ustvari grafe paketa za GraphViz\n" +" xvcg - Ustvari grafe paketa za xvcg\n" +" policy - Prikaže nastavitve pravil\n" +"\n" +"Možnosti:\n" +" -h To besedilo pomoči.\n" +" -p=? Predpomnilnik paketov.\n" +" -s=? Predpomnilnik izvorne kode.\n" +" -q Onemogoči kazalnik napredka.\n" +" -i Pokaže le pomembne odvisnosti za neujemajoč ukaz.\n" +" -c=? Prebere to nastavitveno datoteko\n" +" -o=? Nastavi poljubno možnost nastavitve, na primer -o dir::cache=/tmp\n" +"Za več podrobnosti si oglejte strani priročnikov apt-cache(8) in apt." +"conf(5).\n" + +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Navedite ime tega diska, kot je naprimer 'Debian 5.0.3 disk 1'" + +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Vstavite disk v pogon in pritisnite vnosno tipko" + +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Regex compilation error - %s" -msgstr "Napaka med prevajanjem logičnega izraza - %s" +msgid "Failed to mount '%s' to '%s'" +msgstr "Priklapljanje '%s' na '%s' je spodletelo" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Predpomnilnik ima neustrezen sistem različic" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Ponovi to opravilo za preostanek CD-jev v vaši zbirki." + +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumenti niso v parih" + +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"Uporaba: apt-config [možnosti] ukaz\n" +"\n" +"apt-config je preprosto orodje za branje nastavitvene datoteke APT\n" +"\n" +"Ukazi:\n" +" shell - Lupinski način\n" +" dump - Prikaže nastavitve\n" +"\n" +"Možnosti:\n" +" -h To besedilo pomoči.\n" +" -c=? Prebere podano datoteko z nastavitvami\n" +" -o=? Nastavi poljubno nastavitveno možnost, na primer. -o dir::cache=/tmp\n" + +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Z logičnim izrazom '%s' ni mogoče najti nobenega paketa" + +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Z logičnim izrazom '%s' ni mogoče najti nobenega paketa" + +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Z logičnim izrazom '%s' ni mogoče najti nobenega paketa" + +#: cmdline/apt-get.cc:367 #, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Med obdelovanjem %s je prišlo do napake (%s%d)" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Izbiranje '%s' kot vir paketa namesto '%s'\n" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "Čestitamo, presegli ste število imen paketov, ki jih zmore APT." +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Prezri nerazpoložljivo različico '%s' paketa '%s'" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Čestitamo, presegli ste število različic, ki jih zmore APT." +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Ni mogoče najti paketa %s" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Čestitamo, presegli ste število opisov, ki jih je zmožen APT." +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s je bil nastavljen na ročno nameščen.\n" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "Čestitamo, presegli ste število odvisnosti, ki jih zmore APT." +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s je nastavljen na samodejno nameščen.\n" -#: apt-pkg/pkgcachegen.cc:576 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" +"Ta ukaz je zastarel. Namesto njega uporabite 'apt-mark auto' in 'apt-mark " +"manual'." + +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Notranja napaka, reševalnik težav je pokvaril stvari" + +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Ni mogoče zakleniti mape prejemov" + +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "" +"Potrebno je navesti vsaj en paket, za katerega želite dobiti izvorno kodo" + +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 #, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "Paketa %s %s ni bilo mogoče najti med obdelavo odvisnosti datotek" +msgid "Unable to find a source package for %s" +msgstr "Izvornega paketa za %s ni mogoče najti" -#: apt-pkg/pkgcachegen.cc:1211 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Ni mogoče določiti seznama izvornih paketov %s" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"OPOMBA: pakiranje '%s' vzdrževano v sistemu nadzora različice '%s' na:\n" +"%s\n" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Branje seznama paketov" +#: cmdline/apt-get.cc:791 +#, c-format +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"Uporabite:\n" +"bzr branch %s\n" +"za pridobitev zadnjih (morda še neizdanih) posodobitev paketa.\n" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Zbiranje dobaviteljev datotek" +#: cmdline/apt-get.cc:843 +#, c-format +msgid "Skipping already downloaded file '%s'\n" +msgstr "Preskok že prejete datoteke '%s'\n" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "Unable to write to %s" -msgstr "Ni mogoče pisati na %s" +msgid "Couldn't determine free space in %s" +msgstr "Ni mogoče določiti prostega prostora v %s" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Napaka VI med shranjevanjem predpomnilnika virov" +#: cmdline/apt-get.cc:882 +#, c-format +msgid "You don't have enough free space in %s" +msgstr "Nimate dovolj prostora na %s" + +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 +#, c-format +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Potrebno je dobiti %sB/%sB izvornih arhivov.\n" + +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 +#, c-format +msgid "Need to get %sB of source archives.\n" +msgstr "Potrebno je dobiti %sB izvornih arhivov.\n" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "Pošlji scenarij reševalniku" +#: cmdline/apt-get.cc:902 +#, c-format +msgid "Fetch source %s\n" +msgstr "Dobi vir %s\n" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "Pošlji zahtevo reševalniku" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Nekaterih arhivov ni mogoče pridobiti." -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "Priprava za rešitev prejemanja" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Prejem je dokončan in uporabljen je način samo prejema" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "Zunanji reševalnik je spodletel brez pravega sporočila o napakah" +#: cmdline/apt-get.cc:950 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Odpakiranje že odpakiranih izvornih paketov v %s je bilo preskočeno\n" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "Izvedi zunanji reševalnik" +#: cmdline/apt-get.cc:963 +#, c-format +msgid "Unpack command '%s' failed.\n" +msgstr "Ukaz odpakiranja '%s' ni uspel.\n" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:964 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "preimenovanje je spodletelo, %s (%s -> %s)." +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Izberite, če je paket 'dpkg-dev' nameščen.\n" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Neujemanje vsote razpršil" +#: cmdline/apt-get.cc:992 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Ukaz gradnje '%s' ni uspel.\n" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Neujemanje velikosti" +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Podrejeno opravilo ni uspelo" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Neveljavno opravilo %s" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "" +"Potrebno je navesti vsaj en paket, za katerega želite preveriti odvisnosti " +"za gradnjo" -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -"Ni mogoče najti pričakovanega vnosa '%s' v datoteki Release (napačen vnos " -"sources.list ali slabo oblikovana datoteka)" +"Za %s ni bilo mogoče najti podatkov o arhitekturi. Za nastavitev si oglejte " +"apt.conf(5) APT::Architectures" -#: apt-pkg/acquire-item.cc:1589 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Ni mogoče najti vsote razprševanja za '%s' v datoteki Release" +msgid "Unable to get build-dependency information for %s" +msgstr "Ni mogoče dobiti podrobnosti o odvisnostih za gradnjo za %s" -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Za naslednje ID-je ključa ni na voljo javnih ključev:\n" +#: cmdline/apt-get.cc:1102 +#, c-format +msgid "%s has no build depends.\n" +msgstr "%s nima odvisnosti za gradnjo.\n" -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:1272 #, c-format msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" msgstr "" -"Datoteka Release za %s je potekla (neveljavna od %s). Posodobitev za to " -"skladišče ne bo uveljavljena." - -#: apt-pkg/acquire-item.cc:1691 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Distribucija v sporu: %s (pričakovana %s, toda dobljena %s)" +"odvisnosti %s za %s ni mogoče zadovoljiti, ker %s ni dovoljen na paketih '%s'" -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Med preverjanjem podpisa je prišlo do napake. Skladišče ni bilo posodobljeno " -"zato bodo uporabljene predhodne datoteke kazal. Napaka GPG: %s: %s\n" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "%s odvisnosti za %s ni mogoče zadostiti, ker ni mogoče najti paketa %s" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "GPG error: %s: %s" -msgstr "Napaka GPG: %s: %s" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"Ni mogoče zadostiti %s odvisnosti za %s. Nameščen paket %s je preveč nov" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:1352 #, c-format msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" -"Ni bilo mogoče najti datoteke za paket %s. Morda boste morali ročno " -"popraviti ta paket (zaradi manjkajočega arhiva)." - -#: apt-pkg/acquire-item.cc:1925 -#, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "Ni mogoče najti vira za prejem različice '%s' paketa '%s'" +"odvisnosti %s za %s ni mogoče zadovoljiti, ker je različica kandidata paketa " +"%s ne more zadostiti zahtev različice" -#: apt-pkg/acquire-item.cc:1983 +#: cmdline/apt-get.cc:1358 #, c-format msgid "" -"The package index files are corrupted. No Filename: field for package %s." +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -"Datoteke s kazali paketov so pokvarjene. Brez imena datotek: polje za paket " -"%s." - -#: apt-pkg/vendorlist.cc:85 -#, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Ponudnikov blok %s ne vsebuje prstnega podpisa" - -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, c-format -msgid "List directory %spartial is missing." -msgstr "Mapa seznama %spartial manjka." +"odvisnosti %s za %s ni mogoče zadovoljiti, ker je različica kandidata paketa " +"%s nima različice kandidata" -#: apt-pkg/acquire.cc:91 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Mapa arhivov %spartial manjka." +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Ni mogoče zadostiti %s odvisnosti za %s: %s" -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Unable to lock directory %s" -msgstr "Mape %s ni mogoče zakleniti" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Odvisnosti za gradnjo %s ni bilo mogoče zadostiti." -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 -#, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Pridobivanje datoteke %li od %li (%s preostalo)" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Obdelava odvisnosti za gradnjo je spodletela" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Pridobivanje datoteke %li od %li" +msgid "Changelog for %s (%s)" +msgstr "Dnevnik sprememb za %s (%s)" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Ni mogoče dobiti %s %s\n" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Podprti moduli:" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#: cmdline/apt-get.cc:1633 msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" +msgstr "" +"Uporaba: apt-get [možnosti] ukaz\n" +" apt-get [možnosti] install|remove paket1 [paket2 ...]\n" +" apt-get [možnosti] source paket1 [paket2 ...]\n" +"\n" +"apt-get je enostaven vmesnik ukazne vrstice za prejem in nameščanje\n" +"paketov. Najbolj pogosto uporabljana ukaza sta update in install.\n" +"\n" +"Ukazi:\n" +" update - Pridobi nove sezname paketov\n" +" upgrade - Izvedix nadgradnjo\n" +" install - Namesti nove pakete (paket je libc6, ne libc6.deb)\n" +" remove - Odstrani pakete\n" +" autoremove - Samodejno odstrani vse neuporabljene pakete\n" +" purge - Odstrani pakete in nastavitvene datoteke\n" +" source - Prejmi arhive izvorne kode\n" +" build-dep - Nastavi odvisnosti gradnje za paket izvorne kode\n" +" dist-upgrade - Nadgradnja distribucije, oglejte si apt-get(8)\n" +" dselect-upgrade - Sledi izbiri dselect\n" +" clean - Izbriši prejete datoteke arhivov\n" +" autoclean - Izbriše stare prejete datoteke arhivov\n" +" check - Preveri, da ni pokvarjenih odvisnosti\n" +" changelog - Prejmi in prikaže dnevnik sprememb za dani paket\n" +" download - Prejmi binarni paket v trenutno mapo\n" +"\n" +"Možnosti:\n" +" -h To besedilo pomoči.\n" +" -q Izhod se beleži - brez kazalnika napredka\n" +" -qq Ni izhoda razen napak\n" +" -d Le prejmi - NE nameščaj ali odpakiraj arhivov\n" +" -s Ne naredi ničesar. Izvedi simulacijo ukaza\n" +" -y Predpostavi Da vsem poizvedbam in ne pozivaj\n" +" -f Poskusi popraviti sistem s pokvarjenimi odvisnostmi\n" +" -m Poskusi nadaljevati, če arhivov ni mogoče najti\n" +" -u Pokaži tudi seznam nadgrajenih paketov\n" +" -b Po pridobitvi izgradi izvorni paket\n" +" -V Pokaži podrobne številke različic\n" +" -c=? Preberi to nastavitveno datoteko\n" +" -o=? Nastavi poljubno nastavitveno možnost, na primer -o dir::cache=/tmp\n" +"Za več podrobnosti in možnosti si oglejte strani priročnikov apt-get(8),\n" +" sources.list(5) in apt.conf(5). \n" +" Ta APT ima moči super krav.\n" + +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" msgstr "" -"Prejem nekaterih datotek kazala je spodletel. Bile so prezrte ali pa so bile " -"namesto njih uporabljene stare." +"Potrebno je navesti vsaj en paket, za katerega želite dobiti izvorno kodo" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "V sources.list morate vstaviti URI-je z viri" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: apt-pkg/policy.cc:83 -#, c-format +#: cmdline/apt-helper.cc:66 msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Vrednost '%s' je neveljavna za APT::Default-Release in zato takšna izdaja ni " -"na voljo v virih" -#: apt-pkg/policy.cc:422 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Neveljaven zapis v datoteki možnosti %s, ni glave paketa" +msgid "%s can not be marked as it is not installed.\n" +msgstr "paket %s ne more biti označen, ker ni nameščen.\n" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "Did not understand pin type %s" -msgstr "Ni mogoče razumeti vrste bucike %s" - -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Prednost bucike ni navedena ali pa je nič." +msgid "%s was already set to manually installed.\n" +msgstr "paket %s je bil že nastavljen na ročno nameščen.\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" -msgstr "" -"Ni mogoče izvesti takojąnje nastavitve na '%s'. Oglejte si man5 apt.conf pod " -"APT::Immediate-Configure za podrobnosti. (%d)" +msgid "%s was already set to automatically installed.\n" +msgstr "paket %s je bil že nastavljen kot samodejno nameščen.\n" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Could not configure '%s'. " -msgstr "Ni mogoče nastaviti '%s' " +msgid "%s was already set on hold.\n" +msgstr "paket %s je bil že nastavljen kot na čakanju.\n" -#: apt-pkg/packagemanager.cc:583 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." -msgstr "" -"Ta krog namestitve zahteva začasno odstranitev ključnega paketa %s zaradi " -"zanke spora/predodvisnosti. To je ponavadi slabo, toda če zares želite " -"nadaljevati, vključite možnost APT::Force-LoopBreak." +msgid "%s was already not hold.\n" +msgstr "paket %s je bil že nastavljen kot ne na čakanju.\n" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Line %u too long in source list %s." -msgstr "Vrstica %u v seznamu virov %s je predolga." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Odklapljanje CD-ROM-a ...\n" +msgid "Waited for %s but it wasn't there" +msgstr "Program je čakal na %s a ga ni bilo tam" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Uporabljanje CD-ROM-ove priklopne točke %s\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Čakanje na disk ...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Priklapljanje CD-ROM-a ...\n" - -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identificiranje ... " +msgid "%s set on hold.\n" +msgstr "paket %s je nastavljen kot na čakanju.\n" -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "Stored label: %s\n" -msgstr "Shranjena oznaka: %s\n" - -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Preiskovanje diska za datoteke kazala ...\n" +msgid "Canceled hold on %s.\n" +msgstr "Čakanje za %s je bilo preklicano.\n" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Najdenih je bilo %zu kazal paketov, %zu kazal virov, %zu kazalov prevodov in " -"%zu podpisov\n" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "Izvajanje dpkg je spodletelo. Ali ste skrbnik?" -#: apt-pkg/cdrom.cc:744 +#: cmdline/apt-mark.cc:392 +#, fuzzy msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -"Nobenih datotek paketov ni mogoče najti, morda to ni disk Debian ali pa je " -"arhitektura napačna?" - -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Najdena je bila oznaka '%s'\n" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "To ni veljavno ime, poskusite znova.\n" +"Uporaba: apt-mark [možnosti] {auto|manual} paket1 [paket2 ...]\n" +"\n" +"apt-mark je enostaven vmesnik ukazne vrstice za označevanje paketov\n" +"kot ročno ali samodejno nameščenih. Oznake lahko tudi izpiše.\n" +"\n" +"Ukazi:\n" +" auto - Označi dane pakete kot samodejno nameščene\n" +" manual - Označi dane pakete kot ročno nameščene\n" +"\n" +"Možnosti:\n" +" -h To besedilo pomoči.\n" +" -q Izhod se beleži - brez kazalnika napredka\n" +" -qq Brez izhoda razen napak\n" +" -s Ne naredi ničesar. Samo napiše kaj bi bilo narejeno.\n" +" -f Prebere/zapiše oznako ročno/samodejno za dano datoteko\n" +" -c=? Prebere to nastavitveno datoteko\n" +" -o=? Nastavi poljubno nastavitveno možnost, na primer -o dir::cache=/tmp\n" +"Za več podrobnosti si oglejte strani priročnika apt-mark(8) in apt-conf(5)." -#: apt-pkg/cdrom.cc:817 -#, c-format +#: cmdline/apt.cc:47 msgid "" -"This disc is called: \n" -"'%s'\n" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -"Ta disk se imenuje: \n" -"'%s'\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopiranje seznama paketov ..." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Pisanje novega seznama virov\n" - -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Izvorni vnosi za ta disk so:\n" -#: apt-pkg/algorithms.cc:265 +#: methods/cdrom.cc:203 #, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "Paket %s mora biti znova nameščen, vendar ni mogoče najti arhiva zanj." +msgid "Unable to read the cdrom database %s" +msgstr "Ni mogoče brati podatkovne zbirke %s na CD-ROM-u" -#: apt-pkg/algorithms.cc:1086 +#: methods/cdrom.cc:212 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" msgstr "" -"Napaka. pkgProblemResolver::Resolve pri razrešitvi, ki so jih morda " -"povzročili zadržani paketi." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Ni mogoče popraviti težav. Imate pokvarjene pakete." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Gradnja drevesa odvisnosti" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Različice kandidatov" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Ustvarjanje odvisnosti" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Branje podatkov o stanju" - -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Odpiranje DatotekeStanja %s je spodletelo" - -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Pisanje začasne DatotekeStanja %s je spodletelo" +"Uporabite apt-cdrom, če želite, da APT prepozna CD. apt-get update ne more " +"sam dodati novih CD-ROM-ov" -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Ni mogoče razčleniti datoteke paketa %s (1)" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Napačen CD-ROM" -#: apt-pkg/tagfile.cc:237 +#: methods/cdrom.cc:249 #, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Ni mogoče razčleniti datoteke paketa %s (2)" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Ni mogoče odklopiti CD-ROM-a v %s, ker je morda še v uporabi." -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Izdaje '%s' za '%s' ni mogoče najti" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Diska ni mogoče najti." -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Različice '%s' za '%s' ni mogoče najti" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Datoteke ni mogoče najti" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "Ni mogoče najti paketa %s" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Določitev ni uspela" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Ni mogoče najti naloge '%s'" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Nastavitev časa spremembe je spodletela" -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Z logičnim izrazom '%s' ni mogoče najti nobenega paketa" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Neveljaven URI. Krajevni URI-ji se morajo začeti z //" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Z logičnim izrazom '%s' ni mogoče najti nobenega paketa" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Prijavljanje" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "Ni mogoče izbrati različic in paketa '%s', saj je popolnoma navidezen" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Ni mogoče ugotoviti imena gostitelja" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" -"Ni mogoče izbrati nameščene različice ali različice kandidata iz paketa " -"'%s', saj nima nobenega od njiju" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Ni mogoče določiti krajevnega imena" -#: apt-pkg/cacheset.cc:647 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"Ni mogoče izbrati najnovejše različice iz paketa '%s', saj je popolnoma " -"navidezen" +msgid "The server refused the connection and said: %s" +msgstr "Strežnik je zavrnil povezavo in sporočil: %s" -#: apt-pkg/cacheset.cc:655 +#: methods/ftp.cc:225 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "Ni mogoče izbrati različice kandidata iz paketa %s, ker nima kandidata" +msgid "USER failed, server said: %s" +msgstr "USER je spodletel, strežnik je odgovoril: %s" -#: apt-pkg/cacheset.cc:663 +#: methods/ftp.cc:232 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "Ni mogoče izbrati nameščene različice iz paketa %s, saj ni nameščen" +msgid "PASS failed, server said: %s" +msgstr "PASS je spodletel, strežnik je odgovoril: %s" -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "Ni mogoče razčleniti Release datoteke %s" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"Naveden je bil posredniški strežnik, ne pa tudi prijavni skript. Acquire::" +"ftp::ProxyLogin je prazen." -#: apt-pkg/indexrecords.cc:86 +#: methods/ftp.cc:280 #, c-format -msgid "No sections in Release file %s" -msgstr "Ni izbir v Release datoteki %s" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Ukaz prijavne skripte '%s' ni uspel, strežnik je odgovoril: %s" -#: apt-pkg/indexrecords.cc:117 +#: methods/ftp.cc:306 #, c-format -msgid "No Hash entry in Release file %s" -msgstr "Ni vnosa razpršila v Release datoteki %s" +msgid "TYPE failed, server said: %s" +msgstr "TYPE je spodletel, strežnik je odgovoril: %s" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Neveljaven vnos 'Veljavno-do' v Release datoteki %s" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Povezava je zakasnela" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Neveljavne vnos 'Datum' v Release datoteki %s" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Strežnik je zaprl povezavo" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Slabo oblikovana vrstica %lu v seznamu virov %s (razčlenitev URI)" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Napaka branja" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"Slabo oblikovana vrstica %lu na seznamu virov %s ([možnosti] ni mogoče " -"razčleniti)" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Odgovor je prekoračil predpomnilnik." -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Slabo oblikovana vrstica %lu na seznamu virov %s ([možnost] prekratka)" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Okvara protokola" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Slabo oblikovana vrstica %lu na seznamu vrstic %s ([%s] ni dodelitev)" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Napaka pisanja" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Slabo oblikovana vrstica %lu na seznamu virov %s ([%s] nima ključa)" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Ni mogoče ustvariti vtiča" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Slabo oblikovana vrstica %lu na seznamu virov %s ([%s] ključ %s nima " -"vrednosti)" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Ni mogoče povezati podatkovnega vtiča. Povezava je zakasnela." -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Slabo oblikovana vrstica %lu v seznamu virov %s (URI)" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Spodletelo" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Slabo oblikovana vrstica %lu v seznamu virov %s (distribucija)" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Ni mogoče povezat pasivnega vtiča." -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Slabo oblikovana vrstica %lu v seznamu virov %s (razčlenitev URI)" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo ni mogel dobiti poslušajočega vtiča" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "" -"Slabo oblikovana vrstica %lu v seznamu virov %s (absolutna distribucija)" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Ni mogoče povezati vtiča" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "" -"Slabo oblikovana vrstica %lu v seznamu virov %s (razčlenitev distribucije)" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Ni mogoče poslušati na vtiču" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Odpiranje %s" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Ni mogoče določiti imena vtiča" -#: apt-pkg/sourcelist.cc:371 +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Ni mogoče poslati ukaza PORT" + +#: methods/ftp.cc:802 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Slabo oblikovana vrstica %u v seznamu virov %s (vrsta)" +msgid "Unknown address family %u (AF_*)" +msgstr "Neznan naslov družine %u (AF_*)" -#: apt-pkg/sourcelist.cc:375 +#: methods/ftp.cc:811 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Vrsta '%s' v vrstici %u na seznamu virov %s ni znana" +msgid "EPRT failed, server said: %s" +msgstr "EPRT ni uspel, strežnik je odgovoril: %s" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Vrsta '%s' v vrstici %u na seznamu virov %s ni znana" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Povezava podatkovne vtičnice je zakasnela" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Nameščanje %s" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Ni mogoče sprejeti povezave" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Nastavljanje %s" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Težava med razprševanjem datoteke" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#: methods/ftp.cc:890 #, c-format -msgid "Removing %s" -msgstr "Odstranjevanje %s" +msgid "Unable to fetch file, server said '%s'" +msgstr "Ni mogoče pridobiti datoteke, strežnik je odgovoril '%s'" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "%s je bil popolnoma odstranjen" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Podatkovna vtič je potekel" -#: apt-pkg/deb/dpkgpm.cc:99 +#: methods/ftp.cc:935 #, c-format -msgid "Noting disappearance of %s" -msgstr "%s je izginil" +msgid "Data transfer failed, server said '%s'" +msgstr "Prenos podatkov ni uspel, strežnik je odgovoril '%s'" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Poganjanje sprožilca po namestitvi %s" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Poizvedba" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Mapa '%s' manjka" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Ni mogoče klicati " -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#: methods/connect.cc:76 #, c-format -msgid "Could not open file '%s'" -msgstr "Ni mogoče odpreti datoteke '%s'" +msgid "Connecting to %s (%s)" +msgstr "Povezovanje z %s (%s)" -#: apt-pkg/deb/dpkgpm.cc:989 +#: methods/connect.cc:87 #, c-format -msgid "Preparing %s" -msgstr "Pripravljanje %s" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/deb/dpkgpm.cc:990 +#: methods/connect.cc:94 #, c-format -msgid "Unpacking %s" -msgstr "Razširjanje %s" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Ni mogoče ustvariti vtiča za %s (f=%u t=%u p=%u)" -#: apt-pkg/deb/dpkgpm.cc:995 +#: methods/connect.cc:100 #, c-format -msgid "Preparing to configure %s" -msgstr "Pripravljanje na nastavljanje %s" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Ni mogoče začeti povezave z %s:%s (%s)." -#: apt-pkg/deb/dpkgpm.cc:997 +#: methods/connect.cc:108 #, c-format -msgid "Installed %s" -msgstr "%s je bil nameščen" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Ni se mogoče povezati z %s:%s (%s). Povezava je zakasnela." -#: apt-pkg/deb/dpkgpm.cc:1002 +#: methods/connect.cc:126 #, c-format -msgid "Preparing for removal of %s" -msgstr "Pripravljanje na odstranitev %s" +msgid "Could not connect to %s:%s (%s)." +msgstr "Ni se mogoče povezati z %s:%s (%s)." -#: apt-pkg/deb/dpkgpm.cc:1004 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Removed %s" -msgstr "%s je bil odstranjen" +msgid "Connecting to %s" +msgstr "Povezovanje z %s" -#: apt-pkg/deb/dpkgpm.cc:1009 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Pripravljanje na popolno odstranitev %s" +msgid "Could not resolve '%s'" +msgstr "Ni mogoče razrešiti '%s'" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: methods/connect.cc:205 #, c-format -msgid "Completely removed %s" -msgstr "%s je bil popolnoma odstranjen" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +msgid "Temporary failure resolving '%s'" +msgstr "Začasna napaka med razreševanjem '%s'" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#: methods/connect.cc:209 #, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Ni mogoče pisati na %s" - -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +msgid "System error resolving '%s:%s'" +msgstr "Nekaj čudnega se je zgodilo med razreševanjem '%s:%s' (%i - %s)" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/connect.cc:211 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Program je čakal na %s a ga ni bilo tam" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Nekaj čudnega se je zgodilo med razreševanjem '%s:%s' (%i - %s)" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "Opravilo je bilo prekinjeno preden se je lahko končalo" +#: methods/connect.cc:258 +#, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Ni se mogoče povezati z %s:%s:" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Poročilo apport ni bilo napisano, ker je bilo število MaxReports že doseženo" +"Notranja napaka: Dober podpis, toda ni mogoče določiti podpisa ključa?!" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "težave odvisnosti - puščanje nenastavljenega" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Najden je bil vsaj en neveljaven podpis." -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"Poročilo apport ni bilo napisano, ker sporočilo o napaki nakazuje na " -"navezujočo napako iz predhodne napake." +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "Ni mogoče izvesti 'gpgv' za preverjanje podpisa (je gpgv nameščen?)" -#: apt-pkg/deb/dpkgpm.cc:1644 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 +#, c-format msgid "" -"No apport report written because the error message indicates a disk full " -"error" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"Poročilo apport ni bilo napisano, ker sporočilo o napaki nakazuje na napako " -"polnega diska" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Poročilo apport ni bilo napisano, ker sporočilo o napaki nakazuje na napako " -"zaradi pomanjkanja pomnilnika" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Neznana napaka med izvajanjem gpgv" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" -"Poročilo apport je bilo napisano, ker sporočilo o napaki nakazuje na težavo " -"na krajevnem sistemu" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Naslednji podpisi so bili neveljavni:\n" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: methods/gpgv.cc:231 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -"Poročilo apport ni bilo napisano, ker sporočilo o napaki nakazuje na napako " -"dpkg V/I" +"Naslednjih podpisov ni mogoče preveriti, ker javni ključ ni na voljo:\n" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"Skrbniške mape (%s) ni mogoče zakleniti. Jo morda uporablja drugo opravilo?" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Prazne datoteke ne morejo biti veljavni arhivi" -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Skrbniške mape (%s) ni mogoče zakleniti. Ali ste skrbnik?" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Napaka med pisanjem v datoteko" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "dpkg je bil prekinjen. Za popravilo napake morate ročno pognati '%s'. " +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Napaka med branjem s strežnika. Oddaljeni del je zaprl povezavo" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Ni zaklenjeno" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Napaka med branjem s strežnika" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lid %lih %limin %lis" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Napaka med pisanjem v datoteko" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%lih %limin %lis" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Izbira ni uspela" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%limin %lis" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Povezava je zakasnela" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%lis" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Napaka med pisanjem v izhodno datoteko" + +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Čakanje na glave" + +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Neveljavna vrstica glave" -#: apt-pkg/contrib/strutl.cc:1243 -#, c-format -msgid "Selection %s not found" -msgstr "Izbire %s ni mogoče najti" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Strežnik HTTP je poslal neveljavno glavo odgovora" -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Brez uporabe zaklepanja za zaklenjeno datoteko le za branje %s" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "Strežnik HTTP je poslal glavo z neveljavno dolžino vsebine" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Ni mogoče odprti zaklenjene datoteke %s" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "Strežnik HTTP je poslal glavo z neveljavnim obsegom vsebine" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Brez uporabe zaklepanja za datoteko %s, priklopljeno z NTFS" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Ta strežnik HTTP ima pokvarjen obseg podpore" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Ni mogoče zakleniti datoteke %s" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Neznana oblika datuma" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "Seznama datotek ni mogoče ustvariti, ker '%s' ni mapa" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Napačni podatki glave" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "Preziranje '%s' v mapi '%s', ker ni običajna datoteka" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Povezava ni uspela" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "Preziranje datoteke '%s' v mapi '%s', ker nima pripone imena datotek" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Notranja napaka" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -"Preziranje datoteke '%s' v mapi '%s', ker nima veljavne pripone imena datotek" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Pod-opravilo %s je prejelo segmentacijsko napako." +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Notranja napaka, NamestiPakete je bil klican z pokvarjenimi paketi!" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "Pod-opravilo %s je prejelo signal %u." +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Odstraniti je treba pakete, a je odstranjevanje onemogočeno." -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Pod-opravilo %s je vrnilo kodo napake (%u)" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Notranja napaka, Urejanje se ni končalo" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Kako čudno ... Velikosti se ne ujemata, pošljite sporočilo na apt@packages." +"debian.org" + +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Pod-opravilo %s se je nepričakovano zaključilo" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Potrebno je dobiti %sB/%sB arhivov.\n" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Napaka pisanja" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 +#, c-format +msgid "Need to get %sB of archives.\n" +msgstr "Potrebno je dobiti %sB arhivov.\n" -#: apt-pkg/contrib/fileutl.cc:913 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "Problem closing the gzip file %s" -msgstr "Težava med zapiranjem gzip datoteke %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Po tem opravilu bo porabljenega %sB dodatnega prostora.\n" -#: apt-pkg/contrib/fileutl.cc:1101 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "Could not open file %s" -msgstr "Ni mogoče odpreti datoteke %s" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Po tem opravilu bo sproščenega %sB prostora na disku.\n" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#: apt-private/private-install.cc:200 #, c-format -msgid "Could not open file descriptor %d" -msgstr "Ni mogoče odpreti opisnika datotek %d" +msgid "You don't have enough free space in %s." +msgstr "Na %s je premalo prostora." -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Ni mogoče ustvariti podopravila IPD" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Prišlo je do težav in -y je bil uporabljen brez --force-yes" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Ni mogoče izvesti stiskanja " +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Navedena je možnost Samo preprosto, a to opravilo ni preprosto." -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Napaka branja" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Da, naredi tako kot pravim!" -#: apt-pkg/contrib/fileutl.cc:1514 +#: apt-private/private-install.cc:222 #, c-format -msgid "read, still have %llu to read but none left" -msgstr "Prebrano, še vedno je treba prebrati %llu bajtov, vendar ni nič ostalo" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Naredili boste nekaj, kar je morda lahko škodljivo.\n" +"Za nadaljevanje vtipkajte frazo '%s'\n" +" ?] " -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "pisanje, preostalo je še %llu za pisanje, vendar ni bilo mogoče pisati" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Prekini." -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Težava med zapiranjem datoteke %s" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Ali želite nadaljevati?" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Težava med preimenovanje datoteke %s v %s" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Prejem nekaterih datotek ni uspel" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "Težava med razvezovanjem datoteke %s" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"Nekaterih arhivov ni mogoče dobiti. Poskusite uporabiti apt-get update ali --" +"fix-missing." -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Težava med usklajevanjem datoteke" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing in izmenjava medija trenutno nista podprta" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s ... Napaka!" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Ni mogoče popraviti manjkajočih paketov." -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s ... Narejeno" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Prekinjanje namestitve." -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"Naslednji paketi so izginili z vašega sistema, ker so vse\n" +"datoteke prepisali drugi paketi:" +msgstr[1] "" +"Naslednji paketi je izginil z vašega sistema, ker so vse\n" +"datoteke prepisali drugi paketi:" +msgstr[2] "" +"Naslednja paketa sta izginila z vašega sistema, ker so vse\n" +"datoteke prepisali drugi paketi:" +msgstr[3] "" +"Naslednji paketi so izginili z vašega sistema, ker so vse\n" +"datoteke prepisali drugi paketi:" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s ... Narejeno" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Opomba: To je dpkg storil samodejno in namenoma." -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "mmap prazne datoteke ni mogoč" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "" +"Program ne bi smel brisati stvari, ni mogoče zagnati " +"SamodejnegaOdstranjevalnika" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Ni mogoče podvojiti opisnika datotek %i" +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" +"Videti je, da je SamodejniOdstranjevalnik nekaj uničil, kar se ne bi smelo " +"zgoditi\n" +"Pošljite poročilo o hrošču v apt." -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Ni mogoče narediti mmap %llu bajtov" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Naslednji podatki vam bodo morda pomagali rešiti težavo:" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Ni mogoče zapreti mmap" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Notranja napaka, SamodejniOdstranjevalnik je pokvaril stvari" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Ni mogoče uskladiti mmap" +#: apt-private/private-install.cc:513 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "Naslednji paketi so bili samodejno nameščeni in niso več zahtevani:" +msgstr[1] "Naslednji paket je bil samodejno nameščen in ni več zahtevan:" +msgstr[2] "" +"Naslednja paketa sta bila samodejno nameščena in nista več zahtevana:" +msgstr[3] "Naslednji paketi so bili samodejno nameščeni in niso več zahtevani:" -#: apt-pkg/contrib/mmap.cc:290 +#: apt-private/private-install.cc:517 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Ni mogoče narediti mmap %lu bajtov" +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "%lu paketov je bilo samodejno nameščenih in niso več zahtevani.\n" +msgstr[1] "%lu paket je bil samodejno nameščen in ni bil več zahtevan.\n" +msgstr[2] "%lu paketa sta bila samodejno nameščena in nista več zahtevana.\n" +msgstr[3] "%lu paketi so bili samodejno nameščeni in niso več zahtevani.\n" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Ni mogoče obrezati datoteke" +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Uporabite 'apt-get autoremove' za njihovo odstranitev." +msgstr[1] "Uporabite 'apt-get autoremove' za njegovo odstranitev." +msgstr[2] "Uporabite 'apt-get autoremove' za njuno odstranitev." +msgstr[3] "Uporabite 'apt-get autoremove' za njihovo odstranitev." -#: apt-pkg/contrib/mmap.cc:341 -#, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" -msgstr "" -"Dinamičnemu MMap je zmanjkalo prostora. Povečajte velikost APT::Cache-Start. " -"Trenutna vrednost: %lu. (man 5 apt.conf)" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Poskusite zagnati 'apt-get -f install', če želite popraviti naslednje:" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format +#: apt-private/private-install.cc:614 msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"Ni mogoče povečati velikosti MMap, ker je omejitev %lu bajtov že dosežena." +"Nerešene odvisnosti. Poskusite 'apt-get -f install' brez paketov (ali " +"navedite rešitev)." -#: apt-pkg/contrib/mmap.cc:449 +#: apt-private/private-install.cc:638 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." msgstr "" -"Ni mogoče povečati velikosti MMap, ker je samodejno povečevanje onemogočeno." +"Nekaterih paketov ni mogoče namestiti. To lahko pomeni, da ste zahtevali\n" +"nemogoč položaj, če uporabljate nestabilno izdajo pa\n" +", da nekateri zahtevani paketi še niso ustvarjeni ali premaknjeni\n" +" iz Prihajajočega." -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Ni mogoče določiti priklopne točke %s" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Pokvarjeni paketi" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Ni mogoče določiti CD-ROM-a" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Naslednji dodatni paketi bodo nameščeni:" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Neprepoznana vrsta okrajšave: '%c'" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Predlagani paketi:" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Odpiranje nastavitvene datoteke %s" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Priporočeni paketi:" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-private/private-install.cc:825 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Skladenjska napaka %s:%u: Blok se začne brez imena." +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "%s je preskočen, ker je že nameščen in ne potrebuje nadgradnje.\n" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-private/private-install.cc:829 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Skladenjska napaka %s:%u: Slabo oblikovana oznaka." +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "Preskok %s, ni nameščen in zahtevane so le nadgradnje\n" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-private/private-install.cc:841 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Skladenjska napaka %s:%u: Dodatna krama za vrednostjo." +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Ponovna namestitev %s ni možna, ker prejem ni možen.\n" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-private/private-install.cc:846 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "" -"Skladenjska napaka %s:%u: Napotki se lahko izvedejo le na vrhnji ravni." +msgid "%s is already the newest version.\n" +msgstr "Najnovejša različica %s je že nameščena.\n" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-private/private-install.cc:894 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Skladenjska napaka %s:%u: Preveč vgnezdenih vključitev" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Izbrana različica '%s' (%s) za '%s'\n" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-private/private-install.cc:899 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Skladenjska napaka %s:%u: Vključeno od tu" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Izbrana različica '%s' (%s) za '%s' namesto '%s'\n" -#: apt-pkg/contrib/configuration.cc:897 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Skladenjska napaka %s:%u: Nepodprt napotek '%s'" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "" +"Paket '%s' ni nameščen, zato ni bil odstranjen. Ali ste mislili '%s'?\n" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-private/private-install.cc:947 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Paket '%s' ni nameščen, zato ni bil odstranjen\n" + +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -"Skladenjska napaka %s:%u: počisti ukaz zahteva drevo možnosti kot argument" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-private/private-list.cc:164 #, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Skladenjska napaka %s:%u: Dodatna krama na koncu datoteke" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, c-format -msgid "No keyring installed in %s." -msgstr "V %s ni nameščenih zbirk ključev." +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Popravljanje odvisnosti ..." -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Možnost ukazne vrstice '%c' [iz %s] ni poznana." +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " spodletelo." -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "Možnosti ukazne vrstice %s ni mogoče razumeti" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Ni mogoče popraviti odvisnosti" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "Možnost ukazne vrstice %s ni boolova vrednost" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Ni mogoče pomanjšati zbirke za nadgradnjo" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "Možnost %s zahteva argument." +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Opravljeno" + +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Če želite popraviti napake, poskusite pognati 'apt-get -f install'." + +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Nerešene odvisnosti. Poskusite uporabiti -f." + +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" + +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Nameščeno]" + +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Nameščeno]" + +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" + +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Nameščeno]" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Možnost %s: Določilo predmeta nastavitve zahtevajo =<val>." +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Nameščeno]" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-private/private-output.cc:249 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Možnost %s zahteva celoštevilski argument, ne '%s'" +msgid "[upgradable from: %s]" +msgstr "" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Možnost '%s' je predolga" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-private/private-output.cc:435 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Pomena %s ni mogoče razumeti, poskusite pravilno ali napačno." +msgid "but %s is installed" +msgstr "vendar je paket %s nameščen" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-private/private-output.cc:437 #, c-format -msgid "Invalid operation %s" -msgstr "Neveljavno opravilo %s" +msgid "but %s is to be installed" +msgstr "vendar bo paket %s nameščen" -#: cmdline/apt-cache.cc:149 -#, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Paket %s različica %s ima nerešene odvisnosti:\n" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "vendar se ga ne da namestiti" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Vseh imen paketov: " +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "vendar je navidezen paket" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Skupno struktur paketov : " +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "vendar ni nameščen" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Običajni paketi: " +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "vendar ne bo nameščen" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Čisti navidezni paketi: " +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " ali" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Posamezni navidezni paketi: " +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Naslednji paketi imajo nerešene odvisnosti:" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Mešani navidezni paketi: " +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Naslednji NOVI paketi bodo nameščeni:" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Manjka: " +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Naslednji novi paketi bodo ODSTRANJENI:" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Vseh različic: " +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Naslednji paketi so bili zadržani:" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Skupno različnih opisov: " +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Naslednji paketi bodo nadgrajeni:" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Vseh odvisnosti: " +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Naslednji paketi bodo POSTARANI:" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Vseh povezav Raz/Dat: " +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Naslednji zadržani paketi bodo spremenjeni:" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Skupno razmerij opisov/datotek: " +#: apt-private/private-output.cc:668 +#, c-format +msgid "%s (due to %s) " +msgstr "%s (zaradi %s) " -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Vseh dobljenih preslikav: " +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"OPOZORILO: Naslednji nujni paketi bodo odstranjeni.\n" +"Tega NE storite, razen če ne veste natanko kaj počenjate!" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Vseh razširjenih nizov: " +#: apt-private/private-output.cc:707 +#, c-format +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu nadgrajenih, %lu na novo nameščenih, " -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Celotna velikost z odvisnostmi različice: " +#: apt-private/private-output.cc:711 +#, c-format +msgid "%lu reinstalled, " +msgstr "%lu posodobljenih, " -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Celotna ohlapna velikost: " +#: apt-private/private-output.cc:713 +#, c-format +msgid "%lu downgraded, " +msgstr "%lu postaranih, " -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Celotna velikost, izračunana za: " +#: apt-private/private-output.cc:715 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu bo odstranjenih in %lu ne nadgrajenih.\n" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 +#: apt-private/private-output.cc:719 #, c-format -msgid "Package file %s is out of sync." -msgstr "Datoteka paketa %s ni usklajena." +msgid "%lu not fully installed or removed.\n" +msgstr "%lu ne popolnoma nameščenih ali odstranjenih.\n" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Noben paket ni bil najden" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Podati morate vsaj en iskalni vzorec" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "Ta ukaz je zastarel. Namesto njega uporabite 'apt-mark showauto'." +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Datoteke paketa:" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Predpomnilnik ni usklajen, x-ref datoteke paketa ni mogoč" +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Napaka med prevajanjem logičnega izraza - %s" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Pripeti paketi:" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Ukaz update ne sprejema argumentov" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(ni najdeno)" +#: apt-private/private-update.cc:90 +#, c-format +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Nameščen: " +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" + +#: apt-private/private-show.cc:156 +#, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" + +#: apt-private/private-main.cc:32 +msgid "" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" +msgstr "" +"OPOMBA: To je samo simulacija!\n" +" apt-get za pravo izvajanje potrebuje privilegije skrbnika.\n" +" Zaklepanje je onemogočeno, zato se ne zanašajte\n" +" na pomembnost trenutnega pravega stanja!" + +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "POZOR: Naslednjih paketov ni bilo mogoče overiti!" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidat: " +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Opozorilo overitve je bilo prepisano.\n" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(brez)" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Nekaterih paketkov bi bilo mogoče overiti" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Bucika paketa: " +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Ali želite te pakete namestiti brez preverjanja?" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Preglednica različic:" +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 +#, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Ni mogoče dobiti %s %s\n" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Ni mogoče preimenovati %s v %s" + +#: apt-private/private-sources.cc:70 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s za %s kodno preveden na %s %s\n" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: cmdline/apt-cache.cc:1749 -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" msgstr "" -"Uporaba: apt-cache [možnosti] ukaz\n" -" apt-cache [možnosti] showpkg paket1 [paket2 ...]\n" -" apt-cache [možnosti] showsrc paket1 [paket2 ...]\n" -"\n" -"apt-cache je orodje nizke ravni za poizvedbo podatkov\n" -"iz binarni datotek predpomnilnika APT\n" -"\n" -"Ukazi:\n" -" gencaches - Izgradi tako predpomnilnik paketa in izvorne kode\n" -" showpkg - Prikaže nekaj splošnih podatkov o posameznem paketu\n" -" showsrc - Prikaže zapise izvorne kode\n" -" stats - Prikaže nekaj osnovne statistike\n" -" dump - Prikaže celotno datoteko v skrajšani obliki\n" -" dumpavail - Izpiše razpoložljivo datoteko na stdout\n" -" unmet - Prikaže nezadoščene odvisnosti\n" -" search - Išče seznam paketov z vzorcem logičnega izraza\n" -" show - Show a readable record for the package\n" -" depends - Prikaže surove podatke odvisnosti za paket\n" -" rdepends - Pokaže obratne podatke odvisnosti za paket\n" -" pkgnames - Izpiše imena vseh paketov na sistemu\n" -" dotty - Ustvari grafe paketa za GraphViz\n" -" xvcg - Ustvari grafe paketa za xvcg\n" -" policy - Prikaže nastavitve pravil\n" -"\n" -"Možnosti:\n" -" -h To besedilo pomoči.\n" -" -p=? Predpomnilnik paketov.\n" -" -s=? Predpomnilnik izvorne kode.\n" -" -q Onemogoči kazalnik napredka.\n" -" -i Pokaže le pomembne odvisnosti za neujemajoč ukaz.\n" -" -c=? Prebere to nastavitveno datoteko\n" -" -o=? Nastavi poljubno možnost nastavitve, na primer -o dir::cache=/tmp\n" -"Za več podrobnosti si oglejte strani priročnikov apt-cache(8) in apt." -"conf(5).\n" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Navedite ime tega diska, kot je naprimer 'Debian 5.0.3 disk 1'" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Preračunavanje nadgradnje ... " -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Vstavite disk v pogon in pritisnite vnosno tipko" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Opravljeno" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Priklapljanje '%s' na '%s' je spodletelo" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Zadetek " -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Dobi:" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Ponovi to opravilo za preostanek CD-jev v vaši zbirki." +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Prezr " -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumenti niso v parih" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Nap " -#: cmdline/apt-config.cc:89 +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Pridobljenih %sB v %s (%sB/s)\n" + +#: apt-private/acqprogress.cc:236 +#, c-format +msgid " [Working]" +msgstr " [Delo]" + +#: apt-private/acqprogress.cc:297 +#, c-format msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"Uporaba: apt-config [možnosti] ukaz\n" -"\n" -"apt-config je preprosto orodje za branje nastavitvene datoteke APT\n" -"\n" -"Ukazi:\n" -" shell - Lupinski način\n" -" dump - Prikaže nastavitve\n" -"\n" -"Možnosti:\n" -" -h To besedilo pomoči.\n" -" -c=? Prebere podano datoteko z nastavitvami\n" -" -o=? Nastavi poljubno nastavitveno možnost, na primer. -o dir::cache=/tmp\n" +"Sprememba medija: vstavite disk z oznako\n" +" '%s'\n" +"v enoto '%s' in pritisnite vnosno tipko\n" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Z logičnim izrazom '%s' ni mogoče najti nobenega paketa" +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 +#, c-format +msgid "Unable to read %s" +msgstr "Ni mogoče brati %s" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Z logičnim izrazom '%s' ni mogoče najti nobenega paketa" +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 +#, c-format +msgid "Unable to change to %s" +msgstr "Ni mogoče spremeniti v %s" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Z logičnim izrazom '%s' ni mogoče najti nobenega paketa" +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 +#, c-format +msgid "No mirror file '%s' found " +msgstr "Datoteke zrcalnih strežnikov '%s' ni mogoče najti " -#: cmdline/apt-get.cc:367 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Izbiranje '%s' kot vir paketa namesto '%s'\n" +msgid "Can not read mirror file '%s'" +msgstr "Datoteke zrcalnega strežnika '%s' ni mogoče prebrati" -#: cmdline/apt-get.cc:423 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Prezri nerazpoložljivo različico '%s' paketa '%s'" +msgid "No entry found in mirror file '%s'" +msgstr "Datoteke zrcalnega strežnika '%s' ni mogoče prebrati" -#: cmdline/apt-get.cc:454 +#: methods/mirror.cc:445 #, c-format -msgid "Couldn't find package %s" -msgstr "Ni mogoče najti paketa %s" +msgid "[Mirror: %s]" +msgstr "[Zrcalni strežnik: %s]" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s je bil nastavljen na ročno nameščen.\n" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Ustvarjanje cevi IPC do podopravila je spodletelo" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s je nastavljen na samodejno nameščen.\n" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Povezava se je prezgodaj zaprla" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"Ta ukaz je zastarel. Namesto njega uporabite 'apt-mark auto' in 'apt-mark " -"manual'." +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Napačna privzeta nastavitev!" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Notranja napaka, reševalnik težav je pokvaril stvari" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Za nadaljevanje pritisnite vnosno tipko." -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Ni mogoče zakleniti mape prejemov" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Ali želite izbrisati vse predhodno prejete datoteke .deb?" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" -"Potrebno je navesti vsaj en paket, za katerega želite dobiti izvorno kodo" +"Med razširajanjem je prišlo do nekaterih napak. Paketi, ki so bili nameščeni" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "Izvornega paketa za %s ni mogoče najti" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "bodo bili nastavljeni. To lahko povzroči podvojene napake" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -"OPOMBA: pakiranje '%s' vzdrževano v sistemu nadzora različice '%s' na:\n" -"%s\n" +"ali do napak zaradi manjkajočih odvisnosti. To je v redu, pomembne so samo " +"napake" -#: cmdline/apt-get.cc:791 -#, c-format +#: dselect/install:105 msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" -msgstr "" -"Uporabite:\n" -"bzr branch %s\n" -"za pridobitev zadnjih (morda še neizdanih) posodobitev paketa.\n" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "nad tem sporočilom. Popravite jih in poženite Namest[I]tev še enkrat" -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Preskok že prejete datoteke '%s'\n" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Združevanje razpoložljivih podaktov" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "Ni mogoče določiti prostega prostora v %s" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode je poklical stabilno povezano vozlišče" -#: cmdline/apt-get.cc:882 +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Ni mogoče najti razpršenega elementa!" + +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Ni mogoče dodeliti odklona" + +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Notranja napaka v AddDiversion" + +#: apt-inst/filelist.cc:477 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Nimate dovolj prostora na %s" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Poskus prepisovanja odklona, %s -> %s in %s/%s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Potrebno je dobiti %sB/%sB izvornih arhivov.\n" +msgid "Double add of diversion %s -> %s" +msgstr "Dvojni seštevek odklona %s -> %s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Potrebno je dobiti %sB izvornih arhivov.\n" +msgid "Duplicate conf file %s/%s" +msgstr "Dvojnik datoteke z nastavitvami %s/%s" -#: cmdline/apt-get.cc:902 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Fetch source %s\n" -msgstr "Dobi vir %s\n" +msgid "The path %s is too long" +msgstr "Pot %s je predolga" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Nekaterih arhivov ni mogoče pridobiti." +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" +msgstr "Odpakiranje %s več kot enkrat" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Prejem je dokončan in uporabljen je način samo prejema" +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "Mapa %s je odklonjena" -#: cmdline/apt-get.cc:950 +#: apt-inst/extract.cc:152 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Odpakiranje že odpakiranih izvornih paketov v %s je bilo preskočeno\n" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Paket poskuša pisati v tarčo odklona %s/%s" + +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Pot odklona je predloga" -#: cmdline/apt-get.cc:962 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Ukaz odpakiranja '%s' ni uspel.\n" +msgid "Failed to stat %s" +msgstr "Napaka med določitvijo %s" -#: cmdline/apt-get.cc:963 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Izberite, če je paket 'dpkg-dev' nameščen.\n" +msgid "Failed to rename %s to %s" +msgstr "Ni mogoče preimenovati %s v %s" -#: cmdline/apt-get.cc:991 +#: apt-inst/extract.cc:249 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Ukaz gradnje '%s' ni uspel.\n" +msgid "The directory %s is being replaced by a non-directory" +msgstr "Mapa %s je bil zamenjana z ne-mapo" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Podrejeno opravilo ni uspelo" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Iskanje vozlišča v njegovem razpršenem vedru ni uspelo" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "" -"Potrebno je navesti vsaj en paket, za katerega želite preveriti odvisnosti " -"za gradnjo" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Pot je predolga" -#: cmdline/apt-get.cc:1054 +#: apt-inst/extract.cc:421 #, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" -"Za %s ni bilo mogoče najti podatkov o arhitekturi. Za nastavitev si oglejte " -"apt.conf(5) APT::Architectures" +msgid "Overwrite package match with no version for %s" +msgstr "Prepiši zadetek paketa brez vnosa različice za %s" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-inst/extract.cc:438 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Ni mogoče dobiti podrobnosti o odvisnostih za gradnjo za %s" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Datoteka %s/%s prepisuje datoteko v paketu %s" -#: cmdline/apt-get.cc:1101 +#: apt-inst/extract.cc:498 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s nima odvisnosti za gradnjo.\n" +msgid "Unable to stat %s" +msgstr "Ni mogoče določiti %s" -#: cmdline/apt-get.cc:1271 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"odvisnosti %s za %s ni mogoče zadovoljiti, ker %s ni dovoljen na paketih '%s'" +msgid "Failed to write file %s" +msgstr "Zapisovanje datoteke %s je spodletelo" -#: cmdline/apt-get.cc:1289 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "%s odvisnosti za %s ni mogoče zadostiti, ker ni mogoče najti paketa %s" +msgid "Failed to close file %s" +msgstr "Napaka med zapiranjem datoteke %s" -#: cmdline/apt-get.cc:1312 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"Ni mogoče zadostiti %s odvisnosti za %s. Nameščen paket %s je preveč nov" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "To ni veljaven arhiv DEB. Manjka član '%s'." -#: cmdline/apt-get.cc:1351 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"odvisnosti %s za %s ni mogoče zadovoljiti, ker je različica kandidata paketa " -"%s ne more zadostiti zahtev različice" +msgid "Internal error, could not locate member %s" +msgstr "Notranja napaka. Ni mogoče najti člana %s." -#: cmdline/apt-get.cc:1357 -#, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "" -"odvisnosti %s za %s ni mogoče zadovoljiti, ker je različica kandidata paketa " -"%s nima različice kandidata" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Nadzorne datoteke ni mogoče razčleniti" -#: cmdline/apt-get.cc:1380 -#, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Ni mogoče zadostiti %s odvisnosti za %s: %s" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Neveljaven podpis arhiva" -#: cmdline/apt-get.cc:1395 +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Napaka med branjem glave člana arhiva" + +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Odvisnosti za gradnjo %s ni bilo mogoče zadostiti." +msgid "Invalid archive member header %s" +msgstr "Neveljavna glava arhiva člana %s" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Obdelava odvisnosti za gradnjo je spodletela" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Neveljavna glava člana arhiva" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Arhiv je prekratek" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Glav arhiva ni mogoče brati" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Ni mogoče ustvariti pip" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, c-format -msgid "Changelog for %s (%s)" -msgstr "Dnevnik sprememb za %s (%s)" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Ni mogoče izvesti gzip " -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Podprti moduli:" +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Pokvarjen arhiv" -#: cmdline/apt-get.cc:1632 -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -msgstr "" -"Uporaba: apt-get [možnosti] ukaz\n" -" apt-get [možnosti] install|remove paket1 [paket2 ...]\n" -" apt-get [možnosti] source paket1 [paket2 ...]\n" -"\n" -"apt-get je enostaven vmesnik ukazne vrstice za prejem in nameščanje\n" -"paketov. Najbolj pogosto uporabljana ukaza sta update in install.\n" -"\n" -"Ukazi:\n" -" update - Pridobi nove sezname paketov\n" -" upgrade - Izvedix nadgradnjo\n" -" install - Namesti nove pakete (paket je libc6, ne libc6.deb)\n" -" remove - Odstrani pakete\n" -" autoremove - Samodejno odstrani vse neuporabljene pakete\n" -" purge - Odstrani pakete in nastavitvene datoteke\n" -" source - Prejmi arhive izvorne kode\n" -" build-dep - Nastavi odvisnosti gradnje za paket izvorne kode\n" -" dist-upgrade - Nadgradnja distribucije, oglejte si apt-get(8)\n" -" dselect-upgrade - Sledi izbiri dselect\n" -" clean - Izbriši prejete datoteke arhivov\n" -" autoclean - Izbriše stare prejete datoteke arhivov\n" -" check - Preveri, da ni pokvarjenih odvisnosti\n" -" changelog - Prejmi in prikaže dnevnik sprememb za dani paket\n" -" download - Prejmi binarni paket v trenutno mapo\n" -"\n" -"Možnosti:\n" -" -h To besedilo pomoči.\n" -" -q Izhod se beleži - brez kazalnika napredka\n" -" -qq Ni izhoda razen napak\n" -" -d Le prejmi - NE nameščaj ali odpakiraj arhivov\n" -" -s Ne naredi ničesar. Izvedi simulacijo ukaza\n" -" -y Predpostavi Da vsem poizvedbam in ne pozivaj\n" -" -f Poskusi popraviti sistem s pokvarjenimi odvisnostmi\n" -" -m Poskusi nadaljevati, če arhivov ni mogoče najti\n" -" -u Pokaži tudi seznam nadgrajenih paketov\n" -" -b Po pridobitvi izgradi izvorni paket\n" -" -V Pokaži podrobne številke različic\n" -" -c=? Preberi to nastavitveno datoteko\n" -" -o=? Nastavi poljubno nastavitveno možnost, na primer -o dir::cache=/tmp\n" -"Za več podrobnosti in možnosti si oglejte strani priročnikov apt-get(8),\n" -" sources.list(5) in apt.conf(5). \n" -" Ta APT ima moči super krav.\n" +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Nadzorna vsota tar ni uspela, arhiv je pokvarjen" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "" -"Potrebno je navesti vsaj en paket, za katerega želite dobiti izvorno kodo" +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Neznana vrsta glave TAR %u, član %s" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" msgstr "" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Poganjanje dpkg" -#: cmdline/apt-mark.cc:68 +#: apt-pkg/init.cc:146 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "paket %s ne more biti označen, ker ni nameščen.\n" +msgid "Packaging system '%s' is not supported" +msgstr "Paketni sistem '%s' ni podprt" -#: cmdline/apt-mark.cc:74 +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Ni mogoče določiti ustrezne vrste paketnega sistema" + +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "paket %s je bil že nastavljen na ročno nameščen.\n" +msgid "Wrote %i records.\n" +msgstr "Zapisanih je bilo %i zapisov.\n" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "paket %s je bil že nastavljen kot samodejno nameščen.\n" +msgid "Wrote %i records with %i missing files.\n" +msgstr "Zapisanih je bilo %i zapisov z %i manjkajočimi datotekami.\n" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "%s was already set on hold.\n" -msgstr "paket %s je bil že nastavljen kot na čakanju.\n" +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Zapisanih je bilo %i zapisov z %i neujemajočimi datotekami.\n" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 #, c-format -msgid "%s was already not hold.\n" -msgstr "paket %s je bil že nastavljen kot ne na čakanju.\n" +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" +"Zapisanih je bilo %i zapisov z %i manjkajočimi datotekami in %i " +"neujemajočimi datotekami.\n" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "%s set on hold.\n" -msgstr "paket %s je nastavljen kot na čakanju.\n" +msgid "Can't find authentication record for: %s" +msgstr "Ni mogoče najti zapisa overitve za: %s" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/indexcopy.cc:521 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Čakanje za %s je bilo preklicano.\n" +msgid "Hash mismatch for: %s" +msgstr "Neujemanje razpršila za: %s" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "Izvajanje dpkg je spodletelo. Ali ste skrbnik?" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Ni mogoče odprti ali razčleniti seznama paketov ali datoteke stanja." -#: cmdline/apt-mark.cc:392 -#, fuzzy -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" -"Uporaba: apt-mark [možnosti] {auto|manual} paket1 [paket2 ...]\n" -"\n" -"apt-mark je enostaven vmesnik ukazne vrstice za označevanje paketov\n" -"kot ročno ali samodejno nameščenih. Oznake lahko tudi izpiše.\n" -"\n" -"Ukazi:\n" -" auto - Označi dane pakete kot samodejno nameščene\n" -" manual - Označi dane pakete kot ročno nameščene\n" -"\n" -"Možnosti:\n" -" -h To besedilo pomoči.\n" -" -q Izhod se beleži - brez kazalnika napredka\n" -" -qq Brez izhoda razen napak\n" -" -s Ne naredi ničesar. Samo napiše kaj bi bilo narejeno.\n" -" -f Prebere/zapiše oznako ročno/samodejno za dano datoteko\n" -" -c=? Prebere to nastavitveno datoteko\n" -" -o=? Nastavi poljubno nastavitveno možnost, na primer -o dir::cache=/tmp\n" -"Za več podrobnosti si oglejte strani priročnika apt-mark(8) in apt-conf(5)." +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Za odpravljanje težav poskusite zagnati apt-get update." -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Seznama virov ni mogoče brati." -#: methods/cdrom.cc:203 -#, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Ni mogoče brati podatkovne zbirke %s na CD-ROM-u" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Prazen predpomnilnik paketov" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"Uporabite apt-cdrom, če želite, da APT prepozna CD. apt-get update ne more " -"sam dodati novih CD-ROM-ov" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Datoteka s predpomnilnikom paketov je pokvarjena" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Napačen CD-ROM" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Različica datoteke s predpomnilnikom paketov ni združljiva" -#: methods/cdrom.cc:249 +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "Datoteka predpomnilnika paketa je okvarjena. Je premajhna" + +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Ni mogoče odklopiti CD-ROM-a v %s, ker je morda še v uporabi." +msgid "This APT does not support the versioning system '%s'" +msgstr "Ta APT ne podpira sistema različic '%s'" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Diska ni mogoče najti." +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Predpomnilnik paketov je bil izgrajen za drugačno arhitekturo" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Datoteke ni mogoče najti" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Odvisen od" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Določitev ni uspela" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Predodvisen od" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Nastavitev časa spremembe je spodletela" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Priporoča" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Neveljaven URI. Krajevni URI-ji se morajo začeti z //" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Priporoča" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Prijavljanje" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "V sporu z" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Ni mogoče ugotoviti imena gostitelja" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Zamenja" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Ni mogoče določiti krajevnega imena" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Zastara" -#: methods/ftp.cc:219 methods/ftp.cc:247 -#, c-format -msgid "The server refused the connection and said: %s" -msgstr "Strežnik je zavrnil povezavo in sporočil: %s" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Pokvari" -#: methods/ftp.cc:225 +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Izboljša" + +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "pomembno" + +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "obvezno" + +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "običajni" + +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "izbirno" + +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "dodatno" + +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER je spodletel, strežnik je odgovoril: %s" +msgid "The method driver %s could not be found." +msgstr "Gonilnika načinov %s ni mogoče najti." -#: methods/ftp.cc:232 +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Izberite, če je paket 'dpkg-dev' nameščen.\n" + +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS je spodletel, strežnik je odgovoril: %s" +msgid "Method %s did not start correctly" +msgstr "Način %s se ni začel pravilno" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"Naveden je bil posredniški strežnik, ne pa tudi prijavni skript. Acquire::" -"ftp::ProxyLogin je prazen." +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Vstavite disk z oznako '%s' v pogon '%s' in pritisnite vnosno tipko." -#: methods/ftp.cc:280 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Ukaz prijavne skripte '%s' ni uspel, strežnik je odgovoril: %s" +msgid "Index file type '%s' is not supported" +msgstr "Vrsta datoteke s kazalom '%s' ni podprta" -#: methods/ftp.cc:306 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Gradnja drevesa odvisnosti" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Različice kandidatov" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Ustvarjanje odvisnosti" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Branje podatkov o stanju" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE je spodletel, strežnik je odgovoril: %s" +msgid "Failed to open StateFile %s" +msgstr "Odpiranje DatotekeStanja %s je spodletelo" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Povezava je zakasnela" +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Pisanje začasne DatotekeStanja %s je spodletelo" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Strežnik je zaprl povezavo" +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "preimenovanje je spodletelo, %s (%s -> %s)." -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Odgovor je prekoračil predpomnilnik." +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Neujemanje vsote razpršil" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Okvara protokola" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Neujemanje velikosti" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Ni mogoče ustvariti vtiča" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Neveljavno opravilo %s" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Ni mogoče povezati podatkovnega vtiča. Povezava je zakasnela." +#: apt-pkg/acquire-item.cc:1573 +#, c-format +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" +"Ni mogoče najti pričakovanega vnosa '%s' v datoteki Release (napačen vnos " +"sources.list ali slabo oblikovana datoteka)" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Spodletelo" +#: apt-pkg/acquire-item.cc:1589 +#, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Ni mogoče najti vsote razprševanja za '%s' v datoteki Release" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Ni mogoče povezat pasivnega vtiča." +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Za naslednje ID-je ključa ni na voljo javnih ključev:\n" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo ni mogel dobiti poslušajočega vtiča" +#: apt-pkg/acquire-item.cc:1669 +#, c-format +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" +"Datoteka Release za %s je potekla (neveljavna od %s). Posodobitev za to " +"skladišče ne bo uveljavljena." -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Ni mogoče povezati vtiča" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Distribucija v sporu: %s (pričakovana %s, toda dobljena %s)" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Ni mogoče poslušati na vtiču" +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"Med preverjanjem podpisa je prišlo do napake. Skladišče ni bilo posodobljeno " +"zato bodo uporabljene predhodne datoteke kazal. Napaka GPG: %s: %s\n" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Ni mogoče določiti imena vtiča" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "Napaka GPG: %s: %s" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Ni mogoče poslati ukaza PORT" +#: apt-pkg/acquire-item.cc:1859 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"Ni bilo mogoče najti datoteke za paket %s. Morda boste morali ročno " +"popraviti ta paket (zaradi manjkajočega arhiva)." -#: methods/ftp.cc:802 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Neznan naslov družine %u (AF_*)" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "Ni mogoče najti vira za prejem različice '%s' paketa '%s'" -#: methods/ftp.cc:811 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT ni uspel, strežnik je odgovoril: %s" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Datoteke s kazali paketov so pokvarjene. Brez imena datotek: polje za paket " +"%s." -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Povezava podatkovne vtičnice je zakasnela" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Vrsta datoteke s kazalom '%s' ni podprta" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Ni mogoče sprejeti povezave" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Ni mogoče določiti %s." -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Težava med razprševanjem datoteke" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Predpomnilnik ima neustrezen sistem različic" -#: methods/ftp.cc:890 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Ni mogoče pridobiti datoteke, strežnik je odgovoril '%s'" +msgid "Error occurred while processing %s (%s%d)" +msgstr "Med obdelovanjem %s je prišlo do napake (%s%d)" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Podatkovna vtič je potekel" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "Čestitamo, presegli ste število imen paketov, ki jih zmore APT." -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Prenos podatkov ni uspel, strežnik je odgovoril '%s'" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Čestitamo, presegli ste število različic, ki jih zmore APT." -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Poizvedba" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Čestitamo, presegli ste število opisov, ki jih je zmožen APT." -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Ni mogoče klicati " +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "Čestitamo, presegli ste število odvisnosti, ki jih zmore APT." -#: methods/connect.cc:76 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Povezovanje z %s (%s)" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Paketa %s %s ni bilo mogoče najti med obdelavo odvisnosti datotek" -#: methods/connect.cc:87 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Couldn't stat source package list %s" +msgstr "Ni mogoče določiti seznama izvornih paketov %s" -#: methods/connect.cc:94 -#, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Ni mogoče ustvariti vtiča za %s (f=%u t=%u p=%u)" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Branje seznama paketov" -#: methods/connect.cc:100 -#, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Ni mogoče začeti povezave z %s:%s (%s)." +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Zbiranje dobaviteljev datotek" -#: methods/connect.cc:108 +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Ni se mogoče povezati z %s:%s (%s). Povezava je zakasnela." +msgid "Unable to write to %s" +msgstr "Ni mogoče pisati na %s" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Ni se mogoče povezati z %s:%s (%s)." +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Napaka VI med shranjevanjem predpomnilnika virov" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Connecting to %s" -msgstr "Povezovanje z %s" +msgid "Vendor block %s contains no fingerprint" +msgstr "Ponudnikov blok %s ne vsebuje prstnega podpisa" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 #, c-format -msgid "Could not resolve '%s'" -msgstr "Ni mogoče razrešiti '%s'" +msgid "List directory %spartial is missing." +msgstr "Mapa seznama %spartial manjka." -#: methods/connect.cc:205 +#: apt-pkg/acquire.cc:91 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Začasna napaka med razreševanjem '%s'" +msgid "Archives directory %spartial is missing." +msgstr "Mapa arhivov %spartial manjka." -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Nekaj čudnega se je zgodilo med razreševanjem '%s:%s' (%i - %s)" +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "Mape %s ni mogoče zakleniti" -#: methods/connect.cc:211 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Nekaj čudnega se je zgodilo med razreševanjem '%s:%s' (%i - %s)" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Pridobivanje datoteke %li od %li (%s preostalo)" -#: methods/connect.cc:258 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Ni se mogoče povezati z %s:%s:" +msgid "Retrieving file %li of %li" +msgstr "Pridobivanje datoteke %li od %li" -#: methods/gpgv.cc:168 +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"Notranja napaka: Dober podpis, toda ni mogoče določiti podpisa ključa?!" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Najden je bil vsaj en neveljaven podpis." +"Prejem nekaterih datotek kazala je spodletel. Bile so prezrte ali pa so bile " +"namesto njih uporabljene stare." -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "Ni mogoče izvesti 'gpgv' za preverjanje podpisa (je gpgv nameščen?)" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "V sources.list morate vstaviti URI-je z viri" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/policy.cc:83 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" -msgstr "" - -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Neznana napaka med izvajanjem gpgv" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Naslednji podpisi so bili neveljavni:\n" - -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"Naslednjih podpisov ni mogoče preveriti, ker javni ključ ni na voljo:\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Prazne datoteke ne morejo biti veljavni arhivi" - -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Napaka med pisanjem v datoteko" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Napaka med branjem s strežnika. Oddaljeni del je zaprl povezavo" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Napaka med branjem s strežnika" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Napaka med pisanjem v datoteko" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Izbira ni uspela" +"Vrednost '%s' je neveljavna za APT::Default-Release in zato takšna izdaja ni " +"na voljo v virih" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Povezava je zakasnela" +#: apt-pkg/policy.cc:422 +#, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Neveljaven zapis v datoteki možnosti %s, ni glave paketa" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Napaka med pisanjem v izhodno datoteko" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Ni mogoče razumeti vrste bucike %s" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Čakanje na glave" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Prednost bucike ni navedena ali pa je nič." -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Neveljavna vrstica glave" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" +"Ni mogoče izvesti takojąnje nastavitve na '%s'. Oglejte si man5 apt.conf pod " +"APT::Immediate-Configure za podrobnosti. (%d)" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Strežnik HTTP je poslal neveljavno glavo odgovora" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Ni mogoče nastaviti '%s' " -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Strežnik HTTP je poslal glavo z neveljavno dolžino vsebine" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"Ta krog namestitve zahteva začasno odstranitev ključnega paketa %s zaradi " +"zanke spora/predodvisnosti. To je ponavadi slabo, toda če zares želite " +"nadaljevati, vključite možnost APT::Force-LoopBreak." -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Strežnik HTTP je poslal glavo z neveljavnim obsegom vsebine" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "Vrstica %u v seznamu virov %s je predolga." -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Ta strežnik HTTP ima pokvarjen obseg podpore" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Odklapljanje CD-ROM-a ...\n" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Neznana oblika datuma" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "Uporabljanje CD-ROM-ove priklopne točke %s\n" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Napačni podatki glave" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Čakanje na disk ...\n" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Povezava ni uspela" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Priklapljanje CD-ROM-a ...\n" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Notranja napaka" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identificiranje ... " -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Preračunavanje nadgradnje ... " +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Shranjena oznaka: %s\n" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Opravljeno" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Preiskovanje diska za datoteke kazala ...\n" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/cdrom.cc:734 +#, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"Najdenih je bilo %zu kazal paketov, %zu kazal virov, %zu kazalov prevodov in " +"%zu podpisov\n" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" +"Nobenih datotek paketov ni mogoče najti, morda to ni disk Debian ali pa je " +"arhitektura napačna?" -#: apt-private/private-list.cc:164 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Popravljanje odvisnosti ..." +msgid "Found label '%s'\n" +msgstr "Najdena je bila oznaka '%s'\n" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " spodletelo." +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "To ni veljavno ime, poskusite znova.\n" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Ni mogoče popraviti odvisnosti" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Ta disk se imenuje: \n" +"'%s'\n" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Ni mogoče pomanjšati zbirke za nadgradnjo" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopiranje seznama paketov ..." -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Opravljeno" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Pisanje novega seznama virov\n" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Če želite popraviti napake, poskusite pognati 'apt-get -f install'." +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Izvorni vnosi za ta disk so:\n" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Nerešene odvisnosti. Poskusite uporabiti -f." +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "Paket %s mora biti znova nameščen, vendar ni mogoče najti arhiva zanj." -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" +"Napaka. pkgProblemResolver::Resolve pri razrešitvi, ki so jih morda " +"povzročili zadržani paketi." -#: apt-private/private-output.cc:234 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Nameščeno]" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Ni mogoče popraviti težav. Imate pokvarjene pakete." -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [Nameščeno]" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Pošlji scenarij reševalniku" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Pošlji zahtevo reševalniku" -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Nameščeno]" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Priprava za rešitev prejemanja" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Nameščeno]" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "Zunanji reševalnik je spodletel brez pravega sporočila o napakah" -#: apt-private/private-output.cc:249 -#, c-format -msgid "[upgradable from: %s]" -msgstr "" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Izvedi zunanji reševalnik" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/tagfile.cc:140 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Ni mogoče razčleniti datoteke paketa %s (1)" -#: apt-private/private-output.cc:435 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "but %s is installed" -msgstr "vendar je paket %s nameščen" +msgid "Unable to parse package file %s (2)" +msgstr "Ni mogoče razčleniti datoteke paketa %s (2)" -#: apt-private/private-output.cc:437 +#: apt-pkg/indexrecords.cc:78 #, c-format -msgid "but %s is to be installed" -msgstr "vendar bo paket %s nameščen" +msgid "Unable to parse Release file %s" +msgstr "Ni mogoče razčleniti Release datoteke %s" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "vendar se ga ne da namestiti" +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "Ni izbir v Release datoteki %s" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "vendar je navidezen paket" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Ni vnosa razpršila v Release datoteki %s" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "vendar ni nameščen" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Neveljaven vnos 'Veljavno-do' v Release datoteki %s" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "vendar ne bo nameščen" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Neveljavne vnos 'Datum' v Release datoteki %s" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " ali" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Slabo oblikovana vrstica %lu v seznamu virov %s (razčlenitev URI)" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Naslednji paketi imajo nerešene odvisnosti:" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "" +"Slabo oblikovana vrstica %lu na seznamu virov %s ([možnosti] ni mogoče " +"razčleniti)" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Naslednji NOVI paketi bodo nameščeni:" +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Slabo oblikovana vrstica %lu na seznamu virov %s ([možnost] prekratka)" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Naslednji novi paketi bodo ODSTRANJENI:" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Slabo oblikovana vrstica %lu na seznamu vrstic %s ([%s] ni dodelitev)" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Naslednji paketi so bili zadržani:" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Slabo oblikovana vrstica %lu na seznamu virov %s ([%s] nima ključa)" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Naslednji paketi bodo nadgrajeni:" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "" +"Slabo oblikovana vrstica %lu na seznamu virov %s ([%s] ključ %s nima " +"vrednosti)" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Naslednji paketi bodo POSTARANI:" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Slabo oblikovana vrstica %lu v seznamu virov %s (URI)" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Naslednji zadržani paketi bodo spremenjeni:" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Slabo oblikovana vrstica %lu v seznamu virov %s (distribucija)" -#: apt-private/private-output.cc:668 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "%s (due to %s) " -msgstr "%s (zaradi %s) " +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Slabo oblikovana vrstica %lu v seznamu virov %s (razčlenitev URI)" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "" -"OPOZORILO: Naslednji nujni paketi bodo odstranjeni.\n" -"Tega NE storite, razen če ne veste natanko kaj počenjate!" +"Slabo oblikovana vrstica %lu v seznamu virov %s (absolutna distribucija)" -#: apt-private/private-output.cc:707 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu nadgrajenih, %lu na novo nameščenih, " +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "" +"Slabo oblikovana vrstica %lu v seznamu virov %s (razčlenitev distribucije)" -#: apt-private/private-output.cc:711 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu posodobljenih, " +msgid "Opening %s" +msgstr "Odpiranje %s" -#: apt-private/private-output.cc:713 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "%lu downgraded, " -msgstr "%lu postaranih, " +msgid "Malformed line %u in source list %s (type)" +msgstr "Slabo oblikovana vrstica %u v seznamu virov %s (vrsta)" -#: apt-private/private-output.cc:715 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu bo odstranjenih in %lu ne nadgrajenih.\n" +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Vrsta '%s' v vrstici %u na seznamu virov %s ni znana" -#: apt-private/private-output.cc:719 +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Vrsta '%s' v vrstici %u na seznamu virov %s ni znana" + +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu ne popolnoma nameščenih ali odstranjenih.\n" +msgid "Release '%s' for '%s' was not found" +msgstr "Izdaje '%s' za '%s' ni mogoče najti" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Različice '%s' za '%s' ni mogoče najti" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "" +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Ni mogoče najti naloge '%s'" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Z logičnim izrazom '%s' ni mogoče najti nobenega paketa" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Z logičnim izrazom '%s' ni mogoče najti nobenega paketa" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Ukaz update ne sprejema argumentov" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "Ni mogoče izbrati različic in paketa '%s', saj je popolnoma navidezen" -#: apt-private/private-update.cc:90 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" +"Ni mogoče izbrati nameščene različice ali različice kandidata iz paketa " +"'%s', saj nima nobenega od njiju" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" +"Ni mogoče izbrati najnovejše različice iz paketa '%s', saj je popolnoma " +"navidezen" -#: apt-private/private-show.cc:156 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "Ni mogoče izbrati različice kandidata iz paketa %s, ker nima kandidata" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "Ni mogoče izbrati nameščene različice iz paketa %s, saj ni nameščen" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Notranja napaka, NamestiPakete je bil klican z pokvarjenimi paketi!" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%lid %lih %limin %lis" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Odstraniti je treba pakete, a je odstranjevanje onemogočeno." +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%lih %limin %lis" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Notranja napaka, Urejanje se ni končalo" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Kako čudno ... Velikosti se ne ujemata, pošljite sporočilo na apt@packages." -"debian.org" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/contrib/strutl.cc:1246 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Potrebno je dobiti %sB/%sB arhivov.\n" +msgid "Selection %s not found" +msgstr "Izbire %s ni mogoče najti" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/contrib/fileutl.cc:190 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Potrebno je dobiti %sB arhivov.\n" +msgid "Not using locking for read only lock file %s" +msgstr "Brez uporabe zaklepanja za zaklenjeno datoteko le za branje %s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/contrib/fileutl.cc:195 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Po tem opravilu bo porabljenega %sB dodatnega prostora.\n" +msgid "Could not open lock file %s" +msgstr "Ni mogoče odprti zaklenjene datoteke %s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/contrib/fileutl.cc:218 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Po tem opravilu bo sproščenega %sB prostora na disku.\n" +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Brez uporabe zaklepanja za datoteko %s, priklopljeno z NTFS" -#: apt-private/private-install.cc:200 +#: apt-pkg/contrib/fileutl.cc:223 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Na %s je premalo prostora." +msgid "Could not get lock %s" +msgstr "Ni mogoče zakleniti datoteke %s" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Prišlo je do težav in -y je bil uporabljen brez --force-yes" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "Seznama datotek ni mogoče ustvariti, ker '%s' ni mapa" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Navedena je možnost Samo preprosto, a to opravilo ni preprosto." +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "Preziranje '%s' v mapi '%s', ker ni običajna datoteka" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Da, naredi tako kot pravim!" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "Preziranje datoteke '%s' v mapi '%s', ker nima pripone imena datotek" -#: apt-private/private-install.cc:222 +#: apt-pkg/contrib/fileutl.cc:421 #, c-format msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"Naredili boste nekaj, kar je morda lahko škodljivo.\n" -"Za nadaljevanje vtipkajte frazo '%s'\n" -" ?] " - -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Prekini." +"Preziranje datoteke '%s' v mapi '%s', ker nima veljavne pripone imena datotek" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Ali želite nadaljevati?" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Pod-opravilo %s je prejelo segmentacijsko napako." -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Prejem nekaterih datotek ni uspel" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "Pod-opravilo %s je prejelo signal %u." -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Nekaterih arhivov ni mogoče dobiti. Poskusite uporabiti apt-get update ali --" -"fix-missing." +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "Pod-opravilo %s je vrnilo kodo napake (%u)" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing in izmenjava medija trenutno nista podprta" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Pod-opravilo %s se je nepričakovano zaključilo" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Ni mogoče popraviti manjkajočih paketov." +#: apt-pkg/contrib/fileutl.cc:913 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Težava med zapiranjem gzip datoteke %s" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Prekinjanje namestitve." +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Ni mogoče odpreti datoteke %s" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -"Naslednji paketi so izginili z vašega sistema, ker so vse\n" -"datoteke prepisali drugi paketi:" -msgstr[1] "" -"Naslednji paketi je izginil z vašega sistema, ker so vse\n" -"datoteke prepisali drugi paketi:" -msgstr[2] "" -"Naslednja paketa sta izginila z vašega sistema, ker so vse\n" -"datoteke prepisali drugi paketi:" -msgstr[3] "" -"Naslednji paketi so izginili z vašega sistema, ker so vse\n" -"datoteke prepisali drugi paketi:" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Ni mogoče odpreti opisnika datotek %d" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Opomba: To je dpkg storil samodejno in namenoma." +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Ni mogoče ustvariti podopravila IPD" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" -"Program ne bi smel brisati stvari, ni mogoče zagnati " -"SamodejnegaOdstranjevalnika" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Ni mogoče izvesti stiskanja " -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Videti je, da je SamodejniOdstranjevalnik nekaj uničil, kar se ne bi smelo " -"zgoditi\n" -"Pošljite poročilo o hrošču v apt." +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "Prebrano, še vedno je treba prebrati %llu bajtov, vendar ni nič ostalo" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "Naslednji podatki vam bodo morda pomagali rešiti težavo:" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "pisanje, preostalo je še %llu za pisanje, vendar ni bilo mogoče pisati" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Notranja napaka, SamodejniOdstranjevalnik je pokvaril stvari" +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Težava med zapiranjem datoteke %s" -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "Naslednji paketi so bili samodejno nameščeni in niso več zahtevani:" -msgstr[1] "Naslednji paket je bil samodejno nameščen in ni več zahtevan:" -msgstr[2] "" -"Naslednja paketa sta bila samodejno nameščena in nista več zahtevana:" -msgstr[3] "Naslednji paketi so bili samodejno nameščeni in niso več zahtevani:" +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Težava med preimenovanje datoteke %s v %s" -#: apt-private/private-install.cc:517 +#: apt-pkg/contrib/fileutl.cc:1938 #, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "%lu paketov je bilo samodejno nameščenih in niso več zahtevani.\n" -msgstr[1] "%lu paket je bil samodejno nameščen in ni bil več zahtevan.\n" -msgstr[2] "%lu paketa sta bila samodejno nameščena in nista več zahtevana.\n" -msgstr[3] "%lu paketi so bili samodejno nameščeni in niso več zahtevani.\n" +msgid "Problem unlinking the file %s" +msgstr "Težava med razvezovanjem datoteke %s" -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Uporabite 'apt-get autoremove' za njihovo odstranitev." -msgstr[1] "Uporabite 'apt-get autoremove' za njegovo odstranitev." -msgstr[2] "Uporabite 'apt-get autoremove' za njuno odstranitev." -msgstr[3] "Uporabite 'apt-get autoremove' za njihovo odstranitev." +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Težava med usklajevanjem datoteke" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Poskusite zagnati 'apt-get -f install', če želite popraviti naslednje:" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s ... Napaka!" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Nerešene odvisnosti. Poskusite 'apt-get -f install' brez paketov (ali " -"navedite rešitev)." +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s ... Narejeno" -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -"Nekaterih paketov ni mogoče namestiti. To lahko pomeni, da ste zahtevali\n" -"nemogoč položaj, če uporabljate nestabilno izdajo pa\n" -", da nekateri zahtevani paketi še niso ustvarjeni ali premaknjeni\n" -" iz Prihajajočega." - -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Pokvarjeni paketi" - -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Naslednji dodatni paketi bodo nameščeni:" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Predlagani paketi:" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s ... Narejeno" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Priporočeni paketi:" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "mmap prazne datoteke ni mogoč" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "%s je preskočen, ker je že nameščen in ne potrebuje nadgradnje.\n" +msgid "Couldn't duplicate file descriptor %i" +msgstr "Ni mogoče podvojiti opisnika datotek %i" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/mmap.cc:119 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "Preskok %s, ni nameščen in zahtevane so le nadgradnje\n" +msgid "Couldn't make mmap of %llu bytes" +msgstr "Ni mogoče narediti mmap %llu bajtov" -#: apt-private/private-install.cc:841 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Ponovna namestitev %s ni možna, ker prejem ni možen.\n" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Ni mogoče zapreti mmap" -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "Najnovejša različica %s je že nameščena.\n" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Ni mogoče uskladiti mmap" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Izbrana različica '%s' (%s) za '%s'\n" +msgid "Couldn't make mmap of %lu bytes" +msgstr "Ni mogoče narediti mmap %lu bajtov" -#: apt-private/private-install.cc:899 -#, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Izbrana različica '%s' (%s) za '%s' namesto '%s'\n" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Ni mogoče obrezati datoteke" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -"Paket '%s' ni nameščen, zato ni bil odstranjen. Ali ste mislili '%s'?\n" +"Dinamičnemu MMap je zmanjkalo prostora. Povečajte velikost APT::Cache-Start. " +"Trenutna vrednost: %lu. (man 5 apt.conf)" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Paket '%s' ni nameščen, zato ni bil odstranjen\n" - -#: apt-private/private-main.cc:32 msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -"OPOMBA: To je samo simulacija!\n" -" apt-get za pravo izvajanje potrebuje privilegije skrbnika.\n" -" Zaklepanje je onemogočeno, zato se ne zanašajte\n" -" na pomembnost trenutnega pravega stanja!" - -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "POZOR: Naslednjih paketov ni bilo mogoče overiti!" - -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Opozorilo overitve je bilo prepisano.\n" - -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Nekaterih paketkov bi bilo mogoče overiti" - -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Ali želite te pakete namestiti brez preverjanja?" - -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Ni mogoče preimenovati %s v %s" +"Ni mogoče povečati velikosti MMap, ker je omejitev %lu bajtov že dosežena." -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" +"Ni mogoče povečati velikosti MMap, ker je samodejno povečevanje onemogočeno." -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Ni mogoče določiti priklopne točke %s" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Zadetek " +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Ni mogoče določiti CD-ROM-a" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Dobi:" +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Neprepoznana vrsta okrajšave: '%c'" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Prezr " +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Odpiranje nastavitvene datoteke %s" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Nap " +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Skladenjska napaka %s:%u: Blok se začne brez imena." -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/configuration.cc:820 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Pridobljenih %sB v %s (%sB/s)\n" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Skladenjska napaka %s:%u: Slabo oblikovana oznaka." -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/configuration.cc:837 #, c-format -msgid " [Working]" -msgstr " [Delo]" +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Skladenjska napaka %s:%u: Dodatna krama za vrednostjo." -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/configuration.cc:877 #, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -"Sprememba medija: vstavite disk z oznako\n" -" '%s'\n" -"v enoto '%s' in pritisnite vnosno tipko\n" +"Skladenjska napaka %s:%u: Napotki se lahko izvedejo le na vrhnji ravni." -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/configuration.cc:884 #, c-format -msgid "No mirror file '%s' found " -msgstr "Datoteke zrcalnih strežnikov '%s' ni mogoče najti " +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Skladenjska napaka %s:%u: Preveč vgnezdenih vključitev" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Datoteke zrcalnega strežnika '%s' ni mogoče prebrati" - -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Datoteke zrcalnega strežnika '%s' ni mogoče prebrati" +msgid "Syntax error %s:%u: Included from here" +msgstr "Skladenjska napaka %s:%u: Vključeno od tu" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:897 #, c-format -msgid "[Mirror: %s]" -msgstr "[Zrcalni strežnik: %s]" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Ustvarjanje cevi IPC do podopravila je spodletelo" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Povezava se je prezgodaj zaprla" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Napačna privzeta nastavitev!" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Za nadaljevanje pritisnite vnosno tipko." - -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Ali želite izbrisati vse predhodno prejete datoteke .deb?" +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Skladenjska napaka %s:%u: Nepodprt napotek '%s'" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"Med razširajanjem je prišlo do nekaterih napak. Paketi, ki so bili nameščeni" - -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "bodo bili nastavljeni. To lahko povzroči podvojene napake" +"Skladenjska napaka %s:%u: počisti ukaz zahteva drevo možnosti kot argument" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"ali do napak zaradi manjkajočih odvisnosti. To je v redu, pomembne so samo " -"napake" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Skladenjska napaka %s:%u: Dodatna krama na koncu datoteke" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "nad tem sporočilom. Popravite jih in poženite Namest[I]tev še enkrat" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "V %s ni nameščenih zbirk ključev." -#: dselect/update:30 -msgid "Merging available information" -msgstr "Združevanje razpoložljivih podaktov" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Možnost ukazne vrstice '%c' [iz %s] ni poznana." -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode je poklical stabilno povezano vozlišče" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Možnosti ukazne vrstice %s ni mogoče razumeti" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Ni mogoče najti razpršenega elementa!" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Možnost ukazne vrstice %s ni boolova vrednost" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Ni mogoče dodeliti odklona" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Možnost %s zahteva argument." -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Notranja napaka v AddDiversion" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Možnost %s: Določilo predmeta nastavitve zahtevajo =<val>." -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Poskus prepisovanja odklona, %s -> %s in %s/%s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Možnost %s zahteva celoštevilski argument, ne '%s'" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Dvojni seštevek odklona %s -> %s" +msgid "Option '%s' is too long" +msgstr "Možnost '%s' je predolga" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Dvojnik datoteke z nastavitvami %s/%s" +msgid "Sense %s is not understood, try true or false." +msgstr "Pomena %s ni mogoče razumeti, poskusite pravilno ali napačno." -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The path %s is too long" -msgstr "Pot %s je predolga" +msgid "Invalid operation %s" +msgstr "Neveljavno opravilo %s" -#: apt-inst/extract.cc:132 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unpacking %s more than once" -msgstr "Odpakiranje %s več kot enkrat" +msgid "Installing %s" +msgstr "Nameščanje %s" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The directory %s is diverted" -msgstr "Mapa %s je odklonjena" +msgid "Configuring %s" +msgstr "Nastavljanje %s" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Paket poskuša pisati v tarčo odklona %s/%s" +msgid "Removing %s" +msgstr "Odstranjevanje %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Pot odklona je predloga" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "%s je bil popolnoma odstranjen" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to stat %s" -msgstr "Napaka med določitvijo %s" +msgid "Noting disappearance of %s" +msgstr "%s je izginil" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Ni mogoče preimenovati %s v %s" +msgid "Running post-installation trigger %s" +msgstr "Poganjanje sprožilca po namestitvi %s" -#: apt-inst/extract.cc:249 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Mapa %s je bil zamenjana z ne-mapo" +msgid "Directory '%s' missing" +msgstr "Mapa '%s' manjka" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Iskanje vozlišča v njegovem razpršenem vedru ni uspelo" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Ni mogoče odpreti datoteke '%s'" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Pot je predolga" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Pripravljanje %s" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Prepiši zadetek paketa brez vnosa različice za %s" +msgid "Unpacking %s" +msgstr "Razširjanje %s" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Datoteka %s/%s prepisuje datoteko v paketu %s" +msgid "Preparing to configure %s" +msgstr "Pripravljanje na nastavljanje %s" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Unable to stat %s" -msgstr "Ni mogoče določiti %s" +msgid "Installed %s" +msgstr "%s je bil nameščen" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to write file %s" -msgstr "Zapisovanje datoteke %s je spodletelo" +msgid "Preparing for removal of %s" +msgstr "Pripravljanje na odstranitev %s" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Failed to close file %s" -msgstr "Napaka med zapiranjem datoteke %s" +msgid "Removed %s" +msgstr "%s je bil odstranjen" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "To ni veljaven arhiv DEB. Manjka član '%s'." +msgid "Preparing to completely remove %s" +msgstr "Pripravljanje na popolno odstranitev %s" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Notranja napaka. Ni mogoče najti člana %s." +msgid "Completely removed %s" +msgstr "%s je bil popolnoma odstranjen" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Nadzorne datoteke ni mogoče razčleniti" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Neveljaven podpis arhiva" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Ni mogoče pisati na %s" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Napaka med branjem glave člana arhiva" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Neveljavna glava arhiva člana %s" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Neveljavna glava člana arhiva" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "Opravilo je bilo prekinjeno preden se je lahko končalo" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arhiv je prekratek" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" +"Poročilo apport ni bilo napisano, ker je bilo število MaxReports že doseženo" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Glav arhiva ni mogoče brati" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "težave odvisnosti - puščanje nenastavljenega" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Ni mogoče ustvariti pip" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Poročilo apport ni bilo napisano, ker sporočilo o napaki nakazuje na " +"navezujočo napako iz predhodne napake." -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Ni mogoče izvesti gzip " +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Poročilo apport ni bilo napisano, ker sporočilo o napaki nakazuje na napako " +"polnega diska" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Pokvarjen arhiv" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Poročilo apport ni bilo napisano, ker sporočilo o napaki nakazuje na napako " +"zaradi pomanjkanja pomnilnika" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Nadzorna vsota tar ni uspela, arhiv je pokvarjen" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Poročilo apport je bilo napisano, ker sporočilo o napaki nakazuje na težavo " +"na krajevnem sistemu" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Poročilo apport ni bilo napisano, ker sporočilo o napaki nakazuje na napako " +"dpkg V/I" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Neznana vrsta glave TAR %u, član %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Skrbniške mape (%s) ni mogoče zakleniti. Jo morda uporablja drugo opravilo?" + +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Skrbniške mape (%s) ni mogoče zakleniti. Ali ste skrbnik?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "dpkg je bil prekinjen. Za popravilo napake morate ročno pognati '%s'. " + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Ni zaklenjeno" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/sv.po b/po/sv.po index 7c17016a0..7409d9285 100644 --- a/po/sv.po +++ b/po/sv.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2010-08-24 21:18+0100\n" "Last-Translator: Daniel Nylander <po@danielnylander.se>\n" "Language-Team: Swedish <debian-l10n-swedish@debian.org>\n" @@ -19,3217 +19,3218 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "Indexfiler av typ \"%s\" stöds inte" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "Kunde inte läsa %s" - -# Felmeddelande för misslyckad chdir -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Kunde inte byta till %s" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "Kunde inte ta status på %s." - -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Progress: [%3i%%]" +msgid "Package %s version %s has an unmet dep:\n" msgstr "" +"Paketet %s med version %s har ett beroende som inte kan tillfredsställas:\n" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Kör dpkg" - -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Paketsystemet \"%s\" stöds inte" - -# -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Kunde inte fastställa en lämplig paketsystemstyp" - -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Skrev %i poster.\n" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Totalt antal paketnamn: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Skrev %i poster med %i saknade filer.\n" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Totala paketstrukturer: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Skrev %i poster med %i filer som inte stämmer\n" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Vanliga paket: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "Skrev %i poster med %i saknade filer och %i filer som inte stämmer\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Helt virtuella paket: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "Kan inte hitta autentiseringspost för: %s" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Enstaka virtuella paket: " -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "Hash-kontrollsumman stämmer inte för: %s" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Blandade virtuella paket: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Metoddrivrutinen %s kunde inte hittas." +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Saknade: " -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Försäkra dig om att paketet \"dpkg-dev\" är installerat.\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Totalt antal olika versioner: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Metoden %s startade inte korrekt" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Totalt antal olika beskrivningar: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "" -"Mata in skivan med etiketten \"%s\" i enheten \"%s\" och tryck på Enter." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Totalt antal beroenden: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Paketlistan eller statusfilen kunde inte tolkas eller öppnas." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Totalt antal version/filrelationer: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Du kan möjligen rätta till problemet genom att köra \"apt-get update\"" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Totalt antal beskrivning/filrelationer: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Listan över källor kunde inte läsas." +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Totalt antal tillhandahållningsmarkeringar: " -# Felmeddelande -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Paketcachen är tom" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Totalt antal sökmönstersträngar: " -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Paketcachefilen är skadad" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Totalt utrymme för versionsberoenden: " -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Paketcachefilens version är inkompatibel" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Totalt bortkastat utrymme: " -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "Paketcachefilen är skadad" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Totalt utrymme som kan redogöras för: " -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Denna APT saknar stöd för versionssystemet \"%s\"" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Paketcachen byggdes för en annan arkitektur" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Beroende av" +msgid "Package file %s is out of sync." +msgstr "Paketfilen %s är inte synkroniserad." -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Förberoende av" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Inga paket hittades" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Föreslår" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Du måste ange minst ett sökmönster" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Rekommenderar" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -# "Konfliktar"? -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Står i konflikt med" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "Kunde inte hitta paketet %s" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Ersätter" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "\"Package\"-filer:" -# "Föråldrar"? -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Föråldrar" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Cachen är inte synkroniserad, kan inte korsreferera en paketfil" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Gör sönder" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Fastnålade paket:" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Utökar" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(hittades inte)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "viktigt" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Installerad: " -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "nödvändigt" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Kandidat: " -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standard" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(ingen)" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "valfri" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Paketnålning: " -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Versionstabell:" -#: apt-pkg/pkgrecords.cc:38 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "Indexfiler av typ \"%s\" stöds inte" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s för %s kompilerad den %s %s\n" + +#: cmdline/apt-cache.cc:1749 +#, fuzzy +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Användning: apt-cache [flaggor] kommando\n" +" apt-cache [flaggor] add fil1 [fil2 ...]\n" +" apt-cache [flaggor] showpkg paket1 [paket2 ...]\n" +" apt-cache [flaggor] showsrc paket1 [paket2 ...]\n" +"\n" +"apt-cache är ett lågnivåverktyg för att hantera APTs binära cachefiler\n" +"samt hämta information från dem\n" +"\n" +"Kommandon:\n" +" add - Lägg till en paketfil till källcachen\n" +" gencaches - Bygg både paket- och källcache\n" +" showpkg - Visa viss allmän information om ett enskilt paket\n" +" showsrc - Visa källkodsposter\n" +" stats - Visa viss grundläggande statistik\n" +" dump - Visa hela filen i koncis form\n" +" dumpavail - Skriv en \"available\"-fil på standard ut\n" +" unmet - Visa otillfredsställbara beroenden\n" +" search - Sök i paketlistan med ett reguljärt uttryck\n" +" show - Visa en läsbar post för paketet\n" +" showauto - Visa en lista över automatiskt installerade paket\n" +" depends - Visa rå information om beroenden för ett paket\n" +" rdepends - Visa information om omvända beroenden för ett paket\n" +" pkgnames - Lista namnen på alla paket i systemet\n" +" dotty - Generera paketdiagram för GraphViz\n" +" xvcg - Generera paketdiagram för xvcg\n" +" policy - Visa policyinställningar\n" +"\n" +"Flaggor:\n" +" -h Denna hjälptext.\n" +" -p=? Paketcachen.\n" +" -s=? Källcachen.\n" +" -q Inaktivera förloppsindikatorn.\n" +" -i Visa endast viktiga beroenden för \"unmet\"-kommandot.\n" +" -c=? Läs denna konfigurationsfil.\n" +" -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n" +"Se manualsidorna för apt-cache(8) och apt.conf(5) för mer information.\n" + +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Ange ett namn för denna skiva, exempelvis \"Debian 5.0.3 Disk 1\"" + +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Mata in en skiva i enheten och tryck på Enter" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Regex compilation error - %s" -msgstr "Fel vid kompilering av reguljärt uttryck - %s" +msgid "Failed to mount '%s' to '%s'" +msgstr "Misslyckades med att montera \"%s\" till \"%s\"" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Cachen har ett inkompatibelt versionssystem" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" -# NewPackage etc. är funktionsnamn -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Fel uppstod vid hantering av %s (FindPkg)" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Upprepa proceduren för resten av cd-skivorna i din uppsättning." -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "Grattis, du överskred antalet paketnamn som denna APT kan hantera." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumenten gavs inte parvis" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Grattis, du överskred antalet versioner som denna APT kan hantera." +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"Användning: apt-config [flaggor] kommando\n" +"\n" +"apt-config är ett enkelt verktyg för att läsa APTs konfigurationsfil\n" +"\n" +"Kommandon:\n" +" shell - Skalläge.\n" +" dump - Visa konfigurationen.\n" +"\n" +"Flaggor:\n" +" -h Denna hjälptext.\n" +" -c=? Läs denna konfigurationsfil.\n" +" -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Grattis, du överskred antalet beskrivningar som denna APT kan hantera." +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\"" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "Grattis, du överskred antalet beroenden som denna APT kan hantera." +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\"" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "Paketet %s %s hittades inte när filberoenden hanterades" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\"" -#: apt-pkg/pkgcachegen.cc:1211 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Kunde inte ta status på källkodspaketlistan %s" - -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Läser paketlistor" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Väljer \"%s\" som källkodspaket istället för \"%s\"\n" -# Bättre ord? -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Samlar filtillhandahållningar" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Ignorera otillgängliga versionen \"%s\" av paketet \"%s\"" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Unable to write to %s" -msgstr "Kunde inte skriva till %s" +msgid "Couldn't find package %s" +msgstr "Kunde inte hitta paketet %s" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "In-/utfel vid lagring av källcache" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s är satt till manuellt installerad.\n" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s är satt till automatiskt installerad.\n" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Internt fel, problemlösaren förstörde någonting" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Kunde inte låsa hämtningskatalogen" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Du måste ange minst ett paket att hämta källkod för" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "namnbyte misslyckades, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Hash-kontrollsumman stämmer inte" +msgid "Unable to find a source package for %s" +msgstr "Kunde inte hitta något källkodspaket för %s" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Storleken stämmer inte" - -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Felaktig åtgärd %s" - -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:786 #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" +"OBSERVERA: paketering av \"%s\" hanteras i versionshanteringssystemet \"%s\" " +"på:\n" +"%s\n" -#: apt-pkg/acquire-item.cc:1589 +#: cmdline/apt-get.cc:791 #, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Kunde inte tolka \"Release\"-filen %s" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Det finns ingen öppen nyckel tillgänglig för följande nyckel-id:n:\n" - -#: apt-pkg/acquire-item.cc:1669 -#, c-format msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" +"Använd:\n" +"bzr get %s\n" +"för att hämta senaste (möjligen inte utgivna) uppdateringar av paketet.\n" -#: apt-pkg/acquire-item.cc:1691 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Konflikt i distribution: %s (förväntade %s men fick %s)" - -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:843 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Ett fel inträffade vid verifiering av signaturen. Förrådet har inte " -"uppdaterats och de tidigare indexfilerna kommer att användas. GPG-fel: %s: " -"%s\n" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Hoppar över redan hämtade filen \"%s\"\n" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "GPG error: %s: %s" -msgstr "GPG-fel: %s: %s" +msgid "Couldn't determine free space in %s" +msgstr "Kunde inte fastställa ledigt utrymme i %s" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:882 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"Jag kunde inte hitta någon fil för paketet %s. Detta kan betyda att du " -"manuellt måste reparera detta paket (på grund av saknad arkitektur)." +msgid "You don't have enough free space in %s" +msgstr "Du har inte tillräckligt mycket ledigt utrymme i %s" -#: apt-pkg/acquire-item.cc:1925 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Behöver hämta %sB/%sB källkodsarkiv.\n" -#: apt-pkg/acquire-item.cc:1983 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "Paketindexfilerna är skadede. Inget \"Filename:\"-fält för paketet %s." +msgid "Need to get %sB of source archives.\n" +msgstr "Behöver hämta %sB källkodsarkiv.\n" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Leverantörsblocket %s saknar fingeravtryck" +msgid "Fetch source %s\n" +msgstr "Hämtar källkoden %s\n" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, c-format -msgid "List directory %spartial is missing." -msgstr "Listkatalogen %spartial saknas." +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Misslyckades med att hämta vissa arkiv." -#: apt-pkg/acquire.cc:91 -#, c-format -msgid "Archives directory %spartial is missing." -msgstr "Arkivkatalogen %spartial saknas." +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Hämtningen färdig i \"endast-hämta\"-läge" -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Unable to lock directory %s" -msgstr "Kunde inte låsa katalogen %s" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Packar inte upp redan uppackad källkod i %s\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Hämtar fil %li av %li (%s återstår)" +msgid "Unpack command '%s' failed.\n" +msgstr "Uppackningskommandot \"%s\" misslyckades.\n" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Hämtar fil %li av %li" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Försäkra dig om att paketet \"dpkg-dev\" är installerat.\n" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Misslyckades med att hämta %s %s\n" +msgid "Build command '%s' failed.\n" +msgstr "Byggkommandot \"%s\" misslyckades.\n" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Vissa indexfiler kunde inte hämtas, de har ignorerats eller så har de gamla " -"använts istället." +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Barnprocessen misslyckades" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Du måste lägga till några \"source\"-URI:er i din sources.list" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "Du måste ange minst ett paket att kontrollera byggberoenden för" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -# "Package" är en sträng i konfigurationsfilen -#: apt-pkg/policy.cc:422 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Ogiltig post i konfigurationsfilen %s, \"Package\"-rubriken saknas" +msgid "Unable to get build-dependency information for %s" +msgstr "Kunde inte hämta information om byggberoenden för %s" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Did not understand pin type %s" -msgstr "Förstod inte nåltypen %s" +msgid "%s has no build depends.\n" +msgstr "%s har inga byggberoenden.\n" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Prioritet ej angiven (eller noll) för nål" +#: cmdline/apt-get.cc:1272 +#, fuzzy, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan " +"hittas" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -"Kunde inte genomföra omedelbar konfiguration på \"%s\". Se man 5 apt.conf " -"under APT::Immediate-Configure för information. (%d)" +"%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan " +"hittas" + +#: cmdline/apt-get.cc:1313 +#, c-format +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"Misslyckades med att tillfredsställa %s-beroendet för %s: Det installerade " +"paketet %s är för nytt" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:1352 #, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Kunde inte öppna filen \"%s\"" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"%s-beroendet på %s kan inte tillfredsställas eftersom inga tillgängliga " +"versioner av paketet %s tillfredsställer versionskraven" -#: apt-pkg/packagemanager.cc:583 -#, c-format +#: cmdline/apt-get.cc:1358 +#, fuzzy, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -"För att genomföra installationen måste det systemkritiska paketet %s " -"tillfälligt tas bort på grund av en beroendespiral i Conflicts/Pre-Depends. " -"Detta är oftast en dålig idé, men om du verkligen vill göra det kan du " -"aktivera flaggan \"APT::Force-LoopBreak\"." +"%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan " +"hittas" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Line %u too long in source list %s." -msgstr "Rad %u är för lång i källistan %s." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Avmonterar CD-ROM...\n" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Misslyckades med att tillfredsställa %s-beroendet för %s: %s" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Använder cd-rom-monteringspunkten %s\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Väntar på skiva...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Monterar cd-rom...\n" - -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identifierar... " +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Byggberoenden för %s kunde inte tillfredsställas." -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Lagrad etikett: %s \n" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Misslyckades med att behandla byggberoenden" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Söker efter indexfiler på skivan...\n" +# Felmeddelande för misslyckad chdir +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Ansluter till %s (%s)" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Hittade %zu paketindex, %zu källkodsindex, %zu översättningsindex och %zu " -"signaturer\n" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Moduler som stöds:" -#: apt-pkg/cdrom.cc:744 +#: cmdline/apt-get.cc:1633 +#, fuzzy msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"Kunde inte hitta några paketfiler. Detta är kanske inte en Debian-skiva " -"eller felaktig arkitektur?" - -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Hittade etiketten \"%s\"\n" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Namnet är ogiltigt, försök igen.\n" - -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"Denna skiva heter: \n" -"\"%s\"\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopierar paketlistor..." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Skriver ny källista\n" +"Användning: apt-get [flaggor] kommando\n" +" apt-get [flaggor] install|remove paket1 [paket2 ...]\n" +" apt-get [flaggor] source paket1 [paket2 ...]\n" +"\n" +"apt-get är ett enkelt kommandoradsgränssnitt för att hämta och installera\n" +"paket. De mest använda kommandona är \"update\" och \"install\".\n" +"\n" +"Kommandon:\n" +" update - Hämta nya paketlistor\n" +" upgrade - Genomför en uppgradering\n" +" install - Installera nya paket (paket är libc6, inte libc6.deb)\n" +" remove - Ta bort paket\n" +" autoremove - Ta automatiskt bort alla oanvända paket\n" +" purge - Ta bort paket och konfigurationsfiler\n" +" source - Hämta källkodsarkiv\n" +" build-dep - Tillfredsställ byggberoenden för källkodspaket\n" +" dist-upgrade - Uppgradering av distributionen, se apt-get(8)\n" +" dselect-upgrade - Följ valen från dselect\n" +" clean - Ta bort hämtade arkivfiler\n" +" autoclean - Ta bort gamla hämtade arkivfiler\n" +" check - Kontrollera att det inte finns några trasiga beroenden\n" +" markauto - Markera angivna paket som automatiskt installerade\n" +" unmarkauto - Markera angivna paket som manuellt installerade\n" +"\n" +"Flaggor:\n" +" -h Denna hjälptext.\n" +" -q Utdata lämplig för loggar - ingen förloppsindikator.\n" +" -qq Ingen utdata förutom vid fel.\n" +" -d Bara hämta - VARKEN installera eller packa upp arkiven.\n" +" -s Gör ingenting, simulera vad som skulle hända.\n" +" -y Antag ja på alla frågor utan att fråga.\n" +" -f Försök rätta ett system med otillfredsställda beroenden.\n" +" -m Försök fortsätta även om arkiven inte kan hittas.\n" +" -u Visa även en lista över uppgraderade paket.\n" +" -b Bygg källkodspaketet när det hämtats.\n" +" -V Visa pratsamma versionsnummer.\n" +" -c=? Läs denna konfigurationsfil.\n" +" -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n" +"Se manualsidorna för apt-get(8), sources.list(5) och apt.conf(5)\n" +"för mer information och flaggor.\n" +" Denna APT har Speciella Ko-Krafter.\n" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Poster i källistan för denna skiva:\n" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Du måste ange minst ett paket att hämta källkod för" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"Paketet %s måste installeras om, men jag kan inte hitta något arkiv för det." -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-helper.cc:66 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Fel, pkgProblemResolver::Resolve genererade avbrott; detta kan bero på " -"tillbakahållna paket." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Kunde inte korrigera problemen, du har hållit tillbaka trasiga paket." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Bygger beroendeträd" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Kandiderande versioner" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Beroendegenerering" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Läser tillståndsinformation" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Misslyckades med att öppna StateFile %s" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "men det är inte installerat" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Misslyckades med att skriva temporär StateFile %s" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s är satt till manuellt installerad.\n" -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Kunde inte tolka paketfilen %s (1)" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s är satt till automatiskt installerad.\n" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Kunde inte tolka paketfilen %s (2)" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s är redan den senaste versionen.\n" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Utgåvan \"%s\" för \"%s\" hittades inte" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s är redan den senaste versionen.\n" -#: apt-pkg/cacheset.cc:492 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Version \"%s\" för \"%s\" hittades inte" +msgid "Waited for %s but it wasn't there" +msgstr "Väntade på %s men den fanns inte där" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "Kunde inte hitta paketet %s" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "%s är satt till manuellt installerad.\n" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Kunde inte hitta funktionen \"%s\"" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "Misslyckades med att öppna %s" -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\"" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\"" +#: cmdline/apt-mark.cc:392 +msgid "" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." +msgstr "" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -"Kan inte välja versioner från paketet \"%s\" eftersom det är helt virtuellt" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: methods/cdrom.cc:203 #, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Kunde inte läsa cd-rom-databasen %s" + +#: methods/cdrom.cc:212 msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" msgstr "" -"Kan inte välja installerad version eller kandidatversion från paketet \"%s\" " -"eftersom det inte har någon av dem" +"Använd apt-cdrom för att APT ska känna igen denna cd. apt-get update kan " +"inte användas för att lägga till skivor" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"Kan inte välja senaste version från paketet \"%s\" eftersom det är helt " -"virtuellt" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Fel cd-rom" -#: apt-pkg/cacheset.cc:655 +#: methods/cdrom.cc:249 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" -"Kan inte välja kandidatversion från paketet %s eftersom det inte har någon " -"kandidat" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Kunde inte avmontera cd-rom:en i %s, den kanske fortfarande används." -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" -"Kan inte välja installerad version från paketet %s eftersom det inte är " -"installerat" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Skivan hittades inte." -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "Kunde inte tolka \"Release\"-filen %s" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Filen hittades inte" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "Inga sektioner i Release-filen %s" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Kunde inte ta status" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Ingen Hash-post i Release-filen %s" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Misslyckades ställa in ändringstid" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Ogiltig \"Valid-Until\"-post i Release-filen %s" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Ogiltig URI, lokala URI:er får inte börja med //" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Ogiltig \"Date\"-post i Release-filen %s" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Loggar in" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Rad %lu i källistan %s har fel format (URI-tolkning)" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Kunde inte fastställa namnet på partnern" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Rad %lu i källistan %s har fel format ([option] ej tolkningsbar)" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Kunde inte fastställa det lokala namnet" -#: apt-pkg/sourcelist.cc:173 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Rad %lu i källistan %s har fel format ([option] för kort)" +msgid "The server refused the connection and said: %s" +msgstr "Servern nekade anslutningen och sade: %s" -#: apt-pkg/sourcelist.cc:184 +#: methods/ftp.cc:225 #, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Rad %lu i källistan %s har fel format ([%s] är inte en tilldelning)" +msgid "USER failed, server said: %s" +msgstr "USER misslyckades, servern sade: %s" -#: apt-pkg/sourcelist.cc:190 +#: methods/ftp.cc:232 #, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Rad %lu i källistan %s har fel format ([%s] saknar nyckel)" +msgid "PASS failed, server said: %s" +msgstr "PASS misslyckades, servern sade: %s" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "Rad %lu i källistan %s har fel format ([%s] nyckeln %s saknar värde)" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"En mellanserver (proxy) angavs men inget inloggningsskript, Acquire::ftp::" +"ProxyLogin är tom." -#: apt-pkg/sourcelist.cc:206 +#: methods/ftp.cc:280 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Rad %lu i källistan %s har (URI)" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Kommandot \"%s\" i inloggningsskriptet misslyckades, servern sade: %s" -#: apt-pkg/sourcelist.cc:208 +#: methods/ftp.cc:306 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Rad %lu i källistan %s har fel format (dist)" +msgid "TYPE failed, server said: %s" +msgstr "TYPE misslyckades, servern sade: %s" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Rad %lu i källistan %s har fel format (URI-tolkning)" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Tidsgränsen för anslutningen överskreds" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Rad %lu i källistan %s har fel format (Absolut dist)" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Servern stängde anslutningen" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Rad %lu i källistan %s har fel format (dist-tolkning)" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Läsfel" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Öppnar %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Ett svar spillde bufferten." -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Rad %u i källistan %s har fel format (typ)" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protokollet skadat" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Typ \"%s\" är inte känd på rad %u i listan över källor %s" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Skrivfel" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Typ \"%s\" är inte känd på rad %u i listan över källor %s" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Kunde inte skapa ett uttag (socket)" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Installerar %s" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Kunde inte ansluta datauttaget (socket), inget svar inom tidsgräns" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Konfigurerar %s" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Misslyckades" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Tar bort %s" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Kunde inte ansluta passivt uttag (socket)." -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "Tar bort hela %s" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo kunde inte få tag i ett lyssnande uttag (socket)" -#: apt-pkg/deb/dpkgpm.cc:99 +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Kunde inte binda ett uttag (socket)" + +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Kunde inte lyssna på uttaget (socket)" + +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Kunde inte fastställa uttagets namn (socket)" + +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Kunde inte sända PORT-kommando" + +#: methods/ftp.cc:802 #, c-format -msgid "Noting disappearance of %s" -msgstr "Uppmärksammar försvinnandet av %s" +msgid "Unknown address family %u (AF_*)" +msgstr "Okänd adressfamilj %u (AF_*)" -#: apt-pkg/deb/dpkgpm.cc:100 +#: methods/ftp.cc:811 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Kör efterinstallationsutlösare %s" +msgid "EPRT failed, server said: %s" +msgstr "EPRT misslyckades, servern sade: %s" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Anslutet datauttag (socket) fick inte svar inom tidsgränsen" + +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Kunde inte ta emot anslutningen" + +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problem med att lägga filen till hashtabellen" + +#: methods/ftp.cc:890 #, c-format -msgid "Directory '%s' missing" -msgstr "Katalogen \"%s\" saknas" +msgid "Unable to fetch file, server said '%s'" +msgstr "Kunde inte hämta filen, servern sade \"%s\"" + +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Datauttag (socket) fick inte svar inom tidsgränsen" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#: methods/ftp.cc:935 #, c-format -msgid "Could not open file '%s'" -msgstr "Kunde inte öppna filen \"%s\"" +msgid "Data transfer failed, server said '%s'" +msgstr "Dataöverföringen misslyckades, servern sade \"%s\"" -#: apt-pkg/deb/dpkgpm.cc:989 +# Statusmeddelande, byter från substantiv till verb +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Frågar" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Kunde inte starta " + +# Felmeddelande för misslyckad chdir +#: methods/connect.cc:76 #, c-format -msgid "Preparing %s" -msgstr "Förbereder %s" +msgid "Connecting to %s (%s)" +msgstr "Ansluter till %s (%s)" -#: apt-pkg/deb/dpkgpm.cc:990 +#: methods/connect.cc:87 #, c-format -msgid "Unpacking %s" -msgstr "Packar upp %s" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/deb/dpkgpm.cc:995 +# [f]amilj, [t]yp, [p]rotokoll +#: methods/connect.cc:94 #, c-format -msgid "Preparing to configure %s" -msgstr "Förbereder konfigurering av %s" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Kunde inte skapa ett uttag (socket) för %s (f=%u t=%u p=%u)" -#: apt-pkg/deb/dpkgpm.cc:997 +#: methods/connect.cc:100 #, c-format -msgid "Installed %s" -msgstr "Installerade %s" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Kunde inte initiera anslutningen till %s:%s (%s)." -#: apt-pkg/deb/dpkgpm.cc:1002 +#: methods/connect.cc:108 #, c-format -msgid "Preparing for removal of %s" -msgstr "Förbereder borttagning av %s" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Kunde inte ansluta till %s:%s (%s), anslutningen överskred tidsgräns" -#: apt-pkg/deb/dpkgpm.cc:1004 +#: methods/connect.cc:126 #, c-format -msgid "Removed %s" -msgstr "Tog bort %s" +msgid "Could not connect to %s:%s (%s)." +msgstr "Kunde inte ansluta till %s:%s (%s)." -#: apt-pkg/deb/dpkgpm.cc:1009 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Förbereder borttagning av hela %s" +msgid "Connecting to %s" +msgstr "Ansluter till %s" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Completely removed %s" -msgstr "Tog bort hela %s" +msgid "Could not resolve '%s'" +msgstr "Kunde inte slå upp \"%s\"" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: methods/connect.cc:205 +#, c-format +msgid "Temporary failure resolving '%s'" +msgstr "Temporärt fel vid uppslagning av \"%s\"" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +# Okänd felkod; %i = koden +#: methods/connect.cc:209 #, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Kunde inte skriva till %s" - -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +msgid "System error resolving '%s:%s'" +msgstr "Något konstigt hände när \"%s:%s\" slogs upp (%i - %s)" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +# Okänd felkod; %i = koden +#: methods/connect.cc:211 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Väntade på %s men den fanns inte där" - -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "Ingen apport-rapport skrevs därför att MaxReports redan har uppnåtts" - -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "beroendeproblem - lämnar okonfigurerad" - -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"Ingen apport-rapport skrevs därför att felmeddelandet indikerar att det är " -"ett efterföljande fel från ett tidigare problem." +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Något konstigt hände när \"%s:%s\" slogs upp (%i - %s)" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Ingen apport-rapport skrevs därför att felmeddelandet indikerar att " -"diskutrymmet är slut" +#: methods/connect.cc:258 +#, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Kunde inte ansluta till %s:%s:" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: methods/gpgv.cc:168 msgid "" -"No apport report written because the error message indicates a out of memory " -"error" +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Ingen apport-rapport skrevs därför att felmeddelandet indikerar att minnet " -"är slut" +"Internt fel: Korrekt signatur men kunde inte fastställa nyckelns " +"fingeravtryck?!" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" -"Ingen apport-rapport skrevs därför att felmeddelandet indikerar att " -"diskutrymmet är slut" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Minst en ogiltig signatur träffades på." -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"Ingen apport-rapport skrevs därför att felmeddelandet indikerar ett in-/ut-" -"fel för dpkg" +"Kunde inte köra \"gpgv\" för att verifiera signatur (är gpgv installerad?)" -#: apt-pkg/deb/debsystem.cc:91 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"Kunde inte låsa administrationskatalogen (%s). Använder en annan process den?" -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Kunde inte låsa administrationskatalogen (%s). Är du root?" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Okänt fel vid körning av gpgv" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Följande signaturer är ogiltiga:\n" + +#: methods/gpgv.cc:231 msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -"dpkg avbröts. Du måste köra \"%s\" manuellt för att korrigera problemet. " - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Inte låst" - -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%lid %lih %limin %lis" - -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%lih %limin %lis" - -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%limin %lis" - -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%lis" +"Följande signaturer kunde inte verifieras för att den öppna nyckeln inte är " +"tillgänglig:\n" -#: apt-pkg/contrib/strutl.cc:1243 -#, c-format -msgid "Selection %s not found" -msgstr "Valet %s hittades inte" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Använder inte låsning för skrivskyddade låsfilen %s" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Fel vid skrivning till filen" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Kunde inte öppna låsfilen %s" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Fel vid läsning från server: Andra änden stängde förbindelsen" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Använder inte låsning för nfs-monterade låsfilen %s" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Fel vid läsning från server" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Kunde inte erhålla låset %s" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Fel vid skrivning till fil" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "\"Select\" misslyckades" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Anslutningen överskred tidsgränsen" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Fel vid skrivning till utdatafil" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" -msgstr "" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Väntar på rubriker" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Underprocessen %s råkade ut för ett segmenteringsfel." +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Felaktig rubrikrad" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "Underprocessen %s tog emot signal %u." +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Http-servern sände ett ogiltigt svarshuvud" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Underprocessen %s svarade med en felkod (%u)" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "Http-servern sände ett ogiltigt Content-Length-rubrik" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Underprocessen %s avslutades oväntat" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "Http-servern sände ett ogiltigt Content-Range-rubrik" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Skrivfel" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Den här http-serverns stöd för delvis hämtning fungerar inte" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problem med att stänga gzip-filen %s" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Okänt datumformat" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Kunde inte öppna filen %s" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Felaktiga data i huvud" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "Kunde inte öppna filhandtag %d" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Anslutningen misslyckades" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Misslyckades med att skapa underprocess-IPC" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Internt fel" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Misslyckades med att starta komprimerare " +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Läsfel" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Internt fel. InstallPackages anropades med trasiga paket!" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "läsning, har fortfarande %lu att läsa men ingenting finns kvar" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Paketen måste tas bort men \"Remove\" är inaktiverat." -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "skrivning, har fortfarande %lu att skriva men kunde inte" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Internt fel. Sorteringen färdigställdes inte" -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Problem med att stänga filen %s" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Konstigt... storlekarna stämde inte överens, skicka e-post till apt@packages." +"debian.org" -#: apt-pkg/contrib/fileutl.cc:1927 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problem med att byta namn på filen %s till %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Behöver hämta %sB/%sB arkiv.\n" -#: apt-pkg/contrib/fileutl.cc:1938 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "Problem unlinking the file %s" -msgstr "Problem med att avlänka filen %s" +msgid "Need to get %sB of archives.\n" +msgstr "Behöver hämta %sB arkiv.\n" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problem med att synkronisera filen" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 +#, c-format +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "" +"Efter denna åtgärd kommer ytterligare %sB utrymme användas på disken.\n" -#: apt-pkg/contrib/progress.cc:148 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Fel!" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Efter denna åtgärd kommer %sB att frigöras på disken.\n" -#: apt-pkg/contrib/progress.cc:150 +#: apt-private/private-install.cc:200 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Färdig" +msgid "You don't have enough free space in %s." +msgstr "Du har inte tillräckligt mycket ledigt utrymme i %s" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Problem har uppstått och -y användes utan --force-yes" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Färdig" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "\"Trivial Only\" angavs, men detta är inte en trivial handling." -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Kan inte utföra mmap på en tom fil" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Ja, gör som jag säger!" -#: apt-pkg/contrib/mmap.cc:111 +#: apt-private/private-install.cc:222 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Kunde inte duplicera filhandtag %i" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Du är på väg att göra någonting som kan vara skadligt\n" +"Skriv in frasen \"%s\" för att fortsätta\n" +" ?] " -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Kunde inte utföra mmap på %lu byte" +# Visas då man svarar nej +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Avbryter." -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Kunde inte stänga mmap" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Vill du fortsätta?" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Kunde inte synkronisera mmap" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Misslyckades med att hämta vissa filer" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Kunde inte utföra mmap på %lu byte" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"Vissa arkiv kunte inte hämtas. Prova att köra \"apt-get update\" eller med --" +"fix-missing." -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Misslyckades med att kapa av filen" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing och mediabyte stöds inte för tillfället" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Kunde inte korrigera saknade paket." + +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Avbryter installationen." + +#: apt-private/private-install.cc:366 msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" -msgstr "" -"Dynamisk MMap fick slut på utrymme. Öka storleken för APT::Cache-Start. " -"Aktuellt värde: %lu. (man 5 apt.conf)" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"Följande paket har försvunnit från ditt system eftersom\n" +"alla filer har skrivits över av andra paket:" +msgstr[1] "" +"Följande paket har försvunnit från ditt system eftersom\n" +"alla filer har skrivits över av andra paket:" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Observera: Detta sker med automatik och vid behov av dpkg." + +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -"Kunde inte öka storleken för MMap eftersom gränsen på %lu byte redan har " -"uppnåtts." +"Det är inte meningen att vi ska ta bort något, kan inte starta AutoRemover" -#: apt-pkg/contrib/mmap.cc:449 +#: apt-private/private-install.cc:499 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Kunde inte öka storleken för MMap eftersom automatisk växt har inaktiverats " -"av användaren." - -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Kunde inte ta status på monteringspunkten %s." - -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Kunde inte ta status på cd-romen." - -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Okänd typförkortning: \"%c\"" +"Hmm, det verkar som AutoRemover förstörde något som verkligen\n" +"inte skulle hända. Skicka in en felrapport mot paketet apt." -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Öppnar konfigurationsfilen %s" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Följande information kan vara till hjälp för att lösa situationen:" -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Syntaxfel %s:%u: Block börjar utan namn." +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Internt fel, AutoRemover förstörde något" -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Syntaxfel %s:%u: Felformat märke" +#: apt-private/private-install.cc:513 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "" +"Följande paket har installerats automatiskt och är inte längre nödvändigt:" +msgstr[1] "" +"Följande paket har installerats automatiskt och är inte längre nödvändiga:" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-private/private-install.cc:517 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Syntaxfel %s:%u: Överflödigt skräp efter värde" +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "" +"%lu paket blev installerade automatiskt och är inte längre nödvändigt.\n" +msgstr[1] "" +"%lu paket blev installerade automatiskt och är inte längre nödvändiga.\n" -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "Syntaxfel %s:%u: Direktiv kan endast utföras på toppnivån" +#: apt-private/private-install.cc:519 +#, fuzzy +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Använd \"apt-get autoremove\" för att ta bort dem." +msgstr[1] "Använd \"apt-get autoremove\" för att ta bort dem." -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Syntaxfel %s:%u: För många nästlade inkluderingar" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Du bör köra \"apt-get -f install\" för att korrigera dessa:" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Syntaxfel %s:%u: Inkluderad härifrån" +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"Otillfredsställda beroenden. Prova med \"apt-get -f install\" utan paket " +"(eller ange en lösning)." -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Syntaxfel %s:%u: Direktivet \"%s\" stöds inte" +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"Några paket kunde inte installeras. Det kan betyda att du har begärt\n" +"en omöjlig situation eller, om du använder den instabila utgåvan\n" +"att några nödvändiga paket ännu inte har skapats eller flyttats\n" +"ut från \"Incoming\"." -#: apt-pkg/contrib/configuration.cc:900 -#, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "Syntaxfel %s:%u: clear-direktivet kräver ett flaggträd som argument" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Trasiga paket" -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Syntaxfel %s:%u: Överflödigt skräp vid filens slut" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Följande ytterligare paket kommer att installeras:" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, c-format -msgid "No keyring installed in %s." -msgstr "Ingen nyckelring installerad i %s." +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Föreslagna paket:" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Kommandoradsflaggan \"%c\" [från %s] är inte känd." +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Rekommenderade paket:" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-private/private-install.cc:825 #, c-format -msgid "Command line option %s is not understood" -msgstr "Förstår inte kommandoradsflaggan %s" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "" +"Hoppar över %s, det är redan installerat och uppgradering har inte valts.\n" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-private/private-install.cc:829 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Kommandoradsflaggan %s är inte boolsk" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"Hoppar över %s, det är inte installerat och endast uppgraderingar har " +"begärts.\n" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-private/private-install.cc:841 #, c-format -msgid "Option %s requires an argument." -msgstr "Flaggan %s kräver ett argument." +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Ominstallation av %s är inte möjlig, det kan inte hämtas.\n" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-private/private-install.cc:846 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "" -"Flaggan %s: Den angivna konfigurationsposten måste innehålla ett =<värde>." +msgid "%s is already the newest version.\n" +msgstr "%s är redan den senaste versionen.\n" -#: apt-pkg/contrib/cmndline.cc:278 +#: apt-private/private-install.cc:894 #, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Flaggan %s kräver ett heltalsargument, inte \"%s\"" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Valde version \"%s\" (%s) för \"%s\"\n" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Flaggan \"%s\" är för lång" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Valde version \"%s\" (%s) för \"%s\"\n" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Förstår inte %s, prova med \"true\" eller \"false\"." +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "Paketet %s är inte installerat, så det tas inte bort\n" -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "Felaktig åtgärd %s" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Paketet %s är inte installerat, så det tas inte bort\n" -#: cmdline/apt-cache.cc:149 -#, c-format -msgid "Package %s version %s has an unmet dep:\n" +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -"Paketet %s med version %s har ett beroende som inte kan tillfredsställas:\n" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Totalt antal paketnamn: " - -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Totala paketstrukturer: " +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Vanliga paket: " +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Korrigerar beroenden..." -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Helt virtuella paket: " +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " misslyckades." -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Enstaka virtuella paket: " +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Kunde inte korrigera beroenden" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Blandade virtuella paket: " +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Kunde inte minimera uppgraderingsuppsättningen" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Saknade: " +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Färdig" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Totalt antal olika versioner: " +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Du bör köra \"apt-get -f install\" för att korrigera dessa." -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Totalt antal olika beskrivningar: " +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Otillfredsställda beroenden. Prova med -f." -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Totalt antal beroenden: " +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Totalt antal version/filrelationer: " +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Installerat]" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Totalt antal beskrivning/filrelationer: " +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [Installerat]" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Totalt antal tillhandahållningsmarkeringar: " +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Totalt antal sökmönstersträngar: " +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Installerat]" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Totalt utrymme för versionsberoenden: " +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Installerat]" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Totalt bortkastat utrymme: " +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Totalt utrymme som kan redogöras för: " +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 +#: apt-private/private-output.cc:435 #, c-format -msgid "Package file %s is out of sync." -msgstr "Paketfilen %s är inte synkroniserad." +msgid "but %s is installed" +msgstr "men %s är installerat" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Inga paket hittades" +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "men %s kommer att installeras" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Du måste ange minst ett sökmönster" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "men det kan inte installeras" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "men det är ett virtuellt paket" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "\"Package\"-filer:" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "men det är inte installerat" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Cachen är inte synkroniserad, kan inte korsreferera en paketfil" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "men det kommer inte att installeras" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Fastnålade paket:" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " eller" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(hittades inte)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Följande paket har beroenden som inte kan tillfredsställas:" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Installerad: " +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Följande NYA paket kommer att installeras:" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidat: " +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Följande paket kommer att TAS BORT:" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ingen)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Följande paket har hållits tillbaka:" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Paketnålning: " +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Följande paket kommer att uppgraderas:" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Versionstabell:" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Följande paket kommer att NEDGRADERAS:" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Följande tillbakahållna paket kommer att ändras:" + +#: apt-private/private-output.cc:668 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s för %s kompilerad den %s %s\n" +msgid "%s (due to %s) " +msgstr "%s (på grund av %s) " -#: cmdline/apt-cache.cc:1749 -#, fuzzy +#: apt-private/private-output.cc:676 msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Användning: apt-cache [flaggor] kommando\n" -" apt-cache [flaggor] add fil1 [fil2 ...]\n" -" apt-cache [flaggor] showpkg paket1 [paket2 ...]\n" -" apt-cache [flaggor] showsrc paket1 [paket2 ...]\n" -"\n" -"apt-cache är ett lågnivåverktyg för att hantera APTs binära cachefiler\n" -"samt hämta information från dem\n" -"\n" -"Kommandon:\n" -" add - Lägg till en paketfil till källcachen\n" -" gencaches - Bygg både paket- och källcache\n" -" showpkg - Visa viss allmän information om ett enskilt paket\n" -" showsrc - Visa källkodsposter\n" -" stats - Visa viss grundläggande statistik\n" -" dump - Visa hela filen i koncis form\n" -" dumpavail - Skriv en \"available\"-fil på standard ut\n" -" unmet - Visa otillfredsställbara beroenden\n" -" search - Sök i paketlistan med ett reguljärt uttryck\n" -" show - Visa en läsbar post för paketet\n" -" showauto - Visa en lista över automatiskt installerade paket\n" -" depends - Visa rå information om beroenden för ett paket\n" -" rdepends - Visa information om omvända beroenden för ett paket\n" -" pkgnames - Lista namnen på alla paket i systemet\n" -" dotty - Generera paketdiagram för GraphViz\n" -" xvcg - Generera paketdiagram för xvcg\n" -" policy - Visa policyinställningar\n" -"\n" -"Flaggor:\n" -" -h Denna hjälptext.\n" -" -p=? Paketcachen.\n" -" -s=? Källcachen.\n" -" -q Inaktivera förloppsindikatorn.\n" -" -i Visa endast viktiga beroenden för \"unmet\"-kommandot.\n" -" -c=? Läs denna konfigurationsfil.\n" -" -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n" -"Se manualsidorna för apt-cache(8) och apt.conf(5) för mer information.\n" - -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Ange ett namn för denna skiva, exempelvis \"Debian 5.0.3 Disk 1\"" +"VARNING: Följande systemkritiska paket kommer att tas bort.\n" +"Detta bör INTE genomföras såvida du inte vet exakt vad du gör!" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Mata in en skiva i enheten och tryck på Enter" +#: apt-private/private-output.cc:707 +#, c-format +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu att uppgradera, %lu att nyinstallera, " -#: cmdline/apt-cdrom.cc:139 +#: apt-private/private-output.cc:711 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Misslyckades med att montera \"%s\" till \"%s\"" +msgid "%lu reinstalled, " +msgstr "%lu att installera om, " -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-private/private-output.cc:713 +#, c-format +msgid "%lu downgraded, " +msgstr "%lu att nedgradera, " -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Upprepa proceduren för resten av cd-skivorna i din uppsättning." +#: apt-private/private-output.cc:715 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu att ta bort och %lu att inte uppgradera.\n" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumenten gavs inte parvis" +#: apt-private/private-output.cc:719 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "%lu är inte helt installerade eller borttagna.\n" -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -msgstr "" -"Användning: apt-config [flaggor] kommando\n" -"\n" -"apt-config är ett enkelt verktyg för att läsa APTs konfigurationsfil\n" -"\n" -"Kommandon:\n" -" shell - Skalläge.\n" -" dump - Visa konfigurationen.\n" -"\n" -"Flaggor:\n" -" -h Denna hjälptext.\n" -" -c=? Läs denna konfigurationsfil.\n" -" -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[J/n]" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\"" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[j/N]" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\"" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "J" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\"" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: cmdline/apt-get.cc:367 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Väljer \"%s\" som källkodspaket istället för \"%s\"\n" +msgid "Regex compilation error - %s" +msgstr "Fel vid kompilering av reguljärt uttryck - %s" -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Ignorera otillgängliga versionen \"%s\" av paketet \"%s\"" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Uppdateringskommandot tar inga argument" -#: cmdline/apt-get.cc:454 +#: apt-private/private-update.cc:90 #, c-format -msgid "Couldn't find package %s" -msgstr "Kunde inte hitta paketet %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s är satt till manuellt installerad.\n" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-private/private-show.cc:156 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s är satt till automatiskt installerad.\n" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" + +#: apt-private/private-main.cc:32 msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" +"OBSERVERA: Detta är endast en simulation!\n" +" apt-get behöver root-privilegier för verklig körning.\n" +" Tänk också på att låsningen är inaktiverad, så\n" +" förlita dig inte på relevansen till den verkliga situationen!" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Internt fel, problemlösaren förstörde någonting" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "VARNING: Följande paket kunde inte autentiseras!" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Kunde inte låsa hämtningskatalogen" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Autentiseringsvarning åsidosatt.\n" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Du måste ange minst ett paket att hämta källkod för" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Några av paketen kunde inte autentiseras" + +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Installera dessa paket utan verifiering?" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Kunde inte hitta något källkodspaket för %s" +msgid "Failed to fetch %s %s\n" +msgstr "Misslyckades med att hämta %s %s\n" -#: cmdline/apt-get.cc:786 +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Misslyckades med att byta namn på %s till %s" + +#: apt-private/private-sources.cc:70 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -"OBSERVERA: paketering av \"%s\" hanteras i versionshanteringssystemet \"%s\" " -"på:\n" -"%s\n" -#: cmdline/apt-get.cc:791 -#, fuzzy, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" msgstr "" -"Använd:\n" -"bzr get %s\n" -"för att hämta senaste (möjligen inte utgivna) uppdateringar av paketet.\n" -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Hoppar över redan hämtade filen \"%s\"\n" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Beräknar uppgradering... " -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "Kunde inte fastställa ledigt utrymme i %s" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Färdig" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "Du har inte tillräckligt mycket ledigt utrymme i %s" +# Måste vara tre bokstäver(?) +# "Hit" = aktuell version är fortfarande giltig +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Bra " -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Behöver hämta %sB/%sB källkodsarkiv.\n" +# "Get:" = hämtar ny version +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Läs:" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Behöver hämta %sB källkodsarkiv.\n" +# "Ign" = hoppar över +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ign " -#: cmdline/apt-get.cc:902 -#, c-format -msgid "Fetch source %s\n" -msgstr "Hämtar källkoden %s\n" +# "Err" = fel vid hämtning +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Fel " -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Misslyckades med att hämta vissa arkiv." +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Hämtade %sB på %s (%sB/s)\n" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Hämtningen färdig i \"endast-hämta\"-läge" +#: apt-private/acqprogress.cc:236 +#, c-format +msgid " [Working]" +msgstr " [Arbetar]" -#: cmdline/apt-get.cc:950 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Packar inte upp redan uppackad källkod i %s\n" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Mediabyte: Mata in skivan med etiketten\n" +" \"%s\"\n" +"i enheten \"%s\" och tryck på Enter\n" -#: cmdline/apt-get.cc:962 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Uppackningskommandot \"%s\" misslyckades.\n" +msgid "Unable to read %s" +msgstr "Kunde inte läsa %s" -#: cmdline/apt-get.cc:963 +# Felmeddelande för misslyckad chdir +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Försäkra dig om att paketet \"dpkg-dev\" är installerat.\n" +msgid "Unable to change to %s" +msgstr "Kunde inte byta till %s" -#: cmdline/apt-get.cc:991 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Byggkommandot \"%s\" misslyckades.\n" +msgid "No mirror file '%s' found " +msgstr "Ingen spegelfil \"%s\" hittades " -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Barnprocessen misslyckades" +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 +#, fuzzy, c-format +msgid "Can not read mirror file '%s'" +msgstr "Ingen spegelfil \"%s\" hittades " -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "Du måste ange minst ett paket att kontrollera byggberoenden för" +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Ingen spegelfil \"%s\" hittades " -#: cmdline/apt-get.cc:1054 +#: methods/mirror.cc:445 #, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" +msgid "[Mirror: %s]" +msgstr "[Spegel: %s]" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Kunde inte hämta information om byggberoenden för %s" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Misslyckades med att skapa IPC-rör till underprocess" -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s har inga byggberoenden.\n" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Anslutningen stängdes i förtid" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan " -"hittas" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Felaktig standardinställning!" -#: cmdline/apt-get.cc:1289 -#, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" -"%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan " -"hittas" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Tryck på Enter för att fortsätta." -#: cmdline/apt-get.cc:1312 -#, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"Misslyckades med att tillfredsställa %s-beroendet för %s: Det installerade " -"paketet %s är för nytt" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Vill du ta bort eventuellt tidigare hämtade .deb-filer?" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +# Note to translators: The following four messages belong together. It doesn't +# matter where sentences start, but it has to fit in just these four lines, and +# at only 80 characters per line, if possible. +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Det uppstod fel vid uppackning. Paketen som blev installerade kommer" + +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" msgstr "" -"%s-beroendet på %s kan inte tillfredsställas eftersom inga tillgängliga " -"versioner av paketet %s tillfredsställer versionskraven" +"att konfigureras. Detta kan resultera i dubbletta fel eller fel orsakade" -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "av saknade beroenden. Detta är okej, endast felen ovanför detta" + +#: dselect/install:105 msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "" -"%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan " -"hittas" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "meddelandet är viktiga. Försök korrigera dem och kör [I]nstallera igen" -#: cmdline/apt-get.cc:1380 -#, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Misslyckades med att tillfredsställa %s-beroendet för %s: %s" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Sammanfogar tillgänglig information" -#: cmdline/apt-get.cc:1395 -#, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Byggberoenden för %s kunde inte tillfredsställas." +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode anropat på fortfarande länkad nod" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Misslyckades med att behandla byggberoenden" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Misslyckades med att hitta hash-elementet!" -# Felmeddelande för misslyckad chdir -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Ansluter till %s (%s)" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Misslyckades med att allokera omdirigering" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Moduler som stöds:" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Internt fel i AddDiversion" -#: cmdline/apt-get.cc:1632 -#, fuzzy -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -msgstr "" -"Användning: apt-get [flaggor] kommando\n" -" apt-get [flaggor] install|remove paket1 [paket2 ...]\n" -" apt-get [flaggor] source paket1 [paket2 ...]\n" -"\n" -"apt-get är ett enkelt kommandoradsgränssnitt för att hämta och installera\n" -"paket. De mest använda kommandona är \"update\" och \"install\".\n" -"\n" -"Kommandon:\n" -" update - Hämta nya paketlistor\n" -" upgrade - Genomför en uppgradering\n" -" install - Installera nya paket (paket är libc6, inte libc6.deb)\n" -" remove - Ta bort paket\n" -" autoremove - Ta automatiskt bort alla oanvända paket\n" -" purge - Ta bort paket och konfigurationsfiler\n" -" source - Hämta källkodsarkiv\n" -" build-dep - Tillfredsställ byggberoenden för källkodspaket\n" -" dist-upgrade - Uppgradering av distributionen, se apt-get(8)\n" -" dselect-upgrade - Följ valen från dselect\n" -" clean - Ta bort hämtade arkivfiler\n" -" autoclean - Ta bort gamla hämtade arkivfiler\n" -" check - Kontrollera att det inte finns några trasiga beroenden\n" -" markauto - Markera angivna paket som automatiskt installerade\n" -" unmarkauto - Markera angivna paket som manuellt installerade\n" -"\n" -"Flaggor:\n" -" -h Denna hjälptext.\n" -" -q Utdata lämplig för loggar - ingen förloppsindikator.\n" -" -qq Ingen utdata förutom vid fel.\n" -" -d Bara hämta - VARKEN installera eller packa upp arkiven.\n" -" -s Gör ingenting, simulera vad som skulle hända.\n" -" -y Antag ja på alla frågor utan att fråga.\n" -" -f Försök rätta ett system med otillfredsställda beroenden.\n" -" -m Försök fortsätta även om arkiven inte kan hittas.\n" -" -u Visa även en lista över uppgraderade paket.\n" -" -b Bygg källkodspaketet när det hämtats.\n" -" -V Visa pratsamma versionsnummer.\n" -" -c=? Läs denna konfigurationsfil.\n" -" -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n" -"Se manualsidorna för apt-get(8), sources.list(5) och apt.conf(5)\n" -"för mer information och flaggor.\n" -" Denna APT har Speciella Ko-Krafter.\n" +#: apt-inst/filelist.cc:477 +#, c-format +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Försöker att skriva över en omdirigering, %s -> %s och %s/%s" + +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "Omdirigeringen %s -> %s inlagd två gånger" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Du måste ange minst ett paket att hämta källkod för" +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "Duplicerad konfigurationsfil %s/%s" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" +msgstr "Sökvägen %s är för lång" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" +msgstr "Packar upp %s flera gånger" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "men det är inte installerat" +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "Katalogen %s är omdirigerad" -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s är satt till manuellt installerad.\n" +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Paketet försöker att skriva till omdirigeringsmålet %s/%s" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s är satt till automatiskt installerad.\n" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Omdirigeringssökvägen är för lång" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s är redan den senaste versionen.\n" +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 +#, c-format +msgid "Failed to stat %s" +msgstr "Misslyckades med att ta status på %s" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s är redan den senaste versionen.\n" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Misslyckades med att byta namn på %s till %s" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s är satt till manuellt installerad.\n" +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "Katalogen %s ersätts av en icke-katalog" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Misslyckades med att öppna %s" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Misslyckades med att hitta noden i sin hashkorg" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Sökvägen är för lång" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" +#: apt-inst/extract.cc:421 +#, c-format +msgid "Overwrite package match with no version for %s" +msgstr "Skriv över paketträff utan version för %s" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-inst/extract.cc:438 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Filen %s/%s skriver över den i paketet %s" -#: methods/cdrom.cc:203 +#: apt-inst/extract.cc:498 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Kunde inte läsa cd-rom-databasen %s" +msgid "Unable to stat %s" +msgstr "Kunde inte ta status på %s" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"Använd apt-cdrom för att APT ska känna igen denna cd. apt-get update kan " -"inte användas för att lägga till skivor" +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, c-format +msgid "Failed to write file %s" +msgstr "Misslyckades med att skriva filen %s" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Fel cd-rom" +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "Misslyckades med att stänga filen %s" -#: methods/cdrom.cc:249 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Kunde inte avmontera cd-rom:en i %s, den kanske fortfarande används." +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Detta är inte ett giltigt DEB-arkiv, delen \"%s\" saknas" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Skivan hittades inte." +#: apt-inst/deb/debfile.cc:132 +#, c-format +msgid "Internal error, could not locate member %s" +msgstr "Internt fel, kunde inta hitta delen %s" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Filen hittades inte" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Kunde inte tolka control-filen" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Kunde inte ta status" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Ogiltig arkivsignatur" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Misslyckades ställa in ändringstid" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Fel vid läsning av rubrik för arkivdel" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Ogiltig URI, lokala URI:er får inte börja med //" +#: apt-inst/contrib/arfile.cc:96 +#, c-format +msgid "Invalid archive member header %s" +msgstr "Ogiltig arkivdelsrubrik %s" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Loggar in" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Ogiltigt arkivdelsrubrik" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Arkivet är för kort" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Misslyckades med att läsa arkivrubriker" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Misslyckades med att skapa rör" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Misslyckades med att köra gzip" + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Skadat arkiv" + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar-kontrollsumma misslyckades, arkivet skadat" + +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Okänd TAR-rubriktyp %u, del %s" + +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Kunde inte fastställa namnet på partnern" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Kör dpkg" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Kunde inte fastställa det lokala namnet" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Paketsystemet \"%s\" stöds inte" -#: methods/ftp.cc:219 methods/ftp.cc:247 +# +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Kunde inte fastställa en lämplig paketsystemstyp" + +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Servern nekade anslutningen och sade: %s" +msgid "Wrote %i records.\n" +msgstr "Skrev %i poster.\n" -#: methods/ftp.cc:225 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER misslyckades, servern sade: %s" +msgid "Wrote %i records with %i missing files.\n" +msgstr "Skrev %i poster med %i saknade filer.\n" -#: methods/ftp.cc:232 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS misslyckades, servern sade: %s" +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Skrev %i poster med %i filer som inte stämmer\n" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"En mellanserver (proxy) angavs men inget inloggningsskript, Acquire::ftp::" -"ProxyLogin är tom." +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "Skrev %i poster med %i saknade filer och %i filer som inte stämmer\n" -#: methods/ftp.cc:280 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Kommandot \"%s\" i inloggningsskriptet misslyckades, servern sade: %s" +msgid "Can't find authentication record for: %s" +msgstr "Kan inte hitta autentiseringspost för: %s" -#: methods/ftp.cc:306 +#: apt-pkg/indexcopy.cc:521 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE misslyckades, servern sade: %s" +msgid "Hash mismatch for: %s" +msgstr "Hash-kontrollsumman stämmer inte för: %s" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Tidsgränsen för anslutningen överskreds" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Paketlistan eller statusfilen kunde inte tolkas eller öppnas." -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Servern stängde anslutningen" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Du kan möjligen rätta till problemet genom att köra \"apt-get update\"" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Ett svar spillde bufferten." +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Listan över källor kunde inte läsas." -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protokollet skadat" +# Felmeddelande +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Paketcachen är tom" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Kunde inte skapa ett uttag (socket)" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Paketcachefilen är skadad" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Kunde inte ansluta datauttaget (socket), inget svar inom tidsgräns" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Paketcachefilens version är inkompatibel" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Misslyckades" +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "Paketcachefilen är skadad" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Kunde inte ansluta passivt uttag (socket)." +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "Denna APT saknar stöd för versionssystemet \"%s\"" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo kunde inte få tag i ett lyssnande uttag (socket)" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Paketcachen byggdes för en annan arkitektur" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Kunde inte binda ett uttag (socket)" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Beroende av" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Kunde inte lyssna på uttaget (socket)" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Förberoende av" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Kunde inte fastställa uttagets namn (socket)" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Föreslår" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Kunde inte sända PORT-kommando" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Rekommenderar" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Okänd adressfamilj %u (AF_*)" +# "Konfliktar"? +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Står i konflikt med" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT misslyckades, servern sade: %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Ersätter" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Anslutet datauttag (socket) fick inte svar inom tidsgränsen" +# "Föråldrar"? +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Föråldrar" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Kunde inte ta emot anslutningen" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Gör sönder" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problem med att lägga filen till hashtabellen" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Utökar" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Kunde inte hämta filen, servern sade \"%s\"" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "viktigt" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Datauttag (socket) fick inte svar inom tidsgränsen" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "nödvändigt" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Dataöverföringen misslyckades, servern sade \"%s\"" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standard" -# Statusmeddelande, byter från substantiv till verb -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Frågar" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "valfri" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Kunde inte starta " +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" -# Felmeddelande för misslyckad chdir -#: methods/connect.cc:76 +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Ansluter till %s (%s)" +msgid "The method driver %s could not be found." +msgstr "Metoddrivrutinen %s kunde inte hittas." -#: methods/connect.cc:87 +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Försäkra dig om att paketet \"dpkg-dev\" är installerat.\n" + +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Method %s did not start correctly" +msgstr "Metoden %s startade inte korrekt" -# [f]amilj, [t]yp, [p]rotokoll -#: methods/connect.cc:94 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Kunde inte skapa ett uttag (socket) för %s (f=%u t=%u p=%u)" +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Mata in skivan med etiketten \"%s\" i enheten \"%s\" och tryck på Enter." -#: methods/connect.cc:100 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Kunde inte initiera anslutningen till %s:%s (%s)." +msgid "Index file type '%s' is not supported" +msgstr "Indexfiler av typ \"%s\" stöds inte" + +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Bygger beroendeträd" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Kandiderande versioner" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Beroendegenerering" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Läser tillståndsinformation" -#: methods/connect.cc:108 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Kunde inte ansluta till %s:%s (%s), anslutningen överskred tidsgräns" +msgid "Failed to open StateFile %s" +msgstr "Misslyckades med att öppna StateFile %s" -#: methods/connect.cc:126 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Kunde inte ansluta till %s:%s (%s)." +msgid "Failed to write temporary StateFile %s" +msgstr "Misslyckades med att skriva temporär StateFile %s" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Connecting to %s" -msgstr "Ansluter till %s" +msgid "rename failed, %s (%s -> %s)." +msgstr "namnbyte misslyckades, %s (%s -> %s)." -#: methods/connect.cc:180 methods/connect.cc:199 -#, c-format -msgid "Could not resolve '%s'" -msgstr "Kunde inte slå upp \"%s\"" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Hash-kontrollsumman stämmer inte" -#: methods/connect.cc:205 +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Storleken stämmer inte" + +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Felaktig åtgärd %s" + +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Temporärt fel vid uppslagning av \"%s\"" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -# Okänd felkod; %i = koden -#: methods/connect.cc:209 +#: apt-pkg/acquire-item.cc:1589 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Något konstigt hände när \"%s:%s\" slogs upp (%i - %s)" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Kunde inte tolka \"Release\"-filen %s" -# Okänd felkod; %i = koden -#: methods/connect.cc:211 -#, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Något konstigt hände när \"%s:%s\" slogs upp (%i - %s)" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Det finns ingen öppen nyckel tillgänglig för följande nyckel-id:n:\n" -#: methods/connect.cc:258 +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Kunde inte ansluta till %s:%s:" - -#: methods/gpgv.cc:168 msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -"Internt fel: Korrekt signatur men kunde inte fastställa nyckelns " -"fingeravtryck?!" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Minst en ogiltig signatur träffades på." -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "" -"Kunde inte köra \"gpgv\" för att verifiera signatur (är gpgv installerad?)" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Konflikt i distribution: %s (förväntade %s men fick %s)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1721 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" +"Ett fel inträffade vid verifiering av signaturen. Förrådet har inte " +"uppdaterats och de tidigare indexfilerna kommer att användas. GPG-fel: %s: " +"%s\n" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Okänt fel vid körning av gpgv" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Följande signaturer är ogiltiga:\n" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "GPG-fel: %s: %s" -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1859 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" msgstr "" -"Följande signaturer kunde inte verifieras för att den öppna nyckeln inte är " -"tillgänglig:\n" +"Jag kunde inte hitta någon fil för paketet %s. Detta kan betyda att du " +"manuellt måste reparera detta paket (på grund av saknad arkitektur)." -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Fel vid skrivning till filen" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "Paketindexfilerna är skadede. Inget \"Filename:\"-fält för paketet %s." -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Fel vid läsning från server: Andra änden stängde förbindelsen" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Indexfiler av typ \"%s\" stöds inte" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Fel vid läsning från server" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Kunde inte ta status på %s." -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Fel vid skrivning till fil" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Cachen har ett inkompatibelt versionssystem" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "\"Select\" misslyckades" +# NewPackage etc. är funktionsnamn +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Fel uppstod vid hantering av %s (FindPkg)" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Anslutningen överskred tidsgränsen" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "Grattis, du överskred antalet paketnamn som denna APT kan hantera." -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Fel vid skrivning till utdatafil" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Grattis, du överskred antalet versioner som denna APT kan hantera." -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Väntar på rubriker" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Grattis, du överskred antalet beskrivningar som denna APT kan hantera." -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Felaktig rubrikrad" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "Grattis, du överskred antalet beroenden som denna APT kan hantera." -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Http-servern sände ett ogiltigt svarshuvud" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Paketet %s %s hittades inte när filberoenden hanterades" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Http-servern sände ett ogiltigt Content-Length-rubrik" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Kunde inte ta status på källkodspaketlistan %s" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Http-servern sände ett ogiltigt Content-Range-rubrik" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Läser paketlistor" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Den här http-serverns stöd för delvis hämtning fungerar inte" +# Bättre ord? +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Samlar filtillhandahållningar" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Okänt datumformat" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Kunde inte skriva till %s" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Felaktiga data i huvud" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "In-/utfel vid lagring av källcache" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Anslutningen misslyckades" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Leverantörsblocket %s saknar fingeravtryck" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Internt fel" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Listkatalogen %spartial saknas." -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Beräknar uppgradering... " +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Arkivkatalogen %spartial saknas." + +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "Kunde inte låsa katalogen %s" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Färdig" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Hämtar fil %li av %li (%s återstår)" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Hämtar fil %li av %li" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" +"Vissa indexfiler kunde inte hämtas, de har ignorerats eller så har de gamla " +"använts istället." -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Du måste lägga till några \"source\"-URI:er i din sources.list" + +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -#: apt-private/private-list.cc:164 +# "Package" är en sträng i konfigurationsfilen +#: apt-pkg/policy.cc:422 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Ogiltig post i konfigurationsfilen %s, \"Package\"-rubriken saknas" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Korrigerar beroenden..." +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Förstod inte nåltypen %s" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " misslyckades." +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Prioritet ej angiven (eller noll) för nål" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Kunde inte korrigera beroenden" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" +"Kunde inte genomföra omedelbar konfiguration på \"%s\". Se man 5 apt.conf " +"under APT::Immediate-Configure för information. (%d)" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Kunde inte minimera uppgraderingsuppsättningen" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Kunde inte öppna filen \"%s\"" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Färdig" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"För att genomföra installationen måste det systemkritiska paketet %s " +"tillfälligt tas bort på grund av en beroendespiral i Conflicts/Pre-Depends. " +"Detta är oftast en dålig idé, men om du verkligen vill göra det kan du " +"aktivera flaggan \"APT::Force-LoopBreak\"." -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Du bör köra \"apt-get -f install\" för att korrigera dessa." +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "Rad %u är för lång i källistan %s." -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Otillfredsställda beroenden. Prova med -f." +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Avmonterar CD-ROM...\n" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "Använder cd-rom-monteringspunkten %s\n" -#: apt-private/private-output.cc:234 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Installerat]" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Väntar på skiva...\n" -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [Installerat]" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Monterar cd-rom...\n" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identifierar... " -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Installerat]" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Lagrad etikett: %s \n" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Installerat]" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Söker efter indexfiler på skivan...\n" -#: apt-private/private-output.cc:249 +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "[upgradable from: %s]" +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"Hittade %zu paketindex, %zu källkodsindex, %zu översättningsindex och %zu " +"signaturer\n" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" +"Kunde inte hitta några paketfiler. Detta är kanske inte en Debian-skiva " +"eller felaktig arkitektur?" -#: apt-private/private-output.cc:435 -#, c-format -msgid "but %s is installed" -msgstr "men %s är installerat" - -#: apt-private/private-output.cc:437 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "but %s is to be installed" -msgstr "men %s kommer att installeras" - -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "men det kan inte installeras" +msgid "Found label '%s'\n" +msgstr "Hittade etiketten \"%s\"\n" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "men det är ett virtuellt paket" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Namnet är ogiltigt, försök igen.\n" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "men det är inte installerat" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Denna skiva heter: \n" +"\"%s\"\n" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "men det kommer inte att installeras" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopierar paketlistor..." -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " eller" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Skriver ny källista\n" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Följande paket har beroenden som inte kan tillfredsställas:" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Poster i källistan för denna skiva:\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Följande NYA paket kommer att installeras:" +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"Paketet %s måste installeras om, men jag kan inte hitta något arkiv för det." -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Följande paket kommer att TAS BORT:" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Fel, pkgProblemResolver::Resolve genererade avbrott; detta kan bero på " +"tillbakahållna paket." -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Följande paket har hållits tillbaka:" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Kunde inte korrigera problemen, du har hållit tillbaka trasiga paket." -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Följande paket kommer att uppgraderas:" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Följande paket kommer att NEDGRADERAS:" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Följande tillbakahållna paket kommer att ändras:" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: apt-private/private-output.cc:668 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (på grund av %s) " +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" msgstr "" -"VARNING: Följande systemkritiska paket kommer att tas bort.\n" -"Detta bör INTE genomföras såvida du inte vet exakt vad du gör!" -#: apt-private/private-output.cc:707 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu att uppgradera, %lu att nyinstallera, " +msgid "Unable to parse package file %s (1)" +msgstr "Kunde inte tolka paketfilen %s (1)" -#: apt-private/private-output.cc:711 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu att installera om, " +msgid "Unable to parse package file %s (2)" +msgstr "Kunde inte tolka paketfilen %s (2)" -#: apt-private/private-output.cc:713 +#: apt-pkg/indexrecords.cc:78 #, c-format -msgid "%lu downgraded, " -msgstr "%lu att nedgradera, " +msgid "Unable to parse Release file %s" +msgstr "Kunde inte tolka \"Release\"-filen %s" -#: apt-private/private-output.cc:715 +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu att ta bort och %lu att inte uppgradera.\n" +msgid "No sections in Release file %s" +msgstr "Inga sektioner i Release-filen %s" -#: apt-private/private-output.cc:719 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu är inte helt installerade eller borttagna.\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[J/n]" - -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[j/N]" +msgid "No Hash entry in Release file %s" +msgstr "Ingen Hash-post i Release-filen %s" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "J" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Ogiltig \"Valid-Until\"-post i Release-filen %s" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Ogiltig \"Date\"-post i Release-filen %s" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Uppdateringskommandot tar inga argument" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Rad %lu i källistan %s har fel format (URI-tolkning)" -#: apt-private/private-update.cc:90 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Rad %lu i källistan %s har fel format ([option] ej tolkningsbar)" -#: apt-private/private-show.cc:156 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Rad %lu i källistan %s har fel format ([option] för kort)" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Rad %lu i källistan %s har fel format ([%s] är inte en tilldelning)" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Internt fel. InstallPackages anropades med trasiga paket!" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Rad %lu i källistan %s har fel format ([%s] saknar nyckel)" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Paketen måste tas bort men \"Remove\" är inaktiverat." +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "Rad %lu i källistan %s har fel format ([%s] nyckeln %s saknar värde)" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Internt fel. Sorteringen färdigställdes inte" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Rad %lu i källistan %s har (URI)" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Konstigt... storlekarna stämde inte överens, skicka e-post till apt@packages." -"debian.org" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Rad %lu i källistan %s har fel format (dist)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Behöver hämta %sB/%sB arkiv.\n" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Rad %lu i källistan %s har fel format (URI-tolkning)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Behöver hämta %sB arkiv.\n" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Rad %lu i källistan %s har fel format (Absolut dist)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "" -"Efter denna åtgärd kommer ytterligare %sB utrymme användas på disken.\n" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Rad %lu i källistan %s har fel format (dist-tolkning)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Efter denna åtgärd kommer %sB att frigöras på disken.\n" +msgid "Opening %s" +msgstr "Öppnar %s" -#: apt-private/private-install.cc:200 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Du har inte tillräckligt mycket ledigt utrymme i %s" +msgid "Malformed line %u in source list %s (type)" +msgstr "Rad %u i källistan %s har fel format (typ)" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Problem har uppstått och -y användes utan --force-yes" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Typ \"%s\" är inte känd på rad %u i listan över källor %s" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "\"Trivial Only\" angavs, men detta är inte en trivial handling." +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Typ \"%s\" är inte känd på rad %u i listan över källor %s" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Ja, gör som jag säger!" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Utgåvan \"%s\" för \"%s\" hittades inte" -#: apt-private/private-install.cc:222 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Du är på väg att göra någonting som kan vara skadligt\n" -"Skriv in frasen \"%s\" för att fortsätta\n" -" ?] " +msgid "Version '%s' for '%s' was not found" +msgstr "Version \"%s\" för \"%s\" hittades inte" -# Visas då man svarar nej -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Avbryter." +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Kunde inte hitta funktionen \"%s\"" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Vill du fortsätta?" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\"" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Misslyckades med att hämta vissa filer" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\"" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -"Vissa arkiv kunte inte hämtas. Prova att köra \"apt-get update\" eller med --" -"fix-missing." - -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing och mediabyte stöds inte för tillfället" - -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Kunde inte korrigera saknade paket." - -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Avbryter installationen." +"Kan inte välja versioner från paketet \"%s\" eftersom det är helt virtuellt" -#: apt-private/private-install.cc:366 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -"Följande paket har försvunnit från ditt system eftersom\n" -"alla filer har skrivits över av andra paket:" -msgstr[1] "" -"Följande paket har försvunnit från ditt system eftersom\n" -"alla filer har skrivits över av andra paket:" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" +"Kan inte välja installerad version eller kandidatversion från paketet \"%s\" " +"eftersom det inte har någon av dem" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Observera: Detta sker med automatik och vid behov av dpkg." +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"Kan inte välja senaste version från paketet \"%s\" eftersom det är helt " +"virtuellt" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -"Det är inte meningen att vi ska ta bort något, kan inte starta AutoRemover" +"Kan inte välja kandidatversion från paketet %s eftersom det inte har någon " +"kandidat" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" msgstr "" -"Hmm, det verkar som AutoRemover förstörde något som verkligen\n" -"inte skulle hända. Skicka in en felrapport mot paketet apt." +"Kan inte välja installerad version från paketet %s eftersom det inte är " +"installerat" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "Följande information kan vara till hjälp för att lösa situationen:" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%lid %lih %limin %lis" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Internt fel, AutoRemover förstörde något" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%lih %limin %lis" -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "" -"Följande paket har installerats automatiskt och är inte längre nödvändigt:" -msgstr[1] "" -"Följande paket har installerats automatiskt och är inte längre nödvändiga:" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" -#: apt-private/private-install.cc:517 +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 #, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "" -"%lu paket blev installerade automatiskt och är inte längre nödvändigt.\n" -msgstr[1] "" -"%lu paket blev installerade automatiskt och är inte längre nödvändiga.\n" +msgid "%lis" +msgstr "%lis" -#: apt-private/private-install.cc:519 -#, fuzzy -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Använd \"apt-get autoremove\" för att ta bort dem." -msgstr[1] "Använd \"apt-get autoremove\" för att ta bort dem." +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "Valet %s hittades inte" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Du bör köra \"apt-get -f install\" för att korrigera dessa:" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Använder inte låsning för skrivskyddade låsfilen %s" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Kunde inte öppna låsfilen %s" + +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Använder inte låsning för nfs-monterade låsfilen %s" + +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Kunde inte erhålla låset %s" + +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -"Otillfredsställda beroenden. Prova med \"apt-get -f install\" utan paket " -"(eller ange en lösning)." -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -"Några paket kunde inte installeras. Det kan betyda att du har begärt\n" -"en omöjlig situation eller, om du använder den instabila utgåvan\n" -"att några nödvändiga paket ännu inte har skapats eller flyttats\n" -"ut från \"Incoming\"." -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Trasiga paket" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Följande ytterligare paket kommer att installeras:" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Föreslagna paket:" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Underprocessen %s råkade ut för ett segmenteringsfel." -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Rekommenderade paket:" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "Underprocessen %s tog emot signal %u." -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "" -"Hoppar över %s, det är redan installerat och uppgradering har inte valts.\n" +msgid "Sub-process %s returned an error code (%u)" +msgstr "Underprocessen %s svarade med en felkod (%u)" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"Hoppar över %s, det är inte installerat och endast uppgraderingar har " -"begärts.\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "Underprocessen %s avslutades oväntat" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Ominstallation av %s är inte möjlig, det kan inte hämtas.\n" +msgid "Problem closing the gzip file %s" +msgstr "Problem med att stänga gzip-filen %s" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s är redan den senaste versionen.\n" +msgid "Could not open file %s" +msgstr "Kunde inte öppna filen %s" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Valde version \"%s\" (%s) för \"%s\"\n" +msgid "Could not open file descriptor %d" +msgstr "Kunde inte öppna filhandtag %d" -#: apt-private/private-install.cc:899 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Valde version \"%s\" (%s) för \"%s\"\n" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Misslyckades med att skapa underprocess-IPC" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "Paketet %s är inte installerat, så det tas inte bort\n" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Misslyckades med att starta komprimerare " -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/fileutl.cc:1514 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Paketet %s är inte installerat, så det tas inte bort\n" - -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" -"OBSERVERA: Detta är endast en simulation!\n" -" apt-get behöver root-privilegier för verklig körning.\n" -" Tänk också på att låsningen är inaktiverad, så\n" -" förlita dig inte på relevansen till den verkliga situationen!" +msgid "read, still have %llu to read but none left" +msgstr "läsning, har fortfarande %lu att läsa men ingenting finns kvar" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "VARNING: Följande paket kunde inte autentiseras!" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "skrivning, har fortfarande %lu att skriva men kunde inte" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Autentiseringsvarning åsidosatt.\n" +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Problem med att stänga filen %s" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Några av paketen kunde inte autentiseras" +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Problem med att byta namn på filen %s till %s" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Installera dessa paket utan verifiering?" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Problem med att avlänka filen %s" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Misslyckades med att byta namn på %s till %s" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Problem med att synkronisera filen" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%c%s... Error!" +msgstr "%c%s... Fel!" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Färdig" + +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -# Måste vara tre bokstäver(?) -# "Hit" = aktuell version är fortfarande giltig -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Bra " +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Färdig" -# "Get:" = hämtar ny version -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Läs:" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Kan inte utföra mmap på en tom fil" -# "Ign" = hoppar över -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Kunde inte duplicera filhandtag %i" -# "Err" = fel vid hämtning -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Fel " +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Kunde inte utföra mmap på %lu byte" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Kunde inte stänga mmap" + +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Kunde inte synkronisera mmap" + +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Hämtade %sB på %s (%sB/s)\n" +msgid "Couldn't make mmap of %lu bytes" +msgstr "Kunde inte utföra mmap på %lu byte" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Misslyckades med att kapa av filen" + +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid " [Working]" -msgstr " [Arbetar]" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" +"Dynamisk MMap fick slut på utrymme. Öka storleken för APT::Cache-Start. " +"Aktuellt värde: %lu. (man 5 apt.conf)" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/mmap.cc:446 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -"Mediabyte: Mata in skivan med etiketten\n" -" \"%s\"\n" -"i enheten \"%s\" och tryck på Enter\n" +"Kunde inte öka storleken för MMap eftersom gränsen på %lu byte redan har " +"uppnåtts." -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"Kunde inte öka storleken för MMap eftersom automatisk växt har inaktiverats " +"av användaren." + +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "No mirror file '%s' found " -msgstr "Ingen spegelfil \"%s\" hittades " +msgid "Unable to stat the mount point %s" +msgstr "Kunde inte ta status på monteringspunkten %s." -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Ingen spegelfil \"%s\" hittades " +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Kunde inte ta status på cd-romen." -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Ingen spegelfil \"%s\" hittades " +#: apt-pkg/contrib/configuration.cc:519 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Okänd typförkortning: \"%c\"" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "[Mirror: %s]" -msgstr "[Spegel: %s]" +msgid "Opening configuration file %s" +msgstr "Öppnar konfigurationsfilen %s" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Misslyckades med att skapa IPC-rör till underprocess" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntaxfel %s:%u: Block börjar utan namn." -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Anslutningen stängdes i förtid" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntaxfel %s:%u: Felformat märke" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Felaktig standardinställning!" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntaxfel %s:%u: Överflödigt skräp efter värde" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Tryck på Enter för att fortsätta." +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "Syntaxfel %s:%u: Direktiv kan endast utföras på toppnivån" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Vill du ta bort eventuellt tidigare hämtade .deb-filer?" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntaxfel %s:%u: För många nästlade inkluderingar" -# Note to translators: The following four messages belong together. It doesn't -# matter where sentences start, but it has to fit in just these four lines, and -# at only 80 characters per line, if possible. -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Det uppstod fel vid uppackning. Paketen som blev installerade kommer" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntaxfel %s:%u: Inkluderad härifrån" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "" -"att konfigureras. Detta kan resultera i dubbletta fel eller fel orsakade" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntaxfel %s:%u: Direktivet \"%s\" stöds inte" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "av saknade beroenden. Detta är okej, endast felen ovanför detta" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "Syntaxfel %s:%u: clear-direktivet kräver ett flaggträd som argument" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "meddelandet är viktiga. Försök korrigera dem och kör [I]nstallera igen" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Syntaxfel %s:%u: Överflödigt skräp vid filens slut" -#: dselect/update:30 -msgid "Merging available information" -msgstr "Sammanfogar tillgänglig information" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "Ingen nyckelring installerad i %s." -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode anropat på fortfarande länkad nod" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Kommandoradsflaggan \"%c\" [från %s] är inte känd." -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Misslyckades med att hitta hash-elementet!" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Förstår inte kommandoradsflaggan %s" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Misslyckades med att allokera omdirigering" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Kommandoradsflaggan %s är inte boolsk" + +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Flaggan %s kräver ett argument." -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Internt fel i AddDiversion" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "" +"Flaggan %s: Den angivna konfigurationsposten måste innehålla ett =<värde>." -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Försöker att skriva över en omdirigering, %s -> %s och %s/%s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Flaggan %s kräver ett heltalsargument, inte \"%s\"" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Omdirigeringen %s -> %s inlagd två gånger" +msgid "Option '%s' is too long" +msgstr "Flaggan \"%s\" är för lång" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Duplicerad konfigurationsfil %s/%s" +msgid "Sense %s is not understood, try true or false." +msgstr "Förstår inte %s, prova med \"true\" eller \"false\"." -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The path %s is too long" -msgstr "Sökvägen %s är för lång" +msgid "Invalid operation %s" +msgstr "Felaktig åtgärd %s" -#: apt-inst/extract.cc:132 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unpacking %s more than once" -msgstr "Packar upp %s flera gånger" +msgid "Installing %s" +msgstr "Installerar %s" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The directory %s is diverted" -msgstr "Katalogen %s är omdirigerad" +msgid "Configuring %s" +msgstr "Konfigurerar %s" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Paketet försöker att skriva till omdirigeringsmålet %s/%s" +msgid "Removing %s" +msgstr "Tar bort %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Omdirigeringssökvägen är för lång" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "Tar bort hela %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to stat %s" -msgstr "Misslyckades med att ta status på %s" +msgid "Noting disappearance of %s" +msgstr "Uppmärksammar försvinnandet av %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Misslyckades med att byta namn på %s till %s" +msgid "Running post-installation trigger %s" +msgstr "Kör efterinstallationsutlösare %s" -#: apt-inst/extract.cc:249 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Katalogen %s ersätts av en icke-katalog" +msgid "Directory '%s' missing" +msgstr "Katalogen \"%s\" saknas" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Misslyckades med att hitta noden i sin hashkorg" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Kunde inte öppna filen \"%s\"" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Sökvägen är för lång" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Förbereder %s" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Skriv över paketträff utan version för %s" +msgid "Unpacking %s" +msgstr "Packar upp %s" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Filen %s/%s skriver över den i paketet %s" +msgid "Preparing to configure %s" +msgstr "Förbereder konfigurering av %s" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Unable to stat %s" -msgstr "Kunde inte ta status på %s" +msgid "Installed %s" +msgstr "Installerade %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to write file %s" -msgstr "Misslyckades med att skriva filen %s" +msgid "Preparing for removal of %s" +msgstr "Förbereder borttagning av %s" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Failed to close file %s" -msgstr "Misslyckades med att stänga filen %s" +msgid "Removed %s" +msgstr "Tog bort %s" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Detta är inte ett giltigt DEB-arkiv, delen \"%s\" saknas" +msgid "Preparing to completely remove %s" +msgstr "Förbereder borttagning av hela %s" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Internt fel, kunde inta hitta delen %s" +msgid "Completely removed %s" +msgstr "Tog bort hela %s" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Kunde inte tolka control-filen" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Ogiltig arkivsignatur" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Kunde inte skriva till %s" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Fel vid läsning av rubrik för arkivdel" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Ogiltig arkivdelsrubrik %s" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Ogiltigt arkivdelsrubrik" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arkivet är för kort" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "Ingen apport-rapport skrevs därför att MaxReports redan har uppnåtts" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Misslyckades med att läsa arkivrubriker" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "beroendeproblem - lämnar okonfigurerad" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Misslyckades med att skapa rör" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Ingen apport-rapport skrevs därför att felmeddelandet indikerar att det är " +"ett efterföljande fel från ett tidigare problem." -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Misslyckades med att köra gzip" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Ingen apport-rapport skrevs därför att felmeddelandet indikerar att " +"diskutrymmet är slut" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Skadat arkiv" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Ingen apport-rapport skrevs därför att felmeddelandet indikerar att minnet " +"är slut" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar-kontrollsumma misslyckades, arkivet skadat" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Ingen apport-rapport skrevs därför att felmeddelandet indikerar att " +"diskutrymmet är slut" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Ingen apport-rapport skrevs därför att felmeddelandet indikerar ett in-/ut-" +"fel för dpkg" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Okänd TAR-rubriktyp %u, del %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Kunde inte låsa administrationskatalogen (%s). Använder en annan process den?" + +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Kunde inte låsa administrationskatalogen (%s). Är du root?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"dpkg avbröts. Du måste köra \"%s\" manuellt för att korrigera problemet. " + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Inte låst" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/th.po b/po/th.po index 7f162db23..242b9f042 100644 --- a/po/th.po +++ b/po/th.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2014-04-20 09:38+0700\n" "Last-Translator: Theppitak Karoonboonyanan <thep@debian.org>\n" "Language-Team: Thai <thai-l10n@googlegroups.com>\n" @@ -18,3169 +18,3170 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "ไม่รองรับแฟ้มดัชนีชนิด '%s'" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "ไม่สามารถอ่าน %s" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "ไม่สามารถเปลี่ยนไดเรกทอรีไปยัง %s" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "ไม่สามารถ stat %s" - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "ความคืบหน้า: [%3i%%]" - -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "กำลังเรียก dpkg" - -#: apt-pkg/init.cc:146 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "ไม่รองรับระบบแพกเกจ '%s'" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "ไม่สามารถระบุชนิดของระบบแพกเกจที่เหมาะสมได้" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "แพกเกจ %s รุ่น %s ขาดแพกเกจที่ต้องใช้:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "เขียนแล้ว %i ระเบียน\n" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "จำนวนชื่อแพกเกจทั้งหมด: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มขาดหาย %i แฟ้ม\n" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "จำนวนโครงสร้างแพกเกจทั้งหมด: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มผิดขนาด %i แฟ้ม\n" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " แพกเกจปกติ: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มขาดหาย %i แฟ้ม และแฟ้มผิดขนาด %i แฟ้ม\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " แพกเกจเสมือนแท้ๆ: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "ไม่พบระเบียนยืนยันความแท้สำหรับ: %s" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " แพกเกจเสมือนที่มีแพกเกจจริงเดียว: " -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "แฮชไม่ตรงกันสำหรับ: %s" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " แพกเกจเสมือนผสม: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "ไม่พบไดรเวอร์สำหรับวิธีการ %s" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " แพกเกจที่ขาดหาย: " -#: apt-pkg/acquire-worker.cc:118 -#, c-format -msgid "Is the package %s installed?" -msgstr "ได้ติดตั้งแพกเกจ %s ไว้หรือไม่?" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "จำนวนรุ่นที่แตกต่างกันทั้งหมด: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "ไม่สามารถเรียกทำงานวิธีการ %s" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "จำนวนคำบรรยายแพกเกจที่แตกต่างกันทั้งหมด: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "กรุณาใส่แผ่นชื่อ: '%s' ลงในไดรว์ '%s' แล้วกด enter" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "จำนวนการเชื่อมโยงระหว่างแพกเกจทั้งหมด: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "ไม่สามารถแจงหรือเปิดรายชื่อแพกเกจหรือสถานะแพกเกจได้" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "จำนวนความสัมพันธ์ รุ่น/แฟ้ม ทั้งหมด: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "คุณอาจเรียก `apt-get update' เพื่อแก้ปัญหาเหล่านี้ได้" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "จำนวนความสัมพันธ์ คำบรรยาย/แฟ้ม ทั้งหมด: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "ไม่สามารถอ่านรายชื่อแหล่งแพกเกจได้" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "จำนวนผังการตระเตรียมทั้งหมด: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "แคชของแพกเกจว่างเปล่า" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "จำนวนสตริงทั้งหมด: " -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "แฟ้มแคชของแพกเกจเสียหาย" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "ขนาดของพื้นที่ความเชื่อมโยงระหว่างแพกเกจทั้งหมด: " -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "แฟ้มแคชของแพกเกจเป็นคนละรุ่นกัน" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "พื้นที่สำรองทั้งหมด: " -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "แฟ้มแคชของแพกเกจเสียหาย แฟ้มมีขนาดเล็กกว่าที่ควรจะเป็น" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "พื้นที่ที่นับรวมทั้งหมด: " -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "APT รุ่นนี้ไม่รองรับระบบนับรุ่นแบบ '%s'" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "แคชของแพกเกจถูกสร้างมาสำหรับสถาปัตยกรรมอื่น" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "ต้องใช้" +msgid "Package file %s is out of sync." +msgstr "ข้อมูลแฟ้ม Package %s ไม่ตรงกับความเป็นจริง" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "ต้องใช้ขณะติดตั้ง" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "ไม่พบแพกเกจ" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "แนะนำ" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "คุณต้องระบุแพตเทิร์นสำหรับค้นหาอย่างน้อยหนึ่งแพตเทิร์น" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "ควรใช้ร่วมกับ" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "คำสั่งนี้ไม่แนะนำให้ใช้แล้ว กรุณาใช้ 'apt-mark showauto' แทน" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "ขัดแย้งกับ" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "ไม่พบแพกเกจ %s" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "แทนที่" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "แฟ้มแพกเกจ:" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "ใช้แทน" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "ข้อมูลแคชไม่ตรงกับความเป็นจริงแล้ว ไม่สามารถอ้างอิงไขว้ระหว่างแฟ้มแพกเกจ" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "ทำให้พัง" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "แพกเกจที่ถูกตรึง:" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "เพิ่มความสามารถ" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(ไม่พบ)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "สำคัญ" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " ที่ติดตั้งอยู่: " -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "จำเป็น" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " รุ่นที่ติดตั้งได้: " -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "มาตรฐาน" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(ไม่มี)" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "ตัวเลือก" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " การตรึงแพกเกจ: " -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "ส่วนเสริม" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " ตารางรุ่น:" -#: apt-pkg/pkgrecords.cc:38 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "ไม่รองรับแฟ้มดัชนีชนิด '%s'" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s สำหรับ %s คอมไพล์เมื่อ %s %s\n" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" -msgstr "คอมไพล์นิพจน์เรกิวลาร์ไม่สำเร็จ - %s" +#: cmdline/apt-cache.cc:1749 +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"วิธีใช้: apt-cache [ตัวเลือก] คำสั่ง\n" +" apt-cache [ตัวเลือก] add file1 [file2 ...]\n" +" apt-cache [ตัวเลือก] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [ตัวเลือก] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache เป็นเครื่องมือระดับล่างสำหรับสืบค้นข้อมูลจากแฟ้มแคชไบนารีของ APT\n" +"\n" +"คำสั่ง:\n" +" gencaches - สร้างทั้งแคชของแพกเกจและแคชของซอร์ส\n" +" showpkg - แสดงข้อมูลทั่วไปของแพกเกจที่กำหนด\n" +" showsrc - แสดงระเบียนข้อมูลซอร์ส\n" +" stats - แสดงสถิติทั่วไป\n" +" dump - แสดงเนื้อหาแคชทั้งหมดในรูปแบบดิบ\n" +" dumpavail - แสดงข้อมูลแพกเกจที่มีทั้งหมดออกทางเอาต์พุตมาตรฐาน\n" +" unmet - แสดงความเชื่อมโยงที่ยังขาดหาย\n" +" search - ค้นรายชื่อแพกเกจด้วยนิพจน์เรกิวลาร์\n" +" show - แสดงข้อมูลของแพกเกจ\n" +" depends - แสดงข้อมูลแพกเกจที่ต้องใช้สำหรับแพกเกจที่กำหนด\n" +" rdepends - แสดงข้อมูลแพกเกจอื่นที่ต้องใช้แพกเกจที่กำหนด\n" +" pkgnames - แสดงรายชื่อแพกเกจทั้งหมด\n" +" dotty - สร้างกราฟความเชื่อมโยงของแพกเกจในรูป GraphViz\n" +" xvcg - สร้างกราฟความเชื่อมโยงของแพกเกจในรูป xvcg\n" +" policy - แสดงค่าตั้งนโยบาย\n" +"\n" +"ตัวเลือก:\n" +" -h แสดงข้อความช่วยเหลือนี้\n" +" -p=? แฟ้มแคชของแพกเกจ\n" +" -s=? แฟ้มแคชของซอร์ส\n" +" -q ปิดแถบแสดงความคืบหน้า\n" +" -i แสดงเฉพาะข้อมูลความเชื่อมโยงที่สำคัญสำหรับคำสั่ง unmet\n" +" -c=? อ่านแฟ้มค่าตั้งนี้\n" +" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" +"กรุณาอ่านข้อมูลเพิ่มเติมจาก manual page apt-cache(8) และ apt.conf(5)\n" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "แคชมีระบบนับรุ่นที่ไม่ตรงกัน" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "กรุณาตั้งชื่อแผ่น เช่น 'Debian 5.0.3 Disk 1'" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "กรุณาใส่แผ่นลงในไดรว์แล้วกด enter" + +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (%s%d)" +msgid "Failed to mount '%s' to '%s'" +msgstr "ไม่สามารถเมานท์ '%s' ที่ '%s'" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนชื่อแพกเกจที่ APT สามารถรองรับได้แล้ว" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" +"การตรวจซีดีรอมอัตโนมัติไม่พบซีดีรอมใดที่จุดเมานท์ปริยาย\n" +"คุณอาจลองใช้ตัวเลือก --cdrom เพื่อกำหนดจุดเมานท์ของซีดีรอมได้\n" +"อ่านข้อมูลเพิ่มเติมเกี่ยวกับการตรวจซีดีรอมอัตโนมัติและจุดเมานท์ได้จาก 'man apt-cdrom'" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนรุ่นแพกเกจที่ APT สามารถรองรับได้แล้ว" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "ทำเช่นนี้ต่อไปกับแผ่นซีดีที่เหลือในชุด" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนคำบรรยายแพกเกจที่ APT สามารถรองรับได้แล้ว" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "อาร์กิวเมนต์ไม่ได้ระบุเป็นคู่ๆ" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนความสัมพันธ์ระหว่างแพกเกจที่ APT สามารถรองรับได้แล้ว" +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"วิธีใช้: apt-config [ตัวเลือก] คำสั่ง\n" +"\n" +"apt-config เป็นเครื่องมือง่ายๆ ที่ใช้อ่านแฟ้มค่าตั้ง APT\n" +"\n" +"คำสั่ง:\n" +" shell - โหมดเชลล์\n" +" dump - แสดงค่าตั้ง\n" +"\n" +"ตัวเลือก:\n" +" -h ข้อความช่วยเหลือนี้\n" +" -c=? อ่านแฟ้มค่าตั้งที่กำหนด\n" +" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" -#: apt-pkg/pkgcachegen.cc:576 +#: cmdline/apt-get.cc:245 #, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "ไม่พบแพกเกจ %s %s ขณะประมวลผลความขึ้นต่อแฟ้ม" +msgid "Can not find a package for architecture '%s'" +msgstr "ไม่พบแพกเกจสำหรับสถาปัตยกรรม '%s'" -#: apt-pkg/pkgcachegen.cc:1211 +#: cmdline/apt-get.cc:327 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "ไม่สามารถ stat รายการแพกเกจซอร์ส %s" - -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "กำลังอ่านรายชื่อแพกเกจ" - -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "กำลังเก็บข้อมูลแฟ้มที่ตระเตรียมให้" +msgid "Can not find a package '%s' with version '%s'" +msgstr "ไม่พบแพกเกจ '%s' ที่มีรุ่นเป็น '%s'" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:330 #, c-format -msgid "Unable to write to %s" -msgstr "ไม่สามารถเขียนลงแฟ้ม %s" +msgid "Can not find a package '%s' with release '%s'" +msgstr "ไม่พบแพกเกจ '%s' ที่มีชุดจัดแจกเป็น '%s'" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "เกิดข้อผิดพลาด IO ขณะบันทึกแคชของซอร์ส" +#: cmdline/apt-get.cc:367 +#, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "จะเลือก '%s' เป็นแพกเกจซอร์สแทน '%s'\n" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "ส่งสภาวการณ์ไปยังกลไกการแก้ปัญหา" +#: cmdline/apt-get.cc:423 +#, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "ไม่พบรุ่น '%s' ของแพกเกจ '%s'" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "ส่งคำสั่งไปยังกลไกการแก้ปัญหา" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "ไม่พบแพกเกจ %s" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "เตรียมรับคำตอบ" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "กำหนด %s ให้เป็นการติดตั้งแบบเลือกเองแล้ว\n" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "กลไกการแก้ปัญหาภายนอกทำงานล้มเหลวโดยไม่มีข้อความข้อผิดพลาดที่เหมาะสม" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "กำหนด %s ให้เป็นการติดตั้งแบบอัตโนมัติแล้ว\n" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "เรียกกลไกการแก้ปัญหาภายนอก" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "คำสั่งนี้ไม่แนะนำให้ใช้แล้ว กรุณาใช้ 'apt-mark auto' และ 'apt-mark manual' แทน" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "เปลี่ยนชื่อไม่สำเร็จ: %s (%s -> %s)" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "เกิดข้อผิดพลาดภายใน: กลไกการแก้ปัญหาทำความเสียหาย" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "ผลรวมแฮชไม่ตรงกัน" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "ไม่สามารถล็อคไดเรกทอรีดาวน์โหลด" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "ขนาดไม่ตรงกัน" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "ต้องระบุแพกเกจอย่างน้อยหนึ่งแพกเกจที่จะดาวน์โหลดซอร์สโค้ด" -#: apt-pkg/acquire-item.cc:173 -msgid "Invalid file format" -msgstr "รูปแบบของแฟ้มไม่ถูกต้อง" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "ไม่พบแพกเกจซอร์สโค้ดสำหรับ %s" -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:786 #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" -"ไม่พบรายการ '%s' ที่ต้องการในแฟ้ม Release (รายการ sources.list ไม่ถูกต้อง " -"หรือแฟ้มผิดรูปแบบ)" - -#: apt-pkg/acquire-item.cc:1589 -#, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "ไม่พบผลรวมแฮชสำหรับ '%s' ในแฟ้ม Release" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "ไม่มีกุญแจสาธารณะสำหรับกุญแจหมายเลขต่อไปนี้:\n" - -#: apt-pkg/acquire-item.cc:1669 -#, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"แฟ้ม Release สำหรับ %s หมดอายุแล้ว (ตั้งแต่ %s ที่แล้ว) จะไม่ใช้รายการปรับรุ่นต่างๆ " -"ของคลังแพกเกจนี้" - -#: apt-pkg/acquire-item.cc:1691 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "ชุดจัดแจกขัดแย้งกัน: %s (ต้องการ %s แต่พบ %s)" +"ข้อสังเกต: การจัดทำแพกเกจ '%s' พัฒนาผ่านระบบควบคุมรุ่น '%s' อยู่ที่:\n" +"%s\n" -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:791 #, c-format msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -"เกิดข้อผิดพลาดขณะตรวจสอบลายเซ็น จะไม่ปรับข้อมูลคลังแพกเกจนี้ และจะใช้แฟ้มดัชนีเก่า " -"ข้อผิดพลาดจาก GPG: %s: %s\n" +"กรุณาใช้:\n" +"bzr branch %s\n" +"เพื่อดึงรุ่นล่าสุด (ที่อาจยังไม่ปล่อยออกมา) ของตัวแพกเกจ\n" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:843 #, c-format -msgid "GPG error: %s: %s" -msgstr "ข้อผิดพลาดจาก GPG: %s: %s" +msgid "Skipping already downloaded file '%s'\n" +msgstr "จะข้ามแฟ้ม '%s' ที่ดาวน์โหลดไว้แล้ว\n" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "ไม่พบแฟ้มสำหรับแพกเกจ %s คุณอาจต้องแก้ปัญหาแพกเกจนี้เอง (ไม่มี arch)" +msgid "Couldn't determine free space in %s" +msgstr "ไม่สามารถคำนวณพื้นที่ว่างใน %s" -#: apt-pkg/acquire-item.cc:1925 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "ไม่พบแหล่งที่จะดาวน์โหลดรุ่น '%s' ของ '%s' ได้" +msgid "You don't have enough free space in %s" +msgstr "คุณมีพื้นที่ว่างเหลือไม่พอใน %s" -#: apt-pkg/acquire-item.cc:1983 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "แฟ้มดัชนีแพกเกจเสียหาย ไม่มีข้อมูล Filename: (ชื่อแฟ้ม) สำหรับแพกเกจ %s" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "ต้องดาวน์โหลดซอร์สโค้ด %sB/%sB\n" -#: apt-pkg/vendorlist.cc:85 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "บล็อคผู้ผลิต %s ไม่มีลายนิ้วมือ" +msgid "Need to get %sB of source archives.\n" +msgstr "ต้องดาวน์โหลดซอร์สโค้ด %sB\n" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: cmdline/apt-get.cc:902 #, c-format -msgid "List directory %spartial is missing." -msgstr "ไม่มีไดเรกทอรีรายชื่อแพกเกจ %spartial" +msgid "Fetch source %s\n" +msgstr "ดาวน์โหลดซอร์ส %s\n" -#: apt-pkg/acquire.cc:91 -#, c-format -msgid "Archives directory %spartial is missing." -msgstr "ไม่มีไดเรกทอรีแพกเกจ %spartial" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "ไม่สามารถดาวน์โหลดบางแฟ้ม" -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "ดาวน์โหลดสำเร็จแล้ว และอยู่ในโหมดดาวน์โหลดอย่างเดียว" + +#: cmdline/apt-get.cc:950 #, c-format -msgid "Unable to lock directory %s" -msgstr "ไม่สามารถล็อคไดเรกทอรี %s" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "จะข้ามการแตกซอร์สของซอร์สที่แตกไว้แล้วใน %s\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "กำลังดาวน์โหลดแฟ้มที่ %li จาก %li (เหลืออีก %s)" +msgid "Unpack command '%s' failed.\n" +msgstr "คำสั่งแตกแฟ้ม '%s' ล้มเหลว\n" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Retrieving file %li of %li" -msgstr "กำลังดาวน์โหลดแฟ้มที่ %li จาก %li" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "กรุณาตรวจสอบว่าได้ติดตั้งแพกเกจ 'dpkg-dev' แล้ว\n" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "ไม่สามารถดาวน์โหลด %s %s\n" +msgid "Build command '%s' failed.\n" +msgstr "คำสั่ง build '%s' ล้มเหลว\n" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "ดาวน์โหลดแฟ้มดัชนีบางแฟ้มไม่สำเร็จ จะข้ามรายการดังกล่าวไป หรือใช้ข้อมูลเก่าแทน" +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "โพรเซสลูกล้มเหลว" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "คุณต้องเพิ่ม URI ชนิด 'source' ใน sources.list ของคุณด้วย" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "ต้องระบุแพกเกจอย่างน้อยหนึ่งแพกเกจที่จะตรวจสอบสิ่งที่ต้องการสำหรับการ build" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" -msgstr "ค่า '%s' ไม่สามารถใช้กับ APT::Default-Release ได้ เนื่องจากรุ่นดังกล่าวไม่มีในแหล่ง" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" +"ไม่มีข้อมูลสถาปัตยกรรมสำหรับ %s ดูวิธีตั้งค่าที่หัวข้อ APT::Architectures ของ apt.conf(5)" -#: apt-pkg/policy.cc:422 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "ระเบียนผิดรูปแบบในแฟ้มค่าปรับแต่ง %s: ไม่มีข้อมูลส่วนหัว 'Package'" +msgid "Unable to get build-dependency information for %s" +msgstr "ไม่สามารถอ่านข้อมูลสิ่งที่ต้องการสำหรับการ build ของ %s" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Did not understand pin type %s" -msgstr "ไม่เข้าใจชนิดการตรึง %s" - -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "ไม่ได้ระบุลำดับความสำคัญ (หรือค่าศูนย์) สำหรับการตรึง" +msgid "%s has no build depends.\n" +msgstr "%s ไม่ต้องการสิ่งใดสำหรับ build\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1272 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" msgstr "" -"ไม่สามารถตั้งค่า '%s' แบบทันทีได้ กรุณาอ่านรายละเอียดเพิ่มเติมจาก man 5 apt.conf ที่หัวข้อ " -"APT::Immediate-Configure (%d)" - -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "ไม่สามารถตั้งค่า '%s'" +"ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะไม่สามารถใช้ %s กับแพกเกจ '%s' ได้" -#: apt-pkg/packagemanager.cc:583 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." -msgstr "" -"การติดตั้งครั้งนี้จำเป็นต้องลบแพกเกจ %s ชั่วคราว " -"อันเนื่องมาจากความขัดแย้งหรือความขึ้นต่อกันระหว่างติดตั้งที่เป็นวงรอบ " -"ซึ่งแพกเกจดังกล่าวเป็นแพกเกจที่จำเป็นสำหรับระบบ การลบดังกล่าวมักเป็นอันตราย " -"แต่ถ้าคุณต้องการทำเช่นนั้นจริงๆ ก็ให้เปิดตัวเลือก APT::Force-LoopBreak" - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s ยาวเกินไป" - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "กำลังเลิกเมานท์ซีดีรอม...\n" - -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "กำลังใช้จุดเมานท์ซีดีรอม %s\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "กำลังรอแผ่น...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "กำลังเมานท์ซีดีรอม...\n" - -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "กำลังตรวจสอบชื่อแผ่น... " +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะไม่พบแพกเกจ %s" -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Stored label: %s\n" -msgstr "ชื่อที่เก็บไว้: %s\n" - -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "กำลังสำรวจข้อมูลในแผ่นเพื่อหาแฟ้มดัชนี...\n" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้: แพกเกจ %s ที่ติดตั้งไว้ใหม่เกินไป" -#: apt-pkg/cdrom.cc:734 +#: cmdline/apt-get.cc:1352 #, c-format msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" -"พบดัชนีแพกเกจ %zu รายการ, ดัชนีซอร์ส %zu รายการ, ดัชนีคำแปล %zu รายการ และลายเซ็น " -"%zu รายการ\n" +"ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะไม่มีแพกเกจ %s " +"รุ่นที่จะสอดคล้องกับความต้องการรุ่นของแพกเกจได้" -#: apt-pkg/cdrom.cc:744 +#: cmdline/apt-get.cc:1358 +#, c-format msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "ไม่พบแฟ้มแพกเกจใดๆ บางทีแผ่นนี้อาจจะไม่ใช่แผ่นเดเบียน หรือสถาปัตยกรรมอาจไม่ถูกต้อง" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะ %s ไม่มีรุ่นที่ติดตั้งได้" -#: apt-pkg/cdrom.cc:771 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Found label '%s'\n" -msgstr "พบชื่อแผ่น '%s'\n" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "ไม่ใช่ชื่อที่ใช้ได้ กรุณาลองใหม่\n" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้: %s" -#: apt-pkg/cdrom.cc:817 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"แผ่นนี้เรียกชื่อว่า:\n" -"'%s'\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "ไม่สามารถติดตั้งสิ่งที่จำเป็นสำหรับการ build ของ %s ได้" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "กำลังคัดลอกรายชื่อแพกเกจ..." +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "ติดตั้งสิ่งที่จำเป็นสำหรับการ build ไม่สำเร็จ" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "กำลังเขียนรายชื่อแหล่งแพกเกจแหล่งใหม่\n" +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 +#, c-format +msgid "Changelog for %s (%s)" +msgstr "ปูมการแก้ไขสำหรับ %s (%s)" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "บรรทัดรายชื่อแหล่งแพกเกจสำหรับแผ่นนี้คือ:\n" - -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "จำเป็นต้องติดตั้งแพกเกจ %s ซ้ำ แต่หาตัวแพกเกจไม่พบ" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "มอดูลที่รองรับ:" -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-get.cc:1633 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"ข้อผิดพลาด: pkgProblemResolver::Resolve สร้างคำตอบที่ทำให้เกิดแพกเกจเสีย " -"อาจเกิดจากแพกเกจที่ถูกกำหนดให้คงรุ่นไว้" - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "ไม่สามารถแก้ปัญหาได้ คุณได้คงรุ่นแพกเกจที่เสียอยู่ไว้" - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "กำลังสร้างโครงสร้างลำดับความสัมพันธ์" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "รุ่นแพกเกจที่มี" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "สร้างลำดับความสัมพันธ์" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "กำลังอ่านข้อมูลสถานะ" - -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "ไม่สามารถเปิดแฟ้มสถานะ %s" - -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "ไม่สามารถเขียนแฟ้มสถานะชั่วคราว %s" - -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "ไม่สามารถแจงแฟ้มแพกเกจ %s (1)" - -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "ไม่สามารถแจงแฟ้มแพกเกจ %s (2)" - -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "ไม่พบรุ่นย่อย '%s' ของ '%s'" - -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "ไม่พบรุ่น '%s' ของ '%s'" - -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "ไม่พบแพกเกจ %s" - -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "ไม่พบงานติดตั้ง '%s'" - -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "ไม่พบแพกเกจที่ตรงกับนิพจน์เรกิวลาร์ '%s'" +"วิธีใช้: apt-get [ตัวเลือก] คำสั่ง\n" +" apt-get [ตัวเลือก] install|remove pkg1 [pkg2 ...]\n" +" apt-get [ตัวเลือก] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get เป็นคำสั่งง่ายๆ สำหรับดาวน์โหลดและติดตั้งแพกเกจ คำสั่งที่ใช้บ่อยที่สุดก็คือ\n" +"update และ install\n" +"\n" +"คำสั่ง:\n" +" update - ดาวน์โหลดรายชื่อแพกเกจชุดใหม่\n" +" upgrade - ปรับรุ่นแพกเกจต่างๆ ขึ้น\n" +" install - ติดตั้งแพกเกจใหม่ (pkg อยู่ในรูปเช่น libc6 ไม่ใช่ libc6.deb)\n" +" remove - ถอดถอนแพกเกจ\n" +" autoremove - ถอดถอนแพกเกจที่ไม่ใช้แล้วโดยอัตโนมัติ\n" +" purge - ถอดถอนแพกเกจพร้อมลบค่าตั้งทั้งหมด\n" +" source - ดาวน์โหลดซอร์สโค้ดของแพกเกจ\n" +" build-dep - ติดตั้งสิ่งที่จำเป็นสำหรับการประกอบสร้างแพกเกจซอร์สโค้ด\n" +" dist-upgrade - ปรับรุ่นขึ้นแบบข้ามรุ่นจัดแจก ดู apt-get(8)\n" +" dselect-upgrade - ทำตามสิ่งที่เลือกโดย dselect\n" +" clean - ลบแฟ้มแพกเกจที่ดาวน์โหลดมา\n" +" autoclean - ลบแฟ้มแพกเกจเก่าที่ดาวน์โหลดมา\n" +" check - ตรวจสอบว่าไม่มีความเชื่อมโยงที่เสียระหว่างแพกเกจ\n" +" changelog - ดาวน์โหลดและแสดงปูมการแก้ไขของแพกเกจที่กำหนด\n" +" download - ดาวน์โหลดแพกเกจไบนารีลงในไดเรกทอรีปัจจุบัน\n" +"\n" +"ตัวเลือก:\n" +" -h แสดงข้อความช่วยเหลือนี้\n" +" -q แสดงผลลัพธ์แบบบันทึกลงแฟ้มได้ - ไม่ต้องแสดงความคืบหน้า\n" +" -qq ไม่ต้องแสดงผลลัพธ์ ยกเว้นข้อผิดพลาด\n" +" -d ดาวน์โหลดอย่างเดียว - *ไม่ต้อง* ติดตั้งหรือแตกแพกเกจ\n" +" -s ไม่ต้องทำจริง เพียงจำลองลำดับการทำงานเท่านั้น\n" +" -y ตอบ Yes สำหรับทุกคำถามโดยไม่ต้องถาม\n" +" -f พยายามแก้ไขระบบในกรณีที่มีปัญหาความขึ้นต่อกันระหว่างแพกเกจ\n" +" -m พยายามดำเนินการต่อถ้าหาแฟ้มแพกเกจไม่พบ\n" +" -u แสดงรายชื่อของแพกเกจที่จะปรับรุ่นทั้งหมดด้วย\n" +" -b build แพกเกจซอร์สหลังจากดาวน์โหลดมาแล้วด้วย\n" +" -V แสดงเลขรุ่นแบบยาวของโปรแกรม\n" +" -c=? อ่านแฟ้มค่าตั้งนี้\n" +" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" +"กรุณาอ่านข้อมูลและตัวเลือกเพิ่มเติมจาก manual page apt-get(8), sources.list(5)\n" +"และ apt.conf(5)\n" +" APT นี้มีพลังของ Super Cow\n" -#: apt-pkg/cacheset.cc:615 -#, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "ไม่พบแพกเกจที่ตรงกับ glob '%s'" +#: cmdline/apt-helper.cc:35 +msgid "Must specify at least one pair url/filename" +msgstr "ต้องระบุคู่ URL, ชื่อแฟ้ม อย่างน้อยหนึ่งคู่" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "ไม่สามารถเลือกรุ่นต่างๆ ของแพกเกจ '%s' ได้ เนื่องจากเป็นแพกเกจเสมือนอย่างแท้จริง" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "ดาวน์โหลดไม่สำเร็จ" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format +#: cmdline/apt-helper.cc:66 msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"ไม่สามารถเลือกรุ่นที่ติดตั้งไว้หรือรุ่นสำหรับติดตั้งของแพกเกจ '%s' ได้ เนื่องจากไม่มีทั้งสองอย่าง" +"วิธีใช้: apt-helper [ตัวเลือก] คำสั่ง\n" +" apt-helper [ตัวเลือก] download-file URI พาธปลายทาง\n" +"\n" +"apt-helper เป็นโปรแกรมช่วยเหลือภายในของ apt\n" +"\n" +"คำสั่ง:\n" +" download-file - ดาวน์โหลด URI ที่กำหนดลงในพาธปลายทาง\n" +"\n" +" โปรแกรมช่วยเหลือของ APT นี้มีพลัง Super Meep\n" -#: apt-pkg/cacheset.cc:647 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "ไม่สามารถเลือกรุ่นใหม่ที่สุดของแพกเกจ '%s' ได้ เนื่องจากเป็นแพกเกจเสมือนอย่างแท้จริง" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s ไม่สามารถทำเครื่องหมายได้ เพราะไม่ได้ติดตั้งไว้\n" -#: apt-pkg/cacheset.cc:655 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "ไม่สามารถเลือกรุ่นสำหรับติดตั้งของแพกเกจ '%s' ได้ เนื่องจากไม่มีรุ่นสำหรับติดตั้ง" +msgid "%s was already set to manually installed.\n" +msgstr "%s ถูกกำหนดให้เป็นการติดตั้งแบบเลือกเองอยู่ก่อนแล้ว\n" -#: apt-pkg/cacheset.cc:663 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "ไม่สามารถเลือกรุ่นที่ติดตั้งไว้ของแพกเกจ '%s' ได้ เนื่องจากแพกเกจไม่ได้ติดตั้งไว้" +msgid "%s was already set to automatically installed.\n" +msgstr "%s ถูกกำหนดให้เป็นการติดตั้งแบบอัตโนมัติอยู่ก่อนแล้ว\n" -#: apt-pkg/indexrecords.cc:78 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Unable to parse Release file %s" -msgstr "ไม่สามารถแจงแฟ้ม Release %s" +msgid "%s was already set on hold.\n" +msgstr "%s ถูกกำหนดให้คงรุ่นอยู่ก่อนแล้ว\n" -#: apt-pkg/indexrecords.cc:86 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "No sections in Release file %s" -msgstr "ไม่มีหัวข้อย่อยในแฟ้ม Release %s" +msgid "%s was already not hold.\n" +msgstr "%s ไม่ได้คงรุ่นอยู่ก่อนแล้ว\n" -#: apt-pkg/indexrecords.cc:117 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "No Hash entry in Release file %s" -msgstr "ไม่มีรายการแฮชในแฟ้ม Release %s" +msgid "Waited for %s but it wasn't there" +msgstr "รอโพรเซส %s แต่ตัวโพรเซสไม่อยู่" -#: apt-pkg/indexrecords.cc:130 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "รายการ 'Valid-Until' ไม่ถูกต้องในแฟ้ม Release %s" +msgid "%s set on hold.\n" +msgstr "กำหนด %s ให้คงรุ่นแล้ว\n" -#: apt-pkg/indexrecords.cc:149 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "รายการ 'Date' ไม่ถูกต้องในแฟ้ม Release %s" +msgid "Canceled hold on %s.\n" +msgstr "ยกเลิกการคงรุ่นของ %s แล้ว\n" -#: apt-pkg/sourcelist.cc:127 -#, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "วรรคที่ %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ขณะแจง URI)" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "เรียกทำงาน dpkg ไม่สำเร็จ คุณเป็น root หรือเปล่า?" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ ([ตัวเลือก] แจงไม่ผ่าน)" +#: cmdline/apt-mark.cc:392 +msgid "" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." +msgstr "" +"วิธีใช้: apt-mark [ตัวเลือก] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark เป็นเครื่องมือบรรทัดคำสั่งอย่างง่ายสำหรับทำเครื่องหมายแพกเกจ\n" +"ว่าเป็นการติดตั้งแบบเลือกเองหรือแบบอัตโนมัติ และสามารถแสดงการทำเครื่องหมายต่างๆ ได้ด้วย\n" +"\n" +"คำสั่ง:\n" +" auto - ทำเครื่องหมายแพกเกจที่กำหนดให้เป็นการติดตั้งแบบอัตโนมัติ\n" +" manual - ทำเครื่องหมายแพกเกจที่กำหนดให้เป็นการติดตั้งแบบเลือกเอง\n" +" hold - ทำเครื่องหมายแพกเกจที่กำหนดให้เป็นการคงรุ่น\n" +" unhold - ลบการทำเครื่องหมายการคงรุ่นจากแพกเกจที่กำหนด\n" +" showauto - แสดงรายชื่อของแพกเกจที่ติดตั้งแบบอัตโนมัติ\n" +" showmanual - แสดงรายชื่อของแพกเกจที่ติดตั้งแบบเลือกเอง\n" +" showhold - แสดงรายชื่อของแพกเกจที่คงรุ่นอยู่\n" +"\n" +"ตัวเลือก:\n" +" -h แสดงข้อความช่วยเหลือนี้\n" +" -q แสดงผลลัพธ์แบบบันทึกลงแฟ้มได้ - ไม่ต้องแสดงความคืบหน้า\n" +" -qq ไม่ต้องแสดงผลลัพธ์ ยกเว้นข้อผิดพลาด\n" +" -s ไม่ต้องทำจริง เพียงจำลองลำดับการทำงานเท่านั้น\n" +" -f อ่าน/เขียน เครื่องหมาย อัตโนมัติ/เลือกเอง ในแฟ้มที่กำหนด\n" +" -c=? อ่านแฟ้มค่าตั้งนี้\n" +" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" +"กรุณาอ่านข้อมูลเพิ่มเติมจาก manual page apt-mark(8) และ apt.conf(5)" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ ([ตัวเลือก] สั้นเกินไป)" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" +"วิธีใช้: apt [ตัวเลือก] คำสั่ง\n" +"\n" +"บรรทัดคำสั่งสำหรับ apt\n" +"คำสั่งพื้นฐาน:\n" +" list - แสดงรายชื่อแพกเกจที่มีชื่อตรงกับรูปแบบที่กำหนด\n" +" search - ค้นหาในคำบรรยายแพกเกจ\n" +" show - แสดงรายละเอียดของแพกเกจ\n" +"\n" +" update - ปรับข้อมูลรายชื่อของแพกเกจที่มี\n" +"\n" +" install - ติดตั้งแพกเกจ\n" +" remove - ถอดถอนแพกเกจ\n" +"\n" +" upgrade - ปรับรุ่นระบบโดยติดตั้ง/ปรับรุ่นแพกเกจต่างๆ\n" +" full-upgrade - ปรับรุ่นระบบโดยถอดถอน/ติดตั้ง/ปรับรุ่นแพกเกจต่างๆ\n" +"\n" +" edit-sources - แก้ไขแฟ้มข้อมูลแหล่งแพกเกจ\n" -#: apt-pkg/sourcelist.cc:184 +#: methods/cdrom.cc:203 #, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ ([%s] ไม่ใช่การกำหนดค่า)" +msgid "Unable to read the cdrom database %s" +msgstr "ไม่สามารถอ่านฐานข้อมูลซีดีรอม %s" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ ([%s] ไม่มีคีย์)" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" +msgstr "" +"กรุณาใช้ apt-cdrom เพื่อให้ APT รู้จักซีดีรอมนี้ apt-get update ไม่สามารถใช้เพิ่มซีดีรอมใหม่ได้" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ ([%s] คีย์ %s ไม่มีค่า)" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "ซีดีรอมผิดแผ่น" -#: apt-pkg/sourcelist.cc:206 +#: methods/cdrom.cc:249 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (URI)" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "ไม่สามารถเลิกเมานท์ซีดีรอมใน %s แผ่นอาจกำลังถูกใช้งานอยู่" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (dist)" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "ไม่พบแผ่น" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ขณะแจง URI)" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "ไม่พบแฟ้ม" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (dist แบบสัมบูรณ์)" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "stat ไม่สำเร็จ" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ขณะแจง dist)" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "กำหนดเวลาแก้ไขไม่สำเร็จ" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "กำลังเปิด %s" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI ไม่ถูกต้อง URI ของแฟ้มในเครื่องต้องขึ้นต้นด้วย //" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ชนิด)" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "เข้าระบบ" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "ไม่รู้จักชนิด '%s' ที่บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "ไม่สามารถอ่านชื่อของอีกฝ่ายได้" -#: apt-pkg/sourcelist.cc:416 -#, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "ไม่รู้จักชนิด '%s' ที่วรรคที่ %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "ไม่สามารถอ่านชื่อของเครื่องนี้ได้" -#: apt-pkg/deb/dpkgpm.cc:95 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Installing %s" -msgstr "กำลังติดตั้ง %s" +msgid "The server refused the connection and said: %s" +msgstr "เซิร์ฟเวอร์ปฏิเสธการเชื่อมต่อโดยรายงานว่า: %s" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#: methods/ftp.cc:225 #, c-format -msgid "Configuring %s" -msgstr "กำลังตั้งค่า %s" +msgid "USER failed, server said: %s" +msgstr "USER ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#: methods/ftp.cc:232 #, c-format -msgid "Removing %s" -msgstr "กำลังถอดถอน %s" +msgid "PASS failed, server said: %s" +msgstr "PASS ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "กำลังถอดถอน %s อย่างสมบูรณ์" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "มีการระบุพร็อกซี แต่ไม่มีสคริปต์สำหรับเข้าระบบ ค่า Acquire::ftp:ProxyLogin ว่างเปล่า" -#: apt-pkg/deb/dpkgpm.cc:99 +#: methods/ftp.cc:280 #, c-format -msgid "Noting disappearance of %s" -msgstr "กำลังจดบันทึกการหายไปของ %s" +msgid "Login script command '%s' failed, server said: %s" +msgstr "คำสั่งสคริปต์เข้าระบบ '%s' ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" -#: apt-pkg/deb/dpkgpm.cc:100 +#: methods/ftp.cc:306 #, c-format -msgid "Running post-installation trigger %s" -msgstr "กำลังเรียกการสะกิด %s หลังการติดตั้ง" +msgid "TYPE failed, server said: %s" +msgstr "TYPE ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "ไม่มีไดเรกทอรี '%s'" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "หมดเวลารอเชื่อมต่อ" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "ไม่สามารถเปิดแฟ้ม '%s'" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "เซิร์ฟเวอร์ปิดการเชื่อมต่อ" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "กำลังเตรียม %s" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "การอ่านข้อมูลผิดพลาด" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "กำลังแตกแพกเกจ %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "คำตอบท่วมบัฟเฟอร์" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "กำลังเตรียมตั้งค่า %s" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "มีความเสียหายของโพรโทคอล" -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "ติดตั้ง %s แล้ว" - -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "กำลังเตรียมถอดถอน %s" - -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "ถอดถอน %s แล้ว" - -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "กำลังเตรียมถอดถอน %s อย่างสมบูรณ์" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "การเขียนข้อมูลผิดพลาด" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "ถอดถอน %s อย่างสมบูรณ์แล้ว" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "ไม่สามารถสร้างซ็อกเก็ต" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "ioctl(TIOCGWINSZ) ล้มเหลว" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "ไม่สามารถเชื่อมต่อซ็อกเก็ตข้อมูล เนื่องจากหมดเวลาคอย" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, c-format -msgid "Can not write log (%s)" -msgstr "ไม่สามารถเขียนปูม (%s)" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "ล้มเหลว" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "ได้เมานท์ /dev/pts ไว้หรือไม่?" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "ไม่สามารถเชื่อมต่อซ็อกเกตแบบ passive" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "stdout เป็นเทอร์มินัลหรือไม่?" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo ไม่สามารถนำซ็อกเก็ตที่รอรับการเชื่อมต่อมาใช้" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 -#, c-format -msgid "Waited for %s but it wasn't there" -msgstr "รอโพรเซส %s แต่ตัวโพรเซสไม่อยู่" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "ไม่สามารถ bind ซ็อกเก็ต" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "ปฏิบัติการถูกขัดจังหวะก่อนที่จะสามารถทำงานเสร็จ" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "ไม่สามารถ listen ที่ซ็อกเก็ต" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "ไม่มีการเขียนรายงาน apport เพราะถึงขีดจำกัด MaxReports แล้ว" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "ไม่สามารถระบุชื่อซ็อกเก็ต" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "มีปัญหาความขึ้นต่อกัน - จะทิ้งไว้โดยไม่ตั้งค่า" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "ไม่สามารถส่งคำสั่ง PORT" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"ไม่มีการเขียนรายงาน apport เพราะข้อความข้อผิดพลาดระบุว่าเป็นสิ่งที่ตามมาจากข้อผิดพลาดก่อนหน้า" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "ไม่รู้จักตระกูลที่อยู่ %u (AF_*)" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "ไม่มีการเขียนรายงาน apport เพราะข้อความข้อผิดพลาดระบุว่าเกิดจากดิสก์เต็ม" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "EPRT ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "ไม่มีการเขียนรายงาน apport เพราะข้อความข้อผิดพลาดระบุว่าเกิดจากหน่วยความจำเต็ม" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "หมดเวลารอเชื่อมต่อซ็อกเก็ตข้อมูล" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" -"ไม่มีการเขียนรายงาน apport เพราะข้อความข้อผิดพลาดระบุว่าเกิดจากปัญหาของระบบในเครื่อง" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "ไม่สามารถรับการเชื่อมต่อ" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" -"ไม่มีการเขียนรายงาน apport เพราะข้อความข้อผิดพลาดระบุว่าเกิดจากปัญหาการอ่าน/เขียนของ dpkg" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "เกิดปัญหาขณะคำนวณค่าแฮชของแฟ้ม" -#: apt-pkg/deb/debsystem.cc:91 +#: methods/ftp.cc:890 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "ไม่สามารถล็อคไดเรกทอรีดูแลระบบ (%s) มีโพรเซสอื่นใช้งานอยู่หรือเปล่า?" +msgid "Unable to fetch file, server said '%s'" +msgstr "ไม่สามารถดาวน์โหลดแฟ้ม เซิร์ฟเวอร์ตอบว่า: '%s'" -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "ไม่สามารถล็อคไดเรกทอรีดูแลระบบ (%s) คุณเป็น root หรือเปล่า?" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "หมดเวลาคอยที่ซ็อกเก็ตข้อมูล" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: methods/ftp.cc:935 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "dpkg ถูกขัดจังหวะ คุณต้องเรียก '%s' เองเพื่อแก้ปัญหา" +msgid "Data transfer failed, server said '%s'" +msgstr "ถ่ายโอนข้อมูลไม่สำเร็จ เซิร์ฟเวอร์ตอบว่า '%s'" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "ไม่ได้ล็อคอยู่" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "สอบถาม" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%liวัน %liชม. %liนาที %liวิ" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "ไม่สามารถเรียก " -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: methods/connect.cc:76 #, c-format -msgid "%lih %limin %lis" -msgstr "%liชม. %liนาที %liวิ" +msgid "Connecting to %s (%s)" +msgstr "เชื่อมต่อไปยัง %s (%s)" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: methods/connect.cc:87 #, c-format -msgid "%limin %lis" -msgstr "%liนาที %liวิ" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: methods/connect.cc:94 #, c-format -msgid "%lis" -msgstr "%liวิ" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "ไม่สามารถสร้างซ็อกเก็ตสำหรับ %s (f=%u t=%u p=%u)" -#: apt-pkg/contrib/strutl.cc:1243 +#: methods/connect.cc:100 #, c-format -msgid "Selection %s not found" -msgstr "ไม่พบรายการเลือก %s" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "ไม่สามารถเริ่มการเชื่อมต่อไปยัง %s:%s (%s)" -#: apt-pkg/contrib/fileutl.cc:190 +#: methods/connect.cc:108 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "จะไม่ใช้การล็อคกับแฟ้มล็อค %s ที่อ่านได้อย่างเดียว" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "ไม่สามารถเชื่อมต่อไปยัง %s:%s (%s) เนื่องจากหมดเวลาคอย" -#: apt-pkg/contrib/fileutl.cc:195 +#: methods/connect.cc:126 #, c-format -msgid "Could not open lock file %s" -msgstr "ไม่สามารถเปิดแฟ้มล็อค %s" +msgid "Could not connect to %s:%s (%s)." +msgstr "ไม่สามารถเชื่อมต่อไปยัง %s:%s (%s)" -#: apt-pkg/contrib/fileutl.cc:218 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "จะไม่ใช้การล็อคกับแฟ้มล็อค %s ที่เมานท์ผ่าน nfs" +msgid "Connecting to %s" +msgstr "เชื่อมต่อไปยัง %s" -#: apt-pkg/contrib/fileutl.cc:223 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Could not get lock %s" -msgstr "ไม่สามารถล็อค %s" +msgid "Could not resolve '%s'" +msgstr "ไม่สามารถเปิดหาที่อยู่ '%s'" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: methods/connect.cc:205 #, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "ไม่สามารถสร้างรายชื่อแฟ้มได้ เนื่องจาก '%s' ไม่ใช่ไดเรกทอรี" +msgid "Temporary failure resolving '%s'" +msgstr "เกิดความล้มเหลวชั่วคราวขณะเปิดหาที่อยู่ '%s'" -#: apt-pkg/contrib/fileutl.cc:394 +#: methods/connect.cc:209 #, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "จะละเลย '%s' ในไดเรกทอรี '%s' เนื่องจากไม่ใช่แฟ้มธรรมดา" +msgid "System error resolving '%s:%s'" +msgstr "เกิดข้อผิดพลาดในระบบขณะเปิดหาที่อยู่ '%s:%s'" -#: apt-pkg/contrib/fileutl.cc:412 +#: methods/connect.cc:211 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "จะละเลย '%s' ในไดเรกทอรี '%s' เนื่องจากไม่มีส่วนขยายในชื่อแฟ้ม" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "เกิดปัญหาร้ายแรงบางอย่างขณะเปิดหาที่อยู่ '%s:%s' (%i - %s)" -#: apt-pkg/contrib/fileutl.cc:421 +#: methods/connect.cc:258 #, c-format +msgid "Unable to connect to %s:%s:" +msgstr "ไม่สามารถเชื่อมต่อไปยัง %s:%s:" + +#: methods/gpgv.cc:168 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" -msgstr "จะละเลย '%s' ในไดเรกทอรี '%s' เนื่องจากส่วนขยายในชื่อแฟ้มไม่สามารถใช้การได้" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "ข้อผิดพลาดภายใน: ลายเซ็นใช้การได้ แต่ไม่สามารถระบุลายนิ้วมือของกุญแจ?!" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "โพรเซสย่อย %s เกิดข้อผิดพลาดของการใช้ย่านหน่วยความจำ (segmentation fault)" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "พบลายเซ็นที่ใช้การไม่ได้อย่างน้อยหนึ่งรายการ" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "โพรเซสย่อย %s ได้รับสัญญาณ %u" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "ไม่สามารถเรียก 'gpgv' เพื่อตรวจสอบลายเซ็น (ได้ติดตั้ง gpgv ไว้หรือไม่?)" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "โพรเซสย่อย %s คืนค่าข้อผิดพลาด (%u)" - -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "โพรเซสย่อย %s จบการทำงานกะทันหัน" - -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "การเขียนข้อมูลผิดพลาด" +msgid "" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" +msgstr "" +"แฟ้มที่เซ็นกำกับครอบข้อความมีเนื้อหาไม่ถูกต้อง ได้รับผลลัพธ์ " +"'%s' (เครือข่ายต้องยืนยันตัวบุคคลหรือไม่?)" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "เกิดปัญหาขณะปิดแฟ้ม gzip %s" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "เกิดข้อผิดพลาดไม่ทราบสาเหตุขณะเรียก gpgv" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "ไม่สามารถเปิดแฟ้ม %s" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "ลายเซ็นต่อไปนี้ใช้การไม่ได้:\n" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "ไม่สามารถเปิด file destriptor %d" +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "ลายเซ็นต่อไปนี้ไม่สามารถตรวจสอบได้ เพราะไม่มีกุญแจสาธารณะ:\n" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "สร้าง IPC ของโพรเซสย่อยไม่สำเร็จ" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "แฟ้มว่างเปล่าไม่สามารถเป็นแฟ้มจัดเก็บที่ใช้การได้" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "เรียกทำงานตัวบีบอัดไม่สำเร็จ" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้ม" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "การอ่านข้อมูลผิดพลาด" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลจากเซิร์ฟเวอร์ ปลายทางอีกด้านหนึ่งปิดการเชื่อมต่อ" -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" -msgstr "read: ยังเหลือ %llu ที่ยังไม่ได้อ่าน แต่ข้อมูลหมดแล้ว" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลจากเซิร์ฟเวอร์" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "write: ยังเหลือ %llu ที่ยังไม่ได้เขียน แต่ไม่สามารถเขียนได้" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้ม" -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "เกิดปัญหาขณะปิดแฟ้ม %s" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "select ไม่สำเร็จ" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "เกิดปัญหาขณะเปลี่ยนชื่อแฟ้ม %s ไปเป็น %s" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "หมดเวลารอเชื่อมต่อ" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "เกิดปัญหาขณะลบแฟ้ม %s" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้มผลลัพธ์" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "เกิดปัญหาขณะ sync แฟ้ม" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "รอหัวข้อมูล" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... ผิดพลาด!" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "บรรทัดข้อมูลส่วนหัวผิดพลาด" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... เสร็จแล้ว" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัวตอบมาไม่ถูกต้อง" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "..." +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัว Content-Length มาไม่ถูกต้อง" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... %u%%" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัว Content-Range มาไม่ถูกต้อง" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "ไม่สามารถ mmap แฟ้มเปล่า" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "การสนับสนุน Content-Range ที่เซิร์ฟเวอร์ HTTP ผิดพลาด" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "ไม่สามารถทำซ้ำ file descriptor %i" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "พบรูปแบบวันที่ที่ไม่รู้จัก" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "ไม่สามารถสร้าง mmap ขนาด %llu ไบต์" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "ข้อมูลส่วนหัวผิดพลาด" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "ไม่สามารถปิด mmap" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "เชื่อมต่อไม่สำเร็จ" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "ไม่สามารถปรับ mmap ให้ตรงกัน" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "ข้อผิดพลาดภายใน" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "ไม่สามารถสร้าง mmap ขนาด %lu ไบต์" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "กำลังเรียงลำดับ" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "ไม่สามารถตัดท้ายแฟ้ม" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "เกิดข้อผิดพลาดภายใน: มีการเรียก InstallPackages ด้วยแพกเกจที่เสีย!" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" -msgstr "" -"MMap แบบพลวัตมีเนื้อที่ไม่พอ กรุณาเพิ่มขนาดของ APT::Cache-Start ค่าปัจจุบัน: %lu (man 5 " -"apt.conf)" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "มีแพกเกจที่จำเป็นต้องถอดถอน แต่ถูกห้ามการถอดถอนไว้" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "ไม่สามารถเพิ่มขนาดของ MMap เนื่องจากถึงขีดจำกัด %lu ไบต์แล้ว" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "ข้อผิดพลาดภายใน: การเรียงลำดับไม่เสร็จสิ้น" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "ไม่สามารถเพิ่มขนาดของ MMap เนื่องจากผู้ใช้ปิดการขยายขนาดอัตโนมัติ" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "แปลกประหลาด... ขนาดไม่ตรงกัน กรุณาอีเมลแจ้ง apt@packages.debian.org" -#: apt-pkg/contrib/cdromutl.cc:65 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "ไม่สามารถ stat จุดเมานท์ %s" - -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "ไม่สามารถ stat ซีดีรอม" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "ต้องดาวน์โหลดแพกเกจ %sB/%sB\n" -#: apt-pkg/contrib/configuration.cc:519 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "พบตัวย่อของชนิดที่ข้อมูลไม่รู้จัก: '%c'" +msgid "Need to get %sB of archives.\n" +msgstr "ต้องดาวน์โหลดแพกเกจ %sB\n" -#: apt-pkg/contrib/configuration.cc:633 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "Opening configuration file %s" -msgstr "ขณะเปิดแฟ้มค่าตั้ง %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "หลังจากการกระทำนี้ ต้องใช้เนื้อที่บนดิสก์อีก %sB\n" -#: apt-pkg/contrib/configuration.cc:801 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "ไวยากรณ์ผิดพลาด %s:%u: เริ่มบล็อคโดยไม่มีชื่อ" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "หลังจากการกระทำนี้ เนื้อที่บนดิสก์จะว่างเพิ่มอีก %sB\n" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-private/private-install.cc:200 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "ไวยากรณ์ผิดพลาด %s:%u: แท็กผิดรูปแบบ" +msgid "You don't have enough free space in %s." +msgstr "คุณมีพื้นที่ว่างเหลือไม่พอใน %s" -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "ไวยากรณ์ผิดพลาด %s:%u: มีขยะเกินหลังค่า" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "มีปัญหาบางประการ และมีการใช้ -y โดยไม่ระบุ --force-yes" -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "ไวยากรณ์ผิดพลาด %s:%u: สามารถใช้ directive ที่ระดับบนสุดได้เท่านั้น" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Trivial Only ถูกกำหนดไว้ แต่คำสั่งนี้ไม่ใช่คำสั่งเล็กน้อย" -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "ไวยากรณ์ผิดพลาด %s:%u: ใช้ include ซ้อนกันมากเกินไป" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Yes, do as I say!" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-private/private-install.cc:222 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "ไวยากรณ์ผิดพลาด %s:%u: include จากที่นี่" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"คุณกำลังจะทำสิ่งที่อาจเป็นอันตราย\n" +"หากต้องการดำเนินการต่อ ให้พิมพ์ประโยค '%s'\n" +" ?] " -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "ไวยากรณ์ผิดพลาด %s:%u: พบ directive '%s' ที่ไม่รองรับ" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "เลิกทำ" -#: apt-pkg/contrib/configuration.cc:900 -#, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "ไวยากรณ์ผิดพลาด %s:%u: directive 'clear' ต้องมีอาร์กิวเมนต์เป็นลำดับชั้นตัวเลือก" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "คุณต้องการจะดำเนินการต่อไปหรือไม่?" -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "ไวยากรณ์ผิดพลาด %s:%u: มีขยะเกินหลังจบแฟ้ม" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "ดาวน์โหลดบางแฟ้มไม่สำเร็จ" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, c-format -msgid "No keyring installed in %s." -msgstr "ไม่มีพวงกุญแจติดตั้งไว้ใน %s" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"ดาวน์โหลดบางแพกเกจไม่สำเร็จ บางที การเรียก apt-get update หรือลองใช้ตัวเลือก --fix-" +"missing อาจช่วยได้" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "ไม่รู้จักตัวเลือกบรรทัดคำสั่ง '%c' [จาก %s]" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "ยังไม่รองรับ --fix-missing พร้อมกับการเปลี่ยนแผ่น" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "ไม่เข้าใจตัวเลือกบรรทัดคำสั่ง %s" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "ไม่สามารถแก้ปัญหาแพกเกจที่ขาดหายได้" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "ตัวเลือกบรรทัดคำสั่ง %s ไม่ได้เป็นค่าบูลีน" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "จะล้มเลิกการติดตั้ง" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "ตัวเลือก %s ต้องมีอาร์กิวเมนต์" +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"แพกเกจต่อไปนี้ได้หายไปจากระบบของคุณ เพราะแฟ้มทั้งหมดได้ถูกแทนที่\n" +"โดยแพกเกจอื่นแล้ว:" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "ตัวเลือก %s: การกำหนดรายการค่าตั้งต้องมี =<val>" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "หมายเหตุ: นี่เป็นสิ่งที่ dpkg ทำโดยอัตโนมัติโดยเจตนา" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "ตัวเลือก %s ต้องการอาร์กิวเมนต์จำนวนเต็ม ไม่ใช่ '%s'" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "apt ถูกกำหนดไม่ให้มีการลบใดๆ จึงไม่สามารถดำเนินการถอดถอนอัตโนมัติได้" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "ตัวเลือก '%s' ยาวเกินไป" +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" +"ดูเหมือนการถอดถอนอัตโนมัติได้สร้างความเสียหายบางอย่าง ซึ่งไม่ควรเกิดขึ้น\n" +"กรุณารายงานบั๊กนี้ของแพกเกจ apt" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "ไม่เข้าใจค่าบูลีน %s กรุณาลองใช้ true หรือ false" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "ข้อมูลต่อไปนี้อาจช่วยแก้ปัญหาได้:" -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "ไม่รู้จักคำสั่ง %s" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "เกิดข้อผิดพลาดภายใน: AutoRemover ทำความเสียหาย" -#: cmdline/apt-cache.cc:149 +#: apt-private/private-install.cc:513 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "แพกเกจต่อไปนี้ถูกติดตั้งแบบอัตโนมัติไว้ และไม่ต้องใช้อีกต่อไปแล้ว:" + +#: apt-private/private-install.cc:517 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "แพกเกจ %s รุ่น %s ขาดแพกเกจที่ต้องใช้:\n" +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "มีแพกเกจ %lu แพกเกจถูกติดตั้งแบบอัตโนมัติไว้ และไม่ต้องใช้อีกต่อไปแล้ว\n" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "จำนวนชื่อแพกเกจทั้งหมด: " +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "ใช้ 'apt-get autoremove' เพื่อถอดถอนแพกเกจดังกล่าวได้" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "จำนวนโครงสร้างแพกเกจทั้งหมด: " +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "คุณอาจเรียก 'apt-get -f install' เพื่อแก้ปัญหานี้ได้:" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " แพกเกจปกติ: " +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"มีปัญหาความขึ้นต่อกันระหว่างแพกเกจ กรุณาลองใช้ 'apt-get -f install' โดยไม่ระบุแพกเกจ " +"(หรือจะระบุทางแก้ก็ได้)" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " แพกเกจเสมือนแท้ๆ: " +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"ไม่สามารถติดตั้งบางแพกเกจได้ คุณอาจระบุเงื่อนไขการติดตั้งที่เป็นไปไม่ได้\n" +"หรือถ้าคุณกำลังใช้รุ่น unstable ก็เป็นไปได้ว่าแพกเกจที่จำเป็นบางรายการ\n" +"ยังไม่ถูกสร้างขึ้น หรือถูกย้ายออกจาก Incoming" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " แพกเกจเสมือนที่มีแพกเกจจริงเดียว: " +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "แพกเกจมีปัญหา" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " แพกเกจเสมือนผสม: " +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "จะติดตั้งแพกเกจเพิ่มเติมต่อไปนี้:" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " แพกเกจที่ขาดหาย: " +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "แพกเกจที่แนะนำ:" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "จำนวนรุ่นที่แตกต่างกันทั้งหมด: " +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "แพกเกจที่ควรใช้ร่วมกัน:" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "จำนวนคำบรรยายแพกเกจที่แตกต่างกันทั้งหมด: " +#: apt-private/private-install.cc:825 +#, c-format +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "จะข้าม %s เนื่องจากแพกเกจติดตั้งไว้แล้ว และไม่มีการกำหนดให้ปรับรุ่น\n" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "จำนวนการเชื่อมโยงระหว่างแพกเกจทั้งหมด: " +#: apt-private/private-install.cc:829 +#, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "จะข้าม %s เนื่องจากแพกเกจไม่ได้ติดตั้งไว้ และคำสั่งมีเพียงการปรับรุ่นเท่านั้น\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "จำนวนความสัมพันธ์ รุ่น/แฟ้ม ทั้งหมด: " +#: apt-private/private-install.cc:841 +#, c-format +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "ไม่สามารถติดตั้ง %s ซ้ำได้ เนื่องจากไม่สามารถดาวน์โหลดได้\n" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "จำนวนความสัมพันธ์ คำบรรยาย/แฟ้ม ทั้งหมด: " +#: apt-private/private-install.cc:846 +#, c-format +msgid "%s is already the newest version.\n" +msgstr "%s เป็นรุ่นใหม่ล่าสุดอยู่แล้ว\n" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "จำนวนผังการตระเตรียมทั้งหมด: " +#: apt-private/private-install.cc:894 +#, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "เลือกรุ่น '%s' (%s) สำหรับ '%s' แล้ว\n" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "จำนวนสตริงทั้งหมด: " +#: apt-private/private-install.cc:899 +#, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "เลือกรุ่น '%s' (%s) สำหรับ '%s' แล้ว อันเนื่องมาจาก '%s'\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "ขนาดของพื้นที่ความเชื่อมโยงระหว่างแพกเกจทั้งหมด: " +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "แพกเกจ '%s' ไม่ได้ติดตั้งไว้ จึงไม่มีการถอดถอน คุณหมายถึง '%s' หรือเปล่า?\n" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "พื้นที่สำรองทั้งหมด: " +#: apt-private/private-install.cc:947 +#, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "แพกเกจ '%s' ไม่ได้ติดตั้งไว้ จึงไม่มีการถอดถอน\n" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "พื้นที่ที่นับรวมทั้งหมด: " +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "กำลังแสดงรายชื่อ" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 +#: apt-private/private-list.cc:164 #, c-format -msgid "Package file %s is out of sync." -msgstr "ข้อมูลแฟ้ม Package %s ไม่ตรงกับความเป็นจริง" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "มีอีก %i รุ่น กรุณาใช้ตัวเลือก '-a' หากต้องการดูเพิ่ม" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "ไม่พบแพกเกจ" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "กำลังแก้ปัญหาความขึ้นต่อกันระหว่างแพกเกจ..." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "คุณต้องระบุแพตเทิร์นสำหรับค้นหาอย่างน้อยหนึ่งแพตเทิร์น" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " ล้มเหลว" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "คำสั่งนี้ไม่แนะนำให้ใช้แล้ว กรุณาใช้ 'apt-mark showauto' แทน" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "ไม่สามารถแก้ปัญหาความขึ้นต่อกันระหว่างแพกเกจได้" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "แฟ้มแพกเกจ:" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "ไม่สามารถจำกัดรายการปรับรุ่นให้น้อยที่สุดได้" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "ข้อมูลแคชไม่ตรงกับความเป็นจริงแล้ว ไม่สามารถอ้างอิงไขว้ระหว่างแฟ้มแพกเกจ" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " เสร็จแล้ว" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "แพกเกจที่ถูกตรึง:" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "คุณอาจต้องเรียก 'apt-get -f install' เพื่อแก้ปัญหาเหล่านี้" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(ไม่พบ)" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "รายการแพกเกจที่ต้องใช้ไม่ครบ กรุณาลองใช้ตัวเลือก -f" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " ที่ติดตั้งอยู่: " +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "ไม่ทราบ" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " รุ่นที่ติดตั้งได้: " +#: apt-private/private-output.cc:234 +#, c-format +msgid "[installed,upgradable to: %s]" +msgstr "[ติดตั้งอยู่,สามารถปรับรุ่นเป็น: %s]" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ไม่มี)" +#: apt-private/private-output.cc:238 +msgid "[installed,local]" +msgstr "[ติดตั้งอยู่,ในเครื่อง]" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " การตรึงแพกเกจ: " +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "[ติดตั้งอยู่,ถอดถอนอัตโนมัติได้]" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " ตารางรุ่น:" +#: apt-private/private-output.cc:243 +msgid "[installed,automatic]" +msgstr "[ติดตั้งอยู่,อัตโนมัติ]" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s สำหรับ %s คอมไพล์เมื่อ %s %s\n" +#: apt-private/private-output.cc:245 +msgid "[installed]" +msgstr "[ติดตั้งอยู่]" -#: cmdline/apt-cache.cc:1749 -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" -msgstr "" -"วิธีใช้: apt-cache [ตัวเลือก] คำสั่ง\n" -" apt-cache [ตัวเลือก] add file1 [file2 ...]\n" -" apt-cache [ตัวเลือก] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [ตัวเลือก] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache เป็นเครื่องมือระดับล่างสำหรับสืบค้นข้อมูลจากแฟ้มแคชไบนารีของ APT\n" -"\n" -"คำสั่ง:\n" -" gencaches - สร้างทั้งแคชของแพกเกจและแคชของซอร์ส\n" -" showpkg - แสดงข้อมูลทั่วไปของแพกเกจที่กำหนด\n" -" showsrc - แสดงระเบียนข้อมูลซอร์ส\n" -" stats - แสดงสถิติทั่วไป\n" -" dump - แสดงเนื้อหาแคชทั้งหมดในรูปแบบดิบ\n" -" dumpavail - แสดงข้อมูลแพกเกจที่มีทั้งหมดออกทางเอาต์พุตมาตรฐาน\n" -" unmet - แสดงความเชื่อมโยงที่ยังขาดหาย\n" -" search - ค้นรายชื่อแพกเกจด้วยนิพจน์เรกิวลาร์\n" -" show - แสดงข้อมูลของแพกเกจ\n" -" depends - แสดงข้อมูลแพกเกจที่ต้องใช้สำหรับแพกเกจที่กำหนด\n" -" rdepends - แสดงข้อมูลแพกเกจอื่นที่ต้องใช้แพกเกจที่กำหนด\n" -" pkgnames - แสดงรายชื่อแพกเกจทั้งหมด\n" -" dotty - สร้างกราฟความเชื่อมโยงของแพกเกจในรูป GraphViz\n" -" xvcg - สร้างกราฟความเชื่อมโยงของแพกเกจในรูป xvcg\n" -" policy - แสดงค่าตั้งนโยบาย\n" -"\n" -"ตัวเลือก:\n" -" -h แสดงข้อความช่วยเหลือนี้\n" -" -p=? แฟ้มแคชของแพกเกจ\n" -" -s=? แฟ้มแคชของซอร์ส\n" -" -q ปิดแถบแสดงความคืบหน้า\n" -" -i แสดงเฉพาะข้อมูลความเชื่อมโยงที่สำคัญสำหรับคำสั่ง unmet\n" -" -c=? อ่านแฟ้มค่าตั้งนี้\n" -" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" -"กรุณาอ่านข้อมูลเพิ่มเติมจาก manual page apt-cache(8) และ apt.conf(5)\n" +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "[สามารถปรับรุ่นจาก: %s]" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "กรุณาตั้งชื่อแผ่น เช่น 'Debian 5.0.3 Disk 1'" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "[ค่าตั้งตกค้าง]" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "กรุณาใส่แผ่นลงในไดรว์แล้วกด enter" +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "แต่รุ่นที่ติดตั้งไว้คือ %s" -#: cmdline/apt-cdrom.cc:139 +#: apt-private/private-output.cc:437 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "ไม่สามารถเมานท์ '%s' ที่ '%s'" +msgid "but %s is to be installed" +msgstr "แต่รุ่นที่จะติดตั้งคือ %s" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" -"การตรวจซีดีรอมอัตโนมัติไม่พบซีดีรอมใดที่จุดเมานท์ปริยาย\n" -"คุณอาจลองใช้ตัวเลือก --cdrom เพื่อกำหนดจุดเมานท์ของซีดีรอมได้\n" -"อ่านข้อมูลเพิ่มเติมเกี่ยวกับการตรวจซีดีรอมอัตโนมัติและจุดเมานท์ได้จาก 'man apt-cdrom'" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "แต่ไม่สามารถติดตั้งได้" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "ทำเช่นนี้ต่อไปกับแผ่นซีดีที่เหลือในชุด" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "แต่แพกเกจนี้เป็นแพกเกจเสมือน" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "อาร์กิวเมนต์ไม่ได้ระบุเป็นคู่ๆ" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "แต่ได้ติดตั้งไว้" -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -msgstr "" -"วิธีใช้: apt-config [ตัวเลือก] คำสั่ง\n" -"\n" -"apt-config เป็นเครื่องมือง่ายๆ ที่ใช้อ่านแฟ้มค่าตั้ง APT\n" -"\n" -"คำสั่ง:\n" -" shell - โหมดเชลล์\n" -" dump - แสดงค่าตั้ง\n" -"\n" -"ตัวเลือก:\n" -" -h ข้อความช่วยเหลือนี้\n" -" -c=? อ่านแฟ้มค่าตั้งที่กำหนด\n" -" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" - -#: cmdline/apt-get.cc:245 -#, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "ไม่พบแพกเกจสำหรับสถาปัตยกรรม '%s'" - -#: cmdline/apt-get.cc:327 -#, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "ไม่พบแพกเกจ '%s' ที่มีรุ่นเป็น '%s'" - -#: cmdline/apt-get.cc:330 -#, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "ไม่พบแพกเกจ '%s' ที่มีชุดจัดแจกเป็น '%s'" - -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "จะเลือก '%s' เป็นแพกเกจซอร์สแทน '%s'\n" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "แต่แพกเกจนี้จะไม่ถูกติดตั้ง" -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "ไม่พบรุ่น '%s' ของแพกเกจ '%s'" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " หรือ" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "ไม่พบแพกเกจ %s" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "แพกเกจต่อไปนี้ขาดแพกเกจที่ต้องใช้:" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "กำหนด %s ให้เป็นการติดตั้งแบบเลือกเองแล้ว\n" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "จะติดตั้งแพกเกจ *ใหม่* ต่อไปนี้:" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, c-format -msgid "%s set to automatically installed.\n" -msgstr "กำหนด %s ให้เป็นการติดตั้งแบบอัตโนมัติแล้ว\n" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "จะ *ลบ* แพกเกจต่อไปนี้:" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "คำสั่งนี้ไม่แนะนำให้ใช้แล้ว กรุณาใช้ 'apt-mark auto' และ 'apt-mark manual' แทน" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "จะคงรุ่นแพกเกจต่อไปนี้:" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "เกิดข้อผิดพลาดภายใน: กลไกการแก้ปัญหาทำความเสียหาย" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "จะปรับรุ่นแพกเกจต่อไปนี้ขึ้น:" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "ไม่สามารถล็อคไดเรกทอรีดาวน์โหลด" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "จะปรับรุ่นแพกเกจต่อไปนี้ *ลง*:" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "ต้องระบุแพกเกจอย่างน้อยหนึ่งแพกเกจที่จะดาวน์โหลดซอร์สโค้ด" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "จะเปลี่ยนแปลงรายการคงรุ่นแพกเกจต่อไปนี้:" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/private-output.cc:668 #, c-format -msgid "Unable to find a source package for %s" -msgstr "ไม่พบแพกเกจซอร์สโค้ดสำหรับ %s" +msgid "%s (due to %s) " +msgstr "%s (เนื่องจาก %s) " -#: cmdline/apt-get.cc:786 -#, c-format +#: apt-private/private-output.cc:676 msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"ข้อสังเกต: การจัดทำแพกเกจ '%s' พัฒนาผ่านระบบควบคุมรุ่น '%s' อยู่ที่:\n" -"%s\n" +"*คำเตือน*: แพกเกจที่จำเป็นต่อไปนี้จะถูกถอดถอน\n" +"คุณ *ไม่ควร* ทำเช่นนี้ นอกจากคุณเข้าใจสิ่งที่จะทำ!" -#: cmdline/apt-get.cc:791 +#: apt-private/private-output.cc:707 #, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" -msgstr "" -"กรุณาใช้:\n" -"bzr branch %s\n" -"เพื่อดึงรุ่นล่าสุด (ที่อาจยังไม่ปล่อยออกมา) ของตัวแพกเกจ\n" +msgid "%lu upgraded, %lu newly installed, " +msgstr "ปรับรุ่นขึ้น %lu, ติดตั้งใหม่ %lu, " -#: cmdline/apt-get.cc:843 +#: apt-private/private-output.cc:711 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "จะข้ามแฟ้ม '%s' ที่ดาวน์โหลดไว้แล้ว\n" +msgid "%lu reinstalled, " +msgstr "ติดตั้งซ้ำ %lu, " -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-private/private-output.cc:713 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "ไม่สามารถคำนวณพื้นที่ว่างใน %s" +msgid "%lu downgraded, " +msgstr "ปรับรุ่นลง %lu, " -#: cmdline/apt-get.cc:882 +#: apt-private/private-output.cc:715 #, c-format -msgid "You don't have enough free space in %s" -msgstr "คุณมีพื้นที่ว่างเหลือไม่พอใน %s" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "ถอดถอน %lu และไม่ปรับรุ่น %lu\n" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: apt-private/private-output.cc:719 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "ต้องดาวน์โหลดซอร์สโค้ด %sB/%sB\n" +msgid "%lu not fully installed or removed.\n" +msgstr "ติดตั้งหรือถอดถอนไม่ครบ %lu\n" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "ต้องดาวน์โหลดซอร์สโค้ด %sB\n" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[Y/n]" -#: cmdline/apt-get.cc:902 -#, c-format -msgid "Fetch source %s\n" -msgstr "ดาวน์โหลดซอร์ส %s\n" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[y/N]" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "ไม่สามารถดาวน์โหลดบางแฟ้ม" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "Y" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "ดาวน์โหลดสำเร็จแล้ว และอยู่ในโหมดดาวน์โหลดอย่างเดียว" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" -#: cmdline/apt-get.cc:950 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "จะข้ามการแตกซอร์สของซอร์สที่แตกไว้แล้วใน %s\n" +msgid "Regex compilation error - %s" +msgstr "คอมไพล์นิพจน์เรกิวลาร์ไม่สำเร็จ - %s" -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "คำสั่งแตกแฟ้ม '%s' ล้มเหลว\n" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "คำสั่ง update ไม่รับอาร์กิวเมนต์เพิ่ม" -#: cmdline/apt-get.cc:963 +#: apt-private/private-update.cc:90 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "กรุณาตรวจสอบว่าได้ติดตั้งแพกเกจ 'dpkg-dev' แล้ว\n" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "คำสั่ง build '%s' ล้มเหลว\n" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "โพรเซสลูกล้มเหลว" +#: apt-private/private-show.cc:156 +#, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "มีอีก %i ระเบียน กรุณาใช้ตัวเลือก '-a' หากต้องการดูเพิ่ม" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "ต้องระบุแพกเกจอย่างน้อยหนึ่งแพกเกจที่จะตรวจสอบสิ่งที่ต้องการสำหรับการ build" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "ไม่ใช่แพกเกจจริง (เสมือน)" -#: cmdline/apt-get.cc:1054 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -"ไม่มีข้อมูลสถาปัตยกรรมสำหรับ %s ดูวิธีตั้งค่าที่หัวข้อ APT::Architectures ของ apt.conf(5)" +"หมายเหตุ: นี่เป็นเพียงการจำลองการทำงานเท่านั้น!\n" +" การทำงานจริงของ apt-get ต้องอาศัยสิทธิ์ผู้ดูแลระบบ\n" +" อย่าลืมด้วยว่าการล็อคก็ไม่ทำงานเช่นกัน\n" +" ดังนั้น อย่าถือผลลัพธ์นี้ว่าตรงกับสภาพความเป็นจริงของระบบ!" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "ไม่สามารถอ่านข้อมูลสิ่งที่ต้องการสำหรับการ build ของ %s" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "*คำเตือน*: แพกเกจต่อไปนี้ไม่สามารถยืนยันแหล่งต้นตอได้!" -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s ไม่ต้องการสิ่งใดสำหรับ build\n" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "จะข้ามการเตือนเกี่ยวกับการยืนยันแหล่งต้นตอ\n" -#: cmdline/apt-get.cc:1271 +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "มีบางแพกเกจไม่สามารถยืนยันแหล่งต้นตอได้" + +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "จะติดตั้งแพกเกจเหล่านี้โดยไม่ตรวจสอบหรือไม่?" + +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะไม่สามารถใช้ %s กับแพกเกจ '%s' ได้" +msgid "Failed to fetch %s %s\n" +msgstr "ไม่สามารถดาวน์โหลด %s %s\n" -#: cmdline/apt-get.cc:1289 +#: apt-private/private-sources.cc:58 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะไม่พบแพกเกจ %s" +msgid "Failed to parse %s. Edit again? " +msgstr "แจง %s ไม่สำเร็จ จะแก้ไขอีกครั้งหรือไม่? " -#: cmdline/apt-get.cc:1312 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้: แพกเกจ %s ที่ติดตั้งไว้ใหม่เกินไป" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "แฟ้ม '%s' ของคุณมีการเปลี่ยนแปลง กรุณาเรียก 'apt-get update'" + +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "ค้นทั่วทั้งเนื้อความ" + +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "กำลังคำนวณการปรับรุ่น... " + +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "เสร็จแล้ว" + +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "เจอ " + +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "ดึง:" + +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "ข้าม " -#: cmdline/apt-get.cc:1351 +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "ปัญหา " + +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "ดาวน์โหลด %sB ใน %s (%sB/s)\n" + +#: apt-private/acqprogress.cc:236 +#, c-format +msgid " [Working]" +msgstr " [กำลังทำงาน]" + +#: apt-private/acqprogress.cc:297 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะไม่มีแพกเกจ %s " -"รุ่นที่จะสอดคล้องกับความต้องการรุ่นของแพกเกจได้" +"เปลี่ยนแผ่น: กรุณาใส่แผ่นชื่อ\n" +" '%s'\n" +"ลงในไดรว์ %s แล้วกด enter\n" -#: cmdline/apt-get.cc:1357 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะ %s ไม่มีรุ่นที่ติดตั้งได้" +msgid "Unable to read %s" +msgstr "ไม่สามารถอ่าน %s" -#: cmdline/apt-get.cc:1380 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้: %s" +msgid "Unable to change to %s" +msgstr "ไม่สามารถเปลี่ยนไดเรกทอรีไปยัง %s" -#: cmdline/apt-get.cc:1395 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "ไม่สามารถติดตั้งสิ่งที่จำเป็นสำหรับการ build ของ %s ได้" +msgid "No mirror file '%s' found " +msgstr "ไม่พบแฟ้มแหล่งสำเนา '%s'" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "ติดตั้งสิ่งที่จำเป็นสำหรับการ build ไม่สำเร็จ" +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 +#, c-format +msgid "Can not read mirror file '%s'" +msgstr "ไม่สามารถอ่านแฟ้มแหล่งสำเนา '%s'" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: methods/mirror.cc:315 #, c-format -msgid "Changelog for %s (%s)" -msgstr "ปูมการแก้ไขสำหรับ %s (%s)" +msgid "No entry found in mirror file '%s'" +msgstr "ไม่พบรายการในแฟ้มแหล่งสำเนา '%s'" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "มอดูลที่รองรับ:" +#: methods/mirror.cc:445 +#, c-format +msgid "[Mirror: %s]" +msgstr "[แหล่งสำเนา: %s]" -#: cmdline/apt-get.cc:1632 -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -msgstr "" -"วิธีใช้: apt-get [ตัวเลือก] คำสั่ง\n" -" apt-get [ตัวเลือก] install|remove pkg1 [pkg2 ...]\n" -" apt-get [ตัวเลือก] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get เป็นคำสั่งง่ายๆ สำหรับดาวน์โหลดและติดตั้งแพกเกจ คำสั่งที่ใช้บ่อยที่สุดก็คือ\n" -"update และ install\n" -"\n" -"คำสั่ง:\n" -" update - ดาวน์โหลดรายชื่อแพกเกจชุดใหม่\n" -" upgrade - ปรับรุ่นแพกเกจต่างๆ ขึ้น\n" -" install - ติดตั้งแพกเกจใหม่ (pkg อยู่ในรูปเช่น libc6 ไม่ใช่ libc6.deb)\n" -" remove - ถอดถอนแพกเกจ\n" -" autoremove - ถอดถอนแพกเกจที่ไม่ใช้แล้วโดยอัตโนมัติ\n" -" purge - ถอดถอนแพกเกจพร้อมลบค่าตั้งทั้งหมด\n" -" source - ดาวน์โหลดซอร์สโค้ดของแพกเกจ\n" -" build-dep - ติดตั้งสิ่งที่จำเป็นสำหรับการประกอบสร้างแพกเกจซอร์สโค้ด\n" -" dist-upgrade - ปรับรุ่นขึ้นแบบข้ามรุ่นจัดแจก ดู apt-get(8)\n" -" dselect-upgrade - ทำตามสิ่งที่เลือกโดย dselect\n" -" clean - ลบแฟ้มแพกเกจที่ดาวน์โหลดมา\n" -" autoclean - ลบแฟ้มแพกเกจเก่าที่ดาวน์โหลดมา\n" -" check - ตรวจสอบว่าไม่มีความเชื่อมโยงที่เสียระหว่างแพกเกจ\n" -" changelog - ดาวน์โหลดและแสดงปูมการแก้ไขของแพกเกจที่กำหนด\n" -" download - ดาวน์โหลดแพกเกจไบนารีลงในไดเรกทอรีปัจจุบัน\n" -"\n" -"ตัวเลือก:\n" -" -h แสดงข้อความช่วยเหลือนี้\n" -" -q แสดงผลลัพธ์แบบบันทึกลงแฟ้มได้ - ไม่ต้องแสดงความคืบหน้า\n" -" -qq ไม่ต้องแสดงผลลัพธ์ ยกเว้นข้อผิดพลาด\n" -" -d ดาวน์โหลดอย่างเดียว - *ไม่ต้อง* ติดตั้งหรือแตกแพกเกจ\n" -" -s ไม่ต้องทำจริง เพียงจำลองลำดับการทำงานเท่านั้น\n" -" -y ตอบ Yes สำหรับทุกคำถามโดยไม่ต้องถาม\n" -" -f พยายามแก้ไขระบบในกรณีที่มีปัญหาความขึ้นต่อกันระหว่างแพกเกจ\n" -" -m พยายามดำเนินการต่อถ้าหาแฟ้มแพกเกจไม่พบ\n" -" -u แสดงรายชื่อของแพกเกจที่จะปรับรุ่นทั้งหมดด้วย\n" -" -b build แพกเกจซอร์สหลังจากดาวน์โหลดมาแล้วด้วย\n" -" -V แสดงเลขรุ่นแบบยาวของโปรแกรม\n" -" -c=? อ่านแฟ้มค่าตั้งนี้\n" -" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" -"กรุณาอ่านข้อมูลและตัวเลือกเพิ่มเติมจาก manual page apt-get(8), sources.list(5)\n" -"และ apt.conf(5)\n" -" APT นี้มีพลังของ Super Cow\n" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "ไม่สามารถสร้างไปป์ IPC ไปยังโพรเซสย่อย" -#: cmdline/apt-helper.cc:35 -msgid "Must specify at least one pair url/filename" -msgstr "ต้องระบุคู่ URL, ชื่อแฟ้ม อย่างน้อยหนึ่งคู่" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "การเชื่อมต่อถูกปิดก่อนเวลาอันควร" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "ดาวน์โหลดไม่สำเร็จ" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "ค่าตั้งปริยายผิดพลาด!" -#: cmdline/apt-helper.cc:66 +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "กด enter เพื่อดำเนินการต่อ" + +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "คุณต้องการจะลบแฟ้ม .deb ต่างๆ ที่ได้ดาวน์โหลดมาก่อนหน้านี้หรือไม่?" + +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "เกิดข้อผิดพลาดขณะแตกแพกเกจ โปรแกรมจะตั้งค่าแพกเกจที่ติดตั้งแล้ว" + +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "อาจทำให้เกิดข้อความแจ้งข้อผิดพลาดซ้ำ หรือข้อผิดพลาดเนื่องจากแพกเกจที่ต้องใช้ขาดหาย" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "ซึ่งไม่มีปัญหาอะไร มีเฉพาะข้อผิดพลาดก่อนหน้าข้อความนี้เท่านั้นที่สำคัญ" + +#: dselect/install:105 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" -"วิธีใช้: apt-helper [ตัวเลือก] คำสั่ง\n" -" apt-helper [ตัวเลือก] download-file URI พาธปลายทาง\n" -"\n" -"apt-helper เป็นโปรแกรมช่วยเหลือภายในของ apt\n" -"\n" -"คำสั่ง:\n" -" download-file - ดาวน์โหลด URI ที่กำหนดลงในพาธปลายทาง\n" -"\n" -" โปรแกรมช่วยเหลือของ APT นี้มีพลัง Super Meep\n" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "กรุณาแก้ปัญหาเหล่านั้น แล้วเรียกติดตั้งใหม่อีกครั้ง" -#: cmdline/apt-mark.cc:68 +#: dselect/update:30 +msgid "Merging available information" +msgstr "กำลังผสานรายชื่อของแพกเกจที่มี" + +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode ถูกเรียกใช้กับโหนดที่ยังลิงก์อยู่" + +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "หาสมาชิกในตารางแฮชไม่สำเร็จ!" + +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "จองเนื้อที่สำหรับการเบนแฟ้มไม่สำเร็จ" + +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "ข้อผิดพลาดภายในที่ AddDiversion" + +#: apt-inst/filelist.cc:477 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s ไม่สามารถทำเครื่องหมายได้ เพราะไม่ได้ติดตั้งไว้\n" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "พยายามเขียนทับการเบนแฟ้ม: %s -> %s กับ %s/%s" -#: cmdline/apt-mark.cc:74 +#: apt-inst/filelist.cc:506 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s ถูกกำหนดให้เป็นการติดตั้งแบบเลือกเองอยู่ก่อนแล้ว\n" +msgid "Double add of diversion %s -> %s" +msgstr "เพิ่มการเบนแฟ้ม %s -> %s ซ้ำสอง" -#: cmdline/apt-mark.cc:76 +#: apt-inst/filelist.cc:549 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s ถูกกำหนดให้เป็นการติดตั้งแบบอัตโนมัติอยู่ก่อนแล้ว\n" +msgid "Duplicate conf file %s/%s" +msgstr "แฟ้มค่าตั้ง %s/%s ซ้ำ" -#: cmdline/apt-mark.cc:241 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s ถูกกำหนดให้คงรุ่นอยู่ก่อนแล้ว\n" +msgid "The path %s is too long" +msgstr "พาธ %s ยาวเกินไป" -#: cmdline/apt-mark.cc:243 +#: apt-inst/extract.cc:132 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s ไม่ได้คงรุ่นอยู่ก่อนแล้ว\n" +msgid "Unpacking %s more than once" +msgstr "พยายามแตกแพกเกจ %s มากกว่าหนึ่งครั้ง" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-inst/extract.cc:142 #, c-format -msgid "%s set on hold.\n" -msgstr "กำหนด %s ให้คงรุ่นแล้ว\n" +msgid "The directory %s is diverted" +msgstr "ไดเรกทอรี %s ถูก divert" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-inst/extract.cc:152 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "ยกเลิกการคงรุ่นของ %s แล้ว\n" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "แพกเกจนี้พยายามเขียนลงปลายทางของการเบนแฟ้ม %s/%s" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "เรียกทำงาน dpkg ไม่สำเร็จ คุณเป็น root หรือเปล่า?" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "พาธของการเบนแฟ้มยาวเกินไป" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" -"วิธีใช้: apt-mark [ตัวเลือก] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark เป็นเครื่องมือบรรทัดคำสั่งอย่างง่ายสำหรับทำเครื่องหมายแพกเกจ\n" -"ว่าเป็นการติดตั้งแบบเลือกเองหรือแบบอัตโนมัติ และสามารถแสดงการทำเครื่องหมายต่างๆ ได้ด้วย\n" -"\n" -"คำสั่ง:\n" -" auto - ทำเครื่องหมายแพกเกจที่กำหนดให้เป็นการติดตั้งแบบอัตโนมัติ\n" -" manual - ทำเครื่องหมายแพกเกจที่กำหนดให้เป็นการติดตั้งแบบเลือกเอง\n" -" hold - ทำเครื่องหมายแพกเกจที่กำหนดให้เป็นการคงรุ่น\n" -" unhold - ลบการทำเครื่องหมายการคงรุ่นจากแพกเกจที่กำหนด\n" -" showauto - แสดงรายชื่อของแพกเกจที่ติดตั้งแบบอัตโนมัติ\n" -" showmanual - แสดงรายชื่อของแพกเกจที่ติดตั้งแบบเลือกเอง\n" -" showhold - แสดงรายชื่อของแพกเกจที่คงรุ่นอยู่\n" -"\n" -"ตัวเลือก:\n" -" -h แสดงข้อความช่วยเหลือนี้\n" -" -q แสดงผลลัพธ์แบบบันทึกลงแฟ้มได้ - ไม่ต้องแสดงความคืบหน้า\n" -" -qq ไม่ต้องแสดงผลลัพธ์ ยกเว้นข้อผิดพลาด\n" -" -s ไม่ต้องทำจริง เพียงจำลองลำดับการทำงานเท่านั้น\n" -" -f อ่าน/เขียน เครื่องหมาย อัตโนมัติ/เลือกเอง ในแฟ้มที่กำหนด\n" -" -c=? อ่านแฟ้มค่าตั้งนี้\n" -" -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" -"กรุณาอ่านข้อมูลเพิ่มเติมจาก manual page apt-mark(8) และ apt.conf(5)" +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 +#, c-format +msgid "Failed to stat %s" +msgstr "stat %s ไม่สำเร็จ" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" -"วิธีใช้: apt [ตัวเลือก] คำสั่ง\n" -"\n" -"บรรทัดคำสั่งสำหรับ apt\n" -"คำสั่งพื้นฐาน:\n" -" list - แสดงรายชื่อแพกเกจที่มีชื่อตรงกับรูปแบบที่กำหนด\n" -" search - ค้นหาในคำบรรยายแพกเกจ\n" -" show - แสดงรายละเอียดของแพกเกจ\n" -"\n" -" update - ปรับข้อมูลรายชื่อของแพกเกจที่มี\n" -"\n" -" install - ติดตั้งแพกเกจ\n" -" remove - ถอดถอนแพกเกจ\n" -"\n" -" upgrade - ปรับรุ่นระบบโดยติดตั้ง/ปรับรุ่นแพกเกจต่างๆ\n" -" full-upgrade - ปรับรุ่นระบบโดยถอดถอน/ติดตั้ง/ปรับรุ่นแพกเกจต่างๆ\n" -"\n" -" edit-sources - แก้ไขแฟ้มข้อมูลแหล่งแพกเกจ\n" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "ไม่สามารถเปลี่ยนชื่อ %s ไปเป็น %s" + +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "ไดเรกทอรี %s กำลังจะถูกแทนที่ด้วยสิ่งที่ไม่ใช่ไดเรกทอรี" + +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "หาโหนดใน bucket ของแฮชไม่พบ" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "พาธยาวเกินไป" + +#: apt-inst/extract.cc:421 +#, c-format +msgid "Overwrite package match with no version for %s" +msgstr "พบแพกเกจที่เขียนทับโดยไม่มีข้อมูลรุ่นสำหรับ %s" + +#: apt-inst/extract.cc:438 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" +msgstr "แฟ้ม %s/%s เขียนทับแฟ้มในแพกเกจ %s" + +#: apt-inst/extract.cc:498 +#, c-format +msgid "Unable to stat %s" +msgstr "ไม่สามารถ stat %s" + +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, c-format +msgid "Failed to write file %s" +msgstr "ไม่สามารถเขียนแฟ้ม %s" + +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "ไม่สามารถปิดแฟ้ม %s" + +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "แฟ้มนี้ไม่ใช่แพกเกจ DEB ที่ใช้การได้ ขาดสมาชิก '%s'" + +#: apt-inst/deb/debfile.cc:132 +#, c-format +msgid "Internal error, could not locate member %s" +msgstr "ข้อผิดพลาดภายใน: ไม่พบสมาชิก %s" + +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "ไม่สามารถแจงแฟ้มควบคุมได้" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "เอกลักษณ์ของแฟ้มจัดเก็บไม่ถูกต้อง" -#: methods/cdrom.cc:203 +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลส่วนหัวของสมาชิกแฟ้มจัดเก็บ" + +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "ไม่สามารถอ่านฐานข้อมูลซีดีรอม %s" +msgid "Invalid archive member header %s" +msgstr "ข้อมูลส่วนหัว %s ของสมาชิกแฟ้มจัดเก็บไม่ถูกต้อง" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"กรุณาใช้ apt-cdrom เพื่อให้ APT รู้จักซีดีรอมนี้ apt-get update ไม่สามารถใช้เพิ่มซีดีรอมใหม่ได้" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "ข้อมูลส่วนหัวของสมาชิกแฟ้มจัดเก็บไม่ถูกต้อง" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "ซีดีรอมผิดแผ่น" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "แฟ้มจัดเก็บสั้นเกินไป" -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "ไม่สามารถเลิกเมานท์ซีดีรอมใน %s แผ่นอาจกำลังถูกใช้งานอยู่" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "อ่านข้อมูลส่วนหัวของแฟ้มจัดเก็บไม่สำเร็จ" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "ไม่พบแผ่น" +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "สร้างไปป์ไม่สำเร็จ" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "ไม่พบแฟ้ม" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "เรียก gzip ไม่สำเร็จ" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "stat ไม่สำเร็จ" +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "แฟ้มจัดเก็บเสียหาย" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "กำหนดเวลาแก้ไขไม่สำเร็จ" +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "checksum ของแฟ้ม tar ผิดพลาด แฟ้มจัดเก็บเสียหาย" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI ไม่ถูกต้อง URI ของแฟ้มในเครื่องต้องขึ้นต้นด้วย //" +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "พบชนิด %u ของข้อมูลส่วนหัว TAR ที่ไม่รู้จัก ที่สมาชิก %s" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "เข้าระบบ" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "ความคืบหน้า: [%3i%%]" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "ไม่สามารถอ่านชื่อของอีกฝ่ายได้" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "กำลังเรียก dpkg" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "ไม่สามารถอ่านชื่อของเครื่องนี้ได้" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "ไม่รองรับระบบแพกเกจ '%s'" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "ไม่สามารถระบุชนิดของระบบแพกเกจที่เหมาะสมได้" + +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "เซิร์ฟเวอร์ปฏิเสธการเชื่อมต่อโดยรายงานว่า: %s" +msgid "Wrote %i records.\n" +msgstr "เขียนแล้ว %i ระเบียน\n" -#: methods/ftp.cc:225 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" +msgid "Wrote %i records with %i missing files.\n" +msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มขาดหาย %i แฟ้ม\n" -#: methods/ftp.cc:232 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" +msgid "Wrote %i records with %i mismatched files\n" +msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มผิดขนาด %i แฟ้ม\n" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "มีการระบุพร็อกซี แต่ไม่มีสคริปต์สำหรับเข้าระบบ ค่า Acquire::ftp:ProxyLogin ว่างเปล่า" +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มขาดหาย %i แฟ้ม และแฟ้มผิดขนาด %i แฟ้ม\n" -#: methods/ftp.cc:280 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "คำสั่งสคริปต์เข้าระบบ '%s' ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" +msgid "Can't find authentication record for: %s" +msgstr "ไม่พบระเบียนยืนยันความแท้สำหรับ: %s" -#: methods/ftp.cc:306 +#: apt-pkg/indexcopy.cc:521 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" +msgid "Hash mismatch for: %s" +msgstr "แฮชไม่ตรงกันสำหรับ: %s" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "หมดเวลารอเชื่อมต่อ" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "ไม่สามารถแจงหรือเปิดรายชื่อแพกเกจหรือสถานะแพกเกจได้" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "เซิร์ฟเวอร์ปิดการเชื่อมต่อ" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "คุณอาจเรียก `apt-get update' เพื่อแก้ปัญหาเหล่านี้ได้" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "คำตอบท่วมบัฟเฟอร์" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "ไม่สามารถอ่านรายชื่อแหล่งแพกเกจได้" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "มีความเสียหายของโพรโทคอล" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "แคชของแพกเกจว่างเปล่า" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "ไม่สามารถสร้างซ็อกเก็ต" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "แฟ้มแคชของแพกเกจเสียหาย" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "ไม่สามารถเชื่อมต่อซ็อกเก็ตข้อมูล เนื่องจากหมดเวลาคอย" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "แฟ้มแคชของแพกเกจเป็นคนละรุ่นกัน" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "ล้มเหลว" +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "แฟ้มแคชของแพกเกจเสียหาย แฟ้มมีขนาดเล็กกว่าที่ควรจะเป็น" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "ไม่สามารถเชื่อมต่อซ็อกเกตแบบ passive" +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "APT รุ่นนี้ไม่รองรับระบบนับรุ่นแบบ '%s'" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo ไม่สามารถนำซ็อกเก็ตที่รอรับการเชื่อมต่อมาใช้" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "แคชของแพกเกจถูกสร้างมาสำหรับสถาปัตยกรรมอื่น" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "ไม่สามารถ bind ซ็อกเก็ต" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "ต้องใช้" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "ไม่สามารถ listen ที่ซ็อกเก็ต" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "ต้องใช้ขณะติดตั้ง" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "ไม่สามารถระบุชื่อซ็อกเก็ต" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "แนะนำ" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "ไม่สามารถส่งคำสั่ง PORT" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "ควรใช้ร่วมกับ" -#: methods/ftp.cc:802 +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "ขัดแย้งกับ" + +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "แทนที่" + +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "ใช้แทน" + +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "ทำให้พัง" + +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "เพิ่มความสามารถ" + +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "สำคัญ" + +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "จำเป็น" + +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "มาตรฐาน" + +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "ตัวเลือก" + +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "ส่วนเสริม" + +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "ไม่รู้จักตระกูลที่อยู่ %u (AF_*)" +msgid "The method driver %s could not be found." +msgstr "ไม่พบไดรเวอร์สำหรับวิธีการ %s" -#: methods/ftp.cc:811 +#: apt-pkg/acquire-worker.cc:118 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" - -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "หมดเวลารอเชื่อมต่อซ็อกเก็ตข้อมูล" +msgid "Is the package %s installed?" +msgstr "ได้ติดตั้งแพกเกจ %s ไว้หรือไม่?" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "ไม่สามารถรับการเชื่อมต่อ" +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "ไม่สามารถเรียกทำงานวิธีการ %s" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "เกิดปัญหาขณะคำนวณค่าแฮชของแฟ้ม" +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "กรุณาใส่แผ่นชื่อ: '%s' ลงในไดรว์ '%s' แล้วกด enter" -#: methods/ftp.cc:890 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "ไม่สามารถดาวน์โหลดแฟ้ม เซิร์ฟเวอร์ตอบว่า: '%s'" +msgid "Index file type '%s' is not supported" +msgstr "ไม่รองรับแฟ้มดัชนีชนิด '%s'" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "หมดเวลาคอยที่ซ็อกเก็ตข้อมูล" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "กำลังสร้างโครงสร้างลำดับความสัมพันธ์" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "ถ่ายโอนข้อมูลไม่สำเร็จ เซิร์ฟเวอร์ตอบว่า '%s'" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "รุ่นแพกเกจที่มี" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "สอบถาม" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "สร้างลำดับความสัมพันธ์" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "ไม่สามารถเรียก " +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "กำลังอ่านข้อมูลสถานะ" -#: methods/connect.cc:76 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Connecting to %s (%s)" -msgstr "เชื่อมต่อไปยัง %s (%s)" +msgid "Failed to open StateFile %s" +msgstr "ไม่สามารถเปิดแฟ้มสถานะ %s" -#: methods/connect.cc:87 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Failed to write temporary StateFile %s" +msgstr "ไม่สามารถเขียนแฟ้มสถานะชั่วคราว %s" -#: methods/connect.cc:94 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "ไม่สามารถสร้างซ็อกเก็ตสำหรับ %s (f=%u t=%u p=%u)" +msgid "rename failed, %s (%s -> %s)." +msgstr "เปลี่ยนชื่อไม่สำเร็จ: %s (%s -> %s)" -#: methods/connect.cc:100 -#, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "ไม่สามารถเริ่มการเชื่อมต่อไปยัง %s:%s (%s)" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "ผลรวมแฮชไม่ตรงกัน" -#: methods/connect.cc:108 -#, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "ไม่สามารถเชื่อมต่อไปยัง %s:%s (%s) เนื่องจากหมดเวลาคอย" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "ขนาดไม่ตรงกัน" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "ไม่สามารถเชื่อมต่อไปยัง %s:%s (%s)" +#: apt-pkg/acquire-item.cc:173 +msgid "Invalid file format" +msgstr "รูปแบบของแฟ้มไม่ถูกต้อง" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Connecting to %s" -msgstr "เชื่อมต่อไปยัง %s" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" +"ไม่พบรายการ '%s' ที่ต้องการในแฟ้ม Release (รายการ sources.list ไม่ถูกต้อง " +"หรือแฟ้มผิดรูปแบบ)" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/acquire-item.cc:1589 #, c-format -msgid "Could not resolve '%s'" -msgstr "ไม่สามารถเปิดหาที่อยู่ '%s'" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "ไม่พบผลรวมแฮชสำหรับ '%s' ในแฟ้ม Release" -#: methods/connect.cc:205 -#, c-format -msgid "Temporary failure resolving '%s'" -msgstr "เกิดความล้มเหลวชั่วคราวขณะเปิดหาที่อยู่ '%s'" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "ไม่มีกุญแจสาธารณะสำหรับกุญแจหมายเลขต่อไปนี้:\n" -#: methods/connect.cc:209 +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "System error resolving '%s:%s'" -msgstr "เกิดข้อผิดพลาดในระบบขณะเปิดหาที่อยู่ '%s:%s'" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" +"แฟ้ม Release สำหรับ %s หมดอายุแล้ว (ตั้งแต่ %s ที่แล้ว) จะไม่ใช้รายการปรับรุ่นต่างๆ " +"ของคลังแพกเกจนี้" -#: methods/connect.cc:211 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "เกิดปัญหาร้ายแรงบางอย่างขณะเปิดหาที่อยู่ '%s:%s' (%i - %s)" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "ชุดจัดแจกขัดแย้งกัน: %s (ต้องการ %s แต่พบ %s)" -#: methods/connect.cc:258 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "ไม่สามารถเชื่อมต่อไปยัง %s:%s:" - -#: methods/gpgv.cc:168 msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "ข้อผิดพลาดภายใน: ลายเซ็นใช้การได้ แต่ไม่สามารถระบุลายนิ้วมือของกุญแจ?!" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "พบลายเซ็นที่ใช้การไม่ได้อย่างน้อยหนึ่งรายการ" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"เกิดข้อผิดพลาดขณะตรวจสอบลายเซ็น จะไม่ปรับข้อมูลคลังแพกเกจนี้ และจะใช้แฟ้มดัชนีเก่า " +"ข้อผิดพลาดจาก GPG: %s: %s\n" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "ไม่สามารถเรียก 'gpgv' เพื่อตรวจสอบลายเซ็น (ได้ติดตั้ง gpgv ไว้หรือไม่?)" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "ข้อผิดพลาดจาก GPG: %s: %s" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1859 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" -msgstr "" -"แฟ้มที่เซ็นกำกับครอบข้อความมีเนื้อหาไม่ถูกต้อง ได้รับผลลัพธ์ " -"'%s' (เครือข่ายต้องยืนยันตัวบุคคลหรือไม่?)" - -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "เกิดข้อผิดพลาดไม่ทราบสาเหตุขณะเรียก gpgv" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "ไม่พบแฟ้มสำหรับแพกเกจ %s คุณอาจต้องแก้ปัญหาแพกเกจนี้เอง (ไม่มี arch)" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "ลายเซ็นต่อไปนี้ใช้การไม่ได้:\n" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "ไม่พบแหล่งที่จะดาวน์โหลดรุ่น '%s' ของ '%s' ได้" -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1983 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "ลายเซ็นต่อไปนี้ไม่สามารถตรวจสอบได้ เพราะไม่มีกุญแจสาธารณะ:\n" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "แฟ้มดัชนีแพกเกจเสียหาย ไม่มีข้อมูล Filename: (ชื่อแฟ้ม) สำหรับแพกเกจ %s" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "แฟ้มว่างเปล่าไม่สามารถเป็นแฟ้มจัดเก็บที่ใช้การได้" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "ไม่รองรับแฟ้มดัชนีชนิด '%s'" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้ม" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "ไม่สามารถ stat %s" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลจากเซิร์ฟเวอร์ ปลายทางอีกด้านหนึ่งปิดการเชื่อมต่อ" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "แคชมีระบบนับรุ่นที่ไม่ตรงกัน" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลจากเซิร์ฟเวอร์" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (%s%d)" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้ม" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนชื่อแพกเกจที่ APT สามารถรองรับได้แล้ว" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "select ไม่สำเร็จ" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนรุ่นแพกเกจที่ APT สามารถรองรับได้แล้ว" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "หมดเวลารอเชื่อมต่อ" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนคำบรรยายแพกเกจที่ APT สามารถรองรับได้แล้ว" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้มผลลัพธ์" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนความสัมพันธ์ระหว่างแพกเกจที่ APT สามารถรองรับได้แล้ว" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "รอหัวข้อมูล" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "ไม่พบแพกเกจ %s %s ขณะประมวลผลความขึ้นต่อแฟ้ม" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "บรรทัดข้อมูลส่วนหัวผิดพลาด" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "ไม่สามารถ stat รายการแพกเกจซอร์ส %s" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัวตอบมาไม่ถูกต้อง" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "กำลังอ่านรายชื่อแพกเกจ" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัว Content-Length มาไม่ถูกต้อง" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "กำลังเก็บข้อมูลแฟ้มที่ตระเตรียมให้" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัว Content-Range มาไม่ถูกต้อง" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "ไม่สามารถเขียนลงแฟ้ม %s" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "การสนับสนุน Content-Range ที่เซิร์ฟเวอร์ HTTP ผิดพลาด" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "เกิดข้อผิดพลาด IO ขณะบันทึกแคชของซอร์ส" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "พบรูปแบบวันที่ที่ไม่รู้จัก" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "บล็อคผู้ผลิต %s ไม่มีลายนิ้วมือ" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "ข้อมูลส่วนหัวผิดพลาด" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "ไม่มีไดเรกทอรีรายชื่อแพกเกจ %spartial" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "เชื่อมต่อไม่สำเร็จ" +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "ไม่มีไดเรกทอรีแพกเกจ %spartial" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "ข้อผิดพลาดภายใน" +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "ไม่สามารถล็อคไดเรกทอรี %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "กำลังคำนวณการปรับรุ่น... " +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "กำลังดาวน์โหลดแฟ้มที่ %li จาก %li (เหลืออีก %s)" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "เสร็จแล้ว" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "กำลังดาวน์โหลดแฟ้มที่ %li จาก %li" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "กำลังเรียงลำดับ" +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "ดาวน์โหลดแฟ้มดัชนีบางแฟ้มไม่สำเร็จ จะข้ามรายการดังกล่าวไป หรือใช้ข้อมูลเก่าแทน" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "กำลังแสดงรายชื่อ" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "คุณต้องเพิ่ม URI ชนิด 'source' ใน sources.list ของคุณด้วย" -#: apt-private/private-list.cc:164 +#: apt-pkg/policy.cc:83 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "มีอีก %i รุ่น กรุณาใช้ตัวเลือก '-a' หากต้องการดูเพิ่ม" +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "ค่า '%s' ไม่สามารถใช้กับ APT::Default-Release ได้ เนื่องจากรุ่นดังกล่าวไม่มีในแหล่ง" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "กำลังแก้ปัญหาความขึ้นต่อกันระหว่างแพกเกจ..." +#: apt-pkg/policy.cc:422 +#, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "ระเบียนผิดรูปแบบในแฟ้มค่าปรับแต่ง %s: ไม่มีข้อมูลส่วนหัว 'Package'" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " ล้มเหลว" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "ไม่เข้าใจชนิดการตรึง %s" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "ไม่สามารถแก้ปัญหาความขึ้นต่อกันระหว่างแพกเกจได้" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "ไม่ได้ระบุลำดับความสำคัญ (หรือค่าศูนย์) สำหรับการตรึง" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "ไม่สามารถจำกัดรายการปรับรุ่นให้น้อยที่สุดได้" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" +"ไม่สามารถตั้งค่า '%s' แบบทันทีได้ กรุณาอ่านรายละเอียดเพิ่มเติมจาก man 5 apt.conf ที่หัวข้อ " +"APT::Immediate-Configure (%d)" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " เสร็จแล้ว" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, c-format +msgid "Could not configure '%s'. " +msgstr "ไม่สามารถตั้งค่า '%s'" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "คุณอาจต้องเรียก 'apt-get -f install' เพื่อแก้ปัญหาเหล่านี้" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"การติดตั้งครั้งนี้จำเป็นต้องลบแพกเกจ %s ชั่วคราว " +"อันเนื่องมาจากความขัดแย้งหรือความขึ้นต่อกันระหว่างติดตั้งที่เป็นวงรอบ " +"ซึ่งแพกเกจดังกล่าวเป็นแพกเกจที่จำเป็นสำหรับระบบ การลบดังกล่าวมักเป็นอันตราย " +"แต่ถ้าคุณต้องการทำเช่นนั้นจริงๆ ก็ให้เปิดตัวเลือก APT::Force-LoopBreak" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "รายการแพกเกจที่ต้องใช้ไม่ครบ กรุณาลองใช้ตัวเลือก -f" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s ยาวเกินไป" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "ไม่ทราบ" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "กำลังเลิกเมานท์ซีดีรอม...\n" -#: apt-private/private-output.cc:234 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "[installed,upgradable to: %s]" -msgstr "[ติดตั้งอยู่,สามารถปรับรุ่นเป็น: %s]" - -#: apt-private/private-output.cc:238 -msgid "[installed,local]" -msgstr "[ติดตั้งอยู่,ในเครื่อง]" +msgid "Using CD-ROM mount point %s\n" +msgstr "กำลังใช้จุดเมานท์ซีดีรอม %s\n" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "[ติดตั้งอยู่,ถอดถอนอัตโนมัติได้]" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "กำลังรอแผ่น...\n" -#: apt-private/private-output.cc:243 -msgid "[installed,automatic]" -msgstr "[ติดตั้งอยู่,อัตโนมัติ]" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "กำลังเมานท์ซีดีรอม...\n" -#: apt-private/private-output.cc:245 -msgid "[installed]" -msgstr "[ติดตั้งอยู่]" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "กำลังตรวจสอบชื่อแผ่น... " -#: apt-private/private-output.cc:249 +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "[upgradable from: %s]" -msgstr "[สามารถปรับรุ่นจาก: %s]" +msgid "Stored label: %s\n" +msgstr "ชื่อที่เก็บไว้: %s\n" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" -msgstr "[ค่าตั้งตกค้าง]" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "กำลังสำรวจข้อมูลในแผ่นเพื่อหาแฟ้มดัชนี...\n" -#: apt-private/private-output.cc:435 +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "but %s is installed" -msgstr "แต่รุ่นที่ติดตั้งไว้คือ %s" +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" +"พบดัชนีแพกเกจ %zu รายการ, ดัชนีซอร์ส %zu รายการ, ดัชนีคำแปล %zu รายการ และลายเซ็น " +"%zu รายการ\n" -#: apt-private/private-output.cc:437 -#, c-format -msgid "but %s is to be installed" -msgstr "แต่รุ่นที่จะติดตั้งคือ %s" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "ไม่พบแฟ้มแพกเกจใดๆ บางทีแผ่นนี้อาจจะไม่ใช่แผ่นเดเบียน หรือสถาปัตยกรรมอาจไม่ถูกต้อง" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "แต่ไม่สามารถติดตั้งได้" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "พบชื่อแผ่น '%s'\n" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "แต่แพกเกจนี้เป็นแพกเกจเสมือน" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "ไม่ใช่ชื่อที่ใช้ได้ กรุณาลองใหม่\n" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "แต่ได้ติดตั้งไว้" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"แผ่นนี้เรียกชื่อว่า:\n" +"'%s'\n" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "แต่แพกเกจนี้จะไม่ถูกติดตั้ง" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "กำลังคัดลอกรายชื่อแพกเกจ..." -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " หรือ" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "กำลังเขียนรายชื่อแหล่งแพกเกจแหล่งใหม่\n" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "แพกเกจต่อไปนี้ขาดแพกเกจที่ต้องใช้:" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "บรรทัดรายชื่อแหล่งแพกเกจสำหรับแผ่นนี้คือ:\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "จะติดตั้งแพกเกจ *ใหม่* ต่อไปนี้:" +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "จำเป็นต้องติดตั้งแพกเกจ %s ซ้ำ แต่หาตัวแพกเกจไม่พบ" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "จะ *ลบ* แพกเกจต่อไปนี้:" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"ข้อผิดพลาด: pkgProblemResolver::Resolve สร้างคำตอบที่ทำให้เกิดแพกเกจเสีย " +"อาจเกิดจากแพกเกจที่ถูกกำหนดให้คงรุ่นไว้" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "จะคงรุ่นแพกเกจต่อไปนี้:" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "ไม่สามารถแก้ปัญหาได้ คุณได้คงรุ่นแพกเกจที่เสียอยู่ไว้" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "จะปรับรุ่นแพกเกจต่อไปนี้ขึ้น:" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "ส่งสภาวการณ์ไปยังกลไกการแก้ปัญหา" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "จะปรับรุ่นแพกเกจต่อไปนี้ *ลง*:" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "ส่งคำสั่งไปยังกลไกการแก้ปัญหา" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "จะเปลี่ยนแปลงรายการคงรุ่นแพกเกจต่อไปนี้:" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "เตรียมรับคำตอบ" -#: apt-private/private-output.cc:668 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (เนื่องจาก %s) " +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "กลไกการแก้ปัญหาภายนอกทำงานล้มเหลวโดยไม่มีข้อความข้อผิดพลาดที่เหมาะสม" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" -msgstr "" -"*คำเตือน*: แพกเกจที่จำเป็นต่อไปนี้จะถูกถอดถอน\n" -"คุณ *ไม่ควร* ทำเช่นนี้ นอกจากคุณเข้าใจสิ่งที่จะทำ!" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "เรียกกลไกการแก้ปัญหาภายนอก" -#: apt-private/private-output.cc:707 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "ปรับรุ่นขึ้น %lu, ติดตั้งใหม่ %lu, " +msgid "Unable to parse package file %s (1)" +msgstr "ไม่สามารถแจงแฟ้มแพกเกจ %s (1)" -#: apt-private/private-output.cc:711 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%lu reinstalled, " -msgstr "ติดตั้งซ้ำ %lu, " +msgid "Unable to parse package file %s (2)" +msgstr "ไม่สามารถแจงแฟ้มแพกเกจ %s (2)" -#: apt-private/private-output.cc:713 +#: apt-pkg/indexrecords.cc:78 #, c-format -msgid "%lu downgraded, " -msgstr "ปรับรุ่นลง %lu, " +msgid "Unable to parse Release file %s" +msgstr "ไม่สามารถแจงแฟ้ม Release %s" -#: apt-private/private-output.cc:715 +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "ถอดถอน %lu และไม่ปรับรุ่น %lu\n" +msgid "No sections in Release file %s" +msgstr "ไม่มีหัวข้อย่อยในแฟ้ม Release %s" -#: apt-private/private-output.cc:719 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "ติดตั้งหรือถอดถอนไม่ครบ %lu\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[Y/n]" - -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[y/N]" +msgid "No Hash entry in Release file %s" +msgstr "ไม่มีรายการแฮชในแฟ้ม Release %s" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "Y" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "รายการ 'Valid-Until' ไม่ถูกต้องในแฟ้ม Release %s" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "N" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "รายการ 'Date' ไม่ถูกต้องในแฟ้ม Release %s" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "คำสั่ง update ไม่รับอาร์กิวเมนต์เพิ่ม" +#: apt-pkg/sourcelist.cc:127 +#, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "วรรคที่ %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ขณะแจง URI)" -#: apt-private/private-update.cc:90 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ ([ตัวเลือก] แจงไม่ผ่าน)" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ ([ตัวเลือก] สั้นเกินไป)" -#: apt-private/private-show.cc:156 +#: apt-pkg/sourcelist.cc:184 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "มีอีก %i ระเบียน กรุณาใช้ตัวเลือก '-a' หากต้องการดูเพิ่ม" +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ ([%s] ไม่ใช่การกำหนดค่า)" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "ไม่ใช่แพกเกจจริง (เสมือน)" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ ([%s] ไม่มีคีย์)" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "เกิดข้อผิดพลาดภายใน: มีการเรียก InstallPackages ด้วยแพกเกจที่เสีย!" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ ([%s] คีย์ %s ไม่มีค่า)" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "มีแพกเกจที่จำเป็นต้องถอดถอน แต่ถูกห้ามการถอดถอนไว้" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (URI)" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "ข้อผิดพลาดภายใน: การเรียงลำดับไม่เสร็จสิ้น" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (dist)" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "แปลกประหลาด... ขนาดไม่ตรงกัน กรุณาอีเมลแจ้ง apt@packages.debian.org" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ขณะแจง URI)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "ต้องดาวน์โหลดแพกเกจ %sB/%sB\n" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (dist แบบสัมบูรณ์)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "ต้องดาวน์โหลดแพกเกจ %sB\n" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ขณะแจง dist)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "หลังจากการกระทำนี้ ต้องใช้เนื้อที่บนดิสก์อีก %sB\n" +msgid "Opening %s" +msgstr "กำลังเปิด %s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "หลังจากการกระทำนี้ เนื้อที่บนดิสก์จะว่างเพิ่มอีก %sB\n" +msgid "Malformed line %u in source list %s (type)" +msgstr "บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ชนิด)" -#: apt-private/private-install.cc:200 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "You don't have enough free space in %s." -msgstr "คุณมีพื้นที่ว่างเหลือไม่พอใน %s" +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "ไม่รู้จักชนิด '%s' ที่บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "มีปัญหาบางประการ และมีการใช้ -y โดยไม่ระบุ --force-yes" +#: apt-pkg/sourcelist.cc:416 +#, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "ไม่รู้จักชนิด '%s' ที่วรรคที่ %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Trivial Only ถูกกำหนดไว้ แต่คำสั่งนี้ไม่ใช่คำสั่งเล็กน้อย" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "ไม่พบรุ่นย่อย '%s' ของ '%s'" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Yes, do as I say!" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "ไม่พบรุ่น '%s' ของ '%s'" -#: apt-private/private-install.cc:222 +#: apt-pkg/cacheset.cc:603 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"คุณกำลังจะทำสิ่งที่อาจเป็นอันตราย\n" -"หากต้องการดำเนินการต่อ ให้พิมพ์ประโยค '%s'\n" -" ?] " +msgid "Couldn't find task '%s'" +msgstr "ไม่พบงานติดตั้ง '%s'" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "เลิกทำ" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "ไม่พบแพกเกจที่ตรงกับนิพจน์เรกิวลาร์ '%s'" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "คุณต้องการจะดำเนินการต่อไปหรือไม่?" +#: apt-pkg/cacheset.cc:615 +#, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "ไม่พบแพกเกจที่ตรงกับ glob '%s'" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "ดาวน์โหลดบางแฟ้มไม่สำเร็จ" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "ไม่สามารถเลือกรุ่นต่างๆ ของแพกเกจ '%s' ได้ เนื่องจากเป็นแพกเกจเสมือนอย่างแท้จริง" -#: apt-private/private-install.cc:320 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"ดาวน์โหลดบางแพกเกจไม่สำเร็จ บางที การเรียก apt-get update หรือลองใช้ตัวเลือก --fix-" -"missing อาจช่วยได้" +"ไม่สามารถเลือกรุ่นที่ติดตั้งไว้หรือรุ่นสำหรับติดตั้งของแพกเกจ '%s' ได้ เนื่องจากไม่มีทั้งสองอย่าง" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "ยังไม่รองรับ --fix-missing พร้อมกับการเปลี่ยนแผ่น" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "ไม่สามารถเลือกรุ่นใหม่ที่สุดของแพกเกจ '%s' ได้ เนื่องจากเป็นแพกเกจเสมือนอย่างแท้จริง" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "ไม่สามารถแก้ปัญหาแพกเกจที่ขาดหายได้" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "ไม่สามารถเลือกรุ่นสำหรับติดตั้งของแพกเกจ '%s' ได้ เนื่องจากไม่มีรุ่นสำหรับติดตั้ง" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "จะล้มเลิกการติดตั้ง" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "ไม่สามารถเลือกรุ่นที่ติดตั้งไว้ของแพกเกจ '%s' ได้ เนื่องจากแพกเกจไม่ได้ติดตั้งไว้" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -"แพกเกจต่อไปนี้ได้หายไปจากระบบของคุณ เพราะแฟ้มทั้งหมดได้ถูกแทนที่\n" -"โดยแพกเกจอื่นแล้ว:" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%liวัน %liชม. %liนาที %liวิ" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "หมายเหตุ: นี่เป็นสิ่งที่ dpkg ทำโดยอัตโนมัติโดยเจตนา" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%liชม. %liนาที %liวิ" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "apt ถูกกำหนดไม่ให้มีการลบใดๆ จึงไม่สามารถดำเนินการถอดถอนอัตโนมัติได้" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%liนาที %liวิ" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"ดูเหมือนการถอดถอนอัตโนมัติได้สร้างความเสียหายบางอย่าง ซึ่งไม่ควรเกิดขึ้น\n" -"กรุณารายงานบั๊กนี้ของแพกเกจ apt" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%liวิ" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "ข้อมูลต่อไปนี้อาจช่วยแก้ปัญหาได้:" +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "ไม่พบรายการเลือก %s" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "เกิดข้อผิดพลาดภายใน: AutoRemover ทำความเสียหาย" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "จะไม่ใช้การล็อคกับแฟ้มล็อค %s ที่อ่านได้อย่างเดียว" -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "แพกเกจต่อไปนี้ถูกติดตั้งแบบอัตโนมัติไว้ และไม่ต้องใช้อีกต่อไปแล้ว:" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "ไม่สามารถเปิดแฟ้มล็อค %s" -#: apt-private/private-install.cc:517 +#: apt-pkg/contrib/fileutl.cc:218 #, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "มีแพกเกจ %lu แพกเกจถูกติดตั้งแบบอัตโนมัติไว้ และไม่ต้องใช้อีกต่อไปแล้ว\n" +msgid "Not using locking for nfs mounted lock file %s" +msgstr "จะไม่ใช้การล็อคกับแฟ้มล็อค %s ที่เมานท์ผ่าน nfs" -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "ใช้ 'apt-get autoremove' เพื่อถอดถอนแพกเกจดังกล่าวได้" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "ไม่สามารถล็อค %s" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "คุณอาจเรียก 'apt-get -f install' เพื่อแก้ปัญหานี้ได้:" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "ไม่สามารถสร้างรายชื่อแฟ้มได้ เนื่องจาก '%s' ไม่ใช่ไดเรกทอรี" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"มีปัญหาความขึ้นต่อกันระหว่างแพกเกจ กรุณาลองใช้ 'apt-get -f install' โดยไม่ระบุแพกเกจ " -"(หรือจะระบุทางแก้ก็ได้)" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "จะละเลย '%s' ในไดเรกทอรี '%s' เนื่องจากไม่ใช่แฟ้มธรรมดา" -#: apt-private/private-install.cc:638 +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "จะละเลย '%s' ในไดเรกทอรี '%s' เนื่องจากไม่มีส่วนขยายในชื่อแฟ้ม" + +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." -msgstr "" -"ไม่สามารถติดตั้งบางแพกเกจได้ คุณอาจระบุเงื่อนไขการติดตั้งที่เป็นไปไม่ได้\n" -"หรือถ้าคุณกำลังใช้รุ่น unstable ก็เป็นไปได้ว่าแพกเกจที่จำเป็นบางรายการ\n" -"ยังไม่ถูกสร้างขึ้น หรือถูกย้ายออกจาก Incoming" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "จะละเลย '%s' ในไดเรกทอรี '%s' เนื่องจากส่วนขยายในชื่อแฟ้มไม่สามารถใช้การได้" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "แพกเกจมีปัญหา" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "โพรเซสย่อย %s เกิดข้อผิดพลาดของการใช้ย่านหน่วยความจำ (segmentation fault)" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "จะติดตั้งแพกเกจเพิ่มเติมต่อไปนี้:" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "โพรเซสย่อย %s ได้รับสัญญาณ %u" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "แพกเกจที่แนะนำ:" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "โพรเซสย่อย %s คืนค่าข้อผิดพลาด (%u)" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "แพกเกจที่ควรใช้ร่วมกัน:" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "โพรเซสย่อย %s จบการทำงานกะทันหัน" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "จะข้าม %s เนื่องจากแพกเกจติดตั้งไว้แล้ว และไม่มีการกำหนดให้ปรับรุ่น\n" +msgid "Problem closing the gzip file %s" +msgstr "เกิดปัญหาขณะปิดแฟ้ม gzip %s" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "จะข้าม %s เนื่องจากแพกเกจไม่ได้ติดตั้งไว้ และคำสั่งมีเพียงการปรับรุ่นเท่านั้น\n" +msgid "Could not open file %s" +msgstr "ไม่สามารถเปิดแฟ้ม %s" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "ไม่สามารถติดตั้ง %s ซ้ำได้ เนื่องจากไม่สามารถดาวน์โหลดได้\n" +msgid "Could not open file descriptor %d" +msgstr "ไม่สามารถเปิด file destriptor %d" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "สร้าง IPC ของโพรเซสย่อยไม่สำเร็จ" + +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "เรียกทำงานตัวบีบอัดไม่สำเร็จ" + +#: apt-pkg/contrib/fileutl.cc:1514 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s เป็นรุ่นใหม่ล่าสุดอยู่แล้ว\n" +msgid "read, still have %llu to read but none left" +msgstr "read: ยังเหลือ %llu ที่ยังไม่ได้อ่าน แต่ข้อมูลหมดแล้ว" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "เลือกรุ่น '%s' (%s) สำหรับ '%s' แล้ว\n" +msgid "write, still have %llu to write but couldn't" +msgstr "write: ยังเหลือ %llu ที่ยังไม่ได้เขียน แต่ไม่สามารถเขียนได้" -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/fileutl.cc:1915 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "เลือกรุ่น '%s' (%s) สำหรับ '%s' แล้ว อันเนื่องมาจาก '%s'\n" +msgid "Problem closing the file %s" +msgstr "เกิดปัญหาขณะปิดแฟ้ม %s" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/fileutl.cc:1927 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "แพกเกจ '%s' ไม่ได้ติดตั้งไว้ จึงไม่มีการถอดถอน คุณหมายถึง '%s' หรือเปล่า?\n" +msgid "Problem renaming the file %s to %s" +msgstr "เกิดปัญหาขณะเปลี่ยนชื่อแฟ้ม %s ไปเป็น %s" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/fileutl.cc:1938 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "แพกเกจ '%s' ไม่ได้ติดตั้งไว้ จึงไม่มีการถอดถอน\n" - -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" -"หมายเหตุ: นี่เป็นเพียงการจำลองการทำงานเท่านั้น!\n" -" การทำงานจริงของ apt-get ต้องอาศัยสิทธิ์ผู้ดูแลระบบ\n" -" อย่าลืมด้วยว่าการล็อคก็ไม่ทำงานเช่นกัน\n" -" ดังนั้น อย่าถือผลลัพธ์นี้ว่าตรงกับสภาพความเป็นจริงของระบบ!" +msgid "Problem unlinking the file %s" +msgstr "เกิดปัญหาขณะลบแฟ้ม %s" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "*คำเตือน*: แพกเกจต่อไปนี้ไม่สามารถยืนยันแหล่งต้นตอได้!" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "เกิดปัญหาขณะ sync แฟ้ม" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "จะข้ามการเตือนเกี่ยวกับการยืนยันแหล่งต้นตอ\n" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... ผิดพลาด!" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "มีบางแพกเกจไม่สามารถยืนยันแหล่งต้นตอได้" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... เสร็จแล้ว" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "จะติดตั้งแพกเกจเหล่านี้โดยไม่ตรวจสอบหรือไม่?" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "..." -#: apt-private/private-sources.cc:58 +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "แจง %s ไม่สำเร็จ จะแก้ไขอีกครั้งหรือไม่? " +msgid "%c%s... %u%%" +msgstr "%c%s... %u%%" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "ไม่สามารถ mmap แฟ้มเปล่า" + +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "แฟ้ม '%s' ของคุณมีการเปลี่ยนแปลง กรุณาเรียก 'apt-get update'" +msgid "Couldn't duplicate file descriptor %i" +msgstr "ไม่สามารถทำซ้ำ file descriptor %i" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "ค้นทั่วทั้งเนื้อความ" +#: apt-pkg/contrib/mmap.cc:119 +#, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "ไม่สามารถสร้าง mmap ขนาด %llu ไบต์" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "เจอ " +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "ไม่สามารถปิด mmap" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "ดึง:" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "ไม่สามารถปรับ mmap ให้ตรงกัน" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "ข้าม " +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "ไม่สามารถสร้าง mmap ขนาด %lu ไบต์" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "ปัญหา " +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "ไม่สามารถตัดท้ายแฟ้ม" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "ดาวน์โหลด %sB ใน %s (%sB/s)\n" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" +"MMap แบบพลวัตมีเนื้อที่ไม่พอ กรุณาเพิ่มขนาดของ APT::Cache-Start ค่าปัจจุบัน: %lu (man 5 " +"apt.conf)" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid " [Working]" -msgstr " [กำลังทำงาน]" +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "ไม่สามารถเพิ่มขนาดของ MMap เนื่องจากถึงขีดจำกัด %lu ไบต์แล้ว" -#: apt-private/acqprogress.cc:297 -#, c-format +#: apt-pkg/contrib/mmap.cc:449 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" -msgstr "" -"เปลี่ยนแผ่น: กรุณาใส่แผ่นชื่อ\n" -" '%s'\n" -"ลงในไดรว์ %s แล้วกด enter\n" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "ไม่สามารถเพิ่มขนาดของ MMap เนื่องจากผู้ใช้ปิดการขยายขนาดอัตโนมัติ" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "No mirror file '%s' found " -msgstr "ไม่พบแฟ้มแหล่งสำเนา '%s'" +msgid "Unable to stat the mount point %s" +msgstr "ไม่สามารถ stat จุดเมานท์ %s" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "ไม่สามารถ stat ซีดีรอม" + +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "ไม่สามารถอ่านแฟ้มแหล่งสำเนา '%s'" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "พบตัวย่อของชนิดที่ข้อมูลไม่รู้จัก: '%c'" -#: methods/mirror.cc:315 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "No entry found in mirror file '%s'" -msgstr "ไม่พบรายการในแฟ้มแหล่งสำเนา '%s'" +msgid "Opening configuration file %s" +msgstr "ขณะเปิดแฟ้มค่าตั้ง %s" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "[Mirror: %s]" -msgstr "[แหล่งสำเนา: %s]" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "ไวยากรณ์ผิดพลาด %s:%u: เริ่มบล็อคโดยไม่มีชื่อ" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "ไม่สามารถสร้างไปป์ IPC ไปยังโพรเซสย่อย" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "ไวยากรณ์ผิดพลาด %s:%u: แท็กผิดรูปแบบ" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "การเชื่อมต่อถูกปิดก่อนเวลาอันควร" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "ไวยากรณ์ผิดพลาด %s:%u: มีขยะเกินหลังค่า" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "ค่าตั้งปริยายผิดพลาด!" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "ไวยากรณ์ผิดพลาด %s:%u: สามารถใช้ directive ที่ระดับบนสุดได้เท่านั้น" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "กด enter เพื่อดำเนินการต่อ" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "ไวยากรณ์ผิดพลาด %s:%u: ใช้ include ซ้อนกันมากเกินไป" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "คุณต้องการจะลบแฟ้ม .deb ต่างๆ ที่ได้ดาวน์โหลดมาก่อนหน้านี้หรือไม่?" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "ไวยากรณ์ผิดพลาด %s:%u: include จากที่นี่" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "เกิดข้อผิดพลาดขณะแตกแพกเกจ โปรแกรมจะตั้งค่าแพกเกจที่ติดตั้งแล้ว" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "ไวยากรณ์ผิดพลาด %s:%u: พบ directive '%s' ที่ไม่รองรับ" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "อาจทำให้เกิดข้อความแจ้งข้อผิดพลาดซ้ำ หรือข้อผิดพลาดเนื่องจากแพกเกจที่ต้องใช้ขาดหาย" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "ไวยากรณ์ผิดพลาด %s:%u: directive 'clear' ต้องมีอาร์กิวเมนต์เป็นลำดับชั้นตัวเลือก" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "ซึ่งไม่มีปัญหาอะไร มีเฉพาะข้อผิดพลาดก่อนหน้าข้อความนี้เท่านั้นที่สำคัญ" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "ไวยากรณ์ผิดพลาด %s:%u: มีขยะเกินหลังจบแฟ้ม" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "กรุณาแก้ปัญหาเหล่านั้น แล้วเรียกติดตั้งใหม่อีกครั้ง" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "ไม่มีพวงกุญแจติดตั้งไว้ใน %s" -#: dselect/update:30 -msgid "Merging available information" -msgstr "กำลังผสานรายชื่อของแพกเกจที่มี" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "ไม่รู้จักตัวเลือกบรรทัดคำสั่ง '%c' [จาก %s]" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode ถูกเรียกใช้กับโหนดที่ยังลิงก์อยู่" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "ไม่เข้าใจตัวเลือกบรรทัดคำสั่ง %s" + +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "ตัวเลือกบรรทัดคำสั่ง %s ไม่ได้เป็นค่าบูลีน" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "หาสมาชิกในตารางแฮชไม่สำเร็จ!" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "ตัวเลือก %s ต้องมีอาร์กิวเมนต์" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "จองเนื้อที่สำหรับการเบนแฟ้มไม่สำเร็จ" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "ตัวเลือก %s: การกำหนดรายการค่าตั้งต้องมี =<val>" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "ข้อผิดพลาดภายในที่ AddDiversion" +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "ตัวเลือก %s ต้องการอาร์กิวเมนต์จำนวนเต็ม ไม่ใช่ '%s'" -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "พยายามเขียนทับการเบนแฟ้ม: %s -> %s กับ %s/%s" +msgid "Option '%s' is too long" +msgstr "ตัวเลือก '%s' ยาวเกินไป" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "เพิ่มการเบนแฟ้ม %s -> %s ซ้ำสอง" +msgid "Sense %s is not understood, try true or false." +msgstr "ไม่เข้าใจค่าบูลีน %s กรุณาลองใช้ true หรือ false" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "แฟ้มค่าตั้ง %s/%s ซ้ำ" +msgid "Invalid operation %s" +msgstr "ไม่รู้จักคำสั่ง %s" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "The path %s is too long" -msgstr "พาธ %s ยาวเกินไป" +msgid "Installing %s" +msgstr "กำลังติดตั้ง %s" -#: apt-inst/extract.cc:132 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "Unpacking %s more than once" -msgstr "พยายามแตกแพกเกจ %s มากกว่าหนึ่งครั้ง" +msgid "Configuring %s" +msgstr "กำลังตั้งค่า %s" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "The directory %s is diverted" -msgstr "ไดเรกทอรี %s ถูก divert" +msgid "Removing %s" +msgstr "กำลังถอดถอน %s" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "แพกเกจนี้พยายามเขียนลงปลายทางของการเบนแฟ้ม %s/%s" +msgid "Completely removing %s" +msgstr "กำลังถอดถอน %s อย่างสมบูรณ์" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "พาธของการเบนแฟ้มยาวเกินไป" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "กำลังจดบันทึกการหายไปของ %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Failed to stat %s" -msgstr "stat %s ไม่สำเร็จ" +msgid "Running post-installation trigger %s" +msgstr "กำลังเรียกการสะกิด %s หลังการติดตั้ง" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "Failed to rename %s to %s" -msgstr "ไม่สามารถเปลี่ยนชื่อ %s ไปเป็น %s" +msgid "Directory '%s' missing" +msgstr "ไม่มีไดเรกทอรี '%s'" -#: apt-inst/extract.cc:249 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "ไดเรกทอรี %s กำลังจะถูกแทนที่ด้วยสิ่งที่ไม่ใช่ไดเรกทอรี" +msgid "Could not open file '%s'" +msgstr "ไม่สามารถเปิดแฟ้ม '%s'" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "หาโหนดใน bucket ของแฮชไม่พบ" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "กำลังเตรียม %s" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "พาธยาวเกินไป" +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "กำลังแตกแพกเกจ %s" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "พบแพกเกจที่เขียนทับโดยไม่มีข้อมูลรุ่นสำหรับ %s" +msgid "Preparing to configure %s" +msgstr "กำลังเตรียมตั้งค่า %s" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "แฟ้ม %s/%s เขียนทับแฟ้มในแพกเกจ %s" +msgid "Installed %s" +msgstr "ติดตั้ง %s แล้ว" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Unable to stat %s" -msgstr "ไม่สามารถ stat %s" +msgid "Preparing for removal of %s" +msgstr "กำลังเตรียมถอดถอน %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Failed to write file %s" -msgstr "ไม่สามารถเขียนแฟ้ม %s" +msgid "Removed %s" +msgstr "ถอดถอน %s แล้ว" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Failed to close file %s" -msgstr "ไม่สามารถปิดแฟ้ม %s" +msgid "Preparing to completely remove %s" +msgstr "กำลังเตรียมถอดถอน %s อย่างสมบูรณ์" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "แฟ้มนี้ไม่ใช่แพกเกจ DEB ที่ใช้การได้ ขาดสมาชิก '%s'" +msgid "Completely removed %s" +msgstr "ถอดถอน %s อย่างสมบูรณ์แล้ว" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "ioctl(TIOCGWINSZ) ล้มเหลว" + +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "ข้อผิดพลาดภายใน: ไม่พบสมาชิก %s" +msgid "Can not write log (%s)" +msgstr "ไม่สามารถเขียนปูม (%s)" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "ไม่สามารถแจงแฟ้มควบคุมได้" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "ได้เมานท์ /dev/pts ไว้หรือไม่?" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "เอกลักษณ์ของแฟ้มจัดเก็บไม่ถูกต้อง" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "stdout เป็นเทอร์มินัลหรือไม่?" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลส่วนหัวของสมาชิกแฟ้มจัดเก็บ" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "ปฏิบัติการถูกขัดจังหวะก่อนที่จะสามารถทำงานเสร็จ" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "ข้อมูลส่วนหัว %s ของสมาชิกแฟ้มจัดเก็บไม่ถูกต้อง" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "ไม่มีการเขียนรายงาน apport เพราะถึงขีดจำกัด MaxReports แล้ว" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "ข้อมูลส่วนหัวของสมาชิกแฟ้มจัดเก็บไม่ถูกต้อง" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "มีปัญหาความขึ้นต่อกัน - จะทิ้งไว้โดยไม่ตั้งค่า" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "แฟ้มจัดเก็บสั้นเกินไป" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"ไม่มีการเขียนรายงาน apport เพราะข้อความข้อผิดพลาดระบุว่าเป็นสิ่งที่ตามมาจากข้อผิดพลาดก่อนหน้า" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "อ่านข้อมูลส่วนหัวของแฟ้มจัดเก็บไม่สำเร็จ" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "ไม่มีการเขียนรายงาน apport เพราะข้อความข้อผิดพลาดระบุว่าเกิดจากดิสก์เต็ม" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "สร้างไปป์ไม่สำเร็จ" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "ไม่มีการเขียนรายงาน apport เพราะข้อความข้อผิดพลาดระบุว่าเกิดจากหน่วยความจำเต็ม" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "เรียก gzip ไม่สำเร็จ" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"ไม่มีการเขียนรายงาน apport เพราะข้อความข้อผิดพลาดระบุว่าเกิดจากปัญหาของระบบในเครื่อง" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "แฟ้มจัดเก็บเสียหาย" +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"ไม่มีการเขียนรายงาน apport เพราะข้อความข้อผิดพลาดระบุว่าเกิดจากปัญหาการอ่าน/เขียนของ dpkg" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "checksum ของแฟ้ม tar ผิดพลาด แฟ้มจัดเก็บเสียหาย" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "ไม่สามารถล็อคไดเรกทอรีดูแลระบบ (%s) มีโพรเซสอื่นใช้งานอยู่หรือเปล่า?" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/debsystem.cc:94 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "พบชนิด %u ของข้อมูลส่วนหัว TAR ที่ไม่รู้จัก ที่สมาชิก %s" +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "ไม่สามารถล็อคไดเรกทอรีดูแลระบบ (%s) คุณเป็น root หรือเปล่า?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "dpkg ถูกขัดจังหวะ คุณต้องเรียก '%s' เองเพื่อแก้ปัญหา" + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "ไม่ได้ล็อคอยู่" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/tl.po b/po/tl.po index 2d4d698ef..91a5f7117 100644 --- a/po/tl.po +++ b/po/tl.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2007-03-29 21:36+0800\n" "Last-Translator: Eric Pareja <xenos@upm.edu.ph>\n" "Language-Team: Tagalog <debian-tl@banwa.upm.edu.ph>\n" @@ -20,3174 +20,3175 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "Hindi suportado ang uri ng talaksang index na '%s'" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "Hindi mabasa ang %s" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Di makalipat sa %s" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "Hindi ma-stat ang %s" - -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Progress: [%3i%%]" -msgstr "" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Paketeng %s bersyon %s ay may kulang na dep:\n" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Kabuuan ng mga Pakete : " -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Hindi suportado ang sistema ng paketeng '%s'" +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "Kabuuan ng mga Pakete : " -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Hindi matuklasan ang akmang uri ng sistema ng pakete " +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Normal na Pakete: " -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Nagsulat ng %i na record.\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Purong Birtwual na Pakete: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Nagsulat ng %i na record na may %i na talaksang kulang.\n" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Nag-iisang Birtwal na Pakete: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Nagsulat ng %i na record na may %i na talaksang mismatch\n" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Halong Birtwal na Pakete: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"Nagsulat ng %i na record na may %i na talaksang kulang at %i na talaksang " -"mismatch\n" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Kulang/Nawawala: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Kabuuan ng Natatanging mga Bersyon: " -#: apt-pkg/indexcopy.cc:521 -#, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Di tugmang MD5Sum" +#: cmdline/apt-cache.cc:327 +#, fuzzy +msgid "Total distinct descriptions: " +msgstr "Kabuuan ng Natatanging mga Bersyon: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Ang driver ng paraang %s ay hindi mahanap." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Kabuuan ng mga Dependensiya: " -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Paki-siguro na nakaluklok ang paketeng 'dpkg-dev'.\n" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Kabuuan ng ugnayang Ber/Talaksan: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Hindi umandar ng tama ang paraang %s" +#: cmdline/apt-cache.cc:334 +#, fuzzy +msgid "Total Desc/File relations: " +msgstr "Kabuuan ng ugnayang Ber/Talaksan: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "" -"Ikasa ang disk na may pangalang: '%s' sa drive '%s' at pindutin ang enter." +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Kabuuan ng Mapping ng Provides: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "" -"Hindi ma-parse o mabuksan ang talaan ng mga pakete o ng talaksang estado." +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Kabuuan ng Globbed String: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "" -"Maaaring patakbuhin niyo ang apt-get update upang ayusin ang mga problemang " -"ito" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Kabuuan ng gamit na puwang ng Dependensiyang Bersyon: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Hindi mabasa ang talaan ng pagkukunan (sources)." +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Kabuuan ng Hindi Nagamit na puwang: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Walang laman ang cache ng pakete" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Kabuuan ng puwang na napag-tuosan: " -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Sira ang talaksan ng cache ng pakete" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "Wala sa sync ang talaksan ng paketeng %s." -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Ang talaksan ng cache ng pakete ay hindi magamit na bersyon" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Walang nahanap na mga pakete" -#: apt-pkg/pkgcache.cc:169 +#: cmdline/apt-cache.cc:1254 #, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "Sira ang talaksan ng cache ng pakete" - -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Ang APT na ito ay hindi nagsusuporta ng versioning system '%s'" +msgid "You must give at least one search pattern" +msgstr "Kailangan niyong magbigay ng isa lamang na pattern" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Ang cache ng pakete ay binuo para sa ibang arkitektura" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Dependensiya" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "Hindi mahanap ang paketeng %s" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "PreDepends" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Talaksang Pakete:" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Mungkahi" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Wala sa sync ang cache, hindi ma-x-ref ang talaksang pakete" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Rekomendado" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Mga naka-Pin na Pakete:" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Tunggali" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(hindi nahanap)" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Pumapalit" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Nakaluklok: " -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Linalaos" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Kandidato: " -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(wala)" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Naka-Pin na Pakete: " -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "importante" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Talaang Bersyon:" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "kailangan" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, fuzzy, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s para sa %s %s kinompile noong %s %s\n" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standard" - -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "optional" - -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" - -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Hindi suportado ang uri ng talaksang index na '%s'" - -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Error sa pag-compile ng regex - %s" - -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Hindi akma ang versioning system ng cache" - -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "May naganap na error habang prinoseso ang %s (FindPkg)" - -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" -"Wow, nalagpasan niyo ang bilang ng pangalan ng pakete na kaya ng APT na ito." - -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Wow, nalagpasan niyo ang bilang ng bersyon na kaya ng APT na ito." - -#: apt-pkg/pkgcachegen.cc:263 +#: cmdline/apt-cache.cc:1749 #, fuzzy -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Wow, nalagpasan niyo ang bilang ng bersyon na kaya ng APT na ito." - -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "Wow, nalagpasan niyo ang bilang ng dependensiya na kaya ng APT na ito." - -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "" -"Hindi nahanap ang paketeng %s %s habang prinoseso ang mga dependensiya." - -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "Hindi ma-stat ang talaan ng pagkukunan ng pakete %s" - -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Binabasa ang Listahan ng mga Pakete" - -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Kinukuha ang Talaksang Provides" - -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Hindi makapagsulat sa %s" - -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "IO Error sa pag-imbak ng source cache" - -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" - -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" - -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" - -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" - -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" msgstr "" +"Pag-gamit: apt-cache [mga option] utos\n" +" apt-cache [mga option] add talaksan1 [talaksan2 ...]\n" +" apt-cache [mga option] showpkg pkt1 [pkt2 ...]\n" +" apt-cache [mga option] showsrc pkt1 [pkt2 ...]\n" +"\n" +"apt-cache ay isang kagamitang low-level para sa pag-manipula\n" +"ng mga talaksan sa binary cache ng APT, at upang makakuha ng\n" +"impormasyon mula sa kanila\n" +"\n" +"Mga utos:\n" +" add - Magdagdag ng talaksang pakete sa source cache\n" +" gencaches - Buuin pareho ang cache ng pakete at source\n" +" showpkg - Ipakita ang impormasyon tungkol sa isang pakete\n" +" showsrc - Ipakita ang mga record ng source\n" +" stats - Ipakita ang ilang mga estadistika\n" +" dump - Ipakita ang buong talaksan sa anyong maikli\n" +" dumpavail - Ipakita ang talaksang available sa stdout\n" +" unmet - Ipakita ang mga kulang na mga dependensiya\n" +" search - Maghanap sa listahan ng mga pakete ng regex pattern\n" +" show - Ipakita ang nababasang record ng pakete\n" +" depends - Ipakita ang impormasyon tungkol sa ganap na dependensiya\n" +" ng pakete\n" +" rdepends - Ipakita ang impormasyong kabaliktarang dependensiya ng pakete\n" +" pkgnames - Ipakita ang listahan ng pangalan ng lahat ng mga pakete\n" +" dotty - Bumuo ng graph ng mga pakete para sa GraphViz\n" +" xvcg - Bumuo ng graph ng mga pakete para sa xvcg\n" +" policy - Ipakita ang pagkaayos ng mga policy\n" +"\n" +"Mga option:\n" +" -h Itong tulong na ito.\n" +" -p=? Ang cache ng mga pakete.\n" +" -s=? Ang cache ng mga source.\n" +" -q Huwag ipakita ang hudyat ng progreso.\n" +" -i Ipakita lamang ang importanteng mga dep para sa utos na unmet\n" +" -c=? Basahin ang talaksang pagkaayos na ito\n" +" -o=? Magtakda ng isang option ng pagkaayos, hal. -o dir::cache=/tmp\n" +"Basahin ang pahina ng manwal ng apt-cache(8) at apt.conf(5) para sa \n" +"karagdagang impormasyon\n" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "pagpalit ng pangalan ay bigo, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:163 -#, fuzzy -msgid "Hash Sum mismatch" -msgstr "Di tugmang MD5Sum" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Di tugmang laki" - -#: apt-pkg/acquire-item.cc:173 +#: cmdline/apt-cdrom.cc:76 #, fuzzy -msgid "Invalid file format" -msgstr "Di tanggap na operasyon %s" +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Bigyan ng pangalan ang Disk na ito, tulad ng 'Debian 2.1r1 Disk 1'" -#: apt-pkg/acquire-item.cc:1573 -#, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Paki-pasok ang isang Disk sa drive at pindutin ang enter" -#: apt-pkg/acquire-item.cc:1589 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Hindi ma-parse ang talaksang pakete %s (1)" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Walang public key na magamit para sa sumusunod na key ID:\n" +msgid "Failed to mount '%s' to '%s'" +msgstr "Bigo ang pagpangalan muli ng %s tungong %s" -#: apt-pkg/acquire-item.cc:1669 -#, c-format +#: cmdline/apt-cdrom.cc:178 msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" - -#: apt-pkg/acquire-item.cc:1691 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." msgstr "" -#: apt-pkg/acquire-item.cc:1721 -#, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Ulitin ang prosesong ito para sa lahat ng mga CD sa inyong set." -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 -#, c-format -msgid "GPG error: %s: %s" -msgstr "" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Mga argumento ay hindi naka-pares" -#: apt-pkg/acquire-item.cc:1859 -#, c-format +#: cmdline/apt-config.cc:89 msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"Hindi ko mahanap ang talaksan para sa paketeng %s. Maaaring kailanganin " -"niyong ayusin ng de kamay ang paketeng ito. (dahil sa walang arch)" - -#: apt-pkg/acquire-item.cc:1925 -#, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" - -#: apt-pkg/acquire-item.cc:1983 -#, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Sira ang talaksang index ng mga pakete. Walang Filename: field para sa " -"paketeng %s." - -#: apt-pkg/vendorlist.cc:85 -#, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Block ng nagbebenta %s ay walang fingerprint" - -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "Nawawala ang directory ng talaan %spartial." - -#: apt-pkg/acquire.cc:91 -#, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "Nawawala ang directory ng arkibo %spartial." - -#: apt-pkg/acquire.cc:99 -#, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "Hindi maaldaba ang directory ng talaan" - -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 -#, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Kinukuha ang talaksang %li ng %li (%s ang natitira)" - -#: apt-pkg/acquire.cc:904 -#, c-format -msgid "Retrieving file %li of %li" -msgstr "Kinukuha ang talaksang %li ng %li" - -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Bigo sa pagkuha ng %s %s\n" - -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"May mga talaksang index na hindi nakuha, sila'y di pinansin, o ginamit ang " -"mga luma na lamang." - -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Kailangan niyong maglagay ng 'source' URIs sa inyong sources.list" - -#: apt-pkg/policy.cc:83 -#, c-format -msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" -msgstr "" - -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Di tanggap na record sa talaksang pagtatangi, walang Package header" - -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Hindi naintindihan ang uri ng pin %s" - -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Walang prioridad (o sero) na nakatakda para sa pin" - -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 -#, c-format -msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" -msgstr "" - -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Hindi mabuksan ang talaksang %s" - -#: apt-pkg/packagemanager.cc:583 -#, c-format -msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." -msgstr "" -"Ang takbo ng pag-instol na ito ay nangangailangan ng pansamantalang " -"pagtanggal ng paketeng esensyal na %s dahil sa isang Conflicts/Pre-Depends " -"loop. Madalas ay masama ito, ngunit kung nais niyo talagang gawin ito, i-" -"activate ang APT::Force-LoopBreak na option." - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Labis ang haba ng linyang %u sa talaksang pagkukunan %s." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Ina-unmount ang CD-ROM...\n" - -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Ginagamit ang %s bilang mount point ng CD-ROM\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Hinihintay ang disc...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Sinasalang ang CD-ROM...\n" - -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Kinikilala..." - -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Naka-imbak na Label: %s \n" - -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Sinisiyasat ang Disc para sa talaksang index...\n" - -#: apt-pkg/cdrom.cc:734 -#, fuzzy, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Nakahanap ng %i na index ng mga pakete, %i na index ng source at %i na " -"signature\n" - -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" - -#: apt-pkg/cdrom.cc:771 -#, fuzzy, c-format -msgid "Found label '%s'\n" -msgstr "Naka-imbak na Label: %s \n" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Hindi yan tanggap na pangalan, subukan muli.\n" - -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Ang Disc na ito ay nagngangalang: \n" -"'%s'\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kinokopya ang Listahan ng mga Pakete" - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Sinusulat ang bagong listahan ng pagkukunan\n" - -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Mga nakatala sa Listahan ng Source para sa Disc na ito ay:\n" - -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"Kailangan ma-instol muli ang paketeng %s, ngunit hindi ko mahanap ang arkibo " -"para dito." - -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"Error, pkgProblemResolver::Resolve ay naghudyat ng mga break, maaaring dulot " -"ito ng mga paketeng naka-hold." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -"Hindi maayos ang mga problema, mayroon kayong sirang mga pakete na naka-hold." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Ginagawa ang puno ng mga dependensiya" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Bersyong Kandidato" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Pagbuo ng Dependensiya" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -#, fuzzy -msgid "Reading state information" -msgstr "Pinagsasama ang magagamit na impormasyon" - -#: apt-pkg/depcache.cc:250 -#, fuzzy, c-format -msgid "Failed to open StateFile %s" -msgstr "Bigo ang pagbukas ng %s" - -#: apt-pkg/depcache.cc:256 -#, fuzzy, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Bigo sa pagsulat ng talaksang %s" - -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Hindi ma-parse ang talaksang pakete %s (1)" - -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Hindi ma-parse ang talaksang pakete %s (2)" - -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Release '%s' para sa '%s' ay hindi nahanap" - -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Bersyon '%s' para sa '%s' ay hindi nahanap" - -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "Hindi mahanap ang paketeng %s" +"Pag-gamit: apt-config [mga option] utos\n" +"\n" +"Ang apt-config ay simpleng kagamitan sa pagbasa ng talaksang pagkaayos\n" +"ng APT\n" +"\n" +"Mga utos:\n" +" shell - modong shell\n" +" dump - ipakita ang pagkaayos\n" +"Mga option:\n" +" -h Itong tulong na ito.\n" +" -c=? Basahin itong talaksang pagkaayos\n" +" -o=? Itakda ang isang option sa pagkaayos, hal. -o dir::cache=/tmp\n" -#: apt-pkg/cacheset.cc:603 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format -msgid "Couldn't find task '%s'" +msgid "Can not find a package for architecture '%s'" msgstr "Hindi mahanap ang paketeng %s" -#: apt-pkg/cacheset.cc:609 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" +msgid "Can not find a package '%s' with version '%s'" msgstr "Hindi mahanap ang paketeng %s" -#: apt-pkg/cacheset.cc:615 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" +msgid "Can not find a package '%s' with release '%s'" msgstr "Hindi mahanap ang paketeng %s" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" - -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" - -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" +#: cmdline/apt-get.cc:367 +#, fuzzy, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Hindi ma-stat ang talaan ng pagkukunan ng pakete %s" -#: apt-pkg/cacheset.cc:655 +#: cmdline/apt-get.cc:423 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +msgid "Can not find version '%s' of package '%s'" msgstr "" -#: apt-pkg/cacheset.cc:663 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" +msgid "Couldn't find package %s" +msgstr "Hindi mahanap ang paketeng %s" -#: apt-pkg/indexrecords.cc:78 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "Hindi ma-parse ang talaksang pakete %s (1)" +msgid "%s set to manually installed.\n" +msgstr "ngunit ang %s ay iluluklok" -#: apt-pkg/indexrecords.cc:86 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "Paunawa, pinili ang %s imbes na %s\n" +msgid "%s set to automatically installed.\n" +msgstr "ngunit ang %s ay iluluklok" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Di tanggap na linya sa talaksang diversion: %s" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Error na internal, may nasira ang problem resolver" -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Hindi ma-parse ang talaksang pakete %s (1)" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Hindi maaldaba ang directory ng download" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (URI parse)" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Kailangang magtakda ng kahit isang pakete na kunan ng source" -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "Hindi mahanap ang paketeng source para sa %s" -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist)" +#: cmdline/apt-get.cc:786 +#, c-format +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" -#: apt-pkg/sourcelist.cc:184 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<" +#: cmdline/apt-get.cc:791 +#, c-format +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" -#: apt-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<" +#: cmdline/apt-get.cc:843 +#, c-format +msgid "Skipping already downloaded file '%s'\n" +msgstr "Linaktawan ang nakuha na na talaksan '%s'\n" -#: apt-pkg/sourcelist.cc:193 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<" +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#, c-format +msgid "Couldn't determine free space in %s" +msgstr "Hindi matantsa ang libreng puwang sa %s" -#: apt-pkg/sourcelist.cc:206 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (URI)" +msgid "You don't have enough free space in %s" +msgstr "Kulang kayo ng libreng puwang sa %s" -#: apt-pkg/sourcelist.cc:208 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist)" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Kailangang kumuha ng %sB/%sB ng arkibong source.\n" -#: apt-pkg/sourcelist.cc:211 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (URI parse)" +msgid "Need to get %sB of source archives.\n" +msgstr "Kailangang kumuha ng %sB ng arkibong source.\n" -#: apt-pkg/sourcelist.cc:217 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (absolute dist)" +msgid "Fetch source %s\n" +msgstr "Kunin ang Source %s\n" -#: apt-pkg/sourcelist.cc:224 +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Bigo sa pagkuha ng ilang mga arkibo." + +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Kumpleto ang pagkakuha ng mga talaksan sa modong pagkuha lamang" + +#: cmdline/apt-get.cc:950 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Linaktawan ang pagbuklat ng nabuklat na na source sa %s\n" -#: apt-pkg/sourcelist.cc:335 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Opening %s" -msgstr "Binubuksan %s" +msgid "Unpack command '%s' failed.\n" +msgstr "Bigo ang utos ng pagbuklat '%s'.\n" -#: apt-pkg/sourcelist.cc:371 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Maling anyo ng linyang %u sa talaksang pagkukunan %s (uri)" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Paki-siguro na nakaluklok ang paketeng 'dpkg-dev'.\n" -#: apt-pkg/sourcelist.cc:375 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Hindi kilalang uri '%s' sa linyang %u sa talaksan ng pagkukunan %s" +msgid "Build command '%s' failed.\n" +msgstr "Utos na build '%s' ay bigo.\n" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Hindi kilalang uri '%s' sa linyang %u sa talaksan ng pagkukunan %s" +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Bigo ang prosesong anak" -#: apt-pkg/deb/dpkgpm.cc:95 -#, fuzzy, c-format -msgid "Installing %s" -msgstr "Iniluklok ang %s" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "Kailangang magtakda ng kahit isang pakete na susuriin ang builddeps" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#: cmdline/apt-get.cc:1055 #, c-format -msgid "Configuring %s" -msgstr "Isasaayos ang %s" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Removing %s" -msgstr "Tinatanggal ang %s" +msgid "Unable to get build-dependency information for %s" +msgstr "Hindi makuha ang impormasyong build-dependency para sa %s" -#: apt-pkg/deb/dpkgpm.cc:98 +#: cmdline/apt-get.cc:1102 +#, c-format +msgid "%s has no build depends.\n" +msgstr "Walang build depends ang %s.\n" + +#: cmdline/apt-get.cc:1272 #, fuzzy, c-format -msgid "Completely removing %s" -msgstr "Natanggal ng lubusan ang %s" +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi " +"mahanap" -#: apt-pkg/deb/dpkgpm.cc:99 +#: cmdline/apt-get.cc:1290 #, c-format -msgid "Noting disappearance of %s" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" +"Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi " +"mahanap" -#: apt-pkg/deb/dpkgpm.cc:100 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Running post-installation trigger %s" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" +"Bigo sa pagbuo ng dependensiyang %s para sa %s: Ang naka-instol na paketeng " +"%s ay bagong-bago pa lamang." -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#: cmdline/apt-get.cc:1352 #, fuzzy, c-format -msgid "Directory '%s' missing" -msgstr "Nawawala ang directory ng talaan %spartial." +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"Dependensiyang %s para sa %s ay hindi mabuo dahil walang magamit na bersyon " +"ng paketeng %s na tumutugon sa kinakailangang bersyon" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#: cmdline/apt-get.cc:1358 #, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "Hindi mabuksan ang talaksang %s" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi " +"mahanap" -#: apt-pkg/deb/dpkgpm.cc:989 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Preparing %s" -msgstr "Hinahanda ang %s" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Bigo sa pagbuo ng dependensiyang %s para sa %s: %s" -#: apt-pkg/deb/dpkgpm.cc:990 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Unpacking %s" -msgstr "Binubuklat ang %s" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Hindi mabuo ang build-dependencies para sa %s." -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Hinahanda ang %s upang isaayos" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Bigo sa pagproseso ng build dependencies" -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "Iniluklok ang %s" +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Kumokonekta sa %s (%s)" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "Naghahanda para sa pagtanggal ng %s" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Suportadong mga Module:" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "Tinanggal ang %s" +#: cmdline/apt-get.cc:1633 +#, fuzzy +msgid "" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" +msgstr "" +"Pag-gamit: apt-get [mga option] utos\n" +" apt-get [mga option] install|remove pkt1 [pkt2 ...]\n" +" apt-get [mga option] source pkt1 [pkt2 ...]\n" +"\n" +"Ang apt-get ay payak na command line interface para sa pagkuha at\n" +"pag-instol ng mga pakete. Ang pinakamadalas na gamiting utos ay update\n" +"at install.\n" +"\n" +"Mga utos:\n" +" update - Kunin ang bagong listahan ng mga pakete\n" +" upgrade - Gumawa ng upgrade\n" +" install - Mag-instol ng bagong mga pakete (pkt ay libc6 hindi libc6.deb)\n" +" remove - Mag-tanggal ng mga pakete\n" +" source - Kumuha ng arkibong source\n" +" build-dep - Magsaayos ng build-dependencies para sa mga paketeng source\n" +" dist-upgrade - Mag-upgrade ng pamudmod, basahin ang apt-get(8)\n" +" dselect-upgrade - Sundan ang mga pinili sa dselect\n" +" clean - Burahin ang mga nakuhang mga talaksang naka-arkibo\n" +" autoclean - Burahin ang mga lumang naka-arkibo na nakuhang mga talaksan\n" +" check - Tiyakin na walang mga sirang dependensiya\n" +"\n" +"Mga option:\n" +" -h Itong tulong na ito.\n" +" -q Output na maaaring itala - walang indikator ng progreso\n" +" -qq Walang output maliban sa mga error\n" +" -d Kunin lamang - HINDI mag-instol o mag-buklat ng mga arkibo\n" +" -s Walang gagawin. Mag-simulate lamang ang pagkasunod-sunod.\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Subukang magpatuloy kung bigo ang pagsuri ng integridad\n" +" -m Subukang magpatuloy kung hindi mahanap ang mga arkibo\n" +" -u Ipakita rin ang listahan ng mga paketeng i-upgrade\n" +" -b Ibuo ang paketeng source matapos kunin ito\n" +" -V Ipakita ng buo ang bilang ng bersyon\n" +" -c=? Basahin itong talaksang pagkaayos\n" +" -o=? Itakda ang isang option ng pagkaayos, hal. -o dir::cache=/tmp\n" +"Basahin ang pahinang manwal ng apt-get(8), sources.list(5) at apt.conf(5)\n" +"para sa karagdagang impormasyon at mga option.\n" +" Ang APT na ito ay may Kapangyarihan Super Kalabaw.\n" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Naghahanda upang tanggalin ng lubusan ang %s" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Kailangang magtakda ng kahit isang pakete na kunan ng source" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "Natanggal ng lubusan ang %s" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#: cmdline/apt-mark.cc:68 #, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Hindi makapagsulat sa %s" +msgid "%s can not be marked as it is not installed.\n" +msgstr "ngunit ito ay hindi nakaluklok" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "ngunit ang %s ay iluluklok" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "ngunit ang %s ay iluluklok" + +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s ay pinakabagong bersyon na.\n" + +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s ay pinakabagong bersyon na.\n" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format msgid "Waited for %s but it wasn't there" msgstr "Naghintay, para sa %s ngunit wala nito doon" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" - -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "ngunit ang %s ay iluluklok" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "Bigo ang pagbukas ng %s" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: cmdline/apt-mark.cc:392 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: cmdline/apt.cc:47 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -#: apt-pkg/deb/debsystem.cc:91 +#: methods/cdrom.cc:203 #, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Hindi mabasa ang database ng cdrom %s" + +#: methods/cdrom.cc:212 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" msgstr "" +"Paki-gamit ang apt-cdrom upang makilala ng APT itong CD na ito. Hindi " +"maaaring gamitin ang apt-get update upang magdagdag ng bagong mga CD" -#: apt-pkg/deb/debsystem.cc:94 -#, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Hindi maaldaba ang directory ng talaan" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Maling CD" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: methods/cdrom.cc:249 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Hindi mai-unmount ang CD-ROM sa %s, maaaring ginagamit pa ito." -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Hindi nahanap ang Disk." -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Hindi Nahanap ang Talaksan" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Bigo ang pag-stat" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Bigo ang pagtakda ng oras ng pagbago" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Di tanggap na URI, mga lokal na URI ay di dapat mag-umpisa ng //" -#: apt-pkg/contrib/strutl.cc:1243 -#, c-format -msgid "Selection %s not found" -msgstr "Piniling %s ay hindi nahanap" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Pumapasok" -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "" -"Hindi ginagamit ang pagaldaba para sa basa-lamang na talaksang aldaba %s" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Hindi malaman ang pangalan ng peer" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Hindi mabuksan ang talaksang aldaba %s" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Hindi malaman ang pangalang lokal" -#: apt-pkg/contrib/fileutl.cc:218 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "" -"Hindi gumagamit ng pag-aldaba para sa talaksang aldaba %s na naka-mount sa " -"nfs" +msgid "The server refused the connection and said: %s" +msgstr "Inayawan ng server ang ating koneksyon at ang sabi ay: %s" -#: apt-pkg/contrib/fileutl.cc:223 +#: methods/ftp.cc:225 #, c-format -msgid "Could not get lock %s" -msgstr "hindi makuha ang aldaba %s" +msgid "USER failed, server said: %s" +msgstr "Bigo ang USER/GUMAGAMIT, sabi ng server ay: %s" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: methods/ftp.cc:232 #, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +msgid "PASS failed, server said: %s" +msgstr "Bigo ang PASS, sabi ng server ay: %s" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" +"May tinakdang katuwang na server ngunit walang login script, walang laman " +"ang Acquire::ftp::ProxyLogin." -#: apt-pkg/contrib/fileutl.cc:412 +#: methods/ftp.cc:280 #, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Bigo ang utos sa login script '%s', sabi ng server ay: %s" -#: apt-pkg/contrib/fileutl.cc:421 +#: methods/ftp.cc:306 #, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" -msgstr "" +msgid "TYPE failed, server said: %s" +msgstr "Bigo ang TYPE, sabi ng server ay: %s" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Nakatanggap ang sub-process %s ng segmentation fault." +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Lumipas ang koneksyon" -#: apt-pkg/contrib/fileutl.cc:826 -#, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "Nakatanggap ang sub-process %s ng segmentation fault." +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Sinarhan ng server ang koneksyon" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Naghudyat ang sub-process %s ng error code (%u)" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Error sa pagbasa" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Ang sub-process %s ay lumabas ng di inaasahan" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "May sagot na bumubo sa buffer." + +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Sira ang protocol" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 msgid "Write error" msgstr "Error sa pagsulat" -#: apt-pkg/contrib/fileutl.cc:913 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problema sa pagsara ng talaksan" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Hindi maka-likha ng socket" -#: apt-pkg/contrib/fileutl.cc:1101 +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Hindi maka-konekta sa socket ng datos, nag-time-out ang koneksyon" + +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Bigo" + +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Hindi maka-konekta sa socket na passive." + +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "di makakuha ang getaddrinfo ng socket na nakikinig" + +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Hindi maka-bind ng socket" + +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Hindi makarinig sa socket" + +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Hindi malaman ang pangalan ng socket" + +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Hindi makapagpadala ng utos na PORT" + +#: methods/ftp.cc:802 #, c-format -msgid "Could not open file %s" -msgstr "Hindi mabuksan ang talaksang %s" +msgid "Unknown address family %u (AF_*)" +msgstr "Di kilalang pamilya ng address %u (AF_*)" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "Hindi makapag-bukas ng pipe para sa %s" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "Bigo ang EPRT, sabi ng server ay: %s" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Bigo ang paglikha ng subprocess IPC" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Nag-timeout ang socket ng datos" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Bigo ang pag-exec ng taga-compress" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Hindi makatanggap ng koneksyon" + +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problema sa pag-hash ng talaksan" + +#: methods/ftp.cc:890 +#, c-format +msgid "Unable to fetch file, server said '%s'" +msgstr "Hindi makakuha ng talaksan, sabi ng server ay '%s'" + +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Nag-timeout ang socket ng datos" + +#: methods/ftp.cc:935 +#, c-format +msgid "Data transfer failed, server said '%s'" +msgstr "Bigo ang paglipat ng datos, sabi ng server ay '%s'" + +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Tanong" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Error sa pagbasa" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Hindi ma-invoke " -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "pagbasa, mayroong %lu na babasahin ngunit walang natira" +#: methods/connect.cc:76 +#, c-format +msgid "Connecting to %s (%s)" +msgstr "Kumokonekta sa %s (%s)" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "pagsulat, mayroon pang %lu na isusulat ngunit hindi makasulat" +#: methods/connect.cc:87 +#, c-format +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Problema sa pagsara ng talaksan" +#: methods/connect.cc:94 +#, c-format +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Hindi makalikha ng socket para sa %s (f=%u t=%u p=%u)" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problema sa pag-sync ng talaksan" +#: methods/connect.cc:100 +#, c-format +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Hindi maumpisahan ang koneksyon sa %s:%s (%s)." -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "Problema sa pag-unlink ng talaksan" +#: methods/connect.cc:108 +#, c-format +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Hindi maka-konekta sa %s:%s (%s), nag-timeout ang koneksyon" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problema sa pag-sync ng talaksan" +#: methods/connect.cc:126 +#, c-format +msgid "Could not connect to %s:%s (%s)." +msgstr "Hindi maka-konekta sa %s:%s (%s)." -#: apt-pkg/contrib/progress.cc:148 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Error!" +msgid "Connecting to %s" +msgstr "Kumokonekta sa %s" -#: apt-pkg/contrib/progress.cc:150 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Tapos" +msgid "Could not resolve '%s'" +msgstr "Hindi maresolba ang '%s'" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#: methods/connect.cc:205 +#, c-format +msgid "Temporary failure resolving '%s'" +msgstr "Pansamantalang kabiguan sa pagresolba ng '%s'" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#: methods/connect.cc:209 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Tapos" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Hindi mai-mmap ang talaksang walang laman" +msgid "System error resolving '%s:%s'" +msgstr "May naganap na kababalaghan sa pagresolba ng '%s:%s' (%i)" -#: apt-pkg/contrib/mmap.cc:111 +#: methods/connect.cc:211 #, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Hindi makapag-bukas ng pipe para sa %s" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "May naganap na kababalaghan sa pagresolba ng '%s:%s' (%i)" -#: apt-pkg/contrib/mmap.cc:119 +#: methods/connect.cc:258 #, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Hindi makagawa ng mmap ng %lu na byte" - -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "Hindi mabuksan %s" +msgid "Unable to connect to %s:%s:" +msgstr "Hindi maka-konekta sa %s %s:" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -#, fuzzy -msgid "Unable to synchronize mmap" -msgstr "Hindi ma-invoke " +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "" +"Error na internal: Tanggap na lagda, ngunit hindi malaman ang key " +"fingerprint?!" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Hindi makagawa ng mmap ng %lu na byte" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Hindi kukulang sa isang hindi tanggap na lagda ang na-enkwentro." -#: apt-pkg/contrib/mmap.cc:322 +#: methods/gpgv.cc:174 #, fuzzy -msgid "Failed to truncate file" -msgstr "Bigo sa pagsulat ng talaksang %s" +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "" +"Hindi maitakbo ang '%s' upang maberipika ang lagda (nakaluklok ba ang gpgv?)" -#: apt-pkg/contrib/mmap.cc:341 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Hindi kilalang error sa pag-execute ng gpgv" + +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Ang sumusunod na mga lagda ay imbalido:\n" + +#: methods/gpgv.cc:231 msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" +"Ang sumusunod na mga lagda ay hindi maberipika dahil ang public key ay hindi " +"available:\n" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Di mai-stat ang mount point %s" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Error sa pagsusulat sa talaksan" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Bigo sa pag-stat ng cdrom" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Error sa pagbasa mula sa server, sinarhan ng remote ang koneksyon" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Hindi kilalang katagang uri: '%c'" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Error sa pagbasa mula sa server" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Binubuksan ang talaksang pagsasaayos %s" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Error sa pagsulat sa talaksan" -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Syntax error %s:%u: Nag-umpisa ang block na walang pangalan." +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Bigo ang pagpili" -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Syntax error %s:%u: Maling anyo ng Tag" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Nag-timeout ang koneksyon" -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Syntax error %s:%u: May basura matapos ng halaga" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Error sa pagsulat ng talaksang output" -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Naghihintay ng panimula" + +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Maling linyang panimula" + +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Nagpadala ang HTTP server ng di tanggap na reply header" + +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "Nagpadala ang HTTP server ng di tanggap na Content-Length header" + +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "Nagpadala ang HTTP server ng di tanggap na Content-Range header" + +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Sira ang range support ng HTTP server na ito" + +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Di kilalang anyo ng petsa" + +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Maling datos sa panimula" + +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Bigo ang koneksyon" + +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Internal na error" + +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" + +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "" +"Error na internal, tinawagan ang InstallPackages na may sirang mga pakete!" + +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." msgstr "" -"Syntax error %s:%u: Maaari lamang gawin ang mga direktiba sa tuktok na antas" +"May mga paketeng kailangang tanggalin ngunit naka-disable ang Tanggal/Remove." -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Syntax error %s:%u: Labis ang pagkaka-nest ng mga include" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Error na internal, hindi natapos ang pagsaayos na pagkasunud-sunod" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Nakapagtataka... Hindi magkatugma ang laki, mag-email sa apt@packages.debian." +"org" + +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Syntax error %s:%u: Sinama mula dito" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Kailangang kumuha ng %sB/%sB ng arkibo.\n" -#: apt-pkg/contrib/configuration.cc:897 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Syntax error %s:%u: Di suportadong direktiba '%s'" +msgid "Need to get %sB of archives.\n" +msgstr "Kailangang kumuha ng %sB ng arkibo.\n" -#: apt-pkg/contrib/configuration.cc:900 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" -"Syntax error %s:%u: Maaari lamang gawin ang mga direktiba sa tuktok na antas" - -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Syntax error %s:%u: May basura sa dulo ng talaksan" +"Matapos magbuklat ay %sB na karagdagang puwang sa disk ang magagamit.\n" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, fuzzy, c-format -msgid "No keyring installed in %s." -msgstr "Ina-abort ang pag-instol." +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Matapos magbuklat ay %sB na puwang sa disk ang mapapalaya.\n" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-private/private-install.cc:200 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Opsyon sa command line '%c' [mula %s] ay di kilala." +msgid "You don't have enough free space in %s." +msgstr "Kulang kayo ng libreng puwang sa %s." -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "Opsyon sa command line %s ay di naintindihan." +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "May mga problema at -y ay ginamit na walang --force-yes" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "Opsyon sa command line %s ay hindi boolean" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Tinakdang Trivial Only ngunit hindi ito operasyong trivial." -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "Opsyon %s ay nangangailangan ng argumento" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Oo, gawin ang sinasabi ko!" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-private/private-install.cc:222 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" -"Opsyon %s: Ang pagtakda ng aytem sa pagkaayos ay nangangailangan ng " -"=<halaga>." +"Kayo ay gagawa ng bagay na maaaring makasama sa inyong sistema.\n" +"Upang magpatuloy, ibigay ang pariralang '%s'\n" +" ?] " -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Opsyon %s ay nangangailangan ng argumentong integer, hindi '%s'" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Abort." -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Opsyon '%s' ay labis ang haba" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Nais niyo bang magpatuloy?" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Hindi naintindihan ang %s, subukan ang true o false." +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "May mga talaksang hindi nakuha" -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "Di tanggap na operasyon %s" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"Hindi nakuha ang ilang mga arkibo, maaaring patakbuhin ang apt-get update o " +"subukang may --fix-missing?" -#: cmdline/apt-cache.cc:149 -#, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Paketeng %s bersyon %s ay may kulang na dep:\n" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing at pagpalit ng media ay kasalukuyang hindi suportado" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Kabuuan ng mga Pakete : " +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Hindi maayos ang mga kulang na pakete." -#: cmdline/apt-cache.cc:279 -#, fuzzy -msgid "Total package structures: " -msgstr "Kabuuan ng mga Pakete : " +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Ina-abort ang pag-instol." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Normal na Pakete: " +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Purong Birtwual na Pakete: " +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Nag-iisang Birtwal na Pakete: " +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Halong Birtwal na Pakete: " +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Kulang/Nawawala: " +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "" +"Ang sumusunod na impormasyon ay maaaring makatulong sa pag-ayos ng problema:" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Kabuuan ng Natatanging mga Bersyon: " +#: apt-private/private-install.cc:506 +#, fuzzy +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Error na internal, may nasira ang problem resolver" -#: cmdline/apt-cache.cc:327 +#: apt-private/private-install.cc:513 #, fuzzy -msgid "Total distinct descriptions: " -msgstr "Kabuuan ng Natatanging mga Bersyon: " +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "Ang sumusunod na mga paketeng BAGO ay iluluklok:" +msgstr[1] "Ang sumusunod na mga paketeng BAGO ay iluluklok:" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Kabuuan ng mga Dependensiya: " +#: apt-private/private-install.cc:517 +#, fuzzy, c-format +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "Ang sumusunod na mga paketeng BAGO ay iluluklok:" +msgstr[1] "Ang sumusunod na mga paketeng BAGO ay iluluklok:" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Kabuuan ng ugnayang Ber/Talaksan: " +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "" +"Maaaring patakbuhin niyo ang 'apt-get -f install' upang ayusin ang mga ito:" + +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"May mga dependensiyang kulang. Subukan ang 'apt-get -f install' na walang " +"mga pakete (o magtakda ng solusyon)." + +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"May mga paketeng hindi ma-instol. Maaring may hiniling kayong imposible\n" +"o kung kayo'y gumagamit ng pamudmod na unstable ay may ilang mga paketeng\n" +"kailangan na hindi pa nalikha o linipat mula sa Incoming." -#: cmdline/apt-cache.cc:334 -#, fuzzy -msgid "Total Desc/File relations: " -msgstr "Kabuuan ng ugnayang Ber/Talaksan: " +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Sirang mga pakete" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Kabuuan ng Mapping ng Provides: " +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Ang mga sumusunod na extra na pakete ay luluklokin:" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Kabuuan ng Globbed String: " +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Mga paketeng mungkahi:" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Kabuuan ng gamit na puwang ng Dependensiyang Bersyon: " +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Mga paketeng rekomendado:" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Kabuuan ng Hindi Nagamit na puwang: " +#: apt-private/private-install.cc:825 +#, c-format +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "" +"Linaktawan ang %s, ito'y nakaluklok na at hindi nakatakda ang upgrade.\n" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Kabuuan ng puwang na napag-tuosan: " +#: apt-private/private-install.cc:829 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"Linaktawan ang %s, ito'y nakaluklok na at hindi nakatakda ang upgrade.\n" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 +#: apt-private/private-install.cc:841 #, c-format -msgid "Package file %s is out of sync." -msgstr "Wala sa sync ang talaksan ng paketeng %s." +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Ang pagluklok muli ng %s ay hindi maaari, hindi ito makuha.\n" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Walang nahanap na mga pakete" +#: apt-private/private-install.cc:846 +#, c-format +msgid "%s is already the newest version.\n" +msgstr "%s ay pinakabagong bersyon na.\n" -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "Kailangan niyong magbigay ng isa lamang na pattern" +#: apt-private/private-install.cc:894 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Ang napiling bersyon %s (%s) para sa %s\n" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Ang napiling bersyon %s (%s) para sa %s\n" + +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "Hindi nakaluklok ang paketeng %s, kaya't hindi ito tinanggal\n" + +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Hindi nakaluklok ang paketeng %s, kaya't hindi ito tinanggal\n" + +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Talaksang Pakete:" +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Wala sa sync ang cache, hindi ma-x-ref ang talaksang pakete" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Inaayos ang mga dependensiya..." -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Mga naka-Pin na Pakete:" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " ay bigo." -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(hindi nahanap)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Hindi maayos ang mga dependensiya" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Nakaluklok: " +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Hindi mai-minimize ang upgrade set" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidato: " +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Tapos" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(wala)" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Maaari ninyong patakbuhin ang 'apt-get -f install' upang ayusin ito." -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Naka-Pin na Pakete: " +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "May mga kulang na dependensiya. Subukan niyong gamitin ang -f." -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Talaang Bersyon:" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-private/private-output.cc:234 #, fuzzy, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s para sa %s %s kinompile noong %s %s\n" +msgid "[installed,upgradable to: %s]" +msgstr " [Nakaluklok]" -#: cmdline/apt-cache.cc:1749 +#: apt-private/private-output.cc:238 #, fuzzy -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgid "[installed,local]" +msgstr " [Nakaluklok]" + +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"Pag-gamit: apt-cache [mga option] utos\n" -" apt-cache [mga option] add talaksan1 [talaksan2 ...]\n" -" apt-cache [mga option] showpkg pkt1 [pkt2 ...]\n" -" apt-cache [mga option] showsrc pkt1 [pkt2 ...]\n" -"\n" -"apt-cache ay isang kagamitang low-level para sa pag-manipula\n" -"ng mga talaksan sa binary cache ng APT, at upang makakuha ng\n" -"impormasyon mula sa kanila\n" -"\n" -"Mga utos:\n" -" add - Magdagdag ng talaksang pakete sa source cache\n" -" gencaches - Buuin pareho ang cache ng pakete at source\n" -" showpkg - Ipakita ang impormasyon tungkol sa isang pakete\n" -" showsrc - Ipakita ang mga record ng source\n" -" stats - Ipakita ang ilang mga estadistika\n" -" dump - Ipakita ang buong talaksan sa anyong maikli\n" -" dumpavail - Ipakita ang talaksang available sa stdout\n" -" unmet - Ipakita ang mga kulang na mga dependensiya\n" -" search - Maghanap sa listahan ng mga pakete ng regex pattern\n" -" show - Ipakita ang nababasang record ng pakete\n" -" depends - Ipakita ang impormasyon tungkol sa ganap na dependensiya\n" -" ng pakete\n" -" rdepends - Ipakita ang impormasyong kabaliktarang dependensiya ng pakete\n" -" pkgnames - Ipakita ang listahan ng pangalan ng lahat ng mga pakete\n" -" dotty - Bumuo ng graph ng mga pakete para sa GraphViz\n" -" xvcg - Bumuo ng graph ng mga pakete para sa xvcg\n" -" policy - Ipakita ang pagkaayos ng mga policy\n" -"\n" -"Mga option:\n" -" -h Itong tulong na ito.\n" -" -p=? Ang cache ng mga pakete.\n" -" -s=? Ang cache ng mga source.\n" -" -q Huwag ipakita ang hudyat ng progreso.\n" -" -i Ipakita lamang ang importanteng mga dep para sa utos na unmet\n" -" -c=? Basahin ang talaksang pagkaayos na ito\n" -" -o=? Magtakda ng isang option ng pagkaayos, hal. -o dir::cache=/tmp\n" -"Basahin ang pahina ng manwal ng apt-cache(8) at apt.conf(5) para sa \n" -"karagdagang impormasyon\n" -#: cmdline/apt-cdrom.cc:76 -#, fuzzy -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Bigyan ng pangalan ang Disk na ito, tulad ng 'Debian 2.1r1 Disk 1'" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Nakaluklok]" + +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [Nakaluklok]" + +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "" + +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "" + +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "ngunit ang %s ay nakaluklok" + +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "ngunit ang %s ay iluluklok" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Paki-pasok ang isang Disk sa drive at pindutin ang enter" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "ngunit hindi ito maaaring iluklok" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Bigo ang pagpangalan muli ng %s tungong %s" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "ngunit ito ay birtwal na pakete" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "ngunit ito ay hindi nakaluklok" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Ulitin ang prosesong ito para sa lahat ng mga CD sa inyong set." +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "ngunit ito ay hindi iluluklok" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Mga argumento ay hindi naka-pares" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " o" -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -msgstr "" -"Pag-gamit: apt-config [mga option] utos\n" -"\n" -"Ang apt-config ay simpleng kagamitan sa pagbasa ng talaksang pagkaayos\n" -"ng APT\n" -"\n" -"Mga utos:\n" -" shell - modong shell\n" -" dump - ipakita ang pagkaayos\n" -"Mga option:\n" -" -h Itong tulong na ito.\n" -" -c=? Basahin itong talaksang pagkaayos\n" -" -o=? Itakda ang isang option sa pagkaayos, hal. -o dir::cache=/tmp\n" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Ang sumusunod na mga pakete ay may kulang na dependensiya:" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Hindi mahanap ang paketeng %s" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Ang sumusunod na mga paketeng BAGO ay iluluklok:" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Hindi mahanap ang paketeng %s" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Ang sumusunod na mga pakete ay TATANGGALIN:" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Hindi mahanap ang paketeng %s" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Ang sumusunod na mga pakete ay hinayaang maiwanan:" -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Hindi ma-stat ang talaan ng pagkukunan ng pakete %s" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Ang susunod na mga pakete ay iu-upgrade:" -#: cmdline/apt-get.cc:423 +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Ang susunod na mga pakete ay ida-DOWNGRADE:" + +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Ang susunod na mga hinawakang mga pakete ay babaguhin:" + +#: apt-private/private-output.cc:668 #, c-format -msgid "Can not find version '%s' of package '%s'" +msgid "%s (due to %s) " +msgstr "%s (dahil sa %s) " + +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" +"BABALA: Ang susunod na mga paketeng esensyal ay tatanggalin.\n" +"HINDI ito dapat gawin kung hindi niyo alam ng husto ang inyong ginagawa!" -#: cmdline/apt-get.cc:454 +#: apt-private/private-output.cc:707 #, c-format -msgid "Couldn't find package %s" -msgstr "Hindi mahanap ang paketeng %s" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu na nai-upgrade, %lu na bagong luklok, " -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, fuzzy, c-format -msgid "%s set to manually installed.\n" -msgstr "ngunit ang %s ay iluluklok" +#: apt-private/private-output.cc:711 +#, c-format +msgid "%lu reinstalled, " +msgstr "%lu iniluklok muli, " -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "ngunit ang %s ay iluluklok" +#: apt-private/private-output.cc:713 +#, c-format +msgid "%lu downgraded, " +msgstr "%lu nai-downgrade, " -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: apt-private/private-output.cc:715 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu na tatanggalin at %lu na hindi inupgrade\n" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Error na internal, may nasira ang problem resolver" +#: apt-private/private-output.cc:719 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "%lu na hindi lubos na nailuklok o tinanggal.\n" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Hindi maaldaba ang directory ng download" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[O/h]" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Kailangang magtakda ng kahit isang pakete na kunan ng source" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[o/H]" + +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "O" + +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "H" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Hindi mahanap ang paketeng source para sa %s" +msgid "Regex compilation error - %s" +msgstr "Error sa pag-compile ng regex - %s" -#: cmdline/apt-get.cc:786 +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Ang utos na update ay hindi tumatanggap ng mga argumento" + +#: apt-private/private-update.cc:90 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#: cmdline/apt-get.cc:791 +#: apt-private/private-show.cc:156 #, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" + +#: apt-private/private-main.cc:32 msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Linaktawan ang nakuha na na talaksan '%s'\n" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "" +"BABALA: Ang susunod na mga pakete ay hindi matiyak ang pagka-awtentiko!" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "Hindi matantsa ang libreng puwang sa %s" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "" +"Ipina-walang-bisa ang babala tungkol sa pagka-awtentiko ng mga pakete.\n" + +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "May mga paketeng hindi matiyak ang pagka-awtentiko" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "Kulang kayo ng libreng puwang sa %s" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Iluklok ang mga paketeng ito na walang beripikasyon?" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Kailangang kumuha ng %sB/%sB ng arkibong source.\n" +msgid "Failed to fetch %s %s\n" +msgstr "Bigo sa pagkuha ng %s %s\n" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Kailangang kumuha ng %sB ng arkibong source.\n" +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Bigo ang pagpangalan muli ng %s tungong %s" -#: cmdline/apt-get.cc:902 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Fetch source %s\n" -msgstr "Kunin ang Source %s\n" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Bigo sa pagkuha ng ilang mga arkibo." +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Kumpleto ang pagkakuha ng mga talaksan sa modong pagkuha lamang" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Linaktawan ang pagbuklat ng nabuklat na na source sa %s\n" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Sinusuri ang pag-upgrade... " -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Bigo ang utos ng pagbuklat '%s'.\n" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Tapos" -#: cmdline/apt-get.cc:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Paki-siguro na nakaluklok ang paketeng 'dpkg-dev'.\n" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Tumama " -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "Utos na build '%s' ay bigo.\n" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Kunin: " -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Bigo ang prosesong anak" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "DiPansin " -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "Kailangang magtakda ng kahit isang pakete na susuriin ang builddeps" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Err " -#: cmdline/apt-get.cc:1054 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Nakakuha ng %sB ng %s (%sB/s)\n" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Hindi makuha ang impormasyong build-dependency para sa %s" +msgid " [Working]" +msgstr " [May ginagawa]" -#: cmdline/apt-get.cc:1101 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "%s has no build depends.\n" -msgstr "Walang build depends ang %s.\n" - -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi " -"mahanap" +"Pagpalit ng Media: Ikasa ang disk na may pangalang\n" +" '%s'\n" +"sa drive '%s' at pindutin ang enter\n" -#: cmdline/apt-get.cc:1289 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" -"Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi " -"mahanap" +msgid "Unable to read %s" +msgstr "Hindi mabasa ang %s" -#: cmdline/apt-get.cc:1312 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "Unable to change to %s" +msgstr "Di makalipat sa %s" + +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 +#, c-format +msgid "No mirror file '%s' found " msgstr "" -"Bigo sa pagbuo ng dependensiyang %s para sa %s: Ang naka-instol na paketeng " -"%s ay bagong-bago pa lamang." -#: cmdline/apt-get.cc:1351 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"Dependensiyang %s para sa %s ay hindi mabuo dahil walang magamit na bersyon " -"ng paketeng %s na tumutugon sa kinakailangang bersyon" +msgid "Can not read mirror file '%s'" +msgstr "Hindi mabuksan ang talaksang %s" -#: cmdline/apt-get.cc:1357 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "" -"Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi " -"mahanap" +msgid "No entry found in mirror file '%s'" +msgstr "Hindi mabuksan ang talaksang %s" -#: cmdline/apt-get.cc:1380 +#: methods/mirror.cc:445 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Bigo sa pagbuo ng dependensiyang %s para sa %s: %s" +msgid "[Mirror: %s]" +msgstr "" -#: cmdline/apt-get.cc:1395 -#, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Hindi mabuo ang build-dependencies para sa %s." +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Bigo sa paglikha ng IPC pipe sa subprocess" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Bigo sa pagproseso ng build dependencies" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Nagsara ng maaga ang koneksyon" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Kumokonekta sa %s (%s)" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Maling nakatakda na default!" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Suportadong mga Module:" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Pindutin ang enter upang magpatuloy." -#: cmdline/apt-get.cc:1632 -#, fuzzy -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" msgstr "" -"Pag-gamit: apt-get [mga option] utos\n" -" apt-get [mga option] install|remove pkt1 [pkt2 ...]\n" -" apt-get [mga option] source pkt1 [pkt2 ...]\n" -"\n" -"Ang apt-get ay payak na command line interface para sa pagkuha at\n" -"pag-instol ng mga pakete. Ang pinakamadalas na gamiting utos ay update\n" -"at install.\n" -"\n" -"Mga utos:\n" -" update - Kunin ang bagong listahan ng mga pakete\n" -" upgrade - Gumawa ng upgrade\n" -" install - Mag-instol ng bagong mga pakete (pkt ay libc6 hindi libc6.deb)\n" -" remove - Mag-tanggal ng mga pakete\n" -" source - Kumuha ng arkibong source\n" -" build-dep - Magsaayos ng build-dependencies para sa mga paketeng source\n" -" dist-upgrade - Mag-upgrade ng pamudmod, basahin ang apt-get(8)\n" -" dselect-upgrade - Sundan ang mga pinili sa dselect\n" -" clean - Burahin ang mga nakuhang mga talaksang naka-arkibo\n" -" autoclean - Burahin ang mga lumang naka-arkibo na nakuhang mga talaksan\n" -" check - Tiyakin na walang mga sirang dependensiya\n" -"\n" -"Mga option:\n" -" -h Itong tulong na ito.\n" -" -q Output na maaaring itala - walang indikator ng progreso\n" -" -qq Walang output maliban sa mga error\n" -" -d Kunin lamang - HINDI mag-instol o mag-buklat ng mga arkibo\n" -" -s Walang gagawin. Mag-simulate lamang ang pagkasunod-sunod.\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Subukang magpatuloy kung bigo ang pagsuri ng integridad\n" -" -m Subukang magpatuloy kung hindi mahanap ang mga arkibo\n" -" -u Ipakita rin ang listahan ng mga paketeng i-upgrade\n" -" -b Ibuo ang paketeng source matapos kunin ito\n" -" -V Ipakita ng buo ang bilang ng bersyon\n" -" -c=? Basahin itong talaksang pagkaayos\n" -" -o=? Itakda ang isang option ng pagkaayos, hal. -o dir::cache=/tmp\n" -"Basahin ang pahinang manwal ng apt-get(8), sources.list(5) at apt.conf(5)\n" -"para sa karagdagang impormasyon at mga option.\n" -" Ang APT na ito ay may Kapangyarihan Super Kalabaw.\n" -#: cmdline/apt-helper.cc:35 +#: dselect/install:102 #, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "Kailangang magtakda ng kahit isang pakete na kunan ng source" +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "May mga error na naganap habang nagbubuklat. Isasaayos ko ang" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: dselect/install:103 +#, fuzzy +msgid "will be configured. This may result in duplicate errors" +msgstr "mga paketeng naluklok. Maaaring dumulot ito ng mga error na doble" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" +"o mga error na dulot ng kulang na dependensiya. Ito ay ayos lamang, yun lang" -#: cmdline/apt-helper.cc:66 +#: dselect/install:105 msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" +"sa taas nitong kalatas ang importante. Paki-ayusin ang mga ito at patakbuhin " +"muli ang [I]luklok/Instol." -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "ngunit ito ay hindi nakaluklok" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Pinagsasama ang magagamit na impormasyon" -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "ngunit ang %s ay iluluklok" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "Tinawagan ang DropNode sa naka-link pa na node" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "ngunit ang %s ay iluluklok" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Bigo sa paghanap ng elemento ng hash!" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s ay pinakabagong bersyon na.\n" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Bigo ang pagreserba ng diversion" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s ay pinakabagong bersyon na.\n" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Internal error sa AddDiversion" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "ngunit ang %s ay iluluklok" +#: apt-inst/filelist.cc:477 +#, c-format +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Sinusubukang patungan ang diversion, %s -> %s at %s/%s" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Bigo ang pagbukas ng %s" +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "Dobleng pagdagdag ng diversion %s -> %s" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "Nadobleng talaksang conf %s/%s" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" +msgstr "Sobrang haba ang path na %s" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" +msgstr "Binubuklat ang %s ng labis sa isang beses" -#: methods/cdrom.cc:203 +#: apt-inst/extract.cc:142 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Hindi mabasa ang database ng cdrom %s" +msgid "The directory %s is diverted" +msgstr "Ang directory %s ay divertado" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"Paki-gamit ang apt-cdrom upang makilala ng APT itong CD na ito. Hindi " -"maaaring gamitin ang apt-get update upang magdagdag ng bagong mga CD" +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Ang pakete ay sumusubok na magsulat sa target na diversion %s/%s" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Maling CD" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Sobrang haba ng path na diversion" -#: methods/cdrom.cc:249 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Hindi mai-unmount ang CD-ROM sa %s, maaaring ginagamit pa ito." +msgid "Failed to stat %s" +msgstr "Bigo ang pag-stat ng %s" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Hindi nahanap ang Disk." +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Bigo ang pagpangalan muli ng %s tungong %s" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Hindi Nahanap ang Talaksan" +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "Ang directory %s ay papalitan ng hindi-directory" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Bigo ang pag-stat" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Bigo ang paghanap ng node sa kanyang hash bucket" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Sobrang haba ng path" + +#: apt-inst/extract.cc:421 +#, c-format +msgid "Overwrite package match with no version for %s" +msgstr "Patungan ng paketeng nag-match na walang bersion para sa %s" + +#: apt-inst/extract.cc:438 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Ang talaksang %s/%s ay pumapatong sa isang talaksan sa paketeng %s" + +#: apt-inst/extract.cc:498 +#, c-format +msgid "Unable to stat %s" +msgstr "Hindi ma-stat ang %s" + +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, c-format +msgid "Failed to write file %s" +msgstr "Bigo sa pagsulat ng talaksang %s" + +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "Bigo sa pagsara ng talaksang %s" + +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Hindi ito tanggap na arkibong DEB, may kulang na miyembrong '%s'" + +#: apt-inst/deb/debfile.cc:132 +#, c-format +msgid "Internal error, could not locate member %s" +msgstr "Internal error, hindi mahanap ang miyembrong %s" + +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Di maintindihang talaksang control" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Hindi tanggap na signature ng arkibo" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Error sa pagbasa ng header ng miyembro ng arkibo" + +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Hindi tanggap na header ng miyembro ng arkibo" + +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Hindi tanggap na header ng miyembro ng arkibo" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Bitin ang arkibo. Sobrang iksi." -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Bigo ang pagtakda ng oras ng pagbago" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Bigo ang pagbasa ng header ng arkibo" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Di tanggap na URI, mga lokal na URI ay di dapat mag-umpisa ng //" +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Bigo sa paglikha ng mga pipe" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Pumapasok" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Bigo sa pagtakbo ng gzip " -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Hindi malaman ang pangalan ng peer" +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Sirang arkibo" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Hindi malaman ang pangalang lokal" +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Bigo ang checksum ng tar, sira ang arkibo" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-inst/contrib/extracttar.cc:308 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Inayawan ng server ang ating koneksyon at ang sabi ay: %s" +msgid "Unknown TAR header type %u, member %s" +msgstr "Hindi kilalang uri ng TAR header %u, miyembrong %s" -#: methods/ftp.cc:225 +#: apt-pkg/install-progress.cc:57 #, c-format -msgid "USER failed, server said: %s" -msgstr "Bigo ang USER/GUMAGAMIT, sabi ng server ay: %s" +msgid "Progress: [%3i%%]" +msgstr "" -#: methods/ftp.cc:232 +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" + +#: apt-pkg/init.cc:146 #, c-format -msgid "PASS failed, server said: %s" -msgstr "Bigo ang PASS, sabi ng server ay: %s" +msgid "Packaging system '%s' is not supported" +msgstr "Hindi suportado ang sistema ng paketeng '%s'" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"May tinakdang katuwang na server ngunit walang login script, walang laman " -"ang Acquire::ftp::ProxyLogin." +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Hindi matuklasan ang akmang uri ng sistema ng pakete " -#: methods/ftp.cc:280 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Bigo ang utos sa login script '%s', sabi ng server ay: %s" +msgid "Wrote %i records.\n" +msgstr "Nagsulat ng %i na record.\n" -#: methods/ftp.cc:306 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "Bigo ang TYPE, sabi ng server ay: %s" +msgid "Wrote %i records with %i missing files.\n" +msgstr "Nagsulat ng %i na record na may %i na talaksang kulang.\n" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Lumipas ang koneksyon" +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Nagsulat ng %i na record na may %i na talaksang mismatch\n" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Sinarhan ng server ang koneksyon" +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "" +"Nagsulat ng %i na record na may %i na talaksang kulang at %i na talaksang " +"mismatch\n" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "May sagot na bumubo sa buffer." +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Sira ang protocol" +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "Di tugmang MD5Sum" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Hindi maka-likha ng socket" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"Hindi ma-parse o mabuksan ang talaan ng mga pakete o ng talaksang estado." -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Hindi maka-konekta sa socket ng datos, nag-time-out ang koneksyon" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "" +"Maaaring patakbuhin niyo ang apt-get update upang ayusin ang mga problemang " +"ito" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Bigo" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Hindi mabasa ang talaan ng pagkukunan (sources)." -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Hindi maka-konekta sa socket na passive." +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Walang laman ang cache ng pakete" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "di makakuha ang getaddrinfo ng socket na nakikinig" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Sira ang talaksan ng cache ng pakete" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Hindi maka-bind ng socket" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Ang talaksan ng cache ng pakete ay hindi magamit na bersyon" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Hindi makarinig sa socket" +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "Sira ang talaksan ng cache ng pakete" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Hindi malaman ang pangalan ng socket" +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "Ang APT na ito ay hindi nagsusuporta ng versioning system '%s'" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Hindi makapagpadala ng utos na PORT" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Ang cache ng pakete ay binuo para sa ibang arkitektura" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Di kilalang pamilya ng address %u (AF_*)" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Dependensiya" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "Bigo ang EPRT, sabi ng server ay: %s" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "PreDepends" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Nag-timeout ang socket ng datos" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Mungkahi" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Hindi makatanggap ng koneksyon" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Rekomendado" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problema sa pag-hash ng talaksan" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Tunggali" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Hindi makakuha ng talaksan, sabi ng server ay '%s'" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Pumapalit" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Nag-timeout ang socket ng datos" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Linalaos" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Bigo ang paglipat ng datos, sabi ng server ay '%s'" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Tanong" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Hindi ma-invoke " +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "importante" -#: methods/connect.cc:76 -#, c-format -msgid "Connecting to %s (%s)" -msgstr "Kumokonekta sa %s (%s)" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "kailangan" -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standard" -#: methods/connect.cc:94 -#, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Hindi makalikha ng socket para sa %s (f=%u t=%u p=%u)" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "optional" + +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "extra" -#: methods/connect.cc:100 +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Hindi maumpisahan ang koneksyon sa %s:%s (%s)." +msgid "The method driver %s could not be found." +msgstr "Ang driver ng paraang %s ay hindi mahanap." -#: methods/connect.cc:108 -#, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Hindi maka-konekta sa %s:%s (%s), nag-timeout ang koneksyon" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Paki-siguro na nakaluklok ang paketeng 'dpkg-dev'.\n" -#: methods/connect.cc:126 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Hindi maka-konekta sa %s:%s (%s)." +msgid "Method %s did not start correctly" +msgstr "Hindi umandar ng tama ang paraang %s" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "Connecting to %s" -msgstr "Kumokonekta sa %s" +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Ikasa ang disk na may pangalang: '%s' sa drive '%s' at pindutin ang enter." -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Could not resolve '%s'" -msgstr "Hindi maresolba ang '%s'" +msgid "Index file type '%s' is not supported" +msgstr "Hindi suportado ang uri ng talaksang index na '%s'" -#: methods/connect.cc:205 -#, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Pansamantalang kabiguan sa pagresolba ng '%s'" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Ginagawa ang puno ng mga dependensiya" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "May naganap na kababalaghan sa pagresolba ng '%s:%s' (%i)" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Bersyong Kandidato" -#: methods/connect.cc:211 +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Pagbuo ng Dependensiya" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +#, fuzzy +msgid "Reading state information" +msgstr "Pinagsasama ang magagamit na impormasyon" + +#: apt-pkg/depcache.cc:250 #, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "May naganap na kababalaghan sa pagresolba ng '%s:%s' (%i)" +msgid "Failed to open StateFile %s" +msgstr "Bigo ang pagbukas ng %s" -#: methods/connect.cc:258 +#: apt-pkg/depcache.cc:256 #, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Hindi maka-konekta sa %s %s:" +msgid "Failed to write temporary StateFile %s" +msgstr "Bigo sa pagsulat ng talaksang %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "" -"Error na internal: Tanggap na lagda, ngunit hindi malaman ang key " -"fingerprint?!" +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "pagpalit ng pangalan ay bigo, %s (%s -> %s)." -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Hindi kukulang sa isang hindi tanggap na lagda ang na-enkwentro." +#: apt-pkg/acquire-item.cc:163 +#, fuzzy +msgid "Hash Sum mismatch" +msgstr "Di tugmang MD5Sum" -#: methods/gpgv.cc:174 +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Di tugmang laki" + +#: apt-pkg/acquire-item.cc:173 #, fuzzy -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "" -"Hindi maitakbo ang '%s' upang maberipika ang lagda (nakaluklok ba ang gpgv?)" +msgid "Invalid file format" +msgstr "Di tanggap na operasyon %s" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1573 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Hindi kilalang error sa pag-execute ng gpgv" +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Hindi ma-parse ang talaksang pakete %s (1)" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Ang sumusunod na mga lagda ay imbalido:\n" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Walang public key na magamit para sa sumusunod na key ID:\n" -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1669 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -"Ang sumusunod na mga lagda ay hindi maberipika dahil ang public key ay hindi " -"available:\n" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Error sa pagsusulat sa talaksan" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Error sa pagbasa mula sa server, sinarhan ng remote ang koneksyon" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Error sa pagbasa mula sa server" +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Error sa pagsulat sa talaksan" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Bigo ang pagpili" +#: apt-pkg/acquire-item.cc:1859 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"Hindi ko mahanap ang talaksan para sa paketeng %s. Maaaring kailanganin " +"niyong ayusin ng de kamay ang paketeng ito. (dahil sa walang arch)" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Nag-timeout ang koneksyon" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Error sa pagsulat ng talaksang output" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Sira ang talaksang index ng mga pakete. Walang Filename: field para sa " +"paketeng %s." -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Naghihintay ng panimula" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Hindi suportado ang uri ng talaksang index na '%s'" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Maling linyang panimula" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Hindi ma-stat ang %s" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Nagpadala ang HTTP server ng di tanggap na reply header" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Hindi akma ang versioning system ng cache" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Nagpadala ang HTTP server ng di tanggap na Content-Length header" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "May naganap na error habang prinoseso ang %s (FindPkg)" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Nagpadala ang HTTP server ng di tanggap na Content-Range header" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "" +"Wow, nalagpasan niyo ang bilang ng pangalan ng pakete na kaya ng APT na ito." -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Sira ang range support ng HTTP server na ito" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Wow, nalagpasan niyo ang bilang ng bersyon na kaya ng APT na ito." -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Di kilalang anyo ng petsa" +#: apt-pkg/pkgcachegen.cc:263 +#, fuzzy +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Wow, nalagpasan niyo ang bilang ng bersyon na kaya ng APT na ito." -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Maling datos sa panimula" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "Wow, nalagpasan niyo ang bilang ng dependensiya na kaya ng APT na ito." -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Bigo ang koneksyon" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "" +"Hindi nahanap ang paketeng %s %s habang prinoseso ang mga dependensiya." -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Internal na error" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Hindi ma-stat ang talaan ng pagkukunan ng pakete %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Sinusuri ang pag-upgrade... " +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Binabasa ang Listahan ng mga Pakete" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Tapos" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Kinukuha ang Talaksang Provides" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Hindi makapagsulat sa %s" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "IO Error sa pag-imbak ng source cache" -#: apt-private/private-list.cc:164 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Vendor block %s contains no fingerprint" +msgstr "Block ng nagbebenta %s ay walang fingerprint" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Inaayos ang mga dependensiya..." +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "Nawawala ang directory ng talaan %spartial." -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " ay bigo." +#: apt-pkg/acquire.cc:91 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "Nawawala ang directory ng arkibo %spartial." -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Hindi maayos ang mga dependensiya" +#: apt-pkg/acquire.cc:99 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "Hindi maaldaba ang directory ng talaan" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Hindi mai-minimize ang upgrade set" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Kinukuha ang talaksang %li ng %li (%s ang natitira)" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Tapos" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Kinukuha ang talaksang %li ng %li" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Maaari ninyong patakbuhin ang 'apt-get -f install' upang ayusin ito." +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"May mga talaksang index na hindi nakuha, sila'y di pinansin, o ginamit ang " +"mga luma na lamang." -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "May mga kulang na dependensiya. Subukan niyong gamitin ang -f." +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Kailangan niyong maglagay ng 'source' URIs sa inyong sources.list" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -#: apt-private/private-output.cc:234 +#: apt-pkg/policy.cc:422 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Nakaluklok]" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Di tanggap na record sa talaksang pagtatangi, walang Package header" -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [Nakaluklok]" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Hindi naintindihan ang uri ng pin %s" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Walang prioridad (o sero) na nakatakda para sa pin" -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Nakaluklok]" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Nakaluklok]" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Hindi mabuksan ang talaksang %s" -#: apt-private/private-output.cc:249 +#: apt-pkg/packagemanager.cc:630 #, c-format -msgid "[upgradable from: %s]" +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." msgstr "" +"Ang takbo ng pag-instol na ito ay nangangailangan ng pansamantalang " +"pagtanggal ng paketeng esensyal na %s dahil sa isang Conflicts/Pre-Depends " +"loop. Madalas ay masama ito, ngunit kung nais niyo talagang gawin ito, i-" +"activate ang APT::Force-LoopBreak na option." -#: apt-private/private-output.cc:253 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "Labis ang haba ng linyang %u sa talaksang pagkukunan %s." -#: apt-private/private-output.cc:435 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Ina-unmount ang CD-ROM...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "but %s is installed" -msgstr "ngunit ang %s ay nakaluklok" +msgid "Using CD-ROM mount point %s\n" +msgstr "Ginagamit ang %s bilang mount point ng CD-ROM\n" -#: apt-private/private-output.cc:437 +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Hinihintay ang disc...\n" + +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Sinasalang ang CD-ROM...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Kinikilala..." + +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "but %s is to be installed" -msgstr "ngunit ang %s ay iluluklok" +msgid "Stored label: %s\n" +msgstr "Naka-imbak na Label: %s \n" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "ngunit hindi ito maaaring iluklok" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Sinisiyasat ang Disc para sa talaksang index...\n" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "ngunit ito ay birtwal na pakete" +#: apt-pkg/cdrom.cc:734 +#, fuzzy, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" +"Nakahanap ng %i na index ng mga pakete, %i na index ng source at %i na " +"signature\n" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "ngunit ito ay hindi nakaluklok" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "ngunit ito ay hindi iluluklok" +#: apt-pkg/cdrom.cc:771 +#, fuzzy, c-format +msgid "Found label '%s'\n" +msgstr "Naka-imbak na Label: %s \n" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " o" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Hindi yan tanggap na pangalan, subukan muli.\n" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Ang sumusunod na mga pakete ay may kulang na dependensiya:" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Ang Disc na ito ay nagngangalang: \n" +"'%s'\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Ang sumusunod na mga paketeng BAGO ay iluluklok:" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kinokopya ang Listahan ng mga Pakete" + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Sinusulat ang bagong listahan ng pagkukunan\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Mga nakatala sa Listahan ng Source para sa Disc na ito ay:\n" + +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"Kailangan ma-instol muli ang paketeng %s, ngunit hindi ko mahanap ang arkibo " +"para dito." -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Ang sumusunod na mga pakete ay TATANGGALIN:" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Error, pkgProblemResolver::Resolve ay naghudyat ng mga break, maaaring dulot " +"ito ng mga paketeng naka-hold." -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Ang sumusunod na mga pakete ay hinayaang maiwanan:" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "" +"Hindi maayos ang mga problema, mayroon kayong sirang mga pakete na naka-hold." -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Ang susunod na mga pakete ay iu-upgrade:" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Ang susunod na mga pakete ay ida-DOWNGRADE:" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Ang susunod na mga hinawakang mga pakete ay babaguhin:" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: apt-private/private-output.cc:668 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (dahil sa %s) " +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" msgstr "" -"BABALA: Ang susunod na mga paketeng esensyal ay tatanggalin.\n" -"HINDI ito dapat gawin kung hindi niyo alam ng husto ang inyong ginagawa!" -#: apt-private/private-output.cc:707 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu na nai-upgrade, %lu na bagong luklok, " +msgid "Unable to parse package file %s (1)" +msgstr "Hindi ma-parse ang talaksang pakete %s (1)" -#: apt-private/private-output.cc:711 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu iniluklok muli, " +msgid "Unable to parse package file %s (2)" +msgstr "Hindi ma-parse ang talaksang pakete %s (2)" -#: apt-private/private-output.cc:713 -#, c-format -msgid "%lu downgraded, " -msgstr "%lu nai-downgrade, " +#: apt-pkg/indexrecords.cc:78 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "Hindi ma-parse ang talaksang pakete %s (1)" -#: apt-private/private-output.cc:715 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu na tatanggalin at %lu na hindi inupgrade\n" +#: apt-pkg/indexrecords.cc:86 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "Paunawa, pinili ang %s imbes na %s\n" -#: apt-private/private-output.cc:719 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu na hindi lubos na nailuklok o tinanggal.\n" +msgid "No Hash entry in Release file %s" +msgstr "" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[O/h]" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Di tanggap na linya sa talaksang diversion: %s" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[o/H]" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Hindi ma-parse ang talaksang pakete %s (1)" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "O" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (URI parse)" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "H" +#: apt-pkg/sourcelist.cc:170 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Ang utos na update ay hindi tumatanggap ng mga argumento" +#: apt-pkg/sourcelist.cc:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist)" -#: apt-private/private-update.cc:90 -#, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/sourcelist.cc:184 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: apt-pkg/sourcelist.cc:190 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<" -#: apt-private/private-show.cc:156 +#: apt-pkg/sourcelist.cc:193 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<" + +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (URI)" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist)" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "" -"Error na internal, tinawagan ang InstallPackages na may sirang mga pakete!" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (URI parse)" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "" -"May mga paketeng kailangang tanggalin ngunit naka-disable ang Tanggal/Remove." +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (absolute dist)" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Error na internal, hindi natapos ang pagsaayos na pagkasunud-sunod" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Nakapagtataka... Hindi magkatugma ang laki, mag-email sa apt@packages.debian." -"org" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Binubuksan %s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Kailangang kumuha ng %sB/%sB ng arkibo.\n" +msgid "Malformed line %u in source list %s (type)" +msgstr "Maling anyo ng linyang %u sa talaksang pagkukunan %s (uri)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Kailangang kumuha ng %sB ng arkibo.\n" +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Hindi kilalang uri '%s' sa linyang %u sa talaksan ng pagkukunan %s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:416 #, fuzzy, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "" -"Matapos magbuklat ay %sB na karagdagang puwang sa disk ang magagamit.\n" +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Hindi kilalang uri '%s' sa linyang %u sa talaksan ng pagkukunan %s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 -#, fuzzy, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Matapos magbuklat ay %sB na puwang sa disk ang mapapalaya.\n" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Release '%s' para sa '%s' ay hindi nahanap" -#: apt-private/private-install.cc:200 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Kulang kayo ng libreng puwang sa %s." +msgid "Version '%s' for '%s' was not found" +msgstr "Bersyon '%s' para sa '%s' ay hindi nahanap" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "May mga problema at -y ay ginamit na walang --force-yes" +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "Hindi mahanap ang paketeng %s" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Tinakdang Trivial Only ngunit hindi ito operasyong trivial." +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Hindi mahanap ang paketeng %s" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Oo, gawin ang sinasabi ko!" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Hindi mahanap ang paketeng %s" -#: apt-private/private-install.cc:222 +#: apt-pkg/cacheset.cc:626 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -"Kayo ay gagawa ng bagay na maaaring makasama sa inyong sistema.\n" -"Upang magpatuloy, ibigay ang pariralang '%s'\n" -" ?] " - -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Abort." - -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Nais niyo bang magpatuloy?" - -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "May mga talaksang hindi nakuha" -#: apt-private/private-install.cc:320 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Hindi nakuha ang ilang mga arkibo, maaaring patakbuhin ang apt-get update o " -"subukang may --fix-missing?" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing at pagpalit ng media ay kasalukuyang hindi suportado" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Hindi maayos ang mga kulang na pakete." +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Ina-abort ang pag-instol." +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -msgstr[1] "" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" msgstr "" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" msgstr "" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" msgstr "" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "Piniling %s ay hindi nahanap" + +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" msgstr "" -"Ang sumusunod na impormasyon ay maaaring makatulong sa pag-ayos ng problema:" +"Hindi ginagamit ang pagaldaba para sa basa-lamang na talaksang aldaba %s" -#: apt-private/private-install.cc:506 -#, fuzzy -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Error na internal, may nasira ang problem resolver" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Hindi mabuksan ang talaksang aldaba %s" -#: apt-private/private-install.cc:513 -#, fuzzy -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "Ang sumusunod na mga paketeng BAGO ay iluluklok:" -msgstr[1] "Ang sumusunod na mga paketeng BAGO ay iluluklok:" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "" +"Hindi gumagamit ng pag-aldaba para sa talaksang aldaba %s na naka-mount sa " +"nfs" -#: apt-private/private-install.cc:517 -#, fuzzy, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "Ang sumusunod na mga paketeng BAGO ay iluluklok:" -msgstr[1] "Ang sumusunod na mga paketeng BAGO ay iluluklok:" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "hindi makuha ang aldaba %s" -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "" -msgstr[1] "" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -"Maaaring patakbuhin niyo ang 'apt-get -f install' upang ayusin ang mga ito:" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -"May mga dependensiyang kulang. Subukan ang 'apt-get -f install' na walang " -"mga pakete (o magtakda ng solusyon)." -#: apt-private/private-install.cc:638 +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"May mga paketeng hindi ma-instol. Maaring may hiniling kayong imposible\n" -"o kung kayo'y gumagamit ng pamudmod na unstable ay may ilang mga paketeng\n" -"kailangan na hindi pa nalikha o linipat mula sa Incoming." - -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Sirang mga pakete" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Ang mga sumusunod na extra na pakete ay luluklokin:" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Nakatanggap ang sub-process %s ng segmentation fault." -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Mga paketeng mungkahi:" +#: apt-pkg/contrib/fileutl.cc:826 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "Nakatanggap ang sub-process %s ng segmentation fault." -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Mga paketeng rekomendado:" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "Naghudyat ang sub-process %s ng error code (%u)" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "" -"Linaktawan ang %s, ito'y nakaluklok na at hindi nakatakda ang upgrade.\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "Ang sub-process %s ay lumabas ng di inaasahan" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:913 #, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"Linaktawan ang %s, ito'y nakaluklok na at hindi nakatakda ang upgrade.\n" +msgid "Problem closing the gzip file %s" +msgstr "Problema sa pagsara ng talaksan" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Ang pagluklok muli ng %s ay hindi maaari, hindi ito makuha.\n" +msgid "Could not open file %s" +msgstr "Hindi mabuksan ang talaksang %s" -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s ay pinakabagong bersyon na.\n" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Hindi makapag-bukas ng pipe para sa %s" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Bigo ang paglikha ng subprocess IPC" + +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Bigo ang pag-exec ng taga-compress" + +#: apt-pkg/contrib/fileutl.cc:1514 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Ang napiling bersyon %s (%s) para sa %s\n" +msgid "read, still have %llu to read but none left" +msgstr "pagbasa, mayroong %lu na babasahin ngunit walang natira" -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Ang napiling bersyon %s (%s) para sa %s\n" +msgid "write, still have %llu to write but couldn't" +msgstr "pagsulat, mayroon pang %lu na isusulat ngunit hindi makasulat" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/fileutl.cc:1915 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "Hindi nakaluklok ang paketeng %s, kaya't hindi ito tinanggal\n" +msgid "Problem closing the file %s" +msgstr "Problema sa pagsara ng talaksan" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/fileutl.cc:1927 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Hindi nakaluklok ang paketeng %s, kaya't hindi ito tinanggal\n" +msgid "Problem renaming the file %s to %s" +msgstr "Problema sa pag-sync ng talaksan" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1938 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "Problema sa pag-unlink ng talaksan" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "" -"BABALA: Ang susunod na mga pakete ay hindi matiyak ang pagka-awtentiko!" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Problema sa pag-sync ng talaksan" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "" -"Ipina-walang-bisa ang babala tungkol sa pagka-awtentiko ng mga pakete.\n" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Error!" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "May mga paketeng hindi matiyak ang pagka-awtentiko" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Tapos" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Iluklok ang mga paketeng ito na walang beripikasyon?" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-sources.cc:58 +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Bigo ang pagpangalan muli ng %s tungong %s" - -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%c%s... %u%%" +msgstr "%c%s... Tapos" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Hindi mai-mmap ang talaksang walang laman" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Tumama " +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Hindi makapag-bukas ng pipe para sa %s" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Kunin: " +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Hindi makagawa ng mmap ng %lu na byte" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "DiPansin " +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Hindi mabuksan %s" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "Hindi ma-invoke " -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Nakakuha ng %sB ng %s (%sB/s)\n" +msgid "Couldn't make mmap of %lu bytes" +msgstr "Hindi makagawa ng mmap ng %lu na byte" -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [May ginagawa]" +#: apt-pkg/contrib/mmap.cc:322 +#, fuzzy +msgid "Failed to truncate file" +msgstr "Bigo sa pagsulat ng talaksang %s" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/mmap.cc:341 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -"Pagpalit ng Media: Ikasa ang disk na may pangalang\n" -" '%s'\n" -"sa drive '%s' at pindutin ang enter\n" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "No mirror file '%s' found " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Hindi mabuksan ang talaksang %s" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Hindi mabuksan ang talaksang %s" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Di mai-stat ang mount point %s" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Bigo sa pag-stat ng cdrom" + +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "[Mirror: %s]" -msgstr "" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Hindi kilalang katagang uri: '%c'" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Bigo sa paglikha ng IPC pipe sa subprocess" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Binubuksan ang talaksang pagsasaayos %s" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Nagsara ng maaga ang koneksyon" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntax error %s:%u: Nag-umpisa ang block na walang pangalan." -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Maling nakatakda na default!" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntax error %s:%u: Maling anyo ng Tag" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Pindutin ang enter upang magpatuloy." +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntax error %s:%u: May basura matapos ng halaga" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" +"Syntax error %s:%u: Maaari lamang gawin ang mga direktiba sa tuktok na antas" -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "May mga error na naganap habang nagbubuklat. Isasaayos ko ang" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntax error %s:%u: Labis ang pagkaka-nest ng mga include" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "mga paketeng naluklok. Maaaring dumulot ito ng mga error na doble" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntax error %s:%u: Sinama mula dito" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"o mga error na dulot ng kulang na dependensiya. Ito ay ayos lamang, yun lang" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntax error %s:%u: Di suportadong direktiba '%s'" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" +#: apt-pkg/contrib/configuration.cc:900 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"sa taas nitong kalatas ang importante. Paki-ayusin ang mga ito at patakbuhin " -"muli ang [I]luklok/Instol." +"Syntax error %s:%u: Maaari lamang gawin ang mga direktiba sa tuktok na antas" -#: dselect/update:30 -msgid "Merging available information" -msgstr "Pinagsasama ang magagamit na impormasyon" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Syntax error %s:%u: May basura sa dulo ng talaksan" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "Tinawagan ang DropNode sa naka-link pa na node" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "Ina-abort ang pag-instol." -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Bigo sa paghanap ng elemento ng hash!" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Opsyon sa command line '%c' [mula %s] ay di kilala." + +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Opsyon sa command line %s ay di naintindihan." -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Bigo ang pagreserba ng diversion" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Opsyon sa command line %s ay hindi boolean" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Internal error sa AddDiversion" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Opsyon %s ay nangangailangan ng argumento" -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Sinusubukang patungan ang diversion, %s -> %s at %s/%s" +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "" +"Opsyon %s: Ang pagtakda ng aytem sa pagkaayos ay nangangailangan ng " +"=<halaga>." -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Dobleng pagdagdag ng diversion %s -> %s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Opsyon %s ay nangangailangan ng argumentong integer, hindi '%s'" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Nadobleng talaksang conf %s/%s" +msgid "Option '%s' is too long" +msgstr "Opsyon '%s' ay labis ang haba" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "The path %s is too long" -msgstr "Sobrang haba ang path na %s" +msgid "Sense %s is not understood, try true or false." +msgstr "Hindi naintindihan ang %s, subukan ang true o false." -#: apt-inst/extract.cc:132 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "Unpacking %s more than once" -msgstr "Binubuklat ang %s ng labis sa isang beses" +msgid "Invalid operation %s" +msgstr "Di tanggap na operasyon %s" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:95 +#, fuzzy, c-format +msgid "Installing %s" +msgstr "Iniluklok ang %s" + +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The directory %s is diverted" -msgstr "Ang directory %s ay divertado" +msgid "Configuring %s" +msgstr "Isasaayos ang %s" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Ang pakete ay sumusubok na magsulat sa target na diversion %s/%s" +msgid "Removing %s" +msgstr "Tinatanggal ang %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Sobrang haba ng path na diversion" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "Natanggal ng lubusan ang %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to stat %s" -msgstr "Bigo ang pag-stat ng %s" +msgid "Noting disappearance of %s" +msgstr "" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Bigo ang pagpangalan muli ng %s tungong %s" +msgid "Running post-installation trigger %s" +msgstr "" -#: apt-inst/extract.cc:249 -#, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Ang directory %s ay papalitan ng hindi-directory" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, fuzzy, c-format +msgid "Directory '%s' missing" +msgstr "Nawawala ang directory ng talaan %spartial." -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Bigo ang paghanap ng node sa kanyang hash bucket" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "Hindi mabuksan ang talaksang %s" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Sobrang haba ng path" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Hinahanda ang %s" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Patungan ng paketeng nag-match na walang bersion para sa %s" +msgid "Unpacking %s" +msgstr "Binubuklat ang %s" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Ang talaksang %s/%s ay pumapatong sa isang talaksan sa paketeng %s" +msgid "Preparing to configure %s" +msgstr "Hinahanda ang %s upang isaayos" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Unable to stat %s" -msgstr "Hindi ma-stat ang %s" +msgid "Installed %s" +msgstr "Iniluklok ang %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to write file %s" -msgstr "Bigo sa pagsulat ng talaksang %s" +msgid "Preparing for removal of %s" +msgstr "Naghahanda para sa pagtanggal ng %s" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Failed to close file %s" -msgstr "Bigo sa pagsara ng talaksang %s" +msgid "Removed %s" +msgstr "Tinanggal ang %s" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Hindi ito tanggap na arkibong DEB, may kulang na miyembrong '%s'" +msgid "Preparing to completely remove %s" +msgstr "Naghahanda upang tanggalin ng lubusan ang %s" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Internal error, hindi mahanap ang miyembrong %s" +msgid "Completely removed %s" +msgstr "Natanggal ng lubusan ang %s" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Di maintindihang talaksang control" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Hindi tanggap na signature ng arkibo" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Hindi makapagsulat sa %s" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Error sa pagbasa ng header ng miyembro ng arkibo" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:96 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Hindi tanggap na header ng miyembro ng arkibo" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Hindi tanggap na header ng miyembro ng arkibo" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Bitin ang arkibo. Sobrang iksi." +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Bigo ang pagbasa ng header ng arkibo" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Bigo sa paglikha ng mga pipe" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Bigo sa pagtakbo ng gzip " +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Sirang arkibo" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Bigo ang checksum ng tar, sira ang arkibo" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Hindi kilalang uri ng TAR header %u, miyembrong %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Hindi maaldaba ang directory ng talaan" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/tr.po b/po/tr.po index e0654c622..c465339aa 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2014-08-01 02:29+0200\n" "Last-Translator: Mert Dirik <mertdirik@gmail.com>\n" "Language-Team: Debian l10n Turkish <debian-l10n-turkish@lists.debian.org>\n" @@ -20,3281 +20,3282 @@ msgstr "" "X-Generator: Poedit 1.5.4\n" "X-Launchpad-Export-Date: 2013-02-04 12:16+0000\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, c-format -msgid "Clean of %s is not supported" -msgstr "%s temizliği desteklenmiyor" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "%s okunamıyor" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "%s olarak değiştirilemedi" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "%s için dosya bilgisi alınamadı." - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "Durum: [%3i%%]" - -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "dpkg çalıştırılıyor" - -#: apt-pkg/init.cc:146 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Paketleme sistemi '%s' desteklenmiyor" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Uygun bir paketleme sistemi türü bulunamıyor" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "%s paketinin (sürüm %s) karşılanamayan bir bağımlılığı var:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "%i kayıt yazıldı.\n" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Toplam paketlerin adları: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "%2$i eksik dosyayla %1$i kayıt yazıldı.\n" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Toplam paket yapıları: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "%2$i eşleşmeyen dosyayla %1$i kayıt yazıldı\n" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Normal paketler: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "%2$i eksik dosya ve %3$i eşleşmeyen dosyayla %1$i kayıt yazıldı\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Saf sanal paketler: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "%s için kimlik doğrulama kaydı bulunamadı." +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Tekil sanal paketler: " -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "Sağlama yapılamadı: %s" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Karışık sanal paketler: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Yöntem sürücüsü %s bulunamadı." +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Eksik: " -#: apt-pkg/acquire-worker.cc:118 -#, c-format -msgid "Is the package %s installed?" -msgstr "%s paketi kurulu mu?" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Toplam farklı sürümler: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "%s yöntemi düzgün şekilde başlamadı" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Toplam farklı açıklamalar: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "" -"Lütfen '%s' olarak etiketlenmiş diski '%s' sürücüsüne yerleştirin ve giriş " -"(enter) tuşuna basın." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Toplam bağımlılıklar: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Paket listeleri ya da durum dosyası ayrıştırılamadı ya da açılamadı." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Toplam sürüm/dosya ilişkileri: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "" -"Bu sorunları gidermek için apt-get update komutunu çalıştırabilirsiniz." +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Toplam Tanım/Dosya ilişkileri: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Kaynak listesi okunamadı." +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Toplam destekleme eşleştirmeleri: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Boş paket önbelleği" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Toplam birikmiş dizgiler: " -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Paket önbelleği dosyası bozulmuş" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Toplam bağlımlık sürümü alanı: " -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Paket önbelleği dosyası uyumsuz bir sürümde" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Toplam serbest alan: " -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Paket önbellek dosyası bozulmuş, çok küçük" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Hesaplanan toplam alan: " -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Bu APT '%s' sürümleme sistemini desteklemiyor." +msgid "Package file %s is out of sync." +msgstr "%s paket dosyası eşzamansız." -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Paket önbelleği farklı bir mimarı için yapılmış" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Hiç paket bulunamadı" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Bağımlılıklar" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "En az bir arama örüntüsü vermelisiniz" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "ÖnBağımlılıklar" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" +"Bu komutun kullanımı bırakılmıştır. Lütfen bunun yerine 'apt-mark showauto' " +"komutunu kullanın." -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Önerdikleri" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "%s paketi bulunamadı" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Tavsiye ettikleri" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Paket dosyaları:" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Çakışmalar" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Önbellek eşzamanlı değil, paket dosyası 'x-ref' yapılamıyor." -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Değiştirilenler" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Sabitlenmiş paketler:" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Eskiyenler" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(bulunamadı)" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Bozdukları" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Kurulu: " -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Geliştirdikleri" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Aday: " -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "önemli" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(hiçbiri)" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "gerekli" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Paket sabitleme: " -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standart" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Sürüm çizelgesi:" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "seçimlik" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s (%s için) %s %s tarihinde derlendi\n" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "ilave" - -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "İndeks dosyası türü '%s' desteklenmiyor" +#: cmdline/apt-cache.cc:1749 +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Kullanım: apt-cache [seçenekler] komut\n" +" apt-cache [seçenekler] showpkg paket1 [paket2 ...]\n" +" apt-cache [seçenekler] showsrc paket1 [paket2 ...]\n" +"\n" +"apt-cache APT'nin ikili paket önbelleğindeki dosyaları\n" +"sorgulamakta kullanılan alt seviye bir araçtır.\n" +"\n" +"Komutlar:\n" +" gencaches - Hem paket hem de kaynak önbelleğini oluştur\n" +" showpkg - Tek bir paket hakkındaki genel bilgileri görüntüle\n" +" showsrc - Paket kayıtlarını görüntüle\n" +" stats - Bir takım basit istatistikleri görüntüle\n" +" dump - Bütün dosyayı kısa biçimde görüntüle\n" +" dumpavail - Uygun bir dosyayı standart çıktıya yazdır\n" +" unmet - Karşılanmayan bağımlılıkları görüntüle\n" +" search - Paket listesini bir düzenli ifade ile ara\n" +" show - Bir paketin okunabilir kaydını görüntüle\n" +" depends - Bir paketin bağımlılık bilgilerini ham haliyle görüntüle\n" +" rdepends - Bir paketin ters bağımlılık bilgilerini görüntüle\n" +" pkgnames - Sistemdeki tüm paketlerin adlarını listele\n" +" dotty - GraphViz için paket grafikleri üret\n" +" xvcg - xvcg için paket grafikleri üret\n" +" policy - İlke seçeneklerini görüntüle\n" +"\n" +"Options:\n" +" -h Bu yardım metni.\n" +" -p=? Paket önbelleği.\n" +" -s=? Kaynak önbelleği.\n" +" -q İlerleme göstergesini kapat.\n" +" -i unmet komutunda yalnızca önemli bağımlılıkları görüntüle.\n" +" -c=? Belirtilen yapılandırma dosyasını kullan\n" +" -o=? Herhangi bir yapılandırma seçeneğini ayarla, örneğin -o dir::cache=/" +"tmp\n" +"Ayrıntılı bilgi için apt-cache(8) ve apt.conf(5) rehber sayfalarına göz " +"atın.\n" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Regex derleme hatası - %s" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Lütfen bu CD/DVD'ye bir isim verin, örneğin 'Debian 5.0.3 Disk 1'" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Önbelleğin uyumsuz bir sürümleme sistemi var" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Lütfen sürücüye bir Disk yerleştirin ve giriş tuşuna (Enter) basın" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "%s paketi işlenirken sorunlarla karşılaşıldı (%s%d)" +msgid "Failed to mount '%s' to '%s'" +msgstr "'%s', '%s' konumuna bağlanamadı" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "Vay canına, bu APT'nin alabileceği paket adları sayısını aştınız." +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" +"Öntanımlı bağlama noktasında bir CD-ROM algılanamadı.\n" +"CD-ROM bağlama noktasını ayarlamak için --cdrom seçeneğini kullanmayı " +"deneyebilirsiniz.\n" +"Otomatik CD-ROM ve bağlantı noktası algılama hakkında daha fazla bilgi almak " +"için 'man apt-cdrom' komutunu kullanabilirsiniz." -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Vay canına, bu APT'nin alabileceği sürüm sayısını aştınız." +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Kalan CD'leriniz için bu işlemi yineleyin." -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Vay canına, bu APT'nin alabileceği açıklama sayısını aştınız." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Değişkenler (argüman) çiftler halinde değil" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "Vay canına, bu APT'nin alabileceği bağımlılık sayısını aştınız." +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"Kullanım: apt-config [seçenekler] komut\n" +"\n" +"apt-config, APT ayar dosyasını okumaya yarayan basit bir araçtır\n" +"\n" +"Komutlar:\n" +" shell - Kabuk kipi\n" +" dump - Ayarları görüntüle\n" +"\n" +"Seçenekler:\n" +" -h Bu yardım dosyası.\n" +" -c=? Belirtilen ayar dosyasını görüntüler\n" +" -o=? İsteğe bağlı ayar seçeneği belirtmenizi sağlar, örneğin -o dir::" +"cache=/tmp\n" -#: apt-pkg/pkgcachegen.cc:576 +#: cmdline/apt-get.cc:245 #, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "Dosya bağımlılıkları işlenirken %s %s paketi bulunamadı" +msgid "Can not find a package for architecture '%s'" +msgstr "'%s' mimarisi için bir paket bulunamadı" -#: apt-pkg/pkgcachegen.cc:1211 +#: cmdline/apt-get.cc:327 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Kaynak listesinin (%s) dosya bilgisi alınamadı" - -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Paket listeleri okunuyor" - -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Dosya Sağlananları Toplanıyor" +msgid "Can not find a package '%s' with version '%s'" +msgstr "'%s' paketinin '%s' sürümü bulunamadı" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:330 #, c-format -msgid "Unable to write to %s" -msgstr "%s dosyasına yazılamıyor" - -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Kaynak önbelleği kaydedilirken GÇ Hatası" - -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "Çözücüye senaryo gönder" +msgid "Can not find a package '%s' with release '%s'" +msgstr "'%s' paketi '%s' dağıtım sürümünde bulunamadı" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "Çözücüye istek gönder" +#: cmdline/apt-get.cc:367 +#, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Kaynak paket olarak '%s' yerine '%s' kullanılacak\n" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "Çözüm almak için hazırlan" +#: cmdline/apt-get.cc:423 +#, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "'%2$s' paketinin '%1$s' sürümünü bulunamadı" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "Harici çözücü düzgün bir hata iletisi göstermeden başarısız oldu" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "%s paketi bulunamadı" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "Harici çözücüyü çalıştır" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s elle kurulmuş olarak ayarlı.\n" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "yeniden adlandırma başarısız, %s (%s -> %s)." +msgid "%s set to automatically installed.\n" +msgstr "%s otomatik olarak kurulmuş şekilde ayarlandı.\n" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Sağlama toplamları eşleşmiyor" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" +"Bu komut artık kullanılmamaktadır. Bunun yerine 'apt-mark auto' ve 'apt-mark " +"manual' kullanın." -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Boyutlar eşleşmiyor" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "İç hata, sorun çözücü nesneyi bozdu" -#: apt-pkg/acquire-item.cc:173 -msgid "Invalid file format" -msgstr "Geçersiz dosya biçimi" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "İndirme dizini kilitlenemiyor" -#: apt-pkg/acquire-item.cc:1573 -#, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" -"'Release' dosyasında olması beklenilen '%s' girdisi bulunamadı (sources.list " -"dosyasındaki girdi ya da satır hatalı)" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Kaynağının indirileceği en az bir paket seçilmeli" -#: apt-pkg/acquire-item.cc:1589 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "'Release' dosyasında '%s' için uygun bir sağlama toplamı bulunamadı" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "" -"Aşağıdaki anahtar kimlikleri için kullanılır hiçbir genel anahtar yok:\n" +msgid "Unable to find a source package for %s" +msgstr "%s paketinin kaynak paketi bulunamadı" -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:786 #, c-format msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"%s konumundaki 'Release' dosyasının vâdesi dolmuş (%s önce). Bu deponun " -"güncelleştirmeleri uygulanmayacak." - -#: apt-pkg/acquire-item.cc:1691 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Dağıtım çakışması: %s (beklenen %s ama eldeki %s)" +"NOT: '%s' paketlemesi '%s' sürüm kontrol sistemiyle aşağıdaki adreste " +"yapılmaktadır:\n" +"%s\n" -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:791 #, c-format msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -"İmza doğrulama sırasında bir hata meydana geldi. Depo güncel değil ve önceki " -"indeks dosyaları kullanılacak. GPG hatası: %s:%s\n" +"Bu paketin en son (ve muhtemelen henüz yayımlanmamış olan)\n" +"sürümünü edinmek için lütfen:\n" +"bzr branch %s\n" +"komutunu kullanın.\n" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:843 #, c-format -msgid "GPG error: %s: %s" -msgstr "GPG hatası: %s: %s" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Zaten indirilmiş olan '%s' dosyası atlanıyor\n" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"%s paketindeki dosyalardan biri konumlandırılamadı. Bu durum, bu paketi elle " -"düzeltmeniz gerektiği anlamına gelebilir. (eksik mimariden dolayı)" +msgid "Couldn't determine free space in %s" +msgstr "%s içindeki boş alan miktarı belirlenemedi" -#: apt-pkg/acquire-item.cc:1925 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "'%2$s' paketinin '%1$s' sürümü hiçbir kaynakta bulunamadı" +msgid "You don't have enough free space in %s" +msgstr "%s üzerinde yeterli boş alan yok" -#: apt-pkg/acquire-item.cc:1983 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "Paket indeks dosyaları bozuk. %s paketinin 'Filename:' alanı yok." +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "%sB/%sB kaynak arşivi indirilecek.\n" -#: apt-pkg/vendorlist.cc:85 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Sağlayıcı bloğu %s parmak izi içermiyor" +msgid "Need to get %sB of source archives.\n" +msgstr "%sB kaynak arşivi indirilecek.\n" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: cmdline/apt-get.cc:902 #, c-format -msgid "List directory %spartial is missing." -msgstr "Liste dizini %spartial bulunamadı." +msgid "Fetch source %s\n" +msgstr "%s kaynağını al\n" -#: apt-pkg/acquire.cc:91 -#, c-format -msgid "Archives directory %spartial is missing." -msgstr "Arşiv dizini %spartial bulunamadı." +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Bazı arşivler alınamadı." -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "İndirme işlemi tamamlandı ve sadece indirme kipinde" + +#: cmdline/apt-get.cc:950 #, c-format -msgid "Unable to lock directory %s" -msgstr "%s dizini kilitlenemiyor" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "%s için zaten açılmış bazı paketlerin açılması atlanıyor.\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Alınan dosya: %li / %li (%s kaldı)" +msgid "Unpack command '%s' failed.\n" +msgstr "Paket açma komutu '%s' başarısız.\n" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Alınan dosya: %li / %li" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "'dpkg-dev' paketinin kurulu olduğundan emin olun.\n" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "%s ağdan alınamadı. %s\n" +msgid "Build command '%s' failed.\n" +msgstr "İnşa komutu '%s' başarısız oldu.\n" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Bazı indeks dosyaları indirilemedi. Bu dosyalar yok sayıldılar ya da önceki " -"sürümleri kullanıldı." +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Alt süreç başarısız" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "'sources.list' dosyası içine bazı 'source' adresleri koymalısınız." +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "İnşa bağımlılıklarının denetleneceği en az bir paket belirtilmedilir" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -"APT::Default-Release için '%s' değeri geçersizdir, çünkü kaynaklarda böyle " -"bir sürüm yok." +"%s mimarisine uygun mimari bilgileri mevcut değil. Kurulumu için apt.conf(5) " +"rehber sayfasındaki APT::Architectures kısmına göz atın." -#: apt-pkg/policy.cc:422 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "%s tercihler dosyasında geçersiz kayıt, Paket başlığı yok" +msgid "Unable to get build-dependency information for %s" +msgstr "%s paketinin inşa-bağımlılığı bilgisi alınamıyor" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Did not understand pin type %s" -msgstr "İğne türü %s anlaşılamadı" - -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "İğne için öncelik belirlenmedi (ya da sıfır)" +msgid "%s has no build depends.\n" +msgstr "%s paketinin hiç inşa bağımlılığı yok.\n" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1272 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" msgstr "" -"\"%s\" paketinin anında yapılandırması başarısız oldu. Ayrıntılar için apt." -"conf(5) rehber sayfasının APT::Immediate-Configure kısmına bakın. (%d)" - -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "'%s' paketi yapılandırılamadı. " +"'%4$s' paketlerinde %3$s paketine izin verilmediği için %2$s kaynağının %1$s " +"bağımlılığı karşılanamıyor." -#: apt-pkg/packagemanager.cc:583 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -"Bu kurulum, bir Çakışma/Ön-Bağımlılık döngüsü içerdiği için %s temel " -"paketinin geçici olarak kaldırılmasını gerektiriyor. Bu durum genellikle " -"kötü bir durumdur, ama ille de devam etmek isterseniz, APT::Force-LoopBreak " -"seçeneğini etkinleştirin." - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Kaynak listesinin (%2$s) %1$u numaralı satırı çok uzun." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "CD-ROM ayrılıyor...\n" - -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "CD-ROM bağlama noktası %s kullanılıyor\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Disk bekleniliyor...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "CD-ROM bağlanıyor...\n" - -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Tanımlanıyor... " +"%2$s için %1$s bağımlılığı, %3$s paketi bulunamadığı için karşılanamadı." -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Stored label: %s\n" -msgstr "Kayıtlı etiket: %s\n" - -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Disk, indeks dosyaları için taranıyor...\n" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "%2$s için %1$s bağımlılığı karşılanamadı: Kurulu %3$s paketi çok yeni." -#: apt-pkg/cdrom.cc:734 +#: cmdline/apt-get.cc:1352 #, c-format msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" -"%zu paket indeksi, %zu kaynak indeksi, %zu çeviri indeksi ve %zu imza " -"bulundu\n" +"%2$s için %1$s bağımlılığı sağlanamıyor, çünkü %3$s paketinin aday sürümü " +"gerekli sürüm şartlarını karşılamıyor" -#: apt-pkg/cdrom.cc:744 +#: cmdline/apt-get.cc:1358 +#, c-format msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -"Hiç paket dosyası bulunamadı. Belirttiğiniz disk bir Debian diski değil ya " -"da yanlış mimariye sahip." +"%2$s için %1$s bağımlılığı sağlanamıyor, çünkü %3$s paketinin aday sürümü yok" -#: apt-pkg/cdrom.cc:771 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Found label '%s'\n" -msgstr "'%s' etiketi bulundu\n" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "%2$s için %1$s bağımlılığı karşılanamadı: %3$s" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Bu, geçerli bir ad değil, yeniden deneyin.\n" +#: cmdline/apt-get.cc:1396 +#, c-format +msgid "Build-dependencies for %s could not be satisfied." +msgstr "%s için inşa bağımlılıkları karşılanamadı." -#: apt-pkg/cdrom.cc:817 +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "İnşa bağımlılıklarını işleme başarısız oldu" + +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 #, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Disk adı: \n" -"'%s'\n" +msgid "Changelog for %s (%s)" +msgstr "%s (%s) paketinin değişim günlüğü" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Paket listeleri kopyalanıyor.." +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Desteklenen birimler:" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Yeni kaynak listesi yazılıyor\n" +#: cmdline/apt-get.cc:1633 +msgid "" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" +msgstr "" +"Kullanım: apt-get [seçenekler] komut\n" +" apt-get [seçenekler] install|remove paket1 [paket2 ...]\n" +" apt-get [seçenekler] kaynak paket1 [paket2 ...]\n" +"\n" +"apt-get, paket indirmek ve kurmakta kullanılan basit bir komut satırı\n" +"arayüzüdür. En sık kullanılan komutlar güncelleme (update) ve kurma\n" +"(install) komutlarıdır.\n" +"\n" +"Komutlar:\n" +" update - Paket listelerini yenile\n" +" upgrade - Yükseltme işlemini gerçekleştir\n" +" install - Yeni paket kur (paket adı libc6.deb değil libc6 şeklinde " +"olmalıdır)\n" +" remove - Paket(leri) kaldır\n" +" autoremove - Kullanılmayan tüm paketleri otomatik olarak kaldır\n" +" purge - Paketleri ve yapılandırma dosyalarını kaldır\n" +" source - Kaynak paket dosyalarını indir\n" +" build-dep - Kaynak paketlerin inşa bağımlılıklarını yapılandır\n" +" dist-upgrade - Dağıtım yükseltme, ayrıntılı bilgi için apt-get(8)\n" +" dselect-upgrade - dselect yapılandırmalarına uy\n" +" clean - İndirilmiş olan arşiv dosyalarını sil\n" +" autoclean - İndirilmiş olan eski arşiv dosyalarını sil\n" +" check - Eksik bağımlılık olmadığından emin ol\n" +" changelog - Belirtilen paketlerin değişim günlüklerini indir ve " +"görüntüle\n" +" download - İkili paketleri içinde bulunulan dizine indir\n" +"\n" +"Seçenekler:\n" +" -h Bu yardım metni.\n" +" -q Günlük tutmaya uygun çıktı - İlerleme göstergesi yok\n" +" -qq Hata olmadığı müddetçe çıktıya bir şey yazma\n" +" -d Yalnızca indir - Paketleri açmaz ve kurmaz\n" +" -s Bir şey yapma. Simülasyon kipinde çalış\n" +" -y Tüm sorulara Evet yanıtını ver ve soru sorma\n" +" -f Eksik bağımlılıklara sahip bir sistemi onarmaya çalış\n" +" -m Eksik paketleri görmezden gel ve işleme devam et\n" +" -u Yükseltilen paketlerin listesini de görüntüle\n" +" -b Kaynak paketi indirdikten sonra inşa et\n" +" -V Sürüm numaralarını daha ayrıntılı göster\n" +" -c=? Belirtilen yapılandırma dosyası kullan\n" +" -o=? Yapılandırma seçeneği ayarla, örneğin -o dir::cache=/tmp\n" +"Ayrıntılı bilgi için apt-get(8), sources.list(5) ve apt.conf(5) rehber\n" +"sayfalarına bakabilirsiniz.\n" +" Bu APT'nin Süper İnek Güçleri vardır.\n" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Bu disk için olan kaynak listesi girdileri:\n" +#: cmdline/apt-helper.cc:35 +msgid "Must specify at least one pair url/filename" +msgstr "En az bir adet url/dosyaadı çifti belirtilmelidir" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"%s paketinin tekrar kurulması gerekli, ancak gereken arşiv dosyası " -"bulunamıyor." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "İndirme Başarısız" -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-helper.cc:66 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Hata, pkgProblemResolver::Resolve bozuk paketlere yol açtı, bu sorunun " -"nedeni tutulan paketler olabilir." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Sorunlar giderilemedi, tutulan bozuk paketleriniz var." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Bağımlılık ağacı oluşturuluyor" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Aday sürümler" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Bağımlılık oluşturma" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Durum bilgisi okunuyor" - -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Durum dosyası (StateFile) %s açılamadı." - -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Geçici durum dosyasına (%s) yazma başarısız oldu" +"Usage: apt-helper [seçenekler] komut\n" +" apt-helper [seçenekler] download-file uri hedef-konum\n" +"\n" +"apt-helper apt'nin dahili yardımcı aracıdır\n" +"\n" +"Komutlar:\n" +" download-file - verilen adresi hedef yola kaydet\n" +"\n" +" Bu APT yardımcısının Süper Meep Güçleri var.\n" -#: apt-pkg/tagfile.cc:140 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Paket dosyası %s ayrıştırılamadı (1)" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s kurulu olmadığı için işaretlenemedi.\n" -#: apt-pkg/tagfile.cc:237 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Paket dosyası %s ayrıştırılamadı (2)" +msgid "%s was already set to manually installed.\n" +msgstr "%s zaten elle kurulmuş olarak ayarlı.\n" -#: apt-pkg/cacheset.cc:489 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "'%2$s' paketinin '%1$s' sürümü bulunamadı" +msgid "%s was already set to automatically installed.\n" +msgstr "%s zaten otomatik kurulmuş olarak ayarlı.\n" -#: apt-pkg/cacheset.cc:492 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "'%2$s' paketinin '%1$s' sürümü bulunamadı" +msgid "%s was already set on hold.\n" +msgstr "%s zaten tutulacak şekilde ayarlanmış.\n" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Unable to locate package %s" -msgstr "%s paketi bulunamadı" +msgid "%s was already not hold.\n" +msgstr "%s zaten tutulmayacak şekilde ayarlanmış.\n" -#: apt-pkg/cacheset.cc:603 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Couldn't find task '%s'" -msgstr "'%s' görevi bulunamadı" +msgid "Waited for %s but it wasn't there" +msgstr "%s için beklenildi ama o gelmedi" -#: apt-pkg/cacheset.cc:609 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "'%s' düzenli ifadesini içeren herhangi bir paket bulunamadı" +msgid "%s set on hold.\n" +msgstr "%s paketi tutuluyor.\n" -#: apt-pkg/cacheset.cc:615 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "'%s' ifadesine eşleşen herhangi bir paket bulunamadı" +msgid "Canceled hold on %s.\n" +msgstr "%s paketini tutma işlemi iptal edildi.\n" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "'%s' paketi tamamen sanal olduğu için sürümü seçilemiyor" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "'dpkg' çalıştırılamadı. root olduğunuzdan emin misiniz?" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format +#: cmdline/apt-mark.cc:392 msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -"'%s' paketi kurulu olmadığı ve aday sürüme sahip olmadığı için her ikisi de " -"seçilemiyor" - -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "'%s' paketi sanal olduğu için en yeni sürümü seçilemiyor" - -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "'%s' paketinin aday sürümü olmadığı için aday sürüm seçilemiyor" - -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "'%s' paketi kurulu olmadığı için kurulu sürüm seçilemiyor" - -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "'Release' dosyası (%s) ayrıştırılamadı" - -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "'Release' dosyası %s içinde hiç bölüm yok" - -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "'Release' dosyasında (%s) sağlama girdisi yok" - -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "'Release' dosyasında (%s) geçersiz 'Valid-Until' girdisi" - -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "'Release' dosyasında (%s) geçersiz 'Date' girdisi" +"Kullanım: apt-mark [seçenekler] {auto|manual} paket1 [paket2 ...]\n" +"\n" +"apt-mark paketleri otomatik ya da elle kurulmuş olarak işaretlemeye\n" +"ve mevcut işaretleri görmeye yarayan basit bir komut satırı arayüzüdür.\n" +"\n" +"Komutlar:\n" +" auto - Belirtilen paketleri otomatik kurulmuş olarak işaretle\n" +" manual - Belirtilen paketleri elle kurulmuş olarak işaretle\n" +" hold - Paketi tutulacak şekilde işaretle\n" +" unhold - Paketin tutuluyor işaretini kaldır\n" +" showauto - Otomatik olarak kurulmuş paketlerin listesini görüntüle\n" +" showmanual - Elle kurulmuş paketlerin listesini görüntüle\n" +" showhold - Tutulur durumda olan paketlerin listesini görüntüle\n" +"\n" +"Seçenekler:\n" +" -h Bu yardım metni.\n" +" -q Günlük tutmaya uygun çıktı - İlerleme göstergesi yok\n" +" -qq Hata olmadığı müddetçe çıktıya bir şey yazma\n" +" -s Bir şey yapma. Yalnızca ne yapılacağını söyler.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Belirtilen yapılandırma dosyası kullan\n" +" -o=? Yapılandırma seçeneği ayarla, örneğin -o dir::cache=/tmp\n" +"Ayrıntılı bilgi için apt-mark(8) ve apt.conf(5) rehber sayfalarına\n" +"bakabilirsiniz." -#: apt-pkg/sourcelist.cc:127 -#, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -"Kaynak listesinin (%2$s) %1$u numaralı girdisi hatalı (URI ayrıştırma)" +"Usage: apt [seçenekler] komut\n" +"\n" +"apt için komut satırı arayüzü.\n" +"Temel komutlar: \n" +" list - Paketleri adlarına göre listele\n" +" search - Paket açıklamalarında arama yap\n" +" show - Paket ayrıntılarını görüntüle\n" +"\n" +" update - Mevcut paket listesini güncelle\n" +"\n" +" install - paket kur\n" +" remove - paket kaldır\n" +"\n" +" upgrade - sistemi yükselt (paketleri kurarak ve yükselterek)\n" +" full-upgrade - sistemi yükselt (paketleri kurarak,yükselterek ve " +"kaldırarak)\n" +"\n" +" edit-sources - kaynak bilgi dosyasını düzenle\n" -#: apt-pkg/sourcelist.cc:170 +#: methods/cdrom.cc:203 #, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([seçenek] " -"ayrıştırılamıyor)" +msgid "Unable to read the cdrom database %s" +msgstr "'cdrom' veritabanı %s okunamıyor" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" msgstr "" -"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([seçenek] çok kısa)" +"Lütfen bu CD-ROM'un APT tarafından tanınması için apt-cdrom aracını " +"kullanın. apt-get update yeni CD-ROM'lar eklemek için kullanılamaz." -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "" -"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([%3$s] bir atama " -"değil)" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Yanlış CD-ROM" -#: apt-pkg/sourcelist.cc:190 +#: methods/cdrom.cc:249 #, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "" -"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([%3$s] seçeneğinin " -"anahtarı yok)" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "%s konumundaki CD-ROM çıkarılamıyor, hala kullanımda olabilir." -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([%3$s] %4$s " -"anahtarına değer atanmamış)" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disk bulunamadı." -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (URI)" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Dosya bulunamadı" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (dist)" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Durum bilgisi okunamadı" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "" -"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (URI ayrıştırma)" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Değişiklik zamanı ayarlanamadı" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (mutlak dist)" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Geçersiz URI, yerel URI'ler // ile başlamamalıdır" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "" -"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (dağıtım ayrıştırma)" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Giriş yapılıyor" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "%s Açılıyor" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Eş adı belirlenemiyor" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Kaynak listesinin (%2$s) %1$u numaralı satırı hatalı (tür)" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Yerel ad belirlenemiyor" -#: apt-pkg/sourcelist.cc:375 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "'%s' türü bilinmiyor. (Satır: %u, Kaynak Listesi: %s)" +msgid "The server refused the connection and said: %s" +msgstr "Sunucu bağlantıyı reddetti, sunucunun iletisi: %s" -#: apt-pkg/sourcelist.cc:416 +#: methods/ftp.cc:225 #, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "'%s' türü bilinmiyor (girdi: %u, kaynak listesi: %s)" +msgid "USER failed, server said: %s" +msgstr "USER başarısız, sunucunun iletisi: %s" -#: apt-pkg/deb/dpkgpm.cc:95 +#: methods/ftp.cc:232 #, c-format -msgid "Installing %s" -msgstr "%s kuruluyor" +msgid "PASS failed, server said: %s" +msgstr "PASS başarısız, sunucunun iletisi: %s" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "%s yapılandırılıyor" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"Bir Vekil sunucu belirtildi ancak oturum açma betiği belirtilmedi, Acquire::" +"ftp::ProxyLogin boş." -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#: methods/ftp.cc:280 #, c-format -msgid "Removing %s" -msgstr "%s kaldırılıyor" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Oturum açma betiği komutu '%s' başarısız oldu, sunucunun iletisi: %s" -#: apt-pkg/deb/dpkgpm.cc:98 +#: methods/ftp.cc:306 #, c-format -msgid "Completely removing %s" -msgstr "%s tamamen kaldırılıyor" +msgid "TYPE failed, server said: %s" +msgstr "TYPE başarısız, sunucunun iletisi: %s" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "%s paketinin kaybolduğu not ediliyor" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Bağlantı zaman aşımına uğradı" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Kurulum sonrası tetikleyicisi %s çalıştırılıyor" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Sunucu bağlantıyı kesti" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "'%s' dizini bulunamadı" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Okuma hatası" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "'%s' dosyası açılamadı" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Bir yanıt arabelleği taşırdı." -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "%s hazırlanıyor" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "İletişim kuralları bozulması" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "%s paketi açılıyor" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Yazma hatası" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "%s paketini yapılandırmaya hazırlanılıyor" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Bir soket oluşturulamadı" -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "%s kuruldu" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Veri soketine bağlanılamadı, bağlantı zaman aşımına uğradı" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "%s paketinin kaldırılmasına hazırlanılıyor" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Başarısız" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "%s kaldırıldı" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Edilgen sokete bağlanılamadı." -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "%s paketinin tamamen kaldırılmasına hazırlanılıyor" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo bir dinleme soketi alamıyor" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "%s tamamen kaldırıldı" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Bir sokete bağlanılamadı" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "ioctl(TIOCGWINSZ) başarısız oldu" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Soket dinlenemedi" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, c-format -msgid "Can not write log (%s)" -msgstr "Günlük dosyasına yazılamıyor (%s)" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Soketin adı belirlenemedi" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "/dev/pts bağlı mı?" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "PORT komutu gönderilemedi" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "stdout bir uçbirim mi?" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "Bilinmeyen adres ailesi %u (AF_*)" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/ftp.cc:811 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "%s için beklenildi ama o gelmedi" +msgid "EPRT failed, server said: %s" +msgstr "EPRT başarısız, sunucunun iletisi: %s" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "İşlem yarıda kesildi" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Veri soketi bağlantısı zaman aşımına uğradı" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" -"En fazla rapor miktarına (MaxReports) ulaşıldığı için apport raporu yazılmadı" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Bağlantı kabul edilemiyor" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "bağımlılık sorunları - yapılandırılmamış durumda bırakılıyor" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Dosya sağlaması yapılamadı" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"Apport raporu yazılmadı çünkü hata iletisi bu durumun bir önceki hatadan " -"kaynaklanan bir hata olduğunu belirtiyor." +#: methods/ftp.cc:890 +#, c-format +msgid "Unable to fetch file, server said '%s'" +msgstr "Dosya alınamıyor, sunucunun iletisi: '%s'" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Hata iletisi diskin dolu olduğunu belirttiği için apport raporu yazılamadı" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Veri soketi zaman aşımına uğradı" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Hata iletisi bir bellek yetersizliği hatasına işaret ettiği için apport " -"raporu yazılamadı" +#: methods/ftp.cc:935 +#, c-format +msgid "Data transfer failed, server said '%s'" +msgstr "Veri aktarımı başarısız, sunucunun iletisi: '%s'" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" -"Hata iletisi yerel bir sistem hatasına işaret ettiği için apport raporu " -"yazılamadı" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Sorgu" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" -"Hata iletisi bir dpkg G/Ç hatasına işaret ettiği için apport raporu " -"yazılamadı" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Çağrılamıyor " -#: apt-pkg/deb/debsystem.cc:91 +#: methods/connect.cc:76 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"Yönetim dizini (%s) kilitlenemiyor, başka bir işlem tarafından kullanılıyor " -"olmasın?" +msgid "Connecting to %s (%s)" +msgstr "Bağlanılıyor %s (%s)" -#: apt-pkg/deb/debsystem.cc:94 +#: methods/connect.cc:87 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Yönetim dizini (%s) kilitlenemiyor, root kullanıcısı mısınız?" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: methods/connect.cc:94 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" -"dpkg kesintiye uğradı, sorunu düzeltmek için elle '%s' komutunu çalıştırın. " - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Kilitlenmemiş" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "%s için bir soket oluşturulamadı (f=%u t=%u p=%u)" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 +#: methods/connect.cc:100 #, c-format -msgid "%lid %lih %limin %lis" -msgstr "%li gün %li saat %li dk. %li sn." +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "%s:%s bağlantısı başlatılamıyor (%s)." -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: methods/connect.cc:108 #, c-format -msgid "%lih %limin %lis" -msgstr "%li saat %li dk. %li sn." +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Adrese bağlanılamadı: %s:%s (%s), bağlantı zaman aşımına uğradı" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: methods/connect.cc:126 #, c-format -msgid "%limin %lis" -msgstr "%li dk. %li sn." +msgid "Could not connect to %s:%s (%s)." +msgstr "Adrese bağlanılamadı: %s:%s (%s)." -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "%lis" -msgstr "%li sn." +msgid "Connecting to %s" +msgstr "Bağlanılıyor: %s" -#: apt-pkg/contrib/strutl.cc:1243 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Selection %s not found" -msgstr "%s seçimi bulunamadı" +msgid "Could not resolve '%s'" +msgstr "'%s' çözümlenemedi" -#: apt-pkg/contrib/fileutl.cc:190 +#: methods/connect.cc:205 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Kilitleme dosyası %s salt okunur olduğu için kilitleme kullanılmıyor" +msgid "Temporary failure resolving '%s'" +msgstr "'%s' çözümlenirken geçici bir sorunla karşılaşıldı" -#: apt-pkg/contrib/fileutl.cc:195 +#: methods/connect.cc:209 #, c-format -msgid "Could not open lock file %s" -msgstr "Kilit dosyası %s açılamadı" +msgid "System error resolving '%s:%s'" +msgstr "'%s:%s' çözümlenirken bir sistem hatası oluştu" -#: apt-pkg/contrib/fileutl.cc:218 +#: methods/connect.cc:211 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "nfs ile bağlanmış kilit dosyası %s için kilitleme kullanılmıyor" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "'%s:%s' (%i - %s) adresi çözümlenirken bir şeyler kötü gitti" -#: apt-pkg/contrib/fileutl.cc:223 +#: methods/connect.cc:258 #, c-format -msgid "Could not get lock %s" -msgstr "%s kilidi alınamadı" +msgid "Unable to connect to %s:%s:" +msgstr "Bağlanılamıyor %s:%s:" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "'%s' dizin olmadığı için dosya listeli oluşturulamıyor" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "İç hata: İmza iyi, ancak anahtar parmak izi belirlenemedi?!" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" -"'%2$s' dizinindeki '%1$s' normal bir dosya olmadığı için görmezden geliniyor." +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "En az bir geçersiz imza ile karşılaşıldı." -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" -"'%2$s' dizinindeki '%1$s' dosyası uzantısı olmadığı için görmezden geliniyor." +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "İmza doğrulama için 'gpgv' çalıştırılamadı (gpgv kurulu mu?)" -#: apt-pkg/contrib/fileutl.cc:421 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"'%2$s' dizinindeki '%1$s' dosyası geçersiz bir dosya uzantısı olduğu için " -"yok sayılıyor." +"Temiz-imzalı dosya geçerli değil, '%s' hatası alındı (ağ kimlik doğrulama " +"gerektiriyor mu?)" + +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "gpgv çalıştırılırken bilinmeyen hata" + +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Aşağıdaki imzalar geçersiz:\n" + +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "Aşağıdaki imzalar doğrulanamadı, çünkü genel anahtar mevcut değil:\n" + +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Boş dosyalar geçerli birer arşiv dosyası olamazlar" + +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Dosyaya yazılamadı" + +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Sunucundan okunurken hata. Uzak sonlu kapalı bağlantı" + +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Sunucundan okunurken hata" + +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Dosyaya yazılamadı" + +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Seçme başarısız" + +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Bağlantı zaman aşımına uğradı" + +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Çıktı dosyasına yazılırken hata" + +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Başlıklar bekleniyor" + +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Kötü başlık satırı" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "%s altsüreci bir bölümleme hatası aldı (segmentation fault)." +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "HTTP sunucusu geçersiz bir cevap başlığı gönderdi" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "%s altsüreci %u sinyali aldı" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "HTTP sunucusu geçersiz bir Content-Length başlığı gönderdi" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "%s altsüreci bir hata kodu gönderdi (%u)" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "HTTP sunucusu geçersiz bir Content-Range başlığı gönderdi" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "%s altsüreci beklenmeyen bir şekilde sona erdi" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "HTTP sunucusunun aralık desteği bozuk" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Yazma hatası" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Bilinmeyen tarih biçimi" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Gzip dosyası %s kapatılamadı" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Kötü başlık verisi" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "%s dosyası açılamadı" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Bağlantı başarısız" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "Dosya tanımlayıcı %d açılamadı" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "İç hata" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Altsüreç IPC'si oluşturulamadı" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "Sıralama" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Sıkıştırma programı çalıştırılamadı " +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "İç hata, InstallPackages bozuk paketler ile çağrıldı!" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Okuma hatası" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "" +"Paketlerin kaldırılması gerekiyor ancak kaldırma işlemi devre dışı " +"bırakılmış." -#: apt-pkg/contrib/fileutl.cc:1514 +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "İç hata, Sıralama tamamlanamadı" + +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Ne kadar ilginç... Boyutlar eşleşmedi, apt@packages.debian.org adresine " +"eposta atın." + +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "read, still have %llu to read but none left" -msgstr "read, %llu bayt okunması gerekli fakat hiç kalmamış" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "%sB/%sB arşiv dosyası indirilecek.\n" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "write, yazılması gereken %llu bayt yazılamıyor" +msgid "Need to get %sB of archives.\n" +msgstr "%sB arşiv dosyası indirilecek.\n" -#: apt-pkg/contrib/fileutl.cc:1915 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "Problem closing the file %s" -msgstr "%s dosyası kapatılamadı" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Bu işlem tamamlandıktan sonra %sB ek disk alanı kullanılacak.\n" -#: apt-pkg/contrib/fileutl.cc:1927 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "%s dosyası %s olarak yeniden adlandırılamadı" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Bu işlem tamamlandıktan sonra %sB disk alanı boşalacak.\n" -#: apt-pkg/contrib/fileutl.cc:1938 +#: apt-private/private-install.cc:200 #, c-format -msgid "Problem unlinking the file %s" -msgstr "%s dosyasından bağ kaldırma sorunu" +msgid "You don't have enough free space in %s." +msgstr "%s içinde yeterli boş alanınız yok." -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Dosya eşitlenirken sorun çıktı" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Bazı sorunlar çıktı ve -y seçeneği, --force-yes olmadan kullanıldı" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Hata!" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "" +"Yalnızca Önemsiz seçeneği ayarlandı, fakat bu önemsiz bir işlem bir değil." -#: apt-pkg/contrib/progress.cc:150 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Evet, söylediğim şekilde yap!" + +#: apt-private/private-install.cc:222 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Bitti" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Tehlikeli bir iş yapmak üzeresiniz.\n" +"Devam etmek için '%s' ifadesini yazınız\n" +" ?] " -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "..." +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Vazgeç." -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... %u%%" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Devam etmek istiyor musunuz?" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Boş dosya mmap yapılamıyor" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Bazı dosyalar indirilemedi" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Dosya tanımlayıcı %i çoğaltılamadı" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"Bazı arşivler alınamıyor, apt-get update'i çalıştırmayı ya da --fix-missing " +"seçeneğini ekleyerek düzeltmeyi deneyin." -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "%llu baytlık mmap yapılamaz" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing seçeneği ve ortam takası şu an için desteklenmiyor" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "mmap kapatılamıyor" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Eksik paketler düzeltilemedi." -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "mmap eşlenemiyor" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Kurulum iptal ediliyor." -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "%lu baytlık mmap yapılamaz" +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"Tüm dosyalarının üzerine yazıldığı için aşağıdaki paket\n" +"sisteminizden kayboldu:" +msgstr[1] "" +"Tüm dosyalarının üzerine yazıldığı için aşağıdaki paketler\n" +"sisteminizden kayboldu:" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Dosya kesilemedi" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Not: Bu eylem dpkg tarafından otomatik ve kasıtlı olarak yapılmıştır." -#: apt-pkg/contrib/mmap.cc:341 -#, c-format +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Nesneleri silmemiz beklenemez, AutoRemover çalıştırılamıyor" + +#: apt-private/private-install.cc:499 msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Dinamik MMap yerine sığamadı. Lütfen APT::Cache-Start boyutunu artırın. " -"Kullanımdaki değer: %lu (ayrıntılı bilgi için man 5 apt.conf komutunu " -"kullanın)" +"AutoRemover yapmaması gereken bir yıkıma\n" +"sebep oldu. Lütfen apt hakkında bir hata raporu doldurun." + +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Aşağıdaki bilgiler durumu çözmenize yardımcı olabilir:" -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "%lu baytlık sınıra ulaşıldığı için MMap boyutu artırılamadı." +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "İç hata, AutoRemover bazı şeyleri bozdu" -#: apt-pkg/contrib/mmap.cc:449 +#: apt-private/private-install.cc:513 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" -"Otomatik büyüme kullanıcı tarafından kapatıldığı için MMap boyutu " -"artırılamadı." +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "" +"Aşağıdaki paket otomatik olarak kurulmuş ve artık bu pakete gerek duyulmuyor:" +msgstr[1] "" +"Aşağıdaki paketler otomatik olarak kurulmuş ve artık bu paketlere gerek " +"duyulmuyor:" -#: apt-pkg/contrib/cdromutl.cc:65 +#: apt-private/private-install.cc:517 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "Bağlama noktasının (%s) durum bilgisi alınamadı" - -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Cdrom durum bilgisi alınamadı" +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "%lu paket otomatik olarak kurulmuş ve artık gerekli değil.\n" +msgstr[1] "%lu paket otomatik olarak kurulmuş ve artık gerekli değil.\n" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Tanınamayan tür kısaltması: '%c'" +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Bu paketi kaldırmak için 'apt-get autoremove' komutunu kullanın." +msgstr[1] "Bu paketleri kaldırmak için 'apt-get autoremove' komutunu kullanın." -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Yapılandırma dosyası (%s) açılıyor" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "" +"Bunları düzeltmek için 'apt-get -f install' komutunu çalıştırmanız " +"gerekebilir:" -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Sözdizim hatası %s:%u: Blok ad olmadan başlıyor." +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"Karşılanmamış bağımlılıklar. 'apt-get -f install' komutunu paket seçeneği " +"vermeden deneyin (ya da bir çözüm belirtin)." -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Sözdizim hatası %s:%u: Kötü biçimlendirilmiş etiket" +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"Bazı paketler kurulamadı. Bu durum, olanaksız bir durum istemiş\n" +"olduğunuzu ya da kararsız (unstable) dağıtımı kullandığınızı ve\n" +"bazı paketlerin henüz oluşturulamamış ya da oluşturulmakta\n" +"olduğunu gösterir." -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Sözdizim hatası %s:%u: Değerden sonra ilave gereksiz" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Bozuk paketler" -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "Sözdizim hatası %s:%u: Yönergeler yalnızca en üst düzeyde bitebilir" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Aşağıdaki ek paketler de kurulacak:" -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Sözdizim hatası %s:%u: Çok fazla yuvalanmış 'include'" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Önerilen paketler:" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Sözdizim hatası %s:%u: Buradan 'include' edilmiş" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Tavsiye edilen paketler:" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-private/private-install.cc:825 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Sözdizim hatası %s:%u: Desteklenmeyen yönerge '%s'" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "%s atlanıyor, bu paket zaten kurulu ve yükseltme seçilmemiş.\n" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-private/private-install.cc:829 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" -"Sözdizim hatası %s:%u: clear yönergesi argüman olarak bir seçenek ağacı " -"gerektirir." - -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Sözdizim hatası %s:%u: Dosya sonunda ilave gereksiz" - -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, c-format -msgid "No keyring installed in %s." -msgstr "%s dizininde kurulu bir anahtar yok." +"%s atlanıyor, bu paket kurulu değil ve sadece yükseltmeler isteniyor.\n" -#: apt-pkg/contrib/cmndline.cc:121 +#: apt-private/private-install.cc:841 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Komut satırı seçeneği '%c' [%s içinden] tanınmıyor." +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "" +"%s paketinin yeniden kurulumu mümkün değil, çünkü paket internetten " +"indirilemedi.\n" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-private/private-install.cc:846 #, c-format -msgid "Command line option %s is not understood" -msgstr "Komut satırı seçeneği %s anlaşılamadı" +msgid "%s is already the newest version.\n" +msgstr "%s zaten en yeni sürümde.\n" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-private/private-install.cc:894 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Komut satırı seçeneği %s mantıksal değer değil" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "'%3$s' paketinin '%1$s' (%2$s) sürümü seçildi\n" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-private/private-install.cc:899 #, c-format -msgid "Option %s requires an argument." -msgstr "%s seçeneği bir bağımsız değişkene gerek duyar." +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "'%4$s' nedeniyle '%3$s' paketinin '%1$s' (%2$s) sürümü seçildi\n" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" msgstr "" -"%s seçeneği: Yapılandırma öğesi tanımlaması =<değer> şeklinde değer " -"içermelidir." - -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "%s seçeneği bir tam sayı bağımsız değişkene gerek duyar, '%s' değil" - -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "'%s' seçeneği çok uzun" +"'%s' kurulu değildi, dolayısıyla kaldırılmadı. Bunu mu demek istediniz: " +"'%s'?\n" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-private/private-install.cc:947 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "%s algılaması anlaşılamadı, true (doğru) ya da false (yanlış) deneyin." +msgid "Package '%s' is not installed, so not removed\n" +msgstr "'%s' kurulu değildi, dolayısıyla kaldırılmadı.\n" -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "Geçersiz işlem: %s" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "Listeleme" -#: cmdline/apt-cache.cc:149 +#: apt-private/private-list.cc:164 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "%s paketinin (sürüm %s) karşılanamayan bir bağımlılığı var:\n" - -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Toplam paketlerin adları: " +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +"Fazladan %i sürüm daha var. Görmek için '-a' anahtarını kullanabilirsiniz." +msgstr[1] "" +"Fazladan %i sürüm daha var. Bu sürümleri görmek için '-a' anahtarını " +"kullanabilirsiniz." -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Toplam paket yapıları: " +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Bağımlılıklar düzeltiliyor..." -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Normal paketler: " +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " başarısız oldu." -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Saf sanal paketler: " +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Bağımlılıklar düzeltilemedi" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Tekil sanal paketler: " +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Yükseltme kümesi küçültülemiyor" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Karışık sanal paketler: " +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Tamamlandı" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Eksik: " +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "" +"Bu sorunları düzeltmek için 'apt-get -f install' komutunu çalıştırmanız " +"gerekebilir." -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Toplam farklı sürümler: " +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Karşılanmayan bağımlılıklar. -f kullanmayı deneyin." -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Toplam farklı açıklamalar: " +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "bilinmeyen" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Toplam bağımlılıklar: " +#: apt-private/private-output.cc:234 +#, c-format +msgid "[installed,upgradable to: %s]" +msgstr "[kurulu,yükseltilebilir: %s]" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Toplam sürüm/dosya ilişkileri: " +#: apt-private/private-output.cc:238 +msgid "[installed,local]" +msgstr "[kurulu,yerel]" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Toplam Tanım/Dosya ilişkileri: " +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "[kurulu,otomatik-kaldırılabilir]" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Toplam destekleme eşleştirmeleri: " +#: apt-private/private-output.cc:243 +msgid "[installed,automatic]" +msgstr "[kurulu,otomatik]" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Toplam birikmiş dizgiler: " +#: apt-private/private-output.cc:245 +msgid "[installed]" +msgstr "[kurulu]" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Toplam bağlımlık sürümü alanı: " +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "[şundan yükseltilebilir: %s]" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Toplam serbest alan: " +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "[artık-yapılandırma]" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Hesaplanan toplam alan: " +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "ama %s kurulu" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 +#: apt-private/private-output.cc:437 #, c-format -msgid "Package file %s is out of sync." -msgstr "%s paket dosyası eşzamansız." +msgid "but %s is to be installed" +msgstr "ama %s kurulacak" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Hiç paket bulunamadı" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "ama kurulabilir değil" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "En az bir arama örüntüsü vermelisiniz" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "ama o bir sanal paket" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" -"Bu komutun kullanımı bırakılmıştır. Lütfen bunun yerine 'apt-mark showauto' " -"komutunu kullanın." +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "ama kurulu değil" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Paket dosyaları:" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "ama kurulmayacak" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Önbellek eşzamanlı değil, paket dosyası 'x-ref' yapılamıyor." +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " ya da" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Sabitlenmiş paketler:" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Aşağıdaki paketler karşılanmamış bağımlılıklara sahip:" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(bulunamadı)" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Aşağıdaki YENİ paketler kurulacak:" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Kurulu: " +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Aşağıdaki paketler KALDIRILACAK:" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Aday: " +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Aşağıdaki paketlerin mevcut durumları korunacak:" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(hiçbiri)" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Aşağıdaki paketler yükseltilecek:" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Paket sabitleme: " +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Aşağıdaki paketlerin SÜRÜMLERİ DÜŞÜRÜLECEK:" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Sürüm çizelgesi:" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Aşağıdaki eski sürümlerinde tutulan paketler değiştirilecek:" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-private/private-output.cc:668 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s (%s için) %s %s tarihinde derlendi\n" +msgid "%s (due to %s) " +msgstr "%s (%s nedeniyle) " -#: cmdline/apt-cache.cc:1749 +#: apt-private/private-output.cc:676 msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Kullanım: apt-cache [seçenekler] komut\n" -" apt-cache [seçenekler] showpkg paket1 [paket2 ...]\n" -" apt-cache [seçenekler] showsrc paket1 [paket2 ...]\n" -"\n" -"apt-cache APT'nin ikili paket önbelleğindeki dosyaları\n" -"sorgulamakta kullanılan alt seviye bir araçtır.\n" -"\n" -"Komutlar:\n" -" gencaches - Hem paket hem de kaynak önbelleğini oluştur\n" -" showpkg - Tek bir paket hakkındaki genel bilgileri görüntüle\n" -" showsrc - Paket kayıtlarını görüntüle\n" -" stats - Bir takım basit istatistikleri görüntüle\n" -" dump - Bütün dosyayı kısa biçimde görüntüle\n" -" dumpavail - Uygun bir dosyayı standart çıktıya yazdır\n" -" unmet - Karşılanmayan bağımlılıkları görüntüle\n" -" search - Paket listesini bir düzenli ifade ile ara\n" -" show - Bir paketin okunabilir kaydını görüntüle\n" -" depends - Bir paketin bağımlılık bilgilerini ham haliyle görüntüle\n" -" rdepends - Bir paketin ters bağımlılık bilgilerini görüntüle\n" -" pkgnames - Sistemdeki tüm paketlerin adlarını listele\n" -" dotty - GraphViz için paket grafikleri üret\n" -" xvcg - xvcg için paket grafikleri üret\n" -" policy - İlke seçeneklerini görüntüle\n" -"\n" -"Options:\n" -" -h Bu yardım metni.\n" -" -p=? Paket önbelleği.\n" -" -s=? Kaynak önbelleği.\n" -" -q İlerleme göstergesini kapat.\n" -" -i unmet komutunda yalnızca önemli bağımlılıkları görüntüle.\n" -" -c=? Belirtilen yapılandırma dosyasını kullan\n" -" -o=? Herhangi bir yapılandırma seçeneğini ayarla, örneğin -o dir::cache=/" -"tmp\n" -"Ayrıntılı bilgi için apt-cache(8) ve apt.conf(5) rehber sayfalarına göz " -"atın.\n" +"UYARI: Aşağıdaki temel paketler kaldırılacak.\n" +"Bu işlem ne yaptığınızı tam olarak bilmediğiniz takdirde YAPILMAMALIDIR!" + +#: apt-private/private-output.cc:707 +#, c-format +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu paket yükseltilecek, %lu yeni paket kurulacak, " + +#: apt-private/private-output.cc:711 +#, c-format +msgid "%lu reinstalled, " +msgstr "%lu paket yeniden kurulacak, " + +#: apt-private/private-output.cc:713 +#, c-format +msgid "%lu downgraded, " +msgstr "%lu paketin sürümü düşürülecek, " + +#: apt-private/private-output.cc:715 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu paket kaldırılacak ve %lu paket yükseltilmeyecek.\n" + +#: apt-private/private-output.cc:719 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "%lu paket tam olarak kurulmayacak ya da kaldırılmayacak.\n" + +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[E/h]" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Lütfen bu CD/DVD'ye bir isim verin, örneğin 'Debian 5.0.3 Disk 1'" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[e/H]" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Lütfen sürücüye bir Disk yerleştirin ve giriş tuşuna (Enter) basın" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "E" -#: cmdline/apt-cdrom.cc:139 +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "H" + +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "'%s', '%s' konumuna bağlanamadı" +msgid "Regex compilation error - %s" +msgstr "Regex derleme hatası - %s" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" -"Öntanımlı bağlama noktasında bir CD-ROM algılanamadı.\n" -"CD-ROM bağlama noktasını ayarlamak için --cdrom seçeneğini kullanmayı " -"deneyebilirsiniz.\n" -"Otomatik CD-ROM ve bağlantı noktası algılama hakkında daha fazla bilgi almak " -"için 'man apt-cdrom' komutunu kullanabilirsiniz." +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "'update' komutu bağımsız değişken almamaktadır" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Kalan CD'leriniz için bu işlemi yineleyin." +#: apt-private/private-update.cc:90 +#, c-format +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +"%i paket yükseltilebilir. Bu paketi görmek için 'apt list --upgradable' " +"komutunu çalıştırın.\n" +msgstr[1] "" +"%i paket yükseltilebilir. Bu paketleri görmek için 'apt list --upgradable' " +"komutunu çalıştırın.\n" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Değişkenler (argüman) çiftler halinde değil" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "Tüm paketler güncel." -#: cmdline/apt-config.cc:89 +#: apt-private/private-show.cc:156 +#, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +"Fazladan %i kayıt daha var. Görmek için '-a' anahtarını kullanabilirsiniz." +msgstr[1] "" +"Fazladan %i kayıt daha var. Görmek için '-a' anahtarını kullanabilirsiniz." + +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "gerçek bir paket değil (sanal)" + +#: apt-private/private-main.cc:32 msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -"Kullanım: apt-config [seçenekler] komut\n" -"\n" -"apt-config, APT ayar dosyasını okumaya yarayan basit bir araçtır\n" -"\n" -"Komutlar:\n" -" shell - Kabuk kipi\n" -" dump - Ayarları görüntüle\n" -"\n" -"Seçenekler:\n" -" -h Bu yardım dosyası.\n" -" -c=? Belirtilen ayar dosyasını görüntüler\n" -" -o=? İsteğe bağlı ayar seçeneği belirtmenizi sağlar, örneğin -o dir::" -"cache=/tmp\n" +"NOT: Bu sadece simülasyondur!\n" +" apt-get sadece root hakları ile gerçekten kullanılabilir.\n" +" Unutmayın ki simülasyonda kilitleme yapılmaz,\n" +" bu nedenle bu simülasyonun tam uygunluğuna güvenmeyin." -#: cmdline/apt-get.cc:245 -#, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "'%s' mimarisi için bir paket bulunamadı" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "UYARI: Aşağıdaki paketler doğrulanamıyor!" -#: cmdline/apt-get.cc:327 -#, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "'%s' paketinin '%s' sürümü bulunamadı" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Kimlik denetimi uyarısı görmezden geliniyor.\n" -#: cmdline/apt-get.cc:330 -#, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "'%s' paketi '%s' dağıtım sürümünde bulunamadı" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Bazı paketlerin kimlik denetimi yapılamadı" -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Kaynak paket olarak '%s' yerine '%s' kullanılacak\n" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Paketler doğrulanmadan kurulsun mu?" -#: cmdline/apt-get.cc:423 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "'%2$s' paketinin '%1$s' sürümünü bulunamadı" +msgid "Failed to fetch %s %s\n" +msgstr "%s ağdan alınamadı. %s\n" -#: cmdline/apt-get.cc:454 +#: apt-private/private-sources.cc:58 #, c-format -msgid "Couldn't find package %s" -msgstr "%s paketi bulunamadı" +msgid "Failed to parse %s. Edit again? " +msgstr "%s ayrıştırılamadı. Tekrar düzenlemek ister misiniz?" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-private/private-sources.cc:70 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s elle kurulmuş olarak ayarlı.\n" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "'%s' dosyası değişti, lütfen 'apt-get update' komutunu çalıştırın." -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s otomatik olarak kurulmuş şekilde ayarlandı.\n" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "Tam Metin Arama" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"Bu komut artık kullanılmamaktadır. Bunun yerine 'apt-mark auto' ve 'apt-mark " -"manual' kullanın." +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Yükseltme hesaplanıyor... " -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "İç hata, sorun çözücü nesneyi bozdu" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Bitti" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "İndirme dizini kilitlenemiyor" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Bağlandı " -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Kaynağının indirileceği en az bir paket seçilmeli" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Alınıyor: " -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Yoksay " + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Hata " + +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Unable to find a source package for %s" -msgstr "%s paketinin kaynak paketi bulunamadı" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "%2$s'de %1$sB alındı (%3$sB/s)\n" -#: cmdline/apt-get.cc:786 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" -"NOT: '%s' paketlemesi '%s' sürüm kontrol sistemiyle aşağıdaki adreste " -"yapılmaktadır:\n" -"%s\n" +msgid " [Working]" +msgstr " [Çalışıyor]" -#: cmdline/apt-get.cc:791 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"Bu paketin en son (ve muhtemelen henüz yayımlanmamış olan)\n" -"sürümünü edinmek için lütfen:\n" -"bzr branch %s\n" -"komutunu kullanın.\n" +"Ortam değişimi: Lütfen '%2$s' sürücüsüne\n" +" '%1$s'\n" +"olarak etiketlenmiş diski takın ve enter tuşuna basın.\n" -#: cmdline/apt-get.cc:843 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Zaten indirilmiş olan '%s' dosyası atlanıyor\n" +msgid "Unable to read %s" +msgstr "%s okunamıyor" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "%s içindeki boş alan miktarı belirlenemedi" +msgid "Unable to change to %s" +msgstr "%s olarak değiştirilemedi" -#: cmdline/apt-get.cc:882 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "You don't have enough free space in %s" -msgstr "%s üzerinde yeterli boş alan yok" +msgid "No mirror file '%s' found " +msgstr "'%s' yansı dosyası bulunamadı " -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "%sB/%sB kaynak arşivi indirilecek.\n" +msgid "Can not read mirror file '%s'" +msgstr "Yansı dosyası %s okunamıyor" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 +#: methods/mirror.cc:315 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "%sB kaynak arşivi indirilecek.\n" +msgid "No entry found in mirror file '%s'" +msgstr "'%s' yansı dosyasında hiç girdi bulunmuyor" -#: cmdline/apt-get.cc:902 +#: methods/mirror.cc:445 #, c-format -msgid "Fetch source %s\n" -msgstr "%s kaynağını al\n" +msgid "[Mirror: %s]" +msgstr "[Yansı: %s]" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Bazı arşivler alınamadı." +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Altsürece IPC borusu oluşturulamadı" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "İndirme işlemi tamamlandı ve sadece indirme kipinde" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Bağlantı vaktinden önce kapandı" -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "%s için zaten açılmış bazı paketlerin açılması atlanıyor.\n" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Geçersiz öntanımlı ayar!" -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Paket açma komutu '%s' başarısız.\n" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Devam etmek için giriş (enter) tuşuna basın." -#: cmdline/apt-get.cc:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "'dpkg-dev' paketinin kurulu olduğundan emin olun.\n" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Daha önceden indirilmiş .deb dosyalarını silmek istiyor musunuz?" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "İnşa komutu '%s' başarısız oldu.\n" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "" +"Paket açılırken bazı sorunlar çıktı. Kurulan paketler yapılandırılacak." -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Alt süreç başarısız" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "Bu durum, çift hata iletilerine ya da eksik bağımlılıkların neden" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "İnşa bağımlılıklarının denetleneceği en az bir paket belirtilmedilir" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "" +"olduğu hatalara yol açabilir. Bu durum bir sorun teşkil etmez, yalnızca bu " +"iletinin" -#: cmdline/apt-get.cc:1054 -#, c-format +#: dselect/install:105 msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"%s mimarisine uygun mimari bilgileri mevcut değil. Kurulumu için apt.conf(5) " -"rehber sayfasındaki APT::Architectures kısmına göz atın." +"üstündeki hatalar önemlidir. Lütfen bunları onarın ve [I]nstall komutunu " +"yeniden çalıştırın" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "%s paketinin inşa-bağımlılığı bilgisi alınamıyor" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Kullanılabilir bilgiler birleştiriliyor" -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s paketinin hiç inşa bağımlılığı yok.\n" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode hala bağlı olan düğüm üzerinde çağrıldı" + +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Sağlama elementi bulunamadı" + +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Yönlendirme tahsisi başarısız oldu" + +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "AddDiversion'da iç hata" -#: cmdline/apt-get.cc:1271 +#: apt-inst/filelist.cc:477 #, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"'%4$s' paketlerinde %3$s paketine izin verilmediği için %2$s kaynağının %1$s " -"bağımlılığı karşılanamıyor." +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Bir yönlendirmenin üzerine yazılmaya çalışılıyor, %s -> %s ve %s/%s" -#: cmdline/apt-get.cc:1289 +#: apt-inst/filelist.cc:506 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" -"%2$s için %1$s bağımlılığı, %3$s paketi bulunamadığı için karşılanamadı." +msgid "Double add of diversion %s -> %s" +msgstr "Aynı dosya iki kez yönlendirilemez: %s -> %s" -#: cmdline/apt-get.cc:1312 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "%2$s için %1$s bağımlılığı karşılanamadı: Kurulu %3$s paketi çok yeni." +msgid "Duplicate conf file %s/%s" +msgstr "%s/%s yapılandırma dosyası zaten mevcut" -#: cmdline/apt-get.cc:1351 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"%2$s için %1$s bağımlılığı sağlanamıyor, çünkü %3$s paketinin aday sürümü " -"gerekli sürüm şartlarını karşılamıyor" +msgid "The path %s is too long" +msgstr "%s yolu çok uzun" -#: cmdline/apt-get.cc:1357 +#: apt-inst/extract.cc:132 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "" -"%2$s için %1$s bağımlılığı sağlanamıyor, çünkü %3$s paketinin aday sürümü yok" +msgid "Unpacking %s more than once" +msgstr "%s paketi bir çok kez açıldı" -#: cmdline/apt-get.cc:1380 +#: apt-inst/extract.cc:142 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "%2$s için %1$s bağımlılığı karşılanamadı: %3$s" +msgid "The directory %s is diverted" +msgstr "%s dizini yönlendirilmiş" -#: cmdline/apt-get.cc:1395 +#: apt-inst/extract.cc:152 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "%s için inşa bağımlılıkları karşılanamadı." +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Bu paket yönlendirme hedefine (%s/%s) yazmayı deniyor" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "İnşa bağımlılıklarını işleme başarısız oldu" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Yönlendirme yolu çok uzun" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Changelog for %s (%s)" -msgstr "%s (%s) paketinin değişim günlüğü" - -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Desteklenen birimler:" +msgid "Failed to stat %s" +msgstr "%s durum bilgisi alınamadı" -#: cmdline/apt-get.cc:1632 -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -msgstr "" -"Kullanım: apt-get [seçenekler] komut\n" -" apt-get [seçenekler] install|remove paket1 [paket2 ...]\n" -" apt-get [seçenekler] kaynak paket1 [paket2 ...]\n" -"\n" -"apt-get, paket indirmek ve kurmakta kullanılan basit bir komut satırı\n" -"arayüzüdür. En sık kullanılan komutlar güncelleme (update) ve kurma\n" -"(install) komutlarıdır.\n" -"\n" -"Komutlar:\n" -" update - Paket listelerini yenile\n" -" upgrade - Yükseltme işlemini gerçekleştir\n" -" install - Yeni paket kur (paket adı libc6.deb değil libc6 şeklinde " -"olmalıdır)\n" -" remove - Paket(leri) kaldır\n" -" autoremove - Kullanılmayan tüm paketleri otomatik olarak kaldır\n" -" purge - Paketleri ve yapılandırma dosyalarını kaldır\n" -" source - Kaynak paket dosyalarını indir\n" -" build-dep - Kaynak paketlerin inşa bağımlılıklarını yapılandır\n" -" dist-upgrade - Dağıtım yükseltme, ayrıntılı bilgi için apt-get(8)\n" -" dselect-upgrade - dselect yapılandırmalarına uy\n" -" clean - İndirilmiş olan arşiv dosyalarını sil\n" -" autoclean - İndirilmiş olan eski arşiv dosyalarını sil\n" -" check - Eksik bağımlılık olmadığından emin ol\n" -" changelog - Belirtilen paketlerin değişim günlüklerini indir ve " -"görüntüle\n" -" download - İkili paketleri içinde bulunulan dizine indir\n" -"\n" -"Seçenekler:\n" -" -h Bu yardım metni.\n" -" -q Günlük tutmaya uygun çıktı - İlerleme göstergesi yok\n" -" -qq Hata olmadığı müddetçe çıktıya bir şey yazma\n" -" -d Yalnızca indir - Paketleri açmaz ve kurmaz\n" -" -s Bir şey yapma. Simülasyon kipinde çalış\n" -" -y Tüm sorulara Evet yanıtını ver ve soru sorma\n" -" -f Eksik bağımlılıklara sahip bir sistemi onarmaya çalış\n" -" -m Eksik paketleri görmezden gel ve işleme devam et\n" -" -u Yükseltilen paketlerin listesini de görüntüle\n" -" -b Kaynak paketi indirdikten sonra inşa et\n" -" -V Sürüm numaralarını daha ayrıntılı göster\n" -" -c=? Belirtilen yapılandırma dosyası kullan\n" -" -o=? Yapılandırma seçeneği ayarla, örneğin -o dir::cache=/tmp\n" -"Ayrıntılı bilgi için apt-get(8), sources.list(5) ve apt.conf(5) rehber\n" -"sayfalarına bakabilirsiniz.\n" -" Bu APT'nin Süper İnek Güçleri vardır.\n" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "%s, %s olarak yeniden adlandırılamadı" -#: cmdline/apt-helper.cc:35 -msgid "Must specify at least one pair url/filename" -msgstr "En az bir adet url/dosyaadı çifti belirtilmelidir" +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "%s dizini dizin olmayan bir öğeyle değiştirildi" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "İndirme Başarısız" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Düğüm sağlama kovasında bulunamadı" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" -"Usage: apt-helper [seçenekler] komut\n" -" apt-helper [seçenekler] download-file uri hedef-konum\n" -"\n" -"apt-helper apt'nin dahili yardımcı aracıdır\n" -"\n" -"Komutlar:\n" -" download-file - verilen adresi hedef yola kaydet\n" -"\n" -" Bu APT yardımcısının Süper Meep Güçleri var.\n" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Yol çok uzun" -#: cmdline/apt-mark.cc:68 +#: apt-inst/extract.cc:421 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s kurulu olmadığı için işaretlenemedi.\n" +msgid "Overwrite package match with no version for %s" +msgstr "%s paketinin sürümü yok" -#: cmdline/apt-mark.cc:74 +#: apt-inst/extract.cc:438 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s zaten elle kurulmuş olarak ayarlı.\n" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "%s/%s dosyası %s paketindeki aynı adlı dosyanın üzerine yazmak istiyor" -#: cmdline/apt-mark.cc:76 +#: apt-inst/extract.cc:498 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s zaten otomatik kurulmuş olarak ayarlı.\n" +msgid "Unable to stat %s" +msgstr "%s durum bilgisi alınamadı" -#: cmdline/apt-mark.cc:241 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s zaten tutulacak şekilde ayarlanmış.\n" +msgid "Failed to write file %s" +msgstr "%s dosyasına yazılamadı" -#: cmdline/apt-mark.cc:243 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s zaten tutulmayacak şekilde ayarlanmış.\n" +msgid "Failed to close file %s" +msgstr "%s dosyası kapatılamadı" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "%s set on hold.\n" -msgstr "%s paketi tutuluyor.\n" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Bu dosya geçerli bir DEB arşivi değil, '%s' üyesi eksik" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "%s paketini tutma işlemi iptal edildi.\n" +msgid "Internal error, could not locate member %s" +msgstr "İç hata, %s üyesi bulunamadı" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "'dpkg' çalıştırılamadı. root olduğunuzdan emin misiniz?" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Ayrıştırılamayan 'control' dosyası" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" -"Kullanım: apt-mark [seçenekler] {auto|manual} paket1 [paket2 ...]\n" -"\n" -"apt-mark paketleri otomatik ya da elle kurulmuş olarak işaretlemeye\n" -"ve mevcut işaretleri görmeye yarayan basit bir komut satırı arayüzüdür.\n" -"\n" -"Komutlar:\n" -" auto - Belirtilen paketleri otomatik kurulmuş olarak işaretle\n" -" manual - Belirtilen paketleri elle kurulmuş olarak işaretle\n" -" hold - Paketi tutulacak şekilde işaretle\n" -" unhold - Paketin tutuluyor işaretini kaldır\n" -" showauto - Otomatik olarak kurulmuş paketlerin listesini görüntüle\n" -" showmanual - Elle kurulmuş paketlerin listesini görüntüle\n" -" showhold - Tutulur durumda olan paketlerin listesini görüntüle\n" -"\n" -"Seçenekler:\n" -" -h Bu yardım metni.\n" -" -q Günlük tutmaya uygun çıktı - İlerleme göstergesi yok\n" -" -qq Hata olmadığı müddetçe çıktıya bir şey yazma\n" -" -s Bir şey yapma. Yalnızca ne yapılacağını söyler.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Belirtilen yapılandırma dosyası kullan\n" -" -o=? Yapılandırma seçeneği ayarla, örneğin -o dir::cache=/tmp\n" -"Ayrıntılı bilgi için apt-mark(8) ve apt.conf(5) rehber sayfalarına\n" -"bakabilirsiniz." +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Geçersiz arşiv imzası" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" -"Usage: apt [seçenekler] komut\n" -"\n" -"apt için komut satırı arayüzü.\n" -"Temel komutlar: \n" -" list - Paketleri adlarına göre listele\n" -" search - Paket açıklamalarında arama yap\n" -" show - Paket ayrıntılarını görüntüle\n" -"\n" -" update - Mevcut paket listesini güncelle\n" -"\n" -" install - paket kur\n" -" remove - paket kaldır\n" -"\n" -" upgrade - sistemi yükselt (paketleri kurarak ve yükselterek)\n" -" full-upgrade - sistemi yükselt (paketleri kurarak,yükselterek ve " -"kaldırarak)\n" -"\n" -" edit-sources - kaynak bilgi dosyasını düzenle\n" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Arşiv üyesi başlığı okuma hatası" -#: methods/cdrom.cc:203 +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "'cdrom' veritabanı %s okunamıyor" +msgid "Invalid archive member header %s" +msgstr "Geçerşiz arşiv üyesi başlığı %s" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"Lütfen bu CD-ROM'un APT tarafından tanınması için apt-cdrom aracını " -"kullanın. apt-get update yeni CD-ROM'lar eklemek için kullanılamaz." +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Geçersiz arşiv üyesi başlığı" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Yanlış CD-ROM" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Arşiv çok kısa" -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "%s konumundaki CD-ROM çıkarılamıyor, hala kullanımda olabilir." +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Arşiv başlıkları okunamadı" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disk bulunamadı." +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Boru oluşturulamadı" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Dosya bulunamadı" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Gzip çalıştırılamadı " -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Durum bilgisi okunamadı" +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Bozuk arşiv" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Değişiklik zamanı ayarlanamadı" +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar sağlama toplamı başarısız, arşiv bozulmuş" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Geçersiz URI, yerel URI'ler // ile başlamamalıdır" +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Bilinmeyen TAR başlığı türü %u, üye %s" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Giriş yapılıyor" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "Durum: [%3i%%]" + +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "dpkg çalıştırılıyor" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Eş adı belirlenemiyor" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Paketleme sistemi '%s' desteklenmiyor" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Yerel ad belirlenemiyor" +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Uygun bir paketleme sistemi türü bulunamıyor" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Sunucu bağlantıyı reddetti, sunucunun iletisi: %s" +msgid "Wrote %i records.\n" +msgstr "%i kayıt yazıldı.\n" -#: methods/ftp.cc:225 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER başarısız, sunucunun iletisi: %s" +msgid "Wrote %i records with %i missing files.\n" +msgstr "%2$i eksik dosyayla %1$i kayıt yazıldı.\n" -#: methods/ftp.cc:232 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS başarısız, sunucunun iletisi: %s" +msgid "Wrote %i records with %i mismatched files\n" +msgstr "%2$i eşleşmeyen dosyayla %1$i kayıt yazıldı\n" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"Bir Vekil sunucu belirtildi ancak oturum açma betiği belirtilmedi, Acquire::" -"ftp::ProxyLogin boş." +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "%2$i eksik dosya ve %3$i eşleşmeyen dosyayla %1$i kayıt yazıldı\n" -#: methods/ftp.cc:280 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Oturum açma betiği komutu '%s' başarısız oldu, sunucunun iletisi: %s" +msgid "Can't find authentication record for: %s" +msgstr "%s için kimlik doğrulama kaydı bulunamadı." -#: methods/ftp.cc:306 +#: apt-pkg/indexcopy.cc:521 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE başarısız, sunucunun iletisi: %s" +msgid "Hash mismatch for: %s" +msgstr "Sağlama yapılamadı: %s" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Bağlantı zaman aşımına uğradı" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Paket listeleri ya da durum dosyası ayrıştırılamadı ya da açılamadı." -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Sunucu bağlantıyı kesti" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "" +"Bu sorunları gidermek için apt-get update komutunu çalıştırabilirsiniz." -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Bir yanıt arabelleği taşırdı." +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Kaynak listesi okunamadı." -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "İletişim kuralları bozulması" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Boş paket önbelleği" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Bir soket oluşturulamadı" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Paket önbelleği dosyası bozulmuş" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Veri soketine bağlanılamadı, bağlantı zaman aşımına uğradı" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Paket önbelleği dosyası uyumsuz bir sürümde" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Başarısız" +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "Paket önbellek dosyası bozulmuş, çok küçük" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Edilgen sokete bağlanılamadı." +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "Bu APT '%s' sürümleme sistemini desteklemiyor." -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo bir dinleme soketi alamıyor" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Paket önbelleği farklı bir mimarı için yapılmış" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Bir sokete bağlanılamadı" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Bağımlılıklar" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Soket dinlenemedi" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "ÖnBağımlılıklar" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Soketin adı belirlenemedi" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Önerdikleri" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "PORT komutu gönderilemedi" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Tavsiye ettikleri" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Bilinmeyen adres ailesi %u (AF_*)" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Çakışmalar" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT başarısız, sunucunun iletisi: %s" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Değiştirilenler" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Veri soketi bağlantısı zaman aşımına uğradı" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Eskiyenler" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Bağlantı kabul edilemiyor" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Bozdukları" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Dosya sağlaması yapılamadı" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Geliştirdikleri" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Dosya alınamıyor, sunucunun iletisi: '%s'" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "önemli" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Veri soketi zaman aşımına uğradı" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "gerekli" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Veri aktarımı başarısız, sunucunun iletisi: '%s'" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "standart" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Sorgu" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "seçimlik" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Çağrılamıyor " +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "ilave" -#: methods/connect.cc:76 +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Bağlanılıyor %s (%s)" +msgid "The method driver %s could not be found." +msgstr "Yöntem sürücüsü %s bulunamadı." -#: methods/connect.cc:87 +#: apt-pkg/acquire-worker.cc:118 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Is the package %s installed?" +msgstr "%s paketi kurulu mu?" -#: methods/connect.cc:94 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "%s için bir soket oluşturulamadı (f=%u t=%u p=%u)" +msgid "Method %s did not start correctly" +msgstr "%s yöntemi düzgün şekilde başlamadı" -#: methods/connect.cc:100 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "%s:%s bağlantısı başlatılamıyor (%s)." +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Lütfen '%s' olarak etiketlenmiş diski '%s' sürücüsüne yerleştirin ve giriş " +"(enter) tuşuna basın." -#: methods/connect.cc:108 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Adrese bağlanılamadı: %s:%s (%s), bağlantı zaman aşımına uğradı" +msgid "Index file type '%s' is not supported" +msgstr "İndeks dosyası türü '%s' desteklenmiyor" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Adrese bağlanılamadı: %s:%s (%s)." +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Bağımlılık ağacı oluşturuluyor" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 -#, c-format -msgid "Connecting to %s" -msgstr "Bağlanılıyor: %s" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Aday sürümler" -#: methods/connect.cc:180 methods/connect.cc:199 -#, c-format -msgid "Could not resolve '%s'" -msgstr "'%s' çözümlenemedi" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Bağımlılık oluşturma" -#: methods/connect.cc:205 -#, c-format -msgid "Temporary failure resolving '%s'" -msgstr "'%s' çözümlenirken geçici bir sorunla karşılaşıldı" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Durum bilgisi okunuyor" -#: methods/connect.cc:209 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "System error resolving '%s:%s'" -msgstr "'%s:%s' çözümlenirken bir sistem hatası oluştu" +msgid "Failed to open StateFile %s" +msgstr "Durum dosyası (StateFile) %s açılamadı." -#: methods/connect.cc:211 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "'%s:%s' (%i - %s) adresi çözümlenirken bir şeyler kötü gitti" +msgid "Failed to write temporary StateFile %s" +msgstr "Geçici durum dosyasına (%s) yazma başarısız oldu" -#: methods/connect.cc:258 +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Bağlanılamıyor %s:%s:" +msgid "rename failed, %s (%s -> %s)." +msgstr "yeniden adlandırma başarısız, %s (%s -> %s)." -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "İç hata: İmza iyi, ancak anahtar parmak izi belirlenemedi?!" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Sağlama toplamları eşleşmiyor" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "En az bir geçersiz imza ile karşılaşıldı." +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Boyutlar eşleşmiyor" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "İmza doğrulama için 'gpgv' çalıştırılamadı (gpgv kurulu mu?)" +#: apt-pkg/acquire-item.cc:173 +msgid "Invalid file format" +msgstr "Geçersiz dosya biçimi" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1573 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"Temiz-imzalı dosya geçerli değil, '%s' hatası alındı (ağ kimlik doğrulama " -"gerektiriyor mu?)" +"'Release' dosyasında olması beklenilen '%s' girdisi bulunamadı (sources.list " +"dosyasındaki girdi ya da satır hatalı)" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "gpgv çalıştırılırken bilinmeyen hata" +#: apt-pkg/acquire-item.cc:1589 +#, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "'Release' dosyasında '%s' için uygun bir sağlama toplamı bulunamadı" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Aşağıdaki imzalar geçersiz:\n" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "" +"Aşağıdaki anahtar kimlikleri için kullanılır hiçbir genel anahtar yok:\n" -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1669 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "Aşağıdaki imzalar doğrulanamadı, çünkü genel anahtar mevcut değil:\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Boş dosyalar geçerli birer arşiv dosyası olamazlar" - -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Dosyaya yazılamadı" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" +"%s konumundaki 'Release' dosyasının vâdesi dolmuş (%s önce). Bu deponun " +"güncelleştirmeleri uygulanmayacak." -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Sunucundan okunurken hata. Uzak sonlu kapalı bağlantı" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Dağıtım çakışması: %s (beklenen %s ama eldeki %s)" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Sunucundan okunurken hata" +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"İmza doğrulama sırasında bir hata meydana geldi. Depo güncel değil ve önceki " +"indeks dosyaları kullanılacak. GPG hatası: %s:%s\n" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Dosyaya yazılamadı" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "GPG hatası: %s: %s" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Seçme başarısız" +#: apt-pkg/acquire-item.cc:1859 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"%s paketindeki dosyalardan biri konumlandırılamadı. Bu durum, bu paketi elle " +"düzeltmeniz gerektiği anlamına gelebilir. (eksik mimariden dolayı)" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Bağlantı zaman aşımına uğradı" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "'%2$s' paketinin '%1$s' sürümü hiçbir kaynakta bulunamadı" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Çıktı dosyasına yazılırken hata" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "Paket indeks dosyaları bozuk. %s paketinin 'Filename:' alanı yok." -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Başlıklar bekleniyor" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, c-format +msgid "Clean of %s is not supported" +msgstr "%s temizliği desteklenmiyor" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Kötü başlık satırı" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "%s için dosya bilgisi alınamadı." -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP sunucusu geçersiz bir cevap başlığı gönderdi" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Önbelleğin uyumsuz bir sürümleme sistemi var" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP sunucusu geçersiz bir Content-Length başlığı gönderdi" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "%s paketi işlenirken sorunlarla karşılaşıldı (%s%d)" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP sunucusu geçersiz bir Content-Range başlığı gönderdi" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "Vay canına, bu APT'nin alabileceği paket adları sayısını aştınız." -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "HTTP sunucusunun aralık desteği bozuk" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Vay canına, bu APT'nin alabileceği sürüm sayısını aştınız." -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Bilinmeyen tarih biçimi" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Vay canına, bu APT'nin alabileceği açıklama sayısını aştınız." -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Kötü başlık verisi" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "Vay canına, bu APT'nin alabileceği bağımlılık sayısını aştınız." -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Bağlantı başarısız" +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Dosya bağımlılıkları işlenirken %s %s paketi bulunamadı" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "İç hata" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Kaynak listesinin (%s) dosya bilgisi alınamadı" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Yükseltme hesaplanıyor... " +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Paket listeleri okunuyor" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Bitti" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Dosya Sağlananları Toplanıyor" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "Sıralama" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "%s dosyasına yazılamıyor" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "Listeleme" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Kaynak önbelleği kaydedilirken GÇ Hatası" -#: apt-private/private-list.cc:164 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -"Fazladan %i sürüm daha var. Görmek için '-a' anahtarını kullanabilirsiniz." -msgstr[1] "" -"Fazladan %i sürüm daha var. Bu sürümleri görmek için '-a' anahtarını " -"kullanabilirsiniz." +msgid "Vendor block %s contains no fingerprint" +msgstr "Sağlayıcı bloğu %s parmak izi içermiyor" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Bağımlılıklar düzeltiliyor..." +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Liste dizini %spartial bulunamadı." -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " başarısız oldu." +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Arşiv dizini %spartial bulunamadı." -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Bağımlılıklar düzeltilemedi" +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "%s dizini kilitlenemiyor" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Yükseltme kümesi küçültülemiyor" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Alınan dosya: %li / %li (%s kaldı)" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Tamamlandı" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Alınan dosya: %li / %li" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"Bu sorunları düzeltmek için 'apt-get -f install' komutunu çalıştırmanız " -"gerekebilir." - -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Karşılanmayan bağımlılıklar. -f kullanmayı deneyin." +"Bazı indeks dosyaları indirilemedi. Bu dosyalar yok sayıldılar ya da önceki " +"sürümleri kullanıldı." -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "bilinmeyen" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "'sources.list' dosyası içine bazı 'source' adresleri koymalısınız." -#: apt-private/private-output.cc:234 +#: apt-pkg/policy.cc:83 #, c-format -msgid "[installed,upgradable to: %s]" -msgstr "[kurulu,yükseltilebilir: %s]" +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" +"APT::Default-Release için '%s' değeri geçersizdir, çünkü kaynaklarda böyle " +"bir sürüm yok." -#: apt-private/private-output.cc:238 -msgid "[installed,local]" -msgstr "[kurulu,yerel]" +#: apt-pkg/policy.cc:422 +#, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "%s tercihler dosyasında geçersiz kayıt, Paket başlığı yok" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "[kurulu,otomatik-kaldırılabilir]" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "İğne türü %s anlaşılamadı" -#: apt-private/private-output.cc:243 -msgid "[installed,automatic]" -msgstr "[kurulu,otomatik]" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "İğne için öncelik belirlenmedi (ya da sıfır)" -#: apt-private/private-output.cc:245 -msgid "[installed]" -msgstr "[kurulu]" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" +"\"%s\" paketinin anında yapılandırması başarısız oldu. Ayrıntılar için apt." +"conf(5) rehber sayfasının APT::Immediate-Configure kısmına bakın. (%d)" -#: apt-private/private-output.cc:249 +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 #, c-format -msgid "[upgradable from: %s]" -msgstr "[şundan yükseltilebilir: %s]" +msgid "Could not configure '%s'. " +msgstr "'%s' paketi yapılandırılamadı. " -#: apt-private/private-output.cc:253 -msgid "[residual-config]" -msgstr "[artık-yapılandırma]" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"Bu kurulum, bir Çakışma/Ön-Bağımlılık döngüsü içerdiği için %s temel " +"paketinin geçici olarak kaldırılmasını gerektiriyor. Bu durum genellikle " +"kötü bir durumdur, ama ille de devam etmek isterseniz, APT::Force-LoopBreak " +"seçeneğini etkinleştirin." -#: apt-private/private-output.cc:435 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "but %s is installed" -msgstr "ama %s kurulu" +msgid "Line %u too long in source list %s." +msgstr "Kaynak listesinin (%2$s) %1$u numaralı satırı çok uzun." -#: apt-private/private-output.cc:437 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "CD-ROM ayrılıyor...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "but %s is to be installed" -msgstr "ama %s kurulacak" +msgid "Using CD-ROM mount point %s\n" +msgstr "CD-ROM bağlama noktası %s kullanılıyor\n" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "ama kurulabilir değil" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Disk bekleniliyor...\n" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "ama o bir sanal paket" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "CD-ROM bağlanıyor...\n" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "ama kurulu değil" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Tanımlanıyor... " -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "ama kurulmayacak" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Kayıtlı etiket: %s\n" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " ya da" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Disk, indeks dosyaları için taranıyor...\n" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Aşağıdaki paketler karşılanmamış bağımlılıklara sahip:" +#: apt-pkg/cdrom.cc:734 +#, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" +"%zu paket indeksi, %zu kaynak indeksi, %zu çeviri indeksi ve %zu imza " +"bulundu\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Aşağıdaki YENİ paketler kurulacak:" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" +"Hiç paket dosyası bulunamadı. Belirttiğiniz disk bir Debian diski değil ya " +"da yanlış mimariye sahip." -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Aşağıdaki paketler KALDIRILACAK:" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "'%s' etiketi bulundu\n" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Aşağıdaki paketlerin mevcut durumları korunacak:" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Bu, geçerli bir ad değil, yeniden deneyin.\n" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Aşağıdaki paketler yükseltilecek:" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Disk adı: \n" +"'%s'\n" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Aşağıdaki paketlerin SÜRÜMLERİ DÜŞÜRÜLECEK:" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Paket listeleri kopyalanıyor.." -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Aşağıdaki eski sürümlerinde tutulan paketler değiştirilecek:" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Yeni kaynak listesi yazılıyor\n" -#: apt-private/private-output.cc:668 +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Bu disk için olan kaynak listesi girdileri:\n" + +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "%s (due to %s) " -msgstr "%s (%s nedeniyle) " +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"%s paketinin tekrar kurulması gerekli, ancak gereken arşiv dosyası " +"bulunamıyor." -#: apt-private/private-output.cc:676 +#: apt-pkg/algorithms.cc:1086 msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -"UYARI: Aşağıdaki temel paketler kaldırılacak.\n" -"Bu işlem ne yaptığınızı tam olarak bilmediğiniz takdirde YAPILMAMALIDIR!" +"Hata, pkgProblemResolver::Resolve bozuk paketlere yol açtı, bu sorunun " +"nedeni tutulan paketler olabilir." + +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Sorunlar giderilemedi, tutulan bozuk paketleriniz var." + +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Çözücüye senaryo gönder" + +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Çözücüye istek gönder" + +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Çözüm almak için hazırlan" -#: apt-private/private-output.cc:707 +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "Harici çözücü düzgün bir hata iletisi göstermeden başarısız oldu" + +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Harici çözücüyü çalıştır" + +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu paket yükseltilecek, %lu yeni paket kurulacak, " +msgid "Unable to parse package file %s (1)" +msgstr "Paket dosyası %s ayrıştırılamadı (1)" -#: apt-private/private-output.cc:711 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu paket yeniden kurulacak, " +msgid "Unable to parse package file %s (2)" +msgstr "Paket dosyası %s ayrıştırılamadı (2)" -#: apt-private/private-output.cc:713 +#: apt-pkg/indexrecords.cc:78 #, c-format -msgid "%lu downgraded, " -msgstr "%lu paketin sürümü düşürülecek, " +msgid "Unable to parse Release file %s" +msgstr "'Release' dosyası (%s) ayrıştırılamadı" -#: apt-private/private-output.cc:715 +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu paket kaldırılacak ve %lu paket yükseltilmeyecek.\n" +msgid "No sections in Release file %s" +msgstr "'Release' dosyası %s içinde hiç bölüm yok" -#: apt-private/private-output.cc:719 +#: apt-pkg/indexrecords.cc:117 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu paket tam olarak kurulmayacak ya da kaldırılmayacak.\n" +msgid "No Hash entry in Release file %s" +msgstr "'Release' dosyasında (%s) sağlama girdisi yok" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[E/h]" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "'Release' dosyasında (%s) geçersiz 'Valid-Until' girdisi" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[e/H]" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "'Release' dosyasında (%s) geçersiz 'Date' girdisi" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "E" +#: apt-pkg/sourcelist.cc:127 +#, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "" +"Kaynak listesinin (%2$s) %1$u numaralı girdisi hatalı (URI ayrıştırma)" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "H" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "" +"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([seçenek] " +"ayrıştırılamıyor)" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "'update' komutu bağımsız değişken almamaktadır" +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "" +"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([seçenek] çok kısa)" -#: apt-private/private-update.cc:90 +#: apt-pkg/sourcelist.cc:184 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -"%i paket yükseltilebilir. Bu paketi görmek için 'apt list --upgradable' " -"komutunu çalıştırın.\n" -msgstr[1] "" -"%i paket yükseltilebilir. Bu paketleri görmek için 'apt list --upgradable' " -"komutunu çalıştırın.\n" +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "" +"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([%3$s] bir atama " +"değil)" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "Tüm paketler güncel." +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "" +"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([%3$s] seçeneğinin " +"anahtarı yok)" -#: apt-private/private-show.cc:156 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -"Fazladan %i kayıt daha var. Görmek için '-a' anahtarını kullanabilirsiniz." -msgstr[1] "" -"Fazladan %i kayıt daha var. Görmek için '-a' anahtarını kullanabilirsiniz." +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "" +"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([%3$s] %4$s " +"anahtarına değer atanmamış)" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "gerçek bir paket değil (sanal)" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (URI)" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "İç hata, InstallPackages bozuk paketler ile çağrıldı!" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (dist)" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" msgstr "" -"Paketlerin kaldırılması gerekiyor ancak kaldırma işlemi devre dışı " -"bırakılmış." +"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (URI ayrıştırma)" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "İç hata, Sıralama tamamlanamadı" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (mutlak dist)" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" -"Ne kadar ilginç... Boyutlar eşleşmedi, apt@packages.debian.org adresine " -"eposta atın." +"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (dağıtım ayrıştırma)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "%sB/%sB arşiv dosyası indirilecek.\n" +msgid "Opening %s" +msgstr "%s Açılıyor" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "%sB arşiv dosyası indirilecek.\n" +msgid "Malformed line %u in source list %s (type)" +msgstr "Kaynak listesinin (%2$s) %1$u numaralı satırı hatalı (tür)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Bu işlem tamamlandıktan sonra %sB ek disk alanı kullanılacak.\n" +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "'%s' türü bilinmiyor. (Satır: %u, Kaynak Listesi: %s)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/sourcelist.cc:416 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Bu işlem tamamlandıktan sonra %sB disk alanı boşalacak.\n" +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "'%s' türü bilinmiyor (girdi: %u, kaynak listesi: %s)" -#: apt-private/private-install.cc:200 +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "You don't have enough free space in %s." -msgstr "%s içinde yeterli boş alanınız yok." - -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Bazı sorunlar çıktı ve -y seçeneği, --force-yes olmadan kullanıldı" - -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "" -"Yalnızca Önemsiz seçeneği ayarlandı, fakat bu önemsiz bir işlem bir değil." +msgid "Release '%s' for '%s' was not found" +msgstr "'%2$s' paketinin '%1$s' sürümü bulunamadı" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Evet, söylediğim şekilde yap!" +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "'%2$s' paketinin '%1$s' sürümü bulunamadı" -#: apt-private/private-install.cc:222 +#: apt-pkg/cacheset.cc:603 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Tehlikeli bir iş yapmak üzeresiniz.\n" -"Devam etmek için '%s' ifadesini yazınız\n" -" ?] " +msgid "Couldn't find task '%s'" +msgstr "'%s' görevi bulunamadı" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Vazgeç." +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "'%s' düzenli ifadesini içeren herhangi bir paket bulunamadı" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Devam etmek istiyor musunuz?" +#: apt-pkg/cacheset.cc:615 +#, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "'%s' ifadesine eşleşen herhangi bir paket bulunamadı" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Bazı dosyalar indirilemedi" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "'%s' paketi tamamen sanal olduğu için sürümü seçilemiyor" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Bazı arşivler alınamıyor, apt-get update'i çalıştırmayı ya da --fix-missing " -"seçeneğini ekleyerek düzeltmeyi deneyin." +"'%s' paketi kurulu olmadığı ve aday sürüme sahip olmadığı için her ikisi de " +"seçilemiyor" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing seçeneği ve ortam takası şu an için desteklenmiyor" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "'%s' paketi sanal olduğu için en yeni sürümü seçilemiyor" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Eksik paketler düzeltilemedi." +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "'%s' paketinin aday sürümü olmadığı için aday sürüm seçilemiyor" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Kurulum iptal ediliyor." +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "'%s' paketi kurulu olmadığı için kurulu sürüm seçilemiyor" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -"Tüm dosyalarının üzerine yazıldığı için aşağıdaki paket\n" -"sisteminizden kayboldu:" -msgstr[1] "" -"Tüm dosyalarının üzerine yazıldığı için aşağıdaki paketler\n" -"sisteminizden kayboldu:" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%li gün %li saat %li dk. %li sn." -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Not: Bu eylem dpkg tarafından otomatik ve kasıtlı olarak yapılmıştır." +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%li saat %li dk. %li sn." -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Nesneleri silmemiz beklenemez, AutoRemover çalıştırılamıyor" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%li dk. %li sn." -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"AutoRemover yapmaması gereken bir yıkıma\n" -"sebep oldu. Lütfen apt hakkında bir hata raporu doldurun." +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%li sn." -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "Aşağıdaki bilgiler durumu çözmenize yardımcı olabilir:" +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "%s seçimi bulunamadı" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "İç hata, AutoRemover bazı şeyleri bozdu" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Kilitleme dosyası %s salt okunur olduğu için kilitleme kullanılmıyor" -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "" -"Aşağıdaki paket otomatik olarak kurulmuş ve artık bu pakete gerek duyulmuyor:" -msgstr[1] "" -"Aşağıdaki paketler otomatik olarak kurulmuş ve artık bu paketlere gerek " -"duyulmuyor:" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Kilit dosyası %s açılamadı" -#: apt-private/private-install.cc:517 +#: apt-pkg/contrib/fileutl.cc:218 #, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "%lu paket otomatik olarak kurulmuş ve artık gerekli değil.\n" -msgstr[1] "%lu paket otomatik olarak kurulmuş ve artık gerekli değil.\n" +msgid "Not using locking for nfs mounted lock file %s" +msgstr "nfs ile bağlanmış kilit dosyası %s için kilitleme kullanılmıyor" -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Bu paketi kaldırmak için 'apt-get autoremove' komutunu kullanın." -msgstr[1] "Bu paketleri kaldırmak için 'apt-get autoremove' komutunu kullanın." +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "%s kilidi alınamadı" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "'%s' dizin olmadığı için dosya listeli oluşturulamıyor" + +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -"Bunları düzeltmek için 'apt-get -f install' komutunu çalıştırmanız " -"gerekebilir:" +"'%2$s' dizinindeki '%1$s' normal bir dosya olmadığı için görmezden geliniyor." -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -"Karşılanmamış bağımlılıklar. 'apt-get -f install' komutunu paket seçeneği " -"vermeden deneyin (ya da bir çözüm belirtin)." +"'%2$s' dizinindeki '%1$s' dosyası uzantısı olmadığı için görmezden geliniyor." -#: apt-private/private-install.cc:638 +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"Bazı paketler kurulamadı. Bu durum, olanaksız bir durum istemiş\n" -"olduğunuzu ya da kararsız (unstable) dağıtımı kullandığınızı ve\n" -"bazı paketlerin henüz oluşturulamamış ya da oluşturulmakta\n" -"olduğunu gösterir." +"'%2$s' dizinindeki '%1$s' dosyası geçersiz bir dosya uzantısı olduğu için " +"yok sayılıyor." -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Bozuk paketler" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "%s altsüreci bir bölümleme hatası aldı (segmentation fault)." -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Aşağıdaki ek paketler de kurulacak:" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "%s altsüreci %u sinyali aldı" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Önerilen paketler:" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "%s altsüreci bir hata kodu gönderdi (%u)" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Tavsiye edilen paketler:" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "%s altsüreci beklenmeyen bir şekilde sona erdi" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "%s atlanıyor, bu paket zaten kurulu ve yükseltme seçilmemiş.\n" +msgid "Problem closing the gzip file %s" +msgstr "Gzip dosyası %s kapatılamadı" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"%s atlanıyor, bu paket kurulu değil ve sadece yükseltmeler isteniyor.\n" +msgid "Could not open file %s" +msgstr "%s dosyası açılamadı" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "" -"%s paketinin yeniden kurulumu mümkün değil, çünkü paket internetten " -"indirilemedi.\n" +msgid "Could not open file descriptor %d" +msgstr "Dosya tanımlayıcı %d açılamadı" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Altsüreç IPC'si oluşturulamadı" + +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Sıkıştırma programı çalıştırılamadı " + +#: apt-pkg/contrib/fileutl.cc:1514 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s zaten en yeni sürümde.\n" +msgid "read, still have %llu to read but none left" +msgstr "read, %llu bayt okunması gerekli fakat hiç kalmamış" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "'%3$s' paketinin '%1$s' (%2$s) sürümü seçildi\n" +msgid "write, still have %llu to write but couldn't" +msgstr "write, yazılması gereken %llu bayt yazılamıyor" -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/fileutl.cc:1915 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "'%4$s' nedeniyle '%3$s' paketinin '%1$s' (%2$s) sürümü seçildi\n" +msgid "Problem closing the file %s" +msgstr "%s dosyası kapatılamadı" + +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "%s dosyası %s olarak yeniden adlandırılamadı" + +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "%s dosyasından bağ kaldırma sorunu" + +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Dosya eşitlenirken sorun çıktı" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" -"'%s' kurulu değildi, dolayısıyla kaldırılmadı. Bunu mu demek istediniz: " -"'%s'?\n" +msgid "%c%s... Error!" +msgstr "%c%s... Hata!" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "'%s' kurulu değildi, dolayısıyla kaldırılmadı.\n" - -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" -"NOT: Bu sadece simülasyondur!\n" -" apt-get sadece root hakları ile gerçekten kullanılabilir.\n" -" Unutmayın ki simülasyonda kilitleme yapılmaz,\n" -" bu nedenle bu simülasyonun tam uygunluğuna güvenmeyin." - -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "UYARI: Aşağıdaki paketler doğrulanamıyor!" +msgid "%c%s... Done" +msgstr "%c%s... Bitti" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Kimlik denetimi uyarısı görmezden geliniyor.\n" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "..." -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Bazı paketlerin kimlik denetimi yapılamadı" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... %u%%" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Paketler doğrulanmadan kurulsun mu?" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Boş dosya mmap yapılamıyor" -#: apt-private/private-sources.cc:58 +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "%s ayrıştırılamadı. Tekrar düzenlemek ister misiniz?" +msgid "Couldn't duplicate file descriptor %i" +msgstr "Dosya tanımlayıcı %i çoğaltılamadı" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/mmap.cc:119 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "'%s' dosyası değişti, lütfen 'apt-get update' komutunu çalıştırın." - -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "Tam Metin Arama" +msgid "Couldn't make mmap of %llu bytes" +msgstr "%llu baytlık mmap yapılamaz" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Bağlandı " +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "mmap kapatılamıyor" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Alınıyor: " +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "mmap eşlenemiyor" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Yoksay " +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "%lu baytlık mmap yapılamaz" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Hata " +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Dosya kesilemedi" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "%2$s'de %1$sB alındı (%3$sB/s)\n" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" +"Dinamik MMap yerine sığamadı. Lütfen APT::Cache-Start boyutunu artırın. " +"Kullanımdaki değer: %lu (ayrıntılı bilgi için man 5 apt.conf komutunu " +"kullanın)" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid " [Working]" -msgstr " [Çalışıyor]" +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "%lu baytlık sınıra ulaşıldığı için MMap boyutu artırılamadı." -#: apt-private/acqprogress.cc:297 -#, c-format +#: apt-pkg/contrib/mmap.cc:449 msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" -"Ortam değişimi: Lütfen '%2$s' sürücüsüne\n" -" '%1$s'\n" -"olarak etiketlenmiş diski takın ve enter tuşuna basın.\n" +"Otomatik büyüme kullanıcı tarafından kapatıldığı için MMap boyutu " +"artırılamadı." -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "No mirror file '%s' found " -msgstr "'%s' yansı dosyası bulunamadı " +msgid "Unable to stat the mount point %s" +msgstr "Bağlama noktasının (%s) durum bilgisi alınamadı" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, c-format -msgid "Can not read mirror file '%s'" -msgstr "Yansı dosyası %s okunamıyor" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Cdrom durum bilgisi alınamadı" -#: methods/mirror.cc:315 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "No entry found in mirror file '%s'" -msgstr "'%s' yansı dosyasında hiç girdi bulunmuyor" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Tanınamayan tür kısaltması: '%c'" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "[Mirror: %s]" -msgstr "[Yansı: %s]" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Altsürece IPC borusu oluşturulamadı" +msgid "Opening configuration file %s" +msgstr "Yapılandırma dosyası (%s) açılıyor" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Bağlantı vaktinden önce kapandı" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Sözdizim hatası %s:%u: Blok ad olmadan başlıyor." -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Geçersiz öntanımlı ayar!" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Sözdizim hatası %s:%u: Kötü biçimlendirilmiş etiket" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Devam etmek için giriş (enter) tuşuna basın." +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Sözdizim hatası %s:%u: Değerden sonra ilave gereksiz" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Daha önceden indirilmiş .deb dosyalarını silmek istiyor musunuz?" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "Sözdizim hatası %s:%u: Yönergeler yalnızca en üst düzeyde bitebilir" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "" -"Paket açılırken bazı sorunlar çıktı. Kurulan paketler yapılandırılacak." +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Sözdizim hatası %s:%u: Çok fazla yuvalanmış 'include'" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "Bu durum, çift hata iletilerine ya da eksik bağımlılıkların neden" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Sözdizim hatası %s:%u: Buradan 'include' edilmiş" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"olduğu hatalara yol açabilir. Bu durum bir sorun teşkil etmez, yalnızca bu " -"iletinin" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Sözdizim hatası %s:%u: Desteklenmeyen yönerge '%s'" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"üstündeki hatalar önemlidir. Lütfen bunları onarın ve [I]nstall komutunu " -"yeniden çalıştırın" +"Sözdizim hatası %s:%u: clear yönergesi argüman olarak bir seçenek ağacı " +"gerektirir." -#: dselect/update:30 -msgid "Merging available information" -msgstr "Kullanılabilir bilgiler birleştiriliyor" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Sözdizim hatası %s:%u: Dosya sonunda ilave gereksiz" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode hala bağlı olan düğüm üzerinde çağrıldı" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "%s dizininde kurulu bir anahtar yok." -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Sağlama elementi bulunamadı" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Komut satırı seçeneği '%c' [%s içinden] tanınmıyor." -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Yönlendirme tahsisi başarısız oldu" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Komut satırı seçeneği %s anlaşılamadı" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "AddDiversion'da iç hata" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Komut satırı seçeneği %s mantıksal değer değil" -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Bir yönlendirmenin üzerine yazılmaya çalışılıyor, %s -> %s ve %s/%s" +msgid "Option %s requires an argument." +msgstr "%s seçeneği bir bağımsız değişkene gerek duyar." -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Aynı dosya iki kez yönlendirilemez: %s -> %s" +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "" +"%s seçeneği: Yapılandırma öğesi tanımlaması =<değer> şeklinde değer " +"içermelidir." -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "%s/%s yapılandırma dosyası zaten mevcut" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "%s seçeneği bir tam sayı bağımsız değişkene gerek duyar, '%s' değil" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "The path %s is too long" -msgstr "%s yolu çok uzun" +msgid "Option '%s' is too long" +msgstr "'%s' seçeneği çok uzun" -#: apt-inst/extract.cc:132 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Unpacking %s more than once" -msgstr "%s paketi bir çok kez açıldı" +msgid "Sense %s is not understood, try true or false." +msgstr "%s algılaması anlaşılamadı, true (doğru) ya da false (yanlış) deneyin." -#: apt-inst/extract.cc:142 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The directory %s is diverted" -msgstr "%s dizini yönlendirilmiş" +msgid "Invalid operation %s" +msgstr "Geçersiz işlem: %s" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Bu paket yönlendirme hedefine (%s/%s) yazmayı deniyor" +msgid "Installing %s" +msgstr "%s kuruluyor" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Yönlendirme yolu çok uzun" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "%s yapılandırılıyor" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "Failed to stat %s" -msgstr "%s durum bilgisi alınamadı" +msgid "Removing %s" +msgstr "%s kaldırılıyor" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "Failed to rename %s to %s" -msgstr "%s, %s olarak yeniden adlandırılamadı" +msgid "Completely removing %s" +msgstr "%s tamamen kaldırılıyor" -#: apt-inst/extract.cc:249 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "%s dizini dizin olmayan bir öğeyle değiştirildi" +msgid "Noting disappearance of %s" +msgstr "%s paketinin kaybolduğu not ediliyor" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Düğüm sağlama kovasında bulunamadı" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "Kurulum sonrası tetikleyicisi %s çalıştırılıyor" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Yol çok uzun" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "'%s' dizini bulunamadı" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "%s paketinin sürümü yok" +msgid "Could not open file '%s'" +msgstr "'%s' dosyası açılamadı" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "%s/%s dosyası %s paketindeki aynı adlı dosyanın üzerine yazmak istiyor" +msgid "Preparing %s" +msgstr "%s hazırlanıyor" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Unable to stat %s" -msgstr "%s durum bilgisi alınamadı" +msgid "Unpacking %s" +msgstr "%s paketi açılıyor" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Failed to write file %s" -msgstr "%s dosyasına yazılamadı" +msgid "Preparing to configure %s" +msgstr "%s paketini yapılandırmaya hazırlanılıyor" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Failed to close file %s" -msgstr "%s dosyası kapatılamadı" +msgid "Installed %s" +msgstr "%s kuruldu" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Bu dosya geçerli bir DEB arşivi değil, '%s' üyesi eksik" +msgid "Preparing for removal of %s" +msgstr "%s paketinin kaldırılmasına hazırlanılıyor" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "İç hata, %s üyesi bulunamadı" +msgid "Removed %s" +msgstr "%s kaldırıldı" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Ayrıştırılamayan 'control' dosyası" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "%s paketinin tamamen kaldırılmasına hazırlanılıyor" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Geçersiz arşiv imzası" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "%s tamamen kaldırıldı" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Arşiv üyesi başlığı okuma hatası" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "ioctl(TIOCGWINSZ) başarısız oldu" -#: apt-inst/contrib/arfile.cc:96 +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, c-format -msgid "Invalid archive member header %s" -msgstr "Geçerşiz arşiv üyesi başlığı %s" +msgid "Can not write log (%s)" +msgstr "Günlük dosyasına yazılamıyor (%s)" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Geçersiz arşiv üyesi başlığı" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "/dev/pts bağlı mı?" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arşiv çok kısa" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "stdout bir uçbirim mi?" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Arşiv başlıkları okunamadı" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "İşlem yarıda kesildi" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Boru oluşturulamadı" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" +"En fazla rapor miktarına (MaxReports) ulaşıldığı için apport raporu yazılmadı" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Gzip çalıştırılamadı " +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "bağımlılık sorunları - yapılandırılmamış durumda bırakılıyor" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Bozuk arşiv" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Apport raporu yazılmadı çünkü hata iletisi bu durumun bir önceki hatadan " +"kaynaklanan bir hata olduğunu belirtiyor." -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar sağlama toplamı başarısız, arşiv bozulmuş" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Hata iletisi diskin dolu olduğunu belirttiği için apport raporu yazılamadı" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Hata iletisi bir bellek yetersizliği hatasına işaret ettiği için apport " +"raporu yazılamadı" + +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Hata iletisi yerel bir sistem hatasına işaret ettiği için apport raporu " +"yazılamadı" + +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Hata iletisi bir dpkg G/Ç hatasına işaret ettiği için apport raporu " +"yazılamadı" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Bilinmeyen TAR başlığı türü %u, üye %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Yönetim dizini (%s) kilitlenemiyor, başka bir işlem tarafından kullanılıyor " +"olmasın?" + +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Yönetim dizini (%s) kilitlenemiyor, root kullanıcısı mısınız?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"dpkg kesintiye uğradı, sorunu düzeltmek için elle '%s' komutunu çalıştırın. " + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Kilitlenmemiş" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/uk.po b/po/uk.po index 2b65dd191..42230a65e 100644 --- a/po/uk.po +++ b/po/uk.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-all\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2012-09-25 20:19+0300\n" "Last-Translator: A. Bondarenko <artem.brz@gmail.com>\n" "Language-Team: Українська <uk@li.org>\n" @@ -24,3267 +24,3268 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "Тип '%s' індексного файлу не підтримується" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "Неможливо прочитати %s" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Неможливо змінити на %s" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "Неможливо прочитати атрибути %s." - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" - -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Виконується dpkg" - -#: apt-pkg/init.cc:146 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Система пакування '%s' не підтримується" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Неможливо визначити тип необхідної системи пакування" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Пакунок %s версії %s має незадоволену залежність:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Записано %i записів.\n" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Всього імен пакунків: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Записано %i записів з %i відсутніми файлами.\n" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Всього структур пакунків: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Записано %i записів з %i невідповідними файлам\n" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Нормальних пакунків: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "Записано %i записів з %i відсутніми і %i невідповідними файлами\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Цілком віртуальних пакунків: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "Неможливо знайти аутентифікаційний запис для: %s" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Окремих віртуальних пакунків: " -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "Невідповідність хешу для: %s" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Змішаних віртуальних пакунків: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Драйвер для метода %s не знайдено." +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Відсутні: " -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Перевірте, чи встановлений пакунок 'dpkg-dev'.\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Всього унікальних версій: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Метод %s стартував некоректно" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Всього унікальних описів: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "" -"Будь-ласка, вставте диск з поміткою: '%s' в привід '%s' і натисніть Enter." +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Всього залежностей: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Не можу обробити чи відкрити перелік пакунків чи статусний файл." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Всього відносин Версія/Файл: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "Для виправлення цих помилок Ви можете виконати apt-get update" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Всього відносин Опис/Файл: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Неможливо прочитати перелік вихідних кодів." +#: cmdline/apt-cache.cc:336 +#, fuzzy +msgid "Total Provides mappings: " +msgstr "Всього карт 'Provides': " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Кеш пакунків пустий" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Всього відфільтрованих (globbed) рядків: " -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Файл кешу пакунків пошкоджений" +#: cmdline/apt-cache.cc:362 +#, fuzzy +msgid "Total dependency version space: " +msgstr "Всього інформації про залежності: " -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Файл кешу пакунків має несумісну версію" +#: cmdline/apt-cache.cc:367 +#, fuzzy +msgid "Total slack space: " +msgstr "Порожнього місця в кеші: " -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Файл кешу пакунків пошкоджений, занадто малий" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Загальний простір полічений для: " -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Цей APT не підтримує систему призначення версій '%s'" +msgid "Package file %s is out of sync." +msgstr "Перелік пакунків %s розсинхронізований." -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Кеш пакунків був побудований для іншої архітектури" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Не знайдено жодного пакунка" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Залежності (Depends)" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Ви повинні задати не менше одного шаблону пошуку" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Пре-Залежності (PreDepends)" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "Ця команда є застарілою. Будь-ласка використовуйте 'apt-mark showauto'" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Пропонує (Suggests)" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "Не можу знайти пакунок %s" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Рекомендує (Recommends)" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Переліки пакунків:" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Конфлікти (Conflicts)" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Кеш не синхронізований, неможливо знайти посилання на перелік пакунків" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Заміняє (Replaces)" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Зафіксовані пакунки:" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Застарілі (Obsoletes)" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(не знайдено)" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Ламає (Breaks)" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Встановлено: " -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Покращує (Enhances)" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Кандидат: " -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "важливі (important)" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(відсутній)" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "необхідні (required)" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Фіксатор(pin) пакунка: " -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "стандартні (standard)" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Таблиця версій:" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "необов'язкові (optional)" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s для %s скомпільовано %s %s\n" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "додаткові (extra)" +#: cmdline/apt-cache.cc:1749 +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Використання: apt-cache [опції] команда\n" +" apt-cache [опції] showpkg пакунок1 [пкн2 ...]\n" +" apt-cache [опції] showsrc пакунок1 [пкн2 ...]\n" +"\n" +"apt-cache - низькорівневий інструмент, що використовується для запиту\n" +"інформації з двійкових кеш-файлів APT\n" +"\n" +"Команди:\n" +" gencaches - побудувати обидва кеші - бінарний і з вихідними текстами\n" +" showpkg - показати загальну інформацію про конкретний пакунок\n" +" showsrc - показати інформацію про вихідний текст (source)\n" +" stats - показати основну статистику\n" +" dump - показати весь файл у стислій формі\n" +" dumpavail - видати доступний файл на stdout\n" +" unmet - показати незадоволені залежності\n" +" search - знайти пакунки, назва яких задовольняє регулярний вираз\n" +" show - показати інформацію про пакунок в зрозумілій формі\n" +" depends - показати інформацію про залежності пакунка\n" +" rdepends - показати інформацію про зворотні залежності пакунка\n" +" pkgnames - показати імена всіх пакунків у системі\n" +" dotty - генерувати графік пакунків у форматі GraphViz\n" +" xvcg - генерувати графік пакунків у форматі xvcg\n" +" policy - показати поточну політику\n" +"\n" +"Опції:\n" +" -h Цей текст допомоги.\n" +" -p=? Кеш пакунків.\n" +" -s=? Кеш вихідних текстів.\n" +" -q Не показувати індикатор прогресу.\n" +" -i Показувати тільки важливі залежності для команди unmet.\n" +" -c=? Читати зазначений файл конфігурації.\n" +" -o=? Встановити умовну опцію конфігурації, наприклад, -o dir::cache=/tmp\n" +"Дивіться подробиці на man-сторінках apt-cache(8) і apt.conf(5).\n" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Тип '%s' індексного файлу не підтримується" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Задайте назву для цього Диска, наприклад 'Debian 5.0.3 Disk 1'" + +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Будь-ласка, вставте Диск у пристрій і натисніть Enter" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Regex compilation error - %s" -msgstr "Помилка компіляції регулярного виразу - %s" +msgid "Failed to mount '%s' to '%s'" +msgstr "Не вдалося під'єднати '%s' до '%s'" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Кеш має несумісну систему призначення версій" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Виникла помилка під час обробки %s (%s%d)" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Повторіть цей процес для решти CD з вашого набору." -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "Ого! Ви перевищили кількість імен пакунків, які APT може обробити." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Аргументи не в парах" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Ого! Ви перевищили кількість версій, які APT може обробити." +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"Використання: apt-config [опції] команда\n" +"\n" +"apt-config - простий інструмент для зчитування конфігураційного файла APT\n" +"\n" +"Команди:\n" +" shell - режим shell\n" +" dump - показати конфігурацію\n" +"\n" +"Опції:\n" +" -h Цей текст допомоги.\n" +" -с=? Читати зазначений конфігураційний файл.\n" +" -o=? Встановити умовну опцію, наприклад, -o dir::cache=/tmp\n" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Ого! Ви перевищили кількість описів, які APT може обробити." +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Неможливо знайти ніякий пакунок через рег.вираз '%s'" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "Ого! Ви перевищили кількість залежностей, які APT може обробити." +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Неможливо знайти ніякий пакунок через рег.вираз '%s'" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "Пакунок %s %s не був знайдений під час обробки залежностей" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Неможливо знайти ніякий пакунок через рег.вираз '%s'" -#: apt-pkg/pkgcachegen.cc:1211 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Не вдалося прочитати атрибути переліку вихідних текстів %s" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Обираю '%s' як пакунок вихідних текстів, замість '%s'\n" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Зчитування переліків пакунків" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Ігнорувати недоступну версію '%s' пакунку '%s'" -#: apt-pkg/pkgcachegen.cc:1316 -#, fuzzy -msgid "Collecting File Provides" -msgstr "Збирання інформації про 'File Provides'" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Не можу знайти пакунок %s" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Unable to write to %s" -msgstr "Неможливо записати в %s" +msgid "%s set to manually installed.\n" +msgstr "%s позначений як встановлений вручну.\n" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Помилка IO під час збереження кешу вихідних текстів" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s позначений як автоматично встановлений.\n" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -#, fuzzy -msgid "Send scenario to solver" -msgstr "Відправити сценарій розв'язувачу" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" +"Ця команда застаріла. Будь-ласка, використовуйте замість неї 'apt-mark auto' " +"і 'apt-mark manual'." -#: apt-pkg/edsp.cc:241 -#, fuzzy -msgid "Send request to solver" -msgstr "Відправити запит розв'язувачу" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Внутрішня помилка, вирішувач проблем щось поламав" -#: apt-pkg/edsp.cc:320 -#, fuzzy -msgid "Prepare for receiving solution" -msgstr "Пригодуватися до отримання розв'язку" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Неможливо заблокувати директорію для завантаження" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" msgstr "" -"Зовнішній розв'язувач завершився невдало без відповідного повідомлення про " -"помилку" - -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -#, fuzzy -msgid "Execute external solver" -msgstr "Виконати зовнішній розв'язувач" +"Вкажіть як мінімум один пакунок, для якого необхідно завантажити вихідні " +"тексти" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "не вдалося перейменувати, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Невідповідність хешу MD5Sum" +msgid "Unable to find a source package for %s" +msgstr "Неможливо знайти пакунок з вихідними текстами для %s" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Невідповідність розміру" - -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Невірна дія %s" - -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:786 #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"Неможливо знайти очікуваний запис '%s' у 'Release' файлі (Невірний запис у " -"sources.list, або пошкоджений файл)" - -#: apt-pkg/acquire-item.cc:1589 -#, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Неможливо знайти хеш-суму для '%s' у 'Release' файлі" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Відсутній публічний ключ для заданих ідентифікаторів (ID) ключа:\n" +"УВАГА: Пакування '%s' відбувається в системі контролю версій '%s' на:\n" +"%s\n" -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:791 #, c-format msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -"Файл 'Release' для %s застарів (недійсний з %s). Оновлення для цього " -"репозиторія не будуть застосовані." +"Будь-ласка використовуйте:\n" +"bzr branch %s\n" +"щоб отримати найновіші (потенційно не випущені) оновлення до пакунку.\n" -#: apt-pkg/acquire-item.cc:1691 +#: cmdline/apt-get.cc:843 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Конфліктуючий дистрибутив: %s (очікувався %s, але є %s)" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Пропускаємо вже завантажений файл '%s'\n" -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Виникла помилка під час перевірки підпису. Репозиторій не оновлено, " -"попередні індексні файли будуть використані. Помилка GPG: %s: %s\n" +msgid "Couldn't determine free space in %s" +msgstr "Не вдалося визначити кількість вільного місця в %s" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:882 #, c-format -msgid "GPG error: %s: %s" -msgstr "Помилка GPG: %s: %s" +msgid "You don't have enough free space in %s" +msgstr "Недостатньо місця в %s" -#: apt-pkg/acquire-item.cc:1859 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"Я не зміг знайти файл для пакунку %s. Можливо, це значить, що вам потрібно " -"власноруч виправити цей пакунок. (через відсутність 'arch')" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Необхідно завантажити %sB/%sB з архівів вихідних текстів.\n" -#: apt-pkg/acquire-item.cc:1925 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "Неможливо знайти джерело для завантаження версії '%s' для '%s'" +msgid "Need to get %sB of source archives.\n" +msgstr "Потрібно завантажити %sB архівів з вихідними текстами.\n" -#: apt-pkg/acquire-item.cc:1983 +#: cmdline/apt-get.cc:902 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Індексні файли пакунків пошкоджені. Немає поля 'Filename' для пакунку %s." +msgid "Fetch source %s\n" +msgstr "Завантаження вихідних текстів %s\n" -#: apt-pkg/vendorlist.cc:85 -#, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Блок постачальника %s не містить відбитку (fingerprint)" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Деякі архіви не вдалося завантажити." -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, c-format -msgid "List directory %spartial is missing." -msgstr "Відсутня директорія зі списками: %spartial" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Завантаження завершено в режимі \"тільки завантаження\"" -#: apt-pkg/acquire.cc:91 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Відсутня директорія для архівів: %spartial" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "" +"Пропускається розпакування вихідних текстів, тому що вже розпаковано в %s\n" -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Unable to lock directory %s" -msgstr "Неможливо заблокувати директорію %s" +msgid "Unpack command '%s' failed.\n" +msgstr "Команда розпакування '%s' завершилася невдало.\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Завантажується файл %li з %li (залишилось %s)" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Перевірте, чи встановлений пакунок 'dpkg-dev'.\n" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Завантажується файл %li з %li" +msgid "Build command '%s' failed.\n" +msgstr "Команда побудови '%s' закінчилася невдало.\n" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Не вдалося завантажити %s %s\n" +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Породжений процес завершився невдало" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" msgstr "" -"Деякі індексні файли не вдалося завантажити. Вони були зігноровані, або " -"замість них були використані старіші версії." - -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Додайте деякі посилання (URI) на вихідні тексти у ваш sources.list" +"Для перевірки залежностей для побудови необхідно вказати як мінімум один " +"пакунок" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -"Невірне значення '%s' для APT::Default-Release, так як такий випуск не є " -"доступним у вихідних кодах" +"Відсутня інформація про архітектуру для %s. Дивись apt.conf(5) APT::" +"Архітектури для налащтування" -#: apt-pkg/policy.cc:422 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Невірний запис у файлі налаштувань %s, відсутній заголовок Package" +msgid "Unable to get build-dependency information for %s" +msgstr "Неможливо одержати інформацію про залежності для побудови %s" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Did not understand pin type %s" -msgstr "Не зрозумів тип %s для фіксатора пакунків (pin)" +msgid "%s has no build depends.\n" +msgstr "%s не має залежностей для побудови.\n" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Не встановлено пріоритету (або стоїть 0) для фіксатора пакунків (pin)" +#: cmdline/apt-get.cc:1272 +#, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"Залежність типу %s для %s не може бути задоволена, бо %s не є дозволеним на " +"'%s' пакунках" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -"Неможливо прямо налаштувати конфігурацію на '%s'. Будь-ласка, дивіться man 5 " -"apt.conf, нижче APT::Immediate-Configure для деталей. (%d)" +"Залежність типу %s для %s не може бути задоволена, бо пакунок %s не знайдено" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Could not configure '%s'. " -msgstr "Неможливо налаштувати '%s'." +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"Не вдалося задовольнити залежність типу %s для %s: Встановлений пакунок %s " +"новіше, аніж треба" -#: apt-pkg/packagemanager.cc:583 +#: cmdline/apt-get.cc:1352 #, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" -"Для виконання даного встановлення потрібне тимчасове видалення важливого " -"пакунку %s через петлеві конфлікти/пре-залежності (Pre-Depends loop). Це " -"погано, але якщо Ви дійсно бажаєте зробити це, активуйте параметр APT::Force-" -"LoopBreak." +"Залежність типу %s для %s не може бути задоволена, бо версія пакунку-" +"кандидата %s не задовольняє умови по версіям" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-get.cc:1358 #, c-format -msgid "Line %u too long in source list %s." -msgstr "Рядок %u є занадто довгим у переліку джерел %s." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Демонтується CD-ROM...\n" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"Залежність типу %s для %s не може бути задоволена, бо немає пакунку-" +"кандидата %s потрібної версії" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Використовується точка монтування CD-ROM: %s\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Чекаю на диск...\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Монтується CD-ROM...\n" - -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Ідентифікація... " +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Неможливо задовольнити залежність типу %s для пакунка %s: %s" -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "Stored label: %s\n" -msgstr "Записано мітку: %s\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Залежності для побудови %s не можуть бути задоволені." -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Сканується диск на вміст індексних файлів...\n" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Обробка залежностей для побудови закінчилася невдало" -#: apt-pkg/cdrom.cc:734 +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 #, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Знайдено %zu індексів пакунків, %zu індексів вихідних текстів, %zu індексів " -"перекладів і %zu підписів\n" +msgid "Changelog for %s (%s)" +msgstr "Журнал змін для %s (%s)" -#: apt-pkg/cdrom.cc:744 +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Підтримувані модулі:" + +#: cmdline/apt-get.cc:1633 msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"Неможливо знайти ніякі файли пакунків, можливо, що це не диск з Debian, або " -"невірна архітектура?" - -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Знайдено мітку: '%s'\n" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Не є вірною назвою, спробуйте ще.\n" +"Використання: apt-get [опції] команда\n" +" apt-get [опції] install|remove пакунок1 [пкн2 ...]\n" +" apt-get [опції] source пакунок1 [пкн2 ...]\n" +"\n" +"apt-get - простий інтерфейс командного рядка для завантаження й\n" +"встановлення пакунків. Найбільш часто використовувані команди - update\n" +"і install.\n" +"\n" +"Команди:\n" +" update - завантажити нові переліки пакунків\n" +" upgrade - виконати оновлення пакунків\n" +" install - встановити нові пакунки (назва пакунка вказується\n" +" як libc6, а не libc6.deb)\n" +" remove - видалити пакунки\n" +" autoremove - видалити автоматично усі пакунки, що не використовуються\n" +" purge - видалити пакунки разом з іхніми конфігураційними файлами\n" +" source - завантажити архіви з вихідними текстами\n" +" build-dep - завантажити все необхідне для побудови зазначеного\n" +" пакунку з вихідних текстів\n" +" dist-upgrade - оновити всю систему, докладніше в apt-get(8)\n" +" dselect-upgrade - керуватися вибором, зробленим у dselect\n" +" clean - видалити завантажені архіви\n" +" autoclean - видалити старі завантажені архіви\n" +" check - перевірити наявність порушених залежностей\n" +" changelog - завантажити і показати журнал змін для визначеного пакунку\n" +" download - завантажити двійковий пакунок у поточну директорію\n" +"\n" +"Опції:\n" +" -h Цей текст допомоги.\n" +" -q Виводити повідомлення, придатні для запису у файл журналу.\n" +" Не виводити індикатор прогресу\n" +" -qq Виводити тільки повідомлення про помилки\n" +" -d Тільки завантажити - не встановлювати й не розпаковувати архіви\n" +" -s Не виконувати реальних дій. Імітація роботи\n" +" -y Відповідати 'Так' на всі запитання. Самі запитання при цьому не\n" +" виводяться\n" +" -f Спробувати виправити систему зі зламаними залежностями\n" +" -m Продовжувати, навіть якщо місце розташування архівів невідомо\n" +" -u Показувати список оновлюваних пакунків\n" +" -b Компілювати пакунок з вихідними текстами після завантаження\n" +" -V Показувати докладну інформацію про версії пакунків\n" +" -c=? Читати зазначений файл конфігурації\n" +" -o=? Встановити умовну опцію, наприклад, -o dir::cache=/tmp\n" +"Сторінки керівництв apt-get(8), sources.list(5) і apt.conf(5)\n" +"містять більше інформації і опцій.\n" +" Цей APT має Супер-Коров'ячу Силу.\n" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" msgstr "" -"Цей диск зветься: \n" -"'%s'\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Копіюються переліки пакунків..." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Записується новий перелік вихідних текстів\n" - -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Перелік вихідних текстів для цього диска:\n" +"Вкажіть як мінімум один пакунок, для якого необхідно завантажити вихідні " +"тексти" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"Пакунок %s повинен бути перевстановленим, але я не можу знайти його архів." -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-helper.cc:66 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Помилка, pkgProblemResolver::Resolve згенерував зупинку, це може бути " -"пов'язано з зафіксованими пакунками." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Неможливо усунути проблеми, ви маєте поламані зафіксовані пакунки." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Побудова дерева залежностей" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Версії кандидатів" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Ґенерація залежностей" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Зчитування інформації про стан" - -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Не вдалося відкрити StateFile %s" -#: apt-pkg/depcache.cc:256 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Не вдалося записати до тимчасового StateFile файла %s" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s не може бути позначений, тому що він не встановлений.\n" -#: apt-pkg/tagfile.cc:140 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Неможливо проаналізувати файл пакунку %s (1)" +msgid "%s was already set to manually installed.\n" +msgstr "%s вже був позначений, як встановлений вручну.\n" -#: apt-pkg/tagfile.cc:237 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Неможливо проаналізувати файл пакунку %s (2)" +msgid "%s was already set to automatically installed.\n" +msgstr "%s вже був позначений, як автоматично встановлений.\n" -#: apt-pkg/cacheset.cc:489 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Випуск '%s' для '%s' не знайдено" +msgid "%s was already set on hold.\n" +msgstr "%s вже був зафіксований.\n" -#: apt-pkg/cacheset.cc:492 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Версія '%s' для '%s' не знайдена" +msgid "%s was already not hold.\n" +msgstr "%s вже був незафіксований.\n" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Unable to locate package %s" -msgstr "Не можу знайти пакунок %s" +msgid "Waited for %s but it wasn't there" +msgstr "Очікував на %s, але його там не було" -#: apt-pkg/cacheset.cc:603 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Couldn't find task '%s'" -msgstr "Неможливо знайти завдання '%s'" +msgid "%s set on hold.\n" +msgstr "%s зафіксовано.\n" -#: apt-pkg/cacheset.cc:609 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Неможливо знайти ніякий пакунок через рег.вираз '%s'" - -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Неможливо знайти ніякий пакунок через рег.вираз '%s'" +msgid "Canceled hold on %s.\n" +msgstr "Фіксацію для %s відмінено.\n" -#: apt-pkg/cacheset.cc:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "Неможливо вибирати версії пакунку '%s', так як він є чисто віртуальним" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "Не вдалося виконати dpkg. Ви root?" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format +#: cmdline/apt-mark.cc:392 +#, fuzzy msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" -"Неможливо вибрати встановлений пакунок, або версію-кандидат пакунку '%s', " -"так як вони відсутні" - -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"Неможливо вибрати найновішу версію пакунку '%s', так як він є чисто " -"віртуальним" - -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "Неможливо вибрати версію пакунку %s, так як він не має кандидатів" - -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" -"Неможливо вибрати встановлену версію пакунку %s, так як такий пакунок не " -"встановлено" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." +msgstr "" +"Використання: apt-mark [опції] {auto|manual} пакунок1 [пакунок2 ...]\n" +"\n" +"apt-mark - це простий інтерфейс командного рядка для позначення\n" +"пакунків як встановлені вручну, або автоматично. Він також уміє\n" +"показувати позначки.\n" +"\n" +"Команди:\n" +" auto - позначити вказані пакунки як автоматично встановлені\n" +" manual - позначити вказані пакунки як встановлені вручну\n" +"\n" +"Опції:\n" +" -h Цей текст допомоги.\n" +" -q Не показувати індикатор прогресу.\n" +" -qq Виводити тільки повідомлення про помилки\n" +" -s Не виконувати реальних дій. Імітація роботи\n" +" -f Читати/писати позначки авто/вручну у вказаному файлі\n" +" -c=? Читати зазначений файл конфігурації.\n" +" -o=? Встановити умовну опцію конфігурації, наприклад, -o dir::cache=/tmp\n" +"Для докладної інформації дивіться керівництва для apt-mark(8) і apt.conf(5)." -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "Неможливо проаналізувати 'Release' файл %s" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/indexrecords.cc:86 +#: methods/cdrom.cc:203 #, c-format -msgid "No sections in Release file %s" -msgstr "Немає секцій у 'Release' файлі %s" +msgid "Unable to read the cdrom database %s" +msgstr "Неможливо прочитати базу %s з cdrom" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Немає запису 'Hash' у 'Release' файлі %s" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" +msgstr "" +"Будь-ласка запустіть apt-cdrom, щоб APT розпізнав цей CD-ROM, apt-get update " +"не може додавати нові CD-ROM" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Невірний запис 'Valid-Until' у 'Release' файлі %s" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Невірний CD-ROM" -#: apt-pkg/indexrecords.cc:149 +#: methods/cdrom.cc:249 #, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Невірний запис 'Date' у 'Release' файлі %s" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "" +"Неможливо відмонтувати CDROM в %s, можливо він все ще використовується." -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Спотворений рядок %lu у переліку джерел %s (аналіз URI)" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Диск не знайдено." -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Спотворений рядок %lu у переліку джерел %s (нечитабельний [параметр])" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Файл не знайдено" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "" -"Спотворений рядок %lu у переліку джерел %s ([параметр] занадто короткий)" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +#, fuzzy +msgid "Failed to stat" +msgstr "Не вдалося одержати атрибути (stat)" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Спотворений рядок %lu у переліку джерел %s ([%s] не є призначенням)" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Не вдалося встановити час модифікації" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Спотворений рядок %lu у переліку джерел %s ([%s] не має ключа)" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Невірне посилання (URI), локальні посилання не повинні починатися з //" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Спотворений рядок %lu у переліку джерел %s ([%s] ключ %s не має значення)" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Логінюсь в" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Спотворений рядок %lu у переліку джерел %s (проблема з URI)" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Неможливо визначити назву вузла" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Спотворений рядок %lu у переліку джерел %s (dist)" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Неможливо визначити локальну назву" -#: apt-pkg/sourcelist.cc:211 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Спотворений рядок %lu у переліку джерел %s (аналіз URI)" +msgid "The server refused the connection and said: %s" +msgstr "Сервер розірвав з'єднання, відповівши: %s" -#: apt-pkg/sourcelist.cc:217 +#: methods/ftp.cc:225 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Спотворений рядок %lu у переліку джерел %s (absolute dist)" +msgid "USER failed, server said: %s" +msgstr "USER невдало, сервер мовив: %s" -#: apt-pkg/sourcelist.cc:224 +#: methods/ftp.cc:232 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Спотворений рядок %lu у переліку джерел %s (dist parse)" +msgid "PASS failed, server said: %s" +msgstr "PASS невдало, сервер мовив: %s" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Відкриття %s" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"Вказано проксі-сервер, але відсутній скрипт логіну, Acquire::ftp::ProxyLogin " +"пустий." -#: apt-pkg/sourcelist.cc:371 +#: methods/ftp.cc:280 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Спотворений рядок %u у переліку джерел %s (тип)" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Команда '%s' у скрипті логіна не вдалася, сервер мовив: %s" -#: apt-pkg/sourcelist.cc:375 +#: methods/ftp.cc:306 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Невідомий тип '%s' на рядку %u в переліку джерел %s" +msgid "TYPE failed, server said: %s" +msgstr "TYPE невдало, сервер мовив: %s" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Невідомий тип '%s' на рядку %u в переліку джерел %s" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Час з'єднання вичерпався" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Встановлюється %s" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Сервер закрив з'єднання" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Налаштовується %s" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Помилка зчитування" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Видаляється %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Відповідь переповнила буфер." -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "Повністю видаляється %s" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Спотворений протокол" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "Взято до відома зникнення %s" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Помилка запису" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Виконується післяустановочний ініціатор %s" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Неможливо створити сокет (socket)" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "Директорія '%s' відсутня" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Неможливо під'єднати сокет (socket) з даними, час з'єднання вичерпався" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "Неможливо відкрити файл '%s'" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Невдача" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "Підготовка %s" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Неможливо під'єднати пасивний сокет (passive socket)." -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Розпакування %s" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "Виклик getaddrinfo не зміг отримати слухаючий сокет" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Підготовка до конфігурації %s" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Неможливо приєднатися до сокета" -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "Встановлено %s" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Неможливо прослухати на сокеті" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "Підготовка до видалення %s" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Не вдалося визначити назву сокета" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "Видалено %s" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Неможливо відіслати команду PORT" -#: apt-pkg/deb/dpkgpm.cc:1009 +#: methods/ftp.cc:802 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Підготовка до повного видалення %s" +msgid "Unknown address family %u (AF_*)" +msgstr "Невідоме адресове сімейство %u (AF_*)" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: methods/ftp.cc:811 #, c-format -msgid "Completely removed %s" -msgstr "Повністю видалено %s" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +msgid "EPRT failed, server said: %s" +msgstr "EPRT невдало, сервер мовив: %s" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Неможливо записати в %s" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Час з'єднання з сокетом даних вичерпався" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Неможливо прийняти з'єднання" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Проблема хешування файла" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/ftp.cc:890 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Очікував на %s, але його там не було" - -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "Операцію було перервано до того, як вона мала завершитися" - -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" -"Звіт apport не був записаний, тому що параметр MaxReports вже досягнув " -"максимальної величини" - -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "проблеми з залежностями - залишено неналаштованим" - -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" -"Звіт apport не був записаний, тому що повідомлення про помилку вказує на те, " -"що ця помилка є наслідком попередньої невдачі." - -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Звіт apport не був записаний, тому що повідомлення про помилку вказує на " -"відсутність вільного місця на диску" +msgid "Unable to fetch file, server said '%s'" +msgstr "Неможливо завантажити файл, сервер мовив: '%s'" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Звіт apport не був записаний, тому що повідомлення про помилку вказує на " -"відсутність вільного місця у пам'яті" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Час з'єднання з сокетом (socket) з даними вичерпався" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" -"Звіт apport не був записаний, тому що повідомлення про помилку вказує на " -"відсутність вільного місця на диску" +#: methods/ftp.cc:935 +#, c-format +msgid "Data transfer failed, server said '%s'" +msgstr "Передача даних обірвалася, сервер мовив '%s'" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" -"Звіт apport не був записаний, тому що повідомлення про помилку вказує на " -"помилку В/В (I/O) у dpkg" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Черга" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"Неможливо заблокувати адміністративну директорію (%s), може її використовує " -"інший процес?" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Неможливо викликати " -#: apt-pkg/deb/debsystem.cc:94 +#: methods/connect.cc:76 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Неможливо заблокувати адміністративну директорію (%s), ви root?" +msgid "Connecting to %s (%s)" +msgstr "З'єднання з %s (%s)" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: methods/connect.cc:87 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" -"dpkg було перервано, ви повинні вручну запустити '%s' аби виправити " -"проблему. " - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Не заблоковано" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 +#: methods/connect.cc:94 #, c-format -msgid "%lid %lih %limin %lis" -msgstr "%liд %liг %liхв %liс" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Неможливо створити сокет для %s (f=%u t=%u p=%u)" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: methods/connect.cc:100 #, c-format -msgid "%lih %limin %lis" -msgstr "%liг %liхв %liс" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Неможливо почати з'єднання з %s:%s (%s)." -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: methods/connect.cc:108 #, c-format -msgid "%limin %lis" -msgstr "%liхв %liс" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Неможливо з'єднатися з %s:%s (%s), час з'єднання вичерпався" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: methods/connect.cc:126 #, c-format -msgid "%lis" -msgstr "%liс" +msgid "Could not connect to %s:%s (%s)." +msgstr "Неможливо під'єднатися до %s:%s (%s)." -#: apt-pkg/contrib/strutl.cc:1243 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Selection %s not found" -msgstr "Вибір %s не знайдено" +msgid "Connecting to %s" +msgstr "З'єднання з %s" -#: apt-pkg/contrib/fileutl.cc:190 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "" -"Блокування не використовується, так як файл блокування %s доступний тільки " -"для зчитування" +msgid "Could not resolve '%s'" +msgstr "Не можу знайти IP адрес для %s" -#: apt-pkg/contrib/fileutl.cc:195 +#: methods/connect.cc:205 #, c-format -msgid "Could not open lock file %s" -msgstr "Неможливо відкрити 'lock' файл %s" +msgid "Temporary failure resolving '%s'" +msgstr "Тимчасова помилка при отриманні IP адреси '%s'" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "" -"Блокування не використовується, так як файл блокування %s знаходиться на " -"файловій системі nfs" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Сталося щось дивне при спробі отримати IP адрес для '%s:%s' (%i - %s)" -#: apt-pkg/contrib/fileutl.cc:223 +#: methods/connect.cc:211 #, c-format -msgid "Could not get lock %s" -msgstr "Неможливо отримати замок %s" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Сталося щось дивне при спробі отримати IP адрес для '%s:%s' (%i - %s)" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: methods/connect.cc:258 #, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "Неможливо створити перелік файлів, так як '%s' не є директорією" +msgid "Unable to connect to %s:%s:" +msgstr "Неможливо під'єднатися до %s:%s:" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "Ігнорується '%s' у директорії '%s', так як не є звичайним файлом" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "" +"Внутрішня помилка: Вірний підпис (signature), але не можливо визначити його " +"відбиток?!" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "Ігнорується файл '%s' у директорії '%s', так як він не має розширення" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Знайдено як мінімум один невірний підпис." -#: apt-pkg/contrib/fileutl.cc:421 +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "Неможливо виконати 'gpgv' для перевірки підпису (чи встановлено gpgv?)" + +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"Ігнорується файл '%s' у директорії '%s', так як він має невірне розширення" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Підпроцес %s отримав 'segmentation fault' (фатальна помилка)." +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Невідома помилка виконання gpgv" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "Підпроцес %s отримав сигнал %u." +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Наступні підписи були невірними:\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Підпроцес %s повернув код помилки (%u)" +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "" +"Наступні підписи не можуть бути перевірені, тому що публічний ключ " +"відсутній:\n" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Підпроцес %s раптово завершився" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Пусті файли не можуть бути правильними архівами" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Помилка запису" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Помилка запису у файл" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Проблема з закриттям gzip файла %s" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Помилка зчитування з сервера. Віддалена сторона закрила з'єднання" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Неможливо відкрити файл %s" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Помилка зчитування з сервера" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "Неможливо відкрити файловий дескриптор %d" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Помилка запису у файл" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Не вдалося створити IPC з породженим процесом" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Вибір провалився" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Не вдалося виконати компресор " +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Час очікування з'єднання вийшов" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Помилка зчитування" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Помилка запису у вихідний файл" -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" -msgstr "зчитування, повинен зчитати ще %llu байт, але нічого більше нема" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Очікування на заголовки" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "записування, повинен був записати ще %llu байт, але не вдалося" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Невірний рядок заголовку" -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Проблема з закриттям файла %s" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "HTTP сервер відіслав невірний заголовок 'reply'" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Проблема з перейменуванням файла %s на %s" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "HTTP сервер відіслав невірний заголовок 'Content-Length'" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "Проблема з роз'єднанням файла %s" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "HTTP сервер відіслав невірний заголовок 'Content-Range'" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Проблема з синхронізацією файла" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Цей HTTP сервер має поламану підтримку 'range'" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Помилка!" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Невідомий формат дати" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Виконано" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Погана заголовкова інформація" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "З'єднання не вдалося" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Виконано" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Внутрішня помилка" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Неможливо відобразити в пам'яті (mmap) пустий файл" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Неможливо створити копію файлового дескриптора %i" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "" +"Внутрішня помилка, InstallPackages була викликана з непрацездатними " +"пакунками!" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Неможливо зробити mmap для %llu байт" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Необхідно видалити пакунки, але видалення заборонене." -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Не вдалося закрити mmap" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Внутрішня помилка, Ordering не завершилася" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Не вдалося синхронізувати mmap" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "Дивно... Розбіжність розмірів, напишіть на apt@packages.debian.org" -#: apt-pkg/contrib/mmap.cc:290 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Неможливо відобразити в пам'яті %lu байт" - -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Не вдалося обрізати файл" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Необхідно завантажити %sB/%sB архівів.\n" -#: apt-pkg/contrib/mmap.cc:341 -#, fuzzy, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" -msgstr "" -"Динамічний MMap використав усе місце. Будь-ласка, збільшіть розмір APT::" -"Cache-Start. Поточне значення: %lu. (man 5 apt.conf)" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 +#, c-format +msgid "Need to get %sB of archives.\n" +msgstr "Необхідно завантажити %sB архівів.\n" -#: apt-pkg/contrib/mmap.cc:446 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" -"Неможливо збільшити розмір MMap, так як обмеження в %lu байт вже досягнуто." +"Після цієї операції об'єм зайнятого дискового простору зросте на %sB.\n" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 +#, c-format +msgid "After this operation, %sB disk space will be freed.\n" msgstr "" -"Неможливо збільшити розмір MMap, так як автоматичне збільшення вимкнено " -"користувачем." +"Після цієї операції об'єм зайнятого дискового простору зменшиться на %sB.\n" -#: apt-pkg/contrib/cdromutl.cc:65 +#: apt-private/private-install.cc:200 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "Неможливо прочитати атрибути точки монтування %s" +msgid "You don't have enough free space in %s." +msgstr "Недостатньо вільного місця в %s." -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Не вдалося прочитати атрибути cdrom" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Виявлено проблеми, а опція -y була використана без --force-yes" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Нерозпізнаваний тип абревіатури: '%c'" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "" +"Вказано виконання тільки тривіальних операцій, але це не тривіальна операція." -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Відкривається конфігураційний файл %s" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Так, робити, як я скажу!" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-private/private-install.cc:222 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Синтаксична помилка %s:%u: Блок починається без назви." +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Те, що ви хочете зробити, може мати небажані наслідки.\n" +"Щоб продовжити, введіть фразу: '%s'\n" +" ?] " -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Синтаксична помилка %s:%u: спотворений тег" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Перервано." -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Синтаксична помилка %s:%u: зайві символи після величини" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Бажаєте продовжити?" -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Деякі файли не вдалося завантажити" + +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -"Синтаксична помилка %s:%u: Директиви можуть бути виконані тільки на " -"найвищому рівні" +"Неможливо завантажити деякі архіви, імовірно треба виконати apt-get update " +"або спробувати повторити запуск з ключем --fix-missing?" -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Синтаксична помилка %s:%u: Забагато вмонтованих (nested) включень" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing і зміна носія в даний момент не підтримується" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Синтаксична помилка %s:%u: Включено звідси" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Неможливо виправити втрачені пакунки." -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Синтаксична помилка %s:%u: Директива '%s' не підтримується" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Переривається встановлення." -#: apt-pkg/contrib/configuration.cc:900 -#, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"Вказаний пакунок зник з вашої системи, так як\n" +"усі файли були перезаписані іншими пакунками:" +msgstr[1] "" +"Вказані пакунки зникли з вашої системи, так як\n" +"усі файли були перезаписані іншими пакунками:" +msgstr[2] "" +"Вказані пакунки зникли з вашої системи, так як\n" +"усі файли були перезаписані іншими пакунками:" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Увага: це зроблено автоматично і умисно dpkg'ем." + +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Нам не дозволено видаляти, неможливо запустити AutoRemover" + +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Синтаксична помилка %s:%u: 'clear directive' потребує дерево налаштувань як " -"аргумент" +"Хм, виглядає так, що AutoRemover помилково знищив щось потрібне.\n" +"Будь-ласка відправте багрепорт щодо apt." -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Синтаксична помилка %s:%u: Зайве сміття в кінці файла" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Наступна інформація можливо допоможе Вам виправити ситуацію:" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, c-format -msgid "No keyring installed in %s." -msgstr "Не встановлено 'keyring' у %s." +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Внутрішня Помилка, AutoRemover щось поламав" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Невідомий параметр командного рядка '%c' [з %s]." +#: apt-private/private-install.cc:513 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "" +"Наступний пакунок був встановлений автоматично і більше не потрібен:" +msgstr[1] "Наступні пакунки були встановлені автоматично і більше не потрібні:" +msgstr[2] "Наступні пакунки були встановлені автоматично і більше не потрібні:" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-private/private-install.cc:517 #, c-format -msgid "Command line option %s is not understood" -msgstr "Незрозумілий параметр %s командного рядка" +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "%lu пакунок був встановлений автоматично і більше не потрібен.\n" +msgstr[1] "" +"%lu пакунка було встановлено автоматично і вони більше не потрібні.\n" +msgstr[2] "" +"%lu пакунків було встановлено автоматично і вони більше не потрібні.\n" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "Параметр %s командного рядка не є логічного типу 'boolean'" +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Використовуйте 'apt-get autoremove' щоб видалити його." +msgstr[1] "Використовуйте 'apt-get autoremove' щоб видалити їх." +msgstr[2] "Використовуйте 'apt-get autoremove' щоб видалити їх." -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "Параметр %s потребує аргумента." +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "" +"Можливо, для виправлення цих помилок Ви захочете скористатися 'apt-get -f " +"install':" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"Опція %s: Специфікація вимагає, щоб рядки у конфігурації мали вираз =<val>." +"Незадоволені залежності. Спробуйте виконати 'apt-get -f install', не " +"вказуючи назв пакунків (або вкажіть рішення)." -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Параметр %s потребує цілочислений аргумент, але не '%s'" +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"Деякі пакунки неможливо встановити. Можливо, Ви просите неможливого,\n" +"або ж використовуєте нестабільний дистрибутив, і запитані Вами пакунки\n" +"ще не створені або були вилучені з Incoming." -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Зламані пакунки" + +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Будуть встановлені наступні додаткові пакунки:" + +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Пропоновані пакунки:" + +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Рекомендовані пакунки:" + +#: apt-private/private-install.cc:825 #, c-format -msgid "Option '%s' is too long" -msgstr "Параметр '%s' є занадто довгим" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "" +"Пропускається %s, пакунок вже встановлений і опція ОНОВИТИ не встановлена.\n" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-private/private-install.cc:829 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Незрозумілий вираз %s, спробуйте true чи false." +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"Пропускається %s, пакунок не встановлений, а запитуються тільки оновлення.\n" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-private/private-install.cc:841 #, c-format -msgid "Invalid operation %s" -msgstr "Невірна дія %s" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Перевстановлення %s неможливе, бо він не може бути завантаженим.\n" -#: cmdline/apt-cache.cc:149 +#: apt-private/private-install.cc:846 #, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Пакунок %s версії %s має незадоволену залежність:\n" +msgid "%s is already the newest version.\n" +msgstr "Вже встановлена найновіша версія %s.\n" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Всього імен пакунків: " +#: apt-private/private-install.cc:894 +#, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Обрана версія '%s' (%s) для '%s'\n" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Всього структур пакунків: " +#: apt-private/private-install.cc:899 +#, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Обрана версія '%s' (%s) для '%s' через '%s'\n" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Нормальних пакунків: " +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "" +"Пакунок '%s' не встановлений, тому не видалений. Можливо ви мали на увазі " +"'%s'?\n" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Цілком віртуальних пакунків: " +#: apt-private/private-install.cc:947 +#, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Пакунок '%s' не встановлений, тому не видалений\n" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Окремих віртуальних пакунків: " +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Змішаних віртуальних пакунків: " +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Відсутні: " +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Виправлення залежностей..." -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Всього унікальних версій: " +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " невдача." -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Всього унікальних описів: " +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Неможливо скоригувати залежності" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Всього залежностей: " +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Неможливо мінімізувати набір оновлень" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Всього відносин Версія/Файл: " +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Виконано" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Всього відносин Опис/Файл: " +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "" +"Для виправлення цих помилок ви можете скористатися 'apt-get -f install'." -#: cmdline/apt-cache.cc:336 +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Незадоволені залежності. Спробуйте використати -f." + +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" + +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Встановлено]" + +#: apt-private/private-output.cc:238 #, fuzzy -msgid "Total Provides mappings: " -msgstr "Всього карт 'Provides': " +msgid "[installed,local]" +msgstr " [Встановлено]" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Всього відфільтрованих (globbed) рядків: " +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#: cmdline/apt-cache.cc:362 +#: apt-private/private-output.cc:243 #, fuzzy -msgid "Total dependency version space: " -msgstr "Всього інформації про залежності: " +msgid "[installed,automatic]" +msgstr " [Встановлено]" -#: cmdline/apt-cache.cc:367 +#: apt-private/private-output.cc:245 #, fuzzy -msgid "Total slack space: " -msgstr "Порожнього місця в кеші: " +msgid "[installed]" +msgstr " [Встановлено]" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Загальний простір полічений для: " +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "" + +#: apt-private/private-output.cc:435 #, c-format -msgid "Package file %s is out of sync." -msgstr "Перелік пакунків %s розсинхронізований." +msgid "but %s is installed" +msgstr "але %s вже встановлений" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Не знайдено жодного пакунка" +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "але %s буде встановлений" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Ви повинні задати не менше одного шаблону пошуку" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "але він не може бути встановлений" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "Ця команда є застарілою. Будь-ласка використовуйте 'apt-mark showauto'" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "але це віртуальний пакунок" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Переліки пакунків:" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "але він не встановлений" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Кеш не синхронізований, неможливо знайти посилання на перелік пакунків" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "але він не буде встановлений" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Зафіксовані пакунки:" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " чи" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(не знайдено)" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Пакунки, що мають незадоволені залежності:" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Встановлено: " +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "НОВІ пакунки, які будуть встановлені:" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Кандидат: " +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Пакунки, які будуть ВИДАЛЕНІ:" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(відсутній)" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Пакунки, які залишені в незмінному стані:" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Фіксатор(pin) пакунка: " +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Пакунки, які будуть ОНОВЛЕНІ:" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Таблиця версій:" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Пакунки, які будуть замінені на СТАРІШІ версії:" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Пакунки, які мали б залишитися без змін, але будуть замінені:" + +#: apt-private/private-output.cc:668 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s для %s скомпільовано %s %s\n" +msgid "%s (due to %s) " +msgstr "%s (внаслідок %s) " -#: cmdline/apt-cache.cc:1749 +#: apt-private/private-output.cc:676 msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Використання: apt-cache [опції] команда\n" -" apt-cache [опції] showpkg пакунок1 [пкн2 ...]\n" -" apt-cache [опції] showsrc пакунок1 [пкн2 ...]\n" -"\n" -"apt-cache - низькорівневий інструмент, що використовується для запиту\n" -"інформації з двійкових кеш-файлів APT\n" -"\n" -"Команди:\n" -" gencaches - побудувати обидва кеші - бінарний і з вихідними текстами\n" -" showpkg - показати загальну інформацію про конкретний пакунок\n" -" showsrc - показати інформацію про вихідний текст (source)\n" -" stats - показати основну статистику\n" -" dump - показати весь файл у стислій формі\n" -" dumpavail - видати доступний файл на stdout\n" -" unmet - показати незадоволені залежності\n" -" search - знайти пакунки, назва яких задовольняє регулярний вираз\n" -" show - показати інформацію про пакунок в зрозумілій формі\n" -" depends - показати інформацію про залежності пакунка\n" -" rdepends - показати інформацію про зворотні залежності пакунка\n" -" pkgnames - показати імена всіх пакунків у системі\n" -" dotty - генерувати графік пакунків у форматі GraphViz\n" -" xvcg - генерувати графік пакунків у форматі xvcg\n" -" policy - показати поточну політику\n" -"\n" -"Опції:\n" -" -h Цей текст допомоги.\n" -" -p=? Кеш пакунків.\n" -" -s=? Кеш вихідних текстів.\n" -" -q Не показувати індикатор прогресу.\n" -" -i Показувати тільки важливі залежності для команди unmet.\n" -" -c=? Читати зазначений файл конфігурації.\n" -" -o=? Встановити умовну опцію конфігурації, наприклад, -o dir::cache=/tmp\n" -"Дивіться подробиці на man-сторінках apt-cache(8) і apt.conf(5).\n" - -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Задайте назву для цього Диска, наприклад 'Debian 5.0.3 Disk 1'" +"УВАГА: Наступні важливі пакунки будуть вилучені.\n" +"НЕ РОБІТЬ цього, якщо ви НЕ уявляєте собі всі можливі наслідки!" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Будь-ласка, вставте Диск у пристрій і натисніть Enter" +#: apt-private/private-output.cc:707 +#, c-format +msgid "%lu upgraded, %lu newly installed, " +msgstr "оновлено %lu, встановлено %lu нових, " -#: cmdline/apt-cdrom.cc:139 +#: apt-private/private-output.cc:711 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Не вдалося під'єднати '%s' до '%s'" +msgid "%lu reinstalled, " +msgstr "%lu перевстановлено, " -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-private/private-output.cc:713 +#, c-format +msgid "%lu downgraded, " +msgstr "%lu замінено на старіші версії, " -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Повторіть цей процес для решти CD з вашого набору." +#: apt-private/private-output.cc:715 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu відмічено для видалення і %lu не оновлено.\n" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Аргументи не в парах" +#: apt-private/private-output.cc:719 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "не встановлено(видалено) до кінця %lu пакунків.\n" -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" msgstr "" -"Використання: apt-config [опції] команда\n" -"\n" -"apt-config - простий інструмент для зчитування конфігураційного файла APT\n" -"\n" -"Команди:\n" -" shell - режим shell\n" -" dump - показати конфігурацію\n" -"\n" -"Опції:\n" -" -h Цей текст допомоги.\n" -" -с=? Читати зазначений конфігураційний файл.\n" -" -o=? Встановити умовну опцію, наприклад, -o dir::cache=/tmp\n" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Неможливо знайти ніякий пакунок через рег.вираз '%s'" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Неможливо знайти ніякий пакунок через рег.вираз '%s'" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Неможливо знайти ніякий пакунок через рег.вираз '%s'" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: cmdline/apt-get.cc:367 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Обираю '%s' як пакунок вихідних текстів, замість '%s'\n" +msgid "Regex compilation error - %s" +msgstr "Помилка компіляції регулярного виразу - %s" -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Ігнорувати недоступну версію '%s' пакунку '%s'" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Команді update не потрібні аргументи" -#: cmdline/apt-get.cc:454 +#: apt-private/private-update.cc:90 #, c-format -msgid "Couldn't find package %s" -msgstr "Не можу знайти пакунок %s" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s позначений як встановлений вручну.\n" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-private/private-show.cc:156 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s позначений як автоматично встановлений.\n" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" + +#: apt-private/private-main.cc:32 msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -"Ця команда застаріла. Будь-ласка, використовуйте замість неї 'apt-mark auto' " -"і 'apt-mark manual'." +"УВАГА: Це тільки симуляція!\n" +" apt-get потребує права root для реального запуску.\n" +" Також не забувайте, що блокування вимикається,\n" +" тому не очікуйте на відповідність поточній реальній ситуації!" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Внутрішня помилка, вирішувач проблем щось поламав" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "УВАГА: Наступні пакунки неможливо автентифікувати!" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Неможливо заблокувати директорію для завантаження" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Автентифікаційне попередження не прийнято до уваги.\n" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "" -"Вкажіть як мінімум один пакунок, для якого необхідно завантажити вихідні " -"тексти" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Деякі пакунки неможливо автентифікувати" + +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Встановити ці пакунки без перевірки?" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Неможливо знайти пакунок з вихідними текстами для %s" +msgid "Failed to fetch %s %s\n" +msgstr "Не вдалося завантажити %s %s\n" -#: cmdline/apt-get.cc:786 +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Не вдалося перейменувати %s на %s" + +#: apt-private/private-sources.cc:70 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -"УВАГА: Пакування '%s' відбувається в системі контролю версій '%s' на:\n" -"%s\n" -#: cmdline/apt-get.cc:791 -#, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" -msgstr "" -"Будь-ласка використовуйте:\n" -"bzr branch %s\n" -"щоб отримати найновіші (потенційно не випущені) оновлення до пакунку.\n" - -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Пропускаємо вже завантажений файл '%s'\n" - -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "Не вдалося визначити кількість вільного місця в %s" - -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "Недостатньо місця в %s" - -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Необхідно завантажити %sB/%sB з архівів вихідних текстів.\n" - -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Потрібно завантажити %sB архівів з вихідними текстами.\n" - -#: cmdline/apt-get.cc:902 -#, c-format -msgid "Fetch source %s\n" -msgstr "Завантаження вихідних текстів %s\n" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Деякі архіви не вдалося завантажити." - -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Завантаження завершено в режимі \"тільки завантаження\"" - -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" msgstr "" -"Пропускається розпакування вихідних текстів, тому що вже розпаковано в %s\n" - -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Команда розпакування '%s' завершилася невдало.\n" - -#: cmdline/apt-get.cc:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Перевірте, чи встановлений пакунок 'dpkg-dev'.\n" - -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "Команда побудови '%s' закінчилася невдало.\n" - -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Породжений процес завершився невдало" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "" -"Для перевірки залежностей для побудови необхідно вказати як мінімум один " -"пакунок" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Обчислення оновлень... " -#: cmdline/apt-get.cc:1054 -#, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" -"Відсутня інформація про архітектуру для %s. Дивись apt.conf(5) APT::" -"Архітектури для налащтування" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Виконано" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Неможливо одержати інформацію про залежності для побудови %s" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "В кеші " -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s не має залежностей для побудови.\n" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Отр:" -#: cmdline/apt-get.cc:1271 -#, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"Залежність типу %s для %s не може бути задоволена, бо %s не є дозволеним на " -"'%s' пакунках" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Ігн " -#: cmdline/apt-get.cc:1289 -#, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" -"Залежність типу %s для %s не може бути задоволена, бо пакунок %s не знайдено" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Пом " -#: cmdline/apt-get.cc:1312 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"Не вдалося задовольнити залежність типу %s для %s: Встановлений пакунок %s " -"новіше, аніж треба" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Отримано %sB за %sB (%sB/s)\n" -#: cmdline/apt-get.cc:1351 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"Залежність типу %s для %s не може бути задоволена, бо версія пакунку-" -"кандидата %s не задовольняє умови по версіям" +msgid " [Working]" +msgstr " [Йде робота]" -#: cmdline/apt-get.cc:1357 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"Залежність типу %s для %s не може бути задоволена, бо немає пакунку-" -"кандидата %s потрібної версії" - -#: cmdline/apt-get.cc:1380 -#, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Неможливо задовольнити залежність типу %s для пакунка %s: %s" +"Зміна носія: вставте диск з міткою\n" +" '%s'\n" +"у пристрій '%s' і натисніть Enter\n" -#: cmdline/apt-get.cc:1395 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Залежності для побудови %s не можуть бути задоволені." - -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Обробка залежностей для побудови закінчилася невдало" +msgid "Unable to read %s" +msgstr "Неможливо прочитати %s" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Журнал змін для %s (%s)" - -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Підтримувані модулі:" - -#: cmdline/apt-get.cc:1632 -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -msgstr "" -"Використання: apt-get [опції] команда\n" -" apt-get [опції] install|remove пакунок1 [пкн2 ...]\n" -" apt-get [опції] source пакунок1 [пкн2 ...]\n" -"\n" -"apt-get - простий інтерфейс командного рядка для завантаження й\n" -"встановлення пакунків. Найбільш часто використовувані команди - update\n" -"і install.\n" -"\n" -"Команди:\n" -" update - завантажити нові переліки пакунків\n" -" upgrade - виконати оновлення пакунків\n" -" install - встановити нові пакунки (назва пакунка вказується\n" -" як libc6, а не libc6.deb)\n" -" remove - видалити пакунки\n" -" autoremove - видалити автоматично усі пакунки, що не використовуються\n" -" purge - видалити пакунки разом з іхніми конфігураційними файлами\n" -" source - завантажити архіви з вихідними текстами\n" -" build-dep - завантажити все необхідне для побудови зазначеного\n" -" пакунку з вихідних текстів\n" -" dist-upgrade - оновити всю систему, докладніше в apt-get(8)\n" -" dselect-upgrade - керуватися вибором, зробленим у dselect\n" -" clean - видалити завантажені архіви\n" -" autoclean - видалити старі завантажені архіви\n" -" check - перевірити наявність порушених залежностей\n" -" changelog - завантажити і показати журнал змін для визначеного пакунку\n" -" download - завантажити двійковий пакунок у поточну директорію\n" -"\n" -"Опції:\n" -" -h Цей текст допомоги.\n" -" -q Виводити повідомлення, придатні для запису у файл журналу.\n" -" Не виводити індикатор прогресу\n" -" -qq Виводити тільки повідомлення про помилки\n" -" -d Тільки завантажити - не встановлювати й не розпаковувати архіви\n" -" -s Не виконувати реальних дій. Імітація роботи\n" -" -y Відповідати 'Так' на всі запитання. Самі запитання при цьому не\n" -" виводяться\n" -" -f Спробувати виправити систему зі зламаними залежностями\n" -" -m Продовжувати, навіть якщо місце розташування архівів невідомо\n" -" -u Показувати список оновлюваних пакунків\n" -" -b Компілювати пакунок з вихідними текстами після завантаження\n" -" -V Показувати докладну інформацію про версії пакунків\n" -" -c=? Читати зазначений файл конфігурації\n" -" -o=? Встановити умовну опцію, наприклад, -o dir::cache=/tmp\n" -"Сторінки керівництв apt-get(8), sources.list(5) і apt.conf(5)\n" -"містять більше інформації і опцій.\n" -" Цей APT має Супер-Коров'ячу Силу.\n" - -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "" -"Вкажіть як мінімум один пакунок, для якого необхідно завантажити вихідні " -"тексти" - -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" - -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" +msgid "Unable to change to %s" +msgstr "Неможливо змінити на %s" -#: cmdline/apt-mark.cc:68 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s не може бути позначений, тому що він не встановлений.\n" +msgid "No mirror file '%s' found " +msgstr "Не знайдено файла дзеркала '%s' " -#: cmdline/apt-mark.cc:74 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s вже був позначений, як встановлений вручну.\n" +msgid "Can not read mirror file '%s'" +msgstr "Неможливо прочитати файл дзеркала '%s'" -#: cmdline/apt-mark.cc:76 -#, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s вже був позначений, як автоматично встановлений.\n" +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Неможливо прочитати файл дзеркала '%s'" -#: cmdline/apt-mark.cc:241 +#: methods/mirror.cc:445 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s вже був зафіксований.\n" +msgid "[Mirror: %s]" +msgstr "[Дзеркало: %s]" -#: cmdline/apt-mark.cc:243 -#, c-format -msgid "%s was already not hold.\n" -msgstr "%s вже був незафіксований.\n" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Не вдалося створити IPC канал для підпроцесу" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, c-format -msgid "%s set on hold.\n" -msgstr "%s зафіксовано.\n" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "З'єднання завершено передчасно" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, c-format -msgid "Canceled hold on %s.\n" -msgstr "Фіксацію для %s відмінено.\n" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Неправильне значення за умовчанням!" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "Не вдалося виконати dpkg. Ви root?" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Для продовження натисніть Enter." -#: cmdline/apt-mark.cc:392 -#, fuzzy -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" -"Використання: apt-mark [опції] {auto|manual} пакунок1 [пакунок2 ...]\n" -"\n" -"apt-mark - це простий інтерфейс командного рядка для позначення\n" -"пакунків як встановлені вручну, або автоматично. Він також уміє\n" -"показувати позначки.\n" -"\n" -"Команди:\n" -" auto - позначити вказані пакунки як автоматично встановлені\n" -" manual - позначити вказані пакунки як встановлені вручну\n" -"\n" -"Опції:\n" -" -h Цей текст допомоги.\n" -" -q Не показувати індикатор прогресу.\n" -" -qq Виводити тільки повідомлення про помилки\n" -" -s Не виконувати реальних дій. Імітація роботи\n" -" -f Читати/писати позначки авто/вручну у вказаному файлі\n" -" -c=? Читати зазначений файл конфігурації.\n" -" -o=? Встановити умовну опцію конфігурації, наприклад, -o dir::cache=/tmp\n" -"Для докладної інформації дивіться керівництва для apt-mark(8) і apt.conf(5)." +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Чи хочете ви видалити всі раніше завантажені .deb файли?" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" +"Під час розпакування виникли якісь помилки. Пакунки, які були встановлені" -#: methods/cdrom.cc:203 -#, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Неможливо прочитати базу %s з cdrom" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "будуть налаштовані. Це може призвести до повторення помилок" -#: methods/cdrom.cc:212 +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "" +"або виникнення нових через незадоволені залежності. Це нормально,тільки " +"помилки" + +#: dselect/install:105 msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"Будь-ласка запустіть apt-cdrom, щоб APT розпізнав цей CD-ROM, apt-get update " -"не може додавати нові CD-ROM" +"зазначені вище цього повідомлення є важливими. Будь-ласка, виправте їх і " +"виконайте установку '[I]nstall' ще раз" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Невірний CD-ROM" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Об'єднання доступної інформації" -#: methods/cdrom.cc:249 +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode було викликано для вузла, що ще використовувався" + +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Не вдалося знайти елемент хеша!" + +#: apt-inst/filelist.cc:459 +#, fuzzy +msgid "Failed to allocate diversion" +msgstr "Не вдалося створити diversion" + +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Внутрішня помилка в AddDiversion" + +#: apt-inst/filelist.cc:477 +#, fuzzy, c-format +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Спроба перезапису diversion, %s -> %s і %s/%s" + +#: apt-inst/filelist.cc:506 +#, fuzzy, c-format +msgid "Double add of diversion %s -> %s" +msgstr "Подвійне додавання diversion %s -> %s" + +#: apt-inst/filelist.cc:549 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "" -"Неможливо відмонтувати CDROM в %s, можливо він все ще використовується." +msgid "Duplicate conf file %s/%s" +msgstr "Копія конфігураційного файлу %s/%s" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Диск не знайдено." +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" +msgstr "Шлях %s занадто довгий" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Файл не знайдено" +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" +msgstr "Розпакування %s більш ніж один раз" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 +#: apt-inst/extract.cc:142 +#, fuzzy, c-format +msgid "The directory %s is diverted" +msgstr "Директорія %s є відхиленою (diverted)" + +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Пакунок пробує записати у ціль з diversion %s/%s" + +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 #, fuzzy -msgid "Failed to stat" -msgstr "Не вдалося одержати атрибути (stat)" +msgid "The diversion path is too long" +msgstr "Шлях 'diversion' є занадто довгим" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Не вдалося встановити час модифікації" +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 +#, c-format +msgid "Failed to stat %s" +msgstr "Не вдалося одержати атрибути %s" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Невірне посилання (URI), локальні посилання не повинні починатися з //" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Не вдалося перейменувати %s на %s" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Логінюсь в" +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "Директорія %s замінюється не директорією" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Неможливо визначити назву вузла" +#: apt-inst/extract.cc:289 +#, fuzzy +msgid "Failed to locate node in its hash bucket" +msgstr "Не вдалося знайти вузол у його наборі хешів" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Неможливо визначити локальну назву" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Шлях занадто довгий" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-inst/extract.cc:421 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Сервер розірвав з'єднання, відповівши: %s" +msgid "Overwrite package match with no version for %s" +msgstr "Перезаписати відповідність пакунка без версії для %s" -#: methods/ftp.cc:225 +#: apt-inst/extract.cc:438 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER невдало, сервер мовив: %s" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Файл %s/%s перезаписує інший файл в пакунку %s" -#: methods/ftp.cc:232 +#: apt-inst/extract.cc:498 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS невдало, сервер мовив: %s" +msgid "Unable to stat %s" +msgstr "Неможливо прочитати атрибути %s" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"Вказано проксі-сервер, але відсутній скрипт логіну, Acquire::ftp::ProxyLogin " -"пустий." +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, c-format +msgid "Failed to write file %s" +msgstr "Не вдалося записати файл %s" -#: methods/ftp.cc:280 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Команда '%s' у скрипті логіна не вдалася, сервер мовив: %s" +msgid "Failed to close file %s" +msgstr "Не вдалося закрити файл %s" -#: methods/ftp.cc:306 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE невдало, сервер мовив: %s" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Невірний DEB архів, відсутній член '%s'" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Час з'єднання вичерпався" +#: apt-inst/deb/debfile.cc:132 +#, c-format +msgid "Internal error, could not locate member %s" +msgstr "Внутрішня помилка, не можу знайти складову частину %s" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Сервер закрив з'єднання" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Контрольний файл не можливо обробити" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Відповідь переповнила буфер." +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Невірний підпис архіву" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Спотворений протокол" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Неможливо прочитати заголовок 'member' в архіві" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Неможливо створити сокет (socket)" +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Невірний заголовок 'member' %s в архіві" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Неможливо під'єднати сокет (socket) з даними, час з'єднання вичерпався" +#: apt-inst/contrib/arfile.cc:108 +#, fuzzy +msgid "Invalid archive member header" +msgstr "Невірний заголовок 'member' в архіві" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Невдача" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Архів занадто малий" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Не вдалося прочитати заголовки в архіві" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Не вдалося створити канали (pipes)" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Не вдалося виконати gzip " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Пошкоджений архів" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Неможливо під'єднати пасивний сокет (passive socket)." +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Контрольна сума tar архіва невірна, архів пошкоджений" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "Виклик getaddrinfo не зміг отримати слухаючий сокет" +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Невідомий тип заголовку TAR - %u, член %s" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Неможливо приєднатися до сокета" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Неможливо прослухати на сокеті" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Виконується dpkg" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Не вдалося визначити назву сокета" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Система пакування '%s' не підтримується" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Неможливо відіслати команду PORT" +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Неможливо визначити тип необхідної системи пакування" -#: methods/ftp.cc:802 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Невідоме адресове сімейство %u (AF_*)" +msgid "Wrote %i records.\n" +msgstr "Записано %i записів.\n" -#: methods/ftp.cc:811 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT невдало, сервер мовив: %s" +msgid "Wrote %i records with %i missing files.\n" +msgstr "Записано %i записів з %i відсутніми файлами.\n" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Час з'єднання з сокетом даних вичерпався" +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Записано %i записів з %i невідповідними файлам\n" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Неможливо прийняти з'єднання" +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "Записано %i записів з %i відсутніми і %i невідповідними файлами\n" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Проблема хешування файла" +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "Неможливо знайти аутентифікаційний запис для: %s" -#: methods/ftp.cc:890 +#: apt-pkg/indexcopy.cc:521 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Неможливо завантажити файл, сервер мовив: '%s'" +msgid "Hash mismatch for: %s" +msgstr "Невідповідність хешу для: %s" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Час з'єднання з сокетом (socket) з даними вичерпався" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Не можу обробити чи відкрити перелік пакунків чи статусний файл." -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Передача даних обірвалася, сервер мовив '%s'" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "Для виправлення цих помилок Ви можете виконати apt-get update" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Черга" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Неможливо прочитати перелік вихідних кодів." -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Неможливо викликати " +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Кеш пакунків пустий" -#: methods/connect.cc:76 -#, c-format -msgid "Connecting to %s (%s)" -msgstr "З'єднання з %s (%s)" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Файл кешу пакунків пошкоджений" -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Файл кешу пакунків має несумісну версію" -#: methods/connect.cc:94 -#, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Неможливо створити сокет для %s (f=%u t=%u p=%u)" +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "Файл кешу пакунків пошкоджений, занадто малий" -#: methods/connect.cc:100 +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Неможливо почати з'єднання з %s:%s (%s)." +msgid "This APT does not support the versioning system '%s'" +msgstr "Цей APT не підтримує систему призначення версій '%s'" -#: methods/connect.cc:108 -#, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Неможливо з'єднатися з %s:%s (%s), час з'єднання вичерпався" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Кеш пакунків був побудований для іншої архітектури" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Неможливо під'єднатися до %s:%s (%s)." +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Залежності (Depends)" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 -#, c-format -msgid "Connecting to %s" -msgstr "З'єднання з %s" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Пре-Залежності (PreDepends)" -#: methods/connect.cc:180 methods/connect.cc:199 -#, c-format -msgid "Could not resolve '%s'" -msgstr "Не можу знайти IP адрес для %s" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Пропонує (Suggests)" -#: methods/connect.cc:205 -#, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Тимчасова помилка при отриманні IP адреси '%s'" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Рекомендує (Recommends)" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Сталося щось дивне при спробі отримати IP адрес для '%s:%s' (%i - %s)" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Конфлікти (Conflicts)" -#: methods/connect.cc:211 -#, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Сталося щось дивне при спробі отримати IP адрес для '%s:%s' (%i - %s)" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Заміняє (Replaces)" -#: methods/connect.cc:258 -#, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Неможливо під'єднатися до %s:%s:" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Застарілі (Obsoletes)" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "" -"Внутрішня помилка: Вірний підпис (signature), але не можливо визначити його " -"відбиток?!" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Ламає (Breaks)" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Знайдено як мінімум один невірний підпис." +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Покращує (Enhances)" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "Неможливо виконати 'gpgv' для перевірки підпису (чи встановлено gpgv?)" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "важливі (important)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "необхідні (required)" + +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "стандартні (standard)" + +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "необов'язкові (optional)" + +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "додаткові (extra)" + +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" -msgstr "" +msgid "The method driver %s could not be found." +msgstr "Драйвер для метода %s не знайдено." -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Невідома помилка виконання gpgv" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "Перевірте, чи встановлений пакунок 'dpkg-dev'.\n" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Наступні підписи були невірними:\n" +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "Метод %s стартував некоректно" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" -"Наступні підписи не можуть бути перевірені, тому що публічний ключ " -"відсутній:\n" +"Будь-ласка, вставте диск з поміткою: '%s' в привід '%s' і натисніть Enter." -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Пусті файли не можуть бути правильними архівами" +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "Тип '%s' індексного файлу не підтримується" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Помилка запису у файл" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Побудова дерева залежностей" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Помилка зчитування з сервера. Віддалена сторона закрила з'єднання" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Версії кандидатів" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Помилка зчитування з сервера" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Ґенерація залежностей" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Помилка запису у файл" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Зчитування інформації про стан" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Вибір провалився" +#: apt-pkg/depcache.cc:250 +#, c-format +msgid "Failed to open StateFile %s" +msgstr "Не вдалося відкрити StateFile %s" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Час очікування з'єднання вийшов" +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Не вдалося записати до тимчасового StateFile файла %s" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Помилка запису у вихідний файл" +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "не вдалося перейменувати, %s (%s -> %s)." -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Очікування на заголовки" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Невідповідність хешу MD5Sum" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Невірний рядок заголовку" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Невідповідність розміру" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP сервер відіслав невірний заголовок 'reply'" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "Невірна дія %s" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP сервер відіслав невірний заголовок 'Content-Length'" +#: apt-pkg/acquire-item.cc:1573 +#, c-format +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" +"Неможливо знайти очікуваний запис '%s' у 'Release' файлі (Невірний запис у " +"sources.list, або пошкоджений файл)" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP сервер відіслав невірний заголовок 'Content-Range'" +#: apt-pkg/acquire-item.cc:1589 +#, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Неможливо знайти хеш-суму для '%s' у 'Release' файлі" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Цей HTTP сервер має поламану підтримку 'range'" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Відсутній публічний ключ для заданих ідентифікаторів (ID) ключа:\n" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Невідомий формат дати" +#: apt-pkg/acquire-item.cc:1669 +#, c-format +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" +"Файл 'Release' для %s застарів (недійсний з %s). Оновлення для цього " +"репозиторія не будуть застосовані." -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Погана заголовкова інформація" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Конфліктуючий дистрибутив: %s (очікувався %s, але є %s)" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "З'єднання не вдалося" +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"Виникла помилка під час перевірки підпису. Репозиторій не оновлено, " +"попередні індексні файли будуть використані. Помилка GPG: %s: %s\n" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Внутрішня помилка" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "Помилка GPG: %s: %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Обчислення оновлень... " +#: apt-pkg/acquire-item.cc:1859 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"Я не зміг знайти файл для пакунку %s. Можливо, це значить, що вам потрібно " +"власноруч виправити цей пакунок. (через відсутність 'arch')" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Виконано" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "Неможливо знайти джерело для завантаження версії '%s' для '%s'" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" +"Індексні файли пакунків пошкоджені. Немає поля 'Filename' для пакунку %s." -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "Тип '%s' індексного файлу не підтримується" -#: apt-private/private-list.cc:164 +#: apt-pkg/clean.cc:64 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "Unable to stat %s." +msgstr "Неможливо прочитати атрибути %s." -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Виправлення залежностей..." +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Кеш має несумісну систему призначення версій" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " невдача." +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Виникла помилка під час обробки %s (%s%d)" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Неможливо скоригувати залежності" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "Ого! Ви перевищили кількість імен пакунків, які APT може обробити." -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Неможливо мінімізувати набір оновлень" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Ого! Ви перевищили кількість версій, які APT може обробити." -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Виконано" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Ого! Ви перевищили кількість описів, які APT може обробити." -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "" -"Для виправлення цих помилок ви можете скористатися 'apt-get -f install'." +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "Ого! Ви перевищили кількість залежностей, які APT може обробити." -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Незадоволені залежності. Спробуйте використати -f." +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Пакунок %s %s не був знайдений під час обробки залежностей" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Не вдалося прочитати атрибути переліку вихідних текстів %s" + +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Зчитування переліків пакунків" + +#: apt-pkg/pkgcachegen.cc:1316 +#, fuzzy +msgid "Collecting File Provides" +msgstr "Збирання інформації про 'File Provides'" + +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Неможливо записати в %s" + +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Помилка IO під час збереження кешу вихідних текстів" -#: apt-private/private-output.cc:234 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Встановлено]" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Блок постачальника %s не містить відбитку (fingerprint)" -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [Встановлено]" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Відсутня директорія зі списками: %spartial" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Відсутня директорія для архівів: %spartial" -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Встановлено]" +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "Неможливо заблокувати директорію %s" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Встановлено]" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Завантажується файл %li з %li (залишилось %s)" -#: apt-private/private-output.cc:249 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "[upgradable from: %s]" +msgid "Retrieving file %li of %li" +msgstr "Завантажується файл %li з %li" + +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" +"Деякі індексні файли не вдалося завантажити. Вони були зігноровані, або " +"замість них були використані старіші версії." -#: apt-private/private-output.cc:253 -msgid "[residual-config]" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Додайте деякі посилання (URI) на вихідні тексти у ваш sources.list" + +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" +"Невірне значення '%s' для APT::Default-Release, так як такий випуск не є " +"доступним у вихідних кодах" -#: apt-private/private-output.cc:435 +#: apt-pkg/policy.cc:422 #, c-format -msgid "but %s is installed" -msgstr "але %s вже встановлений" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Невірний запис у файлі налаштувань %s, відсутній заголовок Package" -#: apt-private/private-output.cc:437 +#: apt-pkg/policy.cc:444 #, c-format -msgid "but %s is to be installed" -msgstr "але %s буде встановлений" +msgid "Did not understand pin type %s" +msgstr "Не зрозумів тип %s для фіксатора пакунків (pin)" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "але він не може бути встановлений" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Не встановлено пріоритету (або стоїть 0) для фіксатора пакунків (pin)" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "але це віртуальний пакунок" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" +"Неможливо прямо налаштувати конфігурацію на '%s'. Будь-ласка, дивіться man 5 " +"apt.conf, нижче APT::Immediate-Configure для деталей. (%d)" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "але він не встановлений" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Неможливо налаштувати '%s'." -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "але він не буде встановлений" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"Для виконання даного встановлення потрібне тимчасове видалення важливого " +"пакунку %s через петлеві конфлікти/пре-залежності (Pre-Depends loop). Це " +"погано, але якщо Ви дійсно бажаєте зробити це, активуйте параметр APT::Force-" +"LoopBreak." -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " чи" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "Рядок %u є занадто довгим у переліку джерел %s." -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Пакунки, що мають незадоволені залежності:" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Демонтується CD-ROM...\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "НОВІ пакунки, які будуть встановлені:" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "Використовується точка монтування CD-ROM: %s\n" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Пакунки, які будуть ВИДАЛЕНІ:" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Чекаю на диск...\n" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Пакунки, які залишені в незмінному стані:" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Монтується CD-ROM...\n" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Пакунки, які будуть ОНОВЛЕНІ:" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Ідентифікація... " -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Пакунки, які будуть замінені на СТАРІШІ версії:" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Записано мітку: %s\n" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Пакунки, які мали б залишитися без змін, але будуть замінені:" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Сканується диск на вміст індексних файлів...\n" -#: apt-private/private-output.cc:668 +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "%s (due to %s) " -msgstr "%s (внаслідок %s) " +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" +"Знайдено %zu індексів пакунків, %zu індексів вихідних текстів, %zu індексів " +"перекладів і %zu підписів\n" -#: apt-private/private-output.cc:676 +#: apt-pkg/cdrom.cc:744 msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"УВАГА: Наступні важливі пакунки будуть вилучені.\n" -"НЕ РОБІТЬ цього, якщо ви НЕ уявляєте собі всі можливі наслідки!" +"Неможливо знайти ніякі файли пакунків, можливо, що це не диск з Debian, або " +"невірна архітектура?" -#: apt-private/private-output.cc:707 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "оновлено %lu, встановлено %lu нових, " +msgid "Found label '%s'\n" +msgstr "Знайдено мітку: '%s'\n" -#: apt-private/private-output.cc:711 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu перевстановлено, " +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Не є вірною назвою, спробуйте ще.\n" -#: apt-private/private-output.cc:713 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "%lu downgraded, " -msgstr "%lu замінено на старіші версії, " +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Цей диск зветься: \n" +"'%s'\n" -#: apt-private/private-output.cc:715 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu відмічено для видалення і %lu не оновлено.\n" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Копіюються переліки пакунків..." -#: apt-private/private-output.cc:719 +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Записується новий перелік вихідних текстів\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Перелік вихідних текстів для цього диска:\n" + +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "не встановлено(видалено) до кінця %lu пакунків.\n" +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"Пакунок %s повинен бути перевстановленим, але я не можу знайти його архів." -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" +"Помилка, pkgProblemResolver::Resolve згенерував зупинку, це може бути " +"пов'язано з зафіксованими пакунками." + +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Неможливо усунути проблеми, ви маєте поламані зафіксовані пакунки." + +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +#, fuzzy +msgid "Send scenario to solver" +msgstr "Відправити сценарій розв'язувачу" + +#: apt-pkg/edsp.cc:241 +#, fuzzy +msgid "Send request to solver" +msgstr "Відправити запит розв'язувачу" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "" +#: apt-pkg/edsp.cc:320 +#, fuzzy +msgid "Prepare for receiving solution" +msgstr "Пригодуватися до отримання розв'язку" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" +"Зовнішній розв'язувач завершився невдало без відповідного повідомлення про " +"помилку" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +#, fuzzy +msgid "Execute external solver" +msgstr "Виконати зовнішній розв'язувач" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Команді update не потрібні аргументи" +#: apt-pkg/tagfile.cc:140 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Неможливо проаналізувати файл пакунку %s (1)" -#: apt-private/private-update.cc:90 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "Unable to parse package file %s (2)" +msgstr "Неможливо проаналізувати файл пакунку %s (2)" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Неможливо проаналізувати 'Release' файл %s" -#: apt-private/private-show.cc:156 +#: apt-pkg/indexrecords.cc:86 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "No sections in Release file %s" +msgstr "Немає секцій у 'Release' файлі %s" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Немає запису 'Hash' у 'Release' файлі %s" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "" -"Внутрішня помилка, InstallPackages була викликана з непрацездатними " -"пакунками!" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Невірний запис 'Valid-Until' у 'Release' файлі %s" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Необхідно видалити пакунки, але видалення заборонене." +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Невірний запис 'Date' у 'Release' файлі %s" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Внутрішня помилка, Ordering не завершилася" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Спотворений рядок %lu у переліку джерел %s (аналіз URI)" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "Дивно... Розбіжність розмірів, напишіть на apt@packages.debian.org" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Спотворений рядок %lu у переліку джерел %s (нечитабельний [параметр])" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Необхідно завантажити %sB/%sB архівів.\n" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "" +"Спотворений рядок %lu у переліку джерел %s ([параметр] занадто короткий)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:184 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Необхідно завантажити %sB архівів.\n" +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Спотворений рядок %lu у переліку джерел %s ([%s] не є призначенням)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "" -"Після цієї операції об'єм зайнятого дискового простору зросте на %sB.\n" +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Спотворений рядок %lu у переліку джерел %s ([%s] не має ключа)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -"Після цієї операції об'єм зайнятого дискового простору зменшиться на %sB.\n" +"Спотворений рядок %lu у переліку джерел %s ([%s] ключ %s не має значення)" -#: apt-private/private-install.cc:200 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Недостатньо вільного місця в %s." +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Спотворений рядок %lu у переліку джерел %s (проблема з URI)" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Виявлено проблеми, а опція -y була використана без --force-yes" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Спотворений рядок %lu у переліку джерел %s (dist)" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "" -"Вказано виконання тільки тривіальних операцій, але це не тривіальна операція." +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Спотворений рядок %lu у переліку джерел %s (аналіз URI)" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Так, робити, як я скажу!" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Спотворений рядок %lu у переліку джерел %s (absolute dist)" -#: apt-private/private-install.cc:222 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Те, що ви хочете зробити, може мати небажані наслідки.\n" -"Щоб продовжити, введіть фразу: '%s'\n" -" ?] " +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Спотворений рядок %lu у переліку джерел %s (dist parse)" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Перервано." +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Відкриття %s" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Бажаєте продовжити?" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Спотворений рядок %u у переліку джерел %s (тип)" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Деякі файли не вдалося завантажити" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Невідомий тип '%s' на рядку %u в переліку джерел %s" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Неможливо завантажити деякі архіви, імовірно треба виконати apt-get update " -"або спробувати повторити запуск з ключем --fix-missing?" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Невідомий тип '%s' на рядку %u в переліку джерел %s" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing і зміна носія в даний момент не підтримується" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Випуск '%s' для '%s' не знайдено" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Неможливо виправити втрачені пакунки." +#: apt-pkg/cacheset.cc:492 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Версія '%s' для '%s' не знайдена" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Переривається встановлення." +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Неможливо знайти завдання '%s'" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -"Вказаний пакунок зник з вашої системи, так як\n" -"усі файли були перезаписані іншими пакунками:" -msgstr[1] "" -"Вказані пакунки зникли з вашої системи, так як\n" -"усі файли були перезаписані іншими пакунками:" -msgstr[2] "" -"Вказані пакунки зникли з вашої системи, так як\n" -"усі файли були перезаписані іншими пакунками:" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Неможливо знайти ніякий пакунок через рег.вираз '%s'" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Увага: це зроблено автоматично і умисно dpkg'ем." +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Неможливо знайти ніякий пакунок через рег.вираз '%s'" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Нам не дозволено видаляти, неможливо запустити AutoRemover" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "Неможливо вибирати версії пакунку '%s', так як він є чисто віртуальним" -#: apt-private/private-install.cc:499 +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Хм, виглядає так, що AutoRemover помилково знищив щось потрібне.\n" -"Будь-ласка відправте багрепорт щодо apt." +"Неможливо вибрати встановлений пакунок, або версію-кандидат пакунку '%s', " +"так як вони відсутні" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "Наступна інформація можливо допоможе Вам виправити ситуацію:" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"Неможливо вибрати найновішу версію пакунку '%s', так як він є чисто " +"віртуальним" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Внутрішня Помилка, AutoRemover щось поламав" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "Неможливо вибрати версію пакунку %s, так як він не має кандидатів" -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "" -"Наступний пакунок був встановлений автоматично і більше не потрібен:" -msgstr[1] "Наступні пакунки були встановлені автоматично і більше не потрібні:" -msgstr[2] "Наступні пакунки були встановлені автоматично і більше не потрібні:" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"Неможливо вибрати встановлену версію пакунку %s, так як такий пакунок не " +"встановлено" -#: apt-private/private-install.cc:517 +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "%lu пакунок був встановлений автоматично і більше не потрібен.\n" -msgstr[1] "" -"%lu пакунка було встановлено автоматично і вони більше не потрібні.\n" -msgstr[2] "" -"%lu пакунків було встановлено автоматично і вони більше не потрібні.\n" +msgid "%lid %lih %limin %lis" +msgstr "%liд %liг %liхв %liс" -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Використовуйте 'apt-get autoremove' щоб видалити його." -msgstr[1] "Використовуйте 'apt-get autoremove' щоб видалити їх." -msgstr[2] "Використовуйте 'apt-get autoremove' щоб видалити їх." +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%liг %liхв %liс" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "" -"Можливо, для виправлення цих помилок Ви захочете скористатися 'apt-get -f " -"install':" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%liхв %liс" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%liс" + +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "Вибір %s не знайдено" + +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" msgstr "" -"Незадоволені залежності. Спробуйте виконати 'apt-get -f install', не " -"вказуючи назв пакунків (або вкажіть рішення)." +"Блокування не використовується, так як файл блокування %s доступний тільки " +"для зчитування" -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "Неможливо відкрити 'lock' файл %s" + +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" msgstr "" -"Деякі пакунки неможливо встановити. Можливо, Ви просите неможливого,\n" -"або ж використовуєте нестабільний дистрибутив, і запитані Вами пакунки\n" -"ще не створені або були вилучені з Incoming." +"Блокування не використовується, так як файл блокування %s знаходиться на " +"файловій системі nfs" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Зламані пакунки" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Неможливо отримати замок %s" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Будуть встановлені наступні додаткові пакунки:" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "Неможливо створити перелік файлів, так як '%s' не є директорією" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Пропоновані пакунки:" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "Ігнорується '%s' у директорії '%s', так як не є звичайним файлом" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Рекомендовані пакунки:" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "Ігнорується файл '%s' у директорії '%s', так як він не має розширення" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:421 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"Пропускається %s, пакунок вже встановлений і опція ОНОВИТИ не встановлена.\n" +"Ігнорується файл '%s' у директорії '%s', так як він має невірне розширення" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:824 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"Пропускається %s, пакунок не встановлений, а запитуються тільки оновлення.\n" +msgid "Sub-process %s received a segmentation fault." +msgstr "Підпроцес %s отримав 'segmentation fault' (фатальна помилка)." -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:826 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Перевстановлення %s неможливе, бо він не може бути завантаженим.\n" +msgid "Sub-process %s received signal %u." +msgstr "Підпроцес %s отримав сигнал %u." -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "%s is already the newest version.\n" -msgstr "Вже встановлена найновіша версія %s.\n" +msgid "Sub-process %s returned an error code (%u)" +msgstr "Підпроцес %s повернув код помилки (%u)" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Обрана версія '%s' (%s) для '%s'\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "Підпроцес %s раптово завершився" -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/fileutl.cc:913 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Обрана версія '%s' (%s) для '%s' через '%s'\n" +msgid "Problem closing the gzip file %s" +msgstr "Проблема з закриттям gzip файла %s" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" -"Пакунок '%s' не встановлений, тому не видалений. Можливо ви мали на увазі " -"'%s'?\n" +msgid "Could not open file %s" +msgstr "Неможливо відкрити файл %s" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Пакунок '%s' не встановлений, тому не видалений\n" +msgid "Could not open file descriptor %d" +msgstr "Неможливо відкрити файловий дескриптор %d" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" -"УВАГА: Це тільки симуляція!\n" -" apt-get потребує права root для реального запуску.\n" -" Також не забувайте, що блокування вимикається,\n" -" тому не очікуйте на відповідність поточній реальній ситуації!" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Не вдалося створити IPC з породженим процесом" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "УВАГА: Наступні пакунки неможливо автентифікувати!" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Не вдалося виконати компресор " -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Автентифікаційне попередження не прийнято до уваги.\n" +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "зчитування, повинен зчитати ще %llu байт, але нічого більше нема" + +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "записування, повинен був записати ще %llu байт, але не вдалося" + +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Проблема з закриттям файла %s" + +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Проблема з перейменуванням файла %s на %s" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Деякі пакунки неможливо автентифікувати" +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Проблема з роз'єднанням файла %s" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Встановити ці пакунки без перевірки?" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Проблема з синхронізацією файла" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Не вдалося перейменувати %s на %s" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Помилка!" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%c%s... Done" +msgstr "%c%s... Виконано" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "В кеші " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Отр:" - -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ігн " +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Виконано" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Пом " +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Неможливо відобразити в пам'яті (mmap) пустий файл" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Отримано %sB за %sB (%sB/s)\n" +msgid "Couldn't duplicate file descriptor %i" +msgstr "Неможливо створити копію файлового дескриптора %i" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/mmap.cc:119 #, c-format -msgid " [Working]" -msgstr " [Йде робота]" +msgid "Couldn't make mmap of %llu bytes" +msgstr "Неможливо зробити mmap для %llu байт" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Не вдалося закрити mmap" + +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Не вдалося синхронізувати mmap" + +#: apt-pkg/contrib/mmap.cc:290 #, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Неможливо відобразити в пам'яті %lu байт" + +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Не вдалося обрізати файл" + +#: apt-pkg/contrib/mmap.cc:341 +#, fuzzy, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -"Зміна носія: вставте диск з міткою\n" -" '%s'\n" -"у пристрій '%s' і натисніть Enter\n" +"Динамічний MMap використав усе місце. Будь-ласка, збільшіть розмір APT::" +"Cache-Start. Поточне значення: %lu. (man 5 apt.conf)" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "No mirror file '%s' found " -msgstr "Не знайдено файла дзеркала '%s' " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" +"Неможливо збільшити розмір MMap, так як обмеження в %lu байт вже досягнуто." -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"Неможливо збільшити розмір MMap, так як автоматичне збільшення вимкнено " +"користувачем." + +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Неможливо прочитати файл дзеркала '%s'" +msgid "Unable to stat the mount point %s" +msgstr "Неможливо прочитати атрибути точки монтування %s" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Неможливо прочитати файл дзеркала '%s'" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Не вдалося прочитати атрибути cdrom" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "[Mirror: %s]" -msgstr "[Дзеркало: %s]" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Не вдалося створити IPC канал для підпроцесу" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Нерозпізнаваний тип абревіатури: '%c'" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "З'єднання завершено передчасно" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "Відкривається конфігураційний файл %s" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Неправильне значення за умовчанням!" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Синтаксична помилка %s:%u: Блок починається без назви." -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Для продовження натисніть Enter." +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Синтаксична помилка %s:%u: спотворений тег" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Чи хочете ви видалити всі раніше завантажені .deb файли?" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Синтаксична помилка %s:%u: зайві символи після величини" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -"Під час розпакування виникли якісь помилки. Пакунки, які були встановлені" +"Синтаксична помилка %s:%u: Директиви можуть бути виконані тільки на " +"найвищому рівні" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "будуть налаштовані. Це може призвести до повторення помилок" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Синтаксична помилка %s:%u: Забагато вмонтованих (nested) включень" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"або виникнення нових через незадоволені залежності. Це нормально,тільки " -"помилки" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Синтаксична помилка %s:%u: Включено звідси" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Синтаксична помилка %s:%u: Директива '%s' не підтримується" + +#: apt-pkg/contrib/configuration.cc:900 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"зазначені вище цього повідомлення є важливими. Будь-ласка, виправте їх і " -"виконайте установку '[I]nstall' ще раз" +"Синтаксична помилка %s:%u: 'clear directive' потребує дерево налаштувань як " +"аргумент" -#: dselect/update:30 -msgid "Merging available information" -msgstr "Об'єднання доступної інформації" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Синтаксична помилка %s:%u: Зайве сміття в кінці файла" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode було викликано для вузла, що ще використовувався" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "Не встановлено 'keyring' у %s." -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Не вдалося знайти елемент хеша!" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Невідомий параметр командного рядка '%c' [з %s]." -#: apt-inst/filelist.cc:459 -#, fuzzy -msgid "Failed to allocate diversion" -msgstr "Не вдалося створити diversion" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Незрозумілий параметр %s командного рядка" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Внутрішня помилка в AddDiversion" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Параметр %s командного рядка не є логічного типу 'boolean'" -#: apt-inst/filelist.cc:477 -#, fuzzy, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Спроба перезапису diversion, %s -> %s і %s/%s" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Параметр %s потребує аргумента." -#: apt-inst/filelist.cc:506 -#, fuzzy, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Подвійне додавання diversion %s -> %s" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "" +"Опція %s: Специфікація вимагає, щоб рядки у конфігурації мали вираз =<val>." -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Копія конфігураційного файлу %s/%s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Параметр %s потребує цілочислений аргумент, але не '%s'" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "The path %s is too long" -msgstr "Шлях %s занадто довгий" +msgid "Option '%s' is too long" +msgstr "Параметр '%s' є занадто довгим" -#: apt-inst/extract.cc:132 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Unpacking %s more than once" -msgstr "Розпакування %s більш ніж один раз" +msgid "Sense %s is not understood, try true or false." +msgstr "Незрозумілий вираз %s, спробуйте true чи false." -#: apt-inst/extract.cc:142 -#, fuzzy, c-format -msgid "The directory %s is diverted" -msgstr "Директорія %s є відхиленою (diverted)" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Невірна дія %s" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Пакунок пробує записати у ціль з diversion %s/%s" +msgid "Installing %s" +msgstr "Встановлюється %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -#, fuzzy -msgid "The diversion path is too long" -msgstr "Шлях 'diversion' є занадто довгим" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "Налаштовується %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "Failed to stat %s" -msgstr "Не вдалося одержати атрибути %s" +msgid "Removing %s" +msgstr "Видаляється %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Не вдалося перейменувати %s на %s" +msgid "Completely removing %s" +msgstr "Повністю видаляється %s" -#: apt-inst/extract.cc:249 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Директорія %s замінюється не директорією" +msgid "Noting disappearance of %s" +msgstr "Взято до відома зникнення %s" -#: apt-inst/extract.cc:289 -#, fuzzy -msgid "Failed to locate node in its hash bucket" -msgstr "Не вдалося знайти вузол у його наборі хешів" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "Виконується післяустановочний ініціатор %s" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Шлях занадто довгий" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Директорія '%s' відсутня" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Перезаписати відповідність пакунка без версії для %s" +msgid "Could not open file '%s'" +msgstr "Неможливо відкрити файл '%s'" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Файл %s/%s перезаписує інший файл в пакунку %s" +msgid "Preparing %s" +msgstr "Підготовка %s" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Unable to stat %s" -msgstr "Неможливо прочитати атрибути %s" +msgid "Unpacking %s" +msgstr "Розпакування %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Failed to write file %s" -msgstr "Не вдалося записати файл %s" +msgid "Preparing to configure %s" +msgstr "Підготовка до конфігурації %s" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Failed to close file %s" -msgstr "Не вдалося закрити файл %s" +msgid "Installed %s" +msgstr "Встановлено %s" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Невірний DEB архів, відсутній член '%s'" +msgid "Preparing for removal of %s" +msgstr "Підготовка до видалення %s" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Внутрішня помилка, не можу знайти складову частину %s" +msgid "Removed %s" +msgstr "Видалено %s" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Контрольний файл не можливо обробити" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "Підготовка до повного видалення %s" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Невірний підпис архіву" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Повністю видалено %s" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Неможливо прочитати заголовок 'member' в архіві" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:96 +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Невірний заголовок 'member' %s в архіві" +msgid "Can not write log (%s)" +msgstr "Неможливо записати в %s" -#: apt-inst/contrib/arfile.cc:108 -#, fuzzy -msgid "Invalid archive member header" -msgstr "Невірний заголовок 'member' в архіві" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Архів занадто малий" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Не вдалося прочитати заголовки в архіві" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "Операцію було перервано до того, як вона мала завершитися" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Не вдалося створити канали (pipes)" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" +"Звіт apport не був записаний, тому що параметр MaxReports вже досягнув " +"максимальної величини" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Не вдалося виконати gzip " +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "проблеми з залежностями - залишено неналаштованим" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Пошкоджений архів" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Звіт apport не був записаний, тому що повідомлення про помилку вказує на те, " +"що ця помилка є наслідком попередньої невдачі." -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Контрольна сума tar архіва невірна, архів пошкоджений" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Звіт apport не був записаний, тому що повідомлення про помилку вказує на " +"відсутність вільного місця на диску" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Звіт apport не був записаний, тому що повідомлення про помилку вказує на " +"відсутність вільного місця у пам'яті" + +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Звіт apport не був записаний, тому що повідомлення про помилку вказує на " +"відсутність вільного місця на диску" + +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Звіт apport не був записаний, тому що повідомлення про помилку вказує на " +"помилку В/В (I/O) у dpkg" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Невідомий тип заголовку TAR - %u, член %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Неможливо заблокувати адміністративну директорію (%s), може її використовує " +"інший процес?" + +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Неможливо заблокувати адміністративну директорію (%s), ви root?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"dpkg було перервано, ви повинні вручну запустити '%s' аби виправити " +"проблему. " + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Не заблоковано" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/vi.po b/po/vi.po index 9b0dddb08..1f9cc5bc7 100644 --- a/po/vi.po +++ b/po/vi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 1.0.6\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2014-07-24 14:58+0700\n" "Last-Translator: Trần Ngọc Quân <vnwildman@gmail.com>\n" "Language-Team: Vietnamese <translation-team-vi@lists.sourceforge.net>\n" @@ -22,3273 +22,3274 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-Basepath: ../\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, c-format -msgid "Clean of %s is not supported" -msgstr "Không hỗ trợ việc xóa %s" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "Không thể đọc %s" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "Không thể chuyển đổi sang %s" - -#: apt-pkg/clean.cc:64 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Unable to stat %s." -msgstr "Không thể lấy trạng thái về %s." +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Gói %s phiên bản %s có phần phụ thuộc chưa thỏa mãn:\n" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "Diễn biến: [%3i%%]" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "Tổng các tên gói: " -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Đang chạy dpkg" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "Tổng các cấu trúc gói: " -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Không hỗ trợ hệ thống đóng gói “%s”" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " Gói thường: " -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Không thể quyết định kiểu hệ thống đóng gói thích hợp" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " Gói thuần ảo: " -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Đã ghi %i bản ghi.\n" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " Gói ảo đơn: " -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Đã ghi %i bản ghi với %i tập tin còn thiếu.\n" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " Gói ảo hỗn hợp: " -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Đã ghi %i bản ghi với %i tập tin không khớp với nhau\n" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " Thiếu: " -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" -"Đã ghi %i bản ghi với %i tập tin còn thiếu và %i tập tin không khớp với " -"nhau\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "Tổng phiên bản riêng: " -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "Không tìm thấy bản ghi xác thực cho: %s" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "Tổng mô tả riêng: " -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "Sai khớp chuỗi duy nhất cho: %s" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "Tổng gói phụ thuộc: " -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Không tìm thấy trình điều khiển phương thức %s." +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "Tổng liên quan phiên bản và tập tin: " -#: apt-pkg/acquire-worker.cc:118 -#, c-format -msgid "Is the package %s installed?" -msgstr "Gói “%s” đã được cài đặt chưa?" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "Tổng quan hệ mô-tả/tập-tin: " -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Phương thức %s đã không khởi chạy đúng đắn." +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "Tổng ánh xạ Cung cấp: " -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "Hãy cho đĩa có nhãn “%s” vào ổ “%s” rồi bấm nút Enter." +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Tổng chuỗi mở rộng mẫu tìm kiếm: " -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "Không thể phân tích hay mở danh sách gói hay tập tin trạng thái." +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "Tổng chỗ phiên bản phụ thuộc: " -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "" -"Bạn nên lấy cơ sở dữ liệu mới bằng lệnh “apt-get update” để sửa các vấn đề " -"này" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Tổng chỗ trống: " -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Không thể đọc danh sách nguồn." +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "Tổng chỗ đã tính dành cho: " -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Bộ nhớ tạm gói trống" +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "Tập tin gói %s không đồng bộ được." -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Tập tin nhớ tạm gói bị hỏng" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "Không tìm thấy gói" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Tập tin nhớ tạm gói là một phiên bản không tương thích" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "Bạn phải đưa ra ít nhất một mẫu tìm kiếm" -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Tập tin nhớ tạm gói bị hỏng, nó quá nhỏ" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" +"Lệnh này đã lỗi thời. Xin hãy dùng lệnh “apt-mark showauto” để thay thế." -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Trình APT này không hỗ trợ hệ thống điều khiển phiên bản “%s”" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Bộ nhớ tạm gói được biên dịch cho một kiến trúc khác" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Phụ thuộc" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Phụ thuộc sẵn" +msgid "Unable to locate package %s" +msgstr "Không thể định vị gói %s" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Đề nghị" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "Tập tin gói:" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Khuyến khích" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" +"Bộ nhớ tạm không đồng bộ được nên không thể tham chiếu chéo tập tin gói" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Xung đột" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "Các gói đã ghim:" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Thay thế" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(không tìm thấy)" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Cũ" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " Đã cài đặt: " -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Làm hỏng" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " Ứng cử: " -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Tăng cường" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(không)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "quan trọng" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " Ghim gói: " -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "yêu cầu" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " Bảng phiên bản:" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "chuẩn" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s-%s được biên dịch cho %s vào lúc “%s %s”\n" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "tùy chọn" +#: cmdline/apt-cache.cc:1749 +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Cách dùng: apt-cache [tùy_chọn...] lệnh\n" +" apt-cache [tùy_chọn...] showpkg gói1 [gói2 ...]\n" +" apt-cache [tùy_chọn...] showsrc gói1 [gói2 ...]\n" +"(cache: bộ nhớ tạm\n" +"showpkg: hiển thị gói nhị phân\n" +"showsrc: hiển thị gói nguồn)\n" +"\n" +"apt-cache là một công cụ ở mức thấp dùng để truy vấn\n" +"thông tin từ các tập tin bộ nhớ tạm nhị phân của APT.\n" +"\n" +"Lệnh:\n" +" gencaches - Tạo bộ nhớ tạm cho cả gói lẫn nguồn\n" +" showpkg - Hiện thông tin chung về một gói riêng lẻ\n" +" showsrc - Hiện các bản ghi cho gói nguồn\n" +" stats - Hiện phần thống kê cơ bản\n" +" dump - Hiện toàn bộ tập tin dạng ngắn (đổ)\n" +" dumpavail - In ra một tập tin sẵn dùng ra thiết bị xuất chuẩn\n" +" unmet - Hiện các gói chưa thỏa mãn quan hệ phụ thuộc\n" +" search - Tìm kiếm danh sách các gói dựa trên biểu thức chính quy\n" +" show - Hiển thị bản ghi có thể đọc cho những gói đó\n" +" depends - Hiện thông tin quan hệ phụ thuộc dạng thô cho gói\n" +" rdepends - Hiện thông tin những gói phụ thuộc vào gói này\n" +" pkgnames - Liệt kê danh sách mọi gói trên hệ thống\n" +" dotty - Tạo ra đồ thị gói cho GraphViz (nhiều chấm)\n" +" xvcg - Tạo ra đồ thị gói cho xvcg\n" +" policy - Hiển thị các cài đặt về chính sách\n" +"\n" +"Tùy chọn:\n" +" -h Hiển thị trợ giúp này.\n" +" -p=? Bộ nhớ tạm gói.\n" +" -s=? Bộ nhớ tạm nguồn.\n" +" -q Không hiển thị diễn tiến công việc.\n" +" -i Chỉ hiển thị những phụ thuộc quan trọng cho lệnh unmet.\n" +" -c=? Đọc tập tin cấu hình này\n" +" -o=? Đặt một tùy chọn cấu hình tùy ý, v.d. -o dir::cache=/tmp\n" +"Để tìm thông tin thêm, xem hai trang hướng dẫn\n" +" apt-cache(8) và apt.conf(5).\n" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "bổ sung" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Hãy cung cấp tên cho Đĩa này, kiểu như là: “Debian 5.0.3 Đĩa 1”" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Không hỗ trợ kiểu tập tin chỉ mục “%s”" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Hãy đưa đĩa vào ổ rồi bấm nút Enter" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Regex compilation error - %s" -msgstr "Lỗi biên dịch biểu thức chính quy - %s" - -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Bộ nhớ tạm có hệ thống điều khiển phiên bản không tương thích" +msgid "Failed to mount '%s' to '%s'" +msgstr "Gặp lỗi khi gắn “%s” vào “%s”" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Có lỗi phát sinh khi xử lý %s (%s%d)" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" +"Không tìm thấy CD-ROM bằng cách tự động dò tìm hay sử dụng điểm gắn mặc " +"định.\n" +"Bạn có lẽ nên dùng tùy chọn --cdrom để đặt điểm gắn CD-ROM.\n" +"Xem “man apt-cdrom” để có thêm thông tin về tự động dò tìm CD-ROM và điểm " +"gắn." -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "Ồ, bạn đã vượt quá số tên gói mà trình APT này có thể quản lý." +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Hãy lặp lại tiến trình này cho các Đĩa còn lại trong bộ đĩa của bạn." -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "Ồ, bạn đã vượt quá số phiên bản mà trình APT này có thể quản lý." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Các đối số không thành cặp" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "Ồ, bạn đã vượt quá số mô tả mà trình APT này có thể quản lý." +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"Cách dùng: apt-config [tùy_chọn...] lệnh\n" +"\n" +"(config: viết tắt cho từ configuration: cấu hình)\n" +"\n" +"apt-config là một công cụ đơn giản để đọc tập tin cấu hình APT.\n" +"\n" +"Lệnh:\n" +" shell - Chế độ hệ vỏ\n" +" dump - Hiển thị cấu hình\n" +"\n" +"Tùy chọn:\n" +" -h Trợ giúp này\n" +" -c=? Đọc tập tin cấu hình này\n" +" -o=? Đặt một tùy chọn cấu hình tùy ý, ví dụ -o dir::cache=/tmp\n" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "Ồ, bạn đã vượt quá số cách phụ thuộc mà trình APT này có thể quản lý." +#: cmdline/apt-get.cc:245 +#, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Không tìm thấy gói cho kiến trúc “%s”" -#: apt-pkg/pkgcachegen.cc:576 +#: cmdline/apt-get.cc:327 #, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "Không tìm thấy gói %s %s khi xử lý quan hệ phụ thuộc của tập tin" +msgid "Can not find a package '%s' with version '%s'" +msgstr "Không tìm thấy gói “%s” với phiên bản “%s”" -#: apt-pkg/pkgcachegen.cc:1211 +#: cmdline/apt-get.cc:330 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Không thể lấy các thông tin về danh sách gói nguồn %s" +msgid "Can not find a package '%s' with release '%s'" +msgstr "Không tìm thấy gói “%s” với số phát hành “%s”" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Đang đọc các danh sách gói" +#: cmdline/apt-get.cc:367 +#, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Đang chọn “%s” làm gói nguồn, thay thế cho “%s”\n" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Đang tập hợp các Nhà cung cấp Tập tin" +#: cmdline/apt-get.cc:423 +#, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Không tìm thấy phiên bản “%s” của gói “%s”" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Unable to write to %s" -msgstr "Không thể ghi vào %s" +msgid "Couldn't find package %s" +msgstr "Không tìm thấy gói %s" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Lỗi nhập/xuất khi lưu bộ nhớ tạm nguồn" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s được đặt thành “được cài đặt bằng tay”.\n" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "Gửi kịch bản đến bộ phân giải" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s được đặt thành “được tự động cài đặt”.\n" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "Gửi yêu cầu đến bộ phân giải" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" +"Lệnh này đã lỗi thời. Xin hãy dùng lệnh “apt-mark auto” và “apt-mark manual” " +"để thay thế." -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "Chuẩn bị để lấy cách giải quyết" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Lỗi nội bộ: bộ tháo gỡ vấn đề đã ngắt gì" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "Bộ phân giải bên ngoài gặp lỗi mà không trả về thông tin lỗi thích hợp" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Không thể khoá thư mục tải về" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "Thi hành bộ phân giải từ bên ngoài" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Phải chỉ định ít nhất một gói để mà lấy mã nguồn về cho nó" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "gặp lỗi khi đổi tên, %s (%s → %s)." +msgid "Unable to find a source package for %s" +msgstr "Không tìm thấy gói nguồn cho %s" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Mã băm tổng kiểm tra không khớp" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Kích cỡ không khớp nhau" - -#: apt-pkg/acquire-item.cc:173 -msgid "Invalid file format" -msgstr "Định dạng tập tập tin không hợp lệ" - -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:786 #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"Không tìm thấy mục cần thiết “%s” trong tập tin Phát hành (Sai mục trong " -"sources.list hoặc tập tin bị hỏng)" - -#: apt-pkg/acquire-item.cc:1589 -#, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Không thể tìm thấy mã băm tổng kiểm tra cho tập tin Phát hành %s" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Không có khóa công sẵn sàng cho những mã số khoá theo đây:\n" +"GHI CHÚ: việc đóng gói “%s” được bảo trì trong hệ thống quản lý mã nguồn " +"“%s” tại:\n" +"%s\n" -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:791 #, c-format msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -"Tập tin phát hành %s đã hết hạn (không hợp lệ kể từ %s). Cập nhật cho kho " -"này sẽ không được áp dụng." - -#: apt-pkg/acquire-item.cc:1691 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Bản phát hành xung đột: %s (cần %s nhưng lại nhận được %s)" +"Hãy dùng lệnh:\n" +"bzr branch %s\n" +"để lấy các gói mới nhất (có thể là chưa phát hành).\n" -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:843 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Gặp lỗi trong khi thẩm tra chữ ký.\n" -"Kho lưu chưa được cập nhật nên dùng những tập tin chỉ mục trước.\n" -"Lỗi GPG: %s: %s\n" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Đang bỏ qua tập tin đã được tải về “%s”\n" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "GPG error: %s: %s" -msgstr "Lỗi GPG: %s: %s" +msgid "Couldn't determine free space in %s" +msgstr "Không thể tìm được chỗ trống trong %s" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:882 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"Không tìm thấy tập tin liên quan đến gói %s. Có lẽ bạn cần phải tự sửa gói " -"này, do thiếu kiến trúc." +msgid "You don't have enough free space in %s" +msgstr "Không đủ chỗ trống trên %s" -#: apt-pkg/acquire-item.cc:1925 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "Không tìm thấy nguồn cho việc tải về phiên bản “%s” of “%s”" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Cần phải lấy %sB/%sB kho nguồn.\n" -#: apt-pkg/acquire-item.cc:1983 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Các tập tin chỉ mục của gói này bị hỏng. Không có trường Filename: (Tên tập " -"tin:) cho gói %s." +msgid "Need to get %sB of source archives.\n" +msgstr "Cần phải lấy %sB từ kho nguồn.\n" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Khối nhà bán %s không chứa vân tay" +msgid "Fetch source %s\n" +msgstr "Lấy mã nguồn %s\n" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, c-format -msgid "List directory %spartial is missing." -msgstr "Thiếu thư mục danh sách %spartial." +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "Gặp lỗi khi lấy một số kho." -#: apt-pkg/acquire.cc:91 -#, c-format -msgid "Archives directory %spartial is missing." -msgstr "Thiếu thư mục kho lưu %spartial." +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "Hoàn tất việc tải về và trong chế độ chỉ tải về" -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Unable to lock directory %s" -msgstr "Không thể khoá thư mục %s" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Đang bỏ qua giải nén nguồn đã giải nén trong %s\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Đang tải tập tin thứ %li trong tổng số %li (còn lại %s)" +msgid "Unpack command '%s' failed.\n" +msgstr "Lệnh giải nén “%s” bị lỗi.\n" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Đang tải tập tin %li trong tổng số %li" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Hãy kiểm tra xem gói “dpkg-dev” đã được cài đặt chưa.\n" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Gặp lỗi khi lấy về %s %s\n" +msgid "Build command '%s' failed.\n" +msgstr "Lệnh biên dịch “%s” bị lỗi.\n" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Một số tập tin chỉ mục không tải về được. Chúng đã bị bỏ qua, hoặc cái cũ đã " -"được dùng thay thế." +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "Tiến trình con bị lỗi" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" msgstr "" -"Bạn phải để một số địa chỉ URI “nguồn” vào “sources.list” (danh sách nguồn)" +"Phải chỉ ra ít nhất một gói cần kiểm tra các phần phụ thuộc cần khi biên dịch" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -"Giá trị “%s” không hợp lệ cho APT::Default-Release như vậy bản phát hành " -"không sẵn có trong mã nguồn" +"Không có thông tin kiến trúc sẵn sàng cho %s. Xem apt.conf(5) APT::" +"Architectures để cài đặt" -#: apt-pkg/policy.cc:422 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "" -"Gặp mục ghi sai trong tập tin tùy thích %s: không có dòng đầu Package (Gói)." +msgid "Unable to get build-dependency information for %s" +msgstr "Không thể lấy thông tin về các phần phụ thuộc khi biên dịch cho %s" -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "Did not understand pin type %s" -msgstr "Không hiểu kiểu ghim %s" +msgid "%s has no build depends.\n" +msgstr "%s không phụ thuộc vào gì khi biên dịch.\n" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Chưa ghi rõ ưu tiên (hay số không) cho ghim" +#: cmdline/apt-get.cc:1272 +#, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"Phần phụ thuộc %s cho %s không ổn thỏa bởi vì %s không được cho phép trên " +"gói “%s”" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1290 #, c-format msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -"Không thể thực hiện ngay lập tức tiến trình cấu hình “%s”. Xem “man 5 apt." -"conf ” dưới “APT::Immediate-Configure” để tìm chi tiết. (%d)" +"Phần phụ thuộc %s cho %s không thể được thỏa mãn vì không tìm thấy gói %s" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Could not configure '%s'. " -msgstr "Không thể cấu hình “%s”. " +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"Việc cố thỏa mãn quan hệ phụ thuộc %s cho %s bị lỗi vì gói đã cài đặt %s là " +"quá mới" -#: apt-pkg/packagemanager.cc:583 +#: cmdline/apt-get.cc:1352 #, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" -"Việc chạy tiến trình cài đặt này sẽ cần thiết gỡ bỏ tạm gói chủ yếu %s, do " -"vòng lặp Xung đột/Phụ thuộc trước. Trường hợp này thường xấu, nhưng mà nếu " -"bạn thật sự muốn tiếp tục, có thể hoạt hóa tuy chọn “APT::Force-" -"LoopBreak” (buộc ngắt vòng lặp)." +"phần phụ thuộc %s cho %s không thể được thỏa mãn phiên bản ứng cử của gói %s " +"có thể thỏa mãn điều kiện phiên bản" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-get.cc:1358 #, c-format -msgid "Line %u too long in source list %s." -msgstr "Dòng %u quá dài trong danh sách nguồn %s." - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Đang bỏ gắn CD-ROM...\n" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"phần phụ thuộc %s cho %s không thể được thỏa mãn bởi vì gói %s không có bản " +"ứng cử" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Đang dùng điểm gắn đĩa CD-ROM %s\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Đang đợi đĩa...\n" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Việc cố thỏa cách phụ thuộc %s cho %s bị lỗi: %s." -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Đang gắn đĩa CD-ROM...\n" +#: cmdline/apt-get.cc:1396 +#, c-format +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Không thể thỏa mãn quan hệ phụ thuộc khi biên dịch cho %s." -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Đang nhận diện... " +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "Gặp lỗi khi xử lý các quan hệ phụ thuộc khi biên dịch" -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 #, c-format -msgid "Stored label: %s\n" -msgstr "Nhãn đã lưu: %s\n" +msgid "Changelog for %s (%s)" +msgstr "Changelog cho %s (%s)" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Đang quét đĩa tìm tập tin chỉ mục...\n" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "Hỗ trợ các mô-đun:" -#: apt-pkg/cdrom.cc:734 -#, c-format +#: cmdline/apt-get.cc:1633 msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" -"Tìm thấy %zu chỉ mục gói, %zu chỉ mục nguồn, %zu chỉ mục dịch và %zu chữ ký\n" - -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"Không tìm thấy tập tin gói nào, có thể vì đây không phải là một Đĩa Debian, " -"hoặc có kiến trúc không đúng?" - -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Tìm thấy nhãn “%s”\n" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Nó không phải là một tên hợp lệ: hãy thử lại.\n" - -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" msgstr "" -"Tên đĩa này:\n" -"“%s”\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Đang sao chép các danh sách gói..." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Đang ghi danh sách nguồn mới\n" +"Cách dùng: apt-get [tùy_chọn...] lệnh\n" +" apt-get [tùy_chọn...] install|remove gói1 [gói2 ...]\n" +" apt-get [tùy_chọn...] source gói1 [gói2 ...]\n" +"\n" +"get: lấy\n" +"install: cài đặt\n" +"remove: gỡ bỏ\n" +"source: nguồn\n" +"\n" +"apt-get là một giao diện dòng lệnh đơn giản dùng để tải về và cài đặt gói " +"phần mềm.\n" +"Những lệnh được dùng thường nhất là update (cập nhật) và install (cài đặt).\n" +"\n" +"Lệnh:\n" +" update - Lấy danh sách gói mới (cập nhật cơ sở dữ liệu)\n" +" upgrade - Nâng cấp lên phiên bản mới hơn\n" +" install - Cài đặt gói mới (gói có dạng libc6 không phải libc6.deb)\n" +" remove - Gỡ bỏ gói phần mềm\n" +" autoremove - Tự động gỡ bỏ tất cả các gói không dùng\n" +" purge - Gỡ bỏ và tẩy xóa gói\n" +" source - Tải về kho nguồn\n" +" build-dep - Cấu hình quan hệ phụ thuộc khi biên dịch, cho gói nguồn\n" +" dist-upgrade - Nâng cấp hệ điều hành lên phiên bản mới hơn, hãy xem apt-" +"get(8)\n" +" dselect-upgrade - Cho phép chọn dselect\n" +" clean - Xóa các tập tin kho đã tải về (dọn dẹp thư mục lưu trữ)\n" +" autoclean - Xóa các tập tin kho cũ đã tải về (tự động làm sạch)\n" +" check - Kiểm tra xem có quan hệ phụ thuộc bị sai không\n" +" changelog - Tải về và hiển thị các thay đổi cho gói đã cho\n" +" download - Tải về gói phần mềm vào thư mục hiện hành\n" +"\n" +"Tùy chọn:\n" +" -h Trợ giúp này.\n" +" -q Dữ liệu xuất có thể ghi nhật ký - không hiển thị tiến triển công việc\n" +" -qq Không xuất thông tin nào, trừ lỗi\n" +" -d Chỉ tải về, KHÔNG cài đặt hay giải nén kho\n" +" -s Không làm gì cả. Chỉ mô phỏng\n" +" -y Trả lời Có (yes) mọi khi gặp câu hỏi\n" +" -f Thử sửa chữa một hệ thống có quan hệ phụ thuộc bị sai hỏng\n" +" -m Thử tiếp tục lại nếu không thể xác định vị trí từ kho\n" +" -u Hiển thị danh sách các gói đã nâng cấp\n" +" -b Biên dịch gói nguồn sau khi lấy nó về\n" +" -V Hiển thị số thứ tự phiên bản dạng chi tiết\n" +" -c=? Đọc tập tin cấu hình này\n" +" -o=? Đặt tùy chọn cấu hình tùy ý, v.d. -o dir::cache=/tmp\n" +"Để có thêm thông tin và tùy chọn thì hãy xem trang hướng dẫn\n" +" apt-get(8), sources.list(5) và apt.conf(5).\n" +" Trình APT này có năng lực của siêu bò.\n" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Các mục tin danh sách nguồn cho đĩa này:\n" +#: cmdline/apt-helper.cc:35 +msgid "Must specify at least one pair url/filename" +msgstr "Phải chỉ định ít nhất một cặp url/tên-tập-tin" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "Cần phải cài đặt lại gói %s, nhưng mà không thể tìm kho cho nó." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "Gặp lỗi khi tải về" -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-helper.cc:66 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"Lỗi: “pkgProblemResolver::Resolve” (bộ tháo gỡ vấn đề gọi::tháo gỡ) đã tạo " -"ra nhiều chỗ ngắt, có lẽ một số gói đã giữ lại đã gây ra trường hợp này." - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Không thể sửa trục trặc này, bạn đã giữ lại một số gói bị hỏng." - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Đang xây dựng cây quan hệ phụ thuộc" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Phiên bản ứng cử" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Tạo ra quan hệ phụ thuộc" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Đang đọc thông tin về tình trạng" - -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Lỗi mở tập tin tình trạng StateFile %s" - -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Gặp lỗi khi ghi tập tin tình trạng StateFile tạm thời %s" - -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Không thể phân tích tập tin gói %s (1)" +"Cách dùng: apt-helper [các-tùy-chọn] lệnh\n" +" apt-helper [các-tùy-chọn] download-file uri đường-dẫn-đích\n" +"\n" +"apt-helper là phần trợ giúp dành cho apt\n" +"\n" +"Các lệnh:\n" +" download-file - tải về uri đã cho về đường-dẫn-đích\n" +"\n" +" Lệnh trợ giúp APT này có Sức Mạnh của Siêu “Meep”.\n" -#: apt-pkg/tagfile.cc:237 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Không thể phân tích tập tin gói %s (2)" +msgid "%s can not be marked as it is not installed.\n" +msgstr "không thể đánh dấu %s như là nó chưa được cài đặt.\n" -#: apt-pkg/cacheset.cc:489 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Không tìm thấy bản phát hành “%s” cho “%s”" +msgid "%s was already set to manually installed.\n" +msgstr "%s được đặt thành được cài đặt bằng tay.\n" -#: apt-pkg/cacheset.cc:492 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Không tìm thấy phiên bản “%s” cho “%s”" +msgid "%s was already set to automatically installed.\n" +msgstr "%s đã sẵn được đặt thành cài đặt tự động rồi.\n" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Unable to locate package %s" -msgstr "Không thể định vị gói %s" +msgid "%s was already set on hold.\n" +msgstr "%s đã sẵn được đặt là giữ lại.\n" -#: apt-pkg/cacheset.cc:603 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Couldn't find task '%s'" -msgstr "Không tìm thấy tác vụ “%s”" +msgid "%s was already not hold.\n" +msgstr "%s đã sẵn được đặt là không giữ lại.\n" -#: apt-pkg/cacheset.cc:609 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Không tìm thấy gói nào theo biểu thức chính quy “%s”" +msgid "Waited for %s but it wasn't there" +msgstr "Cần %s nhưng mà không thấy nó ở đây" -#: apt-pkg/cacheset.cc:615 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Không tìm thấy gói nào theo đường dẫn “%s”" +msgid "%s set on hold.\n" +msgstr "%s được đặt là giữ lại.\n" -#: apt-pkg/cacheset.cc:626 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "Không thể chọn phiên bản trong gói “%s” vì nó chỉ là ảo" +msgid "Canceled hold on %s.\n" +msgstr "Hủy bỏ nắm giữ %s.\n" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -"Không thể chọn phiên bản được cài đặt hoặc phiên bản ứng cử trong gói “%s” " -"mà không có trong nó" - -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "Không thể chọn phiên bản mới nhất trong gói “%s” vì nó chỉ là ảo" +"Thực thi lệnh “dpkg” gặp lỗi. Bạn có cần quyền siêu người dùng để thực thi " +"lệnh này" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "Không thể chọn phiên bản ứng cử trong gói %s vì nó không có ứng cử" +#: cmdline/apt-mark.cc:392 +msgid "" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." +msgstr "" +"Cách dùng: apt-mark [tùy-chọn...] {auto|manual} gói1 [gói2 ...]\n" +"\n" +"apt-mark là câu lệnh đơn giản được dùng để đánh dấu các gói là\n" +"được cài đặt tự động hay bằng tay. Nó còn có thể liệt kê danh sách các đánh " +"dấu.\n" +"\n" +"Lệnh:\n" +" auto - Đánh dấu các gói đưa ra là được cài đặt tự động\n" +" manual - Đánh dấu các gói đưa ra là được cài đặt bằng tay\n" +" hold - Đánh dấu một gói là giữ lại\n" +" unhold - Bỏ đánh dấu một gói là giữ lại\n" +" showauto - In ra danh sách các gói được tự động cài đặt\n" +" showmanual - In ra danh sách các gói được cài đặt bằng tay\n" +" showhold - In ra danh sách các gói được giữ lại\n" +"\n" +"Tùy chọn:\n" +" -h Trợ giúp này.\n" +" -q Dữ liệu xuất có thể ghi nhật ký - không hiển thị diễn biến công việc\n" +" -qq Không xuất thông tin nào, trừ lỗi\n" +" -s Không làm gì chỉ in những cái sẽ làm.\n" +" -f đánh dấu đọc/ghi tự-động/thủ-công trong tập tin đã cho.\n" +" -c=? Đọc tập tin cấu hình này\n" +" -o=? Đặt một tùy chọn cấu hình tùy ý, v.d. -o dir::cache=/tmp\n" +"Để tìm thông tin thêm, xem hai trang man (hướng dẫn)\n" +" apt-mark(8) và apt.conf(5)" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" msgstr "" -"Không thể chọn phiên bản được cài đặt trong gói %s vì nó không phải được cài " -"đặt" +"Cách dùng: apt [các tùy chọn] lệnh\n" +"\n" +"CLI (giao diện dòng lệnh) dành cho apt.\n" +"Các lệnh cơ bản:\n" +" list - liệt kê các gói dựa trên cơ sở là tên gói\n" +" search - tìm trong phần mô tả của gói\n" +" show - hiển thị thông tin chi tiết về gói\n" +"\n" +" update - cập nhật danh sánh các gói sẵn có\n" +"\n" +" install - cài đặt các gói\n" +" remove - gỡ bỏ các gói\n" +"\n" +" upgrade - nâng cấp các gói trong hệ thống\n" +" full-upgrade - nâng cấp hệ thống bằng cách gỡ bỏ, cài đặt, nâng cấp các " +"gói\n" +"\n" +" edit-sources - sửa tập tin thông tin gói nguồn\n" -#: apt-pkg/indexrecords.cc:78 +#: methods/cdrom.cc:203 #, c-format -msgid "Unable to parse Release file %s" -msgstr "Không thể phân tích cú pháp của tập tin Phát hành %s" +msgid "Unable to read the cdrom database %s" +msgstr "Không thể đọc cơ sở dữ liệu đĩa CD-ROM %s" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "Không có phần nào trong tập tin Phát hành %s" +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" +msgstr "" +"Hãy sử dụng lệnh “apt-cdrom” để làm cho APT chấp nhận đĩa CD này. Không thể " +"sử dụng lệnh “apt-get update” (cập nhật cơ sở dữ liệu) để thêm đĩa CD mới." -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Không có mục Hash (chuỗi duy nhất) nào trong tập tin Phát hành %s" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD-ROM sai" -#: apt-pkg/indexrecords.cc:130 +#: methods/cdrom.cc:249 #, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "" -"Gặp mục tin “Valid-Until” (hợp lệ đến khi) không hợp lệ trong tập tin Phát " -"hành %s" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "Không thể bỏ gắn đĩa CD-ROM trong %s. Có lẽ nó vẫn đang được dùng." -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "" -"Gặp mục tin “Date” (ngày tháng) không hợp lệ trong tập tin Phát hành %s" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Không tìm thấy đĩa." -#: apt-pkg/sourcelist.cc:127 -#, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Gặp đoạn sai dạng %u trong danh sách nguồn %s (ngữ pháp URI)" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Không tìm thấy tập tin" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "" -"Gặp dòng có sai dạng %lu trong danh sách nguồn %s ([tùy chọn] không thể phân " -"tích được)" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Gặp lỗi khi lấy thống kê" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Gặp dòng sai dạng %lu trong danh sách nguồn %s ([tùy chọn] quá ngắn)" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Gặp lỗi khi đặt giờ sửa đổi" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "" -"Gặp dòng sai dạng %lu trong danh sách nguồn %s ([%s] không phải là một phép " -"gán)" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Địa chỉ URI không hợp lệ, URI nội bộ không thể bắt đầu bằng “//”" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "" -"Gặp dòng sai dạng %lu trong danh sách nguồn %s ([%s] không có khoá nào)" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Đang đăng nhập vào" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Gặp dòng sai dạng %lu trong danh sách nguồn %s (khoá [%s] %s không có giá " -"trị)" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Không thể quyết định tên ngang hàng" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Gặp dòng sai dạng %lu trong danh sách nguồn %s (địa chỉ URI)" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Không thể phân giải tên cục bộ" -#: apt-pkg/sourcelist.cc:208 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Gặp dòng sai dạng %lu trong danh sách nguồn %s (bản phân phối)" +msgid "The server refused the connection and said: %s" +msgstr "Máy phục vụ đã từ chối kết nối, và đã nói: %s" -#: apt-pkg/sourcelist.cc:211 +#: methods/ftp.cc:225 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Gặp dòng sai dạng %lu trong danh sách nguồn %s (ngữ pháp URI)" +msgid "USER failed, server said: %s" +msgstr "Lệnh USER (người dùng) đã thất bại: máy chủ nói: %s" -#: apt-pkg/sourcelist.cc:217 +#: methods/ftp.cc:232 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "" -"Gặp dòng sai dạng %lu trong danh sách nguồn %s (bản phân phối tuyệt đối)" +msgid "PASS failed, server said: %s" +msgstr "Lệnh PASS (mật khẩu) đã thất bại: máy chủ nói: %s" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -"Gặp dòng sai dạng %lu trong danh sách nguồn %s (phân tách bản phân phối)" - -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Đang mở %s" +"Đã ghi rõ máy phục vụ ủy nhiệm, nhưng mà chưa ghi rõ tập lệnh đăng nhập. " +"“Acquire::ftp::ProxyLogin” là rỗng." -#: apt-pkg/sourcelist.cc:371 +#: methods/ftp.cc:280 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Gặp dòng sai dạng %u trong danh sách nguồn %s (kiểu)." +msgid "Login script command '%s' failed, server said: %s" +msgstr "Văn lệnh đăng nhập “%s” đã thất bại: máy chủ nói: %s" -#: apt-pkg/sourcelist.cc:375 +#: methods/ftp.cc:306 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Không biết kiểu “%s” trên dòng %u trong danh sách nguồn %s." +msgid "TYPE failed, server said: %s" +msgstr "Lệnh TYPE (kiểu) đã thất bại: máy chủ nói: %s" -#: apt-pkg/sourcelist.cc:416 -#, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Không hiểu kiểu “%s” trên đoạn %u trong danh sách nguồn %s" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Thời hạn kết nối" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "Đang cài đặt %s" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Máy phục vụ đã đóng kết nối" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Đang cấu hình %s" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "Lỗi đọc" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Đang gỡ bỏ %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Một trả lời đã tràn bộ đệm." -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "Đang gỡ bỏ hoàn toàn %s" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Giao thức bị hỏng" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "Đang ghi chép sự biến mất của %s" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "Lỗi ghi" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Đang chạy bẫy sau-cài-đặt %s" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Không thể tạo ổ cắm" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Không thể kết nối ổ cắm dữ liệu, kết nối đã quá giờ" + +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Gặp lỗi" + +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Không thể kết nối ổ cắm bị động." + +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo (lấy thông tin địa chỉ) không thể lấy ổ cắm lắng nghe" + +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Không thể ràng buộc ổ cắm" + +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Không thể lắng nghe trên ổ cắm đó" + +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Không thể quyết định tên ổ cắm đó" + +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Không thể gửi lệnh PORT (cổng)" + +#: methods/ftp.cc:802 #, c-format -msgid "Directory '%s' missing" -msgstr "Thiếu thư mục “%s”" +msgid "Unknown address family %u (AF_*)" +msgstr "Không biết họ địa chỉ %u (AF_*)" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#: methods/ftp.cc:811 #, c-format -msgid "Could not open file '%s'" -msgstr "Không thể mở tập tin “%s”" +msgid "EPRT failed, server said: %s" +msgstr "Lệnh EPRT (thông báo lỗi) đã thất bại: máy chủ nói: %s" -#: apt-pkg/deb/dpkgpm.cc:989 +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Quá giờ kết nối ổ cắm dữ liệu" + +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Không thể chấp nhận kết nối" + +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Gặp vấn đề băm tập tin" + +#: methods/ftp.cc:890 #, c-format -msgid "Preparing %s" -msgstr "Đang chuẩn bị %s" +msgid "Unable to fetch file, server said '%s'" +msgstr "Không thể lấy tập tin: máy phục vụ nói “%s”" -#: apt-pkg/deb/dpkgpm.cc:990 +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Ổ cắm dữ liệu đã quá giờ" + +#: methods/ftp.cc:935 #, c-format -msgid "Unpacking %s" -msgstr "Đang mở gói %s" +msgid "Data transfer failed, server said '%s'" +msgstr "Việc truyền dữ liệu bị lỗi: máy phục vụ nói “%s”" -#: apt-pkg/deb/dpkgpm.cc:995 +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Truy vấn" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Không thể gọi " + +#: methods/connect.cc:76 #, c-format -msgid "Preparing to configure %s" -msgstr "Đang chuẩn bị cấu hình %s" +msgid "Connecting to %s (%s)" +msgstr "Đang kết nối đến %s (%s)" -#: apt-pkg/deb/dpkgpm.cc:997 +#: methods/connect.cc:87 #, c-format -msgid "Installed %s" -msgstr "Đã cài đặt %s" +msgid "[IP: %s %s]" +msgstr "[Địa chỉ IP: %s %s]" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: methods/connect.cc:94 #, c-format -msgid "Preparing for removal of %s" -msgstr "Đang chuẩn bị gỡ bỏ %s" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Không thể tạo ổ cắm cho %s (f=%u t=%u p=%u)" -#: apt-pkg/deb/dpkgpm.cc:1004 +#: methods/connect.cc:100 #, c-format -msgid "Removed %s" -msgstr "Đã gỡ bỏ %s" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Không thể khởi tạo kết nối đến %s:%s (%s)." -#: apt-pkg/deb/dpkgpm.cc:1009 +#: methods/connect.cc:108 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Đang chuẩn bị gỡ bỏ hoàn toàn %s" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Không thể kết nối đến %s:%s (%s), kết nối bị quá giờ" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: methods/connect.cc:126 #, c-format -msgid "Completely removed %s" -msgstr "Gỡ bỏ hoàn toàn %s" +msgid "Could not connect to %s:%s (%s)." +msgstr "Không thể kết nối đến %s:%s (%s)." -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "ioctl(TIOCGWINSZ) gặp lỗi" +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 +#, c-format +msgid "Connecting to %s" +msgstr "Đang kết nối đến %s" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Can not write log (%s)" -msgstr "Không thể ghi nhật ký (%s)" +msgid "Could not resolve '%s'" +msgstr "Không thể phân giải “%s”" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "/dev/pts đã gắn chưa?" +#: methods/connect.cc:205 +#, c-format +msgid "Temporary failure resolving '%s'" +msgstr "Việc phân giải “%s” bị lỗi tạm thời" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "Đầu ra là thiết bị cuối?" +#: methods/connect.cc:209 +#, c-format +msgid "System error resolving '%s:%s'" +msgstr "Lỗi hệ thống khi phân giải “%s:%s”" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/connect.cc:211 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Cần %s nhưng mà không thấy nó ở đây" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Một số hư hỏng đã xảy ra khi phân giải “%s:%s” (%i - %s)" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "Hệ điều hành đã ngắt trước khi nó kịp hoàn thành" +#: methods/connect.cc:258 +#, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Không thể kết nối đến %s: %s:" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" -"Không ghi báo cáo apport, vì đã chạm giới hạn số các báo cáo (MaxReports)" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "Lỗi nội bộ: Chữ ký đúng, nhưng không thể xác định vân tay của khóa?!" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "gặp vấn đề về quan hệ phụ thuộc nên để lại không cấu hình" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Gặp ít nhất một chữ ký không hợp lệ." -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"Không ghi báo cáo apport, vì thông điệp lỗi chỉ thị đây là một lỗi kế tiếp " -"do một sự thất bại trước đó." +"Không thể thực hiện “gpgv” để thẩm tra chữ ký (gpgv đã được cài đặt chưa?)" -#: apt-pkg/deb/dpkgpm.cc:1644 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 +#, c-format msgid "" -"No apport report written because the error message indicates a disk full " -"error" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -"Không ghi báo cáo apport, vì thông điệp lỗi chỉ thị đây là một lỗi “đĩa đầy”" +"Tập tin Clearsigned không hợp lệ, nhận được “%s” (mạng yêu cầu xác nhận phải " +"không?)" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" -"Không ghi báo cáo apport, vì thông điệp lỗi chỉ thị đây là một lỗi “không đủ " -"bộ nhớ”" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Gặp lỗi không rõ khi thực hiện gpgv" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" -"Không ghi báo cáo apport, vì thông điệp lỗi chỉ thị đây là một lỗi trên hệ " -"thống nội bộ" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Những chữ ký theo đây không hợp lệ:\n" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: methods/gpgv.cc:231 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -"Không ghi báo cáo apport, vì thông điệp lỗi chỉ thị đây là một lỗi “V/R dpkg”" +"Không thể kiểm chứng những chữ ký theo đây, vì khóa công không sẵn có:\n" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"Không thể khoá thư mục quản trị (%s), có một tiến trình khác đang sử dụng nó " -"phải không?" - -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Không thể khoá thư mục quản trị (%s), bạn có quyền root không?" - -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" -"dpkg bị ngắt giữa chừng, bạn cần phải chạy “%s” một cách thủ công để giải " -"vấn đề này. " - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Chưa được khoá" - -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%li ngày %li giờ %li phút %li giây" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Các tập tin trống rỗng không phải là kho lưu hợp lệ" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 -#, c-format -msgid "%lih %limin %lis" -msgstr "%li giờ %li phút %li giây" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Gặp lỗi khi ghi vào tập tin" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "%li phút %li giây" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "Gặp lỗi khi đọc từ máy phục vụ: Máy chủ đã đóng kết nối" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%li giây" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Gặp lỗi khi đọc từ máy phục vụ" -#: apt-pkg/contrib/strutl.cc:1243 -#, c-format -msgid "Selection %s not found" -msgstr "Không tìm thấy vùng chọn %s" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Gặp lỗi khi ghi vào tập tin" -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Không dùng khả năng khóa cho tập tin khóa chỉ đọc %s" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Việc chọn bị lỗi" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Không thể mở tập tin khóa %s" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Kết nối đã quá giờ" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Không dùng khả năng khóa cho tập tin khóa đã lắp kiểu NFS %s" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Gặp lỗi khi ghi vào tập tin đầu ra" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Không thể lấy khóa %s" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Đang đợi phần đầu dữ liệu..." -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" -"Liệt kê các tập tin không thể được tạo ra vì “%s” không phải là một thư mục" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Dòng đầu sai" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "Bỏ qua “%s” trong thư mục “%s'vì nó không phải là tập tin bình thường" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "Máy phục vụ HTTP đã gửi một dòng đầu trả lời không hợp lệ" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" msgstr "" -"Bỏ qua tập tin “%s” trong thư mục “%s” vì nó không có phần đuôi mở rộng" +"Máy phục vụ HTTP đã gửi một dòng đầu Content-Length (độ dài nội dung) không " +"hợp lệ" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format -msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" msgstr "" -"Bỏ qua tập tin “%s” trong thư mục “%s” vì nó có phần đuôi mở rộng không hợp " -"lệ" - -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Tiến trình con %s đã nhận một lỗi phân đoạn." +"Máy phục vụ HTTP đã gửi một dòng đầu Content-Range (phạm vi nội dung) không " +"hợp lệ" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "Tiến trình con %s đã nhận tín hiệu %u." +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Máy phục vụ HTTP không hỗ trợ tải một phần tập tin" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Tiến trình con %s đã trả về một mã lỗi (%u)" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Không rõ định dạng ngày" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Tiến trình con %s đã thoát bất thường" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "Dữ liệu phần đầu sai" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "Lỗi ghi" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "Kết nối bị lỗi" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Gặp vấn đề khi đóng tập tin gzip %s" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "Gặp lỗi nội bộ" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Không thể mở tập tin %s" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "Đang sắp xếp" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "Không thể mở bộ mô tả tập tin %d" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Lỗi nội bộ: InstallPackages (cài đặt gói) được gọi với gói bị hỏng!" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Việc tạo tiến trình con IPC bị lỗi" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "" +"Cần phải gỡ bỏ một số gói, nhưng mà tính năng Gỡ bỏ (Remove) đã bị tắt." -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Gặp lỗi khi thực hiện nén " +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Gặp lỗi nội bộ: Tiến trình Sắp xếp chưa xong" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "Lỗi đọc" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Lạ nhỉ... Kích cỡ không khớp nhau. Hãy gửi thư cho <apt@packages.debian.org>" -#: apt-pkg/contrib/fileutl.cc:1514 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "read, still have %llu to read but none left" -msgstr "đọc, còn cần đọc %llu nhưng mà không có gì còn lại cả" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Cần phải lấy %sB/%sB từ kho chứa.\n" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "ghi, còn cần ghi %llu nhưng mà không thể" +msgid "Need to get %sB of archives.\n" +msgstr "Cần phải lấy %sB từ kho chứa.\n" -#: apt-pkg/contrib/fileutl.cc:1915 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "Problem closing the file %s" -msgstr "Gặp vấn đề khi đóng tập tin %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Sau thao tác này, %sB dung lượng đĩa sẽ bị chiếm dụng.\n" -#: apt-pkg/contrib/fileutl.cc:1927 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Gặp vấn đề khi đổi tên tập tin %s thành %s" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Sau thao tác này, %sB dung lượng đĩa sẽ được giải phóng.\n" -#: apt-pkg/contrib/fileutl.cc:1938 +#: apt-private/private-install.cc:200 #, c-format -msgid "Problem unlinking the file %s" -msgstr "Gặp vấn đề khi bỏ liên kết tập tin %s" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Gặp vấn đề khi đồng bộ hóa tập tin" +msgid "You don't have enough free space in %s." +msgstr "Bạn không có đủ dung lượng đĩa còn trống trong %s." -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Lỗi!" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Có lỗi và đã dùng tùy chọn “-y” mà không có “--force-yes”" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Xong" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "" +"Đã đưa ra “Chỉ không đáng kể” (Trivial Only) nhưng mà thao tác này là đáng " +"kể." -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "..." +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Có, làm đi!" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#: apt-private/private-install.cc:222 #, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... %u%%" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Bạn sắp làm việc mà nó có thể gây hư hại cho hệ thống.\n" +"Nếu vẫn muốn tiếp tục thì hãy gõ cụm từ “%s”\n" +"?] " -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Không thể mmap (ánh xạ bộ nhớ) tập tin rỗng" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Hủy bỏ." -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Không thể nhân đôi bộ mô tả tập tin %i" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Bạn có muốn tiếp tục không?" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Không thể tạo mmap (ánh xạ bộ nhớ) kích cỡ %llu byte" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Một số tập tin không tải về được" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Không thể đóng mmap (ánh xạ bộ nhớ)" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"Không thể lấy một số kho, có lẽ hãy chạy lệnh “apt-get update” (apt lấy cập " +"nhật)\n" +"hay dùng tùy chọn “--fix-missing” (sửa thiếu sót) không?" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Không thể động bộ hoá mmap (ánh xạ bộ nhớ)" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "" +"Chưa hỗ trợ tùy chọn “--fix-missing” (sửa khi thiếu) và trao đổi phương tiện." -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Không thể tạo mmap (ánh xạ bộ nhớ) kích cỡ %lu byte" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Không thể sửa những gói còn thiếu." -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Gặp lỗi khi cắt ngắn tập tin" +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Đang hủy bỏ tiến trình cài đặt." -#: apt-pkg/contrib/mmap.cc:341 -#, c-format +#: apt-private/private-install.cc:366 msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"Những gói theo đây không còn nằm trên hệ thống này vì mọi tập tin đều bị gói " +"khác ghi đè:" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Ghi chú: Thay đổi này được tự động thực hiện bởi dpkg." + +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Không nên xoá gì thì không thể khởi chạy Bộ Gỡ bỏ Tự động" + +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." msgstr "" -"Dynamic MMap (ánh xạ bộ nhớ động) đã vượt quá kích thước tối đa cho phép.\n" -"Hãy tăng kích cỡ của “APT::Cache-Start” (giới hạn vùng nhớ tạm Apt).\n" -"Giá trị hiện thời là: %lu. (man 5 apt.conf)" +"Ừm, có vẻ là Bộ Gỡ bỏ Tự động đã hủy cái gì, một trường hợp thực sự không " +"nên xảy ra. Hãy thông báo lỗi về apt." -#: apt-pkg/contrib/mmap.cc:446 +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "Có lẽ thông tin theo đây sẽ giúp đỡ bạn giải quyết tình trạng này:" + +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Lỗi nội bộ: Bộ Gỡ bỏ Tự động đã làm hỏng một thứ gì đó" + +#: apt-private/private-install.cc:513 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "" +"(Các) gói sau đây đã được tự động cài đặt nên không còn cần yêu cầu lại:" + +#: apt-private/private-install.cc:517 #, c-format +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "%lu gói đã được tự động cài đặt nên không còn cần yêu cầu lại.\n" + +#: apt-private/private-install.cc:519 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Hãy dùng lệnh “apt-get autoremove” để gỡ bỏ chúng." + +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Có lẽ bạn cần chạy lệnh “apt-get -f install” để sửa những cái đó:" + +#: apt-private/private-install.cc:614 msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "Không thể tăng kích cỡ của ánh xạ bộ nhớ, vì đã tới giới hạn %lu byte." +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"Thưa thỏa mãn quan hệ phụ thuộc. Hãy thử chạy lệnh “apt-get -f install” mà " +"không có gói nào (hoặc chỉ định cách thức giải quyết)." -#: apt-pkg/contrib/mmap.cc:449 +#: apt-private/private-install.cc:638 msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." msgstr "" -"Không thể tăng kích cỡ của ánh xạ bộ nhớ, vì chức năng tự động tăng bị người " -"dùng tắt đi." +"Không thể cài đặt một số gói. Điều đó có nghĩa là bạn đã yêu cầu\n" +"một trường hợp không thể, hoặc nếu bạn đang sử dụng bản phân phối\n" +"chưa ổn định cái mà yêu cầu các gói mà nó còn chưa được tạo ra\n" +"hay chưa được chuyển ra khỏi phần Incoming (Đến)." -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Không thể lấy các thông tin cho điểm gắn kết %s" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "Gói bị hỏng" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Việc lấy các thông tin thống kê đĩa CD-ROM bị lỗi" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "Những gói thêm theo đây sẽ được cài đặt:" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Không chấp nhận kiểu viết tắt: “%c”" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "Các gói đề nghị:" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Đang mở tập tin cấu hình %s..." +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "Gói khuyến khích:" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-private/private-install.cc:825 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Gặp lỗi cú pháp %s:%u: Khối bắt đầu không có tên." +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "Đang bỏ qua %s vì nó đã được cài đặt và chưa đặt tùy chọn Nâng cấp.\n" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-private/private-install.cc:829 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Gặp lỗi cú pháp %s:%u: Sai dạng thẻ" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"Đang bỏ qua %s vì nó chưa được cài đặt và chỉ Nâng cấp là được yêu cầu.\n" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-private/private-install.cc:841 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Gặp lỗi cú pháp %s:%u: Có rác sau giá trị" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "Không thể cài đặt lại %s vì không thể tải nó về.\n" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-private/private-install.cc:846 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "Gặp lỗi cú pháp %s:%u: Chỉ có thể thực hiện chỉ thị mức đầu" +msgid "%s is already the newest version.\n" +msgstr "%s là phiên bản mới nhất.\n" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-private/private-install.cc:894 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Gặp lỗi cú pháp %s:%u: Quá nhiều chỉ thị bao gồm lồng nhau" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Đã chọn phiên bản “%s” (%s) cho “%s”\n" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-private/private-install.cc:899 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Gặp lỗi cú pháp %s:%u: Đã được bao gồm từ đây" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Đã chọn phiên bản “%s” (%s) cho “%s” vì “%s”\n" -#: apt-pkg/contrib/configuration.cc:897 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Gặp lỗi cú pháp %s:%u: Chưa hỗ trợ chỉ thị “%s”" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "Chưa cài đặt gói %s nên không thể gỡ bỏ nó. Có phải ý bạn là “%s'?\n" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-private/private-install.cc:947 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "" -"Gặp lỗi cú pháp %s:%u: Chỉ thị “clear” thì yêu cầu một cây tuỳ chọn làm đối " -"số" +msgid "Package '%s' is not installed, so not removed\n" +msgstr "Gói %s chưa được cài đặt, thế nên không thể gỡ bỏ nó\n" -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "Gặp lỗi cú pháp %s:%u: Gặp rác tại kết thúc tập tin" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "Đang liệt kê" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-private/private-list.cc:164 #, c-format -msgid "No keyring installed in %s." -msgstr "Không có vòng khoá nào được cài đặt vào %s." +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "Ở đây có %i phiên bản phụ thêm. Hãy dùng tùy chọn “-a” để xem." -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Không hiểu tùy chọn dòng lệnh “%c” [từ %s]." +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Đang sửa chữa quan hệ phụ thuộc..." -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "Không hiểu tùy chọn dòng lệnh %s" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " gặp lỗi." -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "Tùy chọn dòng lệnh %s không phải dạng lôgíc (đúng/sai)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Không thể sửa phần phụ thuộc" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "Tùy chọn %s yêu cầu một đối số." +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Không thể tối thiểu hóa tập hợp nâng cấp" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Tùy chọn %s: Đặc tả mục cấu hình phải có một “=<giá_trị>”." +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Xong" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Tùy chọn %s yêu cầu một đối số kiểu số nguyên, không phải “%s”" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Bạn có thể chạy lệnh “apt-get -f install” để sửa những lỗi trên." -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Tùy chọn “%s” quá dài" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Chưa thỏa mãn quan hệ phụ thuộc. Hãy thử dùng tùy chọn “-f”." -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Không hiểu %s: hãy thử dùng true (đúng) hoặc false (sai)." +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "không hiểu" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-private/private-output.cc:234 #, c-format -msgid "Invalid operation %s" -msgstr "Thao tác “%s” không hợp lệ" +msgid "[installed,upgradable to: %s]" +msgstr "[đã cài, có thể nâng cấp thành: %s]" -#: cmdline/apt-cache.cc:149 -#, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "Gói %s phiên bản %s có phần phụ thuộc chưa thỏa mãn:\n" +#: apt-private/private-output.cc:238 +msgid "[installed,local]" +msgstr "[đã cài đặt,nội bộ]" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Tổng các tên gói: " +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "[đã cài,có thể tự động gỡ bỏ]" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "Tổng các cấu trúc gói: " +#: apt-private/private-output.cc:243 +msgid "[installed,automatic]" +msgstr "[đã cài đặt,tự động]" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Gói thường: " +#: apt-private/private-output.cc:245 +msgid "[installed]" +msgstr "[đã cài đặt]" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Gói thuần ảo: " +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "[có thể nâng cấp từ: %s]" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " Gói ảo đơn: " +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "[residual-config]" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Gói ảo hỗn hợp: " +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "nhưng mà %s đã được cài đặt" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Thiếu: " +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "nhưng mà %s sẽ được cài đặt" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Tổng phiên bản riêng: " +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "nhưng mà nó không có khả năng cài đặt" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "Tổng mô tả riêng: " +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "nhưng mà nó là gói ảo" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Tổng gói phụ thuộc: " +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "nhưng mà nó không được cài đặt" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "Tổng liên quan phiên bản và tập tin: " +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "nhưng mà nó sẽ không được cài đặt" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "Tổng quan hệ mô-tả/tập-tin: " +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " hay" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "Tổng ánh xạ Cung cấp: " +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Những gói theo đây chưa thỏa mãn quan hệ phụ thuộc:" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Tổng chuỗi mở rộng mẫu tìm kiếm: " +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Những gói MỚI sau sẽ được CÀI ĐẶT:" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "Tổng chỗ phiên bản phụ thuộc: " +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Những gói sau sẽ bị GỠ BỎ:" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Tổng chỗ trống: " +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Những gói sau đây được giữ lại:" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "Tổng chỗ đã tính dành cho: " +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Những gói sau đây sẽ được NÂNG CẤP:" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "Tập tin gói %s không đồng bộ được." +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "Những gói sau đây sẽ bị HẠ CẤP:" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "Không tìm thấy gói" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Những gói giữ lại sau đây sẽ bị THAY ĐỔI:" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Bạn phải đưa ra ít nhất một mẫu tìm kiếm" +#: apt-private/private-output.cc:668 +#, c-format +msgid "%s (due to %s) " +msgstr "%s (bởi vì %s) " -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Lệnh này đã lỗi thời. Xin hãy dùng lệnh “apt-mark showauto” để thay thế." - -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Tập tin gói:" +"CẢNH BÁO: Có những gói chủ yếu sau đây sẽ bị gỡ bỏ.\n" +"ĐỪNG làm như thế trừ khi bạn biết chính xác mình đang làm gì!" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "" -"Bộ nhớ tạm không đồng bộ được nên không thể tham chiếu chéo tập tin gói" +#: apt-private/private-output.cc:707 +#, c-format +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu nâng cấp, %lu được cài đặt mới, " -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Các gói đã ghim:" +#: apt-private/private-output.cc:711 +#, c-format +msgid "%lu reinstalled, " +msgstr "%lu được cài đặt lại, " -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(không tìm thấy)" +#: apt-private/private-output.cc:713 +#, c-format +msgid "%lu downgraded, " +msgstr "%lu bị hạ cấp, " -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Đã cài đặt: " +#: apt-private/private-output.cc:715 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu cần gỡ bỏ, và %lu chưa được nâng cấp.\n" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Ứng cử: " +#: apt-private/private-output.cc:719 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "%lu chưa được cài đặt toàn bộ hay được gỡ bỏ.\n" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(không)" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[C/k]" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Ghim gói: " +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[c/K]" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Bảng phiên bản:" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "C" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "K" + +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s-%s được biên dịch cho %s vào lúc “%s %s”\n" +msgid "Regex compilation error - %s" +msgstr "Lỗi biên dịch biểu thức chính quy - %s" -#: cmdline/apt-cache.cc:1749 -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" -msgstr "" -"Cách dùng: apt-cache [tùy_chọn...] lệnh\n" -" apt-cache [tùy_chọn...] showpkg gói1 [gói2 ...]\n" -" apt-cache [tùy_chọn...] showsrc gói1 [gói2 ...]\n" -"(cache: bộ nhớ tạm\n" -"showpkg: hiển thị gói nhị phân\n" -"showsrc: hiển thị gói nguồn)\n" -"\n" -"apt-cache là một công cụ ở mức thấp dùng để truy vấn\n" -"thông tin từ các tập tin bộ nhớ tạm nhị phân của APT.\n" -"\n" -"Lệnh:\n" -" gencaches - Tạo bộ nhớ tạm cho cả gói lẫn nguồn\n" -" showpkg - Hiện thông tin chung về một gói riêng lẻ\n" -" showsrc - Hiện các bản ghi cho gói nguồn\n" -" stats - Hiện phần thống kê cơ bản\n" -" dump - Hiện toàn bộ tập tin dạng ngắn (đổ)\n" -" dumpavail - In ra một tập tin sẵn dùng ra thiết bị xuất chuẩn\n" -" unmet - Hiện các gói chưa thỏa mãn quan hệ phụ thuộc\n" -" search - Tìm kiếm danh sách các gói dựa trên biểu thức chính quy\n" -" show - Hiển thị bản ghi có thể đọc cho những gói đó\n" -" depends - Hiện thông tin quan hệ phụ thuộc dạng thô cho gói\n" -" rdepends - Hiện thông tin những gói phụ thuộc vào gói này\n" -" pkgnames - Liệt kê danh sách mọi gói trên hệ thống\n" -" dotty - Tạo ra đồ thị gói cho GraphViz (nhiều chấm)\n" -" xvcg - Tạo ra đồ thị gói cho xvcg\n" -" policy - Hiển thị các cài đặt về chính sách\n" -"\n" -"Tùy chọn:\n" -" -h Hiển thị trợ giúp này.\n" -" -p=? Bộ nhớ tạm gói.\n" -" -s=? Bộ nhớ tạm nguồn.\n" -" -q Không hiển thị diễn tiến công việc.\n" -" -i Chỉ hiển thị những phụ thuộc quan trọng cho lệnh unmet.\n" -" -c=? Đọc tập tin cấu hình này\n" -" -o=? Đặt một tùy chọn cấu hình tùy ý, v.d. -o dir::cache=/tmp\n" -"Để tìm thông tin thêm, xem hai trang hướng dẫn\n" -" apt-cache(8) và apt.conf(5).\n" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Lệnh cập nhật không chấp nhận đối số" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Hãy cung cấp tên cho Đĩa này, kiểu như là: “Debian 5.0.3 Đĩa 1”" +#: apt-private/private-update.cc:90 +#, c-format +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +"%i gói có thể được cập nhật. Chạy 'apt list --upgradable' để xem chúng.\n" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Hãy đưa đĩa vào ổ rồi bấm nút Enter" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "Mọi gói đã được cập nhật." -#: cmdline/apt-cdrom.cc:139 +#: apt-private/private-show.cc:156 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Gặp lỗi khi gắn “%s” vào “%s”" +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "Ở đây có %i bản ghi phụ thêm. Hãy dùng tùy chọn “-a” để xem" -#: cmdline/apt-cdrom.cc:178 +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "không là gói thật (ảo)" + +#: apt-private/private-main.cc:32 msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -"Không tìm thấy CD-ROM bằng cách tự động dò tìm hay sử dụng điểm gắn mặc " -"định.\n" -"Bạn có lẽ nên dùng tùy chọn --cdrom để đặt điểm gắn CD-ROM.\n" -"Xem “man apt-cdrom” để có thêm thông tin về tự động dò tìm CD-ROM và điểm " -"gắn." +"CHÚ Ý: đây chỉ là mô phỏng!\n" +" apt-get yêu cầu quyền root để thực hiện thật.\n" +" Cần nhớ rằng chức năng khóa đã bị tắt,\n" +" nên có thể nó không chính xác như khi làm thật!" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Hãy lặp lại tiến trình này cho các Đĩa còn lại trong bộ đĩa của bạn." +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "CẢNH BÁO: Không thể xác thực những gói sau đây!" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Các đối số không thành cặp" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Cảnh báo xác thực bị đè.\n" -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -msgstr "" -"Cách dùng: apt-config [tùy_chọn...] lệnh\n" -"\n" -"(config: viết tắt cho từ configuration: cấu hình)\n" -"\n" -"apt-config là một công cụ đơn giản để đọc tập tin cấu hình APT.\n" -"\n" -"Lệnh:\n" -" shell - Chế độ hệ vỏ\n" -" dump - Hiển thị cấu hình\n" -"\n" -"Tùy chọn:\n" -" -h Trợ giúp này\n" -" -c=? Đọc tập tin cấu hình này\n" -" -o=? Đặt một tùy chọn cấu hình tùy ý, ví dụ -o dir::cache=/tmp\n" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "Một số gói không thể được xác thực" -#: cmdline/apt-get.cc:245 -#, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Không tìm thấy gói cho kiến trúc “%s”" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Cài đặt những gói này mà không cần thẩm tra?" -#: cmdline/apt-get.cc:327 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Không tìm thấy gói “%s” với phiên bản “%s”" +msgid "Failed to fetch %s %s\n" +msgstr "Gặp lỗi khi lấy về %s %s\n" -#: cmdline/apt-get.cc:330 +#: apt-private/private-sources.cc:58 #, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Không tìm thấy gói “%s” với số phát hành “%s”" +msgid "Failed to parse %s. Edit again? " +msgstr "Gặp lỗi khi phân tích %s. Sửa lại chứ? " -#: cmdline/apt-get.cc:367 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Đang chọn “%s” làm gói nguồn, thay thế cho “%s”\n" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "Tập tin “%s” của bạn đã thay đổi, hãy chạy lệnh “apt-get update”." -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Không tìm thấy phiên bản “%s” của gói “%s”" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "Tìm kiếm toàn văn" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "Không tìm thấy gói %s" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Đang tính toán nâng cấp... " -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s được đặt thành “được cài đặt bằng tay”.\n" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Xong" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s được đặt thành “được tự động cài đặt”.\n" - -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" -"Lệnh này đã lỗi thời. Xin hãy dùng lệnh “apt-mark auto” và “apt-mark manual” " -"để thay thế." +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Tìm thấy " -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Lỗi nội bộ: bộ tháo gỡ vấn đề đã ngắt gì" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "Lấy:" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Không thể khoá thư mục tải về" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "Bỏq " -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Phải chỉ định ít nhất một gói để mà lấy mã nguồn về cho nó" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "Lỗi " -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/acqprogress.cc:146 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Không tìm thấy gói nguồn cho %s" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Đã lấy về %sB mất %s (%sB/g).\n" -#: cmdline/apt-get.cc:786 +#: apt-private/acqprogress.cc:236 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" -"GHI CHÚ: việc đóng gói “%s” được bảo trì trong hệ thống quản lý mã nguồn " -"“%s” tại:\n" -"%s\n" +msgid " [Working]" +msgstr " [Đang hoạt động]" -#: cmdline/apt-get.cc:791 +#: apt-private/acqprogress.cc:297 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"Hãy dùng lệnh:\n" -"bzr branch %s\n" -"để lấy các gói mới nhất (có thể là chưa phát hành).\n" +"Chuyển đổi thiết bị lưu trữ: vui lòng đưa đĩa có nhãn\n" +" “%s”\n" +"vào ổ “%s” rồi bấm nút Enter\n" -#: cmdline/apt-get.cc:843 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Đang bỏ qua tập tin đã được tải về “%s”\n" +msgid "Unable to read %s" +msgstr "Không thể đọc %s" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Không thể tìm được chỗ trống trong %s" +msgid "Unable to change to %s" +msgstr "Không thể chuyển đổi sang %s" -#: cmdline/apt-get.cc:882 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Không đủ chỗ trống trên %s" +msgid "No mirror file '%s' found " +msgstr "Không tìm thấy tập tin bản sao “%s” " -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Cần phải lấy %sB/%sB kho nguồn.\n" +msgid "Can not read mirror file '%s'" +msgstr "Không thể đọc tập tin bản sao “%s”" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 +#: methods/mirror.cc:315 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Cần phải lấy %sB từ kho nguồn.\n" +msgid "No entry found in mirror file '%s'" +msgstr "Không tìm thấy điểm vào trong tập tin bản sao “%s”" -#: cmdline/apt-get.cc:902 +#: methods/mirror.cc:445 #, c-format -msgid "Fetch source %s\n" -msgstr "Lấy mã nguồn %s\n" +msgid "[Mirror: %s]" +msgstr "[Bản sao: %s]" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Gặp lỗi khi lấy một số kho." +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Gặp lỗi khi tạo ống IPC đến tiến trình con" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Hoàn tất việc tải về và trong chế độ chỉ tải về" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Kết nối bị đóng bất ngờ" -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Đang bỏ qua giải nén nguồn đã giải nén trong %s\n" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Cài đặt mặc định sai!" -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Lệnh giải nén “%s” bị lỗi.\n" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "Bấm phím Enter để tiếp tục." -#: cmdline/apt-get.cc:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Hãy kiểm tra xem gói “dpkg-dev” đã được cài đặt chưa.\n" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Bạn có muốn xoá mọi tập tin .deb đã được tải về trước đây không?" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "Lệnh biên dịch “%s” bị lỗi.\n" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Gặp một số lỗi trong khi giải nén. Những gói đã được cài đặt" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Tiến trình con bị lỗi" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "sẽ cũng được cấu hình. Việc này có thể sẽ gây ra lỗi trùng lặp" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "" -"Phải chỉ ra ít nhất một gói cần kiểm tra các phần phụ thuộc cần khi biên dịch" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "hoặc lỗi do quan hệ phụ thuộc chưa thoả. Trường hợp này vẫn đúng," -#: cmdline/apt-get.cc:1054 -#, c-format +#: dselect/install:105 msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" -"Không có thông tin kiến trúc sẵn sàng cho %s. Xem apt.conf(5) APT::" -"Architectures để cài đặt" +"chỉ những lỗi bên trên thông điệp này là quan trọng. Hãy sửa chữa, sau đó " +"chạy lại lệnh cà[I] đặt." -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Không thể lấy thông tin về các phần phụ thuộc khi biên dịch cho %s" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Đang hòa trộn các thông tin sẵn có..." -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s không phụ thuộc vào gì khi biên dịch.\n" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode (thả điểm nút) được gọi với điểm nút còn liên kết" -#: cmdline/apt-get.cc:1271 +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Gặp lỗi khi định vị phần tử băm!" + +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Gặp lỗi khi định vị trệch đi" + +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Lỗi nội bộ trong AddDiversion (thêm sự trệch đi)" + +#: apt-inst/filelist.cc:477 #, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "" -"Phần phụ thuộc %s cho %s không ổn thỏa bởi vì %s không được cho phép trên " -"gói “%s”" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Đang cố ghi đè một sự trệch đi, %s → %s và %s/%s" -#: cmdline/apt-get.cc:1289 +#: apt-inst/filelist.cc:506 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "" -"Phần phụ thuộc %s cho %s không thể được thỏa mãn vì không tìm thấy gói %s" +msgid "Double add of diversion %s -> %s" +msgstr "Sự trệch đi được thêm hai lần %s → %s" -#: cmdline/apt-get.cc:1312 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"Việc cố thỏa mãn quan hệ phụ thuộc %s cho %s bị lỗi vì gói đã cài đặt %s là " -"quá mới" +msgid "Duplicate conf file %s/%s" +msgstr "Tập tin cấu hình (conf) trùng lặp %s/%s" -#: cmdline/apt-get.cc:1351 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"phần phụ thuộc %s cho %s không thể được thỏa mãn phiên bản ứng cử của gói %s " -"có thể thỏa mãn điều kiện phiên bản" +msgid "The path %s is too long" +msgstr "Đường dẫn %s quá dài" -#: cmdline/apt-get.cc:1357 +#: apt-inst/extract.cc:132 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "" -"phần phụ thuộc %s cho %s không thể được thỏa mãn bởi vì gói %s không có bản " -"ứng cử" +msgid "Unpacking %s more than once" +msgstr "Đang giải nén %s nhiều lần" -#: cmdline/apt-get.cc:1380 +#: apt-inst/extract.cc:142 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Việc cố thỏa cách phụ thuộc %s cho %s bị lỗi: %s." +msgid "The directory %s is diverted" +msgstr "Thư mục %s bị trệch hướng" -#: cmdline/apt-get.cc:1395 +#: apt-inst/extract.cc:152 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Không thể thỏa mãn quan hệ phụ thuộc khi biên dịch cho %s." +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Gói này đang cố ghi vào đích trệch đi %s/%s" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Gặp lỗi khi xử lý các quan hệ phụ thuộc khi biên dịch" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Đường dẫn trệch đi quá dài" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Changelog cho %s (%s)" - -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Hỗ trợ các mô-đun:" +msgid "Failed to stat %s" +msgstr "Việc lấy thông tin thống kê cho %s bị lỗi" -#: cmdline/apt-get.cc:1632 -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -msgstr "" -"Cách dùng: apt-get [tùy_chọn...] lệnh\n" -" apt-get [tùy_chọn...] install|remove gói1 [gói2 ...]\n" -" apt-get [tùy_chọn...] source gói1 [gói2 ...]\n" -"\n" -"get: lấy\n" -"install: cài đặt\n" -"remove: gỡ bỏ\n" -"source: nguồn\n" -"\n" -"apt-get là một giao diện dòng lệnh đơn giản dùng để tải về và cài đặt gói " -"phần mềm.\n" -"Những lệnh được dùng thường nhất là update (cập nhật) và install (cài đặt).\n" -"\n" -"Lệnh:\n" -" update - Lấy danh sách gói mới (cập nhật cơ sở dữ liệu)\n" -" upgrade - Nâng cấp lên phiên bản mới hơn\n" -" install - Cài đặt gói mới (gói có dạng libc6 không phải libc6.deb)\n" -" remove - Gỡ bỏ gói phần mềm\n" -" autoremove - Tự động gỡ bỏ tất cả các gói không dùng\n" -" purge - Gỡ bỏ và tẩy xóa gói\n" -" source - Tải về kho nguồn\n" -" build-dep - Cấu hình quan hệ phụ thuộc khi biên dịch, cho gói nguồn\n" -" dist-upgrade - Nâng cấp hệ điều hành lên phiên bản mới hơn, hãy xem apt-" -"get(8)\n" -" dselect-upgrade - Cho phép chọn dselect\n" -" clean - Xóa các tập tin kho đã tải về (dọn dẹp thư mục lưu trữ)\n" -" autoclean - Xóa các tập tin kho cũ đã tải về (tự động làm sạch)\n" -" check - Kiểm tra xem có quan hệ phụ thuộc bị sai không\n" -" changelog - Tải về và hiển thị các thay đổi cho gói đã cho\n" -" download - Tải về gói phần mềm vào thư mục hiện hành\n" -"\n" -"Tùy chọn:\n" -" -h Trợ giúp này.\n" -" -q Dữ liệu xuất có thể ghi nhật ký - không hiển thị tiến triển công việc\n" -" -qq Không xuất thông tin nào, trừ lỗi\n" -" -d Chỉ tải về, KHÔNG cài đặt hay giải nén kho\n" -" -s Không làm gì cả. Chỉ mô phỏng\n" -" -y Trả lời Có (yes) mọi khi gặp câu hỏi\n" -" -f Thử sửa chữa một hệ thống có quan hệ phụ thuộc bị sai hỏng\n" -" -m Thử tiếp tục lại nếu không thể xác định vị trí từ kho\n" -" -u Hiển thị danh sách các gói đã nâng cấp\n" -" -b Biên dịch gói nguồn sau khi lấy nó về\n" -" -V Hiển thị số thứ tự phiên bản dạng chi tiết\n" -" -c=? Đọc tập tin cấu hình này\n" -" -o=? Đặt tùy chọn cấu hình tùy ý, v.d. -o dir::cache=/tmp\n" -"Để có thêm thông tin và tùy chọn thì hãy xem trang hướng dẫn\n" -" apt-get(8), sources.list(5) và apt.conf(5).\n" -" Trình APT này có năng lực của siêu bò.\n" +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "Việc đổi tên %s thành %s bị lỗi" -#: cmdline/apt-helper.cc:35 -msgid "Must specify at least one pair url/filename" -msgstr "Phải chỉ định ít nhất một cặp url/tên-tập-tin" +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "Thư mục %s đang được thay thế do một cái không phải là thư mục" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "Gặp lỗi khi tải về" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Gặp lỗi định vị điểm nút trong hộp băm nó bị lỗi" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" -"Cách dùng: apt-helper [các-tùy-chọn] lệnh\n" -" apt-helper [các-tùy-chọn] download-file uri đường-dẫn-đích\n" -"\n" -"apt-helper là phần trợ giúp dành cho apt\n" -"\n" -"Các lệnh:\n" -" download-file - tải về uri đã cho về đường-dẫn-đích\n" -"\n" -" Lệnh trợ giúp APT này có Sức Mạnh của Siêu “Meep”.\n" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Đường dẫn quá dài" -#: cmdline/apt-mark.cc:68 +#: apt-inst/extract.cc:421 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "không thể đánh dấu %s như là nó chưa được cài đặt.\n" +msgid "Overwrite package match with no version for %s" +msgstr "Ghi đè lên gói đã khớp mà không có phiên bản cho %s" -#: cmdline/apt-mark.cc:74 +#: apt-inst/extract.cc:438 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s được đặt thành được cài đặt bằng tay.\n" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Tập tin %s/%s ghi đè lên một tập tin trong gói %s" -#: cmdline/apt-mark.cc:76 +#: apt-inst/extract.cc:498 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s đã sẵn được đặt thành cài đặt tự động rồi.\n" +msgid "Unable to stat %s" +msgstr "Không thể lấy thông tin thống kê %s" -#: cmdline/apt-mark.cc:241 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s đã sẵn được đặt là giữ lại.\n" +msgid "Failed to write file %s" +msgstr "Việc ghi tập tin %s gặp lỗi" -#: cmdline/apt-mark.cc:243 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s đã sẵn được đặt là không giữ lại.\n" +msgid "Failed to close file %s" +msgstr "Việc đóng tập tin %s gặp lỗi" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 #, c-format -msgid "%s set on hold.\n" -msgstr "%s được đặt là giữ lại.\n" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Đây không phải là một kho DEB hợp lệ vì còn thiếu thành viên “%s”" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Hủy bỏ nắm giữ %s.\n" +msgid "Internal error, could not locate member %s" +msgstr "Gặp lỗi nội bộ, không thể định vị thành viên %s" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" -"Thực thi lệnh “dpkg” gặp lỗi. Bạn có cần quyền siêu người dùng để thực thi " -"lệnh này" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Tập tin điều khiển không có khả năng phân tách" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" -"Cách dùng: apt-mark [tùy-chọn...] {auto|manual} gói1 [gói2 ...]\n" -"\n" -"apt-mark là câu lệnh đơn giản được dùng để đánh dấu các gói là\n" -"được cài đặt tự động hay bằng tay. Nó còn có thể liệt kê danh sách các đánh " -"dấu.\n" -"\n" -"Lệnh:\n" -" auto - Đánh dấu các gói đưa ra là được cài đặt tự động\n" -" manual - Đánh dấu các gói đưa ra là được cài đặt bằng tay\n" -" hold - Đánh dấu một gói là giữ lại\n" -" unhold - Bỏ đánh dấu một gói là giữ lại\n" -" showauto - In ra danh sách các gói được tự động cài đặt\n" -" showmanual - In ra danh sách các gói được cài đặt bằng tay\n" -" showhold - In ra danh sách các gói được giữ lại\n" -"\n" -"Tùy chọn:\n" -" -h Trợ giúp này.\n" -" -q Dữ liệu xuất có thể ghi nhật ký - không hiển thị diễn biến công việc\n" -" -qq Không xuất thông tin nào, trừ lỗi\n" -" -s Không làm gì chỉ in những cái sẽ làm.\n" -" -f đánh dấu đọc/ghi tự-động/thủ-công trong tập tin đã cho.\n" -" -c=? Đọc tập tin cấu hình này\n" -" -o=? Đặt một tùy chọn cấu hình tùy ý, v.d. -o dir::cache=/tmp\n" -"Để tìm thông tin thêm, xem hai trang man (hướng dẫn)\n" -" apt-mark(8) và apt.conf(5)" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Chữ ký kho không hợp lệ" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Gặp lỗi khi đọc phần đầu thành viên kho" + +#: apt-inst/contrib/arfile.cc:96 +#, c-format +msgid "Invalid archive member header %s" +msgstr "Phần đầu thành viên kho lưu không hợp lệ %s" + +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Phần đầu thành viên kho không hợp lê" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Kho quá ngắn" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Việc đọc phần đầu kho bị lỗi" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Gặp lỗi khi tạo các đường ống dẫn lệnh" + +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Việc thực hiện gzip bị lỗi " + +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Kho bị hỏng." + +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Gặp lỗi khi tổng kiểm “tar”, kho bị hỏng" + +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Không rõ kiểu phần đầu tar %u, thành viên %s" + +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "Diễn biến: [%3i%%]" + +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "Đang chạy dpkg" + +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Không hỗ trợ hệ thống đóng gói “%s”" + +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "Không thể quyết định kiểu hệ thống đóng gói thích hợp" + +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "Đã ghi %i bản ghi.\n" + +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "Đã ghi %i bản ghi với %i tập tin còn thiếu.\n" + +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "Đã ghi %i bản ghi với %i tập tin không khớp với nhau\n" + +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" -"Cách dùng: apt [các tùy chọn] lệnh\n" -"\n" -"CLI (giao diện dòng lệnh) dành cho apt.\n" -"Các lệnh cơ bản:\n" -" list - liệt kê các gói dựa trên cơ sở là tên gói\n" -" search - tìm trong phần mô tả của gói\n" -" show - hiển thị thông tin chi tiết về gói\n" -"\n" -" update - cập nhật danh sánh các gói sẵn có\n" -"\n" -" install - cài đặt các gói\n" -" remove - gỡ bỏ các gói\n" -"\n" -" upgrade - nâng cấp các gói trong hệ thống\n" -" full-upgrade - nâng cấp hệ thống bằng cách gỡ bỏ, cài đặt, nâng cấp các " -"gói\n" -"\n" -" edit-sources - sửa tập tin thông tin gói nguồn\n" +"Đã ghi %i bản ghi với %i tập tin còn thiếu và %i tập tin không khớp với " +"nhau\n" -#: methods/cdrom.cc:203 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Không thể đọc cơ sở dữ liệu đĩa CD-ROM %s" +msgid "Can't find authentication record for: %s" +msgstr "Không tìm thấy bản ghi xác thực cho: %s" + +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "Sai khớp chuỗi duy nhất cho: %s" + +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Không thể phân tích hay mở danh sách gói hay tập tin trạng thái." -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" msgstr "" -"Hãy sử dụng lệnh “apt-cdrom” để làm cho APT chấp nhận đĩa CD này. Không thể " -"sử dụng lệnh “apt-get update” (cập nhật cơ sở dữ liệu) để thêm đĩa CD mới." +"Bạn nên lấy cơ sở dữ liệu mới bằng lệnh “apt-get update” để sửa các vấn đề " +"này" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD-ROM sai" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Không thể đọc danh sách nguồn." -#: methods/cdrom.cc:249 +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "Bộ nhớ tạm gói trống" + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "Tập tin nhớ tạm gói bị hỏng" + +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "Tập tin nhớ tạm gói là một phiên bản không tương thích" + +#: apt-pkg/pkgcache.cc:169 +msgid "The package cache file is corrupted, it is too small" +msgstr "Tập tin nhớ tạm gói bị hỏng, nó quá nhỏ" + +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Không thể bỏ gắn đĩa CD-ROM trong %s. Có lẽ nó vẫn đang được dùng." +msgid "This APT does not support the versioning system '%s'" +msgstr "Trình APT này không hỗ trợ hệ thống điều khiển phiên bản “%s”" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Không tìm thấy đĩa." +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "Bộ nhớ tạm gói được biên dịch cho một kiến trúc khác" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Không tìm thấy tập tin" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "Phụ thuộc" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Gặp lỗi khi lấy thống kê" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "Phụ thuộc sẵn" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Gặp lỗi khi đặt giờ sửa đổi" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "Đề nghị" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Địa chỉ URI không hợp lệ, URI nội bộ không thể bắt đầu bằng “//”" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "Khuyến khích" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Đang đăng nhập vào" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "Xung đột" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Không thể quyết định tên ngang hàng" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "Thay thế" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Không thể phân giải tên cục bộ" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "Cũ" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "Làm hỏng" + +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "Tăng cường" + +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "quan trọng" + +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "yêu cầu" + +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "chuẩn" + +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "tùy chọn" + +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "bổ sung" + +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Máy phục vụ đã từ chối kết nối, và đã nói: %s" +msgid "The method driver %s could not be found." +msgstr "Không tìm thấy trình điều khiển phương thức %s." -#: methods/ftp.cc:225 +#: apt-pkg/acquire-worker.cc:118 #, c-format -msgid "USER failed, server said: %s" -msgstr "Lệnh USER (người dùng) đã thất bại: máy chủ nói: %s" +msgid "Is the package %s installed?" +msgstr "Gói “%s” đã được cài đặt chưa?" -#: methods/ftp.cc:232 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "PASS failed, server said: %s" -msgstr "Lệnh PASS (mật khẩu) đã thất bại: máy chủ nói: %s" +msgid "Method %s did not start correctly" +msgstr "Phương thức %s đã không khởi chạy đúng đắn." -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"Đã ghi rõ máy phục vụ ủy nhiệm, nhưng mà chưa ghi rõ tập lệnh đăng nhập. " -"“Acquire::ftp::ProxyLogin” là rỗng." +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "Hãy cho đĩa có nhãn “%s” vào ổ “%s” rồi bấm nút Enter." -#: methods/ftp.cc:280 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Văn lệnh đăng nhập “%s” đã thất bại: máy chủ nói: %s" +msgid "Index file type '%s' is not supported" +msgstr "Không hỗ trợ kiểu tập tin chỉ mục “%s”" -#: methods/ftp.cc:306 +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Đang xây dựng cây quan hệ phụ thuộc" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Phiên bản ứng cử" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Tạo ra quan hệ phụ thuộc" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Đang đọc thông tin về tình trạng" + +#: apt-pkg/depcache.cc:250 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "Lệnh TYPE (kiểu) đã thất bại: máy chủ nói: %s" +msgid "Failed to open StateFile %s" +msgstr "Lỗi mở tập tin tình trạng StateFile %s" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Thời hạn kết nối" +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Gặp lỗi khi ghi tập tin tình trạng StateFile tạm thời %s" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Máy phục vụ đã đóng kết nối" +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "gặp lỗi khi đổi tên, %s (%s → %s)." -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Một trả lời đã tràn bộ đệm." +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Mã băm tổng kiểm tra không khớp" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Giao thức bị hỏng" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Kích cỡ không khớp nhau" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Không thể tạo ổ cắm" +#: apt-pkg/acquire-item.cc:173 +msgid "Invalid file format" +msgstr "Định dạng tập tập tin không hợp lệ" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Không thể kết nối ổ cắm dữ liệu, kết nối đã quá giờ" +#: apt-pkg/acquire-item.cc:1573 +#, c-format +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" +"Không tìm thấy mục cần thiết “%s” trong tập tin Phát hành (Sai mục trong " +"sources.list hoặc tập tin bị hỏng)" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Gặp lỗi" +#: apt-pkg/acquire-item.cc:1589 +#, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Không thể tìm thấy mã băm tổng kiểm tra cho tập tin Phát hành %s" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Không thể kết nối ổ cắm bị động." +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Không có khóa công sẵn sàng cho những mã số khoá theo đây:\n" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo (lấy thông tin địa chỉ) không thể lấy ổ cắm lắng nghe" +#: apt-pkg/acquire-item.cc:1669 +#, c-format +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" +"Tập tin phát hành %s đã hết hạn (không hợp lệ kể từ %s). Cập nhật cho kho " +"này sẽ không được áp dụng." -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Không thể ràng buộc ổ cắm" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Bản phát hành xung đột: %s (cần %s nhưng lại nhận được %s)" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Không thể lắng nghe trên ổ cắm đó" +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"Gặp lỗi trong khi thẩm tra chữ ký.\n" +"Kho lưu chưa được cập nhật nên dùng những tập tin chỉ mục trước.\n" +"Lỗi GPG: %s: %s\n" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Không thể quyết định tên ổ cắm đó" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "Lỗi GPG: %s: %s" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Không thể gửi lệnh PORT (cổng)" +#: apt-pkg/acquire-item.cc:1859 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"Không tìm thấy tập tin liên quan đến gói %s. Có lẽ bạn cần phải tự sửa gói " +"này, do thiếu kiến trúc." -#: methods/ftp.cc:802 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Không biết họ địa chỉ %u (AF_*)" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "Không tìm thấy nguồn cho việc tải về phiên bản “%s” of “%s”" -#: methods/ftp.cc:811 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "Lệnh EPRT (thông báo lỗi) đã thất bại: máy chủ nói: %s" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Các tập tin chỉ mục của gói này bị hỏng. Không có trường Filename: (Tên tập " +"tin:) cho gói %s." -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Quá giờ kết nối ổ cắm dữ liệu" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, c-format +msgid "Clean of %s is not supported" +msgstr "Không hỗ trợ việc xóa %s" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Không thể chấp nhận kết nối" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "Không thể lấy trạng thái về %s." -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Gặp vấn đề băm tập tin" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "Bộ nhớ tạm có hệ thống điều khiển phiên bản không tương thích" -#: methods/ftp.cc:890 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Không thể lấy tập tin: máy phục vụ nói “%s”" +msgid "Error occurred while processing %s (%s%d)" +msgstr "Có lỗi phát sinh khi xử lý %s (%s%d)" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Ổ cắm dữ liệu đã quá giờ" +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "Ồ, bạn đã vượt quá số tên gói mà trình APT này có thể quản lý." -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Việc truyền dữ liệu bị lỗi: máy phục vụ nói “%s”" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Ồ, bạn đã vượt quá số phiên bản mà trình APT này có thể quản lý." -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Truy vấn" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Ồ, bạn đã vượt quá số mô tả mà trình APT này có thể quản lý." -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Không thể gọi " +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "Ồ, bạn đã vượt quá số cách phụ thuộc mà trình APT này có thể quản lý." -#: methods/connect.cc:76 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Đang kết nối đến %s (%s)" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Không tìm thấy gói %s %s khi xử lý quan hệ phụ thuộc của tập tin" -#: methods/connect.cc:87 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "[IP: %s %s]" -msgstr "[Địa chỉ IP: %s %s]" +msgid "Couldn't stat source package list %s" +msgstr "Không thể lấy các thông tin về danh sách gói nguồn %s" -#: methods/connect.cc:94 -#, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Không thể tạo ổ cắm cho %s (f=%u t=%u p=%u)" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Đang đọc các danh sách gói" -#: methods/connect.cc:100 -#, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Không thể khởi tạo kết nối đến %s:%s (%s)." +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Đang tập hợp các Nhà cung cấp Tập tin" -#: methods/connect.cc:108 +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Không thể kết nối đến %s:%s (%s), kết nối bị quá giờ" +msgid "Unable to write to %s" +msgstr "Không thể ghi vào %s" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Không thể kết nối đến %s:%s (%s)." +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "Lỗi nhập/xuất khi lưu bộ nhớ tạm nguồn" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Connecting to %s" -msgstr "Đang kết nối đến %s" +msgid "Vendor block %s contains no fingerprint" +msgstr "Khối nhà bán %s không chứa vân tay" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 #, c-format -msgid "Could not resolve '%s'" -msgstr "Không thể phân giải “%s”" +msgid "List directory %spartial is missing." +msgstr "Thiếu thư mục danh sách %spartial." -#: methods/connect.cc:205 +#: apt-pkg/acquire.cc:91 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Việc phân giải “%s” bị lỗi tạm thời" +msgid "Archives directory %spartial is missing." +msgstr "Thiếu thư mục kho lưu %spartial." -#: methods/connect.cc:209 +#: apt-pkg/acquire.cc:99 #, c-format -msgid "System error resolving '%s:%s'" -msgstr "Lỗi hệ thống khi phân giải “%s:%s”" +msgid "Unable to lock directory %s" +msgstr "Không thể khoá thư mục %s" -#: methods/connect.cc:211 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Một số hư hỏng đã xảy ra khi phân giải “%s:%s” (%i - %s)" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Đang tải tập tin thứ %li trong tổng số %li (còn lại %s)" -#: methods/connect.cc:258 +#: apt-pkg/acquire.cc:904 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Không thể kết nối đến %s: %s:" +msgid "Retrieving file %li of %li" +msgstr "Đang tải tập tin %li trong tổng số %li" -#: methods/gpgv.cc:168 +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "Lỗi nội bộ: Chữ ký đúng, nhưng không thể xác định vân tay của khóa?!" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Gặp ít nhất một chữ ký không hợp lệ." - -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -"Không thể thực hiện “gpgv” để thẩm tra chữ ký (gpgv đã được cài đặt chưa?)" +"Một số tập tin chỉ mục không tải về được. Chúng đã bị bỏ qua, hoặc cái cũ đã " +"được dùng thay thế." -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 -#, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" msgstr "" -"Tập tin Clearsigned không hợp lệ, nhận được “%s” (mạng yêu cầu xác nhận phải " -"không?)" - -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Gặp lỗi không rõ khi thực hiện gpgv" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Những chữ ký theo đây không hợp lệ:\n" +"Bạn phải để một số địa chỉ URI “nguồn” vào “sources.list” (danh sách nguồn)" -#: methods/gpgv.cc:231 +#: apt-pkg/policy.cc:83 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "" -"Không thể kiểm chứng những chữ ký theo đây, vì khóa công không sẵn có:\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Các tập tin trống rỗng không phải là kho lưu hợp lệ" - -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Gặp lỗi khi ghi vào tập tin" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Gặp lỗi khi đọc từ máy phục vụ: Máy chủ đã đóng kết nối" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Gặp lỗi khi đọc từ máy phục vụ" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Gặp lỗi khi ghi vào tập tin" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Việc chọn bị lỗi" - -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Kết nối đã quá giờ" - -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Gặp lỗi khi ghi vào tập tin đầu ra" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" +"Giá trị “%s” không hợp lệ cho APT::Default-Release như vậy bản phát hành " +"không sẵn có trong mã nguồn" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Đang đợi phần đầu dữ liệu..." +#: apt-pkg/policy.cc:422 +#, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "" +"Gặp mục ghi sai trong tập tin tùy thích %s: không có dòng đầu Package (Gói)." -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Dòng đầu sai" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Không hiểu kiểu ghim %s" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Máy phục vụ HTTP đã gửi một dòng đầu trả lời không hợp lệ" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Chưa ghi rõ ưu tiên (hay số không) cho ghim" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"Máy phục vụ HTTP đã gửi một dòng đầu Content-Length (độ dài nội dung) không " -"hợp lệ" +"Không thể thực hiện ngay lập tức tiến trình cấu hình “%s”. Xem “man 5 apt." +"conf ” dưới “APT::Immediate-Configure” để tìm chi tiết. (%d)" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "" -"Máy phục vụ HTTP đã gửi một dòng đầu Content-Range (phạm vi nội dung) không " -"hợp lệ" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Không thể cấu hình “%s”. " -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Máy phục vụ HTTP không hỗ trợ tải một phần tập tin" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"Việc chạy tiến trình cài đặt này sẽ cần thiết gỡ bỏ tạm gói chủ yếu %s, do " +"vòng lặp Xung đột/Phụ thuộc trước. Trường hợp này thường xấu, nhưng mà nếu " +"bạn thật sự muốn tiếp tục, có thể hoạt hóa tuy chọn “APT::Force-" +"LoopBreak” (buộc ngắt vòng lặp)." -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Không rõ định dạng ngày" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "Dòng %u quá dài trong danh sách nguồn %s." -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Dữ liệu phần đầu sai" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Đang bỏ gắn CD-ROM...\n" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Kết nối bị lỗi" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "Đang dùng điểm gắn đĩa CD-ROM %s\n" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Gặp lỗi nội bộ" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Đang đợi đĩa...\n" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Đang tính toán nâng cấp... " +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Đang gắn đĩa CD-ROM...\n" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Xong" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Đang nhận diện... " -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "Đang sắp xếp" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Nhãn đã lưu: %s\n" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "Đang liệt kê" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Đang quét đĩa tìm tập tin chỉ mục...\n" -#: apt-private/private-list.cc:164 +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "Ở đây có %i phiên bản phụ thêm. Hãy dùng tùy chọn “-a” để xem." - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Đang sửa chữa quan hệ phụ thuộc..." +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" +"Tìm thấy %zu chỉ mục gói, %zu chỉ mục nguồn, %zu chỉ mục dịch và %zu chữ ký\n" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " gặp lỗi." +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" +"Không tìm thấy tập tin gói nào, có thể vì đây không phải là một Đĩa Debian, " +"hoặc có kiến trúc không đúng?" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Không thể sửa phần phụ thuộc" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "Tìm thấy nhãn “%s”\n" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Không thể tối thiểu hóa tập hợp nâng cấp" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Nó không phải là một tên hợp lệ: hãy thử lại.\n" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Xong" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Tên đĩa này:\n" +"“%s”\n" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Bạn có thể chạy lệnh “apt-get -f install” để sửa những lỗi trên." +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Đang sao chép các danh sách gói..." -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Chưa thỏa mãn quan hệ phụ thuộc. Hãy thử dùng tùy chọn “-f”." +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Đang ghi danh sách nguồn mới\n" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "không hiểu" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Các mục tin danh sách nguồn cho đĩa này:\n" -#: apt-private/private-output.cc:234 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "[installed,upgradable to: %s]" -msgstr "[đã cài, có thể nâng cấp thành: %s]" +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "Cần phải cài đặt lại gói %s, nhưng mà không thể tìm kho cho nó." -#: apt-private/private-output.cc:238 -msgid "[installed,local]" -msgstr "[đã cài đặt,nội bộ]" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Lỗi: “pkgProblemResolver::Resolve” (bộ tháo gỡ vấn đề gọi::tháo gỡ) đã tạo " +"ra nhiều chỗ ngắt, có lẽ một số gói đã giữ lại đã gây ra trường hợp này." -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "[đã cài,có thể tự động gỡ bỏ]" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Không thể sửa trục trặc này, bạn đã giữ lại một số gói bị hỏng." -#: apt-private/private-output.cc:243 -msgid "[installed,automatic]" -msgstr "[đã cài đặt,tự động]" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Gửi kịch bản đến bộ phân giải" -#: apt-private/private-output.cc:245 -msgid "[installed]" -msgstr "[đã cài đặt]" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Gửi yêu cầu đến bộ phân giải" -#: apt-private/private-output.cc:249 -#, c-format -msgid "[upgradable from: %s]" -msgstr "[có thể nâng cấp từ: %s]" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Chuẩn bị để lấy cách giải quyết" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" -msgstr "[residual-config]" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "Bộ phân giải bên ngoài gặp lỗi mà không trả về thông tin lỗi thích hợp" -#: apt-private/private-output.cc:435 -#, c-format -msgid "but %s is installed" -msgstr "nhưng mà %s đã được cài đặt" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Thi hành bộ phân giải từ bên ngoài" -#: apt-private/private-output.cc:437 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "but %s is to be installed" -msgstr "nhưng mà %s sẽ được cài đặt" - -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "nhưng mà nó không có khả năng cài đặt" - -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "nhưng mà nó là gói ảo" +msgid "Unable to parse package file %s (1)" +msgstr "Không thể phân tích tập tin gói %s (1)" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "nhưng mà nó không được cài đặt" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Không thể phân tích tập tin gói %s (2)" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "nhưng mà nó sẽ không được cài đặt" +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Không thể phân tích cú pháp của tập tin Phát hành %s" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " hay" +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "Không có phần nào trong tập tin Phát hành %s" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Những gói theo đây chưa thỏa mãn quan hệ phụ thuộc:" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Không có mục Hash (chuỗi duy nhất) nào trong tập tin Phát hành %s" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Những gói MỚI sau sẽ được CÀI ĐẶT:" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "" +"Gặp mục tin “Valid-Until” (hợp lệ đến khi) không hợp lệ trong tập tin Phát " +"hành %s" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Những gói sau sẽ bị GỠ BỎ:" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "" +"Gặp mục tin “Date” (ngày tháng) không hợp lệ trong tập tin Phát hành %s" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Những gói sau đây được giữ lại:" +#: apt-pkg/sourcelist.cc:127 +#, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Gặp đoạn sai dạng %u trong danh sách nguồn %s (ngữ pháp URI)" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Những gói sau đây sẽ được NÂNG CẤP:" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "" +"Gặp dòng có sai dạng %lu trong danh sách nguồn %s ([tùy chọn] không thể phân " +"tích được)" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "Những gói sau đây sẽ bị HẠ CẤP:" +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Gặp dòng sai dạng %lu trong danh sách nguồn %s ([tùy chọn] quá ngắn)" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Những gói giữ lại sau đây sẽ bị THAY ĐỔI:" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "" +"Gặp dòng sai dạng %lu trong danh sách nguồn %s ([%s] không phải là một phép " +"gán)" -#: apt-private/private-output.cc:668 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "%s (due to %s) " -msgstr "%s (bởi vì %s) " +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "" +"Gặp dòng sai dạng %lu trong danh sách nguồn %s ([%s] không có khoá nào)" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -"CẢNH BÁO: Có những gói chủ yếu sau đây sẽ bị gỡ bỏ.\n" -"ĐỪNG làm như thế trừ khi bạn biết chính xác mình đang làm gì!" +"Gặp dòng sai dạng %lu trong danh sách nguồn %s (khoá [%s] %s không có giá " +"trị)" -#: apt-private/private-output.cc:707 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu nâng cấp, %lu được cài đặt mới, " +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Gặp dòng sai dạng %lu trong danh sách nguồn %s (địa chỉ URI)" -#: apt-private/private-output.cc:711 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu được cài đặt lại, " +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Gặp dòng sai dạng %lu trong danh sách nguồn %s (bản phân phối)" -#: apt-private/private-output.cc:713 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "%lu downgraded, " -msgstr "%lu bị hạ cấp, " +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Gặp dòng sai dạng %lu trong danh sách nguồn %s (ngữ pháp URI)" -#: apt-private/private-output.cc:715 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu cần gỡ bỏ, và %lu chưa được nâng cấp.\n" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "" +"Gặp dòng sai dạng %lu trong danh sách nguồn %s (bản phân phối tuyệt đối)" -#: apt-private/private-output.cc:719 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu chưa được cài đặt toàn bộ hay được gỡ bỏ.\n" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "" +"Gặp dòng sai dạng %lu trong danh sách nguồn %s (phân tách bản phân phối)" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[C/k]" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Đang mở %s" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[c/K]" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Gặp dòng sai dạng %u trong danh sách nguồn %s (kiểu)." -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "C" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Không biết kiểu “%s” trên dòng %u trong danh sách nguồn %s." -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "K" +#: apt-pkg/sourcelist.cc:416 +#, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Không hiểu kiểu “%s” trên đoạn %u trong danh sách nguồn %s" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Lệnh cập nhật không chấp nhận đối số" +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Không tìm thấy bản phát hành “%s” cho “%s”" -#: apt-private/private-update.cc:90 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -"%i gói có thể được cập nhật. Chạy 'apt list --upgradable' để xem chúng.\n" +msgid "Version '%s' for '%s' was not found" +msgstr "Không tìm thấy phiên bản “%s” cho “%s”" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "Mọi gói đã được cập nhật." +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Không tìm thấy tác vụ “%s”" -#: apt-private/private-show.cc:156 +#: apt-pkg/cacheset.cc:609 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "Ở đây có %i bản ghi phụ thêm. Hãy dùng tùy chọn “-a” để xem" +msgid "Couldn't find any package by regex '%s'" +msgstr "Không tìm thấy gói nào theo biểu thức chính quy “%s”" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "không là gói thật (ảo)" +#: apt-pkg/cacheset.cc:615 +#, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Không tìm thấy gói nào theo đường dẫn “%s”" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Lỗi nội bộ: InstallPackages (cài đặt gói) được gọi với gói bị hỏng!" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "Không thể chọn phiên bản trong gói “%s” vì nó chỉ là ảo" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Cần phải gỡ bỏ một số gói, nhưng mà tính năng Gỡ bỏ (Remove) đã bị tắt." +"Không thể chọn phiên bản được cài đặt hoặc phiên bản ứng cử trong gói “%s” " +"mà không có trong nó" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Gặp lỗi nội bộ: Tiến trình Sắp xếp chưa xong" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "Không thể chọn phiên bản mới nhất trong gói “%s” vì nó chỉ là ảo" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "Không thể chọn phiên bản ứng cử trong gói %s vì nó không có ứng cử" + +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" msgstr "" -"Lạ nhỉ... Kích cỡ không khớp nhau. Hãy gửi thư cho <apt@packages.debian.org>" +"Không thể chọn phiên bản được cài đặt trong gói %s vì nó không phải được cài " +"đặt" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Cần phải lấy %sB/%sB từ kho chứa.\n" +msgid "%lid %lih %limin %lis" +msgstr "%li ngày %li giờ %li phút %li giây" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "%li giờ %li phút %li giây" + +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%li phút %li giây" + +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%li giây" + +#: apt-pkg/contrib/strutl.cc:1246 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Cần phải lấy %sB từ kho chứa.\n" +msgid "Selection %s not found" +msgstr "Không tìm thấy vùng chọn %s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/contrib/fileutl.cc:190 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Sau thao tác này, %sB dung lượng đĩa sẽ bị chiếm dụng.\n" +msgid "Not using locking for read only lock file %s" +msgstr "Không dùng khả năng khóa cho tập tin khóa chỉ đọc %s" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/contrib/fileutl.cc:195 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Sau thao tác này, %sB dung lượng đĩa sẽ được giải phóng.\n" +msgid "Could not open lock file %s" +msgstr "Không thể mở tập tin khóa %s" -#: apt-private/private-install.cc:200 +#: apt-pkg/contrib/fileutl.cc:218 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Bạn không có đủ dung lượng đĩa còn trống trong %s." +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Không dùng khả năng khóa cho tập tin khóa đã lắp kiểu NFS %s" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Có lỗi và đã dùng tùy chọn “-y” mà không có “--force-yes”" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "Không thể lấy khóa %s" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -"Đã đưa ra “Chỉ không đáng kể” (Trivial Only) nhưng mà thao tác này là đáng " -"kể." +"Liệt kê các tập tin không thể được tạo ra vì “%s” không phải là một thư mục" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Có, làm đi!" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "Bỏ qua “%s” trong thư mục “%s'vì nó không phải là tập tin bình thường" -#: apt-private/private-install.cc:222 +#: apt-pkg/contrib/fileutl.cc:412 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -"Bạn sắp làm việc mà nó có thể gây hư hại cho hệ thống.\n" -"Nếu vẫn muốn tiếp tục thì hãy gõ cụm từ “%s”\n" -"?] " - -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Hủy bỏ." - -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Bạn có muốn tiếp tục không?" - -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Một số tập tin không tải về được" +"Bỏ qua tập tin “%s” trong thư mục “%s” vì nó không có phần đuôi mở rộng" -#: apt-private/private-install.cc:320 +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"Không thể lấy một số kho, có lẽ hãy chạy lệnh “apt-get update” (apt lấy cập " -"nhật)\n" -"hay dùng tùy chọn “--fix-missing” (sửa thiếu sót) không?" +"Bỏ qua tập tin “%s” trong thư mục “%s” vì nó có phần đuôi mở rộng không hợp " +"lệ" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "" -"Chưa hỗ trợ tùy chọn “--fix-missing” (sửa khi thiếu) và trao đổi phương tiện." +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Tiến trình con %s đã nhận một lỗi phân đoạn." -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Không thể sửa những gói còn thiếu." +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "Tiến trình con %s đã nhận tín hiệu %u." -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Đang hủy bỏ tiến trình cài đặt." +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "Tiến trình con %s đã trả về một mã lỗi (%u)" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -"Những gói theo đây không còn nằm trên hệ thống này vì mọi tập tin đều bị gói " -"khác ghi đè:" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Tiến trình con %s đã thoát bất thường" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Ghi chú: Thay đổi này được tự động thực hiện bởi dpkg." +#: apt-pkg/contrib/fileutl.cc:913 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Gặp vấn đề khi đóng tập tin gzip %s" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Không nên xoá gì thì không thể khởi chạy Bộ Gỡ bỏ Tự động" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "Không thể mở tập tin %s" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "" -"Ừm, có vẻ là Bộ Gỡ bỏ Tự động đã hủy cái gì, một trường hợp thực sự không " -"nên xảy ra. Hãy thông báo lỗi về apt." +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Không thể mở bộ mô tả tập tin %d" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "Có lẽ thông tin theo đây sẽ giúp đỡ bạn giải quyết tình trạng này:" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "Việc tạo tiến trình con IPC bị lỗi" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Lỗi nội bộ: Bộ Gỡ bỏ Tự động đã làm hỏng một thứ gì đó" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "Gặp lỗi khi thực hiện nén " -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "" -"(Các) gói sau đây đã được tự động cài đặt nên không còn cần yêu cầu lại:" +#: apt-pkg/contrib/fileutl.cc:1514 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "đọc, còn cần đọc %llu nhưng mà không có gì còn lại cả" -#: apt-private/private-install.cc:517 +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 #, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "%lu gói đã được tự động cài đặt nên không còn cần yêu cầu lại.\n" +msgid "write, still have %llu to write but couldn't" +msgstr "ghi, còn cần ghi %llu nhưng mà không thể" -#: apt-private/private-install.cc:519 -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "Hãy dùng lệnh “apt-get autoremove” để gỡ bỏ chúng." +#: apt-pkg/contrib/fileutl.cc:1915 +#, c-format +msgid "Problem closing the file %s" +msgstr "Gặp vấn đề khi đóng tập tin %s" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Có lẽ bạn cần chạy lệnh “apt-get -f install” để sửa những cái đó:" +#: apt-pkg/contrib/fileutl.cc:1927 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Gặp vấn đề khi đổi tên tập tin %s thành %s" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Thưa thỏa mãn quan hệ phụ thuộc. Hãy thử chạy lệnh “apt-get -f install” mà " -"không có gói nào (hoặc chỉ định cách thức giải quyết)." +#: apt-pkg/contrib/fileutl.cc:1938 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Gặp vấn đề khi bỏ liên kết tập tin %s" -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." -msgstr "" -"Không thể cài đặt một số gói. Điều đó có nghĩa là bạn đã yêu cầu\n" -"một trường hợp không thể, hoặc nếu bạn đang sử dụng bản phân phối\n" -"chưa ổn định cái mà yêu cầu các gói mà nó còn chưa được tạo ra\n" -"hay chưa được chuyển ra khỏi phần Incoming (Đến)." +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "Gặp vấn đề khi đồng bộ hóa tập tin" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Gói bị hỏng" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Lỗi!" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Những gói thêm theo đây sẽ được cài đặt:" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Xong" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Các gói đề nghị:" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "..." -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Gói khuyến khích:" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... %u%%" -#: apt-private/private-install.cc:825 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Đang bỏ qua %s vì nó đã được cài đặt và chưa đặt tùy chọn Nâng cấp.\n" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Không thể mmap (ánh xạ bộ nhớ) tập tin rỗng" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"Đang bỏ qua %s vì nó chưa được cài đặt và chỉ Nâng cấp là được yêu cầu.\n" +msgid "Couldn't duplicate file descriptor %i" +msgstr "Không thể nhân đôi bộ mô tả tập tin %i" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/mmap.cc:119 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Không thể cài đặt lại %s vì không thể tải nó về.\n" +msgid "Couldn't make mmap of %llu bytes" +msgstr "Không thể tạo mmap (ánh xạ bộ nhớ) kích cỡ %llu byte" -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s là phiên bản mới nhất.\n" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Không thể đóng mmap (ánh xạ bộ nhớ)" -#: apt-private/private-install.cc:894 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Đã chọn phiên bản “%s” (%s) cho “%s”\n" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Không thể động bộ hoá mmap (ánh xạ bộ nhớ)" -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Đã chọn phiên bản “%s” (%s) cho “%s” vì “%s”\n" +msgid "Couldn't make mmap of %lu bytes" +msgstr "Không thể tạo mmap (ánh xạ bộ nhớ) kích cỡ %lu byte" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 -#, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "Chưa cài đặt gói %s nên không thể gỡ bỏ nó. Có phải ý bạn là “%s'?\n" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Gặp lỗi khi cắt ngắn tập tin" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Gói %s chưa được cài đặt, thế nên không thể gỡ bỏ nó\n" - -#: apt-private/private-main.cc:32 msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -"CHÚ Ý: đây chỉ là mô phỏng!\n" -" apt-get yêu cầu quyền root để thực hiện thật.\n" -" Cần nhớ rằng chức năng khóa đã bị tắt,\n" -" nên có thể nó không chính xác như khi làm thật!" +"Dynamic MMap (ánh xạ bộ nhớ động) đã vượt quá kích thước tối đa cho phép.\n" +"Hãy tăng kích cỡ của “APT::Cache-Start” (giới hạn vùng nhớ tạm Apt).\n" +"Giá trị hiện thời là: %lu. (man 5 apt.conf)" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "CẢNH BÁO: Không thể xác thực những gói sau đây!" +#: apt-pkg/contrib/mmap.cc:446 +#, c-format +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "Không thể tăng kích cỡ của ánh xạ bộ nhớ, vì đã tới giới hạn %lu byte." -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Cảnh báo xác thực bị đè.\n" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"Không thể tăng kích cỡ của ánh xạ bộ nhớ, vì chức năng tự động tăng bị người " +"dùng tắt đi." -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Một số gói không thể được xác thực" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Không thể lấy các thông tin cho điểm gắn kết %s" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Cài đặt những gói này mà không cần thẩm tra?" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Việc lấy các thông tin thống kê đĩa CD-ROM bị lỗi" -#: apt-private/private-sources.cc:58 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Gặp lỗi khi phân tích %s. Sửa lại chứ? " +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Không chấp nhận kiểu viết tắt: “%c”" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "Tập tin “%s” của bạn đã thay đổi, hãy chạy lệnh “apt-get update”." +msgid "Opening configuration file %s" +msgstr "Đang mở tập tin cấu hình %s..." -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "Tìm kiếm toàn văn" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Gặp lỗi cú pháp %s:%u: Khối bắt đầu không có tên." -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Tìm thấy " +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Gặp lỗi cú pháp %s:%u: Sai dạng thẻ" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Lấy:" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Gặp lỗi cú pháp %s:%u: Có rác sau giá trị" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Bỏq " +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "Gặp lỗi cú pháp %s:%u: Chỉ có thể thực hiện chỉ thị mức đầu" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Lỗi " +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Gặp lỗi cú pháp %s:%u: Quá nhiều chỉ thị bao gồm lồng nhau" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Đã lấy về %sB mất %s (%sB/g).\n" +msgid "Syntax error %s:%u: Included from here" +msgstr "Gặp lỗi cú pháp %s:%u: Đã được bao gồm từ đây" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/configuration.cc:897 #, c-format -msgid " [Working]" -msgstr " [Đang hoạt động]" +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Gặp lỗi cú pháp %s:%u: Chưa hỗ trợ chỉ thị “%s”" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/configuration.cc:900 #, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"Chuyển đổi thiết bị lưu trữ: vui lòng đưa đĩa có nhãn\n" -" “%s”\n" -"vào ổ “%s” rồi bấm nút Enter\n" +"Gặp lỗi cú pháp %s:%u: Chỉ thị “clear” thì yêu cầu một cây tuỳ chọn làm đối " +"số" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/configuration.cc:950 #, c-format -msgid "No mirror file '%s' found " -msgstr "Không tìm thấy tập tin bản sao “%s” " +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Gặp lỗi cú pháp %s:%u: Gặp rác tại kết thúc tập tin" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Không thể đọc tập tin bản sao “%s”" +msgid "No keyring installed in %s." +msgstr "Không có vòng khoá nào được cài đặt vào %s." -#: methods/mirror.cc:315 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Không tìm thấy điểm vào trong tập tin bản sao “%s”" +msgid "Command line option '%c' [from %s] is not known." +msgstr "Không hiểu tùy chọn dòng lệnh “%c” [từ %s]." -#: methods/mirror.cc:445 +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 #, c-format -msgid "[Mirror: %s]" -msgstr "[Bản sao: %s]" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Gặp lỗi khi tạo ống IPC đến tiến trình con" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Kết nối bị đóng bất ngờ" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Cài đặt mặc định sai!" - -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "Bấm phím Enter để tiếp tục." - -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Bạn có muốn xoá mọi tập tin .deb đã được tải về trước đây không?" - -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Gặp một số lỗi trong khi giải nén. Những gói đã được cài đặt" - -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "sẽ cũng được cấu hình. Việc này có thể sẽ gây ra lỗi trùng lặp" - -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "hoặc lỗi do quan hệ phụ thuộc chưa thoả. Trường hợp này vẫn đúng," - -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "" -"chỉ những lỗi bên trên thông điệp này là quan trọng. Hãy sửa chữa, sau đó " -"chạy lại lệnh cà[I] đặt." - -#: dselect/update:30 -msgid "Merging available information" -msgstr "Đang hòa trộn các thông tin sẵn có..." +msgid "Command line option %s is not understood" +msgstr "Không hiểu tùy chọn dòng lệnh %s" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode (thả điểm nút) được gọi với điểm nút còn liên kết" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Tùy chọn dòng lệnh %s không phải dạng lôgíc (đúng/sai)" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Gặp lỗi khi định vị phần tử băm!" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Tùy chọn %s yêu cầu một đối số." -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Gặp lỗi khi định vị trệch đi" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "Tùy chọn %s: Đặc tả mục cấu hình phải có một “=<giá_trị>”." -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Lỗi nội bộ trong AddDiversion (thêm sự trệch đi)" +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Tùy chọn %s yêu cầu một đối số kiểu số nguyên, không phải “%s”" -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Đang cố ghi đè một sự trệch đi, %s → %s và %s/%s" +msgid "Option '%s' is too long" +msgstr "Tùy chọn “%s” quá dài" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Sự trệch đi được thêm hai lần %s → %s" +msgid "Sense %s is not understood, try true or false." +msgstr "Không hiểu %s: hãy thử dùng true (đúng) hoặc false (sai)." -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Tập tin cấu hình (conf) trùng lặp %s/%s" +msgid "Invalid operation %s" +msgstr "Thao tác “%s” không hợp lệ" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "The path %s is too long" -msgstr "Đường dẫn %s quá dài" +msgid "Installing %s" +msgstr "Đang cài đặt %s" -#: apt-inst/extract.cc:132 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "Unpacking %s more than once" -msgstr "Đang giải nén %s nhiều lần" +msgid "Configuring %s" +msgstr "Đang cấu hình %s" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "The directory %s is diverted" -msgstr "Thư mục %s bị trệch hướng" +msgid "Removing %s" +msgstr "Đang gỡ bỏ %s" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Gói này đang cố ghi vào đích trệch đi %s/%s" +msgid "Completely removing %s" +msgstr "Đang gỡ bỏ hoàn toàn %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Đường dẫn trệch đi quá dài" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "Đang ghi chép sự biến mất của %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Failed to stat %s" -msgstr "Việc lấy thông tin thống kê cho %s bị lỗi" +msgid "Running post-installation trigger %s" +msgstr "Đang chạy bẫy sau-cài-đặt %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Việc đổi tên %s thành %s bị lỗi" +msgid "Directory '%s' missing" +msgstr "Thiếu thư mục “%s”" -#: apt-inst/extract.cc:249 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Thư mục %s đang được thay thế do một cái không phải là thư mục" +msgid "Could not open file '%s'" +msgstr "Không thể mở tập tin “%s”" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Gặp lỗi định vị điểm nút trong hộp băm nó bị lỗi" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Đang chuẩn bị %s" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Đường dẫn quá dài" +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "Đang mở gói %s" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Ghi đè lên gói đã khớp mà không có phiên bản cho %s" +msgid "Preparing to configure %s" +msgstr "Đang chuẩn bị cấu hình %s" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Tập tin %s/%s ghi đè lên một tập tin trong gói %s" +msgid "Installed %s" +msgstr "Đã cài đặt %s" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Unable to stat %s" -msgstr "Không thể lấy thông tin thống kê %s" +msgid "Preparing for removal of %s" +msgstr "Đang chuẩn bị gỡ bỏ %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Failed to write file %s" -msgstr "Việc ghi tập tin %s gặp lỗi" +msgid "Removed %s" +msgstr "Đã gỡ bỏ %s" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Failed to close file %s" -msgstr "Việc đóng tập tin %s gặp lỗi" +msgid "Preparing to completely remove %s" +msgstr "Đang chuẩn bị gỡ bỏ hoàn toàn %s" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Đây không phải là một kho DEB hợp lệ vì còn thiếu thành viên “%s”" +msgid "Completely removed %s" +msgstr "Gỡ bỏ hoàn toàn %s" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "ioctl(TIOCGWINSZ) gặp lỗi" + +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Gặp lỗi nội bộ, không thể định vị thành viên %s" +msgid "Can not write log (%s)" +msgstr "Không thể ghi nhật ký (%s)" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Tập tin điều khiển không có khả năng phân tách" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "/dev/pts đã gắn chưa?" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Chữ ký kho không hợp lệ" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "Đầu ra là thiết bị cuối?" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Gặp lỗi khi đọc phần đầu thành viên kho" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "Hệ điều hành đã ngắt trước khi nó kịp hoàn thành" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Phần đầu thành viên kho lưu không hợp lệ %s" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" +"Không ghi báo cáo apport, vì đã chạm giới hạn số các báo cáo (MaxReports)" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Phần đầu thành viên kho không hợp lê" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "gặp vấn đề về quan hệ phụ thuộc nên để lại không cấu hình" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Kho quá ngắn" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Không ghi báo cáo apport, vì thông điệp lỗi chỉ thị đây là một lỗi kế tiếp " +"do một sự thất bại trước đó." -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Việc đọc phần đầu kho bị lỗi" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Không ghi báo cáo apport, vì thông điệp lỗi chỉ thị đây là một lỗi “đĩa đầy”" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Gặp lỗi khi tạo các đường ống dẫn lệnh" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Không ghi báo cáo apport, vì thông điệp lỗi chỉ thị đây là một lỗi “không đủ " +"bộ nhớ”" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Việc thực hiện gzip bị lỗi " +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Không ghi báo cáo apport, vì thông điệp lỗi chỉ thị đây là một lỗi trên hệ " +"thống nội bộ" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Kho bị hỏng." +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Không ghi báo cáo apport, vì thông điệp lỗi chỉ thị đây là một lỗi “V/R dpkg”" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Gặp lỗi khi tổng kiểm “tar”, kho bị hỏng" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Không thể khoá thư mục quản trị (%s), có một tiến trình khác đang sử dụng nó " +"phải không?" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/debsystem.cc:94 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Không rõ kiểu phần đầu tar %u, thành viên %s" +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Không thể khoá thư mục quản trị (%s), bạn có quyền root không?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"dpkg bị ngắt giữa chừng, bạn cần phải chạy “%s” một cách thủ công để giải " +"vấn đề này. " + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Chưa được khoá" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 935c9b322..febe74b0a 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.8.0~pre1\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2010-08-26 14:42+0800\n" "Last-Translator: Aron Xu <happyaron.xu@gmail.com>\n" "Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n" @@ -19,3121 +19,3122 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "不支持索引文件类型“%s”" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "无法读取 %s" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "无法切换工作目录到 %s" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "无法读取 %s 的状态。" - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" - -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "正在运行 dpkg" - -#: apt-pkg/init.cc:146 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "不支持“%s”打包系统" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "无法确定适合的打包系统类型" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "版本为 %2$s 的软件包 %1$s 有未满足的依赖关系:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "已写入 %i 条记录。\n" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "软件包名称总数:" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "已写入 %i 条记录,并有 %i 个文件缺失。\n" +#: cmdline/apt-cache.cc:279 +msgid "Total package structures: " +msgstr "全部软件包结构:" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "已写入 %i 条记录,并有 %i 个文件不匹配\n" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " 普通软件包:" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "已写入 %i 条记录,并有 %i 个缺失,以及 %i 个文件不匹配\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " 完全虚拟软件包:" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "无法找到认证记录:%s" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " 单虚拟软件包:" -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "Hash 校验和不符:%s" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " 混合虚拟软件包:" -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "无法找到获取软件包的渠道 %s 所需的驱动程序。" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " 缺失:" -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "请检查是否安装了“dpkg-dev”软件包。\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "按版本共计:" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "获取软件包的渠道 %s 所需的驱动程序没有正常启动。" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "按不同的说明共计:" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "请把标有“%s”的盘片插入驱动器“%s”再按回车键。" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "按依赖关系共计:" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "无法解析或打开软件包的列表或是状态文件。" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "按版本/文件关系共计:" -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "您可能需要运行 apt-get update 来解决这些问题" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "按说明/文件关系共计:" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "无法读取源列表。" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "提供映射共计:" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "软件包缓存区是空的" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "Glob 字串共计:" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "软件包缓存文件损坏了" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "依赖关系版本名所占空间共计:" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "软件包缓存区文件的版本不兼容" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "Slack 空间共计:" -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "软件包缓存文件损坏了" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "总占用空间:" -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "本程序目前不支持“%s”版本系统" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "软件包缓存区是为其它架构的硬件构建的" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "依赖" +msgid "Package file %s is out of sync." +msgstr "软件包文件 %s 尚未同步。" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "预依赖" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "没有发现匹配的软件包" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "建议" +#: cmdline/apt-cache.cc:1254 +msgid "You must give at least one search pattern" +msgstr "您必须明确地给出至少一个表达式" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "推荐" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "冲突" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "未发现软件包 %s" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "替换" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "软件包文件:" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "废弃" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "缓存尚未同步,无法交差引证(x-ref)一个软件包文件" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "破坏" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "被锁定的软件包:" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "增强" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(没有找到)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "重要" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " 已安装:" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "必需" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " 候选软件包:" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "标准" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(无)" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "可选" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " 软件包锁:" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "额外" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " 版本列表:" -#: apt-pkg/pkgrecords.cc:38 +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "不支持索引文件类型“%s”" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s,用于 %s 构架,编译于 %s %s\n" + +#: cmdline/apt-cache.cc:1749 +#, fuzzy +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"用法: apt-cache [选项] 命令\n" +"    apt-cache [选项] add 文件1 [文件2 ...]\n" +"    apt-cache [选项] showpkg 软件包1 [软件包2 ...]\n" +"    apt-cache [选项] showsrc 软件包1 [软件包2 ...]\n" +"\n" +"apt-cache 是一个底层的工具,我们用它来操纵 APT 的二进制\n" +"缓存文件,也用来在那些文件中查询相关信息\n" +"\n" +"命令:\n" +" add - 向源缓存加入一个软件包文件\n" +" gencaches - 同时生成软件包和源代码包的缓存\n" +" showpkg - 显示某个软件包的全面信息\n" +" showsrc - 显示源文件的各项记录\n" +" stats - 显示基本的统计信息\n" +" dump - 简要显示整个缓存文件的内容\n" +" dumpavail - 把所有有效的包文件列表打印到标准输出\n" +" unmet - 显示所有未满足的依赖关系\n" +" search - 根据正则表达式搜索软件包列表\n" +" show - 以便于阅读的格式介绍该软件包\n" +" showauto - 显示自动安装的软件包的列表\n" +" depends - 显示该软件包的依赖关系信息\n" +" rdepends - 显示所有依赖于该软件包的软件包名字\n" +" pkgnames - 列出所有软件包的名字\n" +" dotty - 生成可用 GraphViz 处理的软件包关系图\n" +" xvcg - 生成可用 xvcg 处理的软件包的关系图\n" +" policy - 显示软件包的安装设置状态\n" +"\n" +"选项:\n" +" -h 本帮助文档。\n" +" -p=? 软件包的缓存。\n" +" -s=? 源代码包的缓存。\n" +" -q 关闭进度显示。\n" +" -i 仅为 unmet 命令显示重要的依赖关系。\n" +" -c=? 读取指定配置文件\n" +" -o=? 设置任意指定的配置选项,例如 -o dir::cache=/tmp\n" +"若要了解更多信息,您还可以查阅 apt-cache(8) 和 apt.conf(5) 参考手册。\n" + +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "请给这张盘片起个名字,比如“Debian 5.0.3 Disk 1”" + +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "请把盘片插入驱动器再按回车键" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Regex compilation error - %s" -msgstr "编译正则表达式时出错 - %s" +msgid "Failed to mount '%s' to '%s'" +msgstr "无法将 %s 挂载到 %s" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "软件包暂存区使用的是不兼容的版本控制系统" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "处理 %s (FindPkg)时出错" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "请对您的盘片套件中的其它盘片重复相同的操作。" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "哇,软件包数量超出了本 APT 的处理能力。" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "参数没有成对" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "哇,软件包版本数量超出了本 APT 的处理能力。" +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"用法:apt-config [选项] 命令\n" +"\n" +"apt-config 是一个用于读取APT 配置文件的简单工具\n" +"\n" +"命令:\n" +" shell - Shell 模式\n" +" dump - 显示配置文件\n" +"\n" +"选项:\n" +" -h 本帮助文本。\n" +" -c=? 读取指定的配置文件\n" +" -o=? 设置任意指定的配置选项,例如:-o dir::cache=/tmp\n" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "哇,软件包说明数量超出了本 APT 的处理能力。" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "无法按照正则表达式 %s 找到任何软件包" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "哇,依赖关系数量超出了本 APT 的处理能力。" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "无法按照正则表达式 %s 找到任何软件包" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "当处理文件依赖关系时,无法找到软件包 %s %s" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "无法按照正则表达式 %s 找到任何软件包" -#: apt-pkg/pkgcachegen.cc:1211 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "无法获取源软件包列表 %s 的状态" - -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "正在读取软件包列表" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "选择 %s 作为源代码包而非 %s\n" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "正在收集文件所提供的软件包" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "忽略不可用的 %2$s 软件包的 %1$s 版" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Unable to write to %s" -msgstr "无法写入 %s" +msgid "Couldn't find package %s" +msgstr "无法找到软件包 %s" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "无法读取或写入软件源缓存" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s 被设置为手动安装。\n" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s 被设置为手动安装。\n" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "内部错误,问题解决工具坏事了" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "无法锁定下载目录" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "要下载源代码,必须指定至少一个对应的软件包" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "无法重命名文件,%s (%s -> %s)。" +msgid "Unable to find a source package for %s" +msgstr "无法找到与 %s 对应的源代码包" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Hash 校验和不符" +#: cmdline/apt-get.cc:786 +#, c-format +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"提示:%s 的打包工作被维护于以下位置的 %s 版本控制系统中:\n" +"%s\n" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "大小不符" - -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "无效的操作 %s" - -#: apt-pkg/acquire-item.cc:1573 -#, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" - -#: apt-pkg/acquire-item.cc:1589 +#: cmdline/apt-get.cc:791 #, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "无法解析软件包仓库 Release 文件 %s" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "以下 ID 的密钥没有可用的公钥:\n" - -#: apt-pkg/acquire-item.cc:1669 -#, c-format msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" +"请使用:\n" +"bzr get %s\n" +"获得该软件包的最近更新(可能尚未正式发布)。\n" -#: apt-pkg/acquire-item.cc:1691 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "冲突的发行版:%s (期望 %s 但得到 %s)" - -#: apt-pkg/acquire-item.cc:1721 +#: cmdline/apt-get.cc:843 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"校验签名出错。此仓库未被更新,仍然使用以前的索引文件。GPG 错误:%s: %s\n" +msgid "Skipping already downloaded file '%s'\n" +msgstr "忽略已下载过的文件“%s”\n" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "GPG error: %s: %s" -msgstr "GPG 错误:%s: %s" +msgid "Couldn't determine free space in %s" +msgstr "无法获知您在 %s 上的可用空间" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:882 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"我无法找到一个对应 %s 软件包的文件。在这种情况下可能需要您手动修正这个软件" -"包。(缘于架构缺失)" +msgid "You don't have enough free space in %s" +msgstr "您在 %s 上没有足够的可用空间" -#: apt-pkg/acquire-item.cc:1925 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "需要下载 %sB/%sB 的源代码包。\n" -#: apt-pkg/acquire-item.cc:1983 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "软件包的索引文件已损坏。找不到对应软件包 %s 的 Filename: 字段。" +msgid "Need to get %sB of source archives.\n" +msgstr "需要下载 %sB 的源代码包。\n" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:902 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "软件提供者数据块内 %s 没有包含指纹信息" +msgid "Fetch source %s\n" +msgstr "下载源代码 %s\n" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, c-format -msgid "List directory %spartial is missing." -msgstr "软件包列表的目录 %spartial 缺失。" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "有一些包文件无法下载。" -#: apt-pkg/acquire.cc:91 -#, c-format -msgid "Archives directory %spartial is missing." -msgstr "仓库目录 %spartial 确实。" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "下载完毕,目前是“仅下载”模式" -#: apt-pkg/acquire.cc:99 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Unable to lock directory %s" -msgstr "无法对目录 %s 加锁" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "忽略已经被解包到 %s 目录的源代码包\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "正在下载第 %li 个文件,共 %li 个(还剩 %s 个)" +msgid "Unpack command '%s' failed.\n" +msgstr "运行解包的命令“%s”出错。\n" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Retrieving file %li of %li" -msgstr "正在下载第 %li 个文件,共 %li 个" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "请检查是否安装了“dpkg-dev”软件包。\n" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "无法下载 %s %s\n" +msgid "Build command '%s' failed.\n" +msgstr "执行构造软件包命令“%s”失败。\n" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"有一些索引文件不能下载,它们可能被忽略了,也可能转而使用了旧的索引文件。" +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "子进程出错" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "您必须在您的 sources.list 写入一些“软件源”的 URI" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "要检查生成软件包的构建依赖关系,必须指定至少一个软件包" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-pkg/policy.cc:422 -#, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "首选项文件 %s 中发现有无效的记录,无 Package 字段头" - -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Did not understand pin type %s" -msgstr "无法识别锁定的类型 %s" - -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "没有为版本锁定指定优先级(或为零)" +msgid "Unable to get build-dependency information for %s" +msgstr "无法获得 %s 的构建依赖关系信息" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" -msgstr "" -"无法立即对 %s 进行配置。请查看 man 5 apt.conf 中的 APT::Immediate-Configure " -"(%d)" +msgid "%s has no build depends.\n" +msgstr " %s 没有构建依赖关系信息。\n" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:1272 #, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "无法打开文件 %s" - -#: apt-pkg/packagemanager.cc:583 -#, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." -msgstr "" -"由于这次安装存在着一个 Conflicts/Pre-Depends 循环,因而需要暂时删除一个必不可" -"少的软件包 %s。通常并不建议这样做,但是如果您确实希望如此,可以打开 APT::" -"Force-LoopBreak 选项。" - -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "源列表 %2$s 的第 %1$u 行太长了。" - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "正在卸载 CD-ROM...\n" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "由于无法找到软件包 %3$s ,因此不能满足 %2$s 所要求的 %1$s 依赖关系" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1290 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "现把 %s 作为了 CD-ROM 的挂载点\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "等待插入盘片……\n" - -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "正在挂载 CD-ROM 文件系统……\n" - -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "正在鉴别... " +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "由于无法找到软件包 %3$s ,因此不能满足 %2$s 所要求的 %1$s 依赖关系" -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Stored label: %s\n" -msgstr "已归档文件的标签:%s\n" - -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "正在盘片中查找索引文件...\n" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "无法满足 %2$s 所要求 %1$s 依赖关系:已安装的软件包 %3$s 太新" -#: apt-pkg/cdrom.cc:734 -#, c-format +#: cmdline/apt-get.cc:1352 +#, fuzzy, c-format msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" msgstr "" -"找到了 %zu 个软件包索引、%zu 个源代码包索引、%zu 个翻译索引和 %zu 个数字签" -"名\n" +"由于无法找到符合要求的软件包 %3$s 的可用版本,因此不能满足 %2$s 所要求的 " +"%1$s 依赖关系" -#: apt-pkg/cdrom.cc:744 +#: cmdline/apt-get.cc:1358 +#, fuzzy, c-format msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" -"无法确定任何包文件的位置,可能这不是一张 Debian 盘片或者是选择了错误的硬件构" -"架。" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "由于无法找到软件包 %3$s ,因此不能满足 %2$s 所要求的 %1$s 依赖关系" -#: apt-pkg/cdrom.cc:771 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Found label '%s'\n" -msgstr "找到标签 '%s'\n" - -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "这不是一个有效的名字,请重试。\n" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "无法满足 %2$s 所要求 %1$s 依赖关系:%3$s" -#: apt-pkg/cdrom.cc:817 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"这张盘片现在的名字是:\n" -"“%s”\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "不能满足软件包 %s 所要求的构建依赖关系。" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "正在复制软件包列表……" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "无法处理构建依赖关系" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "正在写入新的源列表\n" +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "正在连接 %s (%s)" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "对应于该盘片的软件源设置项是:\n" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "支持的模块:" -#: apt-pkg/algorithms.cc:265 -#, c-format +#: cmdline/apt-get.cc:1633 +#, fuzzy msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "软件包 %s 需要重新安装,但是我无法找到相应的安装文件。" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" +msgstr "" +"用法: apt-get [选项] 命令\n" +"    apt-get [选项] install|remove 软件包1 [软件包2 ...]\n" +"    apt-get [选项] source 软件包1 [软件包2 ...]\n" +"\n" +"apt-get 提供了一个用于下载和安装软件包的简易命令行界面。\n" +"最常用命令是 update 和 install。\n" +"\n" +"命令:\n" +" update - 取回更新的软件包列表信息\n" +" upgrade - 进行一次升级\n" +" install - 安装新的软件包(注:软件包名称是 libc6 而非 libc6.deb)\n" +" remove - 卸载软件包\n" +" autoremove - 卸载所有自动安装且不再使用的软件包\n" +" purge - 卸载并清除软件包的配置\n" +" source - 下载源码包文件\n" +" build-dep - 为源码包配置所需的编译依赖关系\n" +" dist-upgrade - 发布版升级,见 apt-get(8)\n" +" dselect-upgrade - 根据 dselect 的选择来进行升级\n" +" clean - 删除所有已下载的包文件\n" +" autoclean - 删除老版本的已下载的包文件\n" +" check - 核对以确认系统的依赖关系的完整性\n" +" markauto - 标记指定的软件包为自动安装\n" +" unmarkauto - 标记指定的软件包为手动安装\n" +"\n" +"选项:\n" +" -h 本帮助文档。\n" +" -q 让输出可作为日志 - 不显示进度\n" +" -qq 除了错误外,什么都不输出\n" +" -d 仅仅下载 - 【不】安装或解开包文件\n" +" -s 不作实际操作。只是依次模拟执行命令\n" +" -y 对所有询问都回答是(Yes),同时不作任何提示\n" +" -f 当出现破损的依赖关系时,程序将尝试修正系统\n" +" -m 当有包文件无法找到时,程序仍尝试继续执行\n" +" -u 显示已升级的软件包列表\n" +" -b 在下载完源码包后,编译生成相应的软件包\n" +" -V 显示详尽的版本号\n" +" -c=? 读取指定配置文件\n" +" -o=? 设置任意指定的配置选项,例如 -o dir::cache=/tmp\n" +"请查阅 apt-get(8)、sources.list(5) 和 apt.conf(5)的参考手册\n" +"以获取更多信息和选项。\n" +" 本 APT 具有超级牛力。\n" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "要下载源代码,必须指定至少一个对应的软件包" + +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"错误,pkgProblemResolver::Resolve 发生故障,这可能是有软件包被要求保持现状的" -"缘故。" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." +#: cmdline/apt-helper.cc:66 +msgid "" +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"无法修正错误,因为您要求某些软件包保持现状,就是它们破坏了软件包间的依赖关" -"系。" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "正在分析软件包的依赖关系树" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "但是它还没有被安装" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "候选版本" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s 被设置为手动安装。\n" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "生成依赖关系" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s 被设置为手动安装。\n" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "正在读取状态信息" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s 已经是最新的版本了。\n" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "无法打开状态文件 %s" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s 已经是最新的版本了。\n" -#: apt-pkg/depcache.cc:256 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "无法写入临时状态文件 %s" +msgid "Waited for %s but it wasn't there" +msgstr "等待子进程 %s 的退出,但是它并不存在" -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "无法解析软件包文件 %s (1)" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "%s 已设置为手动安装。\n" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "无法解析软件包文件 %s (2)" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "无法打开 %s" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "未找到“%2$s”的“%1$s”发布版本" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "未找到“%2$s”的“%1$s”版本" +#: cmdline/apt-mark.cc:392 +msgid "" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." +msgstr "" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "未发现软件包 %s" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/cacheset.cc:603 +#: methods/cdrom.cc:203 #, c-format -msgid "Couldn't find task '%s'" -msgstr "无法找到任务 %s" +msgid "Unable to read the cdrom database %s" +msgstr "无法读取盘片数据库 %s" -#: apt-pkg/cacheset.cc:609 +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" +msgstr "" +"请使用 apt-cdrom,通过它就可以让 APT 能识别该盘片。apt-get upgdate 不能被用来" +"加入新的盘片。" + +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "错误的 CD-ROM" + +#: methods/cdrom.cc:249 #, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "无法按照正则表达式 %s 找到任何软件包" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "无法卸载现在挂载于 %s 的 CD-ROM,它可能正在使用中。" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "无法按照正则表达式 %s 找到任何软件包" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "找不到盘片。" -#: apt-pkg/cacheset.cc:626 +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "无法找到该文件" + +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "无法读取状态" + +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "无法设置文件的修改日期" + +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "无效的 URI,本地的 URI 不能以 // 开头" + +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "正在登录" + +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "无法获知对方主机名" + +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "无法获知本地主机名" + +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "无法从完全虚拟的软件包 %s 中选择版本" +msgid "The server refused the connection and said: %s" +msgstr "服务器拒绝了我们的连接,响应信息为:%s" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "USER 指令出错,服务器响应信息为:%s" + +#: methods/ftp.cc:232 #, c-format +msgid "PASS failed, server said: %s" +msgstr "PASS 指令出错,服务器响应信息为:%s" + +#: methods/ftp.cc:252 msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "因为软件包 %s 没有已安装或候选的版本,无法进行选择" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"您指定了代理服务器,但是没有登陆脚本,Acquire::ftp::ProxyLogin 设置为空。" -#: apt-pkg/cacheset.cc:647 +#: methods/ftp.cc:280 #, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "因为软件包 %s 是完全的虚拟软件包,无法选择它的最新版" +msgid "Login script command '%s' failed, server said: %s" +msgstr "登录脚本命令“%s”出错,服务器响应信息为:%s" -#: apt-pkg/cacheset.cc:655 +#: methods/ftp.cc:306 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "因为软件包 %s 没有候选版本,无法进行选择" +msgid "TYPE failed, server said: %s" +msgstr "TYPE 指令出错,服务器响应信息为:%s" + +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "连接超时" + +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "服务器关闭了连接" + +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "读错误" + +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "回应超出了缓存区大小。" + +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "协议有误" + +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "写出错" + +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "无法创建套接字" + +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "无法连接上数据套接字,连接超时" + +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "失败" + +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "无法连接被动模式的套接字。" + +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo 无法得到监听套接字" + +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "无法绑定套接字" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "因为软件包 %s 没有安装,无法选择它的已安装版本" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "无法在套接字上监听" -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "无法解析软件包仓库 Release 文件 %s" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "无法确定套接字的名字" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "软件包仓库 Release 文件 %s 内无组件章节信息" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "无法发出 PORT 指令" -#: apt-pkg/indexrecords.cc:117 +#: methods/ftp.cc:802 #, c-format -msgid "No Hash entry in Release file %s" -msgstr "软件包仓库 Release 文件 %s 内无哈希条目" +msgid "Unknown address family %u (AF_*)" +msgstr "无法识别的地址族 %u (AF_*)" -#: apt-pkg/indexrecords.cc:130 +#: methods/ftp.cc:811 #, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "软件包仓库 Release 文件 %s 内 Valid-Until 条目无效" +msgid "EPRT failed, server said: %s" +msgstr "EPRT 指令出错,服务器响应信息为:%s" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "软件包仓库 Release 文件 %s 内 Date 条目无效" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "数据套接字连接超时" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(URI 解析)" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "无法接受连接" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误([选项] 无法解析)" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "把文件加入哈希表时出错" -#: apt-pkg/sourcelist.cc:173 +#: methods/ftp.cc:890 #, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误([选项] 太短)" +msgid "Unable to fetch file, server said '%s'" +msgstr "无法获取文件,服务器响应信息为“%s”" -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误([%3$s] 不是一个任务)" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "数据套接字超时" -#: apt-pkg/sourcelist.cc:190 +#: methods/ftp.cc:935 #, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误([%3$s] 没有键)" +msgid "Data transfer failed, server said '%s'" +msgstr "数据传送出错,服务器响应信息为“%s”" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误([%3$s] 键 %4$s 没有值)" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "查询" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行的格式有误(URI)" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "无法调用 " -#: apt-pkg/sourcelist.cc:208 +#: methods/connect.cc:76 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(发行版)" +msgid "Connecting to %s (%s)" +msgstr "正在连接 %s (%s)" -#: apt-pkg/sourcelist.cc:211 +#: methods/connect.cc:87 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(URI 解析)" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/sourcelist.cc:217 +#: methods/connect.cc:94 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(独立发行版)" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "无法为 %s 创建套接字(f=%u t=%u p=%u)" -#: apt-pkg/sourcelist.cc:224 +#: methods/connect.cc:100 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(发行版解析)" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "无法发起与 %s:%s (%s) 的连接" -#: apt-pkg/sourcelist.cc:335 +#: methods/connect.cc:108 #, c-format -msgid "Opening %s" -msgstr "正在打开 %s" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "无法连接上 %s:%s (%s),连接超时" -#: apt-pkg/sourcelist.cc:371 +#: methods/connect.cc:126 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "在源列表 %2$s 中第 %1$u 行的格式有误(类型)" +msgid "Could not connect to %s:%s (%s)." +msgstr "无法连接上 %s:%s (%s)。" -#: apt-pkg/sourcelist.cc:375 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "无法识别在源列表 %3$s 里,第 %2$u 行中的软件包类别“%1$s”" - -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "无法识别在源列表 %3$s 里,第 %2$u 行中的软件包类别“%1$s”" +msgid "Connecting to %s" +msgstr "正在连接 %s" -#: apt-pkg/deb/dpkgpm.cc:95 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Installing %s" -msgstr "正在安装 %s" +msgid "Could not resolve '%s'" +msgstr "无法解析域名“%s”" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#: methods/connect.cc:205 #, c-format -msgid "Configuring %s" -msgstr "正在配置 %s" +msgid "Temporary failure resolving '%s'" +msgstr "暂时不能解析域名“%s”" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "正在删除 %s" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "解析“%s:%s”时,出现了某些故障(%i - %s)" -#: apt-pkg/deb/dpkgpm.cc:98 +#: methods/connect.cc:211 #, c-format -msgid "Completely removing %s" -msgstr "完全删除 %s" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "解析“%s:%s”时,出现了某些故障(%i - %s)" -#: apt-pkg/deb/dpkgpm.cc:99 +#: methods/connect.cc:258 #, c-format -msgid "Noting disappearance of %s" -msgstr "注意到 %s 已经消失" +msgid "Unable to connect to %s:%s:" +msgstr "不能连接到 %s:%s:" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "执行安装后执行的触发器 %s" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "内部错误:签名正确无误,但是无法确认密钥指纹?!" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "目录 %s 缺失" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "至少发现一个无效的签名。" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "无法打开文件 %s" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "无法运行 gpgv 以验证签名(您安装了 gpgv 吗?)" -#: apt-pkg/deb/dpkgpm.cc:989 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format -msgid "Preparing %s" -msgstr "正在准备 %s" +msgid "" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "正在解压缩 %s" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "运行 gpgv 时发生未知错误" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "正在准备配置 %s" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "下列签名无效:\n" -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "已安装 %s" +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "由于没有公钥,无法验证下列签名:\n" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "正在准备 %s 的删除操作" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "已删除 %s" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "写入文件出错" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "正在准备完全删除 %s" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "从服务器读取数据时出错,对方关闭了连接" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "完全删除了 %s" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "从服务器读取数据出错" + +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "写入文件出错" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "select 调用出错" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "无法写入 %s" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "连接超时" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "写输出文件时出错" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "正在等待报头" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 -#, c-format -msgid "Waited for %s but it wasn't there" -msgstr "等待子进程 %s 的退出,但是它并不存在" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "错误的报头行" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "该 HTTP 服务器发送了一个无效的应答报头" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "由于已经达到 MaxReports 限制,没有写入 apport 报告。" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "该 HTTP 服务器发送了一个无效的 Content-Length 报头" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "依赖问题 - 保持未配置" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "该 HTTP 服务器发送了一个无效的 Content-Range 报头" -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "因为错误消息指示这是由于上一个问题导致的错误,没有写入 apport 报告。" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "该 HTTP 服务器的 range 支持不正常" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "因为错误消息指示这是由于磁盘已满,没有写入 apport 报告。" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "无法识别的日期格式" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "因为错误消息指示这是由于内存不足,没有写入 apport 报告。" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "错误的报头数据" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "因为错误消息指示这是由于磁盘已满,没有写入 apport 报告。" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "连接失败" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "因为错误消息指示这是一个 dpkg I/O 错误,没有写入 apport 报告。" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "内部错误" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "无法锁定管理目录(%s),是否有其他进程正占用它?" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "无法对状态列表目录加锁(%s),请查看您是否正以 root 用户运行?" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "内部错误,InstallPackages 被用在了无法安装的软件包上!" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "dpkg 被中断,您必须手工运行 %s 解决此问题。" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "有软件包需要被卸载,但是卸载动作被程序设置所禁止。" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "未锁定" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "内部错误,Ordering 未能完成" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 -#, c-format -msgid "%lid %lih %limin %lis" -msgstr "%li天 %li小时 %li分 %li秒" +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "怪了……文件大小不符,请发信给 apt@packages.debian.org 吧" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "%lih %limin %lis" -msgstr "%li小时 %li分 %li秒" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "需要下载 %sB/%sB 的软件包。\n" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "%limin %lis" -msgstr "%li分 %li秒" +msgid "Need to get %sB of archives.\n" +msgstr "需要下载 %sB 的软件包。\n" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "%lis" -msgstr "%li秒" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "解压缩后会消耗掉 %sB 的额外空间。\n" -#: apt-pkg/contrib/strutl.cc:1243 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "Selection %s not found" -msgstr "找不到您选则的 %s" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "解压缩后将会空出 %sB 的空间。\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:200 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "由于文件系统为只读,因而无法使用文件锁 %s" +msgid "You don't have enough free space in %s." +msgstr "您在 %s 上没有足够的可用空间。" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "无法打开锁文件 %s" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "碰到了一些问题,您使用了 -y 选项,但是没有用 --force-yes" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "无法在 nfs 文件系统上使用文件锁 %s" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "虽然您指定了仅执行常规操作,但这不是个常规操作。" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "无法获得锁 %s" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "是,按我说的做!" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: apt-private/private-install.cc:222 #, c-format -msgid "List of files can't be created as '%s' is not a directory" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" +"您的操作会导致潜在的危害。\n" +"若还想继续的话,就输入下面的短句“%s”\n" +" ?] " -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "中止执行。" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "您希望继续执行吗?" + +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "有一些文件无法下载" + +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"有几个软件包无法下载,您可以运行 apt-get update 或者加上 --fix-missing 的选项" +"再试试?" + +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "目前还不支持 --fix-missing 和介质交换" + +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "无法更正缺少的软件包。" + +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "中止安装。" + +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "以下软件包因为文件已被其他软件包覆盖而消失:" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "注意:这是自动被 dpkg 有意完成的。" + +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "我们不应该进行删除,无法启动自动删除器" -#: apt-pkg/contrib/fileutl.cc:421 -#, c-format +#: apt-private/private-install.cc:499 msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" -msgstr "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "似乎自动卸载工具损坏了一些软件,这不应该发生。请向 apt 提交错误报告。" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "子进程 %s 发生了段错误" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "下列信息可能会对解决问题有所帮助:" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "子进程 %s 收到信号 %u。" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "内部错误,自动卸载工具坏事了" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "子进程 %s 返回了一个错误号 (%u)" +#: apt-private/private-install.cc:513 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "下列软件包是自动安装的并且现在不需要了:" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#: apt-private/private-install.cc:517 #, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "子进程 %s 异常退出" - -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "写出错" +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "%lu 个自动安装的的软件包现在已不再需要了。\n" -#: apt-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "关闭 gzip %s 文件出错" +#: apt-private/private-install.cc:519 +#, fuzzy +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "使用'apt-get autoremove'来卸载它们" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "无法打开文件 %s" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "您可能需要运行“apt-get -f install”来纠正下列错误:" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, c-format -msgid "Could not open file descriptor %d" -msgstr "无法打开文件描述符 %d" +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"有未能满足的依赖关系。请尝试不指明软件包的名字来运行“apt-get -f install”(也可" +"以指定一个解决办法)。" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "无法创建子进程的 IPC 管道" +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"有一些软件包无法被安装。如果您用的是 unstable 发行版,这也许是\n" +"因为系统无法达到您要求的状态造成的。该版本中可能会有一些您需要的软件\n" +"包尚未被创建或是它们已被从新到(Incoming)目录移出。" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "无法执行压缩程序" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "破损的软件包" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "读错误" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "将会安装下列额外的软件包:" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "读取文件出错,还剩 %lu 字节没有读出" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "建议安装的软件包:" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "写入文件出错,还剩 %lu 字节没有保存" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "推荐安装的软件包:" -#: apt-pkg/contrib/fileutl.cc:1915 +#: apt-private/private-install.cc:825 #, c-format -msgid "Problem closing the file %s" -msgstr "关闭文件 %s 出错" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "忽略了 %s,它已经被安装而且没有指定要升级。\n" -#: apt-pkg/contrib/fileutl.cc:1927 +#: apt-private/private-install.cc:829 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "重命名文件 %s 为 %s 出错" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "忽略了 %s,它已经被安装而且仅请求了升级。\n" -#: apt-pkg/contrib/fileutl.cc:1938 +#: apt-private/private-install.cc:841 #, c-format -msgid "Problem unlinking the file %s" -msgstr "用 unlink 删除文件 %s 出错" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "同步文件出错" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "不能重新安装 %s,因为无法下载它。\n" -#: apt-pkg/contrib/progress.cc:148 +#: apt-private/private-install.cc:846 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... 有错误!" +msgid "%s is already the newest version.\n" +msgstr "%s 已经是最新的版本了。\n" -#: apt-pkg/contrib/progress.cc:150 +#: apt-private/private-install.cc:894 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... 完成" - -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "为 %3$s 选定了版本 %1$s (%2$s)\n" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#: apt-private/private-install.cc:899 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... 完成" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "无法 mmap 一个空文件" - -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "无法为复制文件描述符 %i" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "为 %3$s 选定了版本 %1$s (%2$s)\n" -#: apt-pkg/contrib/mmap.cc:119 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 #, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "无法 mmap %lu 字节的数据" - -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "无法关闭 mmap" - -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "无法同步 mmap " - -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "无法 mmap %lu 字节的数据" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "软件包 %s 还未安装,因而不会被卸载\n" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "无法截断文件" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "软件包 %s 还未安装,因而不会被卸载\n" -#: apt-pkg/contrib/mmap.cc:341 -#, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" +#: apt-private/private-list.cc:131 +msgid "Listing" msgstr "" -"动态 MMap 没有空间了。请增大 APT::Cache-Start 的大小。当前值:%lu。(man 5 " -"apt.conf)" - -#: apt-pkg/contrib/mmap.cc:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "无法增加 MMap 的大小,因为已经达到 %lu 字节的限制。" - -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "无法增加 MMap 大小,因为用户已禁用自动增加。" -#: apt-pkg/contrib/cdromutl.cc:65 +#: apt-private/private-list.cc:164 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "无法读取文件系统挂载点 %s 的状态" - -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "无法读取盘片的状态" +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "无法识别的类型缩写:“%c”" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "正在更正依赖关系..." -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "正在打开配置文件 %s" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " 失败。" -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "语法错误 %s:%u:配置小节没有以名字开头" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "无法更正依赖关系" -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "语法错误 %s:%u:标签格式有误" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "无法最小化要升级的软件包集合" -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "语法错误 %s:%u:配置值后有多余的无意义数据" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " 完成" -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "语法错误 %s:%u:只能在顶层配置文件中使用指示" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "您也许需要运行“apt-get -f install”来修正上面的错误。" -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "语法错误 %s:%u:太多的嵌套 include 命令" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "不能满足依赖关系。不妨试一下 -f 选项。" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "语法错误 %s:%u:Included from here" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "语法错误 %s:%u:不支持的指令“%s”" +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [已安装]" -#: apt-pkg/contrib/configuration.cc:900 -#, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "语法错误 %s:%u:clean 指令需要一个选项树作为参数" +#: apt-private/private-output.cc:238 +#, fuzzy +msgid "[installed,local]" +msgstr " [已安装]" -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "语法错误 %s:%u:文件尾部有多余的无意义的数据" +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, c-format -msgid "No keyring installed in %s." -msgstr "%s 中没有安装密钥环。" +#: apt-private/private-output.cc:243 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [已安装]" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "未知的命令行选项“%c” [来自 %s]" +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr " [已安装]" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-private/private-output.cc:249 #, c-format -msgid "Command line option %s is not understood" -msgstr "无法识别命令行选项 %s" +msgid "[upgradable from: %s]" +msgstr "" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "命令行选项 %s 不是布尔值" +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: apt-private/private-output.cc:435 #, c-format -msgid "Option %s requires an argument." -msgstr "选项 %s 要求有一个参数" +msgid "but %s is installed" +msgstr "但是 %s 已经安装" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-private/private-output.cc:437 #, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "选项 %s:配置项后必须包含有形如“=<变量>”的具体指定" +msgid "but %s is to be installed" +msgstr "但是 %s 正要被安装" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "选项 %s 要求有一个整数作为参数,而不是“%s”" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "但无法安装它" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "选项“%s”太长" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "但是它是虚拟软件包" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "不能识别参数 %s,请用 true 或 false" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "但是它还没有被安装" -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "无效的操作 %s" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "但是它将不会被安装" -#: cmdline/apt-cache.cc:149 -#, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "版本为 %2$s 的软件包 %1$s 有未满足的依赖关系:\n" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " 或" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "软件包名称总数:" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "下列软件包有未满足的依赖关系:" -#: cmdline/apt-cache.cc:279 -msgid "Total package structures: " -msgstr "全部软件包结构:" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "下列【新】软件包将被安装:" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " 普通软件包:" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "下列软件包将被【卸载】:" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " 完全虚拟软件包:" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "下列软件包的版本将保持不变:" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " 单虚拟软件包:" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "下列软件包将被升级:" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " 混合虚拟软件包:" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "下列软件包将被【降级】:" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " 缺失:" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "下列被要求保持版本不变的软件包将被改变:" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "按版本共计:" +#: apt-private/private-output.cc:668 +#, c-format +msgid "%s (due to %s) " +msgstr "%s (是由于 %s) " -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "按不同的说明共计:" +#: apt-private/private-output.cc:676 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"【警告】:下列基础软件包将被卸载。\n" +"请勿尝试,除非您确实知道您在做什么!" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "按依赖关系共计:" +#: apt-private/private-output.cc:707 +#, c-format +msgid "%lu upgraded, %lu newly installed, " +msgstr "升级了 %lu 个软件包,新安装了 %lu 个软件包," -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "按版本/文件关系共计:" +#: apt-private/private-output.cc:711 +#, c-format +msgid "%lu reinstalled, " +msgstr "重新安装了 %lu 个软件包," -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "按说明/文件关系共计:" +#: apt-private/private-output.cc:713 +#, c-format +msgid "%lu downgraded, " +msgstr "降级了 %lu 个软件包," -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "提供映射共计:" +#: apt-private/private-output.cc:715 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "要卸载 %lu 个软件包,有 %lu 个软件包未被升级。\n" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "Glob 字串共计:" +#: apt-private/private-output.cc:719 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "有 %lu 个软件包没有被完全安装或卸载。\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "依赖关系版本名所占空间共计:" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "Slack 空间共计:" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "" + +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "总占用空间:" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Package file %s is out of sync." -msgstr "软件包文件 %s 尚未同步。" +msgid "Regex compilation error - %s" +msgstr "编译正则表达式时出错 - %s" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "没有发现匹配的软件包" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr " update 命令不需要参数" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "您必须明确地给出至少一个表达式" +#: apt-private/private-update.cc:90 +#, c-format +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "软件包文件:" +#: apt-private/private-show.cc:156 +#, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "缓存尚未同步,无法交差引证(x-ref)一个软件包文件" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "被锁定的软件包:" +#: apt-private/private-main.cc:32 +msgid "" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" +msgstr "" +"注意:这只是模拟!\n" +"   apt-get 需要 root 特权进行实际的执行。\n" +"   同时请记住此时并未锁定,所以请勿完全相信当前的情况!" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(没有找到)" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "【警告】:下列软件包不能通过验证!" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " 已安装:" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "忽略了认证警告。\n" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " 候选软件包:" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "有些软件包不能通过验证" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(无)" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "不经验证就安装这些软件包吗?" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " 软件包锁:" +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 +#, c-format +msgid "Failed to fetch %s %s\n" +msgstr "无法下载 %s %s\n" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " 版本列表:" +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "无法将 %s 重命名为 %s" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-private/private-sources.cc:70 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s,用于 %s 构架,编译于 %s %s\n" - -#: cmdline/apt-cache.cc:1749 -#, fuzzy -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" -"用法: apt-cache [选项] 命令\n" -"    apt-cache [选项] add 文件1 [文件2 ...]\n" -"    apt-cache [选项] showpkg 软件包1 [软件包2 ...]\n" -"    apt-cache [选项] showsrc 软件包1 [软件包2 ...]\n" -"\n" -"apt-cache 是一个底层的工具,我们用它来操纵 APT 的二进制\n" -"缓存文件,也用来在那些文件中查询相关信息\n" -"\n" -"命令:\n" -" add - 向源缓存加入一个软件包文件\n" -" gencaches - 同时生成软件包和源代码包的缓存\n" -" showpkg - 显示某个软件包的全面信息\n" -" showsrc - 显示源文件的各项记录\n" -" stats - 显示基本的统计信息\n" -" dump - 简要显示整个缓存文件的内容\n" -" dumpavail - 把所有有效的包文件列表打印到标准输出\n" -" unmet - 显示所有未满足的依赖关系\n" -" search - 根据正则表达式搜索软件包列表\n" -" show - 以便于阅读的格式介绍该软件包\n" -" showauto - 显示自动安装的软件包的列表\n" -" depends - 显示该软件包的依赖关系信息\n" -" rdepends - 显示所有依赖于该软件包的软件包名字\n" -" pkgnames - 列出所有软件包的名字\n" -" dotty - 生成可用 GraphViz 处理的软件包关系图\n" -" xvcg - 生成可用 xvcg 处理的软件包的关系图\n" -" policy - 显示软件包的安装设置状态\n" -"\n" -"选项:\n" -" -h 本帮助文档。\n" -" -p=? 软件包的缓存。\n" -" -s=? 源代码包的缓存。\n" -" -q 关闭进度显示。\n" -" -i 仅为 unmet 命令显示重要的依赖关系。\n" -" -c=? 读取指定配置文件\n" -" -o=? 设置任意指定的配置选项,例如 -o dir::cache=/tmp\n" -"若要了解更多信息,您还可以查阅 apt-cache(8) 和 apt.conf(5) 参考手册。\n" - -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "请给这张盘片起个名字,比如“Debian 5.0.3 Disk 1”" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "请把盘片插入驱动器再按回车键" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "无法将 %s 挂载到 %s" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "正在对升级进行计算... " -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." -msgstr "" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "完成" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "请对您的盘片套件中的其它盘片重复相同的操作。" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "命中 " -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "参数没有成对" +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "获取:" -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -msgstr "" -"用法:apt-config [选项] 命令\n" -"\n" -"apt-config 是一个用于读取APT 配置文件的简单工具\n" -"\n" -"命令:\n" -" shell - Shell 模式\n" -" dump - 显示配置文件\n" -"\n" -"选项:\n" -" -h 本帮助文本。\n" -" -c=? 读取指定的配置文件\n" -" -o=? 设置任意指定的配置选项,例如:-o dir::cache=/tmp\n" +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "忽略 " -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "无法按照正则表达式 %s 找到任何软件包" +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "错误 " -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "无法按照正则表达式 %s 找到任何软件包" +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "下载 %sB,耗时 %s (%sB/s)\n" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "无法按照正则表达式 %s 找到任何软件包" +#: apt-private/acqprogress.cc:236 +#, c-format +msgid " [Working]" +msgstr " [执行中]" -#: cmdline/apt-get.cc:367 +#: apt-private/acqprogress.cc:297 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "选择 %s 作为源代码包而非 %s\n" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"更换介质:请把标有\n" +"“%s”\n" +"的盘片插入驱动器“%s”再按回车键\n" -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "忽略不可用的 %2$s 软件包的 %1$s 版" +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 +#, c-format +msgid "Unable to read %s" +msgstr "无法读取 %s" -#: cmdline/apt-get.cc:454 +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 #, c-format -msgid "Couldn't find package %s" -msgstr "无法找到软件包 %s" +msgid "Unable to change to %s" +msgstr "无法切换工作目录到 %s" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s 被设置为手动安装。\n" +msgid "No mirror file '%s' found " +msgstr "没有找到镜像文件 %s" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 +#, fuzzy, c-format +msgid "Can not read mirror file '%s'" +msgstr "没有找到镜像文件 %s" + +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "没有找到镜像文件 %s" + +#: methods/mirror.cc:445 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s 被设置为手动安装。\n" +msgid "[Mirror: %s]" +msgstr "[镜像:%s]" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "无法为子进程创建 IPC 管道" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "内部错误,问题解决工具坏事了" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "连接被永久关闭" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "无法锁定下载目录" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "错误的默认设置!" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "要下载源代码,必须指定至少一个对应的软件包" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "按回车键继续。" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 -#, c-format -msgid "Unable to find a source package for %s" -msgstr "无法找到与 %s 对应的源代码包" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "您想要删除之前下载的所有 .deb 文件吗?" -#: cmdline/apt-get.cc:786 -#, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" -msgstr "" -"提示:%s 的打包工作被维护于以下位置的 %s 版本控制系统中:\n" -"%s\n" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "在解包时发生了一些错误。已经安装的软件包" -#: cmdline/apt-get.cc:791 -#, fuzzy, c-format +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "将被配置。这个操作可能会导致出现重复的错误" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "或一些由于依赖关系不能满足所产生的错误。这个问题不大,只有" + +#: dselect/install:105 msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" -msgstr "" -"请使用:\n" -"bzr get %s\n" -"获得该软件包的最近更新(可能尚未正式发布)。\n" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "这个提示之前的错误消息才值得您注意。请更正它们,然后再次执行 [I]nstall" -#: cmdline/apt-get.cc:843 -#, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "忽略已下载过的文件“%s”\n" +#: dselect/update:30 +msgid "Merging available information" +msgstr "正在合并可用信息" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "无法获知您在 %s 上的可用空间" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "把 DropNode 用在了仍在链表中的节点上" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "您在 %s 上没有足够的可用空间" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "无法定位哈希表元素!" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 -#, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "需要下载 %sB/%sB 的源代码包。\n" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "无法分配转移项" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "需要下载 %sB 的源代码包。\n" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "内部错误,出现在 AddDiversion" -#: cmdline/apt-get.cc:902 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Fetch source %s\n" -msgstr "下载源代码 %s\n" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "有一些包文件无法下载。" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "尝试覆盖一个转移项,%s -> %s 和 %s/%s" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "下载完毕,目前是“仅下载”模式" +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "添加了两个转移项 %s-> %s" -#: cmdline/apt-get.cc:950 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "忽略已经被解包到 %s 目录的源代码包\n" +msgid "Duplicate conf file %s/%s" +msgstr "重复的配置文件 %s/%s" -#: cmdline/apt-get.cc:962 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "运行解包的命令“%s”出错。\n" +msgid "The path %s is too long" +msgstr "路径名 %s 太长" -#: cmdline/apt-get.cc:963 +#: apt-inst/extract.cc:132 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "请检查是否安装了“dpkg-dev”软件包。\n" +msgid "Unpacking %s more than once" +msgstr "%s 被解包了不只一次" -#: cmdline/apt-get.cc:991 +#: apt-inst/extract.cc:142 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "执行构造软件包命令“%s”失败。\n" +msgid "The directory %s is diverted" +msgstr "目录 %s 已被转移" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "子进程出错" +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "该软件包正尝试写入转移对象 %s/%s" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "要检查生成软件包的构建依赖关系,必须指定至少一个软件包" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "该转移路径太长" -#: cmdline/apt-get.cc:1054 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 #, c-format -msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" -msgstr "" +msgid "Failed to stat %s" +msgstr "无法获得 %s 的状态" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "无法获得 %s 的构建依赖关系信息" +msgid "Failed to rename %s to %s" +msgstr "无法将 %s 重命名为 %s" -#: cmdline/apt-get.cc:1101 +#: apt-inst/extract.cc:249 #, c-format -msgid "%s has no build depends.\n" -msgstr " %s 没有构建依赖关系信息。\n" +msgid "The directory %s is being replaced by a non-directory" +msgstr "目录 %s 要被一个非目录的文件替换" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "由于无法找到软件包 %3$s ,因此不能满足 %2$s 所要求的 %1$s 依赖关系" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "无法在其散列桶中分配节点" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "路径名太长" -#: cmdline/apt-get.cc:1289 +#: apt-inst/extract.cc:421 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "由于无法找到软件包 %3$s ,因此不能满足 %2$s 所要求的 %1$s 依赖关系" +msgid "Overwrite package match with no version for %s" +msgstr "用来覆盖的软件包不属于 %s 的任何版本" -#: cmdline/apt-get.cc:1312 +#: apt-inst/extract.cc:438 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "无法满足 %2$s 所要求 %1$s 依赖关系:已安装的软件包 %3$s 太新" - -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"由于无法找到符合要求的软件包 %3$s 的可用版本,因此不能满足 %2$s 所要求的 " -"%1$s 依赖关系" - -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "由于无法找到软件包 %3$s ,因此不能满足 %2$s 所要求的 %1$s 依赖关系" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "文件 %s/%s 会覆盖属于软件包 %s 中的同名文件" -#: cmdline/apt-get.cc:1380 +#: apt-inst/extract.cc:498 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "无法满足 %2$s 所要求 %1$s 依赖关系:%3$s" +msgid "Unable to stat %s" +msgstr "无法读取 %s 的状态" -#: cmdline/apt-get.cc:1395 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "不能满足软件包 %s 所要求的构建依赖关系。" +msgid "Failed to write file %s" +msgstr "无法写入文件 %s" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "无法处理构建依赖关系" +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "无法关闭文件 %s" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "正在连接 %s (%s)" +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "这不是一个有效的 DEB 包文件,其包内遗漏了“%s”" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "支持的模块:" +#: apt-inst/deb/debfile.cc:132 +#, c-format +msgid "Internal error, could not locate member %s" +msgstr "内部错误,无法定位包内文件 %s" -#: cmdline/apt-get.cc:1632 -#, fuzzy -msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" -msgstr "" -"用法: apt-get [选项] 命令\n" -"    apt-get [选项] install|remove 软件包1 [软件包2 ...]\n" -"    apt-get [选项] source 软件包1 [软件包2 ...]\n" -"\n" -"apt-get 提供了一个用于下载和安装软件包的简易命令行界面。\n" -"最常用命令是 update 和 install。\n" -"\n" -"命令:\n" -" update - 取回更新的软件包列表信息\n" -" upgrade - 进行一次升级\n" -" install - 安装新的软件包(注:软件包名称是 libc6 而非 libc6.deb)\n" -" remove - 卸载软件包\n" -" autoremove - 卸载所有自动安装且不再使用的软件包\n" -" purge - 卸载并清除软件包的配置\n" -" source - 下载源码包文件\n" -" build-dep - 为源码包配置所需的编译依赖关系\n" -" dist-upgrade - 发布版升级,见 apt-get(8)\n" -" dselect-upgrade - 根据 dselect 的选择来进行升级\n" -" clean - 删除所有已下载的包文件\n" -" autoclean - 删除老版本的已下载的包文件\n" -" check - 核对以确认系统的依赖关系的完整性\n" -" markauto - 标记指定的软件包为自动安装\n" -" unmarkauto - 标记指定的软件包为手动安装\n" -"\n" -"选项:\n" -" -h 本帮助文档。\n" -" -q 让输出可作为日志 - 不显示进度\n" -" -qq 除了错误外,什么都不输出\n" -" -d 仅仅下载 - 【不】安装或解开包文件\n" -" -s 不作实际操作。只是依次模拟执行命令\n" -" -y 对所有询问都回答是(Yes),同时不作任何提示\n" -" -f 当出现破损的依赖关系时,程序将尝试修正系统\n" -" -m 当有包文件无法找到时,程序仍尝试继续执行\n" -" -u 显示已升级的软件包列表\n" -" -b 在下载完源码包后,编译生成相应的软件包\n" -" -V 显示详尽的版本号\n" -" -c=? 读取指定配置文件\n" -" -o=? 设置任意指定的配置选项,例如 -o dir::cache=/tmp\n" -"请查阅 apt-get(8)、sources.list(5) 和 apt.conf(5)的参考手册\n" -"以获取更多信息和选项。\n" -" 本 APT 具有超级牛力。\n" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "不能解析的主控文件" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "要下载源代码,必须指定至少一个对应的软件包" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "无效的归档签名" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "读取归档成员文件头出错" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" -msgstr "" +#: apt-inst/contrib/arfile.cc:96 +#, c-format +msgid "Invalid archive member header %s" +msgstr "归档文件中成员文件头 %s 无效" -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "但是它还没有被安装" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "归档文件中成员文件头无效" -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s 被设置为手动安装。\n" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "归档文件太短" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s 被设置为手动安装。\n" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "无法读取归档文件的数据头" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s 已经是最新的版本了。\n" +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "无法创建管道" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s 已经是最新的版本了。\n" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "无法执行 gzip" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s 已设置为手动安装。\n" +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "包文件已被损坏" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "无法打开 %s" +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar 的校验和不符,文件已损坏" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "未知的 TAR 数据头类型 %u,成员 %s" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" msgstr "" -#: cmdline/apt.cc:47 -msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "正在运行 dpkg" -#: methods/cdrom.cc:203 +#: apt-pkg/init.cc:146 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "无法读取盘片数据库 %s" +msgid "Packaging system '%s' is not supported" +msgstr "不支持“%s”打包系统" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"请使用 apt-cdrom,通过它就可以让 APT 能识别该盘片。apt-get upgdate 不能被用来" -"加入新的盘片。" +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "无法确定适合的打包系统类型" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "错误的 CD-ROM" +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#, c-format +msgid "Wrote %i records.\n" +msgstr "已写入 %i 条记录。\n" -#: methods/cdrom.cc:249 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "无法卸载现在挂载于 %s 的 CD-ROM,它可能正在使用中。" +msgid "Wrote %i records with %i missing files.\n" +msgstr "已写入 %i 条记录,并有 %i 个文件缺失。\n" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "找不到盘片。" +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "已写入 %i 条记录,并有 %i 个文件不匹配\n" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "无法找到该文件" +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "已写入 %i 条记录,并有 %i 个缺失,以及 %i 个文件不匹配\n" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "无法读取状态" +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "无法找到认证记录:%s" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "无法设置文件的修改日期" +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "Hash 校验和不符:%s" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "无效的 URI,本地的 URI 不能以 // 开头" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "无法解析或打开软件包的列表或是状态文件。" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "正在登录" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "您可能需要运行 apt-get update 来解决这些问题" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "无法获知对方主机名" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "无法读取源列表。" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "无法获知本地主机名" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "软件包缓存区是空的" -#: methods/ftp.cc:219 methods/ftp.cc:247 -#, c-format -msgid "The server refused the connection and said: %s" -msgstr "服务器拒绝了我们的连接,响应信息为:%s" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "软件包缓存文件损坏了" -#: methods/ftp.cc:225 -#, c-format -msgid "USER failed, server said: %s" -msgstr "USER 指令出错,服务器响应信息为:%s" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "软件包缓存区文件的版本不兼容" -#: methods/ftp.cc:232 +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "软件包缓存文件损坏了" + +#: apt-pkg/pkgcache.cc:174 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS 指令出错,服务器响应信息为:%s" +msgid "This APT does not support the versioning system '%s'" +msgstr "本程序目前不支持“%s”版本系统" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"您指定了代理服务器,但是没有登陆脚本,Acquire::ftp::ProxyLogin 设置为空。" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "软件包缓存区是为其它架构的硬件构建的" -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "登录脚本命令“%s”出错,服务器响应信息为:%s" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "依赖" -#: methods/ftp.cc:306 -#, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE 指令出错,服务器响应信息为:%s" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "预依赖" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "连接超时" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "建议" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "服务器关闭了连接" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "推荐" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "回应超出了缓存区大小。" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "冲突" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "协议有误" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "替换" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "无法创建套接字" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "废弃" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "无法连接上数据套接字,连接超时" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "破坏" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "失败" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "增强" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "无法连接被动模式的套接字。" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "重要" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo 无法得到监听套接字" +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "必需" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "无法绑定套接字" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "标准" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "无法在套接字上监听" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "可选" + +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "额外" + +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "无法找到获取软件包的渠道 %s 所需的驱动程序。" + +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "请检查是否安装了“dpkg-dev”软件包。\n" + +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "获取软件包的渠道 %s 所需的驱动程序没有正常启动。" + +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "请把标有“%s”的盘片插入驱动器“%s”再按回车键。" + +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "不支持索引文件类型“%s”" + +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "正在分析软件包的依赖关系树" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "无法确定套接字的名字" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "候选版本" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "无法发出 PORT 指令" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "生成依赖关系" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "无法识别的地址族 %u (AF_*)" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "正在读取状态信息" -#: methods/ftp.cc:811 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT 指令出错,服务器响应信息为:%s" +msgid "Failed to open StateFile %s" +msgstr "无法打开状态文件 %s" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "数据套接字连接超时" +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "无法写入临时状态文件 %s" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "无法接受连接" +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "无法重命名文件,%s (%s -> %s)。" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "把文件加入哈希表时出错" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Hash 校验和不符" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "无法获取文件,服务器响应信息为“%s”" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "大小不符" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "数据套接字超时" +#: apt-pkg/acquire-item.cc:173 +#, fuzzy +msgid "Invalid file format" +msgstr "无效的操作 %s" -#: methods/ftp.cc:935 +#: apt-pkg/acquire-item.cc:1573 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "数据传送出错,服务器响应信息为“%s”" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "查询" +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "无法解析软件包仓库 Release 文件 %s" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "无法调用 " +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "以下 ID 的密钥没有可用的公钥:\n" -#: methods/connect.cc:76 +#: apt-pkg/acquire-item.cc:1669 #, c-format -msgid "Connecting to %s (%s)" -msgstr "正在连接 %s (%s)" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: methods/connect.cc:87 +#: apt-pkg/acquire-item.cc:1691 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "冲突的发行版:%s (期望 %s 但得到 %s)" -#: methods/connect.cc:94 +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "无法为 %s 创建套接字(f=%u t=%u p=%u)" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"校验签名出错。此仓库未被更新,仍然使用以前的索引文件。GPG 错误:%s: %s\n" -#: methods/connect.cc:100 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "无法发起与 %s:%s (%s) 的连接" +msgid "GPG error: %s: %s" +msgstr "GPG 错误:%s: %s" -#: methods/connect.cc:108 +#: apt-pkg/acquire-item.cc:1859 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "无法连接上 %s:%s (%s),连接超时" +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"我无法找到一个对应 %s 软件包的文件。在这种情况下可能需要您手动修正这个软件" +"包。(缘于架构缺失)" -#: methods/connect.cc:126 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "无法连接上 %s:%s (%s)。" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 +#: apt-pkg/acquire-item.cc:1983 #, c-format -msgid "Connecting to %s" -msgstr "正在连接 %s" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "软件包的索引文件已损坏。找不到对应软件包 %s 的 Filename: 字段。" -#: methods/connect.cc:180 methods/connect.cc:199 -#, c-format -msgid "Could not resolve '%s'" -msgstr "无法解析域名“%s”" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "不支持索引文件类型“%s”" -#: methods/connect.cc:205 +#: apt-pkg/clean.cc:64 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "暂时不能解析域名“%s”" +msgid "Unable to stat %s." +msgstr "无法读取 %s 的状态。" -#: methods/connect.cc:209 +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "软件包暂存区使用的是不兼容的版本控制系统" + +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "解析“%s:%s”时,出现了某些故障(%i - %s)" +msgid "Error occurred while processing %s (%s%d)" +msgstr "处理 %s (FindPkg)时出错" -#: methods/connect.cc:211 +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "哇,软件包数量超出了本 APT 的处理能力。" + +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "哇,软件包版本数量超出了本 APT 的处理能力。" + +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "哇,软件包说明数量超出了本 APT 的处理能力。" + +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "哇,依赖关系数量超出了本 APT 的处理能力。" + +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "解析“%s:%s”时,出现了某些故障(%i - %s)" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "当处理文件依赖关系时,无法找到软件包 %s %s" -#: methods/connect.cc:258 +#: apt-pkg/pkgcachegen.cc:1211 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "不能连接到 %s:%s:" +msgid "Couldn't stat source package list %s" +msgstr "无法获取源软件包列表 %s 的状态" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "内部错误:签名正确无误,但是无法确认密钥指纹?!" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "正在读取软件包列表" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "至少发现一个无效的签名。" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "正在收集文件所提供的软件包" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "无法运行 gpgv 以验证签名(您安装了 gpgv 吗?)" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "无法写入 %s" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "无法读取或写入软件源缓存" + +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" -msgstr "" +msgid "Vendor block %s contains no fingerprint" +msgstr "软件提供者数据块内 %s 没有包含指纹信息" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "运行 gpgv 时发生未知错误" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "软件包列表的目录 %spartial 缺失。" + +#: apt-pkg/acquire.cc:91 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "仓库目录 %spartial 确实。" + +#: apt-pkg/acquire.cc:99 +#, c-format +msgid "Unable to lock directory %s" +msgstr "无法对目录 %s 加锁" + +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "正在下载第 %li 个文件,共 %li 个(还剩 %s 个)" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "下列签名无效:\n" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "正在下载第 %li 个文件,共 %li 个" -#: methods/gpgv.cc:231 +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#, fuzzy msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "由于没有公钥,无法验证下列签名:\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" +"有一些索引文件不能下载,它们可能被忽略了,也可能转而使用了旧的索引文件。" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "写入文件出错" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "从服务器读取数据时出错,对方关闭了连接" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "从服务器读取数据出错" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "写入文件出错" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "您必须在您的 sources.list 写入一些“软件源”的 URI" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "select 调用出错" +#: apt-pkg/policy.cc:83 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "连接超时" +#: apt-pkg/policy.cc:422 +#, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "首选项文件 %s 中发现有无效的记录,无 Package 字段头" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "写输出文件时出错" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "无法识别锁定的类型 %s" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "正在等待报头" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "没有为版本锁定指定优先级(或为零)" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "错误的报头行" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" +"无法立即对 %s 进行配置。请查看 man 5 apt.conf 中的 APT::Immediate-Configure " +"(%d)" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "该 HTTP 服务器发送了一个无效的应答报头" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "无法打开文件 %s" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "该 HTTP 服务器发送了一个无效的 Content-Length 报头" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"由于这次安装存在着一个 Conflicts/Pre-Depends 循环,因而需要暂时删除一个必不可" +"少的软件包 %s。通常并不建议这样做,但是如果您确实希望如此,可以打开 APT::" +"Force-LoopBreak 选项。" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "该 HTTP 服务器发送了一个无效的 Content-Range 报头" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "源列表 %2$s 的第 %1$u 行太长了。" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "该 HTTP 服务器的 range 支持不正常" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "正在卸载 CD-ROM...\n" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "无法识别的日期格式" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "现把 %s 作为了 CD-ROM 的挂载点\n" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "错误的报头数据" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "等待插入盘片……\n" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "连接失败" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "正在挂载 CD-ROM 文件系统……\n" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "内部错误" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "正在鉴别... " -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "正在对升级进行计算... " +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "已归档文件的标签:%s\n" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "完成" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "正在盘片中查找索引文件...\n" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/cdrom.cc:734 +#, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" +"找到了 %zu 个软件包索引、%zu 个源代码包索引、%zu 个翻译索引和 %zu 个数字签" +"名\n" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/cdrom.cc:744 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" +"无法确定任何包文件的位置,可能这不是一张 Debian 盘片或者是选择了错误的硬件构" +"架。" -#: apt-private/private-list.cc:164 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "正在更正依赖关系..." +msgid "Found label '%s'\n" +msgstr "找到标签 '%s'\n" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " 失败。" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "这不是一个有效的名字,请重试。\n" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "无法更正依赖关系" +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"这张盘片现在的名字是:\n" +"“%s”\n" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "无法最小化要升级的软件包集合" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "正在复制软件包列表……" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " 完成" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "正在写入新的源列表\n" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "您也许需要运行“apt-get -f install”来修正上面的错误。" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "对应于该盘片的软件源设置项是:\n" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "不能满足依赖关系。不妨试一下 -f 选项。" +#: apt-pkg/algorithms.cc:265 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "软件包 %s 需要重新安装,但是我无法找到相应的安装文件。" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" +"错误,pkgProblemResolver::Resolve 发生故障,这可能是有软件包被要求保持现状的" +"缘故。" -#: apt-private/private-output.cc:234 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [已安装]" - -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [已安装]" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "" +"无法修正错误,因为您要求某些软件包保持现状,就是它们破坏了软件包间的依赖关" +"系。" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" msgstr "" -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [已安装]" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [已安装]" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: apt-private/private-output.cc:249 -#, c-format -msgid "[upgradable from: %s]" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -#: apt-private/private-output.cc:253 -msgid "[residual-config]" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" msgstr "" -#: apt-private/private-output.cc:435 +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "but %s is installed" -msgstr "但是 %s 已经安装" +msgid "Unable to parse package file %s (1)" +msgstr "无法解析软件包文件 %s (1)" -#: apt-private/private-output.cc:437 +#: apt-pkg/tagfile.cc:237 #, c-format -msgid "but %s is to be installed" -msgstr "但是 %s 正要被安装" - -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "但无法安装它" - -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "但是它是虚拟软件包" - -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "但是它还没有被安装" - -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "但是它将不会被安装" +msgid "Unable to parse package file %s (2)" +msgstr "无法解析软件包文件 %s (2)" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " 或" +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "无法解析软件包仓库 Release 文件 %s" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "下列软件包有未满足的依赖关系:" +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "软件包仓库 Release 文件 %s 内无组件章节信息" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "下列【新】软件包将被安装:" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "软件包仓库 Release 文件 %s 内无哈希条目" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "下列软件包将被【卸载】:" +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "软件包仓库 Release 文件 %s 内 Valid-Until 条目无效" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "下列软件包的版本将保持不变:" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "软件包仓库 Release 文件 %s 内 Date 条目无效" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "下列软件包将被升级:" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(URI 解析)" -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "下列软件包将被【降级】:" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误([选项] 无法解析)" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "下列被要求保持版本不变的软件包将被改变:" +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误([选项] 太短)" -#: apt-private/private-output.cc:668 +#: apt-pkg/sourcelist.cc:184 #, c-format -msgid "%s (due to %s) " -msgstr "%s (是由于 %s) " +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误([%3$s] 不是一个任务)" -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" -msgstr "" -"【警告】:下列基础软件包将被卸载。\n" -"请勿尝试,除非您确实知道您在做什么!" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误([%3$s] 没有键)" -#: apt-private/private-output.cc:707 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "升级了 %lu 个软件包,新安装了 %lu 个软件包," +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误([%3$s] 键 %4$s 没有值)" -#: apt-private/private-output.cc:711 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "%lu reinstalled, " -msgstr "重新安装了 %lu 个软件包," +msgid "Malformed line %lu in source list %s (URI)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行的格式有误(URI)" -#: apt-private/private-output.cc:713 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "%lu downgraded, " -msgstr "降级了 %lu 个软件包," +msgid "Malformed line %lu in source list %s (dist)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(发行版)" -#: apt-private/private-output.cc:715 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "要卸载 %lu 个软件包,有 %lu 个软件包未被升级。\n" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(URI 解析)" -#: apt-private/private-output.cc:719 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "有 %lu 个软件包没有被完全安装或卸载。\n" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(独立发行版)" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(发行版解析)" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "正在打开 %s" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "在源列表 %2$s 中第 %1$u 行的格式有误(类型)" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "无法识别在源列表 %3$s 里,第 %2$u 行中的软件包类别“%1$s”" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr " update 命令不需要参数" +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "无法识别在源列表 %3$s 里,第 %2$u 行中的软件包类别“%1$s”" -#: apt-private/private-update.cc:90 +#: apt-pkg/cacheset.cc:489 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" - -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +msgid "Release '%s' for '%s' was not found" +msgstr "未找到“%2$s”的“%1$s”发布版本" -#: apt-private/private-show.cc:156 +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" +msgid "Version '%s' for '%s' was not found" +msgstr "未找到“%2$s”的“%1$s”版本" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/cacheset.cc:603 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "无法找到任务 %s" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "内部错误,InstallPackages 被用在了无法安装的软件包上!" +#: apt-pkg/cacheset.cc:609 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "无法按照正则表达式 %s 找到任何软件包" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "有软件包需要被卸载,但是卸载动作被程序设置所禁止。" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "无法按照正则表达式 %s 找到任何软件包" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "内部错误,Ordering 未能完成" +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "无法从完全虚拟的软件包 %s 中选择版本" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "怪了……文件大小不符,请发信给 apt@packages.debian.org 吧" +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "因为软件包 %s 没有已安装或候选的版本,无法进行选择" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/cacheset.cc:647 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "需要下载 %sB/%sB 的软件包。\n" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "因为软件包 %s 是完全的虚拟软件包,无法选择它的最新版" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/cacheset.cc:655 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "需要下载 %sB 的软件包。\n" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "因为软件包 %s 没有候选版本,无法进行选择" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/cacheset.cc:663 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "解压缩后会消耗掉 %sB 的额外空间。\n" +msgid "Can't select installed version from package %s as it is not installed" +msgstr "因为软件包 %s 没有安装,无法选择它的已安装版本" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "解压缩后将会空出 %sB 的空间。\n" +msgid "%lid %lih %limin %lis" +msgstr "%li天 %li小时 %li分 %li秒" -#: apt-private/private-install.cc:200 +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 #, c-format -msgid "You don't have enough free space in %s." -msgstr "您在 %s 上没有足够的可用空间。" +msgid "%lih %limin %lis" +msgstr "%li小时 %li分 %li秒" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "碰到了一些问题,您使用了 -y 选项,但是没有用 --force-yes" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%li分 %li秒" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "虽然您指定了仅执行常规操作,但这不是个常规操作。" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%li秒" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "是,按我说的做!" +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "找不到您选则的 %s" -#: apt-private/private-install.cc:222 +#: apt-pkg/contrib/fileutl.cc:190 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"您的操作会导致潜在的危害。\n" -"若还想继续的话,就输入下面的短句“%s”\n" -" ?] " +msgid "Not using locking for read only lock file %s" +msgstr "由于文件系统为只读,因而无法使用文件锁 %s" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "中止执行。" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "无法打开锁文件 %s" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "您希望继续执行吗?" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "无法在 nfs 文件系统上使用文件锁 %s" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "有一些文件无法下载" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "无法获得锁 %s" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -"有几个软件包无法下载,您可以运行 apt-get update 或者加上 --fix-missing 的选项" -"再试试?" - -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "目前还不支持 --fix-missing 和介质交换" - -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "无法更正缺少的软件包。" - -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "中止安装。" - -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "以下软件包因为文件已被其他软件包覆盖而消失:" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "注意:这是自动被 dpkg 有意完成的。" +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "我们不应该进行删除,无法启动自动删除器" +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: apt-private/private-install.cc:499 +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." -msgstr "似乎自动卸载工具损坏了一些软件,这不应该发生。请向 apt 提交错误报告。" - -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "下列信息可能会对解决问题有所帮助:" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "内部错误,自动卸载工具坏事了" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "子进程 %s 发生了段错误" -#: apt-private/private-install.cc:513 -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "下列软件包是自动安装的并且现在不需要了:" +#: apt-pkg/contrib/fileutl.cc:826 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "子进程 %s 收到信号 %u。" -#: apt-private/private-install.cc:517 +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "%lu 个自动安装的的软件包现在已不再需要了。\n" +msgid "Sub-process %s returned an error code (%u)" +msgstr "子进程 %s 返回了一个错误号 (%u)" -#: apt-private/private-install.cc:519 -#, fuzzy -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "使用'apt-get autoremove'来卸载它们" +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "子进程 %s 异常退出" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "您可能需要运行“apt-get -f install”来纠正下列错误:" +#: apt-pkg/contrib/fileutl.cc:913 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "关闭 gzip %s 文件出错" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"有未能满足的依赖关系。请尝试不指明软件包的名字来运行“apt-get -f install”(也可" -"以指定一个解决办法)。" +#: apt-pkg/contrib/fileutl.cc:1101 +#, c-format +msgid "Could not open file %s" +msgstr "无法打开文件 %s" -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." -msgstr "" -"有一些软件包无法被安装。如果您用的是 unstable 发行版,这也许是\n" -"因为系统无法达到您要求的状态造成的。该版本中可能会有一些您需要的软件\n" -"包尚未被创建或是它们已被从新到(Incoming)目录移出。" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "无法打开文件描述符 %d" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "破损的软件包" +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "无法创建子进程的 IPC 管道" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "将会安装下列额外的软件包:" +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "无法执行压缩程序" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "建议安装的软件包:" +#: apt-pkg/contrib/fileutl.cc:1514 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "读取文件出错,还剩 %lu 字节没有读出" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "推荐安装的软件包:" +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "写入文件出错,还剩 %lu 字节没有保存" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:1915 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "忽略了 %s,它已经被安装而且没有指定要升级。\n" +msgid "Problem closing the file %s" +msgstr "关闭文件 %s 出错" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:1927 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "忽略了 %s,它已经被安装而且仅请求了升级。\n" +msgid "Problem renaming the file %s to %s" +msgstr "重命名文件 %s 为 %s 出错" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:1938 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "不能重新安装 %s,因为无法下载它。\n" +msgid "Problem unlinking the file %s" +msgstr "用 unlink 删除文件 %s 出错" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "同步文件出错" + +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s 已经是最新的版本了。\n" +msgid "%c%s... Error!" +msgstr "%c%s... 有错误!" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "为 %3$s 选定了版本 %1$s (%2$s)\n" +msgid "%c%s... Done" +msgstr "%c%s... 完成" -#: apt-private/private-install.cc:899 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "为 %3$s 选定了版本 %1$s (%2$s)\n" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "软件包 %s 还未安装,因而不会被卸载\n" +msgid "%c%s... %u%%" +msgstr "%c%s... 完成" -#: apt-private/private-install.cc:947 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "软件包 %s 还未安装,因而不会被卸载\n" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "无法 mmap 一个空文件" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" -"注意:这只是模拟!\n" -"   apt-get 需要 root 特权进行实际的执行。\n" -"   同时请记住此时并未锁定,所以请勿完全相信当前的情况!" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "无法为复制文件描述符 %i" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "【警告】:下列软件包不能通过验证!" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "无法 mmap %lu 字节的数据" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "忽略了认证警告。\n" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "无法关闭 mmap" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "有些软件包不能通过验证" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "无法同步 mmap " -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "不经验证就安装这些软件包吗?" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "无法 mmap %lu 字节的数据" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "无法将 %s 重命名为 %s" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "无法截断文件" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" - -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" +"动态 MMap 没有空间了。请增大 APT::Cache-Start 的大小。当前值:%lu。(man 5 " +"apt.conf)" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "命中 " +#: apt-pkg/contrib/mmap.cc:446 +#, c-format +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "无法增加 MMap 的大小,因为已经达到 %lu 字节的限制。" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "获取:" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "无法增加 MMap 大小,因为用户已禁用自动增加。" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "忽略 " +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "无法读取文件系统挂载点 %s 的状态" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "错误 " +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "无法读取盘片的状态" -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "下载 %sB,耗时 %s (%sB/s)\n" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "无法识别的类型缩写:“%c”" -#: apt-private/acqprogress.cc:236 +#: apt-pkg/contrib/configuration.cc:633 #, c-format -msgid " [Working]" -msgstr " [执行中]" +msgid "Opening configuration file %s" +msgstr "正在打开配置文件 %s" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/configuration.cc:801 #, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" -msgstr "" -"更换介质:请把标有\n" -"“%s”\n" -"的盘片插入驱动器“%s”再按回车键\n" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "语法错误 %s:%u:配置小节没有以名字开头" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/configuration.cc:820 #, c-format -msgid "No mirror file '%s' found " -msgstr "没有找到镜像文件 %s" - -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "没有找到镜像文件 %s" - -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "没有找到镜像文件 %s" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "语法错误 %s:%u:标签格式有误" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/configuration.cc:837 #, c-format -msgid "[Mirror: %s]" -msgstr "[镜像:%s]" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "无法为子进程创建 IPC 管道" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "连接被永久关闭" +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "语法错误 %s:%u:配置值后有多余的无意义数据" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "错误的默认设置!" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "语法错误 %s:%u:只能在顶层配置文件中使用指示" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "按回车键继续。" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "语法错误 %s:%u:太多的嵌套 include 命令" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "您想要删除之前下载的所有 .deb 文件吗?" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "语法错误 %s:%u:Included from here" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "在解包时发生了一些错误。已经安装的软件包" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "语法错误 %s:%u:不支持的指令“%s”" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "将被配置。这个操作可能会导致出现重复的错误" +#: apt-pkg/contrib/configuration.cc:900 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "语法错误 %s:%u:clean 指令需要一个选项树作为参数" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "或一些由于依赖关系不能满足所产生的错误。这个问题不大,只有" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "语法错误 %s:%u:文件尾部有多余的无意义的数据" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "这个提示之前的错误消息才值得您注意。请更正它们,然后再次执行 [I]nstall" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "%s 中没有安装密钥环。" -#: dselect/update:30 -msgid "Merging available information" -msgstr "正在合并可用信息" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "未知的命令行选项“%c” [来自 %s]" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "把 DropNode 用在了仍在链表中的节点上" +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "无法识别命令行选项 %s" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "无法定位哈希表元素!" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "命令行选项 %s 不是布尔值" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "无法分配转移项" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "选项 %s 要求有一个参数" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "内部错误,出现在 AddDiversion" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "选项 %s:配置项后必须包含有形如“=<变量>”的具体指定" -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "尝试覆盖一个转移项,%s -> %s 和 %s/%s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "选项 %s 要求有一个整数作为参数,而不是“%s”" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "添加了两个转移项 %s-> %s" +msgid "Option '%s' is too long" +msgstr "选项“%s”太长" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "重复的配置文件 %s/%s" +msgid "Sense %s is not understood, try true or false." +msgstr "不能识别参数 %s,请用 true 或 false" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The path %s is too long" -msgstr "路径名 %s 太长" +msgid "Invalid operation %s" +msgstr "无效的操作 %s" -#: apt-inst/extract.cc:132 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unpacking %s more than once" -msgstr "%s 被解包了不只一次" +msgid "Installing %s" +msgstr "正在安装 %s" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The directory %s is diverted" -msgstr "目录 %s 已被转移" +msgid "Configuring %s" +msgstr "正在配置 %s" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "该软件包正尝试写入转移对象 %s/%s" +msgid "Removing %s" +msgstr "正在删除 %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "该转移路径太长" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "完全删除 %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to stat %s" -msgstr "无法获得 %s 的状态" +msgid "Noting disappearance of %s" +msgstr "注意到 %s 已经消失" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Failed to rename %s to %s" -msgstr "无法将 %s 重命名为 %s" +msgid "Running post-installation trigger %s" +msgstr "执行安装后执行的触发器 %s" -#: apt-inst/extract.cc:249 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "目录 %s 要被一个非目录的文件替换" +msgid "Directory '%s' missing" +msgstr "目录 %s 缺失" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "无法在其散列桶中分配节点" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "无法打开文件 %s" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "路径名太长" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "正在准备 %s" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "用来覆盖的软件包不属于 %s 的任何版本" +msgid "Unpacking %s" +msgstr "正在解压缩 %s" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "文件 %s/%s 会覆盖属于软件包 %s 中的同名文件" +msgid "Preparing to configure %s" +msgstr "正在准备配置 %s" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Unable to stat %s" -msgstr "无法读取 %s 的状态" +msgid "Installed %s" +msgstr "已安装 %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to write file %s" -msgstr "无法写入文件 %s" +msgid "Preparing for removal of %s" +msgstr "正在准备 %s 的删除操作" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Failed to close file %s" -msgstr "无法关闭文件 %s" +msgid "Removed %s" +msgstr "已删除 %s" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "这不是一个有效的 DEB 包文件,其包内遗漏了“%s”" +msgid "Preparing to completely remove %s" +msgstr "正在准备完全删除 %s" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "内部错误,无法定位包内文件 %s" +msgid "Completely removed %s" +msgstr "完全删除了 %s" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "不能解析的主控文件" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "无效的归档签名" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "无法写入 %s" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "读取归档成员文件头出错" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "归档文件中成员文件头 %s 无效" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "归档文件中成员文件头无效" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "归档文件太短" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "由于已经达到 MaxReports 限制,没有写入 apport 报告。" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "无法读取归档文件的数据头" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "依赖问题 - 保持未配置" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "无法创建管道" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "因为错误消息指示这是由于上一个问题导致的错误,没有写入 apport 报告。" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "无法执行 gzip" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "因为错误消息指示这是由于磁盘已满,没有写入 apport 报告。" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "包文件已被损坏" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "因为错误消息指示这是由于内存不足,没有写入 apport 报告。" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar 的校验和不符,文件已损坏" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "因为错误消息指示这是由于磁盘已满,没有写入 apport 报告。" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "因为错误消息指示这是一个 dpkg I/O 错误,没有写入 apport 报告。" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "未知的 TAR 数据头类型 %u,成员 %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "无法锁定管理目录(%s),是否有其他进程正占用它?" + +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "无法对状态列表目录加锁(%s),请查看您是否正以 root 用户运行?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "dpkg 被中断,您必须手工运行 %s 解决此问题。" + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "未锁定" #: cmdline/apt-extracttemplates.cc:224 msgid "" diff --git a/po/zh_TW.po b/po/zh_TW.po index 06a07182b..0ce9d4fff 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.5.4\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-07-10 10:53+0200\n" +"POT-Creation-Date: 2014-08-28 00:44+0000\n" "PO-Revision-Date: 2009-01-28 10:41+0800\n" "Last-Translator: Tetralet <tetralet@gmail.com>\n" "Language-Team: Debian-user in Chinese [Big5] <debian-chinese-big5@lists." @@ -18,3114 +18,3115 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 -#, fuzzy, c-format -msgid "Clean of %s is not supported" -msgstr "不被支援的索引檔類型 '%s'" - -#. Only warn if there are no sources.list.d. -#. Only warn if there is no sources.list file. -#: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111 -#: apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 -#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:368 -#: apt-pkg/contrib/fileutl.cc:481 apt-pkg/contrib/cdromutl.cc:205 -#: methods/mirror.cc:95 apt-inst/extract.cc:471 -#, c-format -msgid "Unable to read %s" -msgstr "無法讀取 %s" - -#: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 -#: apt-pkg/acquire.cc:500 apt-pkg/acquire.cc:525 -#: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235 -#: methods/mirror.cc:101 methods/mirror.cc:130 -#, c-format -msgid "Unable to change to %s" -msgstr "無法切換至 %s" - -#: apt-pkg/clean.cc:64 -#, c-format -msgid "Unable to stat %s." -msgstr "無法取得 %s 的狀態。" - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" - -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "" - -#: apt-pkg/init.cc:146 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "不支援的套件包裝系統 '%s'" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "無法確認合適的套件包裝系統類型" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "套件 %s 版本 %s 未能滿足相依性:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "寫入 %i 筆紀錄。\n" +#: cmdline/apt-cache.cc:277 +msgid "Total package names: " +msgstr "套件名稱合計:" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "寫入 %i 筆紀綠,其中有 %i 個檔案遺失了。\n" +#: cmdline/apt-cache.cc:279 +#, fuzzy +msgid "Total package structures: " +msgstr "套件名稱合計:" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "寫入 %i 筆紀綠,其中有 %i 個檔案不符\n" +#: cmdline/apt-cache.cc:319 +msgid " Normal packages: " +msgstr " 一般套件:" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 -#, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "寫入 %i 筆紀綠,其中有 %i 個檔案遺失了,有 %i 個檔案不符\n" +#: cmdline/apt-cache.cc:320 +msgid " Pure virtual packages: " +msgstr " 完全虛擬套件:" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" +#: cmdline/apt-cache.cc:321 +msgid " Single virtual packages: " +msgstr " 單一虛擬套件:" -#: apt-pkg/indexcopy.cc:521 -#, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Hash Sum 不符" +#: cmdline/apt-cache.cc:322 +msgid " Mixed virtual packages: " +msgstr " 混合虛擬套件:" -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "找不到安裝方式的驅動程式 %s。" +#: cmdline/apt-cache.cc:323 +msgid " Missing: " +msgstr " 找不到:" -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "請檢查是否已安裝了 'dpkg-dev' 套件。\n" +#: cmdline/apt-cache.cc:325 +msgid "Total distinct versions: " +msgstr "個別版本合計:" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "安裝方式 %s 沒有正確啟動" +#: cmdline/apt-cache.cc:327 +msgid "Total distinct descriptions: " +msgstr "個別版本類別合計:" -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "請把標籤為 '%s' 的光碟放入 '%s' 裝置中,然後按下 [Enter] 鍵。" +#: cmdline/apt-cache.cc:329 +msgid "Total dependencies: " +msgstr "相依關係合計:" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "無法分析或開啟套件清單或狀況檔。" +#: cmdline/apt-cache.cc:332 +msgid "Total ver/file relations: " +msgstr "版本/檔案關聯合計:" -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "您也許得執行 apt-get update 以修正這些問題" +#: cmdline/apt-cache.cc:334 +msgid "Total Desc/File relations: " +msgstr "類別/檔案關聯合計:" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "無法讀取來源列表。" +#: cmdline/apt-cache.cc:336 +msgid "Total Provides mappings: " +msgstr "提供者對應合計:" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "清空套件快取" +#: cmdline/apt-cache.cc:348 +msgid "Total globbed strings: " +msgstr "所有字串合計:" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "套件快取檔損壞" +#: cmdline/apt-cache.cc:362 +msgid "Total dependency version space: " +msgstr "相依版本空間合計:" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "套件快取檔版本不符" +#: cmdline/apt-cache.cc:367 +msgid "Total slack space: " +msgstr "間暇空間合計:" -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "套件快取檔損壞" +#: cmdline/apt-cache.cc:375 +msgid "Total space accounted for: " +msgstr "統計後的空間合計:" -#: apt-pkg/pkgcache.cc:174 +#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 +#: apt-private/private-show.cc:58 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "本 APT 不支援 '%s' 版本系統" +msgid "Package file %s is out of sync." +msgstr "套件檔 %s 未同步。" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "這個套件快取是用於另一種平台的" +#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 +#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 +#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 +#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 +msgid "No packages found" +msgstr "未找到套件" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "相依關係" +#: cmdline/apt-cache.cc:1254 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "您必須明確得給定一個樣式" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "預先相依關係" +#: cmdline/apt-cache.cc:1420 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "建議" +#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#, c-format +msgid "Unable to locate package %s" +msgstr "找不到套件 %s" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "推薦" +#: cmdline/apt-cache.cc:1545 +msgid "Package files:" +msgstr "套件檔:" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "衝突" +#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "快取資料未同步,無法 x-ref 套件檔" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "取代" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1566 +msgid "Pinned packages:" +msgstr "鎖定的套件:" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "廢棄" +#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 +msgid "(not found)" +msgstr "(未找到)" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "毀損" +#: cmdline/apt-cache.cc:1586 +msgid " Installed: " +msgstr " 已安裝:" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "" +#: cmdline/apt-cache.cc:1587 +msgid " Candidate: " +msgstr " 候選:" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "重要" +#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 +msgid "(none)" +msgstr "(無)" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "必要" +#: cmdline/apt-cache.cc:1620 +msgid " Package pin: " +msgstr " 套件鎖定:" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "標準" +#. Show the priority tables +#: cmdline/apt-cache.cc:1629 +msgid " Version table:" +msgstr " 版本列表:" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "次要" +#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1587 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s 是用於 %s 並在 %s %s 上編譯的\n" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "額外" - -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "不被支援的索引檔類型 '%s'" +#: cmdline/apt-cache.cc:1749 +#, fuzzy +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"用法:apt-cache [選項] 指令\n" +" apt-cache [選項] add 檔案1 [檔案2 ...]\n" +" apt-cache [選項] showpkg 套件1 [套件2 ...]\n" +" apt-cache [選項] showsrc 套件1 [套件2 ...]\n" +"\n" +"apt-cache 是一個低階的工具,可用來操作 APT 的二進制快取檔,也可用來\n" +"查詢那些檔案中的相關訊息\n" +"\n" +"指令:\n" +" add - 把套件檔加入原始碼快取中\n" +" gencaches - 同時產生套件和原始碼的快取\n" +" showpkg - 顯示某單一套件的一般資訊\n" +" showsrc - 顯示原始碼報告\n" +" stats - 顯示一些基本的統計資訊\n" +" dump - 簡要得顯示整個檔案\n" +" dumpavail - 將可用的檔案列印至標準輸出\n" +" unmet - 顯示所有未滿足的相依關係\n" +" search - 根據正規表示式搜索套件列表\n" +" show - 顯示該套件的易於閱讀的報告\n" +" depends - 顯示該套件的原始相依關係的資訊\n" +" rdepends - 顯示所有相依於該套件的套件名稱\n" +" pkgnames - 列出系統中所有套件\n" +" dotty - 產生用於 GraphViz 的套件關係圖\n" +" xvcg - 產生用於 xvcg 的套件的關係圖\n" +" policy - 顯示套件的可安裝版本資訊\n" +"\n" +"選項:\n" +" -h 本幫助訊息。\n" +" -p=? 套件的快取。\n" +" -s=? 原始碼的快取。\n" +" -q 關閉進度顯示。\n" +" -i 僅為 unmet 指令顯示重要的相依關係。\n" +" -c=? 讀取指定的設定檔\n" +" -o=? 指定任意的設定選項,例如:-o dir::cache=/tmp\n" +"請參閱 apt-cache(8) 及 apt.conf(5) 參考手冊以取得更多資訊。\n" -#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786 -#, c-format -msgid "Regex compilation error - %s" -msgstr "編譯正規表示式時發生錯誤 - %s" +#: cmdline/apt-cdrom.cc:76 +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "請替這張光碟取個名字,像是 'Debian 2.1r1 Disk 1'" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "快取使用的是不相容的版本系統" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "請把光碟放入光碟機,然後按下 [Enter] 鍵" -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 -#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 -#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 -#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 -#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 -#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 -#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 -#: apt-pkg/pkgcachegen.cc:569 +#: cmdline/apt-cdrom.cc:139 #, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "在處理 %s 時發生錯誤 (FindPkg)" +msgid "Failed to mount '%s' to '%s'" +msgstr "無法將 %s 更名為 %s" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "哇呀,您已經超過這個 APT 所能處理的套件名稱數量了。" +#: cmdline/apt-cdrom.cc:178 +msgid "" +"No CD-ROM could be auto-detected or found using the default mount point.\n" +"You may try the --cdrom option to set the CD-ROM mount point.\n" +"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " +"mount point." +msgstr "" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "哇呀,您已經超過這個 APT 所能處理的版本數量了。" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "請對您的光碟組中的其它光碟重複相同的操作。" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "哇呀,您已經超過這個 APT 所能處理的說明數量了。" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "參數並未成對" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "哇呀,您已經超過這個 APT 所能處理的相依關係數量了。" +#: cmdline/apt-config.cc:89 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"用法:apt-config [選項] 指令\n" +"\n" +"apt-config 是一個用於讀取 APT 設定檔的簡單工具\n" +"\n" +"指令:\n" +" shell - Shell 模式\n" +" dump - 顯示設定\n" +"\n" +"選項:\n" +" -h 本幫助訊息。\n" +" -c=? 讀取指定的設定檔\n" +" -o=? 指定任意的設定選項,例如:-o dir::cache=/tmp\n" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "在計算檔案相依性時找不到套件 %s %s" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "無法找到套件 %s" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "無法找到套件 %s" + +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "無法找到套件 %s" + +#: cmdline/apt-get.cc:367 +#, fuzzy, c-format +msgid "Picking '%s' as source package instead of '%s'\n" msgstr "無法取得來源套件列表 %s 的狀態" -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "正在讀取套件清單" +#: cmdline/apt-get.cc:423 +#, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "正在收集檔案提供者" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "無法找到套件 %s" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:865 #, c-format -msgid "Unable to write to %s" -msgstr "無法寫入 %s" +msgid "%s set to manually installed.\n" +msgstr "%s 被設定為手動安裝。\n" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "在儲存來源快取時 IO 錯誤" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s 被設定為手動安裝。\n" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "內部錯誤,問題排除器造成了損壞" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "無法鎖定下載目錄" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "在取得原始碼時必須至少指定一個套件" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1067 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "無法找到 %s 的原始碼套件" + +#: cmdline/apt-get.cc:786 +#, c-format +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: cmdline/apt-get.cc:791 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "無法重新命名,%s (%s -> %s)。" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Hash Sum 不符" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "大小不符" - -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "無效的操作 %s" - -#: apt-pkg/acquire-item.cc:1573 +#: cmdline/apt-get.cc:843 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" - -#: apt-pkg/acquire-item.cc:1589 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "無法辨別 Release 檔 %s" - -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "無法取得以下的密鑰 ID 的公鑰:\n" +msgid "Skipping already downloaded file '%s'\n" +msgstr "略過已下載的檔案 '%s'\n" -#: apt-pkg/acquire-item.cc:1669 +#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 +#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" +msgid "Couldn't determine free space in %s" +msgstr "無法確認 %s 的未使用空間" -#: apt-pkg/acquire-item.cc:1691 +#: cmdline/apt-get.cc:882 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "發行版本衝突:%s(應當是 %s 但卻得到 %s)" +msgid "You don't have enough free space in %s" +msgstr "在 %s 裡沒有足夠的的未使用空間" -#: apt-pkg/acquire-item.cc:1721 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:891 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "需要下載 %sB/%sB 的原始套件檔。\n" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:896 #, c-format -msgid "GPG error: %s: %s" -msgstr "" +msgid "Need to get %sB of source archives.\n" +msgstr "需要下載 %sB 的原始套件檔。\n" -#: apt-pkg/acquire-item.cc:1859 +#: cmdline/apt-get.cc:902 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"找不到 %s 套件的某個檔案。這意味著您可能要手動修復這個套件。(因為找不到平" -"台)" +msgid "Fetch source %s\n" +msgstr "取得原始碼 %s\n" -#: apt-pkg/acquire-item.cc:1925 -#, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +#: cmdline/apt-get.cc:920 +msgid "Failed to fetch some archives." +msgstr "無法取得某些套件檔。" -#: apt-pkg/acquire-item.cc:1983 -#, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "這個套件的索引檔損壞了。沒有套件 %s 的 Filename: 欄位。" +#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 +msgid "Download complete and in download only mode" +msgstr "下載完成,且這是『僅下載』模式" -#: apt-pkg/vendorlist.cc:85 +#: cmdline/apt-get.cc:950 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "提供者區塊 %s 沒有包含指紋碼" - -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "找不到清單目錄 %spartial。" - -#: apt-pkg/acquire.cc:91 -#, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "找不到套件檔目錄 %spartial。" - -#: apt-pkg/acquire.cc:99 -#, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "無法鎖定列表目錄" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "不解開,因原始碼已解開至 %s\n" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:902 +#: cmdline/apt-get.cc:963 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "正在取得檔案 %li/%li(還有 %s)" +msgid "Unpack command '%s' failed.\n" +msgstr "解開指令 '%s' 失敗。\n" -#: apt-pkg/acquire.cc:904 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Retrieving file %li of %li" -msgstr "正在取得檔案 %li/%li" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "請檢查是否已安裝了 'dpkg-dev' 套件。\n" -#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#: cmdline/apt-get.cc:992 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "無法取得 %s,%s\n" +msgid "Build command '%s' failed.\n" +msgstr "編譯指令 '%s' 失敗。\n" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "有一些索引檔不能下載,它們可能被略過了,或是替而使用原有的索引檔。" +#: cmdline/apt-get.cc:1011 +msgid "Child process failed" +msgstr "子程序失敗" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "在 sources.list 中必須包含一些 'source' URI" +#: cmdline/apt-get.cc:1030 +msgid "Must specify at least one package to check builddeps for" +msgstr "在檢查編譯相依關係時必須至少指定一個套件" -#: apt-pkg/policy.cc:83 +#: cmdline/apt-get.cc:1055 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "個人設定檔中有些不正確資料,沒有以 Package 開頭" - -#: apt-pkg/policy.cc:444 +#: cmdline/apt-get.cc:1079 cmdline/apt-get.cc:1082 #, c-format -msgid "Did not understand pin type %s" -msgstr "無法分析鎖定類型 %s" - -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "銷定並沒有優先順序之分(或零)" +msgid "Unable to get build-dependency information for %s" +msgstr "無法取得 %s 的編譯相依關係資訊" -#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:910 +#: cmdline/apt-get.cc:1102 #, c-format -msgid "" -"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " -"under APT::Immediate-Configure for details. (%d)" -msgstr "" +msgid "%s has no build depends.\n" +msgstr "%s 沒有編譯相依關係。\n" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 +#: cmdline/apt-get.cc:1272 #, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "無法開啟檔案 %s" - -#: apt-pkg/packagemanager.cc:583 -#, c-format msgid "" -"This installation run will require temporarily removing the essential " -"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " -"you really want to do it, activate the APT::Force-LoopBreak option." -msgstr "" -"此安裝因衝突或預先相依關係,需暫時刪除 %s 這個基本套件。這通常不是好主意,但" -"若您執意進行,請設定 APT::Force-LoopBreak 選項。" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "無法滿足 %2$s 所要求的 %1$s 相依關係,因為找不到套件 %3$s" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#: cmdline/apt-get.cc:1290 #, c-format -msgid "Line %u too long in source list %s." -msgstr "來源列表 %2$s 中的第 %1$u 行太長。" - -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "正在卸載光碟機...\n" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "無法滿足 %2$s 所要求的 %1$s 相依關係,因為找不到套件 %3$s" -#: apt-pkg/cdrom.cc:586 +#: cmdline/apt-get.cc:1313 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "使用光碟機掛載點 %s\n" - -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "正在等待碟片...\n" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "無法滿足 %2$s 的相依關係 %1$s:已安裝的套件 %3$s 太新了" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "正在掛載光碟機... \n" +#: cmdline/apt-get.cc:1352 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"無法滿足 %2$s 所要求的 %1$s 相依關係,因為套件 %3$s 沒有版本符合其版本需求" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "正在識別..." +#: cmdline/apt-get.cc:1358 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "無法滿足 %2$s 所要求的 %1$s 相依關係,因為找不到套件 %3$s" -#: apt-pkg/cdrom.cc:662 +#: cmdline/apt-get.cc:1381 #, c-format -msgid "Stored label: %s\n" -msgstr "保存標籤:%s\n" - -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "正在掃描碟片中的索引檔...\n" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "無法滿足 %2$s 的相依關係 %1$s:%3$s" -#: apt-pkg/cdrom.cc:734 +#: cmdline/apt-get.cc:1396 #, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "找到了 %zu 個套件索引,%zu 個原始碼索引,%zu 個翻譯索引及 %zu 個簽章\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "無法滿足套件 %s 的編譯相依關係。" -#: apt-pkg/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" -msgstr "" +#: cmdline/apt-get.cc:1401 +msgid "Failed to process build dependencies" +msgstr "無法處理編譯相依關係" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "找到標籤 '%s'\n" +#: cmdline/apt-get.cc:1494 cmdline/apt-get.cc:1506 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "正和 %s (%s) 連線" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "這並不是正確的名稱,請重試。\n" +#: cmdline/apt-get.cc:1592 +msgid "Supported modules:" +msgstr "已支援模組:" -#: apt-pkg/cdrom.cc:817 -#, c-format +#: cmdline/apt-get.cc:1633 +#, fuzzy msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"這個碟片名為:\n" -"'%s'\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "正在複製套件清單..." - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "正在寫入新的來源列表\n" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" +msgstr "" +"用法:apt-get [選項] 指令\n" +" apt-get [選項] install|remove 套件1 [套件2 ...]\n" +" apt-get [選項] source 套件1 [套件2 ...]\n" +"\n" +"apt-get 是一個用來下載和安裝套件的簡易命令列界面。\n" +"最常用指令是 update 和 install。\n" +"\n" +"指令:\n" +" update - 取得新的套件列表\n" +" upgrade - 進行升級\n" +" install - 安裝新套件(套件名稱是 libc6 而不是 libc6.deb)\n" +" remove - 移除套件\n" +" autoremove - 自動移除所有不再使用的套件\n" +" purge - 移除並清除套件\n" +" source - 下載套件原始碼\n" +" build-dep - 為原始碼套件配置編譯相依關係\n" +" dist-upgrade - 發行版本升級,請參閱 apt-get(8)\n" +" dselect-upgrade - 採用 dselect 的選項升級\n" +" clean - 刪除已下載的套件檔\n" +" auto-clean - 刪除已下載但已有新版本的套件檔\n" +" check - 檢查相依關係是否有問題\n" +"\n" +"選項:\n" +" -h 本求助訊息。\n" +" -q 讓輸出可作為記錄檔之用 - 不顯示進度\n" +" -qq 除了錯誤外,不顯示其它資訊\n" +" -d 僅下載 - 【不】安裝或解開套件檔\n" +" -s 不實際進行。只是模擬執行指令\n" +" -y 對所有詢問都回答 Yes,同時不會有任何提示\n" +" -f 嘗試修正系統上損毀的套件相依關係\n" +" -m 當有套件檔無法找到時,仍試著繼續進行\n" +" -u 顯示已升級的套件列表\n" +" -b 在取得套件原始碼後進行編譯\n" +" -V 顯示詳盡的版本號碼\n" +" -c=? 讀取指定的設定檔\n" +" -o=? 指定任意的設定選項,例如:-o dir::cache=/tmp\n" +"請參閱 apt-get(8)、sources.list(5) 及 apt.conf(5) 的使用手冊\n" +"以取得更多資訊和選項。\n" +" 該 APT 有著超級牛力。\n" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "該碟片的來源列表項目為:\n" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "在取得原始碼時必須至少指定一個套件" -#: apt-pkg/algorithms.cc:265 -#, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "套件 %s 需要重新安裝,但找不到它的套件檔。" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: apt-pkg/algorithms.cc:1086 +#: cmdline/apt-helper.cc:66 msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Usage: apt-helper [options] command\n" +" apt-helper [options] download-file uri target-path\n" +"\n" +"apt-helper is a internal helper for apt\n" +"\n" +"Commands:\n" +" download-file - download the given uri to the target-path\n" +"\n" +" This APT helper has Super Meep Powers.\n" msgstr "" -"錯誤,pkgProblemResolver::Resolve 的建立中斷了,這可能肇因於保留 (hold) 套" -"件。" - -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "無法修正問題,您保留 (hold) 了損毀的套件。" - -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "正在重建相依關係" - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "候選版本" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "建立相依關係" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "正在讀取狀態資料" - -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "無法開啟 StateFile %s" - -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "無法寫入暫存的 StateFile %s" - -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "無法辨識套件檔 %s (1)" - -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "無法辨識套件檔 %s (2)" - -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "找不到 '%2$s' 的 '%1$s' 發行版" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "找不到 '%s' 版的 '%s'" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "但它卻尚未安裝" -#: apt-pkg/cacheset.cc:596 cmdline/apt-cache.cc:1515 -#, c-format -msgid "Unable to locate package %s" -msgstr "找不到套件 %s" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s 被設定為手動安裝。\n" -#: apt-pkg/cacheset.cc:603 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "無法找到主題 %s" +msgid "%s was already set to automatically installed.\n" +msgstr "%s 被設定為手動安裝。\n" -#: apt-pkg/cacheset.cc:609 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "無法找到套件 %s" +msgid "%s was already set on hold.\n" +msgstr "%s 已經是最新版本了。\n" -#: apt-pkg/cacheset.cc:615 +#: cmdline/apt-mark.cc:243 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "無法找到套件 %s" +msgid "%s was already not hold.\n" +msgstr "%s 已經是最新版本了。\n" -#: apt-pkg/cacheset.cc:626 +#: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219 +#: apt-pkg/deb/dpkgpm.cc:1202 #, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" +msgid "Waited for %s but it wasn't there" +msgstr "等待 %s 但是它並不存在" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format -msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" -msgstr "" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "%s 被設定為手動安裝。\n" -#: apt-pkg/cacheset.cc:647 -#, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "無法開啟 %s" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -#: apt-pkg/cacheset.cc:663 -#, c-format -msgid "Can't select installed version from package %s as it is not installed" +#: cmdline/apt-mark.cc:392 +msgid "" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +" hold - Mark a package as held back\n" +" unhold - Unset a package set as held back\n" +" showauto - Print the list of automatically installed packages\n" +" showmanual - Print the list of manually installed packages\n" +" showhold - Print the list of package on hold\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." msgstr "" -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "無法辨別 Release 檔 %s" +#: cmdline/apt.cc:47 +msgid "" +"Usage: apt [options] command\n" +"\n" +"CLI for apt.\n" +"Basic commands: \n" +" list - list packages based on package names\n" +" search - search in package descriptions\n" +" show - show package details\n" +"\n" +" update - update list of available packages\n" +"\n" +" install - install packages\n" +" remove - remove packages\n" +"\n" +" upgrade - upgrade the system by installing/upgrading packages\n" +" full-upgrade - upgrade the system by removing/installing/upgrading " +"packages\n" +"\n" +" edit-sources - edit the source information file\n" +msgstr "" -#: apt-pkg/indexrecords.cc:86 +#: methods/cdrom.cc:203 #, c-format -msgid "No sections in Release file %s" -msgstr "在 Release 檔 %s 裡沒有區段" +msgid "Unable to read the cdrom database %s" +msgstr "無法讀取光碟片資料庫 %s" -#: apt-pkg/indexrecords.cc:117 +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" +msgstr "" +"請用 apt-cdrom 來讓 APT 能辨識這張光碟。apt-get update 是不能用來新增光碟的" + +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "不正確的光碟" + +#: methods/cdrom.cc:249 #, c-format -msgid "No Hash entry in Release file %s" -msgstr "在 Release 檔 %s 裡沒有 Hash 項目" +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "無法卸載 %s 裡的光碟片,或許它仍在使用中。" -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "在 Release 檔 %s 裡沒有 Hash 項目" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "找不到磁碟。" -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "在 Release 檔 %s 裡沒有 Hash 項目" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "找不到檔案" -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(URI 分析)" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "無法取得狀態" -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版分析)" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "無法設定修改時間" -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版)" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "不正確的 URI,本機 URI 不應以 // 開頭" -#: apt-pkg/sourcelist.cc:184 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版分析)" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "登入中" -#: apt-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版分析)" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "無法解析對方主機名稱" -#: apt-pkg/sourcelist.cc:193 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版分析)" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "無法解析本機名稱" -#: apt-pkg/sourcelist.cc:206 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤 (URI)" +msgid "The server refused the connection and said: %s" +msgstr "伺服器不接受連線,並回應:%s" -#: apt-pkg/sourcelist.cc:208 +#: methods/ftp.cc:225 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版)" +msgid "USER failed, server said: %s" +msgstr "USER 指令失敗,伺服器回應:%s" -#: apt-pkg/sourcelist.cc:211 +#: methods/ftp.cc:232 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(URI 分析)" +msgid "PASS failed, server said: %s" +msgstr "PASS 指令失敗,伺服器回應:%s" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(絕對發行版)" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"指定了代理伺服器,但沒有指定登入 script,Acquire::ftp::ProxyLogin 是空的。" -#: apt-pkg/sourcelist.cc:224 +#: methods/ftp.cc:280 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版分析)" +msgid "Login script command '%s' failed, server said: %s" +msgstr "登入 script 指令 '%s' 失敗,伺服器回應:%s" -#: apt-pkg/sourcelist.cc:335 +#: methods/ftp.cc:306 #, c-format -msgid "Opening %s" -msgstr "正在開啟 %s" +msgid "TYPE failed, server said: %s" +msgstr "TYPE 指令失敗,伺服器回應:%s" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "來源列表 %2$s 中的第 %1$u 行的格式錯誤(類型)" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "連線逾時" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "未知的類型 '%1$s',位於在來源列表 %3$s 中的第 %2$u 行" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "伺服器已關閉連線" -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "未知的類型 '%1$s',位於在來源列表 %3$s 中的第 %2$u 行" +#: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476 +#: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490 +#: apt-pkg/contrib/fileutl.cc:1492 +msgid "Read error" +msgstr "讀取錯誤" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "正在安裝 %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "回應超過緩衝區長度。" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "正在設定 %s" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "協定失敗" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "正在移除 %s" +#: methods/ftp.cc:462 methods/rsh.cc:246 apt-pkg/contrib/fileutl.cc:872 +#: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607 +#: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614 +#: apt-pkg/contrib/fileutl.cc:1639 +msgid "Write error" +msgstr "寫入錯誤" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "已完整移除 %s" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "無法建立 Socket" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "無法和 data socket 連線,連線逾時" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "正在執行安裝後套件後續處理程式 %s" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "失敗" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "找不到 '%s' 目錄" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "無法和 passive socket 連線。" -#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 -#, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "無法開啟檔案 %s" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo 無法取得監聽 socket" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "正在準備 %s" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "無法 bind 至 socket" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "正在解開 %s" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "無法監聽 socket" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "正在準備設定 %s" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "無法解析 socket 名稱" -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "已安裝 %s" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "無法送出 PORT 指令" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: methods/ftp.cc:802 #, c-format -msgid "Preparing for removal of %s" -msgstr "正在準備移除 %s" +msgid "Unknown address family %u (AF_*)" +msgstr "未知的地址家族 %u (AF_*)" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "已移除 %s" - -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "正在準備完整移除 %s" - -#: apt-pkg/deb/dpkgpm.cc:1010 +#: methods/ftp.cc:811 #, c-format -msgid "Completely removed %s" -msgstr "已完整移除 %s" - -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +msgid "EPRT failed, server said: %s" +msgstr "EPRT 指令失敗,伺服器回應:%s" -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "無法寫入 %s" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Data socket 連線逾時" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "無法接受連線" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "有問題的雜湊檔" -#: apt-pkg/deb/dpkgpm.cc:1202 apt-pkg/contrib/fileutl.cc:812 -#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 +#: methods/ftp.cc:890 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "等待 %s 但是它並不存在" - -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" - -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" -msgstr "" - -#: apt-pkg/deb/dpkgpm.cc:1638 -msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -msgstr "" +msgid "Unable to fetch file, server said '%s'" +msgstr "無法取得檔案,伺服器回應 '%s'" -#: apt-pkg/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Data socket 連線逾時" -#: apt-pkg/deb/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" +#: methods/ftp.cc:935 +#, c-format +msgid "Data transfer failed, server said '%s'" +msgstr "資料傳輸失敗,伺服器回應 '%s'" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "查詢" -#: apt-pkg/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "無法 invoke " -#: apt-pkg/deb/debsystem.cc:91 +#: methods/connect.cc:76 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" - -#: apt-pkg/deb/debsystem.cc:94 -#, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "無法鎖定列表目錄" +msgid "Connecting to %s (%s)" +msgstr "正和 %s (%s) 連線" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: methods/connect.cc:87 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " -msgstr "" - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 +#: methods/connect.cc:94 #, c-format -msgid "%lid %lih %limin %lis" -msgstr "" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "無法建立 socket 指向 %s (f=%u t=%u p=%u)" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: methods/connect.cc:100 #, c-format -msgid "%lih %limin %lis" -msgstr "" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "無法初始和 %s:%s (%s) 的連線。" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: methods/connect.cc:108 #, c-format -msgid "%limin %lis" -msgstr "" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "無法和 %s:%s (%s) 連線,連線逾時" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: methods/connect.cc:126 #, c-format -msgid "%lis" -msgstr "" +msgid "Could not connect to %s:%s (%s)." +msgstr "無法和 %s:%s (%s) 連線。" -#: apt-pkg/contrib/strutl.cc:1243 +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:154 methods/rsh.cc:439 #, c-format -msgid "Selection %s not found" -msgstr "選項 %s 找不到" +msgid "Connecting to %s" +msgstr "正連線至 %s" -#: apt-pkg/contrib/fileutl.cc:190 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "不在唯讀檔案 %s 上使用檔案鎖定" +msgid "Could not resolve '%s'" +msgstr "無法解析 '%s'" -#: apt-pkg/contrib/fileutl.cc:195 +#: methods/connect.cc:205 #, c-format -msgid "Could not open lock file %s" -msgstr "無法開啟鎖定檔 %s" +msgid "Temporary failure resolving '%s'" +msgstr "暫時無法解析 '%s'" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "不在以 nfs 掛載的檔案 %s 上使用檔案鎖定" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "在解析 '%s:%s' (%i) 時出了怪事" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "無法將 %s 鎖定" +#: methods/connect.cc:211 +#, fuzzy, c-format +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "在解析 '%s:%s' (%i) 時出了怪事" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 -#, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +#: methods/connect.cc:258 +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" +msgstr "無法連線至 %s %s:" -#: apt-pkg/contrib/fileutl.cc:394 -#, c-format -msgid "Ignoring '%s' in directory '%s' as it is not a regular file" -msgstr "" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "內部錯誤:簽章無誤,但卻無法辨識密鑰的指紋碼?!" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "至少發現一個無效的簽章。" -#: apt-pkg/contrib/fileutl.cc:421 +#: methods/gpgv.cc:174 +#, fuzzy +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "無法執行 '%s' 來驗證簽章(gpgv 是否安裝了?)" + +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" msgstr "" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "子程序 %s 收到一個記憶體錯誤。" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "在執行 gpgv 時發生未知的錯誤" -#: apt-pkg/contrib/fileutl.cc:826 -#, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "子程序 %s 收到一個記憶體錯誤。" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "以下簽名無效:\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 -#, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "子程序 %s 傳回錯誤碼 (%u)" +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "由於無法取得它們的公鑰,以下簽章無法進行驗證:\n" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "子程序 %s 不預期得結束" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:872 apt-pkg/contrib/fileutl.cc:1598 -#: apt-pkg/contrib/fileutl.cc:1607 apt-pkg/contrib/fileutl.cc:1612 -#: apt-pkg/contrib/fileutl.cc:1614 apt-pkg/contrib/fileutl.cc:1639 -#: methods/ftp.cc:462 methods/rsh.cc:246 -msgid "Write error" -msgstr "寫入錯誤" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "在寫入該檔時發生錯誤" -#: apt-pkg/contrib/fileutl.cc:913 -#, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "在關閉檔案時發生問題" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "在讀取伺服器時發生錯誤,遠端主機已關閉連線" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "無法開啟檔案 %s" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "在讀取伺服器時發生錯誤" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 -#, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "無法開啟管線給 %s 使用" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "在寫入檔案時發生錯誤" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "無法建立子程序 IPC" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "選擇失敗" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "無法執行壓縮程式" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "連線逾時" -#: apt-pkg/contrib/fileutl.cc:1476 apt-pkg/contrib/fileutl.cc:1485 -#: apt-pkg/contrib/fileutl.cc:1490 apt-pkg/contrib/fileutl.cc:1492 -#: methods/ftp.cc:353 methods/rsh.cc:202 -msgid "Read error" -msgstr "讀取錯誤" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "在寫入輸出檔時發生錯誤" -#: apt-pkg/contrib/fileutl.cc:1514 -#, fuzzy, c-format -msgid "read, still have %llu to read but none left" -msgstr "讀取,仍有 %lu 未讀但已無空間" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "等待標頭" -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 -#, fuzzy, c-format -msgid "write, still have %llu to write but couldn't" -msgstr "寫入,仍有 %lu 待寫入但已沒辨法" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "標頭行錯誤" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "在關閉檔案時發生問題" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "HTTP 伺服器傳送了一個無效的回覆標頭" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "在同步檔案時發生問題" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "HTTP 伺服器傳送了一個無效的 Content-Length 標頭" -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "在刪除檔案時發生問題" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "HTTP 伺服器傳送了一個無效的 Content-Range 標頭" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "在同步檔案時發生問題" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "這個 HTTP 伺服器的範圍支援有問題" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... 錯誤!" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "未知的資料格式" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... 完成" +#: methods/server.cc:489 +msgid "Bad header data" +msgstr "錯誤的標頭資料" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#: methods/server.cc:506 methods/server.cc:562 +msgid "Connection failed" +msgstr "連線失敗" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... 完成" +#: methods/server.cc:654 +msgid "Internal error" +msgstr "內部錯誤" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "不能 mmap 空白檔案" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/contrib/mmap.cc:111 -#, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "無法開啟管線給 %s 使用" +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "內部錯誤,在損毀的套件上執行 InstallPackages!" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "無法 mmap 到 %lu 位元組" +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "有套件需要被移除,但卻被禁止移除。" -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "無法開啟 %s" +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "內部錯誤,排序未能完成" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -#, fuzzy -msgid "Unable to synchronize mmap" -msgstr "無法 invoke " +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "怪哉... 檔案大小不符,請發信給 apt@packages.debian.org" -#: apt-pkg/contrib/mmap.cc:290 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "無法 mmap 到 %lu 位元組" - -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "無法截短檔案" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "需要下載 %sB/%sB 的套件檔。\n" -#: apt-pkg/contrib/mmap.cc:341 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 #, c-format -msgid "" -"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " -"Current value: %lu. (man 5 apt.conf)" -msgstr "" -"動態 MMap 已用完所有空間。請增加 APT::Cache-Start 的大小。目前大小為:%lu。" -"(man 5 apt.conf)" +msgid "Need to get %sB of archives.\n" +msgstr "需要下載 %sB 的套件檔。\n" -#: apt-pkg/contrib/mmap.cc:446 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 #, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." -msgstr "" - -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "此操作完成之後,會多佔用 %sB 的磁碟空間。\n" -#: apt-pkg/contrib/cdromutl.cc:65 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "無法取得掛載點 %s 的狀態" - -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "無法取得 CD-ROM 的狀態" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "此操作完成之後,會空出 %sB 的磁碟空間。\n" -#: apt-pkg/contrib/configuration.cc:519 +#: apt-private/private-install.cc:200 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "無法辨識的縮寫類型:'%c'" +msgid "You don't have enough free space in %s." +msgstr "在 %s 裡沒有足夠的的未使用空間。" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "開啟設定檔 %s" +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "發生了問題,且 -y 並沒有和 --force-yes 搭配使用" -#: apt-pkg/contrib/configuration.cc:801 -#, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "語法錯誤 %s:%u:區塊開頭沒有名稱。" +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "雖然指定了 Trivial Only(自動答 NO)選項,但這並不是 trivial 操作。" -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "語法錯誤 %s:%u:標籤格式錯誤" +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Yes, do as I say!" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-private/private-install.cc:222 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "語法錯誤 %s:%u:數值後有多餘的垃圾" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"您所進行的操作可能會帶來危險。\n" +"請輸入 '%s' 這個句子以繼續進行\n" +" ?] " -#: apt-pkg/contrib/configuration.cc:877 -#, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" -msgstr "語法錯誤 %s:%u:指令只能於最高層級執行" +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "放棄執行。" -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "語法錯誤 %s:%u: 太多巢狀引入檔" +#: apt-private/private-install.cc:243 +#, fuzzy +msgid "Do you want to continue?" +msgstr "是否繼續進行 [Y/n]?" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 -#, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "語法錯誤 %s:%u:從此引入" +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "有部份檔案無法下載" -#: apt-pkg/contrib/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "語法錯誤 %s:%u:不支援的指令 '%s'" +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"有部份套件檔無法取得,試著執行 apt-get update 或者試著加上 --fix-missing 選" +"項?" -#: apt-pkg/contrib/configuration.cc:900 -#, fuzzy, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "語法錯誤 %s:%u:指令只能於最高層級執行" +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "目前尚未支援 --fix-missing 和媒體抽換" -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" -msgstr "語法錯誤 %s:%u:在檔案結尾有多餘的垃圾" +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "無法修正欠缺的套件。" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 -#, fuzzy, c-format -msgid "No keyring installed in %s." +#: apt-private/private-install.cc:330 +msgid "Aborting install." msgstr "放棄安裝。" -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "未知的命令列選項 '%c' [來自 %s]。" - -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 -#, c-format -msgid "Command line option %s is not understood" -msgstr "無法理解的命令列選項 %s" - -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "命令列選項 %s 不是 boolean 值" - -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 -#, c-format -msgid "Option %s requires an argument." -msgstr "需替選項 %s 指定參數。" +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +msgstr[1] "" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "選項 %s:在指定設定項目時應該有 =<val>。" +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "選項 %s 的參數應該是數字,而不是 '%s'" +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "我們沒有計劃要刪除任何東西,無法啟動 AutoRemover" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "選項 %s 太長" +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" +"嗯,看起來 AutoRemover 弄壞了什麼東西,而這是不該發生的。\n" +"請針對 apt 發佈錯誤回報。" -#: apt-pkg/contrib/cmndline.cc:341 -#, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "偵測器 %s 無法理解,試試 true 或 false。" +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << std::endl; +#. } +#. +#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 +msgid "The following information may help to resolve the situation:" +msgstr "以下的資訊或許有助於解決當前的情況:" -#: apt-pkg/contrib/cmndline.cc:391 -#, c-format -msgid "Invalid operation %s" -msgstr "無效的操作 %s" +#: apt-private/private-install.cc:506 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "內部錯誤,AutoRemover 處理失敗" -#: cmdline/apt-cache.cc:149 -#, c-format -msgid "Package %s version %s has an unmet dep:\n" -msgstr "套件 %s 版本 %s 未能滿足相依性:\n" +#: apt-private/private-install.cc:513 +#, fuzzy +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "以下套件是被自動安裝進來的,且已不再會被用到了:" +msgstr[1] "以下套件是被自動安裝進來的,且已不再會被用到了:" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "套件名稱合計:" +#: apt-private/private-install.cc:517 +#, fuzzy, c-format +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "以下套件是被自動安裝進來的,且已不再會被用到了:" +msgstr[1] "以下套件是被自動安裝進來的,且已不再會被用到了:" -#: cmdline/apt-cache.cc:279 +#: apt-private/private-install.cc:519 #, fuzzy -msgid "Total package structures: " -msgstr "套件名稱合計:" +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "使用 'apt-get autoremove' 來將其移除。" +msgstr[1] "使用 'apt-get autoremove' 來將其移除。" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " 一般套件:" +#: apt-private/private-install.cc:612 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "您也許得執行 'apt-get -f install' 以修正這些問題:" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " 完全虛擬套件:" +#: apt-private/private-install.cc:614 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"未能滿足相依關係。請試著不指定套件來執行 'apt-get -f install'(或採取其它的解" +"決方案)。" -#: cmdline/apt-cache.cc:321 -msgid " Single virtual packages: " -msgstr " 單一虛擬套件:" +#: apt-private/private-install.cc:638 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"有些套件無法安裝。這可能意謂著您的要求難以解決,或是若您使用的是\n" +"unstable 發行版,可能有些必要的套件尚未建立,或是被移出 Incoming 了。" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " 混合虛擬套件:" +#: apt-private/private-install.cc:659 +msgid "Broken packages" +msgstr "損毀的套件" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " 找不到:" +#: apt-private/private-install.cc:712 +msgid "The following extra packages will be installed:" +msgstr "下列的額外套件將被安裝:" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "個別版本合計:" +#: apt-private/private-install.cc:802 +msgid "Suggested packages:" +msgstr "建議套件:" -#: cmdline/apt-cache.cc:327 -msgid "Total distinct descriptions: " -msgstr "個別版本類別合計:" +#: apt-private/private-install.cc:803 +msgid "Recommended packages:" +msgstr "推薦套件:" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "相依關係合計:" +#: apt-private/private-install.cc:825 +#, c-format +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "忽略 %s,它已被安裝且沒有計劃要進行升級。\n" -#: cmdline/apt-cache.cc:332 -msgid "Total ver/file relations: " -msgstr "版本/檔案關聯合計:" +#: apt-private/private-install.cc:829 +#, fuzzy, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "忽略 %s,它已被安裝且沒有計劃要進行升級。\n" -#: cmdline/apt-cache.cc:334 -msgid "Total Desc/File relations: " -msgstr "類別/檔案關聯合計:" +#: apt-private/private-install.cc:841 +#, c-format +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "無法重新安裝 %s,因為它無法下載。\n" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " -msgstr "提供者對應合計:" +#: apt-private/private-install.cc:846 +#, c-format +msgid "%s is already the newest version.\n" +msgstr "%s 已經是最新版本了。\n" -#: cmdline/apt-cache.cc:348 -msgid "Total globbed strings: " -msgstr "所有字串合計:" +#: apt-private/private-install.cc:894 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "選定的版本為 %3$s 的 %1$s (%2$s)\n" -#: cmdline/apt-cache.cc:362 -msgid "Total dependency version space: " -msgstr "相依版本空間合計:" +#: apt-private/private-install.cc:899 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "選定的版本為 %3$s 的 %1$s (%2$s)\n" -#: cmdline/apt-cache.cc:367 -msgid "Total slack space: " -msgstr "間暇空間合計:" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:941 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "套件 %s 並沒有被安裝,所以也不會被移除\n" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " -msgstr "統計後的空間合計:" +#: apt-private/private-install.cc:947 +#, fuzzy, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "套件 %s 並沒有被安裝,所以也不會被移除\n" -#: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155 -#: apt-private/private-show.cc:58 -#, c-format -msgid "Package file %s is out of sync." -msgstr "套件檔 %s 未同步。" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "" -#: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1441 -#: cmdline/apt-cache.cc:1443 cmdline/apt-cache.cc:1520 cmdline/apt-mark.cc:59 -#: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232 -#: apt-private/private-show.cc:171 apt-private/private-show.cc:173 -msgid "No packages found" -msgstr "未找到套件" - -#: cmdline/apt-cache.cc:1254 -#, fuzzy -msgid "You must give at least one search pattern" -msgstr "您必須明確得給定一個樣式" - -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" - -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "套件檔:" +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-cache.cc:1552 cmdline/apt-cache.cc:1643 -msgid "Cache is out of sync, can't x-ref a package file" -msgstr "快取資料未同步,無法 x-ref 套件檔" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "正在修正相依關係..." -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "鎖定的套件:" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " 失敗。" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(未找到)" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "無法修正相依關係" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " 已安裝:" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "無法將升級計劃最小化" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " 候選:" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " 完成" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(無)" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "您也許得執行 'apt-get -f install' 以修正這些問題。" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " 套件鎖定:" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "未能滿足相依關係。試試 -f 選項。" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " 版本列表:" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "" -#: cmdline/apt-cache.cc:1742 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 -#: cmdline/apt-get.cc:1586 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 -#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217 -#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s 是用於 %s 並在 %s %s 上編譯的\n" +#: apt-private/private-output.cc:234 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr "【已安裝】" -#: cmdline/apt-cache.cc:1749 +#: apt-private/private-output.cc:238 #, fuzzy -msgid "" -"Usage: apt-cache [options] command\n" -" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" -" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" -"\n" -"apt-cache is a low-level tool used to query information\n" -"from APT's binary cache files\n" -"\n" -"Commands:\n" -" gencaches - Build both the package and source cache\n" -" showpkg - Show some general information for a single package\n" -" showsrc - Show source records\n" -" stats - Show some basic statistics\n" -" dump - Show the entire file in a terse form\n" -" dumpavail - Print an available file to stdout\n" -" unmet - Show unmet dependencies\n" -" search - Search the package list for a regex pattern\n" -" show - Show a readable record for the package\n" -" depends - Show raw dependency information for a package\n" -" rdepends - Show reverse dependency information for a package\n" -" pkgnames - List the names of all packages in the system\n" -" dotty - Generate package graphs for GraphViz\n" -" xvcg - Generate package graphs for xvcg\n" -" policy - Show policy settings\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -p=? The package cache.\n" -" -s=? The source cache.\n" -" -q Disable progress indicator.\n" -" -i Show only important deps for the unmet command.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgid "[installed,local]" +msgstr "【已安裝】" + +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" msgstr "" -"用法:apt-cache [選項] 指令\n" -" apt-cache [選項] add 檔案1 [檔案2 ...]\n" -" apt-cache [選項] showpkg 套件1 [套件2 ...]\n" -" apt-cache [選項] showsrc 套件1 [套件2 ...]\n" -"\n" -"apt-cache 是一個低階的工具,可用來操作 APT 的二進制快取檔,也可用來\n" -"查詢那些檔案中的相關訊息\n" -"\n" -"指令:\n" -" add - 把套件檔加入原始碼快取中\n" -" gencaches - 同時產生套件和原始碼的快取\n" -" showpkg - 顯示某單一套件的一般資訊\n" -" showsrc - 顯示原始碼報告\n" -" stats - 顯示一些基本的統計資訊\n" -" dump - 簡要得顯示整個檔案\n" -" dumpavail - 將可用的檔案列印至標準輸出\n" -" unmet - 顯示所有未滿足的相依關係\n" -" search - 根據正規表示式搜索套件列表\n" -" show - 顯示該套件的易於閱讀的報告\n" -" depends - 顯示該套件的原始相依關係的資訊\n" -" rdepends - 顯示所有相依於該套件的套件名稱\n" -" pkgnames - 列出系統中所有套件\n" -" dotty - 產生用於 GraphViz 的套件關係圖\n" -" xvcg - 產生用於 xvcg 的套件的關係圖\n" -" policy - 顯示套件的可安裝版本資訊\n" -"\n" -"選項:\n" -" -h 本幫助訊息。\n" -" -p=? 套件的快取。\n" -" -s=? 原始碼的快取。\n" -" -q 關閉進度顯示。\n" -" -i 僅為 unmet 指令顯示重要的相依關係。\n" -" -c=? 讀取指定的設定檔\n" -" -o=? 指定任意的設定選項,例如:-o dir::cache=/tmp\n" -"請參閱 apt-cache(8) 及 apt.conf(5) 參考手冊以取得更多資訊。\n" -#: cmdline/apt-cdrom.cc:76 +#: apt-private/private-output.cc:243 #, fuzzy -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "請替這張光碟取個名字,像是 'Debian 2.1r1 Disk 1'" +msgid "[installed,automatic]" +msgstr "【已安裝】" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "請把光碟放入光碟機,然後按下 [Enter] 鍵" +#: apt-private/private-output.cc:245 +#, fuzzy +msgid "[installed]" +msgstr "【已安裝】" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "無法將 %s 更名為 %s" +#: apt-private/private-output.cc:249 +#, c-format +msgid "[upgradable from: %s]" +msgstr "" -#: cmdline/apt-cdrom.cc:178 -msgid "" -"No CD-ROM could be auto-detected or found using the default mount point.\n" -"You may try the --cdrom option to set the CD-ROM mount point.\n" -"See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " -"mount point." +#: apt-private/private-output.cc:253 +msgid "[residual-config]" msgstr "" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "請對您的光碟組中的其它光碟重複相同的操作。" +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "但 %s 卻已安裝" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "參數並未成對" +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "但 %s 卻將被安裝" -#: cmdline/apt-config.cc:89 -msgid "" -"Usage: apt-config [options] command\n" -"\n" -"apt-config is a simple tool to read the APT config file\n" -"\n" -"Commands:\n" -" shell - Shell mode\n" -" dump - Show the configuration\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -msgstr "" -"用法:apt-config [選項] 指令\n" -"\n" -"apt-config 是一個用於讀取 APT 設定檔的簡單工具\n" -"\n" -"指令:\n" -" shell - Shell 模式\n" -" dump - 顯示設定\n" -"\n" -"選項:\n" -" -h 本幫助訊息。\n" -" -c=? 讀取指定的設定檔\n" -" -o=? 指定任意的設定選項,例如:-o dir::cache=/tmp\n" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "但它卻無法安裝" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "無法找到套件 %s" +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "但它是虛擬套件" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "無法找到套件 %s" +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "但它卻尚未安裝" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "無法找到套件 %s" +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "但它卻將不會被安裝" -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "無法取得來源套件列表 %s 的狀態" - -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr "或" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "無法找到套件 %s" +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "下列的套件有未滿足的相依關係:" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 -#, c-format -msgid "%s set to manually installed.\n" -msgstr "%s 被設定為手動安裝。\n" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "下列【新】套件將會被安裝:" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s 被設定為手動安裝。\n" +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "下列套件將會被【移除】:" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 -msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." -msgstr "" +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "下列套件將會維持其原有版本:" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "內部錯誤,問題排除器造成了損壞" +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "下列套件將會被升級:" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "無法鎖定下載目錄" +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" +msgstr "下列套件將會被【降級】:" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "在取得原始碼時必須至少指定一個套件" +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "下列被保留 (hold) 的套件將會被更改:" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-private/private-output.cc:668 #, c-format -msgid "Unable to find a source package for %s" -msgstr "無法找到 %s 的原始碼套件" +msgid "%s (due to %s) " +msgstr "%s(因為 %s)" -#: cmdline/apt-get.cc:786 -#, c-format +#: apt-private/private-output.cc:676 msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" +"【警告】:下列的基本套件都將被移除。\n" +"除非您很清楚您在做什麼,否則請勿輕易嘗試!" -#: cmdline/apt-get.cc:791 +#: apt-private/private-output.cc:707 #, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" -msgstr "" +msgid "%lu upgraded, %lu newly installed, " +msgstr "升級 %lu 個,新安裝 %lu 個," -#: cmdline/apt-get.cc:843 +#: apt-private/private-output.cc:711 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "略過已下載的檔案 '%s'\n" +msgid "%lu reinstalled, " +msgstr "重新安裝 %lu 個," -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-private/private-output.cc:713 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "無法確認 %s 的未使用空間" +msgid "%lu downgraded, " +msgstr "降級 %lu 個," -#: cmdline/apt-get.cc:882 +#: apt-private/private-output.cc:715 #, c-format -msgid "You don't have enough free space in %s" -msgstr "在 %s 裡沒有足夠的的未使用空間" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "移除 %lu 個,有 %lu 個未被升級。\n" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#: apt-private/private-output.cc:719 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "需要下載 %sB/%sB 的原始套件檔。\n" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu 個沒有完整得安裝或移除。\n" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "需要下載 %sB 的原始套件檔。\n" +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "" -#: cmdline/apt-get.cc:902 -#, c-format -msgid "Fetch source %s\n" -msgstr "取得原始碼 %s\n" +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "無法取得某些套件檔。" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "下載完成,且這是『僅下載』模式" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "" -#: cmdline/apt-get.cc:950 +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "不解開,因原始碼已解開至 %s\n" +msgid "Regex compilation error - %s" +msgstr "編譯正規表示式時發生錯誤 - %s" -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "解開指令 '%s' 失敗。\n" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "update 指令不需任何參數" -#: cmdline/apt-get.cc:963 +#: apt-private/private-update.cc:90 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "請檢查是否已安裝了 'dpkg-dev' 套件。\n" +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "編譯指令 '%s' 失敗。\n" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "子程序失敗" +#: apt-private/private-show.cc:156 +#, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +msgstr[1] "" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "在檢查編譯相依關係時必須至少指定一個套件" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: cmdline/apt-get.cc:1054 -#, c-format +#: apt-private/private-main.cc:32 msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" msgstr "" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "無法取得 %s 的編譯相依關係資訊" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "【警告】:無法驗證下列套件!" -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s 沒有編譯相依關係。\n" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "忽略了驗證警告。\n" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" -msgstr "無法滿足 %2$s 所要求的 %1$s 相依關係,因為找不到套件 %3$s" +#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 +msgid "Some packages could not be authenticated" +msgstr "有部份套件無法驗證" -#: cmdline/apt-get.cc:1289 -#, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "無法滿足 %2$s 所要求的 %1$s 相依關係,因為找不到套件 %3$s" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "是否不經驗證就安裝這些套件?" -#: cmdline/apt-get.cc:1312 +#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "無法滿足 %2$s 的相依關係 %1$s:已安裝的套件 %3$s 太新了" - -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" -msgstr "" -"無法滿足 %2$s 所要求的 %1$s 相依關係,因為套件 %3$s 沒有版本符合其版本需求" +msgid "Failed to fetch %s %s\n" +msgstr "無法取得 %s,%s\n" -#: cmdline/apt-get.cc:1357 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "無法滿足 %2$s 所要求的 %1$s 相依關係,因為找不到套件 %3$s" - -#: cmdline/apt-get.cc:1380 -#, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "無法滿足 %2$s 的相依關係 %1$s:%3$s" +msgid "Failed to parse %s. Edit again? " +msgstr "無法將 %s 更名為 %s" -#: cmdline/apt-get.cc:1395 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "無法滿足套件 %s 的編譯相依關係。" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "無法處理編譯相依關係" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "正和 %s (%s) 連線" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "籌備升級中... " -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "已支援模組:" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "完成" -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "已有 " + +#: apt-private/acqprogress.cc:90 +msgid "Get:" +msgstr "下載:" + +#: apt-private/acqprogress.cc:121 +msgid "Ign " +msgstr "略過 " + +#: apt-private/acqprogress.cc:125 +msgid "Err " +msgstr "錯誤 " + +#: apt-private/acqprogress.cc:146 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "取得 %sB 用了 %s (%sB/s)\n" + +#: apt-private/acqprogress.cc:236 +#, c-format +msgid " [Working]" +msgstr " [工作中]" + +#: apt-private/acqprogress.cc:297 +#, c-format msgid "" -"Usage: apt-get [options] command\n" -" apt-get [options] install|remove pkg1 [pkg2 ...]\n" -" apt-get [options] source pkg1 [pkg2 ...]\n" -"\n" -"apt-get is a simple command line interface for downloading and\n" -"installing packages. The most frequently used commands are update\n" -"and install.\n" -"\n" -"Commands:\n" -" update - Retrieve new lists of packages\n" -" upgrade - Perform an upgrade\n" -" install - Install new packages (pkg is libc6 not libc6.deb)\n" -" remove - Remove packages\n" -" autoremove - Remove automatically all unused packages\n" -" purge - Remove packages and config files\n" -" source - Download source archives\n" -" build-dep - Configure build-dependencies for source packages\n" -" dist-upgrade - Distribution upgrade, see apt-get(8)\n" -" dselect-upgrade - Follow dselect selections\n" -" clean - Erase downloaded archive files\n" -" autoclean - Erase old downloaded archive files\n" -" check - Verify that there are no broken dependencies\n" -" changelog - Download and display the changelog for the given package\n" -" download - Download the binary package into the current directory\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -d Download only - do NOT install or unpack archives\n" -" -s No-act. Perform ordering simulation\n" -" -y Assume Yes to all queries and do not prompt\n" -" -f Attempt to correct a system with broken dependencies in place\n" -" -m Attempt to continue if archives are unlocatable\n" -" -u Show a list of upgraded packages as well\n" -" -b Build the source package after fetching it\n" -" -V Show verbose version numbers\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -"pages for more information and options.\n" -" This APT has Super Cow Powers.\n" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"用法:apt-get [選項] 指令\n" -" apt-get [選項] install|remove 套件1 [套件2 ...]\n" -" apt-get [選項] source 套件1 [套件2 ...]\n" -"\n" -"apt-get 是一個用來下載和安裝套件的簡易命令列界面。\n" -"最常用指令是 update 和 install。\n" -"\n" -"指令:\n" -" update - 取得新的套件列表\n" -" upgrade - 進行升級\n" -" install - 安裝新套件(套件名稱是 libc6 而不是 libc6.deb)\n" -" remove - 移除套件\n" -" autoremove - 自動移除所有不再使用的套件\n" -" purge - 移除並清除套件\n" -" source - 下載套件原始碼\n" -" build-dep - 為原始碼套件配置編譯相依關係\n" -" dist-upgrade - 發行版本升級,請參閱 apt-get(8)\n" -" dselect-upgrade - 採用 dselect 的選項升級\n" -" clean - 刪除已下載的套件檔\n" -" auto-clean - 刪除已下載但已有新版本的套件檔\n" -" check - 檢查相依關係是否有問題\n" -"\n" -"選項:\n" -" -h 本求助訊息。\n" -" -q 讓輸出可作為記錄檔之用 - 不顯示進度\n" -" -qq 除了錯誤外,不顯示其它資訊\n" -" -d 僅下載 - 【不】安裝或解開套件檔\n" -" -s 不實際進行。只是模擬執行指令\n" -" -y 對所有詢問都回答 Yes,同時不會有任何提示\n" -" -f 嘗試修正系統上損毀的套件相依關係\n" -" -m 當有套件檔無法找到時,仍試著繼續進行\n" -" -u 顯示已升級的套件列表\n" -" -b 在取得套件原始碼後進行編譯\n" -" -V 顯示詳盡的版本號碼\n" -" -c=? 讀取指定的設定檔\n" -" -o=? 指定任意的設定選項,例如:-o dir::cache=/tmp\n" -"請參閱 apt-get(8)、sources.list(5) 及 apt.conf(5) 的使用手冊\n" -"以取得更多資訊和選項。\n" -" 該 APT 有著超級牛力。\n" +"更換媒體:請把以下名稱的光碟\n" +" '%s'\n" +"放入 '%s' 裝置,然後按 [Enter] 鍵\n" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "在取得原始碼時必須至少指定一個套件" +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 +#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 +#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 +#: apt-pkg/contrib/cdromutl.cc:205 +#, c-format +msgid "Unable to read %s" +msgstr "無法讀取 %s" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49 +#: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500 +#: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201 +#: apt-pkg/contrib/cdromutl.cc:235 +#, c-format +msgid "Unable to change to %s" +msgstr "無法切換至 %s" -#: cmdline/apt-helper.cc:66 -msgid "" -"Usage: apt-helper [options] command\n" -" apt-helper [options] download-file uri target-path\n" -"\n" -"apt-helper is a internal helper for apt\n" -"\n" -"Commands:\n" -" download-file - download the given uri to the target-path\n" -"\n" -" This APT helper has Super Meep Powers.\n" +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 +#, c-format +msgid "No mirror file '%s' found " msgstr "" -#: cmdline/apt-mark.cc:68 +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 #, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "但它卻尚未安裝" +msgid "Can not read mirror file '%s'" +msgstr "無法開啟檔案 %s" -#: cmdline/apt-mark.cc:74 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s 被設定為手動安裝。\n" +msgid "No entry found in mirror file '%s'" +msgstr "無法開啟檔案 %s" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s 被設定為手動安裝。\n" +#: methods/mirror.cc:445 +#, c-format +msgid "[Mirror: %s]" +msgstr "" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s 已經是最新版本了。\n" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "無法和子程序建立 IPC 管線" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s 已經是最新版本了。\n" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "連線突然終止" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s 被設定為手動安裝。\n" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "錯誤的預設設定!" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "無法開啟 %s" +#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 +#: dselect/install:106 dselect/update:45 +msgid "Press enter to continue." +msgstr "請按 [Enter] 鍵以繼續進行。" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "您想移除所有先前下載的 .deb 檔嗎?" -#: cmdline/apt-mark.cc:392 -msgid "" -"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" -"\n" -"apt-mark is a simple command line interface for marking packages\n" -"as manually or automatically installed. It can also list marks.\n" -"\n" -"Commands:\n" -" auto - Mark the given packages as automatically installed\n" -" manual - Mark the given packages as manually installed\n" -" hold - Mark a package as held back\n" -" unhold - Unset a package set as held back\n" -" showauto - Print the list of automatically installed packages\n" -" showmanual - Print the list of manually installed packages\n" -" showhold - Print the list of package on hold\n" -"\n" -"Options:\n" -" -h This help text.\n" -" -q Loggable output - no progress indicator\n" -" -qq No output except for errors\n" -" -s No-act. Just prints what would be done.\n" -" -f read/write auto/manual marking in the given file\n" -" -c=? Read this configuration file\n" -" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -"See the apt-mark(8) and apt.conf(5) manual pages for more information." -msgstr "" +#: dselect/install:102 +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "在解開套件時發生錯誤。我要準備設定" -#: cmdline/apt.cc:47 +#: dselect/install:103 +#, fuzzy +msgid "will be configured. This may result in duplicate errors" +msgstr "套件已安裝過。這會造成重複錯誤" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "或是因為沒有相依關係而造成錯誤。那麼這個錯誤是無關緊要的" + +#: dselect/install:105 msgid "" -"Usage: apt [options] command\n" -"\n" -"CLI for apt.\n" -"Basic commands: \n" -" list - list packages based on package names\n" -" search - search in package descriptions\n" -" show - show package details\n" -"\n" -" update - update list of available packages\n" -"\n" -" install - install packages\n" -" remove - remove packages\n" -"\n" -" upgrade - upgrade the system by installing/upgrading packages\n" -" full-upgrade - upgrade the system by removing/installing/upgrading " -"packages\n" -"\n" -" edit-sources - edit the source information file\n" -msgstr "" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "以上的訊息相當重要。請修正它們並重新執行安裝[I]" + +#: dselect/update:30 +msgid "Merging available information" +msgstr "整合現有的資料" + +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode 在還有連結結點時被呼叫" + +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "找不到雜湊元件!" + +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "在配置抽換資訊時失敗" + +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "在 AddDiversion 發生了內部錯誤" + +#: apt-inst/filelist.cc:477 +#, c-format +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "試圖改寫抽換資訊,%s -> %s 和 %s/%s" + +#: apt-inst/filelist.cc:506 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "重複加入抽換資訊 %s -> %s" + +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "重複的設定檔 %s/%s" + +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" +msgstr "路徑 %s 過長" + +#: apt-inst/extract.cc:132 +#, c-format +msgid "Unpacking %s more than once" +msgstr "解開 %s 超過一次" + +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "路徑 %s 已被抽換" + +#: apt-inst/extract.cc:152 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "此套件試圖寫至抽換後的目標 %s/%s" + +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "要進行抽換的路徑過長" + +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:182 +#, c-format +msgid "Failed to stat %s" +msgstr "無法取得 %s 的狀態" + +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "無法將 %s 更名為 %s" + +#: apt-inst/extract.cc:249 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "目錄 %s 已經被非目錄的檔案所取代" + +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "在雜湊表中找不到節點" + +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "路徑過長" + +#: apt-inst/extract.cc:421 +#, c-format +msgid "Overwrite package match with no version for %s" +msgstr "以無版本的 %s 覆寫原始套件" + +#: apt-inst/extract.cc:438 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" +msgstr "檔案 %s/%s 覆寫了套件 %s 中的相同檔案" + +#: apt-inst/extract.cc:498 +#, c-format +msgid "Unable to stat %s" +msgstr "無法取得 %s 的狀態" + +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#, c-format +msgid "Failed to write file %s" +msgstr "寫入檔案 %s 失敗" + +#: apt-inst/dirstream.cc:105 +#, c-format +msgid "Failed to close file %s" +msgstr "關閉檔案 %s 失敗" + +#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 +#: apt-inst/deb/debfile.cc:63 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "這是個不正確的 DEB 套件檔,沒有 '%s' 成員" + +#: apt-inst/deb/debfile.cc:132 +#, c-format +msgid "Internal error, could not locate member %s" +msgstr "內部錯誤,找不找到成員 %s" + +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "無法分析的 control 檔" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "無效的套件庫簽章" -#: methods/cdrom.cc:203 -#, c-format -msgid "Unable to read the cdrom database %s" -msgstr "無法讀取光碟片資料庫 %s" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "讀取套件檔的成員標頭訊息時發生錯誤" -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" -msgstr "" -"請用 apt-cdrom 來讓 APT 能辨識這張光碟。apt-get update 是不能用來新增光碟的" +#: apt-inst/contrib/arfile.cc:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "無效的套件檔成員標頭" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "不正確的光碟" +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "無效的套件檔成員標頭" -#: methods/cdrom.cc:249 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "無法卸載 %s 裡的光碟片,或許它仍在使用中。" +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "套件檔過短" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "找不到磁碟。" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "讀取套件檔標頭失敗" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "找不到檔案" +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "無法建立管線" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "無法取得狀態" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "無法執行 gzip" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "無法設定修改時間" +#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "損毀的套件檔" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "不正確的 URI,本機 URI 不應以 // 開頭" +#: apt-inst/contrib/extracttar.cc:203 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar checksum 失敗,套件檔已損毀" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "登入中" +#: apt-inst/contrib/extracttar.cc:308 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "未知的 TAR 標頭類型 %u,成員 %s" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "無法解析對方主機名稱" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "無法解析本機名稱" +#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 +msgid "Running dpkg" +msgstr "" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/init.cc:146 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "伺服器不接受連線,並回應:%s" +msgid "Packaging system '%s' is not supported" +msgstr "不支援的套件包裝系統 '%s'" -#: methods/ftp.cc:225 +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "無法確認合適的套件包裝系統類型" + +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER 指令失敗,伺服器回應:%s" +msgid "Wrote %i records.\n" +msgstr "寫入 %i 筆紀錄。\n" -#: methods/ftp.cc:232 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS 指令失敗,伺服器回應:%s" +msgid "Wrote %i records with %i missing files.\n" +msgstr "寫入 %i 筆紀綠,其中有 %i 個檔案遺失了。\n" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"指定了代理伺服器,但沒有指定登入 script,Acquire::ftp::ProxyLogin 是空的。" +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "寫入 %i 筆紀綠,其中有 %i 個檔案不符\n" -#: methods/ftp.cc:280 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "登入 script 指令 '%s' 失敗,伺服器回應:%s" +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "寫入 %i 筆紀綠,其中有 %i 個檔案遺失了,有 %i 個檔案不符\n" -#: methods/ftp.cc:306 +#: apt-pkg/indexcopy.cc:515 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE 指令失敗,伺服器回應:%s" +msgid "Can't find authentication record for: %s" +msgstr "" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "連線逾時" +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "Hash Sum 不符" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "伺服器已關閉連線" +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "無法分析或開啟套件清單或狀況檔。" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "回應超過緩衝區長度。" +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" +msgstr "您也許得執行 apt-get update 以修正這些問題" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "協定失敗" +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "無法讀取來源列表。" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "無法建立 Socket" +#: apt-pkg/pkgcache.cc:155 +msgid "Empty package cache" +msgstr "清空套件快取" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "無法和 data socket 連線,連線逾時" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is corrupted" +msgstr "套件快取檔損壞" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "失敗" +#: apt-pkg/pkgcache.cc:166 +msgid "The package cache file is an incompatible version" +msgstr "套件快取檔版本不符" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "無法和 passive socket 連線。" +#: apt-pkg/pkgcache.cc:169 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "套件快取檔損壞" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo 無法取得監聽 socket" +#: apt-pkg/pkgcache.cc:174 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "本 APT 不支援 '%s' 版本系統" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "無法 bind 至 socket" +#: apt-pkg/pkgcache.cc:179 +msgid "The package cache was built for a different architecture" +msgstr "這個套件快取是用於另一種平台的" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "無法監聽 socket" +#: apt-pkg/pkgcache.cc:321 +msgid "Depends" +msgstr "相依關係" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "無法解析 socket 名稱" +#: apt-pkg/pkgcache.cc:321 +msgid "PreDepends" +msgstr "預先相依關係" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "無法送出 PORT 指令" +#: apt-pkg/pkgcache.cc:321 +msgid "Suggests" +msgstr "建議" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "未知的地址家族 %u (AF_*)" +#: apt-pkg/pkgcache.cc:322 +msgid "Recommends" +msgstr "推薦" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT 指令失敗,伺服器回應:%s" +#: apt-pkg/pkgcache.cc:322 +msgid "Conflicts" +msgstr "衝突" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Data socket 連線逾時" +#: apt-pkg/pkgcache.cc:322 +msgid "Replaces" +msgstr "取代" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "無法接受連線" +#: apt-pkg/pkgcache.cc:323 +msgid "Obsoletes" +msgstr "廢棄" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "有問題的雜湊檔" +#: apt-pkg/pkgcache.cc:323 +msgid "Breaks" +msgstr "毀損" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "無法取得檔案,伺服器回應 '%s'" +#: apt-pkg/pkgcache.cc:323 +msgid "Enhances" +msgstr "" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Data socket 連線逾時" +#: apt-pkg/pkgcache.cc:334 +msgid "important" +msgstr "重要" + +#: apt-pkg/pkgcache.cc:334 +msgid "required" +msgstr "必要" -#: methods/ftp.cc:935 -#, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "資料傳輸失敗,伺服器回應 '%s'" +#: apt-pkg/pkgcache.cc:334 +msgid "standard" +msgstr "標準" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "查詢" +#: apt-pkg/pkgcache.cc:335 +msgid "optional" +msgstr "次要" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "無法 invoke " +#: apt-pkg/pkgcache.cc:335 +msgid "extra" +msgstr "額外" -#: methods/connect.cc:76 +#: apt-pkg/acquire-worker.cc:116 #, c-format -msgid "Connecting to %s (%s)" -msgstr "正和 %s (%s) 連線" +msgid "The method driver %s could not be found." +msgstr "找不到安裝方式的驅動程式 %s。" -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +#: apt-pkg/acquire-worker.cc:118 +#, fuzzy, c-format +msgid "Is the package %s installed?" +msgstr "請檢查是否已安裝了 'dpkg-dev' 套件。\n" -#: methods/connect.cc:94 +#: apt-pkg/acquire-worker.cc:169 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "無法建立 socket 指向 %s (f=%u t=%u p=%u)" +msgid "Method %s did not start correctly" +msgstr "安裝方式 %s 沒有正確啟動" -#: methods/connect.cc:100 +#: apt-pkg/acquire-worker.cc:455 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "無法初始和 %s:%s (%s) 的連線。" +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "請把標籤為 '%s' 的光碟放入 '%s' 裝置中,然後按下 [Enter] 鍵。" -#: methods/connect.cc:108 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "無法和 %s:%s (%s) 連線,連線逾時" +msgid "Index file type '%s' is not supported" +msgstr "不被支援的索引檔類型 '%s'" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "無法和 %s:%s (%s) 連線。" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "正在重建相依關係" -#. We say this mainly because the pause here is for the -#. ssh connection that is still going -#: methods/connect.cc:154 methods/rsh.cc:439 -#, c-format -msgid "Connecting to %s" -msgstr "正連線至 %s" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "候選版本" -#: methods/connect.cc:180 methods/connect.cc:199 -#, c-format -msgid "Could not resolve '%s'" -msgstr "無法解析 '%s'" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "建立相依關係" -#: methods/connect.cc:205 -#, c-format -msgid "Temporary failure resolving '%s'" -msgstr "暫時無法解析 '%s'" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "正在讀取狀態資料" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "在解析 '%s:%s' (%i) 時出了怪事" +#: apt-pkg/depcache.cc:250 +#, c-format +msgid "Failed to open StateFile %s" +msgstr "無法開啟 StateFile %s" -#: methods/connect.cc:211 -#, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "在解析 '%s:%s' (%i) 時出了怪事" +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "無法寫入暫存的 StateFile %s" -#: methods/connect.cc:258 -#, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "無法連線至 %s %s:" +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "無法重新命名,%s (%s -> %s)。" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "內部錯誤:簽章無誤,但卻無法辨識密鑰的指紋碼?!" +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Hash Sum 不符" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "至少發現一個無效的簽章。" +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "大小不符" -#: methods/gpgv.cc:174 +#: apt-pkg/acquire-item.cc:173 #, fuzzy -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "無法執行 '%s' 來驗證簽章(gpgv 是否安裝了?)" +msgid "Invalid file format" +msgstr "無效的操作 %s" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/acquire-item.cc:1573 #, c-format msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "在執行 gpgv 時發生未知的錯誤" +#: apt-pkg/acquire-item.cc:1589 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "無法辨別 Release 檔 %s" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "以下簽名無效:\n" +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "無法取得以下的密鑰 ID 的公鑰:\n" -#: methods/gpgv.cc:231 +#: apt-pkg/acquire-item.cc:1669 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "由於無法取得它們的公鑰,以下簽章無法進行驗證:\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "在寫入該檔時發生錯誤" - -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "在讀取伺服器時發生錯誤,遠端主機已關閉連線" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "在讀取伺服器時發生錯誤" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "在寫入檔案時發生錯誤" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "選擇失敗" - -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "連線逾時" - -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "在寫入輸出檔時發生錯誤" - -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "等待標頭" +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "發行版本衝突:%s(應當是 %s 但卻得到 %s)" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "標頭行錯誤" +#: apt-pkg/acquire-item.cc:1721 +#, c-format +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP 伺服器傳送了一個無效的回覆標頭" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#, c-format +msgid "GPG error: %s: %s" +msgstr "" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP 伺服器傳送了一個無效的 Content-Length 標頭" +#: apt-pkg/acquire-item.cc:1859 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"找不到 %s 套件的某個檔案。這意味著您可能要手動修復這個套件。(因為找不到平" +"台)" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP 伺服器傳送了一個無效的 Content-Range 標頭" +#: apt-pkg/acquire-item.cc:1925 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "這個 HTTP 伺服器的範圍支援有問題" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "這個套件的索引檔損壞了。沒有套件 %s 的 Filename: 欄位。" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "未知的資料格式" +#: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 +#, fuzzy, c-format +msgid "Clean of %s is not supported" +msgstr "不被支援的索引檔類型 '%s'" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "錯誤的標頭資料" +#: apt-pkg/clean.cc:64 +#, c-format +msgid "Unable to stat %s." +msgstr "無法取得 %s 的狀態。" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "連線失敗" +#: apt-pkg/pkgcachegen.cc:93 +msgid "Cache has an incompatible versioning system" +msgstr "快取使用的是不相容的版本系統" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "內部錯誤" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327 +#: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382 +#: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415 +#: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440 +#: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555 +#: apt-pkg/pkgcachegen.cc:569 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "在處理 %s 時發生錯誤 (FindPkg)" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "籌備升級中... " +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "哇呀,您已經超過這個 APT 所能處理的套件名稱數量了。" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "完成" +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "哇呀,您已經超過這個 APT 所能處理的版本數量了。" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/pkgcachegen.cc:263 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "哇呀,您已經超過這個 APT 所能處理的說明數量了。" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/pkgcachegen.cc:266 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "哇呀,您已經超過這個 APT 所能處理的相依關係數量了。" -#: apt-private/private-list.cc:164 +#: apt-pkg/pkgcachegen.cc:576 #, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Package %s %s was not found while processing file dependencies" +msgstr "在計算檔案相依性時找不到套件 %s %s" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "正在修正相依關係..." +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "無法取得來源套件列表 %s 的狀態" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " 失敗。" +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "正在讀取套件清單" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "無法修正相依關係" +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "正在收集檔案提供者" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "無法將升級計劃最小化" +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "無法寫入 %s" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " 完成" +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "在儲存來源快取時 IO 錯誤" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "您也許得執行 'apt-get -f install' 以修正這些問題。" +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "提供者區塊 %s 沒有包含指紋碼" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "未能滿足相依關係。試試 -f 選項。" +#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "找不到清單目錄 %spartial。" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/acquire.cc:91 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "找不到套件檔目錄 %spartial。" -#: apt-private/private-output.cc:234 +#: apt-pkg/acquire.cc:99 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr "【已安裝】" +msgid "Unable to lock directory %s" +msgstr "無法鎖定列表目錄" -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr "【已安裝】" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:902 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "正在取得檔案 %li/%li(還有 %s)" -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/acquire.cc:904 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "正在取得檔案 %li/%li" -#: apt-private/private-output.cc:243 +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 #, fuzzy -msgid "[installed,automatic]" -msgstr "【已安裝】" +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "有一些索引檔不能下載,它們可能被略過了,或是替而使用原有的索引檔。" -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr "【已安裝】" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "在 sources.list 中必須包含一些 'source' URI" -#: apt-private/private-output.cc:249 +#: apt-pkg/policy.cc:83 #, c-format -msgid "[upgradable from: %s]" -msgstr "" - -#: apt-private/private-output.cc:253 -msgid "[residual-config]" +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -#: apt-private/private-output.cc:435 -#, c-format -msgid "but %s is installed" -msgstr "但 %s 卻已安裝" +#: apt-pkg/policy.cc:422 +#, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "個人設定檔中有些不正確資料,沒有以 Package 開頭" -#: apt-private/private-output.cc:437 +#: apt-pkg/policy.cc:444 #, c-format -msgid "but %s is to be installed" -msgstr "但 %s 卻將被安裝" +msgid "Did not understand pin type %s" +msgstr "無法分析鎖定類型 %s" -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "但它卻無法安裝" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "銷定並沒有優先順序之分(或零)" -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "但它是虛擬套件" +#: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "但它卻尚未安裝" +#: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "無法開啟檔案 %s" -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "但它卻將不會被安裝" +#: apt-pkg/packagemanager.cc:630 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"此安裝因衝突或預先相依關係,需暫時刪除 %s 這個基本套件。這通常不是好主意,但" +"若您執意進行,請設定 APT::Force-LoopBreak 選項。" -#: apt-private/private-output.cc:454 -msgid " or" -msgstr "或" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "來源列表 %2$s 中的第 %1$u 行太長。" -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "下列的套件有未滿足的相依關係:" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "正在卸載光碟機...\n" -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "下列【新】套件將會被安裝:" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "使用光碟機掛載點 %s\n" -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "下列套件將會被【移除】:" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "正在等待碟片...\n" -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "下列套件將會維持其原有版本:" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "正在掛載光碟機... \n" -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "下列套件將會被升級:" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "正在識別..." -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "下列套件將會被【降級】:" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "保存標籤:%s\n" -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "下列被保留 (hold) 的套件將會被更改:" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "正在掃描碟片中的索引檔...\n" -#: apt-private/private-output.cc:668 +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "%s (due to %s) " -msgstr "%s(因為 %s)" +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "找到了 %zu 個套件索引,%zu 個原始碼索引,%zu 個翻譯索引及 %zu 個簽章\n" -#: apt-private/private-output.cc:676 +#: apt-pkg/cdrom.cc:744 msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"【警告】:下列的基本套件都將被移除。\n" -"除非您很清楚您在做什麼,否則請勿輕易嘗試!" -#: apt-private/private-output.cc:707 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "升級 %lu 個,新安裝 %lu 個," +msgid "Found label '%s'\n" +msgstr "找到標籤 '%s'\n" -#: apt-private/private-output.cc:711 -#, c-format -msgid "%lu reinstalled, " -msgstr "重新安裝 %lu 個," +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "這並不是正確的名稱,請重試。\n" -#: apt-private/private-output.cc:713 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "%lu downgraded, " -msgstr "降級 %lu 個," +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"這個碟片名為:\n" +"'%s'\n" -#: apt-private/private-output.cc:715 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "移除 %lu 個,有 %lu 個未被升級。\n" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "正在複製套件清單..." -#: apt-private/private-output.cc:719 +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "正在寫入新的來源列表\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "該碟片的來源列表項目為:\n" + +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu 個沒有完整得安裝或移除。\n" +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "套件 %s 需要重新安裝,但找不到它的套件檔。" -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" +"錯誤,pkgProblemResolver::Resolve 的建立中斷了,這可能肇因於保留 (hold) 套" +"件。" -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "無法修正問題,您保留 (hold) 了損毀的套件。" + +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" msgstr "" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" msgstr "" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" msgstr "" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "update 指令不需任何參數" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: apt-private/private-update.cc:90 +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" + +#: apt-pkg/tagfile.cc:140 #, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" +msgid "Unable to parse package file %s (1)" +msgstr "無法辨識套件檔 %s (1)" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: apt-pkg/tagfile.cc:237 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "無法辨識套件檔 %s (2)" -#: apt-private/private-show.cc:156 +#: apt-pkg/indexrecords.cc:78 #, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" +msgid "Unable to parse Release file %s" +msgstr "無法辨別 Release 檔 %s" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "在 Release 檔 %s 裡沒有區段" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "內部錯誤,在損毀的套件上執行 InstallPackages!" +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "在 Release 檔 %s 裡沒有 Hash 項目" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "有套件需要被移除,但卻被禁止移除。" +#: apt-pkg/indexrecords.cc:130 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "在 Release 檔 %s 裡沒有 Hash 項目" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "內部錯誤,排序未能完成" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "在 Release 檔 %s 裡沒有 Hash 項目" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "怪哉... 檔案大小不符,請發信給 apt@packages.debian.org" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(URI 分析)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/sourcelist.cc:170 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版分析)" + +#: apt-pkg/sourcelist.cc:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版)" + +#: apt-pkg/sourcelist.cc:184 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版分析)" + +#: apt-pkg/sourcelist.cc:190 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版分析)" + +#: apt-pkg/sourcelist.cc:193 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版分析)" + +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "需要下載 %sB/%sB 的套件檔。\n" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤 (URI)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "需要下載 %sB 的套件檔。\n" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "此操作完成之後,會多佔用 %sB 的磁碟空間。\n" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(URI 分析)" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "此操作完成之後,會空出 %sB 的磁碟空間。\n" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(絕對發行版)" -#: apt-private/private-install.cc:200 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "You don't have enough free space in %s." -msgstr "在 %s 裡沒有足夠的的未使用空間。" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版分析)" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "發生了問題,且 -y 並沒有和 --force-yes 搭配使用" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "正在開啟 %s" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "雖然指定了 Trivial Only(自動答 NO)選項,但這並不是 trivial 操作。" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "來源列表 %2$s 中的第 %1$u 行的格式錯誤(類型)" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Yes, do as I say!" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "未知的類型 '%1$s',位於在來源列表 %3$s 中的第 %2$u 行" -#: apt-private/private-install.cc:222 +#: apt-pkg/sourcelist.cc:416 +#, fuzzy, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "未知的類型 '%1$s',位於在來源列表 %3$s 中的第 %2$u 行" + +#: apt-pkg/cacheset.cc:489 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "找不到 '%2$s' 的 '%1$s' 發行版" + +#: apt-pkg/cacheset.cc:492 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"您所進行的操作可能會帶來危險。\n" -"請輸入 '%s' 這個句子以繼續進行\n" -" ?] " +msgid "Version '%s' for '%s' was not found" +msgstr "找不到 '%s' 版的 '%s'" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "放棄執行。" +#: apt-pkg/cacheset.cc:603 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "無法找到主題 %s" -#: apt-private/private-install.cc:243 -#, fuzzy -msgid "Do you want to continue?" -msgstr "是否繼續進行 [Y/n]?" +#: apt-pkg/cacheset.cc:609 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "無法找到套件 %s" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "有部份檔案無法下載" +#: apt-pkg/cacheset.cc:615 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "無法找到套件 %s" -#: apt-private/private-install.cc:320 +#: apt-pkg/cacheset.cc:626 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" + +#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#, c-format msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"有部份套件檔無法取得,試著執行 apt-get update 或者試著加上 --fix-missing 選" -"項?" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "目前尚未支援 --fix-missing 和媒體抽換" +#: apt-pkg/cacheset.cc:647 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "無法修正欠缺的套件。" +#: apt-pkg/cacheset.cc:655 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "放棄安裝。" +#: apt-pkg/cacheset.cc:663 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -msgstr[1] "" +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" msgstr "" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "我們沒有計劃要刪除任何東西,無法啟動 AutoRemover" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "" -#: apt-private/private-install.cc:499 -msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" msgstr "" -"嗯,看起來 AutoRemover 弄壞了什麼東西,而這是不該發生的。\n" -"請針對 apt 發佈錯誤回報。" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << -#. _("Since you only requested a single operation it is extremely likely that\n" -#. "the package is simply not installable and a bug report against\n" -#. "that package should be filed.") << std::endl; -#. } -#. -#: apt-private/private-install.cc:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "以下的資訊或許有助於解決當前的情況:" +#: apt-pkg/contrib/strutl.cc:1246 +#, c-format +msgid "Selection %s not found" +msgstr "選項 %s 找不到" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "內部錯誤,AutoRemover 處理失敗" +#: apt-pkg/contrib/fileutl.cc:190 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "不在唯讀檔案 %s 上使用檔案鎖定" -#: apt-private/private-install.cc:513 -#, fuzzy -msgid "" -"The following package was automatically installed and is no longer required:" -msgid_plural "" -"The following packages were automatically installed and are no longer " -"required:" -msgstr[0] "以下套件是被自動安裝進來的,且已不再會被用到了:" -msgstr[1] "以下套件是被自動安裝進來的,且已不再會被用到了:" +#: apt-pkg/contrib/fileutl.cc:195 +#, c-format +msgid "Could not open lock file %s" +msgstr "無法開啟鎖定檔 %s" -#: apt-private/private-install.cc:517 -#, fuzzy, c-format -msgid "%lu package was automatically installed and is no longer required.\n" -msgid_plural "" -"%lu packages were automatically installed and are no longer required.\n" -msgstr[0] "以下套件是被自動安裝進來的,且已不再會被用到了:" -msgstr[1] "以下套件是被自動安裝進來的,且已不再會被用到了:" +#: apt-pkg/contrib/fileutl.cc:218 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "不在以 nfs 掛載的檔案 %s 上使用檔案鎖定" -#: apt-private/private-install.cc:519 -#, fuzzy -msgid "Use 'apt-get autoremove' to remove it." -msgid_plural "Use 'apt-get autoremove' to remove them." -msgstr[0] "使用 'apt-get autoremove' 來將其移除。" -msgstr[1] "使用 'apt-get autoremove' 來將其移除。" +#: apt-pkg/contrib/fileutl.cc:223 +#, c-format +msgid "Could not get lock %s" +msgstr "無法將 %s 鎖定" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "您也許得執行 'apt-get -f install' 以修正這些問題:" +#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/fileutl.cc:394 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -"未能滿足相依關係。請試著不指定套件來執行 'apt-get -f install'(或採取其它的解" -"決方案)。" -#: apt-private/private-install.cc:638 -msgid "" -"Some packages could not be installed. This may mean that you have\n" -"requested an impossible situation or if you are using the unstable\n" -"distribution that some required packages have not yet been created\n" -"or been moved out of Incoming." +#: apt-pkg/contrib/fileutl.cc:412 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -"有些套件無法安裝。這可能意謂著您的要求難以解決,或是若您使用的是\n" -"unstable 發行版,可能有些必要的套件尚未建立,或是被移出 Incoming 了。" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "損毀的套件" +#: apt-pkg/contrib/fileutl.cc:421 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "下列的額外套件將被安裝:" +#: apt-pkg/contrib/fileutl.cc:824 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "子程序 %s 收到一個記憶體錯誤。" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "建議套件:" +#: apt-pkg/contrib/fileutl.cc:826 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "子程序 %s 收到一個記憶體錯誤。" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "推薦套件:" +#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "子程序 %s 傳回錯誤碼 (%u)" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "忽略 %s,它已被安裝且沒有計劃要進行升級。\n" +msgid "Sub-process %s exited unexpectedly" +msgstr "子程序 %s 不預期得結束" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/fileutl.cc:913 #, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "忽略 %s,它已被安裝且沒有計劃要進行升級。\n" +msgid "Problem closing the gzip file %s" +msgstr "在關閉檔案時發生問題" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/fileutl.cc:1101 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "無法重新安裝 %s,因為它無法下載。\n" +msgid "Could not open file %s" +msgstr "無法開啟檔案 %s" -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s 已經是最新版本了。\n" +#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "無法開啟管線給 %s 使用" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/fileutl.cc:1315 +msgid "Failed to create subprocess IPC" +msgstr "無法建立子程序 IPC" + +#: apt-pkg/contrib/fileutl.cc:1373 +msgid "Failed to exec compressor " +msgstr "無法執行壓縮程式" + +#: apt-pkg/contrib/fileutl.cc:1514 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "選定的版本為 %3$s 的 %1$s (%2$s)\n" +msgid "read, still have %llu to read but none left" +msgstr "讀取,仍有 %lu 未讀但已無空間" -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "選定的版本為 %3$s 的 %1$s (%2$s)\n" +msgid "write, still have %llu to write but couldn't" +msgstr "寫入,仍有 %lu 待寫入但已沒辨法" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/fileutl.cc:1915 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "套件 %s 並沒有被安裝,所以也不會被移除\n" +msgid "Problem closing the file %s" +msgstr "在關閉檔案時發生問題" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/fileutl.cc:1927 #, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "套件 %s 並沒有被安裝,所以也不會被移除\n" +msgid "Problem renaming the file %s to %s" +msgstr "在同步檔案時發生問題" -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1938 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "在刪除檔案時發生問題" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "【警告】:無法驗證下列套件!" +#: apt-pkg/contrib/fileutl.cc:1951 +msgid "Problem syncing the file" +msgstr "在同步檔案時發生問題" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "忽略了驗證警告。\n" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... 錯誤!" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "有部份套件無法驗證" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... 完成" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "是否不經驗證就安裝這些套件?" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-sources.cc:58 +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "無法將 %s 更名為 %s" - -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%c%s... %u%%" +msgstr "%c%s... 完成" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "不能 mmap 空白檔案" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "已有 " +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "無法開啟管線給 %s 使用" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "下載:" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "無法 mmap 到 %lu 位元組" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "略過 " +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "無法開啟 %s" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "錯誤 " +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "無法 invoke " -#: apt-private/acqprogress.cc:146 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "取得 %sB 用了 %s (%sB/s)\n" +msgid "Couldn't make mmap of %lu bytes" +msgstr "無法 mmap 到 %lu 位元組" -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [工作中]" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "無法截短檔案" -#: apt-private/acqprogress.cc:297 +#: apt-pkg/contrib/mmap.cc:341 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" msgstr "" -"更換媒體:請把以下名稱的光碟\n" -" '%s'\n" -"放入 '%s' 裝置,然後按 [Enter] 鍵\n" +"動態 MMap 已用完所有空間。請增加 APT::Cache-Start 的大小。目前大小為:%lu。" +"(man 5 apt.conf)" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "No mirror file '%s' found " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." msgstr "" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 -#, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "無法開啟檔案 %s" +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "無法開啟檔案 %s" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "無法取得掛載點 %s 的狀態" -#: methods/mirror.cc:445 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "無法取得 CD-ROM 的狀態" + +#: apt-pkg/contrib/configuration.cc:519 #, c-format -msgid "[Mirror: %s]" -msgstr "" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "無法辨識的縮寫類型:'%c'" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "無法和子程序建立 IPC 管線" +#: apt-pkg/contrib/configuration.cc:633 +#, c-format +msgid "Opening configuration file %s" +msgstr "開啟設定檔 %s" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "連線突然終止" +#: apt-pkg/contrib/configuration.cc:801 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "語法錯誤 %s:%u:區塊開頭沒有名稱。" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "錯誤的預設設定!" +#: apt-pkg/contrib/configuration.cc:820 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "語法錯誤 %s:%u:標籤格式錯誤" -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." -msgstr "請按 [Enter] 鍵以繼續進行。" +#: apt-pkg/contrib/configuration.cc:837 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "語法錯誤 %s:%u:數值後有多餘的垃圾" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "您想移除所有先前下載的 .deb 檔嗎?" +#: apt-pkg/contrib/configuration.cc:877 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "語法錯誤 %s:%u:指令只能於最高層級執行" -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "在解開套件時發生錯誤。我要準備設定" +#: apt-pkg/contrib/configuration.cc:884 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "語法錯誤 %s:%u: 太多巢狀引入檔" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "套件已安裝過。這會造成重複錯誤" +#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "語法錯誤 %s:%u:從此引入" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "或是因為沒有相依關係而造成錯誤。那麼這個錯誤是無關緊要的" +#: apt-pkg/contrib/configuration.cc:897 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "語法錯誤 %s:%u:不支援的指令 '%s'" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "以上的訊息相當重要。請修正它們並重新執行安裝[I]" +#: apt-pkg/contrib/configuration.cc:900 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "語法錯誤 %s:%u:指令只能於最高層級執行" -#: dselect/update:30 -msgid "Merging available information" -msgstr "整合現有的資料" +#: apt-pkg/contrib/configuration.cc:950 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "語法錯誤 %s:%u:在檔案結尾有多餘的垃圾" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode 在還有連結結點時被呼叫" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "放棄安裝。" + +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "未知的命令列選項 '%c' [來自 %s]。" + +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 +#, c-format +msgid "Command line option %s is not understood" +msgstr "無法理解的命令列選項 %s" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "找不到雜湊元件!" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "命令列選項 %s 不是 boolean 值" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "在配置抽換資訊時失敗" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "需替選項 %s 指定參數。" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "在 AddDiversion 發生了內部錯誤" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =<val>." +msgstr "選項 %s:在指定設定項目時應該有 =<val>。" -#: apt-inst/filelist.cc:477 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "試圖改寫抽換資訊,%s -> %s 和 %s/%s" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "選項 %s 的參數應該是數字,而不是 '%s'" -#: apt-inst/filelist.cc:506 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "重複加入抽換資訊 %s -> %s" +msgid "Option '%s' is too long" +msgstr "選項 %s 太長" -#: apt-inst/filelist.cc:549 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "重複的設定檔 %s/%s" +msgid "Sense %s is not understood, try true or false." +msgstr "偵測器 %s 無法理解,試試 true 或 false。" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "The path %s is too long" -msgstr "路徑 %s 過長" +msgid "Invalid operation %s" +msgstr "無效的操作 %s" -#: apt-inst/extract.cc:132 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unpacking %s more than once" -msgstr "解開 %s 超過一次" +msgid "Installing %s" +msgstr "正在安裝 %s" -#: apt-inst/extract.cc:142 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The directory %s is diverted" -msgstr "路徑 %s 已被抽換" +msgid "Configuring %s" +msgstr "正在設定 %s" -#: apt-inst/extract.cc:152 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "此套件試圖寫至抽換後的目標 %s/%s" +msgid "Removing %s" +msgstr "正在移除 %s" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "要進行抽換的路徑過長" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "已完整移除 %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Failed to stat %s" -msgstr "無法取得 %s 的狀態" +msgid "Noting disappearance of %s" +msgstr "" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Failed to rename %s to %s" -msgstr "無法將 %s 更名為 %s" +msgid "Running post-installation trigger %s" +msgstr "正在執行安裝後套件後續處理程式 %s" -#: apt-inst/extract.cc:249 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "目錄 %s 已經被非目錄的檔案所取代" +msgid "Directory '%s' missing" +msgstr "找不到 '%s' 目錄" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "在雜湊表中找不到節點" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "無法開啟檔案 %s" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "路徑過長" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "正在準備 %s" -#: apt-inst/extract.cc:421 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "以無版本的 %s 覆寫原始套件" +msgid "Unpacking %s" +msgstr "正在解開 %s" -#: apt-inst/extract.cc:438 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "檔案 %s/%s 覆寫了套件 %s 中的相同檔案" +msgid "Preparing to configure %s" +msgstr "正在準備設定 %s" -#: apt-inst/extract.cc:498 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Unable to stat %s" -msgstr "無法取得 %s 的狀態" +msgid "Installed %s" +msgstr "已安裝 %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Failed to write file %s" -msgstr "寫入檔案 %s 失敗" +msgid "Preparing for removal of %s" +msgstr "正在準備移除 %s" -#: apt-inst/dirstream.cc:105 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Failed to close file %s" -msgstr "關閉檔案 %s 失敗" +msgid "Removed %s" +msgstr "已移除 %s" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "這是個不正確的 DEB 套件檔,沒有 '%s' 成員" +msgid "Preparing to completely remove %s" +msgstr "正在準備完整移除 %s" -#: apt-inst/deb/debfile.cc:132 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "內部錯誤,找不找到成員 %s" +msgid "Completely removed %s" +msgstr "已完整移除 %s" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "無法分析的 control 檔" +#: apt-pkg/deb/dpkgpm.cc:1066 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "無效的套件庫簽章" +#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "無法寫入 %s" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "讀取套件檔的成員標頭訊息時發生錯誤" +#: apt-pkg/deb/dpkgpm.cc:1069 +msgid "Is /dev/pts mounted?" +msgstr "" -#: apt-inst/contrib/arfile.cc:96 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "無效的套件檔成員標頭" +#: apt-pkg/deb/dpkgpm.cc:1090 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "無效的套件檔成員標頭" +#: apt-pkg/deb/dpkgpm.cc:1569 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "套件檔過短" +#: apt-pkg/deb/dpkgpm.cc:1631 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "讀取套件檔標頭失敗" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1636 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "無法建立管線" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "無法執行 gzip" +#: apt-pkg/deb/dpkgpm.cc:1644 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "損毀的套件檔" +#: apt-pkg/deb/dpkgpm.cc:1651 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar checksum 失敗,套件檔已損毀" +#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" -#: apt-inst/contrib/extracttar.cc:308 +#: apt-pkg/deb/dpkgpm.cc:1685 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "未知的 TAR 標頭類型 %u,成員 %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" + +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "無法鎖定列表目錄" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" + +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" #: cmdline/apt-extracttemplates.cc:224 msgid "" -- cgit v1.2.3 From 2b24f36b8513c722c9c196f5dcea23051aed8e3a Mon Sep 17 00:00:00 2001 From: Holger Wansing <hwansing@mailbox.org> Date: Thu, 28 Aug 2014 18:16:02 +0200 Subject: German program translation update Closes: 758837 --- po/de.po | 1412 ++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 727 insertions(+), 685 deletions(-) diff --git a/po/de.po b/po/de.po index c1b849637..0e9445965 100644 --- a/po/de.po +++ b/po/de.po @@ -1,6 +1,6 @@ # German messages for the apt suite. # Copyright (C) 1997, 1998, 1999 Jason Gunthorpe and others. -# Holger Wansing <linux@wansing-online.de>, 2008, 2009, 2010, 2012. +# Holger Wansing <linux@wansing-online.de>, 2008, 2009, 2010, 2012, 2014. # Jens Seidel <jensseidel@users.sf.net>, 2008. # Michael Piefel <piefel@informatik.hu-berlin.de>, 2001, 2002, 2003, 2004, 2006. # Rüdiger Kuhlmann <Uebersetzung@ruediger-kuhlmann.de>, 2002. @@ -8,17 +8,17 @@ # msgid "" msgstr "" -"Project-Id-Version: apt 0.9.2\n" +"Project-Id-Version: apt 1.0.3\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-08-28 00:44+0000\n" -"PO-Revision-Date: 2012-06-27 10:55+0200\n" +"POT-Creation-Date: 2014-08-28 18:14+0200\n" +"PO-Revision-Date: 2014-06-09 22:42+0100\n" "Last-Translator: Holger Wansing <linux@wansing-online.de>\n" "Language-Team: Debian German <debian-l10n-german@lists.debian.org>\n" -"Language: de\n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" +"Plural-Forms: nplurals=2; plural=n != 1;>\n" #: cmdline/apt-cache.cc:149 #, c-format @@ -265,6 +265,13 @@ msgid "" "See 'man apt-cdrom' for more information about the CD-ROM auto-detection and " "mount point." msgstr "" +"Über den Standard-Einbindungspunkt konnte automatisch keine CD-ROM erkannt " +"werden.\n" +"Sie könnten die Option --cdrom ausprobieren, um den Einbindungspunkt der CD-" +"ROM festzulegen.\n" +"Weitere Informationen über automatische Erkennung von CD-ROMs und " +"Einbindungspunkte\n" +"bekommen Sie mit »man apt-cdrom«." #: cmdline/apt-cdrom.cc:182 msgid "Repeat this process for the rest of the CDs in your set." @@ -305,19 +312,19 @@ msgstr "" " -o=? Eine beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" #: cmdline/apt-get.cc:245 -#, fuzzy, c-format +#, c-format msgid "Can not find a package for architecture '%s'" -msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." +msgstr "Es kann kein Paket für Architektur »%s« gefunden werden" #: cmdline/apt-get.cc:327 -#, fuzzy, c-format +#, c-format msgid "Can not find a package '%s' with version '%s'" -msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." +msgstr "Es kann kein Paket »%s« mit Version »%s« gefunden werden" #: cmdline/apt-get.cc:330 -#, fuzzy, c-format +#, c-format msgid "Can not find a package '%s' with release '%s'" -msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." +msgstr "Es kann kein Paket »%s« in der Veröffentlichung »%s« gefunden werden" #: cmdline/apt-get.cc:367 #, c-format @@ -325,9 +332,9 @@ msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Als Quellpaket wird »%s« statt »%s« gewählt.\n" #: cmdline/apt-get.cc:423 -#, fuzzy, c-format +#, c-format msgid "Can not find version '%s' of package '%s'" -msgstr "Nicht verfügbare Version »%s« von Paket »%s« wird ignoriert." +msgstr "Es kann keine Version »%s« des Pakets »%s« gefunden werden" #: cmdline/apt-get.cc:454 #, c-format @@ -650,15 +657,12 @@ msgstr "" " Dieses APT hat Super-Kuh-Kräfte.\n" #: cmdline/apt-helper.cc:35 -#, fuzzy msgid "Must specify at least one pair url/filename" -msgstr "" -"Es muss mindestens ein Paket angegeben werden, dessen Quellen geholt werden " -"sollen." +msgstr "Es muss mindestens ein URL/Dateinamen-Paar angegeben werden" #: cmdline/apt-helper.cc:53 msgid "Download Failed" -msgstr "" +msgstr "Herunterladen fehlgeschlagen" #: cmdline/apt-helper.cc:66 msgid "" @@ -672,6 +676,15 @@ msgid "" "\n" " This APT helper has Super Meep Powers.\n" msgstr "" +"Aufruf: apt-helper [Optionen] Befehl\n" +" apt-helper [Optionen] download-file uri zielpfad\n" +"\n" +"apt-helper ist ein internes Hilfsprogramm für apt.\n" +"\n" +"Befehle:\n" +" download-file - den angegebenen URI in den Zielpfad herunterladen\n" +"\n" +" Dieses APT-Hilfsprogramm hat Super-Road-Runner-Kräfte.\n" #: cmdline/apt-mark.cc:68 #, c-format @@ -721,7 +734,6 @@ msgid "Executing dpkg failed. Are you root?" msgstr "Ausführen von dpkg fehlgeschlagen. Sind Sie root?" #: cmdline/apt-mark.cc:392 -#, fuzzy msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -756,6 +768,11 @@ msgstr "" "Befehle:\n" " auto – das angegebene Paket als »Automatisch installiert« markieren\n" " manual – das angegebene Paket als »Manuell installiert« markieren\n" +" hold - ein Paket als zurückgehalten markieren\n" +" unhold - ein Paket als nicht mehr zurückgehalten markieren\n" +" showauto - eine Liste aller automatisch installierten Pakete anzeigen\n" +" showmanual - eine Liste aller manuell installierten Pakete anzeigen\n" +" showhold - eine Liste aller zurückgehaltenen Pakete anzeigen\n" "\n" "Optionen:\n" " -h dieser Hilfetext\n" @@ -766,7 +783,7 @@ msgstr "" " -c=? Diese Konfigurationsdatei benutzen\n" " -o=? Beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" "Siehe auch die Handbuchseiten apt-mark(8) und apt.conf(5) bezüglich\n" -"weitergehender Informationen und Optionen." +"weitergehender Informationen." #: cmdline/apt.cc:47 msgid "" @@ -789,6 +806,26 @@ msgid "" "\n" " edit-sources - edit the source information file\n" msgstr "" +"Aufruf: apt [Optionen] Befehl\n" +"\n" +"Befehlszeilen-Schnittstelle (CLI) für apt.\n" +"Basis-Befehle: \n" +" list - Pakete basierend auf dem Paketnamen auflisten\n" +" search - Paketbeschreibungen durchsuchen\n" +" show - Paketdetails anzeigen\n" +"\n" +" update - Liste verfügbarer Pakete aktualisieren\n" +"\n" +" install - Pakete installieren\n" +" remove - Pakete entfernen\n" +"\n" +" upgrade - das System durch Installation/Aktualisierung der Pakete " +"hochrüsten\n" +" full-upgrade - das System durch Entfernung/Installation/Aktualisierung der " +"Pakete\n" +" vollständig hochrüsten\n" +"\n" +" edit-sources - die Datei für die Paketquellen bearbeiten\n" #: methods/cdrom.cc:203 #, c-format @@ -1044,9 +1081,9 @@ msgid "Temporary failure resolving '%s'" msgstr "Temporärer Fehlschlag beim Auflösen von »%s«" #: methods/connect.cc:209 -#, fuzzy, c-format +#, c-format msgid "System error resolving '%s:%s'" -msgstr "Beim Auflösen von »%s:%s« ist etwas Schlimmes passiert (%i - %s)." +msgstr "Systemfehler bei der Auflösung von »%s:%s«" #: methods/connect.cc:211 #, c-format @@ -1082,6 +1119,8 @@ msgid "" "Clearsigned file isn't valid, got '%s' (does the network require " "authentication?)" msgstr "" +"Durch Clearsign signierte Datei ist nicht gültig, »%s« erhalten (erfordert " +"das Netzwerk eine Authentifizierung?)" #: methods/gpgv.cc:184 msgid "Unknown error executing gpgv" @@ -1177,155 +1216,407 @@ msgstr "Verbindung fehlgeschlagen" msgid "Internal error" msgstr "Interner Fehler" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-private/private-list.cc:131 +msgid "Listing" +msgstr "Auflistung" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Interner Fehler, InstallPackages mit defekten Paketen aufgerufen!" +#: apt-private/private-list.cc:164 +#, c-format +msgid "There is %i additional version. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional versions. Please use the '-a' switch to see them." +msgstr[0] "" +"Es gibt %i zusätzliche Version. Bitte verwenden Sie die Option »-a«, um sie " +"anzuzeigen." +msgstr[1] "" +"Es gibt %i zusätzliche Versionen. Bitte verwenden Sie die Option »-a«, um " +"sie anzuzeigen." -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Pakete müssen entfernt werden, aber Entfernen ist abgeschaltet." +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Abhängigkeiten werden korrigiert ..." -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Interner Fehler, Anordnung beendete nicht" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " fehlgeschlagen." -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Wie merkwürdig ... die Größen haben nicht übereingestimmt; schreiben Sie " -"eine E-Mail an apt@packages.debian.org (auf Englisch bitte)." +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Abhängigkeiten konnten nicht korrigiert werden." -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 -#, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Es müssen noch %sB von %sB an Archiven heruntergeladen werden.\n" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Menge der zu aktualisierenden Pakete konnte nicht minimiert werden." -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:160 -#, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Es müssen %sB an Archiven heruntergeladen werden.\n" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Fertig" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:167 -#, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "Nach dieser Operation werden %sB Plattenplatz zusätzlich benutzt.\n" +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "Probieren Sie »apt-get -f install«, um dies zu korrigieren." -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:172 -#, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Nach dieser Operation werden %sB Plattenplatz freigegeben.\n" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Unerfüllte Abhängigkeiten. Versuchen Sie, -f zu benutzen." -#: apt-private/private-install.cc:200 +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "unbekannt" + +#: apt-private/private-output.cc:234 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Sie haben nicht genug Platz in %s." +msgid "[installed,upgradable to: %s]" +msgstr " [Installiert,aktualisierbar auf: %s]" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "Es gab Probleme und -y wurde ohne --force-yes verwendet." +#: apt-private/private-output.cc:238 +msgid "[installed,local]" +msgstr " [Installiert,lokal]" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "»Nur triviale« angegeben, aber dies ist keine triviale Operation." +#: apt-private/private-output.cc:241 +msgid "[installed,auto-removable]" +msgstr "[installiert,automatisch-entfernbar]" -#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be -#. careful with hard to type or special characters (like non-breaking spaces) -#: apt-private/private-install.cc:220 -msgid "Yes, do as I say!" -msgstr "Ja, tue was ich sage!" +#: apt-private/private-output.cc:243 +msgid "[installed,automatic]" +msgstr " [Installiert,automatisch]" -#: apt-private/private-install.cc:222 +#: apt-private/private-output.cc:245 +msgid "[installed]" +msgstr " [installiert]" + +#: apt-private/private-output.cc:249 #, c-format -msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\n" -" ?] " -msgstr "" -"Sie sind im Begriff, etwas potentiell Schädliches zu tun.\n" -"Zum Fortfahren geben Sie bitte »%s« ein.\n" -" ?] " +msgid "[upgradable from: %s]" +msgstr "[aktualisierbar von: %s]" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Abbruch." +#: apt-private/private-output.cc:253 +msgid "[residual-config]" +msgstr "[Konfiguration-verbleibend]" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Möchten Sie fortfahren?" +#: apt-private/private-output.cc:435 +#, c-format +msgid "but %s is installed" +msgstr "aber %s ist installiert" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Einige Dateien konnten nicht heruntergeladen werden." +#: apt-private/private-output.cc:437 +#, c-format +msgid "but %s is to be installed" +msgstr "aber %s soll installiert werden" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Einige Archive konnten nicht heruntergeladen werden; vielleicht »apt-get " -"update« ausführen oder mit »--fix-missing« probieren?" +#: apt-private/private-output.cc:444 +msgid "but it is not installable" +msgstr "ist aber nicht installierbar" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing und Wechselmedien werden derzeit nicht unterstützt." +#: apt-private/private-output.cc:446 +msgid "but it is a virtual package" +msgstr "ist aber ein virtuelles Paket" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Fehlende Pakete konnten nicht korrigiert werden." +#: apt-private/private-output.cc:449 +msgid "but it is not installed" +msgstr "ist aber nicht installiert" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Installation abgebrochen." +#: apt-private/private-output.cc:449 +msgid "but it is not going to be installed" +msgstr "soll aber nicht installiert werden" -#: apt-private/private-install.cc:366 -msgid "" -"The following package disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgid_plural "" -"The following packages disappeared from your system as\n" -"all files have been overwritten by other packages:" -msgstr[0] "" -"Das folgende Paket verschwand von Ihrem System, da alle\n" -"Dateien von anderen Paketen überschrieben wurden:" -msgstr[1] "" -"Die folgenden Pakete verschwanden von Ihrem System, da alle\n" -"Dateien von anderen Paketen überschrieben wurden:" +#: apt-private/private-output.cc:454 +msgid " or" +msgstr " oder" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Hinweis: Dies wird automatisch und absichtlich von dpkg durchgeführt." +#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 +msgid "The following packages have unmet dependencies:" +msgstr "Die folgenden Pakete haben unerfüllte Abhängigkeiten:" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#: apt-private/private-output.cc:503 +msgid "The following NEW packages will be installed:" +msgstr "Die folgenden NEUEN Pakete werden installiert:" + +#: apt-private/private-output.cc:529 +msgid "The following packages will be REMOVED:" +msgstr "Die folgenden Pakete werden ENTFERNT:" + +#: apt-private/private-output.cc:551 +msgid "The following packages have been kept back:" +msgstr "Die folgenden Pakete sind zurückgehalten worden:" + +#: apt-private/private-output.cc:572 +msgid "The following packages will be upgraded:" +msgstr "Die folgenden Pakete werden aktualisiert (Upgrade):" + +#: apt-private/private-output.cc:593 +msgid "The following packages will be DOWNGRADED:" msgstr "" -"Es soll nichts gelöscht werden, AutoRemover kann nicht gestartet werden." +"Die folgenden Pakete werden durch eine ÄLTERE VERSION ERSETZT (Downgrade):" -#: apt-private/private-install.cc:499 +#: apt-private/private-output.cc:613 +msgid "The following held packages will be changed:" +msgstr "Die folgenden zurückgehaltenen Pakete werden verändert:" + +#: apt-private/private-output.cc:668 +#, c-format +msgid "%s (due to %s) " +msgstr "%s (wegen %s) " + +#: apt-private/private-output.cc:676 msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Hmm, es sieht so aus, als ob der AutoRemover etwas beschädigt hat, was\n" -"wirklich nicht geschehen sollte. Bitte erstellen Sie einen Fehlerbericht\n" -"über apt." +"WARNUNG: Die folgenden essentiellen Pakete werden entfernt.\n" +"Dies sollte NICHT geschehen, außer Sie wissen genau, was Sie tun!" -#. -#. if (Packages == 1) -#. { -#. c1out << std::endl; -#. c1out << +#: apt-private/private-output.cc:707 +#, c-format +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu aktualisiert, %lu neu installiert, " + +#: apt-private/private-output.cc:711 +#, c-format +msgid "%lu reinstalled, " +msgstr "%lu erneut installiert, " + +#: apt-private/private-output.cc:713 +#, c-format +msgid "%lu downgraded, " +msgstr "%lu durch eine ältere Version ersetzt, " + +#: apt-private/private-output.cc:715 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu zu entfernen und %lu nicht aktualisiert.\n" + +#: apt-private/private-output.cc:719 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "%lu nicht vollständig installiert oder entfernt.\n" + +#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] +#. e.g. "Do you want to continue? [Y/n] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:741 +msgid "[Y/n]" +msgstr "[J/n]" + +#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] +#. e.g. "Should this file be removed? [y/N] " +#. The user has to answer with an input matching the +#. YESEXPR/NOEXPR defined in your l10n. +#: apt-private/private-output.cc:747 +msgid "[y/N]" +msgstr "[j/N]" + +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:758 +msgid "Y" +msgstr "J" + +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:764 +msgid "N" +msgstr "N" + +#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Fehler beim Kompilieren eines regulären Ausdrucks - %s" + +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Der Befehl »update« akzeptiert keine Argumente." + +#: apt-private/private-update.cc:90 +#, c-format +msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" +msgid_plural "" +"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" +msgstr[0] "" +msgstr[1] "" + +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" + +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "Sortierung" + +#: apt-private/private-show.cc:156 +#, c-format +msgid "There is %i additional record. Please use the '-a' switch to see it" +msgid_plural "" +"There are %i additional records. Please use the '-a' switch to see them." +msgstr[0] "" +"Es gibt %i zusätzlichen Eintrag. Bitte verwenden Sie die Option »-a«, um ihn " +"anzuzeigen." +msgstr[1] "" +"Es gibt %i zusätzliche Einträge. Bitte verwenden Sie die Option »-a«, um sie " +"anzuzeigen." + +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "kein reales Paket (virtuell)" + +#: apt-private/private-main.cc:32 +msgid "" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" +msgstr "" +"HINWEIS: Dies ist nur eine Simulation!\n" +" apt-get benötigt root-Privilegien für die reale Ausführung.\n" +" Behalten Sie ebenfalls in Hinterkopf, dass die Sperren deaktiviert\n" +" sind, verlassen Sie sich also bezüglich des reellen aktuellen\n" +" Status der Sperre nicht darauf!" + +#: apt-private/private-install.cc:82 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Interner Fehler, InstallPackages mit defekten Paketen aufgerufen!" + +#: apt-private/private-install.cc:91 +msgid "Packages need to be removed but remove is disabled." +msgstr "Pakete müssen entfernt werden, aber Entfernen ist abgeschaltet." + +#: apt-private/private-install.cc:110 +msgid "Internal error, Ordering didn't finish" +msgstr "Interner Fehler, Anordnung beendete nicht" + +#: apt-private/private-install.cc:148 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Wie merkwürdig ... die Größen haben nicht übereingestimmt; schreiben Sie " +"eine E-Mail an apt@packages.debian.org (auf Englisch bitte)." + +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:155 +#, c-format +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Es müssen noch %sB von %sB an Archiven heruntergeladen werden.\n" + +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:160 +#, c-format +msgid "Need to get %sB of archives.\n" +msgstr "Es müssen %sB an Archiven heruntergeladen werden.\n" + +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:167 +#, c-format +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Nach dieser Operation werden %sB Plattenplatz zusätzlich benutzt.\n" + +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:172 +#, c-format +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Nach dieser Operation werden %sB Plattenplatz freigegeben.\n" + +#: apt-private/private-install.cc:200 +#, c-format +msgid "You don't have enough free space in %s." +msgstr "Sie haben nicht genug Platz in %s." + +#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "Es gab Probleme und -y wurde ohne --force-yes verwendet." + +#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "»Nur triviale« angegeben, aber dies ist keine triviale Operation." + +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: apt-private/private-install.cc:220 +msgid "Yes, do as I say!" +msgstr "Ja, tue was ich sage!" + +#: apt-private/private-install.cc:222 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Sie sind im Begriff, etwas potentiell Schädliches zu tun.\n" +"Zum Fortfahren geben Sie bitte »%s« ein.\n" +" ?] " + +#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 +msgid "Abort." +msgstr "Abbruch." + +#: apt-private/private-install.cc:243 +msgid "Do you want to continue?" +msgstr "Möchten Sie fortfahren?" + +#: apt-private/private-install.cc:313 +msgid "Some files failed to download" +msgstr "Einige Dateien konnten nicht heruntergeladen werden." + +#: apt-private/private-install.cc:320 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"Einige Archive konnten nicht heruntergeladen werden; vielleicht »apt-get " +"update« ausführen oder mit »--fix-missing« probieren?" + +#: apt-private/private-install.cc:324 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing und Wechselmedien werden derzeit nicht unterstützt." + +#: apt-private/private-install.cc:329 +msgid "Unable to correct missing packages." +msgstr "Fehlende Pakete konnten nicht korrigiert werden." + +#: apt-private/private-install.cc:330 +msgid "Aborting install." +msgstr "Installation abgebrochen." + +#: apt-private/private-install.cc:366 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"Das folgende Paket verschwand von Ihrem System, da alle\n" +"Dateien von anderen Paketen überschrieben wurden:" +msgstr[1] "" +"Die folgenden Pakete verschwanden von Ihrem System, da alle\n" +"Dateien von anderen Paketen überschrieben wurden:" + +#: apt-private/private-install.cc:370 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Hinweis: Dies wird automatisch und absichtlich von dpkg durchgeführt." + +#: apt-private/private-install.cc:391 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "" +"Es soll nichts gelöscht werden, AutoRemover kann nicht gestartet werden." + +#: apt-private/private-install.cc:499 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" +"Hmm, es sieht so aus, als ob der AutoRemover etwas beschädigt hat, was\n" +"wirklich nicht geschehen sollte. Bitte erstellen Sie einen Fehlerbericht\n" +"über apt." + +#. +#. if (Packages == 1) +#. { +#. c1out << std::endl; +#. c1out << #. _("Since you only requested a single operation it is extremely likely that\n" #. "the package is simply not installable and a bug report against\n" #. "that package should be filed.") << std::endl; @@ -1458,256 +1749,9 @@ msgstr "" msgid "Package '%s' is not installed, so not removed\n" msgstr "Paket »%s« ist nicht installiert, wird also auch nicht entfernt.\n" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" - -#: apt-private/private-list.cc:164 -#, c-format -msgid "There is %i additional version. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional versions. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Abhängigkeiten werden korrigiert ..." - -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " fehlgeschlagen." - -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Abhängigkeiten konnten nicht korrigiert werden." - -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Menge der zu aktualisierenden Pakete konnte nicht minimiert werden." - -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Fertig" - -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "Probieren Sie »apt-get -f install«, um dies zu korrigieren." - -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Unerfüllte Abhängigkeiten. Versuchen Sie, -f zu benutzen." - -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" - -#: apt-private/private-output.cc:234 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Installiert]" - -#: apt-private/private-output.cc:238 -#, fuzzy -msgid "[installed,local]" -msgstr " [Installiert]" - -#: apt-private/private-output.cc:241 -msgid "[installed,auto-removable]" -msgstr "" - -#: apt-private/private-output.cc:243 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Installiert]" - -#: apt-private/private-output.cc:245 -#, fuzzy -msgid "[installed]" -msgstr " [Installiert]" - -#: apt-private/private-output.cc:249 -#, c-format -msgid "[upgradable from: %s]" -msgstr "" - -#: apt-private/private-output.cc:253 -msgid "[residual-config]" -msgstr "" - -#: apt-private/private-output.cc:435 -#, c-format -msgid "but %s is installed" -msgstr "aber %s ist installiert" - -#: apt-private/private-output.cc:437 -#, c-format -msgid "but %s is to be installed" -msgstr "aber %s soll installiert werden" - -#: apt-private/private-output.cc:444 -msgid "but it is not installable" -msgstr "ist aber nicht installierbar" - -#: apt-private/private-output.cc:446 -msgid "but it is a virtual package" -msgstr "ist aber ein virtuelles Paket" - -#: apt-private/private-output.cc:449 -msgid "but it is not installed" -msgstr "ist aber nicht installiert" - -#: apt-private/private-output.cc:449 -msgid "but it is not going to be installed" -msgstr "soll aber nicht installiert werden" - -#: apt-private/private-output.cc:454 -msgid " or" -msgstr " oder" - -#: apt-private/private-output.cc:468 apt-private/private-output.cc:480 -msgid "The following packages have unmet dependencies:" -msgstr "Die folgenden Pakete haben unerfüllte Abhängigkeiten:" - -#: apt-private/private-output.cc:503 -msgid "The following NEW packages will be installed:" -msgstr "Die folgenden NEUEN Pakete werden installiert:" - -#: apt-private/private-output.cc:529 -msgid "The following packages will be REMOVED:" -msgstr "Die folgenden Pakete werden ENTFERNT:" - -#: apt-private/private-output.cc:551 -msgid "The following packages have been kept back:" -msgstr "Die folgenden Pakete sind zurückgehalten worden:" - -#: apt-private/private-output.cc:572 -msgid "The following packages will be upgraded:" -msgstr "Die folgenden Pakete werden aktualisiert (Upgrade):" - -#: apt-private/private-output.cc:593 -msgid "The following packages will be DOWNGRADED:" -msgstr "" -"Die folgenden Pakete werden durch eine ÄLTERE VERSION ERSETZT (Downgrade):" - -#: apt-private/private-output.cc:613 -msgid "The following held packages will be changed:" -msgstr "Die folgenden zurückgehaltenen Pakete werden verändert:" - -#: apt-private/private-output.cc:668 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (wegen %s) " - -#: apt-private/private-output.cc:676 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" -msgstr "" -"WARNUNG: Die folgenden essentiellen Pakete werden entfernt.\n" -"Dies sollte NICHT geschehen, außer Sie wissen genau, was Sie tun!" - -#: apt-private/private-output.cc:707 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu aktualisiert, %lu neu installiert, " - -#: apt-private/private-output.cc:711 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu erneut installiert, " - -#: apt-private/private-output.cc:713 -#, c-format -msgid "%lu downgraded, " -msgstr "%lu durch eine ältere Version ersetzt, " - -#: apt-private/private-output.cc:715 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu zu entfernen und %lu nicht aktualisiert.\n" - -#: apt-private/private-output.cc:719 -#, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu nicht vollständig installiert oder entfernt.\n" - -#. TRANSLATOR: Yes/No question help-text: defaulting to Y[es] -#. e.g. "Do you want to continue? [Y/n] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:741 -msgid "[Y/n]" -msgstr "[J/n]" - -#. TRANSLATOR: Yes/No question help-text: defaulting to N[o] -#. e.g. "Should this file be removed? [y/N] " -#. The user has to answer with an input matching the -#. YESEXPR/NOEXPR defined in your l10n. -#: apt-private/private-output.cc:747 -msgid "[y/N]" -msgstr "[j/N]" - -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:758 -msgid "Y" -msgstr "J" - -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:764 -msgid "N" -msgstr "N" - -#: apt-private/private-output.cc:786 apt-pkg/cachefilter.cc:35 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Fehler beim Kompilieren eines regulären Ausdrucks - %s" - -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Der Befehl »update« akzeptiert keine Argumente." - -#: apt-private/private-update.cc:90 -#, c-format -msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n" -msgid_plural "" -"%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n" -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" - -#: apt-private/private-show.cc:156 -#, c-format -msgid "There is %i additional record. Please use the '-a' switch to see it" -msgid_plural "" -"There are %i additional records. Please use the '-a' switch to see them." -msgstr[0] "" -msgstr[1] "" - -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" - -#: apt-private/private-main.cc:32 -msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" -"HINWEIS: Dies ist nur eine Simulation!\n" -" apt-get benötigt root-Privilegien für die reale Ausführung.\n" -" Behalten Sie ebenfalls in Hinterkopf, dass die Sperren deaktiviert\n" -" sind, verlassen Sie sich also bezüglich des reellen aktuellen\n" -" Status der Sperre nicht darauf!" - -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "WARNUNG: Die folgenden Pakete können nicht authentifiziert werden!" +#: apt-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "WARNUNG: Die folgenden Pakete können nicht authentifiziert werden!" #: apt-private/private-download.cc:40 msgid "Authentication warning overridden.\n" @@ -1727,18 +1771,19 @@ msgid "Failed to fetch %s %s\n" msgstr "Fehlschlag beim Holen von %s %s\n" #: apt-private/private-sources.cc:58 -#, fuzzy, c-format +#, c-format msgid "Failed to parse %s. Edit again? " -msgstr "%s konnte nicht in %s umbenannt werden." +msgstr "Verarbeitung von %s fehlgeschlagen. Erneut bearbeiten?" #: apt-private/private-sources.cc:70 #, c-format msgid "Your '%s' file changed, please run 'apt-get update'." msgstr "" +"Ihre »%s«-Datei wurde verändert, bitte führen Sie »apt-get update« aus." #: apt-private/private-search.cc:51 msgid "Full Text Search" -msgstr "" +msgstr "Volltextsuche" #: apt-private/private-upgrade.cc:25 msgid "Calculating upgrade... " @@ -1788,8 +1833,8 @@ msgstr "" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. #: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103 -#: apt-pkg/init.cc:111 apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 -#: apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/init.cc:111 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286 +#: apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381 #: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481 #: apt-pkg/contrib/cdromutl.cc:205 #, c-format @@ -1819,9 +1864,9 @@ msgid "Can not read mirror file '%s'" msgstr "Datei »%s« von Spiegelserver kann nicht gelesen werden." #: methods/mirror.cc:315 -#, fuzzy, c-format +#, c-format msgid "No entry found in mirror file '%s'" -msgstr "Datei »%s« von Spiegelserver kann nicht gelesen werden." +msgstr "Kein Eintrag in Spiegeldatei »%s« gefunden" #: methods/mirror.cc:445 #, c-format @@ -2043,7 +2088,7 @@ msgstr "Unbekannter Tar-Kopfzeilen-Typ %u, Bestandteil %s" #: apt-pkg/install-progress.cc:57 #, c-format msgid "Progress: [%3i%%]" -msgstr "" +msgstr "Fortschritt: [%3i%%]" #: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 msgid "Running dpkg" @@ -2090,14 +2135,36 @@ msgstr "Authentifizierungs-Datensatz konnte nicht gefunden werden für: %s" msgid "Hash mismatch for: %s" msgstr "Hash-Summe stimmt nicht überein für: %s" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "" -"Die Paketliste oder die Statusdatei konnte nicht eingelesen oder geöffnet " -"werden." +#: apt-pkg/acquire-worker.cc:116 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Der Treiber für Methode %s konnte nicht gefunden werden." -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" +#: apt-pkg/acquire-worker.cc:118 +#, c-format +msgid "Is the package %s installed?" +msgstr "Ist das Paket %s installiert?" + +#: apt-pkg/acquire-worker.cc:169 +#, c-format +msgid "Method %s did not start correctly" +msgstr "Methode %s ist nicht korrekt gestartet." + +#: apt-pkg/acquire-worker.cc:455 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Bitte legen Sie das Medium mit dem Namen »%s« in Laufwerk »%s« ein und " +"drücken Sie die Eingabetaste (Enter)." + +#: apt-pkg/cachefile.cc:94 +msgid "The package lists or status file could not be parsed or opened." +msgstr "" +"Die Paketliste oder die Statusdatei konnte nicht eingelesen oder geöffnet " +"werden." + +#: apt-pkg/cachefile.cc:98 +msgid "You may want to run apt-get update to correct these problems" msgstr "Probieren Sie »apt-get update«, um diese Probleme zu korrigieren." #: apt-pkg/cachefile.cc:116 @@ -2186,149 +2253,91 @@ msgstr "optional" msgid "extra" msgstr "extra" -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Der Treiber für Methode %s konnte nicht gefunden werden." - -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Überprüfen Sie, ob das Paket »dpkg-dev« installiert ist.\n" - -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Methode %s ist nicht korrekt gestartet." - -#: apt-pkg/acquire-worker.cc:455 -#, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "" -"Bitte legen Sie das Medium mit dem Namen »%s« in Laufwerk »%s« ein und " -"drücken Sie die Eingabetaste (Enter)." - #: apt-pkg/pkgrecords.cc:38 #, c-format msgid "Index file type '%s' is not supported" msgstr "Indexdateityp »%s« wird nicht unterstützt." -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Abhängigkeitsbaum wird aufgebaut." - -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Installationskandidat-Versionen" - -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Abhängigkeitsgenerierung" - -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Statusinformationen werden eingelesen." - -#: apt-pkg/depcache.cc:250 +#: apt-pkg/sourcelist.cc:127 #, c-format -msgid "Failed to open StateFile %s" -msgstr "StateFile %s konnte nicht geöffnet werden." +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Missgestalteter Absatz %u in Quellliste %s (»URI parse«)" -#: apt-pkg/depcache.cc:256 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Temporäres StateFile %s konnte nicht geschrieben werden." +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s ([Option] nicht auswertbar)" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "Umbenennen fehlgeschlagen, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Hash-Summe stimmt nicht überein" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s ([Option] zu kurz)" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Größe stimmt nicht überein" +#: apt-pkg/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s ([%s] ist keine Zuweisung)" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Ungültige Operation %s" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s ([%s] hat keinen Schlüssel)" -#: apt-pkg/acquire-item.cc:1573 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -"Erwarteter Eintrag »%s« konnte in Release-Datei nicht gefunden werden " -"(falscher Eintrag in sources.list oder missgebildete Datei)." +"Missgestaltete Zeile %lu in Quellliste %s ([%s] Schlüssel %s hat keinen Wert)" -#: apt-pkg/acquire-item.cc:1589 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Hash-Summe für »%s« kann in Release-Datei nicht gefunden werden." +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s (»URI«)" -#: apt-pkg/acquire-item.cc:1631 -msgid "There is no public key available for the following key IDs:\n" -msgstr "" -"Es gibt keine öffentlichen Schlüssel für die folgenden Schlüssel-IDs:\n" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s (»dist«)" -#: apt-pkg/acquire-item.cc:1669 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." -msgstr "" -"Release-Datei für %s ist abgelaufen (ungültig seit %s). Aktualisierungen für " -"dieses Depot werden nicht angewendet." +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s (»URI parse«)" -#: apt-pkg/acquire-item.cc:1691 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Konflikt bei Distribution: %s (%s erwartet, aber %s bekommen)" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s (»absolute dist«)" -#: apt-pkg/acquire-item.cc:1721 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "" -"An error occurred during the signature verification. The repository is not " -"updated and the previous index files will be used. GPG error: %s: %s\n" -msgstr "" -"Während der Überprüfung der Signatur trat ein Fehler auf. Das Repository " -"wurde nicht aktualisiert und die vorherigen Indexdateien werden verwendet. " -"GPG-Fehler: %s: %s\n" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s (»dist parse«)" -#. Invalid signature file, reject (LP: #346386) (Closes: #627642) -#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "GPG error: %s: %s" -msgstr "GPG-Fehler: %s: %s" +msgid "Opening %s" +msgstr "%s wird geöffnet." -#: apt-pkg/acquire-item.cc:1859 +#: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497 #, c-format -msgid "" -"I wasn't able to locate a file for the %s package. This might mean you need " -"to manually fix this package. (due to missing arch)" -msgstr "" -"Es konnte keine Datei für Paket %s gefunden werden. Das könnte heißen, dass " -"Sie dieses Paket von Hand korrigieren müssen (aufgrund fehlender " -"Architektur)." +msgid "Line %u too long in source list %s." +msgstr "Zeile %u in Quellliste %s zu lang." -#: apt-pkg/acquire-item.cc:1925 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" -"Es konnte keine Quelle gefunden werden, um Version »%s« von »%s« " -"herunterzuladen." +msgid "Malformed line %u in source list %s (type)" +msgstr "Missgestaltete Zeile %u in Quellliste %s (»type«)" -#: apt-pkg/acquire-item.cc:1983 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"Die Paketindexdateien sind beschädigt: Kein Filename:-Feld für Paket %s." +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Typ »%s« in Zeile %u der Quellliste %s ist unbekannt." + +#: apt-pkg/sourcelist.cc:416 +#, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "Typ »%s« ist in Absatz %u der Quellliste %s ist unbekannt." #: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490 #, fuzzy, c-format @@ -2383,34 +2392,145 @@ msgstr "" "Na so was, Sie haben die Anzahl an Abhängigkeiten überschritten, mit denen " "diese APT-Version umgehen kann." -#: apt-pkg/pkgcachegen.cc:576 +#: apt-pkg/pkgcachegen.cc:576 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "" +"Paket %s %s wurde beim Verarbeiten der Dateiabhängigkeiten nicht gefunden." + +#: apt-pkg/pkgcachegen.cc:1211 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Die Quellpaket-Liste %s konnte nicht mit »stat« abgefragt werden" + +#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 +#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 +msgid "Reading package lists" +msgstr "Paketlisten werden gelesen" + +#: apt-pkg/pkgcachegen.cc:1316 +msgid "Collecting File Provides" +msgstr "Sammeln der angebotenen Funktionalitäten (Provides) aus den Dateien" + +#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#, c-format +msgid "Unable to write to %s" +msgstr "Schreiben nach %s nicht möglich" + +#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 +msgid "IO Error saving source cache" +msgstr "E/A-Fehler beim Speichern des Quell-Zwischenspeichers" + +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Szenario an Problemlöser senden" + +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Anfrage an Problemlöser senden" + +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Vorbereiten, eine Lösung zu erhalten" + +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" +"Externer Problemlöser ist ohne ordnungsgemäße Fehlermeldung fehlgeschlagen." + +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Externen Problemlöser ausführen" + +#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "Umbenennen fehlgeschlagen, %s (%s -> %s)." + +#: apt-pkg/acquire-item.cc:163 +msgid "Hash Sum mismatch" +msgstr "Hash-Summe stimmt nicht überein" + +#: apt-pkg/acquire-item.cc:168 +msgid "Size mismatch" +msgstr "Größe stimmt nicht überein" + +#: apt-pkg/acquire-item.cc:173 +msgid "Invalid file format" +msgstr "Ungültiges Dateiformat" + +#: apt-pkg/acquire-item.cc:1573 +#, c-format +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" +"Erwarteter Eintrag »%s« konnte in Release-Datei nicht gefunden werden " +"(falscher Eintrag in sources.list oder missgebildete Datei)." + +#: apt-pkg/acquire-item.cc:1589 +#, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Hash-Summe für »%s« kann in Release-Datei nicht gefunden werden." + +#: apt-pkg/acquire-item.cc:1631 +msgid "There is no public key available for the following key IDs:\n" +msgstr "" +"Es gibt keine öffentlichen Schlüssel für die folgenden Schlüssel-IDs:\n" + +#: apt-pkg/acquire-item.cc:1669 +#, c-format +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" +"Release-Datei für %s ist abgelaufen (ungültig seit %s). Aktualisierungen für " +"dieses Depot werden nicht angewendet." + +#: apt-pkg/acquire-item.cc:1691 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Konflikt bei Distribution: %s (%s erwartet, aber %s bekommen)" + +#: apt-pkg/acquire-item.cc:1721 #, c-format -msgid "Package %s %s was not found while processing file dependencies" +msgid "" +"An error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -"Paket %s %s wurde beim Verarbeiten der Dateiabhängigkeiten nicht gefunden." +"Während der Überprüfung der Signatur trat ein Fehler auf. Das Repository " +"wurde nicht aktualisiert und die vorherigen Indexdateien werden verwendet. " +"GPG-Fehler: %s: %s\n" -#: apt-pkg/pkgcachegen.cc:1211 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1731 apt-pkg/acquire-item.cc:1736 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Die Quellpaket-Liste %s konnte nicht mit »stat« abgefragt werden" - -#: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403 -#: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566 -msgid "Reading package lists" -msgstr "Paketlisten werden gelesen" +msgid "GPG error: %s: %s" +msgstr "GPG-Fehler: %s: %s" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Sammeln der angebotenen Funktionalitäten (Provides) aus den Dateien" +#: apt-pkg/acquire-item.cc:1859 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"Es konnte keine Datei für Paket %s gefunden werden. Das könnte heißen, dass " +"Sie dieses Paket von Hand korrigieren müssen (aufgrund fehlender " +"Architektur)." -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: apt-pkg/acquire-item.cc:1925 #, c-format -msgid "Unable to write to %s" -msgstr "Schreiben nach %s nicht möglich" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" +"Es konnte keine Quelle gefunden werden, um Version »%s« von »%s« " +"herunterzuladen." -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "E/A-Fehler beim Speichern des Quell-Zwischenspeichers" +#: apt-pkg/acquire-item.cc:1983 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" +"Die Paketindexdateien sind beschädigt: Kein Filename:-Feld für Paket %s." #: apt-pkg/vendorlist.cc:85 #, c-format @@ -2444,14 +2564,6 @@ msgstr "Holen der Datei %li von %li (noch %s)" msgid "Retrieving file %li of %li" msgstr "Holen der Datei %li von %li" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -msgid "" -"Some index files failed to download. They have been ignored, or old ones " -"used instead." -msgstr "" -"Einige Indexdateien konnten nicht heruntergeladen werden. Sie wurden " -"ignoriert oder alte an ihrer Stelle benutzt." - #: apt-pkg/srcrecords.cc:52 msgid "You must put some 'source' URIs in your sources.list" msgstr "" @@ -2508,10 +2620,13 @@ msgstr "" "ist oft schlimm, aber wenn Sie es wirklich tun wollen, aktivieren Sie bitte " "die Option APT::Force-LoopBreak." -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -msgstr "Zeile %u in Quellliste %s zu lang." +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"Einige Indexdateien konnten nicht heruntergeladen werden. Sie wurden " +"ignoriert oder alte an ihrer Stelle benutzt." #: apt-pkg/cdrom.cc:571 msgid "Unmounting CD-ROM...\n" @@ -2612,26 +2727,31 @@ msgstr "" "Probleme können nicht korrigiert werden, Sie haben zurückgehaltene defekte " "Pakete." -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "Szenario an Problemlöser senden" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Abhängigkeitsbaum wird aufgebaut." -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "Anfrage an Problemlöser senden" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Installationskandidat-Versionen" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "Vorbereiten, eine Lösung zu erhalten" +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Abhängigkeitsgenerierung" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" -"Externer Problemlöser ist ohne ordnungsgemäße Fehlermeldung fehlgeschlagen." +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Statusinformationen werden eingelesen." -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "Externen Problemlöser ausführen" +#: apt-pkg/depcache.cc:250 +#, c-format +msgid "Failed to open StateFile %s" +msgstr "StateFile %s konnte nicht geöffnet werden." + +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Temporäres StateFile %s konnte nicht geschrieben werden." #: apt-pkg/tagfile.cc:140 #, c-format @@ -2643,107 +2763,6 @@ msgstr "Paketdatei %s konnte nicht verarbeitet werden (1)." msgid "Unable to parse package file %s (2)" msgstr "Paketdatei %s konnte nicht verarbeitet werden (2)." -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "Release-Datei %s kann nicht verarbeitet werden." - -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "Keine Bereiche (Sections) in Release-Datei %s" - -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Kein Hash-Eintrag in Release-Datei %s" - -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Ungültiger »Valid-Until«-Eintrag in Release-Datei %s" - -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Ungültiger »Date«-Eintrag in Release-Datei %s" - -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»URI parse«)" - -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s ([Option] nicht auswertbar)" - -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s ([Option] zu kurz)" - -#: apt-pkg/sourcelist.cc:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s ([%s] ist keine Zuweisung)" - -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s ([%s] hat keinen Schlüssel)" - -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Missgestaltete Zeile %lu in Quellliste %s ([%s] Schlüssel %s hat keinen Wert)" - -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»URI«)" - -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»dist«)" - -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»URI parse«)" - -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»absolute dist«)" - -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»dist parse«)" - -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "%s wird geöffnet." - -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Missgestaltete Zeile %u in Quellliste %s (»type«)" - -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "Typ »%s« in Zeile %u der Quellliste %s ist unbekannt." - -#: apt-pkg/sourcelist.cc:416 -#, fuzzy, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "Typ »%s« in Zeile %u der Quellliste %s ist unbekannt." - #: apt-pkg/cacheset.cc:489 #, c-format msgid "Release '%s' for '%s' was not found" @@ -2765,9 +2784,9 @@ msgid "Couldn't find any package by regex '%s'" msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." #: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format +#, c-format msgid "Couldn't find any package by glob '%s'" -msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." +msgstr "Mittels des Musters »%s« konnte kein Paket gefunden werden." #: apt-pkg/cacheset.cc:626 #, c-format @@ -2806,6 +2825,31 @@ msgstr "" "Die installierte Version von Paket »%s« kann nicht ausgewählt werden, da es " "nicht installiert ist." +#: apt-pkg/indexrecords.cc:78 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Release-Datei %s kann nicht verarbeitet werden." + +#: apt-pkg/indexrecords.cc:86 +#, c-format +msgid "No sections in Release file %s" +msgstr "Keine Bereiche (Sections) in Release-Datei %s" + +#: apt-pkg/indexrecords.cc:117 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Kein Hash-Eintrag in Release-Datei %s" + +#: apt-pkg/indexrecords.cc:130 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Ungültiger »Valid-Until«-Eintrag in Release-Datei %s" + +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Ungültiger »Date«-Eintrag in Release-Datei %s" + #. d means days, h means hours, min means minutes, s means seconds #: apt-pkg/contrib/strutl.cc:406 #, c-format @@ -2969,13 +3013,13 @@ msgstr "%c%s... Fertig" #: apt-pkg/contrib/progress.cc:181 msgid "..." -msgstr "" +msgstr "..." #. Print the spinner #: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format +#, c-format msgid "%c%s... %u%%" -msgstr "%c%s... Fertig" +msgstr "%c%s... %u%%" #: apt-pkg/contrib/mmap.cc:79 msgid "Can't mmap an empty file" @@ -3235,20 +3279,20 @@ msgstr "%s vollständig entfernt" #: apt-pkg/deb/dpkgpm.cc:1066 msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +msgstr "ioctl(TIOCGWINSZ) fehlgeschlagen" #: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format +#, c-format msgid "Can not write log (%s)" -msgstr "Schreiben nach %s nicht möglich" +msgstr "Schreiben des Protokolls nicht möglich (%s)" #: apt-pkg/deb/dpkgpm.cc:1069 msgid "Is /dev/pts mounted?" -msgstr "" +msgstr "Ist /dev/pts eingebunden?" #: apt-pkg/deb/dpkgpm.cc:1090 msgid "Is stdout a terminal?" -msgstr "" +msgstr "Ist stdout ein Terminal?" #: apt-pkg/deb/dpkgpm.cc:1569 msgid "Operation was interrupted before it could finish" @@ -3290,13 +3334,12 @@ msgstr "" "wegen erschöpftem Arbeitsspeicher hindeutet." #: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy msgid "" "No apport report written because the error message indicates an issue on the " "local system" msgstr "" "Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Fehler " -"wegen voller Festplatte hindeutet." +"im lokalen System hindeutet." #: apt-pkg/deb/dpkgpm.cc:1685 msgid "" @@ -3359,9 +3402,9 @@ msgstr "" " -o=? Eine beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" #: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format +#, c-format msgid "Unable to mkstemp %s" -msgstr "%s mit »stat« abfragen nicht möglich" +msgstr "mkstemp %s nicht möglich" #: cmdline/apt-extracttemplates.cc:300 msgid "Cannot get debconf version. Is debconf installed?" @@ -3622,9 +3665,9 @@ msgstr "%s konnte nicht geöffnet werden." #. skip spaces #. find end of word #: ftparchive/override.cc:68 -#, fuzzy, c-format +#, c-format msgid "Malformed override %s line %llu (%s)" -msgstr "Missgestaltetes Override %s Zeile %llu #1" +msgstr "Missgestaltetes Override %s Zeile %llu (%s)" #: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format @@ -3740,9 +3783,8 @@ msgstr "" " -c=? Diese Konfigurationsdatei lesen\n" " -o=? Eine beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" -#, fuzzy #~ msgid "Internal error, Upgrade broke stuff" -#~ msgstr "Interner Fehler, AllUpgrade hat etwas beschädigt." +#~ msgstr "Interner Fehler, Upgrade hat etwas beschädigt." #~ msgid "%s not a valid DEB package." #~ msgstr "%s ist kein gültiges DEB-Paket." -- cgit v1.2.3 From cfefaf6c4a27bbd5bfdad67e482f4b01506f5bd5 Mon Sep 17 00:00:00 2001 From: Andreas Oberritter <obi@opendreambox.org> Date: Thu, 28 Aug 2014 15:04:20 -0700 Subject: The following command otherwise yields many blank lines: apt list -o APT::Cmd::use-format=true -o APT::Cmd::format=\${Package} And even worse when adding "-o APT::Cmd::All-Versions=true". Signed-off-by: Andreas Oberritter <obi@opendreambox.org> --- apt-private/private-list.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apt-private/private-list.cc b/apt-private/private-list.cc index b69002103..f98456576 100644 --- a/apt-private/private-list.cc +++ b/apt-private/private-list.cc @@ -93,7 +93,6 @@ static void ListAllVersions(pkgCacheFile &CacheFile, pkgRecords &records,/*{{{*/ Ver.end() == false; ++Ver) { ListSingleVersion(CacheFile, records, Ver, outs, include_summary); - outs << "\n"; } } /*}}}*/ @@ -149,7 +148,7 @@ bool DoList(CommandLine &Cmd) // FIXME: SORT! and make sorting flexible (alphabetic, by pkg status) // output the sorted map for (K = output_map.begin(); K != output_map.end(); ++K) - std::cout << (*K).second << std::endl; + std::cout << (*K).second; // be nice and tell the user if there is more to see -- cgit v1.2.3 From 244397512db2221f99b6ac9124b9b2e175ff3bae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Am=C3=A9rico=20Monteiro?= <a_monteiro@gmx.com> Date: Fri, 29 Aug 2014 11:07:23 +0200 Subject: Portuguese manpages translation update Closes: 759608 --- doc/po/pt.po | 434 +---------------------------------------------------------- 1 file changed, 3 insertions(+), 431 deletions(-) diff --git a/doc/po/pt.po b/doc/po/pt.po index 5ed25f73a..c92a2016d 100644 --- a/doc/po/pt.po +++ b/doc/po/pt.po @@ -5,10 +5,10 @@ # Américo Monteiro <a_monteiro@gmx.com>, 2009 - 2014. msgid "" msgstr "" -"Project-Id-Version: apt 1.0.6\n" +"Project-Id-Version: apt 1.0.7\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2014-08-28 00:20+0000\n" -"PO-Revision-Date: 2014-07-27 14:14+0100\n" +"POT-Creation-Date: 2014-08-29 11:04+0200\n" +"PO-Revision-Date: 2014-08-29 00:34+0100\n" "Last-Translator: Américo Monteiro <a_monteiro@gmx.com>\n" "Language-Team: Portuguese <traduz@debianpt.org>\n" "Language: pt\n" @@ -794,12 +794,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.8.xml:101 -#, fuzzy -#| msgid "" -#| "<literal>upgrade</literal> is used to install the newest versions of all " -#| "packages currently installed on the system from the sources enumerated in " -#| "<filename>/etc/apt/sources.list</filename>. New package will be " -#| "installed, but existing package will never removed." msgid "" "<literal>upgrade</literal> is used to install the newest versions of all " "packages currently installed on the system from the sources enumerated in " @@ -10012,425 +10006,3 @@ msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" #: offline.dbk:242 msgid "Which will use the already fetched archives on the disc." msgstr "O qual irá usar os arquivos já obtidos e que estão no disco." - -#~ msgid "apt" -#~ msgstr "apt" - -#~ msgid "16 June 1998" -#~ msgstr "16 Junho 1998" - -#~ msgid "Debian" -#~ msgstr "Debian" - -#~ msgid "NAME" -#~ msgstr "NOME" - -#~ msgid "apt - Advanced Package Tool" -#~ msgstr "apt - Ferramenta de Pacotes Avançada" - -#~ msgid "SYNOPSIS" -#~ msgstr "SINOPSE" - -#~ msgid "B<apt>" -#~ msgstr "B<apt>" - -#~ msgid "DESCRIPTION" -#~ msgstr "DESCRIÇÃO" - -#, fuzzy -#~| msgid "" -#~| "APT is a management system for software packages. For normal day to day " -#~| "package management there are several frontends available, such as " -#~| "B<aptitude>(8) for the command line or B<synaptic>(8) for the X Window " -#~| "System. Some options are only implemented in B<apt-get>(8) though." -#~ msgid "" -#~ "For normal day to day package management there are several frontends " -#~ "available, such as B<aptitude>(8) for the command line or " -#~ "B<synaptic>(8) for the X Window System. Some options are only " -#~ "implemented in B<apt-get>(8) though." -#~ msgstr "" -#~ "APT é um sistema de gestão para pacotes de software. Para a gestão de " -#~ "pacotes normal do dia-a-dia existem vários frontends disponíveis, como o " -#~ "B<aptitude>(8) para a linha de comandos ou o B<synaptic>(8) para o X " -#~ "Window System. No entanto, algumas das opções estão apenas implementadas " -#~ "no B<apt-get>(8)." - -#~ msgid "SEE ALSO" -#~ msgstr "VEJA TAMBÉM" - -#, fuzzy -#~| msgid "" -#~| "B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " -#~| "B<apt_preferences>(5), B<apt-secure>(8)" -#~ msgid "" -#~ "B<apt>(8), B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources." -#~ "list>(5), B<apt_preferences>(5), B<apt-secure>(8)" -#~ msgstr "" -#~ "B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " -#~ "B<apt_preferences>(5), B<apt-secure>(8)" - -#~ msgid "DIAGNOSTICS" -#~ msgstr "DIAGNÓSTICOS" - -#~ msgid "apt returns zero on normal operation, decimal 100 on error." -#~ msgstr "o apt devolve zero na operação normal, 100 decimal em erro." - -#~ msgid "BUGS" -#~ msgstr "BUGS" - -#~ msgid "This manpage isn't even started." -#~ msgstr "Este manual ainda nem começou." - -#~ msgid "" -#~ "See E<lt>http://bugs.debian.org/aptE<gt>. If you wish to report a bug in " -#~ "B<apt>, please see I</usr/share/doc/debian/bug-reporting.txt> or the " -#~ "B<reportbug>(1) command." -#~ msgstr "" -#~ "Veja E<lt>http://bugs.debian.org/aptE<gt>. Se deseja reportar um bug em " -#~ "B<apt>, por favor veja I</usr/share/doc/debian/bug-reporting.txt> ou o " -#~ "comando B<reportbug>(1) ." - -#~ msgid "AUTHOR" -#~ msgstr "AUTOR" - -#~ msgid "apt was written by the APT team E<lt>apt@packages.debian.orgE<gt>." -#~ msgstr "apt foi escrito pelo APT team E<lt>apt@packages.debian.orgE<gt>." - -#~ msgid "Package resource list for APT" -#~ msgstr "Lista de recursos de pacote para APT" - -#~ msgid "" -#~ "As the configuration can be deferred to be done at the end by &dpkg; it " -#~ "can be tried to order the unpack series only by critical needs, e.g. by " -#~ "Pre-Depends. Default is true and therefore the \"old\" method of ordering " -#~ "in various steps by everything. While both method were present in earlier " -#~ "APT versions the <literal>OrderCritical</literal> method was unused, so " -#~ "this method is very experimental and needs further improvements before " -#~ "becoming really useful." -#~ msgstr "" -#~ "Como a configuração pode ser diferida a ser feita no final pelo &dpkg;, " -#~ "pode ser tentada a ordenar a série de desempacotamento apenas por " -#~ "necessidades críticas, ex. por pré-dependências. A predefinição é " -#~ "verdadeiro e então o método \"antigo\" de ordenar em vários passos por " -#~ "tudo. Enquanto ambos os métodos estão presentes em versões jovens do APT, " -#~ "o método <literal>OrderCritical</literal> não foi usado, portanto este " -#~ "método é muito experimental e necessita de mais melhorias antes de se " -#~ "tornar realmente útil." - -#~ msgid "Dump the default configuration to standard error on startup." -#~ msgstr "" -#~ "Despeja a configuração predefinida para o erro standard no arranque." - -#~ msgid "" -#~ "Defaults to on which will cause APT to install essential and important " -#~ "packages as fast as possible in the install/upgrade operation. This is " -#~ "done to limit the effect of a failing &dpkg; call: If this option is " -#~ "disabled APT does treat an important package in the same way as an extra " -#~ "package: Between the unpacking of the important package A and his " -#~ "configuration can then be many other unpack or configuration calls, e.g. " -#~ "for package B which has no relation to A, but causes the dpkg call to " -#~ "fail (e.g. because maintainer script of package B generates an error) " -#~ "which results in a system state in which package A is unpacked but " -#~ "unconfigured - each package depending on A is now no longer guaranteed to " -#~ "work as their dependency on A is not longer satisfied. The immediate " -#~ "configuration marker is also applied to all dependencies which can " -#~ "generate a problem if the dependencies e.g. form a circle as a dependency " -#~ "with the immediate flag is comparable with a Pre-Dependency. So in theory " -#~ "it is possible that APT encounters a situation in which it is unable to " -#~ "perform immediate configuration, errors out and refers to this option so " -#~ "the user can deactivate the immediate configuration temporarily to be " -#~ "able to perform an install/upgrade again. Note the use of the word " -#~ "\"theory\" here as this problem was only encountered by now in real world " -#~ "a few times in non-stable distribution versions and was caused by wrong " -#~ "dependencies of the package in question or by a system in an already " -#~ "broken state, so you should not blindly disable this option as the " -#~ "mentioned scenario above is not the only problem immediate configuration " -#~ "can help to prevent in the first place. Before a big operation like " -#~ "<literal>dist-upgrade</literal> is run with this option disabled it " -#~ "should be tried to explicitly <literal>install</literal> the package APT " -#~ "is unable to configure immediately, but please make sure to report your " -#~ "problem also to your distribution and to the APT team with the buglink " -#~ "below so they can work on improving or correcting the upgrade process." -#~ msgstr "" -#~ "A predefinição é ligado o que irá fazer com que o APT instale pacotes " -#~ "essenciais e importantes o mais rápido possível na operação de instalar/" -#~ "actualizar. Isto é feito para limitar o efeito de uma chamada falhada do " -#~ "&dpkg;. Se esta opção for desactivada, o APT trata um pacote importante " -#~ "do mesmo modo que um pacote extra: Entre o desempacotamento do pacote " -#~ "importante A e a sua configuração podem acontecer muitas outras chamadas " -#~ "de desempacotamento e configuração, exemplo, para o pacote B que não tem " -#~ "nenhuma relação com A, mas causa uma falha na chamada ao dpkg (ex, porque " -#~ "o script do responsável do pacote B gera um erro) o qual resulta num " -#~ "estado do sistema em que o pacote A está desempacotado mas ainda não " -#~ "configurado - já não se garante o funcionamento de cada pacote que " -#~ "depende de A porque a sua dependência já não está satisfeita. O marcador " -#~ "de configuração imediata é também aplicado a todas as dependências que " -#~ "possam gerar um problema se as dependências, ex, formam um círculo como " -#~ "uma dependência com a marca de imediato a ser comparável com uma Pré-" -#~ "Dependência. Portanto, em teoria, é possível que o APT encontre uma " -#~ "situação na qual é incapaz de executar configuração imediata, entre em " -#~ "erro e refira esta opção para que o utilizador possa desactivar " -#~ "temporariamente a configuração imediata para ser capaz de executar uma " -#~ "instalação/actualização outra vez. Note o uso da palavra \"teoria\" aqui " -#~ "pois este problema foi poucas vezes encontrado até agora no mundo real em " -#~ "versões de distribuição não-estáveis e causados por dependências erradas " -#~ "do pacote em questão ou por um sistema já num estado corrompido, portanto " -#~ "você não deve desactivar esta opção às cegas porque, em primeiro lugar, o " -#~ "cenário mencionado acima não é o único problema que a configuração " -#~ "imediata pode ajudar a prevenir. Antes de uma grande operação como " -#~ "<literal>dist-upgrade</literal> ser corrida com esta opção desactivada, " -#~ "deve ser tentado primeiro fazer um <literal>install</literal> explicito " -#~ "ao pacote que o APT é incapaz de configurar imediatamente, mas por favor " -#~ "certifique-se de também relatar o seu problema à sua distribuição e à " -#~ "equipa do APT com o link de bug abaixo para que possam trabalhar na " -#~ "melhoria ou correcção do processo de actualização." - -#~ msgid "" -#~ "The package resource list is used to locate archives of the package " -#~ "distribution system in use on the system. At this time, this manual page " -#~ "documents only the packaging system used by the Debian system. This " -#~ "control file is <filename>/etc/apt/sources.list</filename>." -#~ msgstr "" -#~ "A lista de recursos de pacote é usada para localizar arquivos do sistema " -#~ "de distribuição de pacotes usado no sistema. Neste momento, este manual " -#~ "documenta apenas o sistema de pacotes usado pelo sistema Debian. Este " -#~ "ficheiro de controle é <filename>/etc/apt/sources.list</filename>." - -#~ msgid "" -#~ "The source list is designed to support any number of active sources and a " -#~ "variety of source media. The file lists one source per line, with the " -#~ "most preferred source listed first. The format of each line is: " -#~ "<literal>type uri args</literal> The first item, <literal>type</literal> " -#~ "determines the format for <literal>args</literal>. <literal>uri</literal> " -#~ "is a Universal Resource Identifier (URI), which is a superset of the more " -#~ "specific and well-known Universal Resource Locator, or URL. The rest of " -#~ "the line can be marked as a comment by using a #." -#~ msgstr "" -#~ "A lista de fontes é desenhada para suportar qualquer número de fontes " -#~ "activas e uma variedade de médias fonte. O ficheiro lista uma fonte por " -#~ "linha, com a fonte mais preferida listada em primeiro lugar. O formato " -#~ "para cada linha é: <literal>tipo uri argumentos</literal>. O primeiro " -#~ "item, <literal>tipo</literal> determina o formato para " -#~ "<literal>argumentos</literal>. <literal>uri</literal> é um Universal " -#~ "Resource Identifier (URI), o que é um super-conjunto para o mais " -#~ "específico e conhecido Universal Resource Locator, ou URL. O resto da " -#~ "linha pode ser marcado como um comentário usando um #." - -#~ msgid "" -#~ "<literal>gencaches</literal> performs the same operation as <command>apt-" -#~ "get check</command>. It builds the source and package caches from the " -#~ "sources in &sources-list; and from <filename>/var/lib/dpkg/status</" -#~ "filename>." -#~ msgstr "" -#~ "<literal>gencaches</literal> executa a mesma operação que o <command>apt-" -#~ "get check</command>. Constrói as caches de fonte e pacote a partir das " -#~ "fontes em &sources-list; e a partir de <filename>/var/lib/dpkg/status</" -#~ "filename>." - -#~ msgid "" -#~ "One setting is provided to control the pipeline depth in cases where the " -#~ "remote server is not RFC conforming or buggy (such as Squid 2.0.2). " -#~ "<literal>Acquire::http::Pipeline-Depth</literal> can be a value from 0 to " -#~ "5 indicating how many outstanding requests APT should send. A value of " -#~ "zero MUST be specified if the remote host does not properly linger on TCP " -#~ "connections - otherwise data corruption will occur. Hosts which require " -#~ "this are in violation of RFC 2068." -#~ msgstr "" -#~ "É disponibilizada uma definição para controlar a profundidade do pipeline " -#~ "em casos onde o servidor remoto não é compatível com RFC ou é buggy (como " -#~ "o Squid 2.0.2). <literal>Acquire::http::Pipeline-Depth</literal> pode ser " -#~ "um valor de 0 a 5 que indica quantos requerimentos pendentes o APT deve " -#~ "enviar. TEM de ser especificado um valor de 0 se a máquina remota não " -#~ "hesitar propriamente em ligações TCP - de outro modo irá ocorrer " -#~ "corrupção de dados. As máquinas que requerem isto estão em violação de " -#~ "RFC 2068." - -#~ msgid "add <replaceable>filename</replaceable>" -#~ msgstr "add <replaceable>nome-de-ficheiro</replaceable>" - -#~ msgid "del <replaceable>keyid</replaceable>" -#~ msgstr "del <replaceable>id de chave</replaceable>" - -#~ msgid "export <replaceable>keyid</replaceable>" -#~ msgstr "export <replaceable>id de chave</replaceable>" - -#~ msgid "" -#~ "Update the local keyring with the keyring of Debian archive keys and " -#~ "removes from the keyring the archive keys which are no longer valid." -#~ msgstr "" -#~ "Actualiza o chaveiro local com o chaveiro das chaves de arquivos Debian e " -#~ "remove do chaveiro as chaves de arquivo que já não são válidas." - -#~ msgid "--keyring <replaceable>filename</replaceable>" -#~ msgstr "--keyring <replaceable>nome-de-ficheiro</replaceable>" - -#, fuzzy -#~| msgid "" -#~| "Seconds the Release file should be considered valid after it was " -#~| "created. The default is \"for ever\" (0) if the Release file of the " -#~| "archive doesn't include a <literal>Valid-Until</literal> header. If it " -#~| "does then this date is the default. The date from the Release file or " -#~| "the date specified by the creation time of the Release file " -#~| "(<literal>Date</literal> header) plus the seconds specified with this " -#~| "options are used to check if the validation of a file has expired by " -#~| "using the earlier date of the two. Archive specific settings can be made " -#~| "by appending the label of the archive to the option name." -#~ msgid "" -#~ "Seconds the Release file should be considered valid after it was created. " -#~ "The default is \"for ever\" (0) if the Release file of the archive " -#~ "doesn't include a <literal>Valid-Until</literal> header. If it does then " -#~ "this date is the default. The date from the Release file or the date " -#~ "specified by the creation time of the Release file (<literal>Date</" -#~ "literal> header) plus the seconds specified with this options are used to " -#~ "check if the validation of a file has expired by using the earlier date " -#~ "of the two. Archive specific settings can be made by appending the label " -#~ "of the archive to the option name." -#~ msgstr "" -#~ "Segundos em que o ficheiro Release deve considerado válido após ser " -#~ "criado. A predefinição é \"para sempre\" (0) se o ficheiro Release do " -#~ "arquivo não conter um cabeçalho <literal>Valid-Until</literal>. Se o " -#~ "tiver então esta data é a predefinida. A data do ficheiro Release ou a " -#~ "data especificada pela hora de criação do do ficheiro Release (cabeçalho " -#~ "<literal>Date</literal>) mais os segundos especificados com esta opção " -#~ "são usados para verificar se a validação de um ficheiro já expirou ao " -#~ "usar uma data anterior às duas. Definições específicas do Arquivo podem " -#~ "ser feitas ao adicionar a etiqueta do arquivo ao nome da opção. " - -#~ msgid "" -#~ "Generate MD5 sums. This defaults to on, when turned off the generated " -#~ "index files will not have MD5Sum fields where possible. Configuration " -#~ "Item: <literal>APT::FTPArchive::MD5</literal>" -#~ msgstr "" -#~ "Gera sumários MD5. A predefinição é ligado, quando desligado os ficheiros " -#~ "índice gerados não terão campos MD5Sum onde possíveis. Item de " -#~ "Configuração: <literal>APT::FTPArchive::MD5</literal>" - -#~ msgid "Show a short usage summary." -#~ msgstr "Mostra um curto sumário de utilização." - -#~ msgid "Show the program version." -#~ msgstr "Mostra a versão do programa." - -#~ msgid "to the version that is already installed (if any)." -#~ msgstr "para a versão que já está instalada (se alguma)." - -#~ msgid "APT package handling utility -- cache manipulator" -#~ msgstr "" -#~ "Utilitário de manuseamento de pacotes do APT -- manipulador de cache" - -#~ msgid "add <replaceable>file(s)</replaceable>" -#~ msgstr "add <replaceable>ficheiro(s)</replaceable>" - -#~ msgid "" -#~ "<literal>add</literal> adds the named package index files to the package " -#~ "cache. This is for debugging only." -#~ msgstr "" -#~ "<literal>add</literal> adiciona ficheiros índice do pacote nomeado à " -#~ "cache pacotes. Isto é apenas para depuração." - -#~ msgid "" -#~ "The <literal>release</literal> command generates a Release file from a " -#~ "directory tree. It recursively searches the given directory for Packages, " -#~ "Packages.gz, Packages.bz2, Sources, Sources.gz, Sources.bz2, Release and " -#~ "md5sum.txt files. It then writes to stdout a Release file containing an " -#~ "MD5 digest and SHA1 digest for each file." -#~ msgstr "" -#~ "O comando <literal>release</literal> gera um ficheiro Release a partir " -#~ "duma árvore de directórios. Procura recursivamente o directório dado por " -#~ "ficheiros Packages, Packages.gz, Packages.bz2, Sources, Sources.gz, " -#~ "Sources.bz2, Release e md5sum.txt. Depois escreve para o stdout um " -#~ "ficheiro Release contendo um sumário MD5 e um sumário SHA1 por cada " -#~ "ficheiro." - -#~ msgid "Also install recommended packages." -#~ msgstr "Também instala pacotes recomendados." - -#~ msgid "Do not install recommended packages." -#~ msgstr "Não instala pacotes recomendados." - -#~ msgid "" -#~ "While it is possible to add an empty compression type to the order list, " -#~ "but APT in its current version doesn't understand it correctly and will " -#~ "display many warnings about not downloaded files - these warnings are " -#~ "most of the time false negatives. Future versions will maybe include a " -#~ "way to really prefer uncompressed files to support the usage of local " -#~ "mirrors." -#~ msgstr "" -#~ "Apesar de ser possível de adicionar um tipo de compressão vazio à lista " -#~ "de ordem, o APT na sua versão actual não o compreende correctamente e irá " -#~ "mostrar muitos avisos acerca de ficheiros não descarregados - estes " -#~ "avisos são na maioria vezes falsos positivos. Futuras versões irão talvez " -#~ "incluir um modo de realmente preferir ficheiros não-comprimidos para " -#~ "suportar a utilização de mirrors locais." - -#~ msgid "" -#~ "Uses HTTP to access the archive at nonus.debian.org, under the debian-non-" -#~ "US directory." -#~ msgstr "" -#~ "Usa HTTP para aceder ao arquivo em nonus.debian.org, sob o directório " -#~ "debian-non-US." - -#~ msgid "OPTIONS" -#~ msgstr "OPÇÕES" - -#~ msgid "None." -#~ msgstr "Nenhum." - -#~ msgid "FILES" -#~ msgstr "FICHEIROS" - -#~ msgid "" -#~ "Status list of auto-installed packages. Configuration Item: " -#~ "<literal>Dir::State</literal> sets the path to the " -#~ "<filename>extended_states</filename> file." -#~ msgstr "" -#~ "Lista de estado de pacotes auto-instalados. Item de Configuração: " -#~ "<literal>Dir::State</literal> que define o caminho para o ficheiro " -#~ "<filename>extended_states</filename>." - -#~ msgid "" -#~ "APT uses a fixed size memory mapped cache file to store the 'available' " -#~ "information. This sets the size of that cache (in bytes)." -#~ msgstr "" -#~ "O APT usa um ficheiro de cache de memória mapeada de tamanho fixo para " -#~ "armazenar a informação 'disponível'. Isto define o tamanho dessa cache " -#~ "(em bytes)." - -#~ msgid "" -#~ "The <literal>Pin-Priority:</literal> line in each APT preferences record " -#~ "is optional. If omitted, APT assigns a priority of 1 less than the last " -#~ "value specified on a line beginning with <literal>Pin-Priority: " -#~ "release ...</literal>." -#~ msgstr "" -#~ "A linha <literal>Pin-Priority:</literal> em cada registo de preferências " -#~ "do APT é opcional. Se omitida, o APT atribui uma prioridade de 1 a menos " -#~ "do último valor especificado numa linha que começa com <literal>Pin-" -#~ "Priority: release ...</literal>." - -#~ msgid "Keyring of local trusted keys, new keys will be added here." -#~ msgstr "" -#~ "Chaveiro das chaves de confiança locais, as novas chaves serão " -#~ "adicionadas aqui." - -#~ msgid "" -#~ "<filename>apt.conf</filename> is the main configuration file for the APT " -#~ "suite of tools, all tools make use of the configuration file and a common " -#~ "command line parser to provide a uniform environment. When an APT tool " -#~ "starts up it will read the configuration specified by the " -#~ "<envar>APT_CONFIG</envar> environment variable (if any) and then read the " -#~ "files in <literal>Dir::Etc::Parts</literal> then read the main " -#~ "configuration file specified by <literal>Dir::Etc::main</literal> then " -#~ "finally apply the command line options to override the configuration " -#~ "directives, possibly loading even more config files." -#~ msgstr "" -#~ "<filename>apt.conf</filename> é o ficheiro de configuração principal para " -#~ "a suite de ferramentas do APT, todas as ferramentas usam o ficheiro de " -#~ "configuração e um analisador de linha de comandos comum para " -#~ "disponibilizar um ambiente uniforme. Quando uma ferramenta do APT arranca " -#~ "lê a configuração especificada pela variável de ambiente " -#~ "<envar>APT_CONFIG</envar> (se existir alguma) e depois lê os ficheiros em " -#~ "<literal>Dir::Etc::Parts</literal>, depois lê o ficheiro de configuração " -#~ "principal especificado por <literal>Dir::Etc::main</literal> e finalmente " -#~ "aplica as opções de linha de comandos para sobrepor as directivas de " -#~ "configuração, possivelmente carregando ainda mais ficheiros de " -#~ "configuração." -- cgit v1.2.3 From fb4c76436a88a04d1d9b7e9622e431ed8ab708a6 Mon Sep 17 00:00:00 2001 From: Warren He <microrffr@gmail.com> Date: Fri, 29 Aug 2014 11:15:30 +0200 Subject: initialize iPolicyBrokenCount in DepCache::Update All other counters are correctly initialized here, expect this one. The practical effect is low as in apt we usually just do "!= 0" checks, but only correct counters are good counters. Closes: 758397 --- apt-pkg/depcache.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apt-pkg/depcache.cc b/apt-pkg/depcache.cc index c25672d1c..42e31396b 100644 --- a/apt-pkg/depcache.cc +++ b/apt-pkg/depcache.cc @@ -663,10 +663,11 @@ void pkgDepCache::Update(OpProgress *Prog) { iUsrSize = 0; iDownloadSize = 0; - iDelCount = 0; iInstCount = 0; + iDelCount = 0; iKeepCount = 0; iBrokenCount = 0; + iPolicyBrokenCount = 0; iBadCount = 0; // Perform the depends pass -- cgit v1.2.3 From c6ee61eab54edf6cc3fbe118d304d72a860e1451 Mon Sep 17 00:00:00 2001 From: Michael Vogt <mvo@ubuntu.com> Date: Tue, 2 Sep 2014 15:50:19 +0200 Subject: Make Proxy-Auto-Detect check for each host When doing Acquire::http{,s}::Proxy-Auto-Detect, run the auto-detect command for each host instead of only once. This should make using "proxy" from libproxy-tools feasible which can then be used for PAC style or other proxy configurations. Closes: #759264 --- apt-pkg/contrib/proxy.cc | 82 ++++++++++++++++++++++++++++++++++++++++ apt-pkg/contrib/proxy.h | 16 ++++++++ cmdline/apt-helper.cc | 16 ++++++++ methods/http.cc | 62 +----------------------------- methods/http.h | 3 -- methods/https.cc | 4 ++ test/integration/test-apt-helper | 80 ++++++++++++++++++++++++++++----------- 7 files changed, 178 insertions(+), 85 deletions(-) create mode 100644 apt-pkg/contrib/proxy.cc create mode 100644 apt-pkg/contrib/proxy.h diff --git a/apt-pkg/contrib/proxy.cc b/apt-pkg/contrib/proxy.cc new file mode 100644 index 000000000..b58db8478 --- /dev/null +++ b/apt-pkg/contrib/proxy.cc @@ -0,0 +1,82 @@ +// -*- mode: cpp; mode: fold -*- +// Description /*{{{*/ +/* ###################################################################### + + Proxy - Proxy releated functions + + ##################################################################### */ + /*}}}*/ +// Include Files /*{{{*/ +#include<apt-pkg/configuration.h> +#include<apt-pkg/error.h> +#include<apt-pkg/fileutl.h> +#include<apt-pkg/strutl.h> + +#include<iostream> +#include <unistd.h> + +#include "proxy.h" + + +// AutoDetectProxy - auto detect proxy /*{{{*/ +// --------------------------------------------------------------------- +/* */ +bool AutoDetectProxy(URI &URL) +{ + // we support both http/https debug options + bool Debug = _config->FindB("Debug::Acquire::"+URL.Access,false); + + // option is "Acquire::http::Proxy-Auto-Detect" but we allow the old + // name without the dash ("-") + std::string AutoDetectProxyCmd = _config->Find("Acquire::"+URL.Access+"::Proxy-Auto-Detect", + _config->Find("Acquire::"+URL.Access+"::ProxyAutoDetect")); + + if (AutoDetectProxyCmd.empty()) + return true; + + if (Debug) + std::clog << "Using auto proxy detect command: " << AutoDetectProxyCmd << std::endl; + + int Pipes[2] = {-1,-1}; + if (pipe(Pipes) != 0) + return _error->Errno("pipe", "Failed to create Pipe"); + + pid_t Process = ExecFork(); + if (Process == 0) + { + close(Pipes[0]); + dup2(Pipes[1],STDOUT_FILENO); + SetCloseExec(STDOUT_FILENO,false); + + std::string foo = URL; + const char *Args[4]; + Args[0] = AutoDetectProxyCmd.c_str(); + Args[1] = foo.c_str(); + Args[2] = 0; + execv(Args[0],(char **)Args); + std::cerr << "Failed to exec method " << Args[0] << std::endl; + _exit(100); + } + char buf[512]; + int InFd = Pipes[0]; + close(Pipes[1]); + int res = read(InFd, buf, sizeof(buf)-1); + ExecWait(Process, "ProxyAutoDetect", true); + + if (res < 0) + return _error->Errno("read", "Failed to read"); + if (res == 0) + return _error->Warning("ProxyAutoDetect returned no data"); + + // add trailing \0 + buf[res] = 0; + + if (Debug) + std::clog << "auto detect command returned: '" << buf << "'" << std::endl; + + if (strstr(buf, URL.Access.c_str()) == buf) + _config->Set("Acquire::"+URL.Access+"::proxy::"+URL.Host, _strstrip(buf)); + + return true; +} + /*}}}*/ diff --git a/apt-pkg/contrib/proxy.h b/apt-pkg/contrib/proxy.h new file mode 100644 index 000000000..2cbcd07b4 --- /dev/null +++ b/apt-pkg/contrib/proxy.h @@ -0,0 +1,16 @@ +// -*- mode: cpp; mode: fold -*- +// Description /*{{{*/ +/* ###################################################################### + + Proxy - Proxy operations + + ##################################################################### */ + /*}}}*/ +#ifndef PKGLIB_PROXY_H +#define PKGLIB_PROXY_H + +class URI; +bool AutoDetectProxy(URI &URL); + + +#endif diff --git a/cmdline/apt-helper.cc b/cmdline/apt-helper.cc index b0edafcbd..dd43ea1bc 100644 --- a/cmdline/apt-helper.cc +++ b/cmdline/apt-helper.cc @@ -16,6 +16,7 @@ #include <apt-pkg/fileutl.h> #include <apt-pkg/acquire.h> #include <apt-pkg/acquire-item.h> +#include <apt-pkg/proxy.h> #include <apt-private/acqprogress.h> #include <apt-private/private-output.h> @@ -29,6 +30,19 @@ #include <apti18n.h> /*}}}*/ +static bool DoAutoDetectProxy(CommandLine &CmdL) +{ + if (CmdL.FileSize() != 2) + return _error->Error(_("Need one URL as argument")); + URI ServerURL(CmdL.FileList[1]); + AutoDetectProxy(ServerURL); + std::string SpecificProxy = _config->Find("Acquire::"+ServerURL.Access+"::Proxy::" + ServerURL.Host); + ioprintf(std::cout, "Using proxy '%s' for URL '%s'\n", + SpecificProxy.c_str(), std::string(ServerURL).c_str()); + + return true; +} + static bool DoDownloadFile(CommandLine &CmdL) { if (CmdL.FileSize() <= 2) @@ -70,6 +84,7 @@ static bool ShowHelp(CommandLine &) "\n" "Commands:\n" " download-file - download the given uri to the target-path\n" + " auto-detect-proxy - detect proxy using apt.conf\n" "\n" " This APT helper has Super Meep Powers.\n"); return true; @@ -80,6 +95,7 @@ int main(int argc,const char *argv[]) /*{{{*/ { CommandLine::Dispatch Cmds[] = {{"help",&ShowHelp}, {"download-file", &DoDownloadFile}, + {"auto-detect-proxy", &DoAutoDetectProxy}, {0,0}}; std::vector<CommandLine::Args> Args = getCommandArgs( diff --git a/methods/http.cc b/methods/http.cc index 7c7949eac..f2a4a4db6 100644 --- a/methods/http.cc +++ b/methods/http.cc @@ -34,6 +34,7 @@ #include <apt-pkg/hashes.h> #include <apt-pkg/netrc.h> #include <apt-pkg/strutl.h> +#include <apt-pkg/proxy.h> #include <stddef.h> #include <stdlib.h> @@ -304,6 +305,7 @@ bool HttpServerState::Open() Persistent = true; // Determine the proxy setting + AutoDetectProxy(ServerName); string SpecificProxy = _config->Find("Acquire::http::Proxy::" + ServerName.Host); if (!SpecificProxy.empty()) { @@ -762,66 +764,6 @@ bool HttpMethod::Configuration(string Message) PipelineDepth); Debug = _config->FindB("Debug::Acquire::http",false); - // Get the proxy to use - AutoDetectProxy(); - - return true; -} - /*}}}*/ -// HttpMethod::AutoDetectProxy - auto detect proxy /*{{{*/ -// --------------------------------------------------------------------- -/* */ -bool HttpMethod::AutoDetectProxy() -{ - // option is "Acquire::http::Proxy-Auto-Detect" but we allow the old - // name without the dash ("-") - AutoDetectProxyCmd = _config->Find("Acquire::http::Proxy-Auto-Detect", - _config->Find("Acquire::http::ProxyAutoDetect")); - - if (AutoDetectProxyCmd.empty()) - return true; - - if (Debug) - clog << "Using auto proxy detect command: " << AutoDetectProxyCmd << endl; - - int Pipes[2] = {-1,-1}; - if (pipe(Pipes) != 0) - return _error->Errno("pipe", "Failed to create Pipe"); - - pid_t Process = ExecFork(); - if (Process == 0) - { - close(Pipes[0]); - dup2(Pipes[1],STDOUT_FILENO); - SetCloseExec(STDOUT_FILENO,false); - - const char *Args[2]; - Args[0] = AutoDetectProxyCmd.c_str(); - Args[1] = 0; - execv(Args[0],(char **)Args); - cerr << "Failed to exec method " << Args[0] << endl; - _exit(100); - } - char buf[512]; - int InFd = Pipes[0]; - close(Pipes[1]); - int res = read(InFd, buf, sizeof(buf)-1); - ExecWait(Process, "ProxyAutoDetect", true); - - if (res < 0) - return _error->Errno("read", "Failed to read"); - if (res == 0) - return _error->Warning("ProxyAutoDetect returned no data"); - - // add trailing \0 - buf[res] = 0; - - if (Debug) - clog << "auto detect command returned: '" << buf << "'" << endl; - - if (strstr(buf, "http://") == buf) - _config->Set("Acquire::http::proxy", _strstrip(buf)); - return true; } /*}}}*/ diff --git a/methods/http.h b/methods/http.h index 5406ce4a7..1df9fa07d 100644 --- a/methods/http.h +++ b/methods/http.h @@ -124,9 +124,6 @@ class HttpMethod : public ServerMethod public: virtual void SendReq(FetchItem *Itm); - /** \brief Try to AutoDetect the proxy */ - bool AutoDetectProxy(); - virtual bool Configuration(std::string Message); virtual ServerState * CreateServerState(URI uri); diff --git a/methods/https.cc b/methods/https.cc index e0348ab58..0499af0c5 100644 --- a/methods/https.cc +++ b/methods/https.cc @@ -20,6 +20,7 @@ #include <apt-pkg/configuration.h> #include <apt-pkg/macros.h> #include <apt-pkg/strutl.h> +#include <apt-pkg/proxy.h> #include <sys/stat.h> #include <sys/time.h> @@ -107,6 +108,9 @@ void HttpsMethod::SetupProxy() /*{{{*/ { URI ServerName = Queue->Uri; + // Determine the proxy setting + AutoDetectProxy(ServerName); + // Curl should never read proxy settings from the environment, as // we determine which proxy to use. Do this for consistency among // methods and prevent an environment variable overriding a diff --git a/test/integration/test-apt-helper b/test/integration/test-apt-helper index 6505b5956..c749224ca 100755 --- a/test/integration/test-apt-helper +++ b/test/integration/test-apt-helper @@ -9,31 +9,67 @@ configarchitecture "i386" changetohttpswebserver -echo "foo" > aptarchive/foo +test_apt_helper_download() { + echo "foo" > aptarchive/foo -msgtest 'apt-file download-file md5sum' -apthelper -qq download-file http://localhost:8080/foo foo2 MD5Sum:d3b07384d113edec49eaa6238ad5ff00 && msgpass || msgfail -testfileequal foo2 'foo' + msgtest 'apt-file download-file md5sum' + apthelper -qq download-file http://localhost:8080/foo foo2 MD5Sum:d3b07384d113edec49eaa6238ad5ff00 && msgpass || msgfail + testfileequal foo2 'foo' -msgtest 'apt-file download-file sha1' -apthelper -qq download-file http://localhost:8080/foo foo1 SHA1:f1d2d2f924e986ac86fdf7b36c94bcdf32beec15 && msgpass || msgfail -testfileequal foo1 'foo' + msgtest 'apt-file download-file sha1' + apthelper -qq download-file http://localhost:8080/foo foo1 SHA1:f1d2d2f924e986ac86fdf7b36c94bcdf32beec15 && msgpass || msgfail + testfileequal foo1 'foo' -msgtest 'apt-file download-file sha256' -apthelper -qq download-file http://localhost:8080/foo foo3 SHA256:b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c && msgpass || msgfail -testfileequal foo3 'foo' + msgtest 'apt-file download-file sha256' + apthelper -qq download-file http://localhost:8080/foo foo3 SHA256:b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c && msgpass || msgfail + testfileequal foo3 'foo' -msgtest 'apt-file download-file no-hash' -apthelper -qq download-file http://localhost:8080/foo foo4 && msgpass || msgfail -testfileequal foo4 'foo' - -msgtest 'apt-file download-file wrong hash' -if ! apthelper -qq download-file http://localhost:8080/foo foo5 MD5Sum:aabbcc 2>&1 2> download.stderr; then - msgpass -else - msgfail -fi -testfileequal download.stderr 'E: Failed to fetch http://localhost:8080/foo Hash Sum mismatch + msgtest 'apt-file download-file no-hash' + apthelper -qq download-file http://localhost:8080/foo foo4 && msgpass || msgfail + testfileequal foo4 'foo' + + msgtest 'apt-file download-file wrong hash' + if ! apthelper -qq download-file http://localhost:8080/foo foo5 MD5Sum:aabbcc 2>&1 2> download.stderr; then + msgpass + else + msgfail + fi + testfileequal download.stderr 'E: Failed to fetch http://localhost:8080/foo Hash Sum mismatch E: Download Failed' -testfileequal foo5.FAILED 'foo' + testfileequal foo5.FAILED 'foo' +} + +test_apt_helper_detect_proxy() { + # no proxy + testequal "Using proxy '' for URL 'http://example.com/'" apthelper auto-detect-proxy http://example.com/ + + + # http auto detect proxy script + cat > apt-proxy-detect <<'EOF' +#!/bin/sh -e +echo "http://some-proxy" +EOF + chmod 755 apt-proxy-detect + echo "Acquire::http::Proxy-Auto-Detect \"$(pwd)/apt-proxy-detect\";" > rootdir/etc/apt/apt.conf.d/02proxy-detect + + testequal "Using proxy 'http://some-proxy' for URL 'http://www.example.com/'" apthelper auto-detect-proxy http://www.example.com + + + # https auto detect proxy script + cat > apt-proxy-detect <<'EOF' +#!/bin/sh -e +echo "https://https-proxy" +EOF + chmod 755 apt-proxy-detect + echo "Acquire::https::Proxy-Auto-Detect \"$(pwd)/apt-proxy-detect\";" > rootdir/etc/apt/apt.conf.d/02proxy-detect + + testequal "Using proxy 'https://https-proxy' for URL 'https://ssl.example.com/'" apthelper auto-detect-proxy https://ssl.example.com + + + +} + +test_apt_helper_download +test_apt_helper_detect_proxy + -- cgit v1.2.3 From 6763aaec8ddded31057733f53c63f15e6b949bd9 Mon Sep 17 00:00:00 2001 From: Andreas Oberritter <obi@opendreambox.org> Date: Tue, 2 Sep 2014 16:34:05 +0200 Subject: Avoid yielding blank lines with APT::Cmd::use-format=true --- apt-private/private-list.cc | 3 ++- apt-private/private-output.cc | 2 +- test/integration/test-apt-cli-list | 5 ++++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/apt-private/private-list.cc b/apt-private/private-list.cc index f98456576..b69002103 100644 --- a/apt-private/private-list.cc +++ b/apt-private/private-list.cc @@ -93,6 +93,7 @@ static void ListAllVersions(pkgCacheFile &CacheFile, pkgRecords &records,/*{{{*/ Ver.end() == false; ++Ver) { ListSingleVersion(CacheFile, records, Ver, outs, include_summary); + outs << "\n"; } } /*}}}*/ @@ -148,7 +149,7 @@ bool DoList(CommandLine &Cmd) // FIXME: SORT! and make sorting flexible (alphabetic, by pkg status) // output the sorted map for (K = output_map.begin(); K != output_map.end(); ++K) - std::cout << (*K).second; + std::cout << (*K).second << std::endl; // be nice and tell the user if there is more to see diff --git a/apt-private/private-output.cc b/apt-private/private-output.cc index 7f8922138..8f1fb886e 100644 --- a/apt-private/private-output.cc +++ b/apt-private/private-output.cc @@ -220,7 +220,7 @@ void ListSingleVersion(pkgCacheFile &CacheFile, pkgRecords &records, /*{{{*/ output = SubstVar(output, "${Version}", GetVersion(CacheFile, V)); output = SubstVar(output, "${Description}", GetShortDescription(CacheFile, records, P)); output = SubstVar(output, "${Origin}", GetArchiveSuite(CacheFile, V)); - out << output << std::endl; + out << output; } else { // raring/linux-kernel version [upradable: new-version] // description diff --git a/test/integration/test-apt-cli-list b/test/integration/test-apt-cli-list index 40bf81a39..aae74c022 100755 --- a/test/integration/test-apt-cli-list +++ b/test/integration/test-apt-cli-list @@ -68,4 +68,7 @@ testequal "Listing... baz/unstable 2.0 all [upgradable from: 0.1] N: There are 2 additional versions. Please use the '-a' switch to see them." apt list baz -o quiet=0 - +# test format strings for machine parseable output +apt list -qq bar baz -o APT::Cmd::use-format=true -o APT::Cmd::format="\${Package} - \${installed:Version} - \${candidate:Version}" > output.txt +testequal "bar - 1.0 - 1.0 +baz - 0.1 - 2.0" cat output.txt -- cgit v1.2.3 From 165760012d624ffcf098e1fd08fecde78f808fa7 Mon Sep 17 00:00:00 2001 From: Michael Vogt <mvo@debian.org> Date: Tue, 2 Sep 2014 16:36:32 +0200 Subject: Add testcase for apt list --all-versions Dch-Ignore: true --- test/integration/test-apt-cli-list | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/integration/test-apt-cli-list b/test/integration/test-apt-cli-list index aae74c022..1487afd55 100755 --- a/test/integration/test-apt-cli-list +++ b/test/integration/test-apt-cli-list @@ -49,9 +49,11 @@ baz/now 0.1 all [installed,upgradable to: 2.0] foobar/now 1.0 i386 [installed,upgradable to: 2.0]" apt list --installed testequal "Listing... +bar/now 1.0 i386 [installed,local] + foobar/unstable 2.0 i386 [upgradable from: 1.0] foobar/now 1.0 i386 [installed,upgradable to: 2.0] -" apt list foobar --all-versions +" apt list bar foobar --all-versions testequal "Listing... bar/now 1.0 i386 [installed,local] -- cgit v1.2.3 From cbcdd3ee9d86379d1b3a44e41ae8b17dc23111d0 Mon Sep 17 00:00:00 2001 From: Michael Vogt <mvo@debian.org> Date: Tue, 2 Sep 2014 17:24:24 +0200 Subject: * apt-pkg/deb/dpkgpm.cc: - update string matching for dpkg I/O errors. (LP: #1363257) - properly parse the dpkg status line so that package name is properly set and an apport report is created. Thanks to Anders Kaseorg for the patch. (LP: #1353171) --- apt-pkg/deb/dpkgpm.cc | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/apt-pkg/deb/dpkgpm.cc b/apt-pkg/deb/dpkgpm.cc index 613a4de9f..264304c61 100644 --- a/apt-pkg/deb/dpkgpm.cc +++ b/apt-pkg/deb/dpkgpm.cc @@ -621,15 +621,15 @@ void pkgDPkgPM::ProcessDpkgStatusLine(char *line) { if(action == "error") { - d->progress->Error(list[1], PackagesDone, PackagesTotal, + d->progress->Error(pkgname, PackagesDone, PackagesTotal, list[3]); pkgFailures++; - WriteApportReport(list[1].c_str(), list[3].c_str()); + WriteApportReport(pkgname.c_str(), list[3].c_str()); return; } else if(action == "conffile-prompt") { - d->progress->ConffilePrompt(list[1], PackagesDone, PackagesTotal, + d->progress->ConffilePrompt(pkgname, PackagesDone, PackagesTotal, list[3]); return; } @@ -1668,9 +1668,10 @@ void pkgDPkgPM::WriteApportReport(const char *pkgpath, const char *errormsg) // do not report dpkg I/O errors, this is a format string, so we compare // the prefix and the suffix of the error with the dpkg error message vector<string> io_errors; - io_errors.push_back(string("failed to read on buffer copy for %s")); - io_errors.push_back(string("failed in write on buffer copy for %s")); - io_errors.push_back(string("short read on buffer copy for %s")); + io_errors.push_back(string("failed to read")); + io_errors.push_back(string("failed to write")); + io_errors.push_back(string("failed to seek")); + io_errors.push_back(string("unexpected end of file or stream")); for (vector<string>::iterator I = io_errors.begin(); I != io_errors.end(); ++I) { -- cgit v1.2.3 From 097248092ea4ff4543dfb17deb4e0d31dd697c71 Mon Sep 17 00:00:00 2001 From: Michael Vogt <mvo@ubuntu.com> Date: Tue, 2 Sep 2014 17:06:52 +0200 Subject: Use heap to allocate PatternMatch to avoid potential stack overflow When apt-cache search with many args (> 130) is given the allocation of PatternMatch on the stack may fail resulting in a segmentation fault. By using the heap the max size is much bigger and we also get a bad_alloc expection instead of a segfault (which we can catch *if* this ever becomes a pratical problem). No test for the crash as its not reproducable with the MALLOC_ settings in framework. Closes: 759612 --- cmdline/apt-cache.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cmdline/apt-cache.cc b/cmdline/apt-cache.cc index 1414617eb..ac0d48a36 100644 --- a/cmdline/apt-cache.cc +++ b/cmdline/apt-cache.cc @@ -1278,8 +1278,8 @@ static bool Search(CommandLine &CmdL) ExDescFile *DFList = new ExDescFile[descCount]; memset(DFList,0,sizeof(*DFList) * descCount); - bool PatternMatch[descCount * NumPatterns]; - memset(PatternMatch,false,sizeof(PatternMatch)); + bool *PatternMatch = new bool[descCount * NumPatterns]; + memset(PatternMatch,false,sizeof(*PatternMatch) * descCount * NumPatterns); // Map versions that we want to write out onto the VerList array. for (pkgCache::GrpIterator G = Cache->GrpBegin(); G.end() == false; ++G) @@ -1389,6 +1389,7 @@ static bool Search(CommandLine &CmdL) } delete [] DFList; + delete [] PatternMatch; for (unsigned I = 0; I != NumPatterns; I++) regfree(&Patterns[I]); if (ferror(stdout)) -- cgit v1.2.3 From 308b6fc991d2b65a0bf410fb968f1c7b81b4a83b Mon Sep 17 00:00:00 2001 From: Dimitri John Ledkov <xnox@ubuntu.com> Date: Fri, 18 Jul 2014 16:06:34 +0100 Subject: Make Packages & Sources generation optional, during Generate call refactor a bit, extract code out of Generate() into DoGenerate{PackagesAndSources,Contents}, add new APT::FTPArchive::ContentsOnly option to allow skipping the generation of Package/Source files (if they are generated e.g. by some db outside of apt-ftparchives control) --- ftparchive/apt-ftparchive.cc | 99 +++++++++++++++++++++++++++++--------------- 1 file changed, 66 insertions(+), 33 deletions(-) diff --git a/ftparchive/apt-ftparchive.cc b/ftparchive/apt-ftparchive.cc index ba71ee225..ebf99a8f8 100644 --- a/ftparchive/apt-ftparchive.cc +++ b/ftparchive/apt-ftparchive.cc @@ -781,33 +781,14 @@ static bool SimpleGenRelease(CommandLine &CmdL) } /*}}}*/ -// Generate - Full generate, using a config file /*{{{*/ +// DoGeneratePackagesAndSources - Helper for Generate /*{{{*/ // --------------------------------------------------------------------- -/* */ -static bool Generate(CommandLine &CmdL) +static bool DoGeneratePackagesAndSources(Configuration &Setup, + vector<PackageMap> &PkgList, + struct CacheDB::Stats &SrcStats, + struct CacheDB::Stats &Stats, + CommandLine &CmdL) { - struct CacheDB::Stats SrcStats; - if (CmdL.FileSize() < 2) - return ShowHelp(CmdL); - - struct timeval StartTime; - gettimeofday(&StartTime,0); - struct CacheDB::Stats Stats; - - // Read the configuration file. - Configuration Setup; - if (ReadConfigFile(Setup,CmdL.FileList[1],true) == false) - return false; - - vector<PackageMap> PkgList; - LoadTree(PkgList,Setup); - LoadBinDir(PkgList,Setup); - - // Sort by cache DB to improve IO locality. - stable_sort(PkgList.begin(),PkgList.end(),PackageMap::DBCompare()); - stable_sort(PkgList.begin(),PkgList.end(),PackageMap::SrcDBCompare()); - - // Generate packages if (CmdL.FileSize() <= 2) { for (vector<PackageMap>::iterator I = PkgList.begin(); I != PkgList.end(); ++I) @@ -876,9 +857,16 @@ static bool Generate(CommandLine &CmdL) if (I->TransWriter != NULL && I->TransWriter->DecreaseRefCounter() == 0) delete I->TransWriter; - if (_config->FindB("APT::FTPArchive::Contents",true) == false) - return true; - + return true; +} + + /*}}}*/ +// DoGenerateContents - Helper for Generate to generate the Contents /*{{{*/ +// --------------------------------------------------------------------- +static bool DoGenerateContents(Configuration &Setup, + vector<PackageMap> &PkgList, + CommandLine &CmdL) +{ c1out << "Packages done, Starting contents." << endl; // Sort the contents file list by date @@ -935,17 +923,62 @@ static bool Generate(CommandLine &CmdL) break; } } + + return true; +} + + /*}}}*/ +// Generate - Full generate, using a config file /*{{{*/ +// --------------------------------------------------------------------- +/* */ +static bool Generate(CommandLine &CmdL) +{ + struct CacheDB::Stats SrcStats; + if (CmdL.FileSize() < 2) + return ShowHelp(CmdL); + + struct timeval StartTime; + gettimeofday(&StartTime,0); + struct CacheDB::Stats Stats; + // Read the configuration file. + Configuration Setup; + if (ReadConfigFile(Setup,CmdL.FileList[1],true) == false) + return false; + + vector<PackageMap> PkgList; + LoadTree(PkgList,Setup); + LoadBinDir(PkgList,Setup); + + // Sort by cache DB to improve IO locality. + stable_sort(PkgList.begin(),PkgList.end(),PackageMap::DBCompare()); + stable_sort(PkgList.begin(),PkgList.end(),PackageMap::SrcDBCompare()); + + // Generate packages + if (_config->FindB("APT::FTPArchive::ContentsOnly", false) == false) + { + if(DoGeneratePackagesAndSources(Setup, PkgList, SrcStats, Stats, CmdL) == false) + return false; + } else { + c1out << "Skipping Packages/Sources generation" << endl; + } + + // do Contents if needed + if (_config->FindB("APT::FTPArchive::Contents", true) == true) + if (DoGenerateContents(Setup, PkgList, CmdL) == false) + return false; + struct timeval NewTime; - gettimeofday(&NewTime,0); - double Delta = NewTime.tv_sec - StartTime.tv_sec + + gettimeofday(&NewTime,0); + double Delta = NewTime.tv_sec - StartTime.tv_sec + (NewTime.tv_usec - StartTime.tv_usec)/1000000.0; - c1out << "Done. " << SizeToStr(Stats.Bytes) << "B in " << Stats.Packages + c1out << "Done. " << SizeToStr(Stats.Bytes) << "B in " << Stats.Packages << " archives. Took " << TimeToStr((long)Delta) << endl; - + return true; } - /*}}}*/ + + /*}}}*/ // Clean - Clean out the databases /*{{{*/ // --------------------------------------------------------------------- /* */ -- cgit v1.2.3 From 74c3db656df9e6cd02c60b8ee3155f9158f13708 Mon Sep 17 00:00:00 2001 From: Michael Vogt <mvo@ubuntu.com> Date: Tue, 2 Sep 2014 17:30:45 +0200 Subject: Run autopkgtest tests with "env -i" to avoid pollution from the host env Closes: #759655 --- debian/tests/run-tests | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/tests/run-tests b/debian/tests/run-tests index 308031e9d..9d7c484fc 100644 --- a/debian/tests/run-tests +++ b/debian/tests/run-tests @@ -8,7 +8,9 @@ if [ ! -e environment.mak ]; then fi make -C test/interactive-helper/ -# run against the installed apt +# run tests against the installed apt, use "env -i" to ensure +# the host env does not pollute our environment +env -i \ APT_INTEGRATION_TESTS_WEBSERVER_BIN_DIR=$(pwd)/build/bin \ APT_INTEGRATION_TESTS_METHODS_DIR=/usr/lib/apt/methods \ APT_INTEGRATION_TESTS_LIBEXEC_DIR=/usr/lib/apt/ \ -- cgit v1.2.3 From 3b5607fc31371190470074371793cb8500b5139e Mon Sep 17 00:00:00 2001 From: Michael Vogt <mvo@ubuntu.com> Date: Wed, 3 Sep 2014 16:54:16 +0200 Subject: test/integration/test-ubuntu-bug-346386-apt-get-update-paywall: use downloadfile() --- .../test-ubuntu-bug-346386-apt-get-update-paywall | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/test/integration/test-ubuntu-bug-346386-apt-get-update-paywall b/test/integration/test-ubuntu-bug-346386-apt-get-update-paywall index 7112d2b45..a773660d2 100755 --- a/test/integration/test-ubuntu-bug-346386-apt-get-update-paywall +++ b/test/integration/test-ubuntu-bug-346386-apt-get-update-paywall @@ -16,13 +16,11 @@ setupaptarchive changetowebserver -o 'aptwebserver::overwrite::.*::filename=/knights' msgtest 'Acquire test file from the webserver to check' 'overwrite' -echo '601 Configuration -Config-Item: Acquire::http::DependOnSTDIN=0 - -600 Acquire URI -URI: http://localhost:8080/holygrail -Filename: knights-talking -' | ${METHODSDIR}/http >/dev/null 2>&1 && msgpass || msgfail +if downloadfile http://localhost:8080/holygrail ./knights-talking >/dev/null; then + msgpass +else + msgfail +fi testfileequal knights-talking 'ni ni ni' ensure_n_canary_strings_in_dir() { -- cgit v1.2.3 From d059cc2668f284a7db77a15d1d742326d464e963 Mon Sep 17 00:00:00 2001 From: Michael Vogt <mvo@debian.org> Date: Fri, 5 Sep 2014 12:03:28 +0200 Subject: Fix incorrect upgradable listing in "apt list" (thanks to Michael Musenbrock) The "apt list" command was using only the pkgDepCache but not the pkgPolicy to figure out if a package is upgradable. This lead to incorrect display of upgradable package when the user used the policy to pin-down packages. Thanks to Michael Musenbrock for the initial patch. Closes: #753297 --- apt-private/private-cacheset.cc | 5 ++++- apt-private/private-output.cc | 5 ++++- test/integration/test-bug-753297-upgradable | 34 +++++++++++++++++++++++++++++ 3 files changed, 42 insertions(+), 2 deletions(-) create mode 100755 test/integration/test-bug-753297-upgradable diff --git a/apt-private/private-cacheset.cc b/apt-private/private-cacheset.cc index e37e7b227..159e1d8f1 100644 --- a/apt-private/private-cacheset.cc +++ b/apt-private/private-cacheset.cc @@ -55,7 +55,10 @@ bool GetLocalitySortedVersionSet(pkgCacheFile &CacheFile, } else if (_config->FindB("APT::Cmd::Upgradable") == true) { - if(P.CurrentVer() && state.Upgradable()) + pkgPolicy *policy = CacheFile.GetPolicy(); + if(P.CurrentVer() && + state.Upgradable() && + policy->GetCandidateVer(P) != P.CurrentVer()) { pkgPolicy *policy = CacheFile.GetPolicy(); output_set.insert(policy->GetCandidateVer(P)); diff --git a/apt-private/private-output.cc b/apt-private/private-output.cc index 8f1fb886e..2120b7a83 100644 --- a/apt-private/private-output.cc +++ b/apt-private/private-output.cc @@ -229,7 +229,10 @@ void ListSingleVersion(pkgCacheFile &CacheFile, pkgRecords &records, /*{{{*/ std::string CandidateVerStr = GetCandidateVersion(CacheFile, P); std::string InstalledVerStr = GetInstalledVersion(CacheFile, P); std::string StatusStr; - if(P.CurrentVer() == V && state.Upgradable() && state.CandidateVer != NULL) + if(P.CurrentVer() == V && + state.Upgradable() && + state.CandidateVer != NULL && + policy->GetCandidateVer(P) != P.CurrentVer()) { strprintf(StatusStr, _("[installed,upgradable to: %s]"), CandidateVerStr.c_str()); diff --git a/test/integration/test-bug-753297-upgradable b/test/integration/test-bug-753297-upgradable new file mode 100755 index 000000000..068704b3e --- /dev/null +++ b/test/integration/test-bug-753297-upgradable @@ -0,0 +1,34 @@ +#!/bin/sh +set -e + +TESTDIR=$(readlink -f $(dirname $0)) +. $TESTDIR/framework +setupenvironment +configarchitecture 'i386' + +cat > rootdir/etc/apt/preferences <<EOF +Package: * +Pin: release testing +Pin-Priority: 600 + +Package: * +Pin: release unstable +Pin-Priority: 1 +EOF + +insertinstalledpackage 'foo' 'all' '1' +insertpackage 'testing' 'foo' 'all' '1' +insertpackage 'testing-updates' 'foo' 'all' '2' +insertpackage 'unstable' 'foo' 'all' '3' + +insertinstalledpackage 'bar' 'all' '1' +insertpackage 'testing' 'bar' 'all' '2' + +setupaptarchive + +testequal "Listing... +bar/testing 2 all [upgradable from: 1]" apt list --upgradable + +testequal "Listing... +bar/testing 2 all [upgradable from: 1] +foo/testing,now 1 all [installed]" apt list -- cgit v1.2.3 From 592d06b6f3c2ef2ae47c38005ae3c4e96a0841f2 Mon Sep 17 00:00:00 2001 From: Michael Vogt <mvo@debian.org> Date: Fri, 5 Sep 2014 12:50:15 +0200 Subject: Ensure we have a Policy in CacheFile.BuildDepCache() This partly reverts d059cc2 and fixes bug #753297 in a more general way by ensuring that CacheFile.BuildDepCache() builds a pkgPolicy if there isn't one already. --- apt-pkg/cachefile.cc | 3 +++ apt-private/private-cacheset.cc | 5 +---- apt-private/private-output.cc | 5 +---- 3 files changed, 5 insertions(+), 8 deletions(-) diff --git a/apt-pkg/cachefile.cc b/apt-pkg/cachefile.cc index 0fd40106f..ea3d45480 100644 --- a/apt-pkg/cachefile.cc +++ b/apt-pkg/cachefile.cc @@ -143,6 +143,9 @@ bool pkgCacheFile::BuildDepCache(OpProgress *Progress) if (DCache != NULL) return true; + if (BuildPolicy(Progress) == false) + return false; + DCache = new pkgDepCache(Cache,Policy); if (_error->PendingError() == true) return false; diff --git a/apt-private/private-cacheset.cc b/apt-private/private-cacheset.cc index 159e1d8f1..e37e7b227 100644 --- a/apt-private/private-cacheset.cc +++ b/apt-private/private-cacheset.cc @@ -55,10 +55,7 @@ bool GetLocalitySortedVersionSet(pkgCacheFile &CacheFile, } else if (_config->FindB("APT::Cmd::Upgradable") == true) { - pkgPolicy *policy = CacheFile.GetPolicy(); - if(P.CurrentVer() && - state.Upgradable() && - policy->GetCandidateVer(P) != P.CurrentVer()) + if(P.CurrentVer() && state.Upgradable()) { pkgPolicy *policy = CacheFile.GetPolicy(); output_set.insert(policy->GetCandidateVer(P)); diff --git a/apt-private/private-output.cc b/apt-private/private-output.cc index 2120b7a83..522f7682d 100644 --- a/apt-private/private-output.cc +++ b/apt-private/private-output.cc @@ -229,10 +229,7 @@ void ListSingleVersion(pkgCacheFile &CacheFile, pkgRecords &records, /*{{{*/ std::string CandidateVerStr = GetCandidateVersion(CacheFile, P); std::string InstalledVerStr = GetInstalledVersion(CacheFile, P); std::string StatusStr; - if(P.CurrentVer() == V && - state.Upgradable() && - state.CandidateVer != NULL && - policy->GetCandidateVer(P) != P.CurrentVer()) + if(P.CurrentVer() == V && state.Upgradable()) { strprintf(StatusStr, _("[installed,upgradable to: %s]"), CandidateVerStr.c_str()); -- cgit v1.2.3